﻿/*===================== 
	Color information
	
	-grey #eff0f0
dk grey #b1b3b3
	-
	-
	-
		 
=======================*/
/*===================== 
	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: 'Hind Madurai', 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: 'Hind Madurai', sans-serif;
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-family: 'Hind Madurai', sans-serif;
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-family: 'Hind Madurai', sans-serif;
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-family: 'Hind Madurai', sans-serif;
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-family: 'Hind Madurai', sans-serif;
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-family: 'Hind Madurai', sans-serif;
    font-size: 16px;
    line-height: 1.5;
	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;
		}  

.btn-white {
    padding:25px 10px;
    margin:20px auto;
    position: relative;
    background:#000;
    display: block;
    width:100%;
    box-sizing: border-box;
    clip-path: polygon(20px 0%,100% 0%,100% 100%,20px 100%,0% 50%); 
    outline: none;
    border:0px;
    cursor: pointer;
}
.btn-white span {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 22px;
    padding:10px 40px;
    box-sizing: border-box;
    color:#000;
    font-weight: 700;
    transition: .2s ease-in;
    font-family: 'Hind Madurai', sans-serif;
    cursor: pointer;
}
.btn-white:after {
    background:#fff;
    width:calc(100% - 40px);
    position: absolute;
    height: 100%;
    top:0;
    right:0;
    z-index: 1;
    content:"";
    transition: .2s ease-in;
}
.btn-white:hover:after {
    width:0;
}
.btn-white:hover  span {
    color:#fff;
}
.text-link {
    font-size: 18px;
    font-weight: 700;
    color:#000;
    transition: .2s ease-in;
}
.text-link:hover {
    color:#b1b3b3;   
}
.btn-black {
    padding:15px;
    margin:20px auto;
    background:#000;
    display: block;
    width:100%;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    transition: .2s ease-in;
    border:1px solid #000;
    font-family: 'Hind Madurai', sans-serif;
    color:#fff!important;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}
.btn-black:hover {
    background:#b1b3b3;
}
.clickshowarea {
    display: none;
}


/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	}

header {
	width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	}
.head-logo-1 {
    width:100%;
    max-width: 300px;
    padding:20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.head-logo-1 img {
	max-width: 185px;
    width:100%;
	height: auto;
	display: block;
}
.head-right {
    width:calc(100% - 300px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head-links {
    max-width: 250px;
    width:100%;
    padding:40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    gap:10px;
    background:#000;
}
.head-links li {
    padding:0;
    margin:0;
    list-style: none;
}
.head-links li a {
    font-size: 24px;
    color:#fff;
}
.head-links li a:hover {
    color:#eff0f0;
}

/*===================== 
	nav styles 
=======================*/

.head-nav-cont-1 {
    width:100%;
    background:#eff0f0;
    border:1px solid #000;
    border-right:0px solid #000;
    padding:20px;
    box-sizing: border-box;
}

#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;
        justify-content: space-between;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Hind Madurai', sans-serif;
				color: #000;
				font-size: 16px;
				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;
				}	
			nav.primary ul li a:hover {
				background: #b1b3b3;
				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: #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 {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:50px 0;
}
.hero-slider {
    width:60%;
    position: relative;
}
.hero-slider img {
    width:100%;
    height: auto; 
    padding:30px 0;
    box-sizing: border-box;
}
.hero-slider .slick-dots {
    position: absolute;
    z-index: 200;
    bottom:50px;
    right:30px;
    display: flex;
    gap:20px;
    width: 100%;
    max-width: 300px;
    padding:0;
    margin:0;
}
.hero-slider .slick-dots li {
    padding:0;
    margin:0;
    list-style: none;
    display: block;
    height: 15px;
    width:100%;
    flex-grow: 1;
    background:#fff;
    transition: .2s ease-in;
    cursor: pointer;
    box-shadow: 0 0 10px 3px rgba(0,0,0,0.2);
}
.hero-slider .slick-dots li:hover {
    opacity: 0.9;
}
.hero-slider .slick-dots li.slick-active {
    background:#b1b3b3;
}
.hero-slider .slick-dots li button {
    display: none;
}
.hero-right-cont-1 {
    width:40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff0f0;
    border:1px solid #000;
    border-right:0px;
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
}
.hero-right-col-1 {
    padding:50px;
    
}
.hero-right-col-1 h1 {
    font-size: 36px;
    font-weight: 700;
    color:#000;
    text-align: center;
    text-transform: uppercase;
}
.hero-right-col-1 p {
    font-size: 17px;
    font-weight: 400;
    color:#000;
    text-align: center;
    padding-bottom:30px;
}

.wrap-about-home {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width:100%;
    position: relative;
    margin:140px 0;
}
.wrap-about-home:after {
    background:#000;
    content:"";
    width:60px;
    left:0;
    top:0;
    height: 100%;
    z-index: 1;
    position: absolute;
}
.about-home-left {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff0f0;
    border:1px solid #000;
    border-right:0px;
    border-left:0px;
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
    width:66.66%;
    margin:30px 0;
    padding-left:60px;
}
.about-home-left-col {
    max-width: 650px;
    width:100%;
    padding:20px;
    box-sizing: border-box;
    border-right:2px solid #b1b3b3;
    margin:20px 0;
}
.about-home-right {
    width:33.33%;
}
.about-home-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.wrap-cat {
    width:100%;
    border:1px solid #000;
    border-right:0px;
    border-left:0px;
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
    margin:200px 0;
    background: #eff0f0;
}
.cat-cont-1 {
    width:calc(100% - 120px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:20px 0;
    margin:-50px auto;
}
.cat-cont-1 a {
    display: block;
    width:32%;
    position: relative;
}

.cat-cont-1 a img {
    width: 100%;
    height: auto;
    display: block;
}
.cat-cont-1 a h3 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom:20%;
    left:0;
    padding:20px;
    box-sizing: border-box;
    font-size: 30px;
    font-weight: 700;
    color:#fff;
    text-align: center;
    width:100%;
    background:rgba(0,0,0,1.0);
    transition: .2s ease-in;
    height: 100px;
}
.cat-cont-1 a h3 span {
    font-size: 18px;
    font-weight: 400;
    color:#fff;
}
.cat-cont-1 a:hover h3 {
    height: 100%;
    bottom:0;
    background:rgba(0,0,0,0.5);
}
.wrap-cont-1 {
    width: 100%;
    position: relative;
    margin: 70px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.wrap-cont-1::after {
  background: #000;
  content: "";
  width: 60px;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1;
  position: absolute;
}
.content-left {
    width:66.66%;
    background: #eff0f0;
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
    border: 1px solid #000;
    border-right: 0px;
    border-left: 0px;
    margin:30px auto;
    box-sizing: border-box;
}
.about-row-1 {
    padding:40px 80px;
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
}
.about-row-1 h1 {
    width:100%;
    padding-bottom:40px;
}
.about-col-1 {
    width:49%;
    border-right: 2px solid #b1b3b3;
    padding-right:20px;
    box-sizing: border-box;   
}
.about-col-2 {
    border-right: 2px solid #b1b3b3;
    padding-right:20px;
    box-sizing: border-box;  
}
.about-col-1 h2, .about-col-2 h2 {
    color:#b1b3b3;
    font-weight: 600;
    font-size:20px;
    text-transform: uppercase;
}
.about-col-1 p, .about-col-2 p {
    padding-bottom:20px;
}
.about-col-1 ul, .about-col-2 ul {
    padding:0 0 0 20px;
    margin:0;
}
.about-col-1 ul li, .about-col-2 ul li {
    font-size: 16px;
    font-weight: 600;
    padding:0;
    margin:0;
}
.content-right {
    width:33.33%;
}
.content-right img {
    width:100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.content-right iframe  {
    min-height: 450px;
}

.about-row-2 {
  padding: 40px 80px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap:10px 1%;
  box-sizing: border-box;
}
.about-row-2 h1 {
    width:100%;
    padding-bottom:40px;
}
.wrap-tax-exempt {
    width:100%;
}
.wrap-tax-exempt .container-1 {
    display: flex;
    flex-wrap: wrap;
    gap:10px 1%;
}
.wrap-tax-exempt .container-1 h2 {
    width:100%;
    padding-bottom:5px;
    margin-bottom:10px;
    border-bottom:1px solid #000;
}
.tax-cont-1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width:24%;
    box-sizing: border-box;
}
.tax-cont-1 h3 {
    border: 1px solid #000;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    color:#b1b3b3;
    font-weight: 600;
    font-size:18px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.tax-cont-1 h3:hover {
    color:#000; 
    transition: .2s ease-in;
}
.tax-cont-1 h3.open {
    color:#fff; 
    background:#000;
}
.tax-cont-1 ul {
    display: none;
    padding:5px;
    box-sizing: border-box;
    margin:0 5px;
    background:#eff0f0;
    border: 1px solid #000;
    border-top:0px;
}
.tax-cont-1 ul li {
    padding:3px 0;
    margin:0;
    list-style: none;
}
.tax-cont-1 a {
    font-size: 16px;
}

/*===================== 
	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 h2 {
    padding-bottom:20px;
}
/* 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: 15px;
	font-size: 16px;
	margin:  0 0 10px 0;
	box-sizing: border-box;
    border:0px;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 15px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    border:0px;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 16px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 10px 0;
	font-family: 'Roboto', sans-serif;
    border:0px;
}

select {
	margin:0;
	padding:0;
}
.form-inline button {
	max-width: 400px;
}



.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1300px;
	margin: 0 auto;
	padding:50px 20px;
	box-sizing: border-box;
	}
.container-inv {
	width:100%;
	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 {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width:100%;
    position: relative;
    margin:20px 0 0 0;
	}

footer:after {
    background:#000;
    content:"";
    width:60px;
    right:0;
    top:0;
    height: 100%;
    z-index: 1;
    position: absolute;
}

.foot-left {
    background:#000;
    width:425px;
    padding:60px 40px;
    box-sizing: border-box;
}
.foot-left img {
    max-width: 185px;
    width: 100%;
    height: auto;
    display: block;
    margin:0 auto;
}
.foot-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff0f0;
    border:1px solid #000;
    border-right:0px;
    border-left:0px;
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
    width:calc(100% - 425px);
    margin:30px 0;
    padding-right:60px;
}
.foot-nav-col {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.foot-nav-col ul {
    display: flex;
    padding:0 10px 0 0;
    margin:0;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 2px solid #b1b3b3;
}
.foot-nav-col ul li {
    padding:0;
    margin:0;
    list-style: none;
    text-align: right;
}
.foot-nav-col ul li a {
      font-family: 'Hind Madurai', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color:#000;
    transition: .2s ease-in;
    line-height: 35px;
}
.foot-nav-col ul li a:hover {
    color:#b1b3b3;
}


/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1415px)  {
    nav.primary ul li a {
        font-size: 1.1vw;
        padding: 10px 5px;
    }
    .head-links {
        max-width: 100%;
        width: auto;
    }
    .cat-cont-1 a h3 {
        font-size: 24px;
    }
    .cat-cont-1 a h3 span {
        font-size: 16px;
    }
}
@media screen and (max-width: 1100px)  {
    .foot-left {
        width: 250px;
    }
    .foot-nav {
        width: calc(100% - 250px);
    }
    .foot-nav-col ul li a {
        font-size: 14px;
    }
}
@media screen and (max-width: 1080px)  {

    .head-right {
      width: 100%;
      max-width: 300px;
    }
    .hero-slider {
        width: 100%;
    }
    .hero-right-cont-1 {
        width: calc(100% - 60px);
        z-index: 201;
        position: relative;
        margin: -100px auto 0 auto;
        border-right:1px solid #000;
    }
    .wrap-hero {
      margin: 20px 0 40px 0;
    }
    
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
	#menu-button{ 
		display: block;
		font-size: 24px;
	}
		#menu-button a{
			 color:#000;
			cursor: pointer;
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #000;
		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 {
		position: relative;
		display:block;
		padding: 10px;
        box-sizing: border-box;
		color: #999;
		font-size: 18px;
		font-weight: 400;
        text-align: right;
	}

	/* 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;
		background: #222;
		color: #999;
		text-decoration: none;
		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 {
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #999;
		text-decoration: none;
		border-left:4px #000 solid;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #eff0f0 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: #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: #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;}
    
    .about-home-right {
        display: none;
    }
    .about-home-left {
        width: 100%;
        margin: 30px 0;
        padding:40px 20px 40px 60px;
    }
    .content-left {
        width: calc(100% - 60px);
        z-index: 201;
        position: relative;
        margin: -100px auto 0 auto;
        border-right: 1px solid #000;
        border-left: 1px solid #000;
        order:2;
    }
    .about-row-1, .about-row-2 {
        padding:50px 20px;
    }
    .content-right {
        width: 100%;
        order:1;
    }
    .content-right img {
        height: 40vw;
    }
    .wrap-cont-1::after {
        display: none;
    }
    .about-col-2 {
        border-right: 0px solid #b1b3b3;
        padding-right: 0px;
    }

}
@media screen and (max-width: 900px)  {
    .cat-cont-1 a {
        width:100%;
    }
    .cat-cont-1 a img {
      height: 300px;
      object-fit: cover;
        object-position: center;
    }
    .cat-cont-1 a h3 {
        font-size: 5vw;
        bottom: 30%;
    }
    .cat-cont-1 a h3 span {
        font-size: 3vw;
    }
    .col-1-4 {
        width:49%;
    }
    .tax-cont-1 {
        width:32%;
    }
        
}
@media screen and (max-width: 800px)  {
    .foot-left {
        width: calc(90% - 60px);
    }
    .foot-nav {
      width: calc(10% + 60px);
    }
    .foot-nav-col {
        display: none;   
    }
    .about-col-1 {
        width: 100%;
        border-right: 0px solid #b1b3b3;
        padding-right: 0px;
    }
    .about-col-1 h2 {
        border-top: 2px solid #b1b3b3;
        padding-top:10px;
        margin-top:10px;
    }
    .about-col-1 p {
        padding-bottom:0;
    }
    .tax-cont-1 {
        width:49%;
    }
}
@media screen and (max-width: 650px)  {
    .head-links {
        flex-wrap: wrap;
        width:100%;
    }
    .head-logo-1 {
      width: 40%;
    }
    .head-right {
      width: 60%;
      max-width: 300px;
    }
    .head-nav-cont-1 {
        width: auto;
    }
    .btn-white span {
      font-size: 18px;
    }
    .hero-right-col-1 h1, .about-row-1 h1, .about-row-2 h1 {
        font-size: 24px;
    }
    .btn-white span {
      font-size: 3.2vw;
    }
    .col-1-4 {
        width:100%;
    }
    .tax-cont-1 {
        width:100%;
    }
    
}



	
