@charset "utf-8";
/* CSS Document */
*{-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 ===*/
.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 var(--sm-padding)}.map{min-height:350px;line-height:0;}


*,
*::before,
*::after {
    transition: all 0.3s ease;
}
a:hover {cursor: pointer !important;}

/*=== SELECT STYLES ===*/
::selection, ::-moz-selection {
	background: var(--red);
	color: var(--white);
	text-shadow: none;
}

:root {
	/*=== Fonts ===*/
    --Poppins: "Poppins", sans-serif;
    --Anton: "Anton", sans-serif;

	/*=== Colors ===*/
	--white: #f4f4f4;
	--blue: #004a85;
	--orange: #DF5E21;
    --gray: #272623;
    --black: #1B2B38;
    
    /*=== Font Sizes ===*/
    --p: clamp(16px, 5vw, 20px);

	/*=== Spacing ===*/
	--lg-padding: clamp(75px, 5vw, 100px);
	--sm-padding: clamp(25px, 2.5%, 2.5%);
}

    .white{color: var(--white)}
    .blue{color: var(--blue)}
    .orange{color: var(--orange)}
    .gray{color: var(--gray)}
    .black{color: var(--black)}

body {
    position: relative;
	font-family: var(--Poppins), sans-serif !important;
	height: auto !important;
/*    background-color: var(--tan);*/
}


p {
    font-size: clamp(16px, 5vw, 18px);
}


.thick {
	font-family: var(--Poppins);
    font-weight: 900 !important;
}

.center {text-align: center;}

.xl-heading, .lg-heading, .md-heading, .sm-heading {
	font-family: var(--Anton);
	text-transform: uppercase;
}

.xl-heading-bold {
	font-family: var(--Anton);
	text-transform: uppercase;
    font-weight: 900 !important;
}


.xs-heading {
	font-family: var(--Anton);
	text-transform: uppercase;
	padding-top: 5px;
}
.xl-heading {font-size: clamp(56px, 5vw, 64px);line-height: clamp(56px, 5vw, 64px);}
.lg-heading {font-size: clamp(34px, 5vw, 42px);line-height: clamp(34px, 5vw, 42px);}
.md-heading {font-size: clamp(27px, 5vw, 35px);line-height: clamp(27px, 5vw, 35px);}
.sm-heading {font-size: clamp(18px, 5vw, 22px);line-height: clamp(18px, 5vw, 22px);}
.xs-heading {font-size: clamp(16px, 5vw, 18px);line-height: clamp(16px, 5vw, 18px);}

.sm-padding {padding: 20px 0;}

/*=== BODY STYLES 
============================================*/
.width95 {width: 95%; max-width: 1700px; margin: auto;}
.width90 {width: 90%; max-width: 1600px; margin: auto;}

/*=== HEADER STYLES
==============================*/
.top-runner {background: var(--gray); padding: 5px 0;}
.top-runner > div {display: flex; justify-content: space-between; align-items: center; gap: 25px; color: var(--white);}
.top-runner ul {list-style: none;margin: 0;padding: 0; display: flex; justify-content: center; align-items: center; gap: 20px;}
.top-runner div > ul > li {position: relative; background: #41413e; border: 1px solid #82817D; padding: 5px 50px 5px 20px; font-size: 14px !important;}
.top-runner ul li ul {display: none;position: absolute;top: 100%;left: 0;background: #fff !important;min-width: 200px;z-index: 100; padding: 0 !important;}
.top-runner ul li:hover > ul {display: block;}
.top-runner ul li ul li a {display: block;padding: 8px 12px;white-space: nowrap; background: #fff; color: var(--gray);}
.top-runner ul li ul li a:hover {background: var(--blue); color: var(--white);}
.top-runner div:has(a > i.fa-brands) {display: flex; justify-content: space-between; align-items: center; gap: 15px;}
.top-runner i.fa-brands {font-size: 20px;}

.top-dropdowns .fa-solid.orange {display: none;}

.header-wrap {background: var(--white);}

#site-menu {padding: 10px 0; display: flex; justify-content: space-between !important; align-items: center; gap: 20px; width: 95% !important;}
#site-menu > ul {flex-wrap: wrap; justify-content: flex-end;}
.header-logo {aspect-ratio: auto 600/82; object-fit: contain; width: clamp(0px, 35vw, 600px);}

/*=== FOOTER STYLES 
==============================*/
.footer-wrap {padding-top: 50px;}
.footer-wrap a:hover {color: var(--orange);}
.footer-wrap > div {display: flex; gap: 50px; justify-content: space-between;}
.footer-wrap > div > div:first-child  {justify-content: flex-start;}
.footer-wrap > div > div  {display: flex; gap: 50px; justify-content: space-between; width: 100%;}
.footer-wrap > div > div  div:first-child  {max-width: 462px;}
.footer-wrap ul {margin-bottom: 20px;}
.footer-wrap ul li {margin-top: 20px;}
.footer-socials {display: flex; flex-direction: column; gap: 25px; font-size: 24px;}
.footer-socials a:hover {transform: translateY(-10px); color: var(--orange);}
.footer-quote {font-style: italic;}

.bottom-runner {display: flex; flex-direction: column; align-items: center; padding-bottom: 100px;}
.bottom-runner > img {width: 100%; max-width: 456px; object-fit: contain; padding: 10px;}
.bottom-runner > div {padding: 15px 0px 18px; border-top: 2px solid var(--black); width: 100%; display: flex; justify-content: center; flex-wrap: wrap;}

/*=== MEDIA QUERIES 
==============================*/


@media screen and (max-width: 1000px) {
    .top-runner > div {justify-content: flex-start;}
    .top-runner > div > *:not(.top-dropdowns) {display: none !important;}
    .top-runner > div > ul > li {background: transparent !important; border: none !important; padding: 20px; font-size: 32px !important;}
    .top-dropdowns ul li a {font-size: 14px !important; background: var(--orange) !important; color: var(--white) !important; padding: 15px 20px !important; border-bottom: 1px solid #fff;}
    .top-dropdowns ul li a:hover {background: var(--blue) !important;}
    .top-dropdowns .fa-solid.orange {display: inline;}
    
    #site-menu a:has(.header-logo) {display: none;}
    .header-wrap {background: transparent;}
    #site-menu {border: 2px solid var(--black); padding: 0 !important;}
    #site-menu, #site-menu ul {width: 100% !important; margin: 0;}
    #site-menu ul li a {padding: 20px; border: 1px solid var(--black);}
    #site-menu ul li a:hover {background: var(--blue) !important; color: #fff !important;}
    
    .footer-wrap > div {flex-direction: column;}
}


@media screen and (max-width: 768px) {
    .top-runner > div > ul.top-dropdowns {justify-content: space-around !important; width: 100%;}
    .top-runner > div > ul.top-dropdowns > li {padding: 0 !important; font-size: 14px !important;}
    .top-runner > div > ul.top-dropdowns li a {font-size: 14px !important; padding: 0;}
    
    .footer-wrap > div > div {flex-direction: column;}
    .footer-wrap > div > div > div:first-child {max-width: none;}
    .footer-socials {flex-direction: row;}
}












