﻿
@font-face {
  font-family: 'volvo-broad-pro-digital';
  src:
    url('../webfonts/VolvoBroadProDigital.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F, U+20A0-20CF;
}
@font-face {
  font-family: 'volvo-novum';
  src:
    url('../webfonts/VolvoNovum-Regular-core.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F, U+20A0-20CF;
}
@font-face {
  font-family: 'volvo-novum';
  src:
    url('../webfonts/volvo-novum-semi-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F, U+20A0-20CF;
}

@font-face {
  font-family: 'volvo-novum';
  src:
    url('../webfonts/VolvoNovum-Medium-core.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F, U+20A0-20CF;
}


/***** 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: #141414; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #141414;
    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:#141414 1px solid;}


/* HEADER */
.cs-header{
	top: 0;
	position: relative;
	background: #fff;
	height: 64px;
	z-index: 100;
	transition: ease all 0.3s;
}
.cs-header > div.primary-nav{
	
	display: flex;
	align-items: center;
	justify-content: space-between;
	
	padding-left:30px;
	padding-right:30px;
	max-width: 1280px;
	margin: 0 auto;
    height: inherit;
	box-sizing: border-box;
}
.cs-header .cs-logo{
	height: auto;
	width: 250px;
	z-index: 10;
}
#headeroffset.scrolled{
	height: 60px;
}
.cs-header.sticky{
	position: fixed; top: -72px;
	left: 0;
	right: 0;
}
.cs-header.sticky.reveal{
	 top: 0;
}

/*---AESTHETIC--------------------------------*/

.white{
	color: #fff;
}
.red{
	color: #cd1a0a;
}

.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-black{
	background-color: #141414;
	color: #fff;
}
.bg-gold{
	background-color: #b3976b;
}
.bg-gold a:hover{
	text-decoration: underline;
}
.bg-gray{
	background-color: #e9eaec;
}
.bg-dark-gray{
	background-color: #1d1d1d;
}

.hero .col-row{
	min-height: calc(100vh - 170px);
	box-sizing: border-box;
}
.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(72px, 4vw);
}
.pad-bottom{
	padding-bottom: max(72px, 4vw);
}

.pad-top-half{
	padding-top: max(36px, 2.5vw);
}
.pad-bottom-half{
	padding-bottom: max(36px, 2.5vw);
}
.cs-wrapper{
	padding-left:30px;
	padding-right:30px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
    box-sizing: border-box;
}
.cs-wrapper-sm{
	padding-left:30px;
	padding-right:30px;
	max-width: 1360px;
	margin: 0 auto;
	width: 100%;
    box-sizing: border-box;
}
/*---TEXT--------------------------------*/
.overline{
	position: relative;
}
.overline:before{
	content: '';
	position: absolute;
	left: 0;
	top: -20px;
	width: 70px;
	height: 3px;
	background: #cd1a0a;
}
.heading-lg.overline:before{
	width: 70px;
}
.heading-md.overline:before{
	width: 55px;
	top: -15px;
}
.heading-xl{
	font-family: 'volvo-broad-pro-digital', sans-serif;
	display: block;
}
.heading-lg, .heading-md, .heading-sm, .heading-xs{
	font-family: 'volvo-novum', sans-serif;
	font-weight: 500;
	display: block;
}

.heading-xl{
    font-weight: 400;
	
	font-size: min(90px, 15vw);
	line-height: 1;
    letter-spacing: 7px;
}
.heading-lg{
    font-weight: 500;
	
	font-size: 2.8125rem;
	line-height: 120%;
    letter-spacing: 0.25px;
}
.heading-md{
    font-weight: 500;
	
	font-size: min(36px, 6vw);
	line-height: 120%;
    letter-spacing: 0.25px;
}
.heading-sm{
    font-weight: 500;
	
	font-size: 24px;
	line-height: 120%;
    letter-spacing: 0.25px;
}
.heading-xs{
	margin: 25px 0;
    font-weight: 500;
	
	font-size: 1rem;
	line-height: 150%;
	letter-spacing: normal;
}
.medium{
	font-family: 'volvo-novum', sans-serif;
	font-weight: 500;
}
.paragraph{	
	font-family: 'volvo-novum', sans-serif;
	font-weight: 300;
	font-size: 1rem;
	line-height: 150%;
	letter-spacing: -0.015rem;
}
.bold, .paragraph strong{font-weight: 500;}
.uppercase{text-transform: uppercase;}
.inter{
	
	font-family: 'volvo-novum', sans-serif;
}

/*---BUTTONS--------------------------------*/
.cta i{
	padding-left: 8px;
}
.cta{
	display: inline-block;
        padding: 12px 20px 11px;
        line-height: 18px;
	position: relative;
	font-family: 'volvo-novum', sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #fff;
	background-color: #141414;
	text-align: center;
    box-sizing: border-box;
	transition: ease all 0.3s;
	text-transform: uppercase;
	
    border-radius: 4px;
    letter-spacing: 1.25px;
    max-width: 21.5em;
	
}
.cta:hover{
	background: #323232;
	color: #fff;
}
.cta:active{
	background: #575757;
	color: #fff;
}
.cta-white{
	background: #fff;
	color: #141414;
}
.cta-white:hover{
	background: #e1e1e1;
	color: #141414;
}
.cta-white:active{
	background: #a9a9a9;
	color: #141414;
}
.cta-red{
	background: #cd1a0a;
	color: #fff;
}
.cta-red:hover{
	background: #e11d0b;
	color: #fff;
}
.cta-red:active{
	background: #b91709;
	color: #fff;
}
.cta-outlined{
	transition: ease all 0.3s;
	background: transparent !important;
	color: #141414 !important;
	border: solid 1px #141414 !important;
}

.cta-outlined:hover{
	background: #f7f7f7 !important;
	color: #141414 !important;
	border: solid 1px #141414 !important;
}
.cta-outlined:active{
	background: #ededed !important;
	color: #141414 !important;
	border: solid 1px #141414 !important;
}

.white .cta-outlined{
	transition: ease all 0.3s;
	background: transparent !important;
	color: #fff !important;
	border: solid 1px #fff !important;
}

.white .cta-outlined:hover{
	background: #444 !important;
	color: #fff !important;
	border: solid 1px #fff !important;
}
.white .cta-outlined:active{
	background: #333 !important;
	color: #fff !important;
	border: solid 1px #d9d9d9 !important;
}

.cs-banner{
	 padding: 30px; 
	transition: ease all 0.3s;
}
.cs-banner .vertical-divider{
	width: 1px;
	background: #141414;
	margin: 0;
}
.cs-banner.bg-black:hover{background: #1d1d1d;
}

.cs-panel{
	padding: max(2vw, 30px) max(2.5vw, 30px) max(4vw, 60px);
	background: #fff;
	position: relative;
	z-index: 10;
}

/*--------FORM STYLES--------------------*/

.custom-form input{
	padding: 10px;
	font-weight: 300;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	outline: none;
	border: none;
	background: #f5f5f5;
	box-sizing: border-box;
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;    
	font-family: 'volvo-novum', 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: #f5f5f5;
	font-family: 'volvo-novum', sans-serif !important;
}

.CaptchaPanel{
	text-align: left !important;
	font-family: 'volvo-novum', 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;
}


/* OTHER */

.volvo-breadcrumb {
	font-family: 'volvo-novum', sans-serif;
	background: #53565a;
    padding: 4px;
        font-size: 12px;
    color: #fff;
    display: flex;text-transform: capitalize;
}
.volvo-breadcrumb .volvo-crumb-list {
    display: flex;
    padding-left: 0;
	width: 100%;
	margin: 1em auto;
}
.volvo-breadcrumb .volvo-crumb {
    white-space: nowrap;
    color: inherit;
    display: flex;
}
.volvo-crumb--active {
    color: var(--c-primary-white);
    font-family: var(--ff-body);
    white-space: nowrap;
    font-weight: 500;
}
.volvo-crumb-item {
	display: flex;
}
.volvo-crumb-item + .volvo-crumb-item::before {
    content: '/';
    margin: 0 10px;
}

/*-------- FOOTER STYLES ----------------*/

.social-row{ display: flex; margin-left: -12px; margin-top: 24px; margin-bottom: 24px;}
.social-row a{ display: flex; justify-content: center; align-items: center; color: #555; height: 48px; width: 48px; font-size: 24px;}
.social-row a:hover{ color: #fff; }
.cs-footer{
	background: #f7f7f7;
}
.cs-footer > .cs-wrapper:nth-of-type(1){
        padding-top: 55px;
        padding-bottom: 55px;
}
.cs-footer h6 .paragraph{
	color: #141414;
}
.foot-text{
	font-family: 'volvo-novum', sans-serif;
	color: #141414;
	font-weight: 400;

    font-size: 16px;
    letter-spacing: 0.5px;
	line-height: 21px;
	
}
.foot-text a{
	color: #53565a;
	
}
.foot-list a{
	font-family: 'volvo-novum', sans-serif;
	color: #141414;
	font-weight: 400;

    font-size: 16px;
    letter-spacing: 0.5px;
	line-height: 40px;
	
}
.cs-footer .paragraph{
    font-size: 16px;
    letter-spacing: 0.5px;
	color: #53565a;
	
}
@media screen and (min-width: 1200px) {

	.footer-bar li:after {
		content: '';
		display: inline-flex;
		position: relative;
		top: 2px;
		height: 14px;
		border-right: 1px solid #d0d0d0;
		padding-right: 8px;
	}
    .footer-bar li:last-of-type:after {
        content: none;
    }
}


.foot-banner{
	font-family: 'volvo-novum', sans-serif;
	color: #53565a;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.01em;
	
}.foot-banner a{
	font-family: 'volvo-novum', sans-serif;
	color: #53565a;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	
}
.foot-list a:hover, .foot-text a:hover, .cs-footer .paragraph a:hover{
	text-decoration: underline;
	
}
.foot-list a:hover, .foot-banner a:hover, .foot-text a:hover, .cs-footer .paragraph a:hover{
	color: #2b8ede !important;
	
}
.foot-text ul{
	display: flex; gap: 10px;
	flex-wrap: wrap;
}


/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1200px) {
	.heading-lg, .heading-md{
		font-size: 32px;
	}
	.heading-sm{
		font-size: 16px;
	}
	.paragraph{
		font-size: 14px;
	}

}
@media only screen and (max-width: 767px) {

	.hero{
		background-image: url("/siteart/hero-vnl-legacy-mobile-2.webp") !important;
	}
	.custom-form .flex{flex-wrap: wrap; gap: 0px;}

}






