@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 ===*/
    --Aleo: "Aleo", serif;
    --Inter: "Inter", sans-serif;

	/*=== Colors ===*/
	--white: #F2F0EF;
	--black: #040707;
	--red: #B81E2B;
    --dark-red: #630f16;
    --grey: #CBCBCB;
    
    /*=== Font Sizes ===*/
    --p: clamp(16px, 5vw, 20px);
    --md-heading: clamp(27px, 5vw, 35px);

	/*=== Spacing ===*/
	--lg-padding: clamp(75px, 5vw, 100px);
	--sm-padding: clamp(25px, 2.5%, 2.5%);
}

    .white{color: var(--white)}
    .black{color: var(--black)}
    .red{color: var(--red)}

body {
    position: relative;
	font-family: var(--Inter), serif !important;
	height: auto !important;
    background-color: var(--white);
}

.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-weight: 800;
}
p {
    font-family: var(--Inter);
    font-size: clamp(16px, 5vw, 18px);
    font-weight: 200;
    line-height: 1.5;
}
.bold {
/*	font-family: var(--Barlow);*/
    font-weight: 800;
}

.thick {
/*	font-family: var(--Barlow);*/
    font-weight: 800 !important;
}

.center {text-align: center;}

.xl-heading, .lg-heading, .md-heading, .sm-heading {
	font-family: var(--Aleo);
	text-transform: none;
}

.xl-heading-bold {
	font-family: var(--Aleo);
	text-transform: uppercase;
    font-weight: 900 !important;
}


.xs-heading {
	font-family: var(--Aleo);
    font-weight: 900;
	text-transform: uppercase;
	padding-top: 5px;
}
.xl-heading {font-size: clamp(40px, 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 
============================================*/

.width90 {width: 90%; margin: auto;}
.boxed {border: 3px solid var(--black);}
.gimmespace {height: 100px;}

/*=== HEADER / NAV STYLES 
==============================*/

/*.header-wrap {width: 100%; padding: 25px 0;}*/

nav.primary.nav {display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding: 25px; border-bottom: 10px solid var(--red);}
.header-logo img {height: 75px; width: auto; margin: 0 0 0 25px;}
.mobile-menu-fb {display: flex; flex-direction: row; align-items: center; justify-content: space-between; width: 100%;}
.mobile-menu-right {display: flex; flex-direction: row; gap: 0px; align-items: center;}
a.last-link{color: var(--white); background-color: var(--red); border-radius: 20px 0 0 0;}
a.last-link:hover {background-color: var(--dark-red) !important;}

@media screen and (max-width: 1000px) {
    nav.primary.nav {
        display: none !important;
    }
}

/*=== BUTTONS 
==============================*/

.btn-phone {padding: 10px 15px; background-color: var(--red); color: var(--white); border-radius: 10px;}

.btn-white {color: var(--black); background-color: var(--white); display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 20px; max-width: 250px; padding: 10px; border-radius: 0 0 0 10px; border: 1px solid var(--white);}
.btn-white > i {border-radius: 100%; border: 1px solid var(--black); padding: 3px;}
.btn-white:hover {color: var(--white); background-color: var(--red); border-color: var(--white);}
.btn-white:hover > i {border-color: var(--white);}

.btn-red {color: var(--white); background-color: var(--red); display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 20px; max-width: 100%; width: 250px; padding: 10px; border-radius: 0 0 0 10px; border: 1px solid var(--red);}
.btn-red > i {border-radius: 100%; border: 1px solid var(--white); padding: 3px;}
.btn-red:hover {color: var(--black); background-color: var(--white); border: 1px solid var(--black);}
.btn-red:hover > i {border-color: var(--black);}

/*=== HOME PAGE 
==============================*/

.home-hero-wrap {position: relative; width: 100%; height: auto; background-color: var(--black);}
.home-hero-img {width: 100%; filter: brightness(0.33); object-fit: cover; transform: rotateY(180deg);}
.hero-text {position: absolute; top: clamp(50px, 5vw, 100px); left: clamp(25px, 5vw, 100px); color: var(--white); margin: 0 25px 0 0; width: 90%;}
.hero-text h2 {max-width: 700px;}

.inv-ql {position: absolute; bottom: 0; left: 5%; display: flex; flex-direction: row; gap: 25px; width: 90%; max-width: none;  padding: 0 0 0px 0;}
.ql-box {display: flex; flex-direction: column; justify-content: space-between; background-color: var(--white); border-radius: 0 0 0 20px; overflow: hidden; width: 25%; height: clamp(250px, 27vw, 400px); max-height: 400px;}
.ql-box img {width: 100%; height: auto; max-height: 300px; object-fit: contain;}
.ql-text {display: flex; flex-direction: column; text-align: center; align-self: stretch; color: var(--white); background-color: var(--red); padding: 20px 0;}
.ql-box:hover {border-radius: 20px; }
.ql-box:hover > .ql-text {background-color: var(--dark-red);}
.ql-box:hover > img {transform: scale(1.05);}

#home-about {background-color: var(--black); color: var(--white); padding: 100px 0 0 0;}
.about-text {width: 90%; max-width: 1000px; display: flex; flex-direction: column; align-items: flex-start; gap: 50px; margin: 50px 0 50px 5%;}
.about-pics {display: flex; flex-direction: row; width: 100%; justify-content: space-around; align-items: center; gap: 25px; max-width: 1100px; margin: auto; }
.pics-half {display: flex; flex-direction: row; gap: 25px; justify-content: space-around; width: 100%;}
.pics-half img {object-fit: cover; object-position: center center; height: 300px; width: 200px; border-radius: 0 0 0 20px; border: 5px solid var(--red);}
.pics-half img:first-of-type {margin-top: 50px;}
.pics-half img:hover {transform: translateY(-50px);}
.diag-bkgd {background: url("../siteart/red-dash-white.svg"); background-size: cover; background-position: center center;}

#stats-section {background-color: var(--white); padding: 100px 0;}
.stats-text {display: flex; flex-direction: column; gap: 50px; justify-content: center; align-items: center; max-width: 700px; text-align: center; margin: 100px auto 150px auto;}
.stats {display: flex; flex-direction: row; justify-content: space-around; gap: 50px;}
.stats > div {display: flex; flex-direction: row; justify-content: space-around; width: 100%; gap: 50px;}
.stats > div > div {display: flex; flex-direction: column; align-items: center; gap: 25px;}

#red-section {background-color: var(--red);}
.diag-bkgd-red {background: url("../siteart/red-dash-red.svg"); background-size: cover; background-position: center center; width: 100%; height: 300px;}
.split-text {display: flex; flex-direction: column; width: 50%; gap: 50px;}
.red-fb {display: flex; flex-direction: row; justify-content: space-between; gap: 50px; padding-bottom: 50px;}
.photo-tiles {display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 25px; width: 50%; height: auto; overflow: hidden; margin-top: -100px;}
.photo-tiles > img {width: 100%; height: 100%; max-height: 400px; object-fit: cover;clip-path: polygon(0 calc(0% + 3vw), 100% 0, 100% 100%, 0 100%);}
.tiles-bttm-row {display: flex; flex-direction: row; gap: 25px;}
.tiles-bttm-row >img {width: 50%; height: auto; max-height: none; object-fit: cover;}

.black-banner { color: var(--white); background-color: var(--black); text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 25px; padding: 50px 0;}
#brandSwiper.swiper {width: 90%; height: 100%;}
#brandSwiper .swiper-slide img {display: block;width: 100%;height: 100%;object-fit: cover;}
#brandSwiper .swiper-button-next, #brandSwiper .swiper-button-prev {background-color: rgba(0,0,0,0.5); padding: 15px;}
.brandgrid-item { background: var(--red) !important; border: 3px solid var(--red); color: var(--white); text-align: center; padding: 40px 0; display: flex; flex-direction: column; align-items: center; border-radius: 0 0 0 20px;}
.brandgrid-item a {margin: 20px 0 0 0;}

/*=== ABOUT PAGE  
==============================*/

.stats-text.boxed {padding: 50px;}
#about-section {background-color: var(--black); color: var(--white); padding: 100px 0 0 0;}
#about-section .about-text > p {transition: opacity 180ms ease;}
#about-section .about-text > p.is-updating { opacity: 0.2; }
.subpage #stats-section {padding: 0;}
.stats-text > div {display: flex; flex-direction: column; gap: 40px; justify-content: center; align-items: flex-start; text-align: left;}
.stats-text > div > div {border-left: 5px solid var(--red); padding-left: 15px;}

.swiper {width: 100%;height: 100%;}
.swiper-slide {text-align: center;font-size: 18px;background: #444;display: flex;justify-content: center;align-items: center; height: 100%;}
.swiper-slide:hover {cursor: grab;}
.swiper-slide:active {cursor: grabbing;}
.swiper-slide img {display: block;width: 100%;height: 100%; max-height: 600px; object-fit: cover;}
.swiper {margin-left: auto;margin-right: auto;}    
.swiper-button-next {color: var(--white);background-color: var(--red); border-radius: 10px;}
.swiper-button-prev {color: var(--white);background-color: var(--red); border-radius: 10px;}
.swiper-pagination-bullet-active {background: var(--red);}

/*=== CONTACT PAGE  
==============================*/

#contact-form {display: flex; flex-direction: column; gap: 10px; font-size: var(--p); max-width: 100%;}
#contact-form label {display: none;}
#contact-form input {padding: 20px; width: 100%;}
#contact-form .input-row {display: flex; flex-direction: row; gap: 10px;}
#contact-form .dualFields {width: 50%;}
#contact-form textarea {width: 100%; height: 200px; border: none; font-family: var(--Inter); padding: 20px; font-size: var(--p);}
#contact-form input.submit:hover {cursor: pointer ;}

/*control the Captcha */
.CaptchaPanel {margin:0 0 0 0 !important;padding:0 0 0 0 !important;text-align: center;line-height:normal !important;}
.CaptchaImagePanel {margin:0 0 0 0;padding:0 0 0 0;}
.CaptchaMessagePanel {padding:0 0 0 0 !important;margin:0 0 0 0 !important;font-weight:normal !important;font-size:12px;line-height:14px;}
.CaptchaAnswerPanel {margin:0 0 0 0;padding:2px 0px 2px 0px !important;}
.CaptchaWhatsThisPanel {line-height:2;text-decoration: underline !important;margin:0 0 0 0;padding:8px 0 8px 0 !important;}
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;}

.location {position: relative; margin-top: clamp(-50px, -3vw, -10px); background-color: var(--white); z-index: 99; padding: 20px; display: flex; justify-content: center; align-items: center; gap: 50px;}
.location {font-size: var(--md-heading);}


/*=== FOOTER  
==============================*/

.scrolling-inv {border-top: 10px solid var(--black)}
.footer-fb {width: 90%; align-self: center; margin: auto; display: flex; flex-direction: row; justify-content: space-between; padding: 50px 0; gap: 50px;}
.footer-fb img { object-fit: contain;}
.footer-nav {width: 100%; align-self: center; margin: auto; display: flex; flex-direction: row; justify-content: flex-start; gap: 50px;}
.footer-nav ul {line-height: 2;}
.footer-nav ul li:first-of-type {Color: var(--red); }
.footer-nav ul li a:hover {text-decoration: underline;}
.footer-logo {height: 200px; width: auto;}
.footerCopyright {color: var(--white); background-color: var(--black); padding: 15px;}


/*=== 404 PAGE  
==============================*/

.text404 {display: flex; flex-direction: column; gap: 50px; max-width: 700px; line-height: 2; margin: 100px auto;}











/*=== MEDIA BREAKS 
============================================*/
@media screen and (max-width: 1500px) {
    .subpage .red-fb {flex-direction: column;}
    .subpage .red-fb > div {width: 100%;}
}
@media screen and (max-width: 1000px) {
    
    .home-hero-img {height: 100vh;}
    .inv-ql {position: relative; flex-direction: column;}
    .ql-box {width: 100%;}
    .ql-box img {max-height: 200px; object-fit: contain;}
    
    .about-pics {flex-direction: column; gap: 0;}
    .pics-half {justify-content: center;}
    #home-about .pics-half:last-of-type {display: none;}
    
    .stats {flex-direction: column;}
    
    .red-fb {flex-direction: column;}
    .red-fb > div {width: 100%;}
    .photo-tiles {margin-top: 50px;}
    
    .footer-fb {flex-direction: column-reverse;}
}
@media screen and (max-width: 700px) {
    #contact-form .input-row {flex-direction: column; width: 100%;}
    #contact-form .dualFields {width: 100%;}
}
@media screen and (max-width: 620px) {
    .footer-nav {flex-direction: column;}
}
@media screen and (max-width: 500px) {
    .about-pics {gap: 25px;}
    .pics-half {flex-direction: column; justify-content: center; align-items:center; }
    .pics-half img:first-of-type {margin: 0;}
    #home-about .pics-half img:last-of-type {display: none;}
    .stats > div {flex-direction: column;}
    
    
}