@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap');
html,body,div,span,
h1,h2,h3,h4,h5,h6,
p,blockquote,q,em,img,small,strong,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend{border:0;outline:0;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
ol,ul{list-style:none}
:focus{outline:0}
input,textarea{margin:0;outline:0;}
textarea{overflow:auto; resize:none;}
table{border-collapse:collapse;border-spacing:0}
/* End Reset */

/* html5 */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }

*,
*:after,
*:before{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Default Font Styles
______________________*/
body, input, select, textarea{
	font-family: 'Open Sans', sans-serif;
	font-size: 17px;
	color: #000;
	line-height: 1.5;
}

/* Headings
______________________*/
h1{
	color: #fff;
	font-size: 58px;
	font-weight: 700;
	line-height: 77.04px;
	font-family: 'Open Sans', sans-serif;
}
h2{
	color: #000;
	font-size: 58px;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 79.79px;
	font-family: 'Open Sans', sans-serif;
}
h3{
	color: #fff;
	font-size: 52px;
	line-height: 71.92px;
	font-family: 'Open Sans', sans-serif;
}
h4{
	font-size: 20px;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
}
h5{
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 23px;
	font-family: 'Open Sans', sans-serif;
}


/* Links
______________________*/
a{ font-size: 18px; color: #000; text-decoration: none;}
a:hover { color: #403b3b; text-decoration: none;}

/* p, blockquote, address
______________________*/
p{
	font-weight: 300;
	letter-spacing: 0;
	line-height: 30px;
	margin-bottom: 30px;
	font-family: 'Open Sans', sans-serif;
}
img{
	height: auto;
	max-width: 100%;
}

/* Layout 
______________________*/
#container-fluid{
	
}
.content-width{
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	max-width: 1120px;
}

/* Header
______________________*/
.header-wrap{
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	transition: all 0.5s ease;
}
.header-wrap.fixed{
	top: 0;
	z-index: 10;
	position: fixed;
	background: #23272d;
	padding: 20px 0 15px;
}
.header-wrap .content-width{
	max-width: 1400px;
	position: relative;
}
.header-left{
	z-index: 10;
	position: relative;
}
.header-left a{
	display: inline-block;
}
.header-left a img{
	display: block;
}
.toggle-btn{
	width: 30px;
	height: 25px;
	border: none;
	cursor: pointer;
	background: none;
	position: absolute;
	top: 5px;
	right: 0;
}
.toggle-btn span{
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.toggle-btn span:nth-child(1){
    top: 0px;
    transform-origin: left center; 
}
.toggle-btn span:nth-child(2){
    top: 8px;
}
.toggle-btn span:nth-child(3){
    top: 16px;
    transform-origin: left center; 
}
.toggle-btn:hover span:nth-child(1){
    top: -4px;
}
.toggle-btn:hover span:nth-child(3){
    top: 19px;
}
.toggle-btn.active span:nth-child(1){
    top: -5px;
    left: 6px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.toggle-btn.active span:nth-child(2){
    width: 0%;
    opacity: 0;
}
.toggle-btn.active span:nth-child(3) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-overlay{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 100vw;
    right: -100vw;
    bottom: 0;
    opacity: 1;
    background: #23272d;
    visibility: hidden;
    -webkit-transition-property: left right;
    -o-transition-property: left right;
    transition-property: left right;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.nav-overlay.open{
    left: 5.333%;
    right: 0vw;
	opacity: 1;
    background: #23272d;
	visibility: visible;
	-webkit-box-shadow: -15px 0px 50px rgba(0,0,0,0.5);
	box-shadow: -15px 0px 50px rgba(0,0,0,0.5);
}
.nav-overlay .menu-container{
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    margin-left: 19.6666%;
}
.main-nav{
	width: 400px;
	position: relative;
}
.main-nav > li > a {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2em;
    color: rgba(255,255,255,0.8);
}
.nav-overlay li{
    -webkit-transition-property: top;
    -o-transition-property: top;
    transition-property: top;
    -webkit-transition-duration: .45s;
    -o-transition-duration: .45s;
    transition-duration: .45s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.open .main-nav > li {
    -webkit-animation: fadeIn .25s ease-in-out;
    -o-animation: fadeIn .25s ease-in-out;
    animation: fadeIn .25s ease-in-out;
        animation-delay: 0s;
        animation-fill-mode: none;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
.open .main-nav > li:nth-child(1) {
    -webkit-animation-delay: .55s;
    -o-animation-delay: .55s;
    animation-delay: .55s;
}
.open .main-nav > li:nth-child(2) {
    -webkit-animation-delay: .7s;
    -o-animation-delay: .7s;
    animation-delay: .7s;
}
.open .main-nav > li:nth-child(3) {
    -webkit-animation-delay: .85s;
    -o-animation-delay: .85s;
    animation-delay: .85s;
}
.main-nav > li a:hover,
.overlay-footer a:hover{
	color: #fff;
}
.sub-nav{
	display: none;
    width: 17.666vw;
    position: absolute;
	margin-left: 26.9999vw;
	top: 20px;
}
.sub-nav.select{
    display: block;
}
.sub-nav li{
	opacity: 0;
}
.sub-nav li.fadeIn{
    opacity: 1;
}
.sub-nav li a{
	font-size: 19px;
	color: rgba(255,255,255,0.6);
}
.overlay-footer a{
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    -webkit-transform: all .4s ease-in-out;
    -ms-transform: all .4s ease-in-out;
    -o-transform: all .4s ease-in-out;
    transform: all .4s ease-in-out;
    color: rgba(255,255,255,0.6);
}
.open .overlay-footer li {
    -webkit-animation: fadeInUp .4s ease-in-out;
    -o-animation: fadeInUp .4s ease-in-out;
    animation: fadeInUp .4s ease-in-out;
        animation-delay: 0s;
        animation-fill-mode: none;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
.open .overlay-footer li:nth-child(1) {
    -webkit-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
}
.open .overlay-footer li:nth-child(2) {
    -webkit-animation-delay: .8s;
    -o-animation-delay: .8s;
    animation-delay: .8s;
}
.open .overlay-footer li:nth-child(3) {
    -webkit-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}


/*  Main Area
-------------------------------------- */
body.nav-active,
html.nav-active{
	overflow: hidden !important;
}
#main{
    -webkit-transition: margin .4s ease-in-out;
    -o-transition: margin .4s ease-in-out;
    transition: margin .4s ease-in-out;
}
body.nav-active #main{
    margin-left: -50vw;
    margin-right: 50vw;
}
.home-page .main-banner{
	padding: 0;
	margin-bottom: 50px;
}
section.hero-container .hero-text-container.vertical-align h1{
	margin-top: 0;
}
section.hero-container.var1 h1{
	line-height: 77.04px;
}
.main-banner{
	padding: 270px 0 315px;
	margin-bottom: 85px;
}
.main-banner h1{
	padding: 0 25px;
}
.home-featured{
	margin-bottom: 50px;
}
.border-title{
	font-size: 19px;
	font-weight: 700;
	padding-bottom: 9px;
	border-bottom: 1px solid #333;
}
.info-box{
	padding-top: 25px;
	border-top: 1px solid #ccc;
}
.services-sec .info-box{
	display: flex;
}
.contact-sec h2,
.services-sec h2{
    flex: 0 0 35%;
    max-width: 35%;
    font-size: 38px;
    line-height: 52px;
}
.services-sec ul{
	padding-left: 90px;
}
.services-sec li{
	font-weight: 300;
	line-height: 25px;
    padding-left: 20px;
	margin-bottom: 30px;
    position: relative;
}
.services-sec li:before,
.team-member-info:before{
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    top: 8px;
    left: 0;
    position: absolute;
    background: url(../images/icon.png) no-repeat 0 0 / cover;
}
.partnership-sec ul{
	display: flex;
	padding-left: 0;
	margin: 35px 0 70px;
	align-items: center;
	justify-content: space-between;
}
.featured-banner{
	padding: 150px 0 130px;
}
.featured-banner h2{
	color: #fff;
	padding: 0 25px;
	margin-bottom: 0;
}
.get-in-touch{
	padding: 85px 0 114px;
	background: #000;
}
.get-in-touch h4{
	color: #fff;
	margin-bottom: 40px;
	border-color: #fff;
}
.get-in-touch h3{
	padding-right: 100px;
}
.get-in-touch .content-width{
	max-width: 1030px;
}
.get-in-touch form{
	padding-top: 60px;
	text-align: right;
}
.get-in-touch .form-group{
	width: 50%;
	float: left;
	text-align: left;
	margin-bottom: 90px;
	padding-left: 97px;
	position: relative;
}
.get-in-touch .form-group:nth-child(2n+1){
	padding: 0 97px 0 0;
}
.get-in-touch input,
.get-in-touch select,
.get-in-touch textarea{
	color: #fff;
	width: 100%;
	border: none;
	height: 23px;
	font-weight: 400;
	background: none;
	font-size: 14px;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	border-bottom: 1px solid #888;
}
.get-in-touch select option{
	color: #000;
}
.get-in-touch textarea{
	height: 60px;
	min-height: 60px;
}
.get-in-touch select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../images/select-arrow.jpg) no-repeat right -10px;
}
.get-in-touch label{
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	position: static;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
}
.get-in-touch label.error{
	color: red;
	text-transform: none;
}
.get-in-touch label sup{
	color: red;
}
.chosen-container{
	position: relative;
}
.get-in-touch .chosen-single{
	color: #fff;
	height: 23px;
	display: block;
	font-size: 14px;
	position: absolute;
}
.get-in-touch .chosen-results{
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
}
.get-in-touch .chosen-results li{
	/*color: #fff;*/
	cursor: pointer;
	font-size: 14px;
}
.get-in-touch .message-field{
	width: 100%;
	margin-bottom: 67px;
	padding-right: 0 !important;
}
.get-in-touch .submit{
	color: #000;
	width: 171px;
	height: 38px;
	border: none;
	cursor: pointer;
	font-weight: 700;
	background: #fff;
	text-align: center;
	border-radius: 20px;
	border: 1px solid #fff;
	text-transform: uppercase;
}
.get-in-touch .submit:hover{
	color: #fff;
	background: none;
}
/* About Page 
==============================*/
.team-member-sec{
	padding-bottom: 122px;
}
.team-member-sec h2{
	margin-bottom: 85px;
}
.team-member{
	display: flex;
	margin-bottom: 67px;
}
.team-member-img{
	width: 100%;
	max-width: 200px;
}
.team-member-img img{
	display: block;
}
.team-member-info{
    position: relative;
	padding-left: 35px;
    margin-bottom: 67px;
}
.team-member-info h4{
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 30px;
}
.team-member-info p{
	font-weight: 300;
	margin-bottom: 0;
}
.ambitious-goals h2{
	padding-right: 60px;
}
/* Contact Page 
==============================*/
.contact-sec{
	padding-bottom: 175px;
}
.contact-sec .info-box{
	display: flex;
}
.contact-info-sec{
	padding: 15px 0 0 60px;
}
address{
	font-size: 17px;
	font-weight: 300;
	font-style: normal;
	margin-bottom: 50px;
}
.contact-sec p{
	font-size: 18px;
}
.contact-sec a:hover{
	text-decoration: underline;
}
.thank-you{
	text-align: center;
}
.thank-you h1{
	margin-bottom: 20px;
	text-transform: uppercase;
}
.thank-you p{
	color: #fff;
	font-size: 20px;
	font-weight: 400;
}
.alert-banner{
	margin-bottom: 0;
}
/*  Footer 
-------------------------------------- */
.footer-wrap #footer{
	background: none;
	font-family: 'Open Sans', sans-serif;
}
.footer-wrap{
	padding: 70px 0 20px;
}
.footer-left{
	width: 55%;
	float: left;
}
.footer-left a{
	margin-top: 40px;
	display: inline-block;
}
.footer-right{
	width: 45%;
	float: right;
}
.quick-links{
	text-align: right;
}
.quick-links li{
	margin-bottom: 5px;
}
.quick-links li img{
    margin-top: 5px;
}
.quick-links ul{
	max-width: 300px;
	column-count: 2;
	text-align: left;
	margin-bottom: 105px;
}
.quick-links h4{
	text-align: left;
	padding-bottom: 15px;
	margin: 0 60px 10px 0;
	border-bottom: 1px solid #000;
}
.copyright-sec{
	display: flex;
	justify-content: space-between;
}
.copyright-sec p{
	font-size: 14px;
	margin-bottom: 0;	
	font-weight: 400;
}
.copyright-sec .website-by a{
	color: #000;
	font-size: 14px;
}
.copyright-sec .website-by a:hover{
	color: #403b3b;
}
.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}
@media (max-width: 1599px) {
	.header-wrap .content-width{
		max-width: 1240px;
	}
}
@media (max-width: 1439px) {
	.header-wrap .content-width{
		max-width: 1060px;
	}
}
@media (max-width: 1199px) {
	.header-left a{
		transition: all 0.3s ease;
	}
	body.nav-active .header-left a{
		margin-left: 60px;
	}
    .main-banner h1{
    	padding: 0 12px;
    }
    h1{
    	font-size: 48px;
    	line-height: 60px;
    }
    section.hero-container.var1 h1{
    	line-height: 60px;
    }
    h2{
    	font-size: 48px;
    	line-height: 60px;
    }
    .featured-banner h2{
    	padding: 0 50px;
    }
    h3{
    	font-size: 42px;
    	line-height: 60px;
    }
    .contact-sec h2,
    .services-sec h2{
        flex: 0 0 37%;
        max-width: 37%;
    }
    .services-sec ul{
        padding-left: 50px;
    }
    .get-in-touch h3{
		padding-right: 200px;
    }
    /* Contact Page
    ===========================*/
    .main-banner{
    	margin-bottom: 60px;
    }
    .contact-info-sec{
    	padding-left: 50px;
    }
    .contact-sec{
    	padding-bottom: 100px;
    }
    /* About Page 
	==============================*/
	.team-member-sec{
		padding-bottom: 80px;
	}
	.team-member-sec h2{
		margin-bottom: 60px;
	}
	.team-member-img{
		max-width: 150px;
	}
	.team-member-info{
		margin-bottom: 50px;
	}
	.team-member-info h4{
		margin-bottom: 15px;
	}
	.team-member{
		margin-bottom: 50px;
	}
}

@media (max-width: 1023px) {
	.header-wrap{
		top: 40px;
	}
    section.hero-container.var1 h1{
    	padding: 0;
    	font-size: 36px;
    	line-height: 44px;
    }
    .nav-overlay .menu-container{
    	top: 0;
		margin-top: 0;
    	overflow: auto;
    	transform: none;
    	min-height: 100%;
    }
    body.nav-active .header-left a{
    	margin-left: 50px;
    }
    .main-nav{
    	top: 50%;
    	margin: 0;
    	transform: translateY(-50%);
    	position: absolute;
    }
    body .nav-overlay .overlay-footer{
    	top: 55%;
    	position: absolute;
    }
    .main-nav > li > a{
    	font-size: 40px;
    }
    .home-page .main-banner{
    	margin-bottom: 40px;
    }
    .border-title{
    	font-size: 18px;
    }
    section.hero-container.full_vh{
    	max-height: 80vh; 
    }
    #hero-carousel .indicator-container{
    	bottom: 40px;
    }
    h1{
    	font-size: 36px;
    	line-height: 44px;
    }
    h2{
    	font-size: 42px;
    	line-height: 54px;
    }
    h3{
    	font-size: 36px;
    	line-height: 45px;
    }
    h4{
    	font-size: 18px;
    }
    p{
    	margin-bottom: 25px;
    }
    .contact-sec h2,
    .services-sec h2{
        font-size: 28px;
        line-height: 40px;
    }
    .info-box{
    	padding-top: 20px;
    }
    .home-featured{
    	margin-bottom: 40px;
    }
    .services-sec ul{
    	padding-left: 60px;
    }
    .partnership-sec ul{
    	margin: 25px 0 50px;
    }
    .partnership-sec li{
    	padding: 0 10px;
    }
    .featured-banner h2{
    	padding: 0;
    }
    .featured-banner{
    	padding: 100px 0;
    }
    .get-in-touch{
    	padding: 60px 0 80px;
    }
    .get-in-touch h4{
    	margin-bottom: 30px;
    }
    .get-in-touch h3{
    	padding-right: 50px;
    }
    .get-in-touch form{
    	padding-top: 30px;
    }
    .get-in-touch .form-group{
    	margin: 0 0 70px;
    	padding-left: 50px;
    }
    .get-in-touch .form-group:nth-child(2n+1){
    	padding-right: 50px;
    }
    .footer-wrap{
    	padding-top: 50px;
    }
    .footer-left a{
    	margin: 20px 70px 0 0;
    }
    .quick-links ul{
    	margin-bottom: 80px;
    }
    .quick-links a{
    	font-size: 16px;
    }
    /* Contact Page
    ===========================*/
    .main-banner{
    	margin-bottom: 40px;
    	padding: 250px 0 270px;
    }
    .main-banner h1{
    	padding: 0;
    }
    .contact-info-sec{
    	padding-left: 30px;
    }
    .contact-sec{
    	padding-bottom: 60px;
    }
    h5{
    	margin-bottom: 18px;
    }
    address{
    	margin-bottom: 40px;
    }
    /* About Page 
	==============================*/
	.team-member-sec{
		padding-bottom: 50px;
	}
	.team-member-sec h2{
		margin-bottom: 50px;
	}
	.team-member-img{
		max-width: 120px;
	}
	.team-member-info{
		padding-left: 25px;
	}
	.team-member-info h4{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.team-member-info p{
		font-size: 15px;
		line-height: 25px;
	}
	.team-member{
		margin-bottom: 35px;
	}
}

@media (max-width: 767px) {
	body.nav-active .header-left a{
		margin-left: 35px;
	}
	section.hero-container.full_vh{
		height: auto;
		max-height: 100%;
		padding-bottom: 100%;
	}
	section.hero-container.var1 h1{
		font-size: 28px;
		line-height: 38px;
	}
	body .nav-overlay .overlay-footer{
		top: 45%;
	}
	.main-nav > li > a{
		font-size: 30px;
	}
	.nav-overlay .menu-container{
		margin-left: 50px;
	}
	.gutter-container{
		padding: 0 15px;
	}
    .border-title{
    	font-size: 16px;
    }
    h1{
    	font-size: 28px;
    	line-height: 38px;
    }
    h2{
    	font-size: 30px;
    	line-height: 40px;
    }
    h2 br{
    	display: none;
    }
    h3{
    	font-size: 28px;
    	line-height: 34px;
    }
    h4{
		font-size: 16px;
    }
    p{
    	font-size: 16px;
    	line-height: 26px;
    	margin-bottom: 20px;
    }
    .services-sec li{
    	font-size: 16px;
    }
    .home-featured{
    	margin-bottom: 30px;
    }
    .services-sec .info-box{
    	display: block;
    }
    .services-sec ul{
    	padding-left: 0;
    }
    .services-sec li{
    	margin-bottom: 20px;
    }
    .contact-sec h2,
    .services-sec h2{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .featured-banner{
    	padding: 50px 0;
    }
    .get-in-touch{
    	padding: 50px 0 60px;
    }
    .get-in-touch .form-group{
    	margin-bottom: 50px;
    	padding-left: 30px;
    }
    .get-in-touch .form-group:nth-child(2n+1){
    	padding-right: 30px;
    }
    .get-in-touch textarea{
    	height: 50px;
    	min-height: 50px;
    }
    .get-in-touch .submit{
    	width: 150px;
    }
    .footer-left a{
    	margin: 10px 50px 0 0;
    }
    .footer-wrap{
    	padding-top: 35px;
    }
    .quick-links li{
    	margin-bottom: 0;
    }
    .quick-links a{
    	font-size: 14px;
    }
    .quick-links h4{
    	padding-bottom: 12px;
    }
    /* Contact Page
    ===========================*/
    .main-banner{
    	padding: 210px 0 214px;
    }
    .contact-sec .info-box{
    	display: block;
    }
    .contact-info-sec{
    	padding: 0;
    }
    .contact-sec{
    	padding-bottom: 25px;
    }
    address{
    	font-size: 16px;
    	margin-bottom: 25px;
    }
    h5{
    	margin-bottom: 15px;
    }
    .contact-sec p{
    	font-size: 16px;
    }
    /* About Page 
	==============================*/
	.team-member-sec{
		padding-bottom: 30px;
	}
	.team-member-sec h2{
		margin-bottom: 35px;
	}
	.team-member-img{
		max-width: 80px;
	}
	.team-member-info{
		margin-bottom: 40px;
	}
	.team-member-info h4{
		font-size: 16px;
		margin-bottom: 5px;
	}
	.team-member-info p{
		font-size: 14px;
		line-height: 24px;
	}
	.team-member{
		margin-bottom: 30px;
	}
}
@media (max-width: 575px) {
	body.nav-active .header-left a{
		margin-left: 20px;
	}
	.nav-overlay .menu-container{
		margin-left: 30px;
	}
	section.hero-container.full_vh{
		padding-bottom: 100%;
	}
	section.hero-container.var1 h1{
		font-size: 18px;
		line-height: 28px;
	}
	#hero-carousel .indicator-container{
		bottom: 10px;
	}
	section.hero-container .hero-text-container{
		margin-top: 15px;
	}
	body .nav-overlay .overlay-footer{
		top: 40%;
	}
	.home-page .main-banner{
		margin-bottom: 30px;
	}
	.info-box{
		padding-top: 15px;
	}
	h1{
		font-size: 18px;
		line-height: 28px;
	}
	h2{
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 20px;
	}
	h3{
		font-size: 20px;
		line-height: 30px;
	}
	.featured-banner{
		padding: 30px 0;
	}
	.featured-banner h2{
		font-size: 18px;
		line-height: 28px;
	}
    .contact-sec h2,
    .services-sec h2{
        font-size: 24px;
        line-height: 32px;
    }
	.get-in-touch{
		padding: 35px 0 40px;
	}
	.get-in-touch h4{
		margin-bottom: 20px;
	}
	.get-in-touch h3{
		padding-right: 0;
	}
	.get-in-touch .form-group{
		width: auto;
		float: none;
		padding-left: 0;
	}
	.get-in-touch .form-group:nth-child(2n+1){
		padding-right: 0;
	}
	.get-in-touch .form-group{
		margin-bottom: 30px;
	}
	.get-in-touch label{
		font-size: 13px;
	}
	.get-in-touch .submit{
		width: 130px;
	}
	.partnership-sec ul{
		display: block;
	}
	.partnership-sec li{
		width: 100%;
		max-width: 49%;
		display: inline-block;
		vertical-align: middle;
	}
	.partnership-sec .row1 li:last-child{
		display: inline-block !important;
	}
	.partnership-sec .row2 li:first-child{
		display: none;
	}
	.partnership-sec ul{
		margin: 0;
	}
	.partnership-sec li{
		padding: 0 20px;
		text-align: center;
	}
	.partnership-sec li img{
		transform: scale(0.7);
	}
	/* Contact Page
    ===========================*/
    .main-banner{
    	margin-bottom: 30px;
    	padding: 140px 0 108px;
    }
    .contact-sec{
    	padding-bottom: 15px;
    }
    /* About Page 
	==============================*/
	.team-member{
		display: block;
	}
	.team-member-info{
        padding-left: 20px;
		margin-bottom: 30px;
	}
	.team-member-img{
		max-width: 130px;
		margin-bottom: 20px;
	}
	.team-member-sec{
		padding-bottom: 20px;
	}
	.footer-wrap{
		padding-top: 30px;
	}
	.quick-links h4{
		margin-right: 0;
	}
	.footer-left{
		width: auto;
		float: none;
		margin-bottom: 20px;
	}
	.footer-right{
		float: none;
		width: auto;
	}
	.quick-links ul{
		margin-bottom: 15px;
	}
	.copyright-sec{
		display: block;
	}
}