﻿/*===================== 
	Color information
	
	-
	-
	-blue #0e77bb
    grey #e8e6e6
	-
		 
=======================*/
/*===================== 
	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: 'Open Sans', 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: 'Exo', sans-serif;
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-family: 'Exo', sans-serif;
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-family: 'Exo', sans-serif;
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-family: 'Exo', sans-serif;
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-family: 'Exo', sans-serif;
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-family: 'Open Sans', 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*/
    color: #000; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

.text-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color:#0e77bb!important;
    transition: .2s ease-in;
    display: inline-block;
    padding:5px 0;
}
.text-link i {
    color:#e8e6e6!important;
}
.text-link:hover , .text-link:hover i {
    color:#000!important;
}
.blue-btn-1 {
    font-family: 'Exo', sans-serif;
    font-size: 25px;
    padding:15px;
    color:#fff!important;
    font-weight: 700;
    text-align: center;
    background:#0e77bb;
    transition: .2s ease-in;
    display: inline-block;
    cursor: pointer;
    outline:none;
    border:0px;
}
.blue-btn-1 i {
    color:#e8e6e6!important;
}
.blue-btn-1:hover {
    background:#000;
    transform: scale(1.01);
}


/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    background:#fff;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
	}

header {
	margin: 0 auto;
	max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	}
.head-logo-1 {
    padding:20px;
}
.head-logo-1 img {
	max-width: 260px;
    width:100%;
	height: auto;
	display: block;
}
.head-info {
    padding:20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.head-info a img {
    max-width:165px;
    width:100%;
    height: auto;
    display: block;
}
.head-info ul {
    padding:2px 0;
    margin:0;
    text-align: right;
}
.head-info ul li {
    padding:0;
    margin:0;
    display: flex;
    justify-content: flex-end;
    gap:5px;
    list-style: none;
}
.head-info ul li a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color:#0e77bb;
    transition: .2s ease-in;
}
.head-info ul li a:hover {
    color:#000;
}
.social-header a {
    font-size: 16px;
}


/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;}

nav.primary {
	display:block;
    width:100%;
    max-width: 1400px;
    padding:0 10px;
	margin:0 auto;
    box-sizing: border-box;
    position: absolute;
    z-index: 1;
    left:0;
    right:0;
	}
	nav.primary ul {
        background:#0e77bb;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
		margin:0 auto; 
		padding:10px 20px;
        display: flex;
        justify-content: space-between;
        box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Open Sans', sans-serif;
				color: #fff;
				font-size: 15px;
				text-decoration: none;
				padding: 5px;
				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: 500;
				}	
			nav.primary ul li a:hover {
				color:#000;
                text-shadow: 0 0 10px rgba(255,255,255,0.8);
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #181818;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
				border-bottom: #fff solid 1px;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
			}
/* 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:url("/siteart/hero-img-1.jpg") no-repeat center;
    background-size: cover;
    width:100%;
    border-bottom:80px solid #e8e6e6;
}
.wrap-hero .container-1 {
    height: calc(100vh - 136px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:50px 0; 
    padding:0 20px;
    min-height: 500px;
}
.wrap-hero .container-1 h1 {
    text-align: center;
    color:#000;
    text-shadow: 0 0 20px rgba(255,255,255,1.0), 0 0 15px rgba(255,255,255,1.0), 0 0 5px rgba(255,255,255,1.0), 0 0 2px rgba(255,255,255,1.0);
    padding-top: 80px;
}
.wrap-hero .container-1 h1 .lg-text {
    font-family: 'Exo', sans-serif;
    display: block;
    font-size: 68px;
    font-weight: 700;
}
.wrap-hero .container-1 h1 .sml-txt {
    font-family: 'Exo', sans-serif;
    display: block;
    font-size: 28px;
    font-weight: 400;
}

.hero-cta {
    background: rgba(255,255,255,0.6);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding:40px 40px 55px 40px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    gap:20px 0;
}
.hero-cta a {
    transition: .2s ease-in;
    width:32%;
    background:#0e77bb;
    min-height: 120px;
    padding:10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:5px 0;
    box-sizing: border-box;
    
}
.hero-cta a span {
    font-family: 'Exo', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color:#fff;
}
.hero-cta a span i {
    color:#e8e6e6;
}
.hero-cta a p {
    color:#fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: .2s ease-in;
}
.hero-cta a:hover {
    transform: scale(1.01);
    background:#000;
}
.hero-cta a:hover p {
   color:#fff; 
}
.wrap-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;   
    align-items: center;
    padding:60px 0;
}
.content-left {
    width:50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.content-col-left {
    width:100%;
    max-width: 700px;
    padding:40px 20px;
    box-sizing: border-box;
}
.content-col-left h2, .content-col-left h1, .content h1 {
    font-size: 40px;
    font-weight: 700;
    color:#000;
}
.content-col-left h2 span, .content-col-left h1 span, .content h1 span {
    color:#0e77bb;
}
.content-col-left p {
    line-height: 1.5;
    padding:25px 0;
}
.content-right {
    width:calc(50% - 100px);
    background:#fff;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}
.content-col-right {
    width:100%;
    max-width: 600px;
    padding:40px 60px 40px 60px;
    box-sizing: border-box;
}
.content-col-right h2 {
    font-size: 30px;
    font-weight: 700;
    color:#000;
}
.content-col-right h2 span {
    color:#0e77bb;
}
.content-col-right ul {
    padding:5px 0;
    margin:0;
}
.content-col-right ul li {
    padding:10px 0;
    margin:0;
    list-style: none;
}
.content-col-right ul li .lg-text {
    display: block;
    color:#0e77bb;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Exo', sans-serif;
}
.content-col-right ul li .sml-txt {
    display: block;
    color:#000;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}
.content-col-right img {
    max-width: 100%;
    height: auto;
    display: block;
    margin:0 auto;
}



/*===================== 
	slideshow styles 
=======================*/

.banner-slider-1 {
    width:100%;
}
.banner-slide-1 {
    width:100%;
    position: relative;
}
.banner-bg {
    width: 100%;
    height: auto;
    display: block;
}
.banner-overlay {
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width:50%;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.banner-overlay img {
    width:70%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 5px 10px 30px 10px;
    box-sizing: border-box;
}
.dark-overlay {
    background-image: -webkit-linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.31) 12.95%,rgba(0,0,0,0.54) 26.94%);
    background-image: -moz-linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.31) 12.95%,rgba(0,0,0,0.54) 26.94%);
    background-image: -o-linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.31) 12.95%,rgba(0,0,0,0.54) 26.94%);
    background-image: linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.31) 9.0%,rgba(0,0,0,0.54) 26.94%);
}

.banner-overlay h3 {
    text-align: center;
    color:#fff;
    text-shadow: 0 0 15px rgba(0,0,0,0.9);
    font-size: 44px;
    font-weight: 700;
    padding-bottom:20px;
    line-height: 1;
}
.banner-overlay h3 span {
    font-size: 28px;
}
.slick-dots {
    padding:0;
    margin:0;
    position: absolute;
    z-index: 200;
    bottom:25px;
    right:25px;
    display: flex;
    justify-content: flex-end;
    gap:10px;
}
.slick-dots li {
    padding:0;
    margin:0;
    list-style: none;
    background:#e8e6e6;
    box-shadow: 0 0 7px 4px rgba(0,0,0,0.2);
    height: 20px;
    width:20px;
    cursor: pointer;
}
.slick-dots li.slick-active {
    background:#0e77bb;
}
.slick-dots li button {
    display: none;
}
.inv-cat-btns {
    display: flex;
    justify-content: space-between;
    gap:20px 0;
    flex-wrap: wrap;
}
.inv-cat-btns a {
    font-family: 'Exo', sans-serif;
    width:32%;
    background:#0e77bb;
    padding:15px;
    box-sizing: border-box;
    color:#fff!important;
    text-align: center;
    transition: .2s ease-in;
}
.inv-cat-btns a:hover {
    background:#000;
    transform: scale(1.01);
}


/*===================== 
	Form styles 
=======================*/

/* Containers */



.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;
}

.form-info-cont h3 {
    padding:15px 0 10px 0;
    font-size:22px;
    color:#0e77bb;
}

/* 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 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 .blue-btn-1 {    
    margin:0 auto;
    display: block;
}


.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
    padding-top:70px;
	}
	

.container-1 {
	max-width: 1400px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-inv {
	margin: 0 auto;
	padding:20px 0 40px 0;
	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:40px 0 0 0;
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
	
.foot-logo {
    width:calc(50% - 425px);
    background:#e8e6e6;
    border-top-right-radius: 20px;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
    padding:40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    gap:20px;
}
.foot-logo a img {
    max-width: 280px;
    width:100%;
    height: auto;
    display: block;
}

.foot-logo ul {
    display: none;
    padding:0;
    margin:0;
}
.foot-logo ul li {
    padding:2px 0;
    margin:0;
    display: flex;
    justify-content: center;
    gap:10px;
    list-style: none;
}
.foot-logo ul li a {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color:#0e77bb;
    transition: .2s ease-in;
}
.foot-logo ul li a:hover {
    color:#000;
}
.social-footer a {
    font-size: 20px!important;
}

.foot-right {
    width:calc(50% + 425px);
}
.foot-nav {
    max-width: 1075px;
    width:100%;
    display: flex;
    justify-content: space-between;
    gap:10px;
    padding:50px 40px 75px 70px;
    box-sizing: border-box;
}
.foot-nav-col-1 h4 {
    font-size: 18px;
    font-weight: 600;
    color:#0e77bb;
}
.foot-nav-col-1 ul {
    padding:0;
    margin:0;
}
.foot-nav-col-1 ul li {
    padding:5px 0;
    margin:0;
    list-style: none;
    display: flex;
    gap:10px;
}
.foot-nav-col-1 ul li a {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color:#000;
    transition: .2s ease-in;
}
.foot-nav-col-1 ul li a:hover {
    color:#0e77bb;
}

.foot-bottom {
    width:100%;
    box-sizing: border-box;
    background:#0e77bb;
    text-align: center;
    position: relative;
    z-index: 1;
}
.foot-bottom p {
    max-width: 1075px;
    width:100%;
    text-align: right;
    font-size: 12px;
    color:#fff;
    font-weight: 400;
    padding:30px 20px;
    box-sizing: border-box;
}
.foot-bottom p a {
    color:#fff!important;
    transition: .2s ease-in;
}
.foot-bottom p a:hover {
    color:#e8e6e6!important;
}


/*========================== 
	  Responsive styles 
============================*/


@media screen and (max-width: 1200px)  {
    nav.primary ul li a {
        font-size: 1.2vw;
    }
    .wrap-hero .container-1 h1 .lg-text {
        font-size: 6.5vw;
    }
    .wrap-hero .container-1 h1 .sml-txt {
        font-size: 2.7vw;
    }
    .hero-cta a span {
        font-size: 3vw;
    }
    .foot-logo {
        width: 300px;
    }
    .foot-right {
      width: calc(100% - 300px);
    }
    .foot-nav {
        padding: 50px 20px 75px 20px;
    }
    .banner-overlay h3 span {
      font-size: 2.25vw;
    }
    .banner-overlay h3 {
      font-size: 3.5vw;
    }
}

@media screen and (max-width: 840px)  {

	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
    
    nav.mobile, .mobile-nav-cont-1 { display:block;}
    
	#menu-button{ 
		width: 100%;
		display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap:0 20px;
        align-items: center;
		position: relative;
		background: #0e77bb;
        padding:10px 20px;
        box-sizing: border-box;
	}
    #menu-button ul { 
        padding:0;
        margin:0;
        display: flex;
        gap:10px;
    }
    #menu-button ul li { 
        padding:0;
        margin:0;
        list-style: none;
    }
    #menu-button ul li a { 
        padding:0;
        margin:0;
        font-size: 24px;
        color:#e8e6e6;
        transition: .2s ease-in;
    }
    #menu-button ul li a:hover { 
        
    }
    
    #menu-button .menu-toggle {
        font-size: 24px;
        color:#fff;
      }
	nav.mobile {
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background:#0e77bb;
		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;
	}
	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;
        display: flex;
        justify-content: center;
        border-top:1px solid #0B66A2;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #fff;
		text-decoration: none;
        text-align: center;
        width:100%;
        box-sizing: border-box;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 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: #fff;
		text-decoration: none;
	}
	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;

	}

    
    .wrap-hero .container-1 h1 .sml-txt {
        font-size: 4vw;
    }
    .wrap-hero .container-1 {
      min-height: 720px;
    }
    .hero-cta {
        padding: 20px 40px 20px 40px;   
    }
    .hero-cta a {
        width: 100%;
        margin:0 auto;
        min-height: auto;
    }
    .hero-cta a span {
      font-size: 40px;
    }
    .home-content .content-left {
        width: 100%;
        order:2;
    }
    .home-content .content-right {
        width: calc(100% - 20px);
        order:1;
    }
    .content-left {
        width: 100%;
    }
    .content-right {
        width: calc(100% - 20px);
    }
    .wrap-content {
        justify-content: flex-end;
    }
    .content-col-right {
      max-width: 100%;
      padding: 40px 20px;
    }
    .content-col-left {
      max-width: 100%;
    }
    .foot-logo ul {
        display: block;
    }
    .foot-nav {
        display: none;
    }
    .foot-logo {
        width: calc(100% - 40px);
        margin:0 auto;
        border-top-left-radius: 20px;
    }
    .foot-right {
        width:100%;
    }
    .foot-bottom p {
        text-align: center;   
    }
    .banner-overlay h3 span {
      font-size: 4vw;
    }
    .banner-overlay h3 {
      font-size: 6vw;
    }
    .banner-bg {
        width: 100%;
        height: 65vw;
        object-position: right center;
        object-fit: cover;
    }

    .banner-overlay {
        width: 100%;
        background: rgba(0,0,0,0.6);

    }
    .banner-overlay .blue-btn-1 {
        font-size: 4vw;
    }
    .inv-cat-btns a {
        width:49%;
    }


}
@media screen and (max-width: 650px)  {
    .head-info {
      display: none;
    }
    .head-logo-1 {
      margin: 0 auto;
    }
    .col-1-2 {
        width:100%;
    }
}
@media screen and (max-width: 500px)  {
    .hero-cta {
        padding:20px;   
    }
    .hero-cta a span {
      font-size: 8vw;
    }
    .hero-cta a p {
        font-size: 4vw;
    }
}



