﻿/*===================== 
	Color information
	
	-grey #f1f1f1
	-blue #200073
	-yellow #f8dd24
		 
=======================*/
/*===================== 
	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: "Work 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-size: 30px;
        font-weight: 700;
}
	h2 {
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    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-weight: bold;
	font-family: "Work Sans", sans-serif;
	color:#200073!important;
	transition: .2s ease-in;
}
.text-link:hover {
	color:#000!important;
}

.blue-btn {
	background: #200073;
	border: 2px solid #200073;
	text-align: center;
	cursor: pointer;
	font-size:18px;
	font-weight: 500;
	color:#fff!important;
	font-family: "Work Sans", sans-serif;
	outline:none;
	transition: .2s ease-in;
	border-radius: 30px;
	padding:10px;
	box-sizing: border-box;
	display: block;
}
.blue-btn:hover {
	background: #f8dd24;
	color:#200073!important;
}
.white-btn {
	background: #fff;
	border: 2px solid #200073;
	text-align: center;
	cursor: pointer;
	font-size:18px;
	font-weight: 500;
	color:#200073!important;
	font-family: "Work Sans", sans-serif;
	outline:none;
	transition: .2s ease-in;
	border-radius: 30px;
	padding:10px;
	box-sizing: border-box;
	display: block;
}
.white-btn:hover {
	background: #f8dd24;
	color:#200073!important;
}


/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	border-bottom: 2px solid #f8dd24;
	}

header {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	padding-left:5vw;
	box-sizing: border-box;
	width:100%;
	
	}
.head-logo-1 {
	width:100%;
	max-width: 290px;
	display: block;
	display: flex;
	align-items: center;
	padding:5px 10px;
}
.head-logo-1 img {
	width:100%;
	max-width: 100%;
	height: auto;
	display: block;
}
.head-right-1 {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	flex-wrap: wrap;
	gap:15px 0;
}

.head-info {
	padding:15px 5vw 15px 35px;
	margin:0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap:20px;
	background:#200073;
	border-bottom-left-radius: 100px;
}
.head-info li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-info li a {
	padding:0;
	margin:0;
	color:#fff;
	font-size: 16px;
	font-weight: 400;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;}



nav.primary {
	padding:0 5vw 0 0;
	width:100%;
	box-sizing: border-box;
	display:block;
	margin:0;
	position:relative;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
		}
	nav.primary > ul {
        display: flex;
		justify-content: flex-end;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
				font-family: "Work Sans", sans-serif;
				color: #000;
				font-size: 18px;
				text-decoration: none;
				padding: 10px 15px;
				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: 600;
				white-space: nowrap;
				}	
			nav.primary ul li a:hover {
				background: #200073;
				color:#fff;
				}
			nav.primary ul li:hover a {
				background: #200073;
				color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				text-align: left;
				background: #200073;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				color:#f8dd24;
			}
/* 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%;
	background-image:url("../siteart/hero-bg-1.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left top;
	background-color:#f1f1f1;
}
.wrap-hero .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding:50px 20px;
	gap:20px 0;
}
.hero-text {
	width:55%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap:30px;
}
.hero-text h1 {
	font-family: "Taviraj", serif;
	color:#fff;
	text-shadow: 0 0 15px rgba(0,0,0,1.0);
	font-size:50px;
	font-weight:900;
	text-align: center;
	line-height: 1.4;
}
.hero-text h1 span {
	font-size:40px;
	font-weight:500;
}
.hero-btn-cont-1 {
	width:100%;
	max-width: 450px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.hero-btn-cont-1 a {
	display: block;
	width:49%;
}
.hero-img {
	width:44%;
}
.hero-img img {
	width:100%;
	height: auto;
	display: block;
	margin:0 auto;
	padding-bottom: 15%;
}
.wrap-cat-cont-1 {
	width:100%;
	background-color:#f1f1f1;
}
.wrap-cat-cont-1 .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding:120px 20px 200px 20px;
	gap:20px 0;
}
.wrap-cat-cont-1 .container-1 .cat-header {
	width:18%;
	background:#fff;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:20px 40px;
	box-sizing: border-box;
}
.wrap-cat-cont-1 .container-1 .cat-header h2 {
	font-family: "Taviraj", serif;
	color:#200073;
	font-size:40px;
	font-weight:700;
	line-height: 1.2;
}
.wrap-cat-cont-1 .container-1 .cat-header h2 span {
	font-size:26px;
	font-weight:400;
}
.wrap-cat-cont-1 .container-1 a {
	width:26%;
	position: relative;
	display: flex;
	flex-direction: column;
	gap:5px;	
}
.cat-img {
	position: relative;
}
.wrap-cat-cont-1 .container-1 a img {
	width:100%;
	height: 400px;
	display: block;
	object-fit: cover;
	object-position: top;
}
.wrap-cat-cont-1 .container-1 a h2 {
	font-size:35px;
	font-weight:700;
	font-family: "Work Sans", sans-serif;
	color:#fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.8);
	position: absolute;
	z-index: 2;
	padding:35px 20px;
	top:0;
	left:0;
	transition: .2s ease-in;
	width: 100%;
	height: 100%;
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.26) 0%,rgba(0,0,0,0.00) 41.97%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.26) 0%,rgba(0,0,0,0.00) 41.97%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.26) 0%,rgba(0,0,0,0.00) 41.97%);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.26) 0%,rgba(0,0,0,0.00) 41.97%);
	box-sizing: border-box;
}
.wrap-cat-cont-1 .container-1 a p {
	display: block;
	width:100%;
	padding:15px 25px;
	box-sizing: border-box;
	background:#200073;
	color:#fff;
	font-family: "Work Sans", sans-serif;
	font-size:20px;
	font-weight:400;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	transition: .2s ease-in;
}
.wrap-cat-cont-1 .container-1 a p i {
	display: inline-block;
	margin-right:2px;
	transition: .2s ease-in;
}
.wrap-cat-cont-1 .container-1 a:hover h2 {
	text-shadow: 0 0 10px rgba(0,0,0,1.0);
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.40) 0%,rgba(0,0,0,0.40) 41.97%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.40) 0%,rgba(0,0,0,0.40) 41.97%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.40) 0%,rgba(0,0,0,0.40) 41.97%);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.40) 0%,rgba(0,0,0,0.40) 41.97%);
}
.wrap-cat-cont-1 .container-1 a:hover p {
	background: #f8dd24;
	color:#200073;
}
.wrap-cat-cont-1 .container-1 a:hover p i {
	margin-right:15px;
}

.wrap-tran-slider {
	width:100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-left:calc(50% - 830px);
	margin-top: -50px;
	box-sizing: border-box;
	gap:30px 0;
	
}
.tran-slider-cont-1 {
	width:55%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px 0;
}
.tran-slider-nav {
	width:190px;
}
.tran-slider-nav .slick-track {
	display: flex;
	flex-direction: column;		
}
.tran-slider-nav .slick-track:before, .tran-slider-nav .slick-track:after {
	display: none!important;
}
.tran-slider-nav img {
	width:100%;
	height: 110px;
	object-fit: cover;
	object-position: center;
	display: block;
	margin:1px 0;
	filter: brightness(50%);
	box-sizing: border-box;
}
.tran-slider-nav .slick-current img {
	filter: brightness(100%);
	border:2px solid #f8dd24;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}
.tran-slider-nav .slick-prev {
	width:100%;
	background:#f8dd24;
	color:#fff;
	text-align: center;
	font-size: 20px;
	padding:3px;
	box-sizing: border-box;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
}
.tran-slider-nav .slick-next {
	width:100%;
	background:#f8dd24;
	color:#fff;
	text-align: center;
	font-size: 20px;
	padding:3px;
	box-sizing: border-box;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
}
.tran-slider-nav .slick-prev:hover, .tran-slider-nav .slick-next:hover {
	opacity: 0.7;
}

.tran-slider {
	width:calc(100% - 200px);
}
.tran-slider .slick-list {
	border-radius: 20px;
	height: 100%;
}
.tran-slider .slick-track {
	height: 100%;
}
.tran-slider img {
	width: 100%;
    height: 631px;
    display: block;
    object-fit: cover;
    object-position: center;
}
.tran-info-cont {
	width:40%;
	background-image: url("../siteart/t-bg-1.png");
	background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 800px;
}
.tran-info {
	width:100%;
	box-sizing: border-box;
	padding:20px calc(50vw - 770px) 20px 130px;
}
.tran-info img {
	width:100%;
	max-width: 385px;
	height: auto;
	display: block;
}
.tran-info p {
	font-family: "Work Sans", sans-serif;
	font-size:16px;
	font-weight: 400;
	padding:20px 0 0 0;
}
.wrap-home-about {
	position: relative;
	width:100%;
	background-image: url("../siteart/home-about-bg-img-1.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;	
	padding:150px 20px;
	box-sizing: border-box;
}
.wrap-home-about:after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 11.92%,rgba(255,255,255,0.00) 60.10%);
	background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 11.92%,rgba(255,255,255,0.00) 60.10%);
	background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 11.92%,rgba(255,255,255,0.00) 60.10%);
	background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 11.92%,rgba(255,255,255,0.00) 60.10%);
}
.wrap-home-about .container-3 {
	position: relative;
	z-index: 2;
	text-shadow: 0 0 10px #fff;
	padding:0 0 200px 0;
}
.wrap-home-about .container-3 h2 {
	color:#200073;
	font-size:40px;
	font-weight: 700;
	padding-bottom:30px;
	text-align: center;
	font-family: "Taviraj", serif;
}
.wrap-home-about .container-3 p {
	font-size: 16px;
	line-height: 1.3;
}

.wrap-home-about .container-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding:0px;
	background:#fff;
	border-radius: 30px;
	position: relative;
	z-index: 2;
}
.test-slider-cont {
	width:30%;
	background: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    box-sizing: border-box;
}
.test-slider-cont h2 {
	font-family: "Taviraj", serif;
	color:#200073;
	font-size:40px;
	font-weight:700;
	line-height: 1.2;
}
.test-slider-cont h2 span {
	font-size:26px;
	font-weight:400;
}
.test-slider {
	width:70%;
	background:#200073;
    border-radius: 30px;
	padding:40px;
	box-sizing: border-box;
}
.test-slider p {
	color:#fff;
	font-size: 16px;
	padding:10px;
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.test-slider .sml-text {
	font-weight: 400;
}
.test-slider .lg-text {
	font-weight: 600;
}
.test-slider .slick-dots {
	padding:20px 0 0 0;
	margin:0 auto;
	display: flex;
	justify-content: center;
	gap:10px;
	align-items: center;
}
.test-slider .slick-dots li {
	padding:0;
	margin:0;
	width:10px;
	height: 10px;
	border-radius: 20px;
	background:rgba(255,255,255,1.0);
	list-style: none;
}
.test-slider .slick-dots li.slick-active {
	background:rgba(255,255,255,0.7);
}
.test-slider .slick-dots li button {
	display: none;
}

.wrap-content {
	background:#f1f1f1;
	width:100%;
	padding:60px 10px 80px 10px;
	box-sizing: border-box;
}
.wrap-content .container-2 {
	background:#fff;
	border-radius:30px;
	padding:40px;
	box-sizing: border-box;
}
.wrap-content .container-2 h1 {
	font-family: "Taviraj", serif;
	color: #200073;
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
}
.wrap-content .container-2 h2 {
	font-size: 26px;
	font-weight: 400;
	font-family: "Taviraj", serif;
	color: #200073;
	line-height: 1;
	padding-bottom:10px;
}
.wrap-content .container-2 p {
	line-height: 1.4;
}
.contact-wrap {
	background: #fff;
	border-radius: 30px;
	max-width: 1100px;
	margin:0 auto;
	width: 100%;
}
.contact-wrap h1 {
	width:100%;
	padding-bottom:10px;
	display: block;
}
.form-container {
	background: #200073;
    border-radius: 30px;
    padding: 40px;
}
.form-container h2 {
	font-family: "Taviraj", serif;
	color:#fff;
	padding-bottom:20px;
	display: block;
}
.loc-cont-1 {
	width:49%;
	margin: 20px 0;
	padding:15px;
	border:1px solid #f8dd24;
	box-sizing: border-box;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.loc-cont-1 h2 {
	font-weight: 700!important;
}
.loc-cont-1 ul {
	padding:10px 0;
}
.loc-cont-1 ul li {
	line-height: 1;
	padding:4px 0;
	margin:0;
	list-style: none;
	font-family: "Work Sans", sans-serif;
	font-size: 20px;
	color:#200073;
}
.loc-cont-1 ul li a {
	color:#200073;
	transition: .2s ease-in;
}
.loc-cont-1 ul li span {
	font-weight: 600;
}
.loc-cont-1 ul li a:hover {
	color:#000;
}
.loc-map-1 {
	width:49%;
}
.loc-map-1 iframe {
	width:100%;
	height: 100%;
	min-height: 450px;
	border:0px;
}

/*===================== 
	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;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    border:0px;
    color:#000; 
	font-family: "Work Sans", sans-serif;
	border-radius: 20px;
	background:#fff;
}

.select-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0px!important;
    border-radius: 0px!important;
    width:100%;
    background:#fff;
    box-sizing: border-box;
    position: relative;
}
.select-cont  select {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    width:100%;
    background-color:transparent;
    border:0px!important;
    outline:none!important;
    font-size: 17px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.select-cont i {
    position: absolute;
    z-index: 1;
    right:0px;
}

.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: 15px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: "Work Sans", sans-serif;
    outline:none;
    border:0px;
	background:#fff;
	border-radius: 20px;
}


.CaptchaImage {
  max-width: 100%;
}
.CaptchaMessagePanel {
	color:#fff;
} 
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#fff;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 



/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	width: 100%;
	max-width: 1700px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-2 {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-3 {
	width: 100%;
	max-width: 550px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-inv {
	margin: 0 auto;
	padding:40px 0;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
	
.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;}
.col-1 { width: 100%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	position: relative;
	width: 100%;
	margin-top: -40px;
	}
footer:before {
	content:"";
	width:100%;
	height: calc(100% - 20px);
	position: absolute;
	z-index: 1;
	background-color:#f8dd24;
	display: block;
	bottom:0;
	left:0;
		
}
footer:after {
	content:"";
	width:100%;
	height: 100%;
	position: absolute;
	background-image: url("../siteart/footer-bg-1.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size:cover;
	z-index: 2;
	display: block;
	top:0;
	left:0;
}
	
footer .container-1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 3;
	padding: 50px 20px;
}
.foot-logo img {
	width:100%;
	max-width: 260px;
	display: block;
	margin:0 auto 15px auto;
}
.foot-logo ul {
	display: flex;
	justify-content: center;
	margin:0 auto;
	padding:0;
	flex-wrap: wrap;
	gap:5px 10px;
}
.foot-logo ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-logo ul li a {
	color:#200073;
	font-size:14px;
	font-weight: 400;
	transition: .2s ease-in;
}
.foot-logo ul li a:hover {
	color:#000;
}
.foot-loc-cont {
	display: flex;
	gap:20px 50px;	
}
.foot-log-col-1 p {
	font-size: 20px;
	font-weight: 700;
	font-family: "Taviraj", serif;
	padding-bottom:15px;
}
.foot-log-col-1 ul {
	padding:0;
	margin:0;
}
.foot-log-col-1 ul li {
	padding:0 0 5px 0;
	margin:0;
	list-style: none;
}
.foot-log-col-1 ul li a {
	font-size:16px;
	font-weight:400;
	color:#200073;
	font-family: "Work Sans", sans-serif;
	transition: .2s ease-in;
}
.foot-log-col-1 ul li a:hover {
	color:#000;
}



/*========================== 
	  Responsive styles 
============================*/
@media screen and (max-width: 1750px)  {
	.wrap-tran-slider {
		padding:0 20px;
	}
	.tran-info {
		padding:20px 20px 20px 130px;
	}
}

@media screen and (max-width: 1100px)  {
	header {
	  padding-left: 0;
	}
	.head-info {
	  padding: 10px 15px 10px 35px;
	}
	nav.primary {
	  padding:0 15px 0 0;
	}
	.hero-text h1 {
		font-size:30px;
	}
	.hero-text h1 span {
		font-size:20px;
	}
	.blue-btn, .white-btn {
		font-size:16px;
	}
	.wrap-cat-cont-1 .container-1 .cat-header, .wrap-cat-cont-1 .container-1 a {
		width:49%;
	}
	.wrap-tran-slider {
        padding: 0;
    }
	.tran-info-cont {
		width:100%;
		order:1;
		height: 600px;
		background-size: auto 100%;
		background-position: 10% center;
	}
	.tran-slider-cont-1 {
		width:100%;
		order:2;
		padding:0 20px;
		box-sizing: border-box;
	}
	.tran-info {
        padding: 40px;
		max-width: 700px;
		margin:0 auto;
    }
}
@media screen and (max-width: 900px)  {
	.foot-loc-cont {
	  gap:20px;
	}
	.foot-log-col-1 p {
	  font-size: 18px;
	}
	.foot-log-col-1 ul li a {
	  font-size: 14px;
	}
}
@media screen and (max-width: 800px)  {
	
	.head-logo-1 {
  		max-width: 200px;
	}
	.head-info {
		display: none;
	}
	.head-right-1 {
  		align-items: flex-start;
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;}
	
	#menu-button{ 
	
		display: flex;
		position: relative;
        box-sizing: border-box;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
		background: #200073;
        align-items: center;
		padding: 20px 25px 20px 50px;
		border-bottom-left-radius: 50px;
	}
	
    .menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
		 cursor: pointer;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#f8dd24;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#f8dd24;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#f8dd24;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }
    
	nav.mobile { /* this section is new updated position width and positioning*/
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #f8dd24;
		z-index: 500; 
		overflow:auto;
	}

	/* 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: "Work Sans", sans-serif;
		position: relative;
		text-align: center;
		display: block;
		font-size:18px;
		padding: 10px;
		color: #000;
		font-weight: 500;
		text-decoration: none;

	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
	}

	/* SECOND LEVEL */
	nav.mobile ul li li a {
		
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	.wrap-hero {
		background-position: 19% bottom;
	}
	
	.hero-text, .hero-img {
		width:100%;
	}
	.hero-img img {
		max-width: 500px;
		padding-bottom:1%;
	}
	.wrap-cat-cont-1 .container-1 .cat-header, .wrap-cat-cont-1 .container-1 a {
		width:100%;
	}
	.tran-slider-nav {
		width:100%;
		order:2;
		display: flex!important;
		gap: 2px;
	}
	.tran-slider {
		width:100%;
		order:1;
	}
	.tran-slider-nav .slick-track {
		display: flex;
		flex-direction: row;
		gap: 2px;
	}
	.tran-slider-nav img {
		height: auto;
		margin:0;
	}
	.tran-slider-nav .slick-prev {
		width:40px;
		display: flex;
		align-items: center;
		font-size: 12px;
		border-top-left-radius:10px;
		border-bottom-left-radius:10px;
		border-top-right-radius:0px;
	}
	.tran-slider-nav .slick-next {
		width:40px;
		display: flex;
		align-items: center;
		font-size: 12px;
		border-bottom-left-radius:0px;
		border-bottom-right-radius:10px;
		border-top-right-radius:10px;
	}
	.tran-slider img {
    	height: auto;
	}
	.wrap-cat-cont-1 .container-1 a img {
		height: 300px;
		object-position: center;
	}
	.test-slider-cont, .test-slider {
		width:100%;
	}
	.foot-loc-cont {
		display: none;
	}
	.foot-logo {
		width:100%;
	}
	footer {
		margin-top:0;
	}
	footer::before {
		height: 100%;
	}
	footer::after {
		height: calc(100% - 20px);
		top: auto;
 		bottom: 0;
	}
	.col-1-2, .loc-cont-1, .loc-map-1 {
		width:100%;
	}

}
@media screen and (max-width: 600px)  {
	.wrap-cat-cont-1 .container-1 a img {
		height: 250px;
	}
	.wrap-cat-cont-1 .container-1 {
		padding:50px 20px 100px 20px;
	}
	.wrap-home-about {
		padding:80px 20px;
	}
	.wrap-cat-cont-1 .container-1 .cat-header h2 span, .test-slider-cont h2 span, .wrap-content .container-2 h2 {
	  font-size: 20px;
	}
	.wrap-cat-cont-1 .container-1 .cat-header h2, .test-slider-cont h2,  .wrap-home-about .container-3 h2, .wrap-content .container-2 h1 {
	  font-size: 30px;
	}
	.wrap-content .container-2 {
		padding:40px 20px;
	}
}
@media screen and (max-width: 500px)  {
	.wrap-cat-cont-1 .container-1 a img {
		height: 200px;
	}
	
	
}
