﻿/*===================== 
	Color information
	
	-
	-
	-
	-
lt green #deefd3
green #88b06a
dk green #afb7a8
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: 'Poppins', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  
.text-link-1 {
    font-weight: 600;
    color:#88b06a;
    transition: .2s ease-in;
    margin:5px 0;
}
.text-link-1:hover {
    font-weight: 600;
    color:#afb7a8;
    font-size: 18px;
}


/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    background: #fff;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 200;
	}

header {
	margin: 0 auto;
	max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	}
.head-logo-1 {
    padding:30px 20px;
}
.head-logo-1 img {
	max-width: 100%;
	height: auto;
	display: block;
}

.head-ico {
    padding:0 20px;
    display: flex;
    gap:10px;
}

.head-ico-left, .head-ico-right {
    padding:0;
    margin:0;   
    display: flex;
    gap:10px;
}
.head-ico-left li, .head-ico-right li {
    padding:0;
    margin:0;   
    list-style: none;
}

.head-ico-left li a, .head-ico-right li a {
    width:35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color:#fff;
}
.head-ico-left li a {
    background:#88b06a;  
    transition: .2s ease-in;
}
.head-ico-right li a {
    background:#afb7a8;   
    transition: .2s ease-in;
}
.head-ico-left li a:hover, .head-ico-right li a:hover {
    background:#deefd3;   
    color:#88b06a;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;}

nav.primary {
    width:calc(100% - 410px);
	padding:0;
	display:block;
	margin:0;
	position:relative;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
        justify-content: space-around;
        width:100%;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
            transition: .2s ease-in;
			}
			nav.primary ul li a {
                font-family: 'Poppins', sans-serif;
				color: #000;
				font-size: 18px;
				padding: 10px;
				display: block;
				margin: 0;
				text-align: center;
				text-transform: uppercase;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 400;
				cursor: pointer;
				}	
			nav.primary ul li a:hover {
				background: #88b06a;
				color:#fff;
				}
			nav.primary ul li:hover a {
				background: #88b06a;
                color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #88b06a;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
                background: #afb7a8;
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/


.wrap-cta {
    width:100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    position: relative;
    z-index: 200;
    margin-top:-275px;
}
.cta-header {
    display: block;
    width:100%;
    font-size:45px;
    font-weight: 700;
    color:#fff;
    text-shadow: 0 0 10px  rgba(0,0,0,0.7);
    padding-left:52%;
    padding-bottom:15px;
}
.cta-left {
    width:49%;
    display: flex;
    justify-content: flex-end;
}
.cta-btn-cont {
    width:100%;
    max-width: 750px;
    padding:40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cta-btn-cont a {
    width:48%;
    background:rgba(255,255,255,0.6);
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: .2s ease-in;
}
.cta-btn-cont a img {
    max-width: 100%;
    padding:60px 20px 20px 20px;
    display: block;
    margin:0 auto;
    box-sizing: border-box;
}
.cta-btn-cont a p {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-weight:600;
    text-align: center;
    padding:15px 5px;
    color:#fff;
    font-size: 20px;
    background:#afb7a8;
    transition: .2s ease-in;
}
.cta-btn-cont a p span {
    font-weight:400;
}
.cta-btn-cont a:hover {
    background:#deefd3;
}
.cta-btn-cont a:hover p {
    background:#88b06a;
}
.cta-right {
    width:49%;
    background:rgba(255,255,255,0.6);
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
}
.cta-search-cont {
    width:100%;
    max-width: 750px;
    padding:40px 20px 40px 50px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cta-btn-green {
    width:47%;
    background:#88b06a;
    padding:25px;
    box-sizing: border-box;
    transition: .2s ease-in;
}
.cta-btn-green p {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color:#fff;
}
.cta-btn-green p span {
    font-weight: 400;
}
.cta-btn-green:hover {
    background:#afb7a8;
}
.cat-search-form {
    width:100%;
    padding-top:50px;
}
.cat-search-form p {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 400;
    color:#88b06a;
    padding-bottom:15px;
}
.cat-search-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    gap:30px 0;
}
.cat-search-form form select {
    border:1px solid #88b06a;
    background:#fff;
    padding:20px;
    width:48%;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color:#88b06a;
    outline:none;
    box-sizing: border-box;
    cursor: pointer;
}
.cat-search-form form input {
    border:1px solid #88b06a;
    background:#fff;
    padding:20px;
    width:calc(98% - 64px);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color:#88b06a;
    outline:none;
    box-sizing: border-box;
}
.cat-search-form form input::placeholder {
    opacity: 1.0!important;
    color:#88b06a;
}
.cat-search-form form button {
    outline:none;
    border:none;
    background:#afb7a8;
    width:64px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-size: 30px;
    cursor: pointer;
    transition: .2s ease-in;
}
.cat-search-form form button:hover {
    background:#88b06a;
}
.warp-about-home {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:60px 0 60px 0;
}
.warp-about-home h1 {
    font-size: 48px;
    color:#88b06a;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.home-about-left-1 {
    width:48%;
    background:#fff;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
    display: flex;
    justify-content: flex-end;   
}
.home-about-col-1 {
    width: 100%;
    max-width: 714px;
    padding: 60px 40px 60px 20px;
    box-sizing: border-box;
}

.home-about-right-1 {
    width: 49%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: linear-gradient(180deg,rgba(136,176,106,0.6) 0%,rgba(136,176,106,0.6) 100%), url("../siteart/home-about-img-1.jpg") ;
    margin-bottom: 35px;
}
.t-slider, .t-slider .slick-list, .t-slider .slick-track {
    height: 100%;
}
.t-slide-cont {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:20px 10%;
    box-sizing: border-box;
}
.t-slide-cont p {
    color:#fff;
    text-align: center;
    font-weight: 500;
}
.t-slide-cont p span {
    font-weight: 700;
}
.t-slider .slick-dots {
    width: 100%;
    display: flex;
    padding:0 10px;
    box-sizing: border-box;
    gap:10px;
}
.t-slider .slick-dots li {
    list-style: none;
    flex-grow: 1;
    background:#deefd3;
    height: 20px;
    cursor: pointer;
}
.t-slider .slick-dots li.slick-active {
    background:#afb7a8;
}
.t-slider .slick-dots li button {
    display: none;
}
.wrap-banner {
    width:100%;
    padding:60px 20px 80px 20px;
    box-sizing: border-box;
}
.wrap-banner h2 {
    font-size: 48px;
    color: #88b06a;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding:0 20px 40px 20px;
}
.wrap-banner .container-1 {
    background:#fff;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
    display: flex;
    flex-wrap: wrap;
    padding:0;
}
.banner-slider {
    width:80%;
}
.banner-slider img {
    width:100%;
    display: block;
}
.banner-slider-nav {
    width:20%;
}
.banner-slider-nav .slick-list {
    height: 100%;
}
.banner-slider-nav .slick-track:before, .banner-slider-nav .slick-track:after {
    display: none;   
}
.banner-slider-nav .slick-track {
    display: flex;
    flex-wrap: wrap;
    width:100%!important;
    transform: none !important;
    height: 100%;
}
.banner-slider-nav .slick-slide {
    width:100%!important;
    height: 25%;
    display: flex!important;
    justify-content: center;
    align-items: center;
    padding:10px 5px;
    box-sizing: border-box;
    color:#88b06a;
    cursor: pointer;
}
.banner-slider-nav .slick-slide.slick-current {
    background: #deefd3;
    color:#000;
}
.banner-slider-nav h3 {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.wrap-brands {
    width:100%;
    border-bottom:78px solid #afb7a8;
    margin-top:50px;
}
.wrap-brands .container-1 {
    margin-bottom:-30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:30px 0;
}
.wrap-brands .container-1 a {
    padding:50px 20px;
    display: block;
    width:19%;
    box-sizing: border-box;
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3); 
}
.wrap-brands .container-1 a img {
    max-width: 100%;
    height: auto;
    display: block;
    margin:0 auto;
    transition: .2s ease-in;
}
.wrap-brands .container-1 a:hover img {
    opacity: 0.7;
}
.finance-cont {
    padding:70px 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:20px 0;
}
.finance-cont a {
    padding: 50px 20px;
    width:48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
}
.finance-cont a:first-of-type {
    width:100%;
}
.finance-cont a:first-of-type img {
	max-width:300px;
}
.finance-cont a img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin:0 auto;
    transition: .2s ease-in;
}
.finance-cont a p {
    font-size: 20px;
    font-weight: 500;;
    color:#88b06a;
    text-align: center;
    transition: .2s ease-in;
	padding-top: 5px;
}
.finance-cont a:hover img {
    opacity: 0.7;
}
.finance-cont a:hover p {
    color:#afb7a8;
}


/*===================== 
	slideshow styles 
=======================*/

.wrap-hero {
    width:100%;
    overflow: hidden;
    height: calc(100vh - 375px);
    max-height: 42vw;
    min-height: 300px;
}
.slider-hero {
    width:100%;
    overflow: hidden;
}
.slider-hero .slick-list, .slider-hero .slick-track {
    overflow: hidden;
}

.slider-hero img {
    width:100%;
    height: calc(100vh - 375px);
    max-height: 42vw;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
}


/*===================== 
	Form styles 
=======================*/

/* Containers */

.wrap-form {
    background:#deefd3;
    padding:60px 20px;
    box-sizing: border-box;
}

.wrap-form .container-2 {
    background: #fff;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
}


.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}
.form-info-cont h3 {
    font-weight: 600;
    color:#88b06a;
    padding:10px 0 5px 0;
    margin-top:5px;
    border-top:1px solid #88b06a;
    
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 5px 0 5px 5px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Roboto', sans-serif;
}

select {
	margin:0;
	padding:0;
}
.form-inline .button {
	color: #fff;
	font-size:20px;
	font-weight: 500; 
    display: block;
    padding: 10px;
	width: 100%;
    max-width: 350px;
    margin: 10px auto;
	-webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
	border: none;
    background: #88b06a;
	-webkit-appearance: none;
    cursor: pointer;
      font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}


.form-inline .button:hover {
    background: #afb7a8;

}

.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/


.warp-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 0 60px 0;
}
.warp-content h1 {
    font-size: 48px;
    color: #88b06a;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.content-left-1 {
    width: 48%;
    background: #fff;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
    display: flex;
    justify-content: flex-end;
}
.content-left-col-1 {
    width: 100%;
    max-width: 714px;
    padding: 60px 40px 60px 20px;
    box-sizing: border-box;
}
.content-left-col-1 ul {
    padding:10px 0;
    margin:0;
}
.content-left-col-1 ul li {
    padding:0;
    margin:0;
    list-style: none;
    font-size: 20px;
    font-weight: 600;
    color: #88b06a;
}
.location-info-cont-1 h2 {
    color:#88b06a;
    font-size: 22px;
}
.location-info-cont-1 p {
    font-size: 20px;
    padding-bottom:30px;
}
.location-info-cont-1 p a {
    color:#000!important;
}
.location-info-cont-1 p a:hover {
    color:#88b06a!important;
}



.content-right-1 {
    width: 49%;
    background:#88b06a;
    max-height: 500px;
}
.content-right-1 img {
    width:100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.6;
    max-height: 500px;
}
.content-right-1 iframe {
    WIDTH:100%;
    height: 500px;
    border:0px;
    
}
.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1500px;
    width:100%;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
	}

.container-2 {
	max-width: 900px;
    width:100%;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 100%;
	margin: 0 auto;
	padding:50px 20px 80px 20px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
    border-top:2px solid #afb7a8;
    display: flex;
    align-items: center;
	}
.foot-logo {
    background:#88b06a;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding:30px;
    box-sizing: border-box;
    width:30%;
    min-height: 370px;
}
.foot-logo img {
    max-width: 100%;
    display: block;
    height: auto;
    margin:0 auto;
    filter: brightness(0) invert(1);
    
}
.foot-logo ul {
    display: flex;
    gap:15px;
    padding:20px 0 0 0;
    margin:0;
}
.foot-logo ul li {
    list-style: none;
    padding:0;
    margin:0;
}
.foot-logo ul li a {
    font-size: 30px;
    color:#fff;
    transition: .2s ease-in;
}
.foot-logo ul li a:hover {
    color:#afb7a8;
}
.foot-nav {
    width:70%;
    padding:20px 20px 20px 74px;
}
.foot-nav-row {
    width:100%;
    max-width: 880px;
    display: flex;
    justify-content: space-between;
}
.foot-nav-cont {
    padding-right:10px;
}
.foot-nav-cont h4 {
    font-size: 18px;
    font-weight: 500;
    color:#88b06a;
}
.foot-nav-cont ul {
    padding:5px 0 0 0;
    margin:0;
}
.foot-nav-cont ul li {
    font-family: 'Poppins', sans-serif;
    padding:3px 0;
    margin:0;
    list-style: none;
    font-size: 18px;
    font-weight: 400;
}
.foot-nav-cont ul li a {
    color:#000;
    transition: .2s ease-in;
}
.foot-nav-cont ul li a:hover {
    color:#afb7a8;
}


/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1260px)  {
    nav.primary ul li a {
        font-size: 1.3vw;
        padding: 10px 5px;
    }	
    .head-logo-1 {
        width:150px;
        box-sizing: border-box;
    }
    
}
@media screen and (max-width: 1100px)  {
    .foot-nav-cont ul li {
        font-size: 16px;
    }
}

@media screen and (max-width: 860px)  {

    header {
        flex-wrap: wrap;
    }
    .head-logo-1 {
        width: calc(100% - 80px);
        box-sizing: border-box;
        order:2;
    }
    .head-ico {
        padding: 10px 20px;
        background:#88b06a;
        display: flex;
        gap: 10px;
        width:100%;
        justify-content: space-between;
        order:1;
    }
    .head-ico-left li a, .head-ico-right li a {
         background:#88b06a;   
    }
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;}
	#menu-button{ 
		display: block;
		font-size: 24px;
        order:3;
        padding:0 20px;
	}
		#menu-button a{
			 color:#000;
			 text-decoration: none;
			 padding:5px; 
			 font-weight:normal;
			cursor: pointer;
		  }
	nav.mobile { 
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #afb7a8;
		z-index: 500; 
		overflow:auto;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
		cursor: pointer;
	}
	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
        font-family: 'Poppins', sans-serif;
		position: relative;
		display: block;
		font-size:17px;
		padding: 10px;
		color: #fff;
		text-decoration: none;
        text-transform: uppercase;
        text-align: center;
		cursor: pointer;
	}
	nav.mobile ul li a:hover {
		background:#88b06a; 
	}

	/* SECOND LEVEL */
	nav.mobile ul li li a {
		
	}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {border:none;}
	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
		border-left:4px #555 solid;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;

	}
	.nav-footer {color:#1B1B1B; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

	/* FONT AWESOME ICONS */
	nav.mobile ul li a i{
		width:25px;
		padding:8px 3px;
		margin:0 6px 0 0;
		text-align:center;
		background:#292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}


	nav.mobile ul li .fa-chevron-down {color:#999;}
    
    .wrap-cta {
         margin-top:-150px;   
    }
    
    .cta-header {
        order:1;
        padding:20px 30px;
        text-align: center;
        font-size: 6.5vw;
    }
    .cta-search-cont {
        padding: 70px 20px 40px 20px;
    }
    .cta-right {
        width: calc(100% - 40px);
        margin:0 auto;
        background: rgba(255,255,255,0.6);
        box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
        order:2;
    }
    .cta-left {
        width: 100%;
        order:3;
    }
    .cta-btn-cont {
         max-width: 100%;   
    }
    .cta-btn-green {
        width: 49%;
        padding: 15px;
    }
    .cta-btn-green p {
      font-size: 4vw;
    }
    .cat-search-form p {
      font-size: 6vw;
    }
    .cat-search-form form select {
        width: 100%;
    }
    .warp-about-home {
      padding: 30px 0 30px 0;
    }
    .home-about-left-1 {
        width: calc(100% - 40px);
        margin:0 auto 40px auto;
    }
    .home-about-right-1 {
          width: 100%;
    }
    .t-slide-cont {
        padding: 160px 10%;
    }
    .banner-slider {
        width:100%;
    }
    .banner-slider-nav {
        width:100%;
    }
    .banner-slider-nav .slick-slide {
        height: auto;
    }
    .banner-slider-nav .slick-slide {
      width: 25% !important;
        padding:15px 5px;
    }
    .banner-slider-nav h3 {
      font-size: 2.2vw;
    }
    .warp-about-home h1, .wrap-banner h2, .warp-content h1 {
      font-size: 6.5vw;
        text-align: center;
    }
    .wrap-brands .container-1 a {
        width:31%;
    }
    .wrap-brands .container-1 a:nth-child(1) {
        width:48%;
    }
    .wrap-brands .container-1 a:nth-child(2) {
        width:48%;
    }
    .foot-logo {
         width:100%;   
    }
    .foot-nav {
        display: none;
    }
    .col-1-2 {
        width:100%;
    }
    .content-left-1 {
        width: calc(100% - 40px);
        margin:0 auto;
        order:2;
        position: relative;
        z-index: 1;
        top: -50px;
    }
    .content-right-1 {
        width: 100%;
        order:1;
    }
    .content-right-1 img {
      height: 300px;
      object-position: center bottom;
    }

}
	
@media screen and (max-width: 500px)  {
    
    .wrap-cta {
      margin-top: -120px;
    }
    .cta-btn-green {
        width: 100%;
        margin-bottom:10px;
    }
    .cta-btn-green p {
      font-size: 6.5vw;
    }
    .cta-btn-cont a {
      width: 100%;
        margin-bottom:30px;
    }
    .banner-slider-nav .slick-slide {
      width: 50% !important;
    }
    .banner-slider-nav h3 {
      font-size: 3.2vw;
    }
    .wrap-brands .container-1 a {
        width:100%!important;
        
    }
        .finance-cont a {
        width:100%;
    }
}


