body{background-color:#f7f7f7;}
h1, h2, h3, h4, p{font-family: 'Roboto', sans-serif;}
.hidden{display:none;}
.white-wrapper{background-color: white;}
.button{background-color:#14679e;}
.button:hover, .button:focus {
    background-color: #00406a;
    color: #fefefe;
}
.zoom-cursor{cursor: zoom-in;}
.clickable{cursor: pointer;}

.site-container{
    background-color:#f7f7f7;
    padding-top:10px;
    padding-bottom:30px;
}
.fullscreen{height:100vh;}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ==================================================================== 
        ICONS AND LOGOS 
 ====================================================================*/
#phone_icon{max-height:30px; max-width:30px; float:left;}
.logo-header img{max-width:32%; margin-top: 30px; margin-bottom:45px;}
.logo-header h3{margin-top:-30px;}

/* ==================================================================== 
        SPLASH HEAD 
 ====================================================================*/
.splash-headers{    
    text-align: center;
    color: white;
    font-family: 'Roboto', sans-serif;
    margin-top:72vh;
    text-shadow: 2px 2px 8px #000000;
}
.splash-headers h1{
    font-size: 8em;
    font-weight: bold;
}

.splash-headers h2{
    font-style: italic;
    font-size:2.5em;
    font-weight: 300i;
    margin-top:-25px;
}
/* ==================================================================== 
        HOME SLIDER 
 ====================================================================*/
#home-slideshow,
#home-slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1; 
    list-style-type: none;
    margin:0;
    display: inline-block;
}
#home-slideshow:after { 
    content: '';
}

#home-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: #f78f1e;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: -1;
    animation: imageAnimation 36s linear infinite 0s; 
}

#home-slideshow li:nth-child(1) span { 
    background-image: url(../img/background/home/1.jpg);
    background-position: 50% 10%; 
}
#home-slideshow li:nth-child(2) span { 
    background-image: url(../img/background/home/2.jpg);
    animation-delay: 6s; 
}
#home-slideshow li:nth-child(3) span { 
    background-image: url(../img/background/home/3.jpg);
    animation-delay: 12s; 
}
#home-slideshow li:nth-child(4) span { 
    background-image: url(../img/background/home/4.jpg);
    animation-delay: 18s; 
}
#home-slideshow li:nth-child(5) span { 
    background-image: url(../img/background/home/5.jpg);
    animation-delay: 24s; 
}
#home-slideshow li:nth-child(6) span { 
    background-image: url(../img/background/home/6.jpg);
    animation-delay: 30s; 
}
#home-slideshow li:nth-child(7) span { 
    background-image: url(../img/background/home/7.jpg);
    animation-delay: 36s; 
}
#home-slideshow li:nth-child(8) span { 
    background-image: url(../img/background/home/8.jpg);
    animation-delay: 42s; 
}
#home-slideshow li:nth-child(9) span { 
    background-image: url(../img/background/home/9.jpg);
    animation-delay: 48s; 
}
#home-slideshow li:nth-child(10) span { 
    background-image: url(../img/background/home/10.jpg);
    animation-delay: 54s; 
}

@keyframes homeAnimation{ 
    0% { 
        opacity: 0; 
        animation-timing-function: ease-in; 
    }
    8% { 
        opacity: 1; 
        transform: scale(1.02); 
        animation-timing-function: ease-out; 
    }
    17% { 
        opacity: 1;
        transform: scale(1.04);
    }
    25% { 
        opacity: 0;
        transform: scale(1.04);
        animation-timing-function: ease-out; 
    }
    100% { opacity: 0;transform: scale(1.0);animation-timing-function: ease-out;}
}

/* ======================================================================================
                        DEFAULT SLIDER ANIMATION 
=======================================================================================*/

@keyframes imageAnimation { 
    0% { 
        opacity: 0; 
        animation-timing-function: ease-in; 
    }
    8% { 
        opacity: 1; 
        transform: scale(1.02); 
        animation-timing-function: ease-out; 
    }
    17% { 
        opacity: 1;
        transform: scale(1.04);
    }
    25% { 
        opacity: 0;
        transform: scale(1.04);
    }
    100% { opacity: 0; }
}


/* ======================================================================================
                        SINGLE IMAGE SPLASH
=======================================================================================*/

.splash-head{    
    text-align: center;
    color: white;
    font-family: 'Roboto', sans-serif;
    margin-top:-160px;
    text-shadow: 2px 2px 8px #000000;
}
.splash-head h1{
    font-size: 5em;
    font-weight: bold;
}

.splash-head h2{
    font-style: italic;
    font-size:2em;
    font-weight: 300i;
    margin-top:-25px;
}

.splash-head p{
    font-style: italic;
    font-size:2em;
    font-weight: 300i;
    margin-top:-25px;
}

.gallery-splash{
    background: url("../img/background/bg_gallery.jpg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
}

#thankyou-splash{
    background: url("../img/background/bg_thanks.jpg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
}

#myVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translate(-50%, -50%);
}

/* ==================================================================== 
        MODAL LIGHTBOX 
 ====================================================================*/
.modal{
    z-index:25;
    display:none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    overflow:auto;
    background-color:rgb(0,0,0);
    background-color:rgba(0,0,0,0.4)
}
.modal-content{
    margin:auto;
    position:relative;
    padding:0;
    outline:0;
    max-width:600px;
    top:5%;
}

.modal-content2{
    margin:auto;
    position:relative;
    padding:0;
    outline:0;
    width:480px;
    height:600px;
    top:20%;
}

.w3-animate-zoom{
    animation:animatezoom 0.6s
}

@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}

/* ==================================================================== 
        QUOTE 
 ====================================================================*/
 .quote h1{
    margin-top:25px; 
    color:#0068ac;
    font-size:4.5em;
    font-weight: bold;

}

.quote h2{color:#0068ac; font-weight:300i; font-style: italic; text-align: right;}

.quote p{
    margin-top:25px; 
    color:#0068ac;
    font-size:2.5em;
    font-weight: bold;

}
.quote{padding-top:70px; padding-bottom:70px;}

/* ==================================================================== 
        PAGE LOADER 
 ====================================================================*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f78f1e;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FFF;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FFF;

    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #f78f1e;
    z-index: 1000;
    -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);  /* IE 9 */
    transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section2{
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #f78f1e;
    z-index: 1000;
    -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);  /* IE 9 */
    transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section2.section-left {left: 0;}
#loader-wrapper .loader-section2.section-right {right: 0;}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* ==================================================================== 
        LOADED 
 ====================================================================*/
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);  /* IE 9 */
    transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);  /* IE 9 */
    transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
    
.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;  
    transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
    visibility: hidden;

    -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%);  /* IE 9 */
    transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.3s 1s ease-out;  
    transition: all 0.3s 1s ease-out;
}

/* ==================================================================== 
        LOADED ORANGE
 ====================================================================*/
.loaded #loader-wrapper .loader-section2.section-left {
    -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);  /* IE 9 */
    transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section2.section-right {
    -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);  /* IE 9 */
    transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

/* ==================================================================== 
//
//
//
//      INDEX PAGE CSS BELOW
//
//
//        
 ====================================================================*/

/* ==================================================================== 
        SECTION 1: BANNER / NAVIGATION 
 ====================================================================*/
#orange_banner{
	height:50px;
	background-color:#f78f1e;
}

#top_banner img{margin-top:10px;}
#top_banner p {
	font-family : 'Roboto', sans-serif;
	font-weight : bold;
	margin-top : 12px;
	margin-left : 20px;
	color : white;
	float : left;
}
#top_banner a{color: white;}

#nav_items{text-align:right; margin-top:48px;}
#nav_items a{
	position: relative;
	color: white;
	text-decoration: none;
}
#nav_items a:hover{
	color: white;

}
#nav_items a:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: -10px;
	left: 0;
	background-color: white;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
#nav_items a:hover:before{
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

#nav_items li {
	display : inline;
	text-transform : uppercase;
	font-family : 'Roboto', sans-serif;
	font-weight : bold;
	color : white;
	font-size : 1.15em;
	margin-left : 25px;
	text-shadow: 2px 2px 8px #505050;
}

/* ==================================================================== 
       MAIN SLIDER OLD

#main-slider {padding-bottom:752px;}

#main-slider > figure {
	animation: imageAnimation 40s linear infinite 0s;
	backface-visibility: hidden;
	background-size: cover;
	background-position: center center;
	color: transparent;
	height: 100%;
	left: 0px;
	opacity: 0;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: -1;
}

#main-slider > figure:nth-child(1) {
  background-image: url("../img/background/bg_00.jpg");
}

#main-slider > figure:nth-child(2) {
  animation-delay: 8s;
  background-image: url("../img/background/bg_01.jpg");
}

#main-slider > figure:nth-child(3) {
  animation-delay: 16s;
  background-image: url("../img/background/bg_02.jpg");
}

#main-slider > figure:nth-child(4) {
  animation-delay: 24s;
  background-image: url("../img/background/bg_03.jpg");
}

#main-slider > figure:nth-child(5) {
  animation-delay: 32s;
  background-image: url("../img/background/bg_04.jpg");
}

@keyframes 
imageAnimation {  0% {
 animation-timing-function: ease-in;
 opacity: 0;
}
 8% {
 animation-timing-function: ease-out;
 opacity: 1;
}
 17% {
 opacity: 1
}
 25% {
 opacity: 0
}
 100% {
 opacity: 0
}
}

 ====================================================================*/

/* ==================================================================== 
        SECTION 2: ORANGE INTRO
 ====================================================================*/
.intro {
	background-color : #f78f1e;
    background: linear-gradient(120deg, #f78f1e 62%, #d27a1a 62%);
	max-width : 1335px;
	padding-top : 30px;
	padding-bottom : 30px;
    margin : 0 auto;
}
.intro h1, .intro p{color:white;}
.intro h1{font-weight:bold; font-size:2.9em; opacity: 1;}

#home-intro{margin-top:50px;}
/* ==================================================================== 
        SECTION 3: TRI-SECTION
 ====================================================================*/
#tri-section{margin-top:0px; padding-bottom:10px; color:#0068ac;}
#tri-section li{list-style: none;}
#tri-section h1{
	font-size:2em;
	color:#0068ac;
	font-weight:bold;
	margin-bottom:30px;
}
.tri-icon {
	max-width : 25%;
	max-height : 25%;
	display : block;
	margin-left : auto;
	margin-right : auto;
	margin-bottom : 25px;
	margin-top : 56px;
}
.tri-button{
	font-weight:bold;
	font-family : 'Roboto', sans-serif;
	font-size:1.4em;
}
#tri-art-but{margin-top:88px;}
#tri-contact-but{margin-top:88px;}

/* ==================================================================== 
        SECTION 3: FABULOUS INFLATABLES LINK
 ====================================================================*/
#fab_link{margin-top:40px;}

#fabin_logo img{
    display: inline-block;
    overflow: visible;
    position: absolute;
    margin-left: 225px;
    margin-top:12px;
    z-index: 2;
}
/* ==================================================================== 
        SECTION 4: GALLERY 
 ====================================================================*/
.tint {
  position: relative;
  float: left;
  cursor: pointer;
}

.tint:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,122,0, 0.5);
  
  -moz-transition: background .3s linear;
  -webkit-transition: background .3s linear;
  -o-transition: background .3s linear;
  transition: background .3s linear;
}

.tint:hover:before {
  background: none;
}

/* ==================================================================== 
        SECTION 5: CLIENTS 
 ====================================================================*/
#client-header{padding-bottom:20px;}
#client-header h3{
	text-transform: uppercase;
	font-size: 1.5em;
	color: #877865;
    font-style: italic;
    font-weight: 300i;
}
#client-logo{
	padding:45px 0px 138px 0px;
}
.client-logo{
	border-style: solid;
    margin-top:5px;
    margin-bottom: 5px;
}


.swiper-wrapper{
    -webkit-transition-timing-function:linear!important; 
    -o-transition-timing-function:linear!important; 
    transition-timing-function:linear!important;
    max-width:99%
}

.swiper-container {
    width: 100%;
    height: 205px;

    margin-left: auto;
    margin-right: auto;
}

#clients-slider{
    max-width: 1200px;
    width: 1200px;
}

#clients-slider img{
    max-width: 120px;
    max-height:120px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ==================================================================== 
        SECTION 3: CONTACT FOOTER
 ====================================================================*/
#contact-footer{
	background-color : #f78f1e;
	max-width : 1335px;
	margin : 0 auto;
	padding-top : 30px;
	padding-bottom : 30px;
}
#contact-footer h1, #contact-footer p{color:white; font-weight:bold;}
#contact-footer h1{font-size:2.8em;}
#contact-footer p{font-size:1.4em;}

.contact-button{
	font-weight:bold;
	font-family : 'Roboto', sans-serif;
	font-size:2.2em;
	color: #f78f1e;
}
#cont-button{
	margin-top:31px;
	background-color:white;
}

/* ==================================================================== 
        SECTION 5: SITE FOOTER
 ====================================================================*/
#airbrands-footer{margin-top:30px;}
#nav_footer{text-align:right; margin-top:48px;}
#nav_footer a{
	position: relative;
	color: #877865;
	text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
#nav_footer a:hover{
	color: #3f3f3f;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}
#nav_footer li {
	display : inline;
	text-transform : uppercase;
	font-family : 'Roboto', sans-serif;
	font-weight : thin;
	color : #877865;
	font-size : 1.15em;
	margin-left : 25px;
}

#copyright{font-size:10px; margin-left: auto; margin-right: auto; margin-top:30px;}
#copyright p{display: inline-block;}
#dynamic-display{
    max-height:50px;
    display: inline-block;
    margin-right:25px;
}
