﻿/***** 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:#ccc 1px solid;}


/*---AESTHETIC--------------------------------*/

.white{
	color: #fff;
}
.light-red{
	color: #f51a19;
}
.red{
	color: #d40100;
}
.dark-blue{
	color: #031224;
}
.gold{
	color: #d2b026;
}
.gray{
	color: #999;
}
.yellow{
	color: #ffd739;
}
.green{
	color: #1ca328;
}
.tan{
	color: #fcecd7;
}
.rounded{
	border-radius: 30px;
	overflow: hidden;
}.cs-shadow{
	
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.full-circle{
	border-radius: 100%;
	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: #d40100;
	color: #fff;
}
.bg-black{
	background-color: #000;
	color: #fff;
}
.bg-tan{
	background-color: #fcecd7;
}
.bg-offwhite{
	background-color: #f2f8fd;
}

.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: max(60px, 5vw);
}
.pad-bottom{
	padding-bottom: max(60px, 5vw);
}

.pad-top-half{
	padding-top: max(30px, 2.5vw);
}
.pad-bottom-half{
	padding-bottom: max(30px, 2.5vw);
}
.cs-wrapper{
	padding-left:4vw;
	padding-right:4vw;
}
.cs-wrapper-extra{
	padding-left:8vw;
	padding-right:8vw;
}

/*---TEXT--------------------------------*/

.heading-xl, .heading-lg, .heading-md, .heading-sm, .heading-xs{
	font-family: "urw-din-semi-condensed", sans-serif;
	display: block;
}

.heading-xl{
	font-weight: 800;
	text-transform: uppercase;
	font-size: min(72px, 12vw);
	line-height: 0.93;
	letter-spacing: -0.025em;
	font-style: italic;
}
.heading-lg{
	font-weight: 800;
	text-transform: uppercase;
	font-size: min(48px, 8vw);
	line-height: 1;
	letter-spacing: -0.025em;
	font-style: italic;
}
.heading-md{
	font-weight: 800;
	font-size: min(30px, 6vw);
	line-height: 1.1;
	letter-spacing: -0.025em;
	font-style: italic;
}
.heading-sm{
	font-weight: 800;
	font-size: 18px;
	line-height: 1.1;
	letter-spacing: -0.025em;
	font-style: italic;
}
.heading-xs{
	margin: 25px 0;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.paragraph{	
	font-family: "urw-din-semi-condensed", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: normal;
}

.paragraph-xs, .paragraph-sm{	
	font-family: "urw-din-semi-condensed", sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.3;
}


/*---BUTTONS--------------------------------*/

.cta{
	display: inline-block;
	padding: 0 24px 0;
	line-height: 48px;
	position: relative;
	font-family: "urw-din-semi-condensed", sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	background-color: #d40100;
	text-align: center;
	border-radius: 90px;
    box-sizing: border-box;
}
.cta-white{
	background: #ffffff;
	color: #000;
}
.cta-black{
	background: #000;
	color: #fff;
}
.cta-tan{
	background: #fcecd7;
	color: #000;
}


/* CUSTOM */

.hero > a:before{
	content: '';
	position: absolute;
	background: linear-gradient(to top, #000, transparent);
	left: 0;
	right: 0;
	bottom: 0;
	top: 50%;
}
@media screen and (min-width: 1280px){

	.hero {
		display: flex;
	}
	.hero > a{
		display: flex;
		align-items: flex-end;
		min-height: calc(100vh - 230px);
		transition: ease all 0.5s;
		box-sizing: border-box;
		text-transform: uppercase;
		text-align: center;
		position: relative;
	}
	.hero > a div{
		display: block;
		position: relative;
		width: 100%;
		padding: 8% 8% calc(12% + 60px);
		box-sizing: border-box;
		transition: ease all 0.3s;
		background: linear-gradient(to top, #000, transparent);
	}
	.hero > a div:after{
		content: 'View Listings \2800\2192';
		display: block;
		text-align: center;
		color: #fff;
		font-weight: 400;
		font-family: "urw-din-semi-condensed", sans-serif;
		font-size: 14px;
		height: 0px;
		opacity: 0;
		transform: translateY(-10px);
		transition: ease all 0.3s;
	}
	.hero > a:hover div:after{
		opacity: 1;
		transform: translateY(0);
	}
	.hero > a:hover{
		width: 50%;
	}
	.hero > a:hover div{
		font-size: 24px;
	}
}

@media screen and (max-width: 1279px) and (min-width: 992px){

	.hero {
		display: flex;
		flex-wrap: wrap;
		padding: 12px 12px 60px;
		background: #000;
		gap: 12px;
	}
	.hero > a{
		width: calc(50% - 6px);
		display: flex;
		align-items: flex-end;
		min-height: 200px;
		transition: ease all 0.5s;
		box-sizing: border-box;
		text-transform: uppercase;
		text-align: center;
		position: relative;
		border-radius: 15px;
	}
	.hero > a div{
		display: block;
		position: relative;
		width: 100%;
		padding: 8% 8%;
		box-sizing: border-box;
		transition: ease all 0.3s;
		background: linear-gradient(to top, #000, transparent);
	}
}
@media screen and (max-width: 991px){

	.hero {
		display: flex;
		flex-wrap: wrap;
		padding: 12px 12px 60px;
		background: #000;
	}
	.hero > a{
		width: 100%;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		min-height: 100px;
		transition: ease all 0.5s;
		box-sizing: border-box;
		text-transform: uppercase;
		text-align: center;
		position: relative;
		background-size: 50% auto;
		background-position: left center;
		border-radius: 15px;
		margin-bottom: 12px;
		overflow: hidden;
	}	
	.hero > a div{
		font-size: 18px;
		min-height: 100px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 50%;
		padding: 30px 4%;
		box-sizing: border-box;
		transition: ease all 0.3s;
		background: #ffd739;
		color: #000;
	}
}


.offset-up{
	transform: translateY(-50%);
}
.form-offset-up{
	margin-top: -60px;
}
.cs-card{
	padding: 30px;
}
.cs-card.bg-offwhite.rounded{
    height: calc(100% - 20px);
    box-sizing: border-box;
}
/*--------FORM STYLES--------------------*/

		#multiStepForm {
			position: relative;
			display: block;
		  	margin: 0 auto;
			font-family: "urw-din-semi-condensed", sans-serif;
			padding: 4vw;
			border-radius: 30px;
			background-color: #fcecd7;
			color: #000;
		}
		#multiStepForm .nav-buttons {
			margin-left: 1px;
			display: flex; gap: 10px;
			
		}

		#multiStepForm .pagination-labels{
			display: flex;
			justify-content: space-around;
		}
		#multiStepForm .pagination-labels > div{
			width: 100%;
			text-align: center;
			letter-spacing: normal;
			margin: 0;
			opacity: 0.7;
			font-weight: 400;
			margin-bottom: -10px;
			margin-top: 10px;
			font-size: 12px;
		}
		#multiStepForm .swiper-pagination{
			display: flex;
			gap: 0;
			position: relative;
			margin-top: 30px;
			margin-bottom: 30px;
			border-radius: 90px;background-color: #999 !important;
		}
		#multiStepForm .swiper-pagination:after {
			position: absolute;
			right: 0;
			top: 50%;
			transform: translateY(-50%);
			font-size: 24px;
			content: "\f058";
			font-weight: 900;
			font-family: 'Font Awesome 6 Free';
			background: #fff;
			border-radius: 100%;
			color: #006ad1;
		}
		#multiStepForm .form-swiper .heading-md{
			margin-bottom: 12px;
		}
		#multiStepForm .swiper-pagination > .swiper-pagination-bullet{
			width: 100%; margin: 0;
			border-radius: 0;
			background-color: dodgerblue !important;
    		opacity: 1;
			transform: scaleX(1);
			transition: transform ease 0.3s;
			transform-origin: left;
		}
		#multiStepForm .swiper-pagination > .swiper-pagination-bullet:first-child{
			border-radius: 90px 0 0 90px;
		}
		#multiStepForm .swiper-pagination > .swiper-pagination-bullet:last-child{
			border-radius: 0 90px 90px 0 ;
		}
		#multiStepForm .swiper-pagination > .swiper-pagination-bullet-active ~ .swiper-pagination-bullet{

			transform: scaleX(0);
		}

		.form-swiper button {
		  margin-top: 1.5rem;
		  border: none;
		  border-radius: 4px;
		  cursor: pointer;
		  background: #2563eb;
		  color: #fff;
			transition: ease all 0.2s;
		}
		.form-swiper button:hover {
		  background: #2563eb;
		}
		.form-swiper button.prev-btn {
		  background: #6b7280;
		}
		.form-swiper button.prev-btn:hover {
		  background: #6b7280;
		}
		.form-swiper .submit-btn {
		  background: #16a34a;
		}
		.form-swiper .submit-btn:hover {
		  background: #16a34a;
		}

.checkbox-tag{
	
    margin-top: 4px;
    background: #2f2f83;
    color: #fff;
    padding: 6px 2px 0;
    border-radius: 100px;
    width: 120px;
    justify-content: center;
	font-size: 18px;
	font-weight: 700;
}
.checkbox-tag label{
	margin-bottom: 8px;
}
.checkbox-tag input{
	border-radius: 100%;
}
.custom-form input, .custom-form select{
	padding: 10px;
	font-weight: 300;
	font-size: 14px;
	color: #000;
	line-height: 24px;
	resize: none;
	outline: none;
	border: none;
	box-sizing: border-box;
	width: 100%;
	background: #f3e2cc !important;
	border-radius: 10px;
	margin-bottom: 10px;    
	font-family: "urw-din-semi-condensed", 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: #000;
	line-height: 24px;
	resize: none;
	margin-bottom: 10px;
	border: none;

	background: #f3e2cc !important;
	border-radius: 10px;

	outline: none;
	font-family: "urw-din-semi-condensed", sans-serif !important;
}


#formcaptcha {
    position: absolute;
    left: 4vw;
    top: calc(100% - 4vw - 72px);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
	background: #fff6e8;
	z-index: 100;
    width: 215px;
}
#formcaptcha button {
	border: unset;
	outline: unset;
	appearance: none;
	cursor: pointer;
	border-radius: 8px;
	margin-top: 12px;
}
#formcaptcha i {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 18px;
	text-align: center;
	font-size: 18px;
	color: #555;
	cursor: pointer;
	padding: 4px;
	background: #ececec;
	border-radius: 4px;
}
.CaptchaPanel{
	margin: 0 !important;
	padding: 0 !important;
	text-align: left !important;
	font-family: "urw-din-semi-condensed", sans-serif !important;
}
.CaptchaPanel img{
	border: unset !important;
	border-radius: 10px;
	width: 100%;
}
.CaptchaPanel, .CaptchaAnswerPanel, .CaptchaImagePanel, .CaptchaMessagePanel{
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.CaptchaWhatsThisPanel a{
	color: #535b65 !important;
}
.CaptchaMessagePanel, .CaptchaWhatsThisPanel{
	padding: 0 !important;
	font-size: 12px;
}


/*-------- FOOTER STYLES ----------------*/

.cs-footer{
	background: #000;
	color: #fff;
}

.cs-footer a{
	color: #fff;
}

.cs-footer-text{
	font-family: "urw-din-semi-condensed", sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	background: #191a1b;
	color: #cdcece;
	padding: 30px 0;
}
.cs-footer-text a{
	color: #cdcece;
}
.link-list li{
	padding-bottom: 2px;
	margin-bottom: 3px;
}

.icon-list li{
	position: relative;
	padding-left: 40px;
	margin-bottom: 18px;
}
.icon-list li i{
	position: absolute;
	left: 0;
	top: 3px;
	width: 24px;
	text-align: center;
}
.cs-footer .cs-hours-dropdown{
	width: 250px;
	max-width: 90%;
}
.cs-footer .cs-hours-time{
	font-weight: 700;
	float: right;
}
/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 767px) {
	.cs-wrapper-extra, .cs-wrapper{
		padding-left: 4vw;
		padding-right: 4vw;
	}
	.custom-form .flex{flex-wrap: wrap; gap: 0px;}

}






