﻿/*===================== 
	Color information
	
	dk blue #295c87
    blue #7796b0
    lt grey #f2f2f2
    orange #ee9730
	
		 
=======================*/
/*===================== 
	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: 'Roboto Condensed', 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: 'Aldrich', sans-serif;
        font-size: 30px;
        
}
	h2 {
        font-family: 'Aldrich', sans-serif;
        font-size: 26px;
        font-weight: 400;
}
	h3 {
        font-family: 'Aldrich', sans-serif;
        font-size: 24px;
        
}
	h4 {
        font-family: 'Aldrich', sans-serif;
        font-size: 20px;
        
}
	h5 {
        font-family: 'Aldrich', sans-serif;
        font-size: 18px;
        
}
	h6 {}

p {
        font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
	margin: 0;
    line-height: 1.5;
	}

.bold {
    font-weight: bold;
	}

.show-mobile {
    display: none;
}



/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: inherit; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  
.copy-link-1 {
    font-weight: 600;
    color:#295c87!important;
    margin:5px 0;
    display: inline-block;
    transition: .2s ease-in;
}
.copy-link-1 i {
    color:#ee9730;
}
.copy-link-1:hover {
    color:#7796b0!important;
}
.orange-btn {
    font-family: 'Aldrich', sans-serif;
    background:#ee9730;
    border:2px solid #ee9730;
    color:#fff!important;
    font-size: 20px;
    font-weight: 400;
    padding:20px 35px;
    box-sizing: border-box;
    min-width: 250px;
    transition: .2s ease-in;
    text-align: center;
    display: inline-block;
}
.orange-btn:hover {
    background:#fff;
    color:#ee9730!important;
}


/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    background:#f2f2f2;
	}

header {
	margin: 0 auto;
	max-width: 1500px;
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	}
.head-logo-1 {
    padding:20px;
    box-sizing: border-box;
}

.head-logo-1 img {
	max-width: 100%;
	height: auto;
	display: block;
}
.head-btn-cont-1 {
    padding:20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.head-btn-cont-1 ul {
    display: flex;
    gap:10px;
    padding:0;
    margin:0;
}
.head-btn-cont-1 ul li {
    padding:0;
    margin:0;
    list-style: none;
}
.head-btn-cont-1 ul li a {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: #ee9730;
    color:#fff;
    transition: .2s ease-in;
}
.head-btn-cont-1 ul li:last-child  a{
    background: #295c87;
}
.head-btn-cont-1 ul li a:hover {
    background:#000;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
            transition: .2s ease-in;
			}
			nav.primary ul li a {
                font-family: 'Roboto Condensed', sans-serif;
				color: #000;
				font-size: 15px;
				text-decoration: none;
				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;
				}	
			nav.primary ul li a:hover {
				background: #295c87;
				}
            nav.primary ul li:hover a {
				background: #295c87;
				color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				color:#fff;
				background: #295c87;
				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: #7796b0;
			}
/* 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-hero {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width:100%;
    height: auto;
}
.wrap-hero.home-hero .container-1 {
    min-height: calc(100vh - 350px); 
}
.wrap-hero.home-hero .container-1 h1 {
    color:#295c87;
    font-size:75px;
    text-transform: uppercase;
    padding-top:50px;
    padding-bottom:100px;
    text-shadow: 0 0 20px #fff;
    
}
.wrap-hero .container-1 h1 span {
    font-size: 35px;
    display: block;
}
.wrap-hero .container-1 {
    min-height: 200px; 
}
.wrap-hero .container-1 h1 {
    color:#295c87;
    font-size:75px;
    text-transform: uppercase;
    padding-top:50px;
    padding-bottom:150px;
    text-shadow: 0 0 20px #fff;
    
}
.wrap-home-cta {
    width:100%;
    height: auto;
    position: relative;
    margin-top:-90px;
    z-index: 1;
}
.wrap-home-cta .container-1 {
    display: flex;
    justify-content: space-between;
}
.home-cta-left {
    width:20%;
    background:#ee9730;
}
.home-cta-left h2 {
    color:#fff;
    font-size: 30px;
    font-weight: 400;
    padding:15px;
    box-sizing: border-box;
}
.home-cta-right {
    width:77%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:70px 0;
}
.home-cta-search {
    width:100%;
}
.home-cta-search form {
    max-width: 65.5%;
    width:100%;
    background:#fff;
    display: flex;
    padding:10px;
    box-sizing: border-box;
}
.home-cta-search input {
    background-color:transparent;
    outline:none;
    border:0px;
    font-size:20px;
    font-family: 'Roboto Condensed', sans-serif;
    width:100%;
}
.home-cta-search button {
    background-color:transparent;
    outline:none;
    border:0px;
    font-size:20px;
}
.home-cta-btns {
    width:100%;
    display: flex;
    justify-content: space-between;
}
.home-cta-btns a {
    width:31%;
}
.home-cta-btns a h3 {
    display: block;
    background:#295c87;
    color:#fff;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    padding:25px 15px;
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
    transition: .2s ease-in;
}
.home-cta-btns a p {
    font-size: 16px;
    display: block;
    background:#7796b0;
    color:#fff;
    text-align: center;
    padding:40px 30px;
    width: 100%;
    box-sizing: border-box;
    transition: .2s ease-in;
}
.home-cta-btns a:hover h3, .home-cta-btns a:hover p {
    background:#000;
}
.wrap-home-brands {
    width:100%;
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
}
.brand-cont-left {
    width:calc(50% - 325px);
    background:#7796b0;
    display: flex;
    justify-content: flex-end;
}
.brand-cont-left h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    max-width: 215px;
    width: 100%;
    align-items: center;
}
.brand-cont-right {
    background:#f2f2f2;
    width:calc(48% + 321px);
}
.brand-row {
    box-sizing: border-box;
    max-width: 832px;
    width:100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding:60px 15px 60px 40px;
}
.brand-row a {
    width:19%;
    display: block;
}
.brand-row a img {
    max-width: 100%;
    width:100%;
    height: auto;
    display: block;
    margin:0 auto;
    transition: .2s ease-in;
}
.brand-row a:hover img {
    opacity: 0.7;
}
.wrap-about {
    width:100%;
    background:#ee9730;
}
.about-cont-1 {
    width:calc(50% + 283px);
    padding:30px 50px 30px calc(50% - 525px);
    box-sizing: border-box;
    background:#fff;
    margin:80px 0;
}
.about-cont-1 ul {
    padding:10px 0 10px 10px;
    margin:0;
}
.about-cont-1 ul li {
    padding:3px 0;
    margin:0;
    font-size: 18px;
    font-weight: 600;
    list-style: none;
}
.about-cont-1 ul li a {
    color: #295c87 !important;
}
.about-cont-1 ul li a:hover {
    color:#7796b0!important;
}

.wrap-careers-banner {
    width:100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap:40px;
    background:#295c87;
    padding:50px 20px;
    color:#fff;
    box-sizing: border-box;
    text-align: center;
}
.wrap-careers-banner h2 {
    font-size: 30px;
}

.wrap-quote-banner {
    width:100%;
    padding:60px 0;
    box-sizing: border-box;
}
.quote-banner-cont-1 {
    width:100%;
    height: auto;
    position: relative;
}
.quote-banner-cont-1 img {
    width:100%;
    display: block;
    height: auto;
}
.quote-banner-overlay-1 {
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    background:rgba(119,150,176,0.90);
    padding:20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap:20px 0;
    box-sizing: border-box;
    width:43%;
}
.quote-banner-overlay-1 h3 {
    font-size:45px;
    color:#fff;
}
.quote-banner-overlay-1 p {
    font-size: 22px;
    color:#fff;
}

.info-box-cont-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:30px 0;
}
.info-box-row-1 {
    width:20%;
}
.info-box-row-1 img {
    width:100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 0% center;
}
.info-box-row-2 {
  width: 77%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
.info-box-row-2 h2 {
    display: block;
    width:100%;
}
.info-box {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin:0;
    gap:20px 0;
}
.info-box li {
    width:19%;
    padding:50px 15px;
    margin:0;
    background:#295c87;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    color:#fff;
    text-transform: uppercase;
}

.contact-info-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:20px 10px;
}
.contact-info-row-1 h2 {
    color:#295c87;
    padding-bottom:5px;
    margin-bottom:5px;
    border-bottom:1px solid #295c87;
}
.wrap-map {
    width:100%;
    display: block;
}
.wrap-map iframe {
    width:100%;
    height: 450px;
    border:0px;
}


/*===================== 
	form styles 
=======================*/

.wrap-form {
    width:100%;
    display: flex;
    justify-content: space-between;
    margin:80px 0;
}
.form-cont-1 {
    width: calc(50% - 325px);
    background: #7796b0;
    display: flex;
    justify-content: flex-end;
}
.form-row-1 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    padding: 30px 15px;
    box-sizing: border-box;
    display: flex;
    max-width: 215px;
    width: 100%;
}
.form-cont-2 {
    background: #f2f2f2;
    width: calc(48% + 321px);
}
.form-row-2 {
    box-sizing: border-box;
    max-width: 832px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
}
.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 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 {
	display: flex;
	align-items: flex-start;
	gap:0 10px;
	margin-top:20px;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
	width: auto;
}
.form-info-cont .form-info-checkbox p {
	margin:0;
	color:#000;
	font-size: 16px;
}
.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;
}
.form-info-cont p {
    margin:10px 0 5px 0;
    color:#295c87;
}

select {
	margin:0;
	padding:0;
}
.form-inline .orange-btn {
    margin:0 auto;
    display: block;
}


.form-inline .button:hover {
    background: #000;

}

.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 




/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1100px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1100px;
	margin: 0 auto;
	padding:50px 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%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	}

.foot-logo {
    width: calc(50% - 325px);
    background: #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:20px;
    padding:50px 20px;
    box-sizing: border-box;
    text-align: center;
}
.foot-logo img {
    max-width: 100%;
    width:100%;
    display: block;
    margin:0 auto;
}
.foot-nav-cont-1 {
    width: calc(48% + 321px);
    padding:40px;
    display: flex;
    justify-content: space-around;
    gap:30px;   
    box-sizing: border-box;
}
.hav-col-1 {
    width:30%;
}


.hav-col-1 h4 {
    font-size: 24px;
    color:#7796b0;
    padding-bottom:10px;
    margin-bottom:10px;
    border-bottom:2px solid #ee9730;
}
.hav-col-1 ul {
    padding:5px 0;
    margin:0;
}
.hav-col-1 ul li {
    padding:5px 0;
    margin:0;
    list-style: none;
}
.hav-col-1 ul li a {
    font-size: 16px;
    font-weight: 400;
    color:#000;
    font-family: 'Roboto Condensed', sans-serif;
    transition: .2s ease-in;
}
.hav-col-1 ul li a:hover {
    color:#295c87;
}

.foot-bottom {
    width:100%;
    box-sizing: border-box;
    background:#295c87;
    padding:50px 20px;
}
.foot-bottom p {
    font-size: 14px;
    color:#fff;
    text-align: center;
    
}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:490px; 
	text-align:center; 
	margin:0 auto;
	}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1280px)  {
    nav.primary ul li a {
        font-size: 1vw;
    }
    .wrap-hero .container-1 h1 {
        font-size:7vw;
    }
    .wrap-hero .container-1 h1 span {
        font-size: 3.3vw;
    }
     .home-cta-left h2 {
      font-size: 3vw;
    }   
    .home-cta-btns a h3 {
        font-size: 2.5vw;
    }
    .brand-cont-left, .foot-logo {
      width: 21.5%;
    }
    .brand-cont-right, .foot-nav-cont-1 {
      width: 76.5%;
    }
    .brand-cont-left h2 {
        font-size: 3vw;
    }
    .about-cont-1 {
      width: 75%;
      padding: 30px 50px 30px 20px;
    }
    .quote-banner-overlay-1 h3 {
        font-size:4vw;
    }
    .quote-banner-overlay-1 p {
        font-size: 2vw;
    }
    
}

@media screen and (max-width: 1100px)  {

	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
	#menu-button{ 
		display: block;
        padding-left:30px;
	}
    #menu-button a{
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        background: #000;
        color: #fff;
        transition: .2s ease-in;
      }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #295c87;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		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 {
		display:block;
		padding: 10px;
        box-sizing: border-box;
        text-align: right;
        border-bottom: 1px solid #ee9730;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
	}
	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: 'Roboto Condensed', sans-serif;
		position: relative;
		display: block;
		font-size:18px;
		padding: 15px;
		color: #fff;
		text-decoration: none;
		border-left:4px #295c87 solid;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
        text-transform: uppercase;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #ee9730 solid; /* border highlight - Change to fit match site colors */
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background:#20496B ;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #20496B solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* 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: #ee9730;
	    position: relative;
	    text-align: center;
	    font-size: 20px;
	    padding: 15px 0;
        font-family: 'Aldrich', sans-serif;
        border-top: 1px solid #ee9730;
	}
    .nav-footer span {
        font-family: 'Roboto Condensed', sans-serif;
	    position: relative;
	    text-align: center;
	    font-size: 16px;
	    margin-top:10px;
	    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;}
    
    .info-box-row-1, .form-cont-1 {
      width: 25%;
    }
    .info-box {
        gap:20px;
    }
    .info-box li {
        min-width: 24%;
        flex-grow: 1;
        width:auto;
    }
    .info-box-row-2, .form-cont-2 {
        width: 71%;
    }
    .form-row-1 h2 {
        font-size: 3vw;
    }
    
    

}

@media screen and (max-width: 760px)  {

    .col-1-2, .col-1-3 {
        width:100%;
    }
    
    .show-mobile {
        display: block;
    }
    .hide-mobile {
        display: none;
    }
    
    header {
      flex-wrap: wrap;
    }
    .head-logo-1 {
      width: 100%;
      background: #fff;
    }
    .head-logo-1 img {
        margin:0 auto;
    }
    .head-btn-cont-1 {
      width:100%;
    }
    .head-btn-cont-1 ul li:first-of-type {
      display: none;
    }
    #menu-button a {
      font-size: 30px;
      width: auto;
      height: auto;
      background: none;
      color: #295c87;
    }
    .wrap-hero .container-1 {
      min-height: auto;
      background: rgba(0,0,0,0.4);
    }
    .wrap-hero.home-hero .container-1 h1 {
        font-size:11vw;
        color:#fff;
        text-align: center;
        padding-top:80px;
        padding-bottom:150px;
        text-shadow: 0 0 20px #000;
    }
    .wrap-hero .container-1 h1 {
        font-size:11vw;
        color:#fff;
        text-align: center;
        padding-top:80px;
        padding-bottom:80px;
        text-shadow: 0 0 20px #000;
    }
    .wrap-hero .container-1 h1 span {
        font-size: 5vw;
    }
    .wrap-home-cta .container-1 {
      padding:0px!important;
    }
    .home-cta-search form {
      max-width: 100%;
    }
    .home-cta-search {
      padding: 0 30px;
      box-sizing: border-box;
    }
    .home-cta-right {
      width: 100%;
    }
    .home-cta-left {
      width: 25%;
    }
    .home-cta-btns {
      width: 71%;
      flex-direction: column;
        gap:20px;
    }
    .home-cta-btns a {
      width: 100%;
    }
    .home-cta-btns a p {
      display: none;
    }
    .home-cta-btns a h3 {
      font-size: 6.5vw;
    }
    .brand-cont-left {
      width: 25%;
    }
    .brand-cont-right {
      width: 71%;
    }
    .brand-cont-left h2 {
        font-size: 3vw;
        align-items: flex-start;
    }
    .brand-row {
        flex-direction: column;
        padding: 50px 20px;
        gap:20px;
    }
    .brand-row a {
      width: auto;
      display: block;
    }
    .about-cont-1 {
      width: calc(100% - 30px);
      padding: 30px 20px;
    }
    h2 {
      font-size: 22px;
    }
    .orange-btn {
        padding:20px 15px;
        min-width: auto;
    }
    .quote-banner-overlay-1 h3 {
        font-size:9.5vw;
    }
    .quote-banner-overlay-1 p {
        font-size: 5vw;
    }
    .quote-banner-overlay-1 {
        position: static;
        height: 100%;
        background: rgba(119,150,176,0.90);
        padding:50px 20px;
        width: 100%;
    }
    .quote-banner-cont-1 img {
        height: 70vw;
        object-fit: cover;
        object-position: 92% center;
    }
    .foot-logo {
      width: 100%;
    }
    .foot-nav-cont-1 {
      display: none;
    }
        .info-box-row-1 {
      width: 100%;
    }
    .info-box-row-2 {
        width: 100%;
    }
    .wrap-hero.home-hero .container-1 {
      min-height: calc(100vh - 550px);
    }
    
}


	
