*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,input,select{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;color:unset}html{scroll-behavior:smooth}a{text-decoration:none;cursor:pointer}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}button{cursor:pointer;border:none;border-radius:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}img{max-width:100%;}
/*=== END RESET ===*/

/*=== CLEARFIX ===*/
/*=== CLEARFIX ===*/
.clear{clear:both}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{zoom:1}

/*=== GLOBAL ===*/
.flex-container{display:flex}.flex-vertical{flex-direction:column}.flex-horizontal{flex-direction:row}.flex-width{flex-grow:1;flex-shrink:1;flex-basis:100%}.flex-height{height:100%}.flex-wrap{flex-wrap:wrap}.set-width{flex-grow:0;flex-shrink:0;flex-basis:auto}.justify-center{justify-content:center}.justify-right{justify-content:flex-end}.justify-left{justify-content:flex-start}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-evenly{justify-content:space-evenly}.align-center{align-items:center}.align-top{align-items:flex-start}.align-bottom{align-items:flex-end}.align-stretch{align-items:stretch}.align-all-center{align-items:center;justify-content:center}.align-self-center{align-self:center}.align-self-right{align-self:flex-end}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.mobile-only{display: none}.max-width{margin:0 auto;max-width:1540px;width:100%;}.map{min-height:350px;line-height:0;}

:root {
	/*=== Fonts ===*/
	--Poppins: "Poppins", sans-serif;

	/*=== Colors ===*/
	--white: #ffffff;
	--black: #161616;
	--green: #32cd32;

	/*=== Spacing ===*/
	--lg-padding: clamp(75px, 5vw, 100px);
	--sm-padding: clamp(25px, 2.5%, 2.5%);
}

body {
	font-family: var(--Poppins);
	height: auto !important;
}
strong, b {
	font-family: var(--Poppins);
}

/*=== LOGO ===*/
.logo-container {
	line-height: 0;
	line-height: 0;
    width: auto;
    position: absolute;
	right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
}
.logo-container .logo {
	position: relative;
    object-fit: contain;
    object-position: center;
	max-height: 105px;
	height: 100%;
	width: auto;
}

/*=== CUSTOM STYLES ===*/

/*=== HEADER ===*/
header.custom-site-header {
	background-color: var(--black);
	font-family: var(--Poppins);
	color: var(--white);
	position: relative;
}
header.custom-site-header a.active {
	color: var(--green);
	border-bottom: 1px solid var(--green);
	font-weight: 600;
}

/*=== FOOTER ===*/
footer.custom-site-footer {
	font-family: var(--Poppins);
	font-size: 18px;
	line-height: 1.5;
	background-color: var(--green);
	color: var(--black);
	text-align: center;
	padding: 56px 0;
}
footer.custom-site-footer div > * {
	margin-bottom: 16px
}
footer.custom-site-footer i {
	font-size: 23px;
}
footer.custom-site-footer .copyright {
	font-size: 16px;
	line-height: 28px;
}
footer.custom-site-footer .copyright p {
	text-align: left;
}
footer.custom-site-footer .max-width {
	max-width: 1280px;
	padding: 0 24px;
}

@media screen and (max-width: 1535px) {
	footer.custom-site-footer {
		font-family: var(--Poppins);
		font-size: 16px;
		line-height: 1.5;
	}
	footer.custom-site-footer .max-width {
		max-width: 1160px;
	}
	footer.custom-site-footer .copyright {
		font-size: 14px;
	}
}

@media screen and (max-width: 1288px) {
	footer.custom-site-footer .max-width {
		max-width: 984px;
	}
}

@media screen and (max-width: 1125px) {	
	.logo-container {
		line-height: 0;
		line-height: 0;
		width: auto;
		position: absolute;
		right: 50%;
		top: 50%;
		transform: translate(50%, -50%);
	}
	.logo-container .logo {
		position: relative;
		object-fit: contain;
		object-position: center;
		max-height: 80px;
		height: 100%;
		width: auto;
	}
	header.custom-site-header {
		height: 96px;
		align-content: center;
	}
}

@media screen and (max-width: 1024px) {
	footer.custom-site-footer .max-width {
		max-width: 100%;
	}
	footer.custom-site-footer .copyright p {
		text-align: center;
	}
}

@media screen and (max-width: 768px) {
	footer.custom-site-footer .max-width {
		padding: 0 24px;
	}
}