﻿/***** 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;  
} 


.big-numbers-list{
	list-style: decimal-leading-zero;
    list-style-position: inside;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.big-numbers-list:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: solid 1px #fff;
}
.big-numbers-list ::marker{
	font-size: 54px;
	font-weight: 900;
	color: #999;
	z-index: -1;
}
.big-numbers-list li{
	padding: 20px;
	font-size: 18px;
	box-sizing: border-box;
	width: 33.33333%;
	min-height: 140px;
	border: solid 1px #fff;
	border-style: outset;
}
.big-numbers-list li span{
	opacity: 0.9;
	font-weight: 300;
	text-transform: capitalize;
    display: block;
    float: right;
    width: calc(100% - 80px);
    padding: 25px 0;
}

@media screen and (max-width: 1023px){

	.big-numbers-list li{
		width: 50%;
	}
}

@media screen and (max-width: 767px){

	.big-numbers-list li{
		width: 100%;
	}
}
/*-------- 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:#eee 1px solid;}

/*--- HEADER STYLES ---------------------*/
header {}
.b-header{
	display: flex;
	align-items: center;
}


.rf-breadcrumbs{
	padding: 3.55% 3.55% 0 !important;
	margin-bottom: -3.55%;
	font-family: "urw-din-semi-condensed", sans-serif;
	font-size: 14px !important;
	color: #000 !important;
	z-index: 100;
	position: relative;
}
.rf-breadcrumbs a {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 5px;
	border: solid 1px #eee;
	background: #fff;
	font-size: 14px !important;
}
.hero{
	background-color: #000;
	min-height: 60vh;
}
.hero > div{
	padding: 6% 0;
}

.b-social{
	display: flex;
	position: absolute;
    top: 60px;
	right: 0;
	width: 200px;
	box-shadow: 0 0 8px 0 rgba(0,0,0,0.33);
	border-radius: 5px;
	background: #fff;
	justify-content: space-around;
}
.b-social a{
	padding: 0 !important;
    line-height: 48px !important;
}
.b-search{
	display: flex;
	position: absolute;
    top: 60px;
	right: 0;
	width: 240px;
	box-shadow: 0 0 8px 0 rgba(0,0,0,0.33);
	border-radius: 5px;
}
.b-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: calc(100% - 56px);
    height: 40px !important;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 1.2 !important;
    color: #777778;
    text-transform: none;
	font-family: "urw-din-semi-condensed", sans-serif !important;
    letter-spacing: 0em;
    padding-right: 10px !important;
    border: none !important;
    border-bottom-left-radius: 5px !important;
    border-top-left-radius: 5px !important;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px !important;
	box-sizing: border-box;
}
.b-search button{
	-webkit-transition: color .25s ease-in-out;
    -o-transition: color .25s ease-in-out;
    transition: color .25s ease-in-out;
    text-transform: uppercase;
	font-family: "urw-din-semi-condensed", sans-serif;
    float: right;
    width: 56px;
    height: 40px;
    text-align: center;
    border: none;
    padding: 0;
    font-weight: 800;
    font-size: 14px;
    color: #ffffff;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #ac202d;
	appearance: none;
	outline: none;
	cursor: pointer;
}



/*---BODY--------------------------------*/
.mobile-wrapper{
	max-width: calc(100% - 50px);
	margin: 0 auto;
}
.content-wrapper{
	padding: 20px;
	box-sizing: border-box;
	margin: 0 auto;
	display: block;
	width: 1440px;
	max-width: 100%;
}
.flex{display: flex;}
.flex-wrap{flex-wrap: wrap;}
.justify-between{justify-content: space-between;}
.align-center{
	align-items: center;
}
.padding-top{
	padding-top: 7%;
}
.padding-bottom{
	padding-bottom: 7%;
}
.red{
	color: #ac202d;
}
.bg-red{
	background: #ac202d;
	color: #fff;
}
.bg-gray{
	background: #262626;
	color: #fff;
}
.bg-black{
	background: #000;
	color: #fff;
}

.bg-white, .b-header, .b-footer{
	font-family: "urw-din-semi-condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.bg-black p, .bg-gray p, .p{
	font-family: "urw-din-semi-condensed", sans-serif;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 400;
	opacity: 0.9;
}

.bg-white p {
	font-family: "urw-din-semi-condensed", sans-serif;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 400;
	opacity: 0.9;
}

.heading-banner{
	font-family: "urw-din-semi-condensed", sans-serif;
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: 9vw;
    line-height: 0.9;
	display: inline-block;
	margin: 0;
	position: relative;
    padding: 0px 10px 10px;
	color: #fff;
	z-index: 10;
}
.heading-banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    left: -100%;
    bottom: 0;
    background: #ac202d;
    z-index: -1;
    transform: skewX(-10deg);
    border-radius: 5px;
}
.offset-left{
	padding-left: 8.3%;
}
.heading-lg{
	font-family: "urw-din-semi-condensed", sans-serif;
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: 48px;
    line-height: 1.1;
	display: block;
	margin: 0 0 10px;
}
.heading-md{
	font-family: "urw-din-semi-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: 30px;
    line-height: 1.1;
	display: block;
	margin: 0 0 10px;
	
}
.heading-sm{
	font-family: "urw-din-semi-condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 18px;
    line-height: 1.2;
	display: block;
	
}
.heading-xs{
	
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.border-left{
    padding-left: 25px;
    border-left: solid 4px #ac202d;
    padding-right: 25px;
    height: calc(100% - 20px);
}


.bg-white .btn-pill {
    width: 260px;
	border-color: #ac202d;
	color: #ac202d;
}
.btn-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 260px;
    padding: 12px 25px;
    border-radius: 90px;
    border: solid 1px #000;
	font-family: "urw-din-semi-condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
    font-size: 24px;
    box-sizing: border-box;
}
.btn-pill span {
    flex-grow: 0.7;
    text-align: center;
}
.btn-pill i{
	float: right;
}

.btn-simple{
    justify-content: space-between;
    align-items: center;
	font-family: "urw-din-semi-condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
    font-size: 18px;
    box-sizing: border-box;
	color: #90ebff;	
	transition: ease all 0.2s;
	filter: brightness(1);
	
}
.bg-white .btn-simple{
	color: #00b4ff;	
}
.btn-simple i{
	padding-right: 10px;
}

.btn-simple:hover {
	filter: brightness(1.1);
}
.btn-banner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 8.3%;
	gap: 20px;
	align-items: center;
}

.btn-banner.just-center {
	justify-content: center !important;
}
.btn-banner .heading-lg{
	margin: 0;
}

.fb-banner-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
    width: 100%;
}

.fb-banner-center {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.fb-banner-center > .heading-md {
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
}

.fb-banner-center > .heading-sm {
/*    font-size: 24px;*/
/*    font-style: italic;*/
/*    font-weight: 600;*/
    margin-top: 15px;
}

.bg-black .btn-pill {
    border-color: #fff;
}

.fb-banner-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
}

.fb-banner-right  img {
    width: clamp(200px, 25vw, 500px);
}
.fb-banner-left  img {
    width: clamp(200px, 25vw, 500px);
}
.fb-banner-center  img {
    width: clamp(200px, 25vw, 500px);
}

.bg-gray .btn-pill, .hero .btn-simple{
	color: #90ebff;
	border-color: #90ebff;
}
.bg-red .btn-pill{
	border-color: #fff;
}


.bg-img{
	background-position: center center; 
	background-size: cover;
}


.cta-row{
	display: flex; flex-wrap: wrap;
	margin: -160px 0 0;
	padding: 30px;
	position: relative;
}
.cta-row:before{
	content: '';
	z-index: -1;
	position: absolute;
	left: 0;
	right: 0;
	top: -100px;
	bottom: 0;
	background: #000;
}
.cta-row a  {
	transition: ease all 0.3s;
}
.cta-row a:hover  {
	transform: translateY(-20px);
	filter: brightness(1.2);
}
.cta-row a > div {
    margin: 10px;
    border-radius: 10px;
    color: #fff;
    padding: 11vw 25px 25px;
}

.social-btns{
		display: flex;
		flex-wrap: wrap;
		z-index: 10;
	}
	.social-btns a{
		line-height: 48px;
		width: 48px;
		text-align: center;
		font-size: 18px;
		align-items: center;
		height: 48px;
		font-weight: 400;
		display: flex;
		justify-content: center;
		color: #fff;
		-moz-border-radius: 100%;
		-o-border-radius: 100%;
		-webkit-border-radius: 100%;
		border-radius: 100%;
	}
	.social-btns.outline a{

		background: none !important;
		color: #000;
		border: solid 1px #b2b2b2;
	}


.brands-carousel a{
	padding: 30px 20px;
	border: solid 1px #e7e7e7;
	box-sizing: border-box;
	border-radius: 5px;
	margin: 10px;
	text-align: center;
}

.brands-carousel a img{
	max-width: 100%;
	margin: 0 auto;
}

.brands-grid{
	display: flex;
	flex-wrap: wrap;
}
.brands-grid a{
	padding: 30px 20px;
	border: solid 1px #e7e7e7;
	box-sizing: border-box;
	border-radius: 5px;
	margin: 10px;
	text-align: center;
	flex-grow: 1;
}

.brands-grid a img{
	max-width: 100%;
	margin: 0 auto;
}


.panel{
	
	border-radius: 10px;
	padding: 32px 24px;
	background: #262626;
	color: #fff;
}
.panel .btn-pill{
	border-color: #90ebff;
	color: #90ebff;
}
.custom-accordion{
	border-radius: 10px;
	overflow: hidden;
}

.custom-accordion > a{
	padding: 32px 24px;
	background: #262626;
	color: #fff;
	display: block;
	
	
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.05em;
	font-weight: 500;
	transition: ease all 0.2s;
}

.custom-accordion > a:hover{
	background: #363636;
}


.custom-accordion > a i{
	color: #e02032;
	padding-right: 14px;
}

.custom-accordion > .drop-list{
	padding: 32px 24px;
	background: #000;
	color: #fff;
	display: block;
}
.custom-accordion .click.open i:before{
    content: "\f068";
}

.custom-accordion ul li{padding: 10px; border-bottom: solid 1px #333;}


	/* TEAM */


	.team-box{
	
		font-weight: 300;
		border-radius: 5px;
		display: block;
		margin: 10px;
		font-size: 18px;
		overflow: hidden;
    	box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px;
		transition: ease all 0.2s;
	}
	.team-box .heading-md{
	font-size: 18px;
		margin-bottom: 0;
	}
	.team-box .col-row > div:last-child{
		padding: 20px;
		box-sizing: border-box;
	}
	.team-box > p{margin: 0 !important;}
	.team-box:hover{
		box-shadow: 0 0 12px rgba(0,0,0,0.3);
	}
	.teams-tabs{
		display: flex; flex-wrap: wrap; gap: 10px;
		margin-bottom: 20px;
	}
	.teams-tabs button{
		display: inline-block;
		padding: 14px 24px;
		border-radius: 100px;
		color: #000;
		border: solid 1px #eee;
		font-size: 14px;
	}
.team-popup-padding .heading-md{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.team-popup-padding .heading-md i{
	font-size: 18px;
    margin-bottom: 7px;
	margin-right: 10px;
	position: relative;
	height: 30px;
	width: 30px;
	border-radius: 100%;
	border: solid 1px #e51839;
	display: flex;
	justify-content: center;
	align-items: center;
}
	.teams-tabs button.active {
		background: #e51839;
		color: #fff;
		border-color: #e51839;
	}

	
	.teams-tabs-content .team-grid{
		display: none;
	}
	.teams-tabs-content .team-grid.active{
		display: flex;
		flex-wrap: wrap;
		clear: both;
		position: relative;
	}
	
	.team-info-btn, .team-box a, .team-popup a{

		background: unset;

		cursor: pointer;
		font-size: 18px !important;
		line-height: 24px !important;

		font-style: normal !important;
		padding-left: 0 !important;
		box-shadow: none !important;

		width: 200px;
		max-width: 100%;
		text-align: left;
		border: none !important;
		outline: none !important;
		position: relative;
	}
	.team-info-btn:hover, .team-box a:hover{

		color: #000 !important;
	}


/*--------FORM STYLES--------------------*/



.custom-form ::placeholder{
	color: #B9B9B9 !important;
}
.custom-form input, .custom-form select{
	padding: 10px;
	font-weight: 400;
	font-size: 14px;
	color: #eee;
	line-height: 24px;
	resize: none;
	outline: none;
	border: none;
	border-radius: 10px;
	background: #333;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 20px;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: 20px;
	display: flex;
}
.custom-form button{
	background: transparent;
	cursor: pointer;
}
.custom-form textarea{
	width: 100%;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 10px;
	font-weight: 400;
	font-size: 14px;
	color: #eee;
	line-height: 24px;
	resize: none;
	margin-bottom: 20px;
	outline: none;
	border: none;
	background: #333;font-family: "urw-din-semi-condensed", sans-serif !important;
}

.CaptchaPanel{
	text-align: left !important;
}
.CaptchaPanel img{
	border-radius: 5px;
}
.CaptchaPanel, .CaptchaAnswerPanel, .CaptchaImagePanel, .CaptchaMessagePanel{
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.CaptchaWhatsThisPanel a{
	color: #eee !important;
}

.red-shadow{
	box-shadow: 12px 12px 0 0 #ac202d;
}


/*-------- FOOTER STYLES ----------------*/
footer{}
.bg-black .red, .panel .red{
	color: #e02032;
}
.b-footer-locations > a{
	display: block;
	padding: 30px 0;
	color: #fff;
}
.bg-white .b-footer-locations > a{
	color: #000;
}
.b-footer-locations h6{
	margin: 0 !important;
}
.b-footer-locations p{
	font-size: 16px;
}
.b-footer-locations i{
	font-size: 28px;
}
.b-footertext{
	padding: 40px;
	color: #cbcbcb;
	border-top: solid 1px #616161;
}
.b-footertext a{
	color: #cbcbcb;
}
/* COLUMNS */

.col-row{display: flex; flex-wrap: wrap; position: relative;}

@media (max-width: 1440px) and (min-width: 1024px){
	
	.hero > div{
		padding: 4.165% 0;
	}
	.hero{
		min-height: 74vh;
	}
	.cta-row a > div {
		padding: 4vw 25px 25px;
	}
	.heading-md{
		font-size: 24px;

	}

}
@media (max-width: 1023px){
	
	.hero{min-height: unset !important;}
	.cta-row{
		margin: -4.165% 0 0;
	}	.hero > div{
		padding: 4.165% 0;
	}

}
@media (min-width: 1200px){
	.col-lg-12{
		width: 100%;
	}
	.col-lg-11{
		width: 91.66667%;
	}
	.col-lg-10{
		width: 83.33333%;
	}
	.col-lg-9{
		width: 75%;
	}
	.col-lg-8{
		width: 66.666667%;
	}
	.col-lg-7{
		width: 58.333333%;
	}
	.col-lg-6{
		width: 50%;
	}
	.col-lg-5{
		width: 41.66667%;
	}
	.col-lg-4{
		width: 33.33333%;
	}
	.col-lg-3{
		width: 25%;
	}
	.col-lg-2{
		width: 16.66667%;
	}
	.col-lg-1{
		width: 8.33333%;
	}
	.col-lg-half{
		width: 4.165%;
	}
	.col-lg-hidden{display: none !important;}
}
@media (min-width: 992px) and (max-width: 1199px){
	
	.col-md-12{
		width: 100%;
	}
	.col-md-11{
		width: 91.66667%;
	}
	.col-md-10{
		width: 83.33333%;
	}
	.col-md-9{
		width: 75%;
	}
	.col-md-8{
		width: 66.666667%;
	}
	.col-md-7{
		width: 58.333333%;
	}
	.col-md-6{
		width: 50%;
	}
	.col-md-5{
		width: 41.66667%;
	}
	.col-md-4{
		width: 33.33333%;
	}
	.col-md-3{
		width: 25%;
	}
	.col-md-2{
		width: 16.66667%;
	}
	.col-md-1{
		width: 8.33333%;
	}
	.col-md-half{
		width: 4.165%;
	}
	.col-md-hidden{display: none !important;}
}
@media (min-width: 768px) and (max-width: 991px){
	
	.col-sm-12{
		width: 100%;
	}
	.col-sm-11{
		width: 91.66667%;
	}
	.col-sm-10{
		width: 83.33333%;
	}
	.col-sm-9{
		width: 75%;
	}
	.col-sm-8{
		width: 66.666667%;
	}
	.col-sm-7{
		width: 58.333333%;
	}
	.col-sm-6{
		width: 50%;
	}
	.col-sm-5{
		width: 41.66667%;
	}
	.col-sm-4{
		width: 33.33333%;
	}
	.col-sm-3{
		width: 25%;
	}
	.col-sm-2{
		width: 16.66667%;
	}
	.col-sm-1{
		width: 8.33333%;
	}
	.col-sm-hidden{display: none !important;}
	
	.sm-reverse{flex-direction: column-reverse;}
	.col-row{padding: 0 20px;}
}
@media (max-width: 767px){
	.col-xs-11{
		width: 91.66667%;
	}
	.col-xs-10{
		width: 83.33333%;
	}
	.col-xs-9{
		width: 75%;
	}
	.col-xs-8{
		width: 66.666667%;
	}
	.col-xs-7{
		width: 58.333333%;
	}
	.col-xs-6{
		width: 50%;
	}
	.col-xs-5{
		width: 41.66667%;
	}
	.col-xs-4{
		width: 33.33333%;
	}
	.col-xs-3{
		width: 25%;
	}
	.col-xs-2{
		width: 16.66667%;
	}
	.col-xs-1{
		width: 8.33333%;
	}
	.col-sm-12, .col-xs-12{width: 100%;}
	.col-xs-hidden{display: none !important;}
	.xs-reverse{flex-direction: column-reverse;}
	.col-row{padding: 0 20px;}
	.custom-form .flex{flex-wrap: wrap; gap: 0px;}
	.hero{
		    min-height: 60vh;
	}
	.hero-text{
		padding-right: 20px !important;
	}
	
	.heading-banner{
        font-size: 48px;
		padding-bottom: 5px;
	}
	.heading-sm{
		font-size: 16px;
	}
	.heading-lg{
        font-size: 32px;
	}
	.heading-md{
		font-size: 24px;
	}
}




