﻿/*===================== 
	Color information
	
	-red #ed1e33
	-blue #193688
	-grey #f1f1f1
		 
=======================*/
/*===================== 
	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: "Montserrat", 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;
	}
.text-center {
	text-align: center;
}

/*===================== 
	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;
		}  
.red-btn-1 {
	background:#ed1e33;
	font-family: "Montserrat", sans-serif;
	color:#000!important;
	font-size:18px;
	border-radius: 30px;
	padding:15px 40px;
	display: inline-block;
	border:1px solid #ed1e33;
	transition: .2s ease-in;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}
.red-btn-1 span {
	font-weight: 400;
}
.red-btn-1:hover {
	background:#fff;
	color:#ed1e33!important;
}

.flex-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	background:#fff;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.2);
	}

.header-search {
	background:#f1f1f1;
	width:100%;
	box-sizing: border-box;
	padding:20px;
	display: none;
}
.header-search form {
	width:100%;
	max-width: 1500px;
	margin: 0 auto;
	padding:0;
	border-radius: 20px;
	display: flex;
	align-items: stretch;
	background:#fff;
	box-sizing: border-box;
	
}
.header-search form input {
	font-size: 16px;
	padding:20px;
	border:0px!important;
	outline: none;
	background:#fff!important;
	color:#000!important;
	border-bottom-left-radius: 20px!important;
	border-top-left-radius: 20px!important;
	flex-grow: 1;
	font-family: "Montserrat", sans-serif;
	width:100%;
	height: auto!important;
	line-height: normal!important;
}
.header-search form button {
	font-size: 16px;
	padding:10px;
	border:0px;
	outline: none;
	background:#ed1e33;
	color:#fff;
	transition: .2s ease-in;
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
	cursor: pointer;
}
.header-search form button:hover {
	opacity: 0.7;	
}

header {
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
.head-logo-1 {
	width:calc(50% - 550px);
	display: flex;
	justify-content: flex-end;
}
.head-logo-1 img {
	display: block;
	width:100%;
	max-width:170px;
	height: auto;
}
.head-contact {
	width:calc(50% - 550px);
	display: flex;
	justify-content: flex-end;
}
.head-contact ul {
	padding:40px;
	background:#193688;
	display: flex;
	margin:0;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	gap:10px;
	justify-content: center;
	align-items: center;
}
.head-contact ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-contact ul li a {
	color:#fff;
	font-size: 20px;
	transition: .2s ease-in;
}
.head-contact ul li a:hover {
	opacity: 0.7;
}


/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}



nav.primary {
	padding:0;
	display:block;
	margin:0;
	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; 
			}
			nav.primary ul li a {
				color: #000;
				font-family: "Montserrat", sans-serif;
				font-size: 18px;
				text-decoration: none;
				padding:10px;
				display: block;
				margin: 0;
				text-align: center;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 600;
				}	
			nav.primary ul li a:hover {
				color:#193688;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				padding:15px;
			}
			/* 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; 
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.2);
	background: #fff;
}
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 {
	padding:60px 10px 80px 10px;
	width:100%;
	box-sizing: border-box;
}
.wrap-hero .container-1 {
	background-color:#193688;
	border-radius:50px;
	overflow: hidden;
	padding:0px;
	position: relative;
}
.wrap-hero .container-1 img {
	width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    object-fit: contain;
    object-position: right bottom;
}
.desktop-img {
	
}
.mob-img{
	display: none;
}

.hero-content {
	padding:100px 20px 100px 40px;
	position: relative;
	z-index: 2;
	
}
.hero-content h1 {
	font-family: "Montserrat", sans-serif;
	color:#fff;
	font-size:45px;
	font-weight:700;
	text-shadow: 0 0 10px #193688;
	padding-bottom:20px;
}
.hero-content h2 {
	font-family: "Montserrat", sans-serif;
	color:#fff;
	font-size:22px;
	font-weight:500;
	text-shadow: 0 0 10px #193688;
	padding-bottom:40px;
}

.hero-btn-cont-1 {
	width:90%;
	max-width: 650px;
	background:#fff;
	display: flex;
	justify-content: space-between;
	clip-path: polygon(0% 0%,calc(100% - 80px) 0%,100% 100%,0% 100%);
	padding:20px 25px 0 0;
	box-sizing: border-box;	
	gap:20px;
	position: relative;
	z-index: 2;
}
.hero-btn-cont-1 a {
	background:#ed1e33;
	flex-grow: 1;
	padding:10px;
	height: 110px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#000;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 700;
	transition: .2s ease-in;
	position: relative;
	z-index: 2;
}
.hero-btn-cont-1 a:last-of-type {
	clip-path: polygon(0% 0%,calc(100% - 68px) 0%,100% 100%,0% 100%);
	padding-right: 20px;
}
.hero-btn-cont-1 a span {
	font-size: 16px;
	font-weight: 400;
}
.hero-btn-cont-1 a:hover {
	background:#000;
	color:#fff;
}	
.wrap-home-cat {
	width:100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px 0;
}
.wrap-home-cat a {
	width:48%;
	overflow: hidden;
	position: relative;
}
.wrap-home-cat a:first-of-type {
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
}
.wrap-home-cat a:last-of-type {
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
}
.wrap-home-cat a img {
	width:100%;
	height: 425px;
	display: block;
	object-fit: cover;
	object-position: center;
}
.wrap-home-cat a h2 {
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height: 100%;
	background:rgba(0,0,0,0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
	font-size:35px;
	color:#fff!important;
	font-weight:700;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
	transition: .2s ease-in;
}
.wrap-home-cat a h2 span {
	font-weight:400;
}
.wrap-home-cat a:hover h2 {
	background:rgba(0,0,0,0.8);
}

.wrap-home-about {
	width:100%;
	padding:100px 10px 10px 10px;
	box-sizing: border-box;
}
.wrap-home-about .container-1 {
	border-radius: 50px;
	padding:0px;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap:20px 0;
	background:#f1f1f1;
}
.home-about-info {
	width:calc(100% - 400px);
	padding:60px 40px;
	box-sizing: border-box;
}
.home-about-info h2 {
	font-size: 40px;
	font-weight: 700;
	padding-bottom:20px;
}
.home-about-info p {
	font-size: 18px;
}
.home-about-contact {
	border-radius: 50px;
	padding:40px;
	height: 400px;
	width:400px;
	box-sizing: border-box;
	display: flex;
	background:#193688;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.home-about-contact p {
	font-size: 25px;
	color:#fff;
	font-weight: 700;
	margin-bottom:20px;
	text-align: center;
}
.home-about-bg-img-1 {
	width:100%;
	height: auto;
	max-height: 475px;
	display: block;
	object-fit: cover;
	object-position: center;
}
.wrap-home-contact {
	width:100%;
	padding:100px 10px;
	box-sizing: border-box;
}
.wrap-home-contact .container-1 {
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	padding:0px;
	display: flex;
	flex-wrap: wrap;
}
.home-contact-info {
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	background:#ed1e33;
	width:40%;
	height: 400px;
	padding-left:8%;
	box-sizing: border-box;
}
.home-contact-info ul {
	background:#f1f1f1;
	padding:20px 20px 20px 40px;
	margin:0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap:10px;
	height: 100%;
	box-sizing: border-box;
}
.home-contact-info ul li {
	padding:0;
	margin:0;
	position: relative;
	display: flex;
	align-items: center;
	font-size:22px;
	font-weight:400;
	color:#000;
}
.home-contact-info ul li i {
	font-size:25px;
	color:#fff;
	position: relative;
    left: -90px;
}
.home-contact-info ul li a {
	transition: .2s ease-in;
	color:#000;
	font-weight:700;
}
.home-contact-info ul li span {
	font-weight:700;
}
.home-contact-info ul li a:hover {
	color:#193688;
}
.home-contact-map {
	width:60%;
	height: 400px;
}

.wrap-content {
	padding:60px 10px 80px 10px;
	width:100%;
	box-sizing: border-box;
}
.wrap-content .container-1 {
	background-color:#193688;
	border-radius:50px;
	padding:40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color:#fff;
}
.about-bg-cont {
	display: flex;
	justify-content: space-between;
    border-radius: 50px;
    padding:30px 0;
	box-sizing: border-box;
	width:100%;
	flex-wrap: wrap;
	align-items: center;
	gap:40px 0;
}
.about-bg-info {
	width:59%;
}
.about-bg-cont  h2 {
	font-size: 20px;
	margin-bottom:10px;
}
.about-img {
	width:39%;
	height: auto;
	display: block;
}
.about-img img {
	width:100%;
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
}

/*===================== 
	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 solid #000;
    color:#000; 
	border-radius: 10px;
	font-family: "Montserrat", sans-serif;
}

.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: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
    outline:none;
    border:0px solid #000;
	border-radius: 10px;
	font-family: "Montserrat", sans-serif;
}


.CaptchaImage {
  max-width: 100%;
}
.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 {
	max-width: 1500px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.container-inv {
	padding:40px 10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.col-1 { width: 100%; box-sizing:border-box;}	
.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%;
	background: linear-gradient(50deg, rgba(25,54,136,1) calc(50% + 410px), rgba(255,255,255,1) calc(50% + 410px), rgba(255,255,255,1) calc(50% + 415px), rgba(241,241,241,1) calc(50% + 415px));
	}
footer .container-1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:50px 20px;
	box-sizing: border-box;
}
.foot-logo-1  img {
	display: block;
	width:100%;
	max-width:170px;
	height: auto;
}

.foot-contact ul {
	padding:0;
	margin:0;
	display: flex;
	gap:10px;
}
.foot-contact ul li {
	padding:0;
	margin: 0;
	list-style: none;
}
.foot-contact ul li a {
	transition: .2s ease-in;
	font-size:20px;
	color:#193688;
}
.foot-contact ul li a:hover {
	color:#000;
}


/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1500px)  {
	
	.head-contact {
		width: auto;
	
	}
	footer {
		background: linear-gradient(50deg, rgba(25,54,136,1) calc(100% - 155px), rgba(255,255,255,1) calc(100% - 155px), rgba(255,255,255,1) calc(100% - 150px), rgba(241,241,241,1) calc(100% - 150px));
	}
	nav.primary ul li a {
				font-size: 17px;
				padding:8px;
				}
  .head-logo-1 {
    width: 100%;
    padding-left: 20px;
    max-width: 175px;
  }
}

@media screen and (max-width: 1200px)  {
	nav.primary ul li a {
				font-size: 15px;
				padding:5px;
				}
	.head-contact ul {
		max-width:30px;
	}
}

@media screen and (max-width: 1000px)  {
	.desktop-img {
		display: none;
	}
	.mob-img {
		display: block;
	}
	.hero-content h1 {
		font-size: 4.5vw;
		padding-bottom: 1vw;
	}
	.hero-content h2 {
	  font-size: 2vw;
	  padding-bottom: 40px;
	}
	.wrap-hero .container-1 img {
		height: auto;
		top: auto;
		bottom: 0;
		object-position: right bottom;
		max-width: 750px;
		padding-bottom: 5%;
	}
	.hero-content {
	  padding:40px 20px 30vw 40px;
	}
	.hero-btn-cont-1 a {
	  height: 80px;
	}
	.hero-btn-cont-1 a:last-of-type {
	  clip-path: polygon(0% 0%,calc(100% - 63px) 0%,100% 100%,0% 100%);
	}
	.home-about-info {
	  width: 100%;
	  padding:40px 20px;
	  box-sizing: border-box;
	}
	.home-about-contact {
		border-radius:50px;
		padding:80px 20px;
		height: auto;
		width: 100%;
	}
	.home-contact-info {
		width:100%;
		border-bottom-left-radius: 0px;
		padding-left: 60px;
		height: auto;
	}
	.home-contact-info ul {
	  padding: 40px 20px 40px 10px;
		gap:40px;
	}
	.home-contact-info ul li i {
	  left: -50px;
	}
	.home-contact-map {
		width:100%;
	}
	.col-1-3, .col-2-3 {
		width:49%;
	}
	
}
@media screen and (max-width: 1050px)  {

	.head-contact ul {
		display: none;
	}
    .head-logo-1 {
    	width: 100%;
    	padding: 10px 20px;
    	box-sizing: border-box;
    	max-width: 120px;
    }
	.head-logo-1 img {
		max-width: 120px;
	}
	.header-search {
		display: none!important;
	}
	.mobile-search {
		width:100%;
		box-sizing: border-box;
		padding:10px;
		display: block;
	}
	.mobile-search form {
		width:100%;
		max-width: 1500px;
		margin: 0 auto;
		padding:0;
		border-radius: 20px;
		display: flex;
		align-items: stretch;
		background:#fff;
		box-sizing: border-box;

	}
	.mobile-search form input {
		font-size: 14px!important;
		padding:5px!important;
		border:0px!important;
		outline: none!important;
		background:#fff;
		color:#000!important;
		border-bottom-left-radius: 20px!important;
		border-top-left-radius: 20px!important;
		flex-grow: 1;
		font-family: "Montserrat", sans-serif;
		width: 100%;
		height: auto!important;
		line-height: normal!important;
	}
	.mobile-search form button {
		font-size: 14px;
		padding:10px;
		border:0px;
		outline: none;
		background:#ed1e33;
		color:#fff;
		transition: .2s ease-in;
		border-bottom-right-radius: 20px;
		border-top-right-radius: 20px;
		cursor: pointer;
	}
	.mobile-search form button:hover {
		opacity: 0.7;	
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
	#menu-button{ 
		padding:20px 40px;
		background: #193688;
		display: flex;
		margin: 0;
		border-top-left-radius: 20px;
		border-bottom-left-radius: 20px;
		gap: 10px;
		justify-content: center;
		align-items: center;
	}
		#menu-button a{
			 color:#fff;
			font-size: 30px;
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #193688;
		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:flex;
		justify-content: flex-end;
		padding: 10px;
		width:100%;
		box-sizing: border-box;
	}

	/* 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;
	}
	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: #fff;
		text-decoration: none;
		border-left:4px #193688 solid;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #ed1e33 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;
		color: #fff;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}


	nav.mobile ul li .click {position: relative;}
	nav.mobile ul li .click i {position: absolute; right: 20px;}
	
	.wrap-home-cat a {
	  width: calc(100% - 20px);
	}
	.wrap-home-cat a:first-of-type {
		margin-right: 20px;
	}
	.wrap-home-cat a:last-of-type {
		margin-left: 20px;
	}
	.wrap-home-cat a img {
		height: 35vw;
		min-height: 185px;
	}
	.about-bg-info {
		order:2;
		width:100%;
	}
	.about-img {
		order:1;	
		width:100%;
	}
	
    
}
@media screen and (max-width: 500px)  {
	.red-btn-1 {
	  font-size: 16px;
	  padding:10px 20px;
	}
	.hero-content h1 {
		font-size: 30px;
		padding-bottom: 10px;
	}
	.hero-content h2 {
		font-size: 18px;
		padding-bottom: 40px;
	  }
	.hero-content {
		padding: 40px 20px 150px 40px;
	}
	.hero-btn-cont-1 a span {
	  font-size: 12px;
	}
	.hero-btn-cont-1 a {
	  font-size: 14px;
	}
	.hero-btn-cont-1 {
  		gap:5px;
	}
	.hero-btn-cont-1 {
		clip-path: polygon(0% 0%,calc(100% - 70px) 0%,100% 100%,0% 100%);
  		padding:10px 0 0 0;
	}
	.wrap-hero .container-1 img {
		padding-bottom: 70px;
	  }
	.wrap-home-cat a h2 {
		font-size: 22px;
	}
	.home-about-info h2 {
	  font-size: 24px;
	}
	.home-about-info p {
	  font-size: 16px;
	}
	.home-contact-info ul li {
		font-size: 18px;
	}
	.home-contact-info ul li i {
		font-size: 20px;
	}
	footer .container-1 {
		padding:40px 20px;
	}
	.foot-logo-1  img {
		max-width:100px;
	}
}

@media screen and (max-width: 450px)  {
	.wrap-hero .container-1 img {padding-bottom: 170px;}
	.hero-btn-cont-1 {flex-wrap: wrap; clip-path: none; width: 100%;}
	.hero-btn-cont-1 a:last-of-type {width: 100%; clip-path: none;}
}
	
