﻿/***** BEGIN RESET *****/

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

body {

}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


/*---AESTHETIC--------------------------------*/

.white{
	color: #fff;
}
.light-gray{
	color: #e1e0e0;
}
.dark-gray{
	color: #222529;
}
.red{
	color: #a1221c;
}
.gray{
	color: #686d75;
}
.rounded{
	border-radius: 10px;
	overflow: hidden;
}
.bg-img{
	background-size: cover;
	background-position: center center;
}
.bg-tl{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: top left;
	background-repeat: no-repeat;
}
.bg-tr{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: top right;
	background-repeat: no-repeat;
}
.bg-bl{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: bottom left;
	background-repeat: no-repeat;
}
.bg-br{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: bottom right;
	background-repeat: no-repeat;
}

.bg-red{
	background-color: #a1221c;
	color: #fff;
}
.bg-light-gray{
	background-color: #ededed;
	color: #222529;
}
.bg-gray{
	background-color: #686d75;
	color: #fff;
}
.bg-dark-gray{
	background-color: #222529;
	color: #fff;
}

.hero.bg-overlay{
	position: relative;
}
.hero.bg-overlay:before{
	position: absolute;
	pointer-events: none;
	content: '';
	left: 0;
	right: 50%;
	top: 0;
	bottom: 0;
	opacity: 0.8;
	background: linear-gradient(to right, #031224, transparent);
}

/*---STRUCTURE--------------------------------*/

.relative{
	position: relative;
}
.pad-top{
	padding-top: min(100px, 10vw);
}
.pad-bottom{
	padding-bottom: min(100px, 10vw);
}

.pad-top-half{
	padding-top: 30px;
}
.pad-bottom-half{
	padding-bottom: 30px;
}
.cs-wrap{
	padding-left:4.1665vw;
	padding-right:4.1665vw;
}
/*---TEXT--------------------------------*/

.heading-xl, .heading-lg, .heading-md, .heading-sm, .heading-xs{
	font-family: paralucent, sans-serif;
	display: block;
}

.heading-xl{
	font-weight: 700;
	font-size: min(72px, 5vw);
	line-height: 0.93;
	letter-spacing: normal;
}
.heading-lg{
	font-weight: 700;
	font-size: min(36px, 5vw);
	line-height: 1;
	letter-spacing: normal;
}
.heading-md{
	font-weight: 700;
	font-size: min(30px, 6vw);
	line-height: 1.1;
	letter-spacing: normal;
}
.heading-sm{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: 0.025em;
}
.heading-xs{
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.paragraph{	
	font-family: paralucent, sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 0.025em;
}
.paragraph-sm{	
	font-family: paralucent, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.025em;
}
.paragraph strong, .paragraph-sm strong{
	font-weight: 700;
}

/*---BUTTONS--------------------------------*/

.cta{
	display: inline-block;
	padding: 0 0 0 0;
	line-height: 48px;
	width: 240px;
	max-width: 100%;
	position: relative;
	font-family: paralucent, sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	background-color: #a1221c;
	text-align: center;
	border-radius: 90px;
    box-sizing: border-box;
}
.cta-white{
	background: #fff;
	color: #222529;
}
.cta-outline{
	background: transparent;
	border: solid 1px #686d75;
	color: #222529;
}

.bg-red .cta-outline{
	background: transparent;
	border: solid 1px #fff;
	color: #fff;
}


/*--------FORM STYLES--------------------*/

.custom-form input{
	letter-spacing: 0.025em;
	padding: 10px;
	font-weight: 300;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	outline: none;
	border: none;
	background: #ededed;
	box-sizing: border-box;
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;    
	font-family: paralucent, sans-serif !important;
}
.custom-form input[type="radio"], .custom-form input[type="checkbox"]{
	width: 24px;
}
.custom-form .flex{
	gap: 10px;
	display: flex;
}
.custom-form textarea{
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-weight: 300;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	margin-bottom: 10px;
	border-radius: 10px;
	outline: none;
	border: none;
	background: #ededed;
	letter-spacing: 0.025em;
	font-family: paralucent, sans-serif !important;
}

.custom-form button{
	border: none !important;
}

.CaptchaPanel{
	text-align: left !important;
	font-family: paralucent, sans-serif !important;
}
.CaptchaPanel img{
	border: unset !important;
	border-radius: 10px;
}
.CaptchaPanel, .CaptchaAnswerPanel, .CaptchaImagePanel, .CaptchaMessagePanel{
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.CaptchaWhatsThisPanel a{
	color: #535b65 !important;
}

/* CUSTOM */

  #cs-countdown {
	  min-height: 120px;
	  align-items: center;
	  background: #222529;
	  color: #fff;
	  padding: 20px;
    font-family: paralucent, sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: space-around;
	  gap: 20px;
  }
  #cs-countdown .countdown-box-group {
	  display: flex; justify-content: center;
	  gap: 10px;
	  flex-wrap: wrap;
	}
  #cs-countdown .countdown-box {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-direction: column;
	  text-align: center;
	  padding: 12px;
	  border-radius: 5px;
	  background: #424952;
	  width: 100px;
	  height: 100px;
	  box-sizing: border-box;
  }
  #cs-countdown .countdown-box span:nth-of-type(1){
	  animation-name: counterFadeIn;
	  animation-duration: 1s;
	  animation-fill-mode: forwards;
	  animation-iteration-count: 1;
	  opacity: 0;
  }
  #cs-countdown .countdown-box:nth-of-type(1) span:nth-of-type(1) {
	  animation-delay: 0s;
  }
  #cs-countdown .countdown-box:nth-of-type(2) span:nth-of-type(1) {
	  animation-delay: 0.05s;
  }
  #cs-countdown .countdown-box:nth-of-type(3) span:nth-of-type(1) {
	  animation-delay: 0.1s;
  }
  #cs-countdown .countdown-box:nth-of-type(4) span:nth-of-type(1) {
	  animation-delay: 0.15s;
  }
  #cs-countdown .countdown-box span:nth-of-type(1) {
	  font-size: 30px;
	  color: #fff;
	  display: block;
  }
  #cs-countdown .countdown-box span:nth-of-type(2) {
	  font-size: 12px;
	  text-transform: uppercase;
	  letter-spacing: 0.2em;
	  color: #fff;
	  opacity: 0.8;
	  display: block;
  }

@keyframes counterFadeIn{
	from{opacity: 0;}
	to{ opacity: 1;}
}

@media only screen and (max-width: 1439px){
	#cs-countdown{
		min-height: unset;
	}
	  #cs-countdown .countdown-box {
		  padding: 8px;
        width: 70px;
        height: 70px;
	  }
	  #cs-countdown .countdown-box span:nth-of-type(2) {
		  font-size: 9px;
	  }
	  #cs-countdown .cta.cta-white {
		  display: none;
	  }
		.cta{
			line-height: 40px;
			width: 180px;
			font-size: 16px;
		}
		.cta-lg{
			line-height: 48px;
			width: 240px;
			font-size: 18px;
		}
}
@media only screen and (max-width: 575px){
	#cs-countdown{
		padding-top: 40px;
		padding-bottom: 40px;
	}
}


.mv-search{
    display: flex;
    border-radius: 5px;
	position: relative;
}
	
.search-toggle.open i:before{
	content: "\f00d";
}
.mv-search form{
	width: 100%;
	margin: 0 !important;
}
.mv-search input{
	-webkit-transition: background-color .25s ease-in-out;
    -o-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
    width: 100%;
	box-sizing: border-box;
    height: 48px !important;
	font-family: paralucent, sans-serif;

    font-size: 16px;
	font-weight: 300;
    line-height: 48px !important;
    color: #222529;
	background: #ededed;
    text-transform: none;
	letter-spacing: 0.025em;
    padding-right: 20px;
    border: none;
    border-radius: 5px;
    padding-left: 20px;
}
.mv-search button{
	font-family: paralucent, sans-serif;
    position: absolute;
    width: 48px !important;
    height: 48px !important;
    text-align: center;
    border: none;
    padding: 0 10px 0 0;
    font-size: 16px;
	appearance: none;
	outline: none;
	right: 0;
	top: 0;
	background: unset;
	cursor: pointer;
	color: #a1221c;
}

.cs-contact-card{
	background: #222529;
	color: #fff;
	padding: 25px;
	border-radius: 10px;
	box-sizing: border-box;
	width: calc(50% - 30px);
	min-width: 210px;
}
.cs-contact-card img{
	max-width: 100%;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.cs-contact-card a{
	color: #fff;
}

/*-------- FOOTER STYLES ----------------*/
.cs-footer ul li a{
	color: #222529;
	transition: ease all 0.2s;
}
.cs-footer ul li a:hover{
	color: #a1221c;
}


/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (min-width: 1440px) {

	.hero > .col-row{
		min-height: calc(100vh - 252px);
	}
	

	.cta-lg{

		padding: 10px;
		font-size: 24px;
	}

	
}
@media only screen and (max-width: 1439px) {

	.cs-header {
		padding: 0px 4.1567vw;
	}
	.cs-header > a > img {
		width: 300px;
	}
	.hero > .col-row{
		min-height: calc(100vh - 100px);
	}
}
@media only screen and (max-width: 767px) {
	
	.hero > .col-row{
		min-height: calc(100vh - 332px);
	}
	
	.hero{
		position: relative;
		
	}
	.hero div{
		position: relative;
		
	}
	.hero:before{
		position: absolute;
		content: '';
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(255,255,255,0.77);
		
	}
	.custom-form .flex{flex-wrap: wrap; gap: 0px;}

	.heading-xl{
		font-size: 30px;
	}
	.hero .heading-lg{
		font-size: 40px;
	}
	.heading-lg{
		font-size: 24px;
	}
	.heading-md{
		font-size: 24px;
	}
}






