@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 ===*/
    --Montserrat: "Montserrat", sans-serif;

	/*=== Colors ===*/
	--white: #FFFFFF;
    --black: #000000;
	--red: #ED1F27;
	--grey: #191919;
    --light-grey: #585858;
    
    /*=== 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)}
    .yellow{color: var(--yellow)}
    .red{color: var(--red)}
    .tan{color: var(--tan)}
    .grey{color: var(--grey)}
    .gray{color: var(--gray)}

body {
    position: relative;
	font-family: var(--Montserrat), sans-serif !important;
	height: auto !important;
/*    background-color: var(--white);*/
    background-image:
        url("/siteart/logo-background.svg");
}

.page-shadow {
	max-width: 1920px!important;
    width: 100%!important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px!important;
    background-color: rgb(255, 255, 255)!important;
    margin: 0 auto!important;
	overflow-x: hidden;
}
strong, b {
	font-family: var(--Montserrat);
    font-weight: 700;
}
p {
    font-size: clamp(16px, 5vw, 18px);
}
.bold {
	font-family: var(--Montserrat);
    font-weight: 700;
}

.thick {
	font-family: var(--Montserrat);
    font-weight: 700 !important;
}

.center {text-align: center;}

.xl-heading, .lg-heading, .md-heading, .sm-heading {
	font-family: var(--Montserrat);
/*	text-transform: uppercase;*/
}

.xl-heading-bold {
	font-family: var(--Montserrat);
	text-transform: uppercase;
    font-weight: 700 !important;
}


.xs-heading {
	font-family: var(--Montserrat);
    font-weight: 700;
	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, 26px);line-height: clamp(18px, 5vw, 26px);}
.xs-heading {font-size: clamp(16px, 5vw, 18px);line-height: clamp(16px, 5vw, 18px);}

.sm-padding {padding: 20px 0;}

/*=== BODY STYLES 
============================================*/

.btn-red {display: flex; flex-direction: row; justify-content: center; padding: 10px 24px; background-color: var(--red); max-width: 350px; color: var(--white); font-weight: 500;}
.btn-red:hover {color: var(--black);}


/*=== HEADER / NAV STYLES 
==============================*/

.secondary-nav {background-color: var(--grey); color: var(--white); padding: 3px 0;}
.secondary-nav > div {width:100%; margin: auto; display: flex; flex-direction: row; justify-content: space-between; align-items: center;}
.secondary-links {display: flex; flex-direction: row; justify-content: flex-end; align-items: center; text-transform: uppercase; font-weight: 600; font-size: 12px;}
.secondary-links a {padding: 13px 20px;}
.secondary-nav a:hover {color: var(--red);}
.secondary-links a > i {font-size: 20px;}
div.secondary-nav-desktop {max-width: 1540px; margin: auto; padding: 3px 2.5%;}
div.secondary-nav-mobile {font-size: 24px; margin: auto; display: none; flex-direction: row; justify-content: space-around; padding: 10px 0;}
div.secondary-nav-mobile a:hover {color: var(--red);}

.header-wrap na ul li a {text-transform: uppercase !important;}
.header-wrap {background-color: var(--black);}

nav.primary.nav {display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding: 15px 2.5%; max-width: 1540px; margin: auto;}
.header-logo img {height: 75px; width: auto; margin: 0 0 0 0; object-fit: contain; padding: 0 25px 0 0;}
.mobile-menu-fb {display: flex; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; padding:15px !important;}
.mobile-menu-right {display: flex; flex-direction: row; gap: 0px; align-items: center;}
a.last-link{color: var(--white); background-color: var(--red);}
a.last-link:hover {color: var(--black);background-color: var(--yellow) !important;}
a.menu-toggle {font-size: 24px !important; border: 3px solid var(--white); border-radius: 5px; padding: 3px 10px !important;}

@media screen and (max-width: 1024px) {
    nav.primary.nav {
        display: none !important;
    }
    .secondary-nav-desktop {display: none !important}
    .secondary-nav-mobile {display: flex !important}
}

/*=== FOOTER STYLES 
==============================*/
.footer-banner {background-color: var(--red); color: var(--white);}
.footer-banner-text {padding: 33px 0; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; width: 90%; margin: auto; gap: 24px;}
.footer-banner-text a {font-weight: 600;}
.footer-banner-text a:first-of-type {font-size: 20px; font-weight: 700; width: clamp(20%, 10vw, 200px);}
.footer-banner-text a:hover {color: var(--black);}
.footer-wrap {background-color: var(--black); padding: 30px 0; color: var(--white);}
.footer-wrap > div {display: flex; flex-direction: row; justify-content: space-between; align-items: center; width: 90%; max-width: 1440px; margin: 0 0 0 5%; padding: 20px 20px 0 0;}
.footer-wrap > div:first-of-type {padding: 20px 20px 0 0;}
.footer-wrap > div img.footer-logo {height: 100%; width: auto; max-height: 100px !important; margin: 0;}

.footer-bottom {display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start !important; gap: clamp(20px, 1vw, 100px); width: 95%; max-width: 1540px; font-size: 18px;}
.footer-bottom > div {padding: 40px 0;}
.footer-bottom > div a:hover {color: var(--red);}
.footer-bottom > div > div {display: flex; flex-direction: row; gap: clamp(20px, 15vw, 100px); line-height: 40px;}
.footer-bottom > div > h4 {line-height: 50px; font-size: 20px;}
.footer-bottom > div:last-of-type > div {gap: clamp(100px, 10vw, 200px);}
.footer-bottom > div:last-of-type a {font-size: 16px;}

.copyright {display: flex; flex-direction: row; justify-content: center; align-items: center; flex-wrap: wrap; color: var(--white); background-color: var(--grey); padding: 20px; font-size: 16px !important; font-weight: 400;}
.copyright p { font-size: 16px !important;}
.copyright a:hover {color: var(--red);}




@media screen and (max-width: 1024px) {
    .footer-wrap > div {flex-direction: column; gap: 50px; align-items: flex-start; padding-left: 20px;}
    .footer-wrap > div.footer-bottom {gap: 0;}
    .footer-banner-text {flex-wrap: wrap;}
    .footer-banner-text a:first-of-type {width: 100%;}
}
@media screen and (max-width: 768px) {
    .footer-banner {display: none;}
    .footer-bottom > div > div {flex-direction: column;}
}












