/*------------- Footer ---------------*/
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 56px;
    overflow-x:hidden;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 56px;
    /*line-height: 56px;*/ /* Vertically center the text there */
}

.topOfPage {
  display: none;
  position: fixed;
  z-index: 1000;
  bottom: 15px;
  left: 15px;
}
.orange {
  color: #ff6a00;
}
.blue {
  color: #25c5ff;
}
.orangeBack {
    background: #ff6a00;
    color: white;
    padding: 45px;
}
.titleUL {
  list-style-type: none;
}
.navbar {
  z-index: 3;
}
.center {
  display: table;
  margin: 0 auto;
}
.fa-ic a:link, .fa-ic a:visited {
    text-decoration: none;
    color: #585858;
}
.fa-icon A { COLOR: #ff6a00; TEXT-DECORATION: none; font-weight: normal }
.fa-icon A:hover { COLOR: #9B4000; TEXT-DECORATION: none; font-weight: none }

.orangeBack a.dalej:hover {
    background: #fff;
    color: #ff6a00;
}

.orangeBack a.dalej {
    display: block;
    background: #df4a00;
    color: #fff;
    margin: 0 auto 20px;
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}

.rotate {
    -moz-transition: all 0.75s linear;
    -webkit-transition: all 0.75s linear;
    transition: all 0.75s linear;
}

    .rotate.down {
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.bg-darker {
    background-color: #191919;
}

/*------------- Slideshow ----------*/

* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
    max-height: 500px;
    position: relative;
    overflow: hidden;
}

    .slideshow-container img {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-weight: 900;
  -webkit-text-stroke: 1px black;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.sliderFade {
  -webkit-animation-name: sliderFade;
  -webkit-animation-duration: 1.5s;
  animation-name: sliderFade;
  animation-duration: 1.5s;
}

@-webkit-keyframes sliderFade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes sliderFade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/*------------- Form ---------------*/

.nb-form {
    position: fixed;
    z-index: 1000;
    width: 300px;
    background: #FFF;
    right: 20px;
    bottom: -365px;
    transition: all .8s cubic-bezier(.22, .67, .43, 1.22) .2s;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
}
@media only screen and (max-width: 600px) {
    .nb-form {
        display: none;
    }
}
.showForm {
    bottom: 0px !important;
}

/*-- User Icon --*/

.nb-form .user-icon {
    position: absolute;
    top: 0px; /* -49px; */
    right: 12px;
    display: block;
    width: 58px;
    margin: 20px auto 15px;
    border-radius: 100%;
}

/*-- Title --*/

.nb-form .title {
    background: #ff6a00;
    font-size: 16px !important;
    padding: 20px 18px !important;
    color: #fff !important;
    border-radius: 10px 10px 0 0;
}

/*-- Text --*/

.nb-form p {
    font-size: 13px;
    margin: 0;
    padding: 15px;
    color: #666;
}

.nb-form p.message {
    margin-left: 7px;
}

/*-- Form Elements --*/

.nb-form form {
    padding: 0 15px 15px 15px;
}

.nb-form input,
.nb-form textarea {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 12px;
    width: 254px;
    max-width: 254px;
    margin-bottom: 10px;
    margin-left: 7px;
    padding: 6px;
    border: none;
    border-radius: 4px;
    color: #999;
    border-bottom: 1px solid #f0f0f0;
}

.nb-form input:focus,
.nb-form textarea:focus {
    outline: none;
    box-shadow: none;
}

.nb-form input[type='submit'] {
    display: block;
    width: 120px;
    margin: 0 auto;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .4s ease;
    color: #fff !important;
    border: none;
}

.nb-form input[type='submit']:hover {
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.07),0 1px 7px 0 rgba(0,0,0,0.02),0 3px 1px -1px rgba(0,0,0,0.1);
}

.nb-form textarea {
    min-height: 110px;
}


.nb-form ::-webkit-input-placeholder {
    color: #ccb0b0;
}

.nb-form ::-moz-placeholder{
    color: #ccb0b0;
}

.nb-form :-ms-input-placeholder {
    color: #ccb0b0;
}

.nb-form :-moz-placeholder {
    color: #ccb0b0;
}

.nb-form input[type='submit'] {
    background: #ff6a00;
}

@media screen and (max-width: 676px) {
    .nb-form:hover .user-icon {
        display: none;
    }

    .nb-form .message {
        display: none;
    }

    .nb-form form {
        padding-top: 15px;
    }
    .nb-form{
        right: 50%;
        bottom: -320px;
        left: 50%;
        transform: translateX(-50%);
    }
}



/************** ANIMATED AD ****************/

#chute {
    position: relative;
    /*overflow: hidden;*/
    /*box-shadow: 0px 0px 6px #000;*/
    /*margin: 40px auto 0;*/
    background-position: center;
    background-repeat: no-repeat;
    width: 1226px;
    height: 300px;
}

    #chute #content {
        margin-left: 15px;
    }
    .titleBack {
      background: #25c5ff; /* Old browsers */
      background: -moz-linear-gradient(top, #25c5ff 0%, #c3daeb 70%); /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#25c5ff), color-stop(70%,#c3daeb)); /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top, #25c5ff 0%,#c3daeb 70%); /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top, #25c5ff 0%,#c3daeb 70%); /* Opera 11.10+ */
      background: -ms-linear-gradient(top, #25c5ff 0%,#c3daeb 70%); /* IE10+ */
      background: linear-gradient(to bottom, #25c5ff 0%,#c3daeb 70%); /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#25c5ff', endColorstr='#c3daeb',GradientType=0 ); /* IE6-9 */
    }


@keyframes delayed-fade-animation {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes delayed-fade-animation {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes delayed-fade-animation {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes delayed-fade-animation {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*@-ms-keyframes delayed-fade-animation {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}*/

@keyframes cloud-in-animation {
    0% {
        right: -1000px;
    }

    30% {
        right: -1000px;
    }

    100% {
        right: -100px;
    }
}

@-webkit-keyframes cloud-in-animation {
    0% {
        right: -1000px;
    }

    30% {
        right: -1000px;
    }

    100% {
        right: -100px;
    }
}

@-moz-keyframes cloud-in-animation {
    0% {
        right: -1000px;
    }
    /*30% {right: -1000px;}*/
    100% {
        right: -100px;
    }
}

@-o-keyframes cloud-in-animation {
    0% {
        right: -1000px;
    }

    30% {
        right: -1000px;
    }

    100% {
        right: -100px;
    }
}

/*@-ms-keyframes cloud-in-animation {
    0% {
        right: -1000px;
    }

    30% {
        right: -1000px;
    }

    100% {
        right: -100px;
    }
}*/

@keyframes chute-float {
    0% {
        left: 1300px;
        bottom: 350px;
    }

    50% {
        left: 1300px;
        bottom: 250px;
    }

    60% {
        left: 750px;
        bottom: 250px;
    }

    100% {
        left: 400px;
        bottom: 46px;
    }
}

@-webkit-keyframes chute-float {
    0% {
        left: 1300px;
        bottom: 350px;
    }

    50% {
        left: 1300px;
        bottom: 250px;
    }

    60% {
        left: 650px;
        bottom: 175px;
    }

    100% {
        left: 400px;
        bottom: 46px;
    }
}

@-moz-keyframes chute-float {
    0% {
        left: 1300px;
        bottom: 350px;
    }

    50% {
        left: 1300px;
        bottom: 250px;
    }

    60% {
        left: 750px;
        bottom: 250px;
    }

    100% {
        left: 400px;
        bottom: 46px;
    }
}

@-o-keyframes chute-float {
    0% {
        left: 1300px;
        bottom: 350px;
    }

    50% {
        left: 1300px;
        bottom: 250px;
    }

    60% {
        left: 750px;
        bottom: 250px;
    }

    100% {
        left: 400px;
        bottom: 46px;
    }
}

/*@-ms-keyframes chute-float {
    0% {
        left: 1300px;
        bottom: 350px;
    }

    50% {
        left: 1300px;
        bottom: 250px;
    }

    80% {
        left: 750px;
        bottom: 250px;
    }

    100% {
        left: 400px;
        bottom: 46px;
    }
}*/

#chute h1 {
    font-size: 1.75em;
    margin-bottom: 0;
    color: black;
    left: 150px;
    -webkit-animation: delayed-fade-animation 8s 1 ease-in-out;
    -moz-animation: delayed-fade-animation 8s 1 ease-in-out;
    -o-animation: delayed-fade-animation 8s 1 ease-in-out;
    /*-ms-animation: delayed-fade-animation 13s 1 ease-in-out;*/
    animation: delayed-fade-animation 8s 1 ease-in-out;
    font-family: 'Arial Rounded MT';
}

#chute h2 {
    margin-bottom: 0;
    font-size: 22px;
    color: black;
    -webkit-animation: delayed-fade-animation 1s 1 ease-in-out;
    -moz-animation: delayed-fade-animation 1s 1 ease-in-out;
    -o-animation: delayed-fade-animation 1s 1 ease-in-out;
    /*-ms-animation: delayed-fade-animation 1s 1 ease-in-out;*/
    animation: delayed-fade-animation 1s 1 ease-in-out;
    font-family: 'Arial Rounded MT';
}

#chute h3 {
    margin-bottom: 0;
    font-size: 22px;
    color: black;
    font-weight: normal;
    padding: 0px;
    font-family: "Open Sans", Arial, sans-serif;
    -webkit-animation: delayed-fade-animation 2s 1 ease-in-out;
    -moz-animation: delayed-fade-animation 2s 1 ease-in-out;
    -o-animation: delayed-fade-animation 2s 1 ease-in-out;
    /*-ms-animation: delayed-fade-animation 3s 1 ease-in-out;*/
    animation: delayed-fade-animation 2s 1 ease-in-out;
    font-family: 'Arial Rounded MT';
}

#chute h4 {
    margin-bottom: 0;
    font-size: 22px;
    color: black;
    -webkit-animation: delayed-fade-animation 3s 1 ease-in-out;
    -moz-animation: delayed-fade-animation 3s 1 ease-in-out;
    -o-animation: delayed-fade-animation 3s 1 ease-in-out;
    /*-ms-animation: delayed-fade-animation 5s 1 ease-in-out;*/
    animation: delayed-fade-animation 3s 1 ease-in-out;
    font-family: 'Arial Rounded MT';
}

#chute h5 {
    font-size: 1.1em;
    margin-bottom: 0;
    font-size: 22px;
    color: black;
    -webkit-animation: delayed-fade-animation 4s 1 ease-in-out;
    -moz-animation: delayed-fade-animation 4s 1 ease-in-out;
    -o-animation: delayed-fade-animation 4s 1 ease-in-out;
    /*-ms-animation: delayed-fade-animation 7s 1 ease-in-out;*/
    animation: delayed-fade-animation 4s 1 ease-in-out;
    font-family: 'Arial Rounded MT';
}

#chute .cloud {
    z-index: 2;
    right: -100px;
    bottom: 100px;
    width: 741px;
    height: 409px;
    position: absolute;
    -webkit-animation: cloud-in-animation 7s 1 ease-in-out;
    -moz-animation: cloud-in-animation 7s 1 ease-in-out;
    -o-animation: cloud-in-animation 7s 1 ease-in-out;
    /*-ms-animation: cloud-in-animation 12s 1 ease-in-out;*/
    animation: cloud-in-animation 7s 1 ease-in-out;
    background-image: url(../images/photos/Clouds.png);
}

.logoChuteless {
    width: 170px;
    height: 70px;
    z-index: 1;
    bottom: 25px;
    left: 230px;
    position: absolute;
    overflow: hidden;
    -webkit-animation: delayed-fade-animation 11s 1 ease-in-out;
    -moz-animation: delayed-fade-animation 11s 1 ease-in-out;
    -o-animation: delayed-fade-animation 11s 1 ease-in-out;
    /*-ms-animation: delayed-fade-animation 18s 1 ease-in-out;*/
    animation: delayed-fade-animation 11s 1 ease-in-out;
    background-image: url(../images/photos/chuteLogo.png);
}

.chute {
    width: 62px;
    height: 70px;
    z-index: 1;
    bottom: 46px;
    left: 400px;
    position: absolute;
    overflow: hidden;
    -webkit-animation: chute-float 11s 1 ease-in-out;
    -moz-animation: chute-float 11s 1 ease-in-out;
    -o-animation: chute-float 11s 1 ease-in-out;
    /*-ms-animation: chute-float 18s 1 ease-in-out;*/
    animation: chute-float 11s 1 ease-in-out;
    background-image: url(../images/photos/Chute.png);
}


@media only screen and (max-width: 800px) {
    #chute {
        display: none;
    }

    #commercial {
        display: none;
    }

    #replacecommercial {
        display: block;
    }
}

/************** ANIMATED AD ****************/



/* -----------------  Contact -------------------- */

#contact {
    background: #191919;
    padding-top: 96px;
    padding-bottom: 102px;
    color: #636363;
}

    #contact .section-head {
        margin-bottom: 42px;
    }

    #contact a, #contact a:visited {
        color: #11ABB0;
    }

        #contact a:hover, #contact a:focus {
            color: #fff;
        }

    #contact h1 {
        font: 18px/24px 'opensans-bold', sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #EBEEEE;
        margin-bottom: 6px;
    }

        #contact h1 span {
            display: none;
        }

        #contact h1:before {
            font-family: 'FontAwesome';
            content: "\f0e0";
            padding-right: 10px;
            font-size: 72px;
            line-height: 72px;
            text-align: left;
            float: left;
            color: #ebeeee;
        }

    #contact h4 {
        font: 16px/24px 'opensans-bold', sans-serif;
        color: #EBEEEE;
        margin-bottom: 6px;
    }

    #contact p.lead {
        font: 18px/36px 'opensans-light', sans-serif;
        padding-right: 3%;
    }

    #contact .header-col {
        padding-top: 6px;
    }


    /* contact form */
    #contact form {
        margin-bottom: 30px;
    }

    #contact label {
        font: 15px/24px 'opensans-bold', sans-serif;
        margin: 12px 0;
        color: #EBEEEE;
        display: inline-block;
        float: left;
        width: 26%;
    }

    #contact input,
    #contact textarea,
    #contact select {
        padding: 18px 20px;
        color: #000;
        background: #fff;
        margin-bottom: 42px;
        border: 0;
        outline: none;
        font-size: 15px;
        line-height: 24px;
        width: 65%;
        border-radius: 3px;
    }

        #contact input:focus,
        #contact textarea:focus,
        #contact select:focus {
            color: #fff;
            background-color: #ff6a00;
        }

    #contact button.submit {
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #000;
        background: #fff;
        border: none;
        cursor: pointer;
        height: auto;
        display: inline-block;
        border-radius: 27px;
        margin-left: 26%;
    }

        #contact button.submit:hover {
            color: #fff;
            background: #ff6a00;
        }

    #contact span.required {
        color: #ff6a00;
        font-size: 13px;
    }

.message-warning, .message-success {
    display: none;
    background: #0F0F0F;
    padding: 24px 24px;
    margin-bottom: 36px;
    width: 65%;
    margin-left: 26%;
}

.message-warning {
    color: #D72828;
}

.message-success {
    color: #11ABB0;
}

    .message-warning i,
    .message-success i {
        margin-right: 10px;
    }

#image-loader {
    display: none;
    position: relative;
    left: 18px;
    top: 17px;
}


/* Twitter Feed */
#twitter {
    margin-top: 12px;
    padding: 0;
}

    #twitter li {
        margin: 6px 0px 12px 0;
        line-height: 30px;
    }

        #twitter li span {
            display: block;
        }

        #twitter li b a {
            font: 13px/36px 'opensans-regular', Sans-serif;
            color: #474747 !important;
            border: none;
        }

#contact button.submit {
    font: 16px/30px 'opensans-bold', sans-serif;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0;
    padding: 10px 50px;
    margin-bottom: 18px;
    border: none;
    cursor: pointer;
    height: auto;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -moz-border-radius: 27px;
    -webkit-border-radius: 27px;
    -khtml-border-radius: 27px;
    border-radius: 27px;
}