/* ****************************************
Base style file.
Basic style defined and used throughout the site as a base.
Lot of styles are redefined elsewhere.
**************************************** */

@font-face {
	font-family: Acumin;
	src: url(../fonts/AcuminVariableConcept.otf);
}
@font-face {
    font-family: 'Acumin Bold';
    src: url(../fonts/Acumin-BdPro.woff);
}

.clear {clear: both;}

/*
Smooth scroll
*/
html {
	scroll-behavior: smooth;
}

/*
Font.
Apply to HTML and body.
*/
html, body {
	font-family: Acumin;
	color: var(--base-color);
}

/*
Font size.
We put it on all the direct children and not directly on the body because we want to keep the user-set font-size.
*/
/* All */
body > * {
	font-size: var(--base-font-size);
}

/* Medium */
@media (min-width: 768px)
{
	body > * {
		font-size: var(--base-font-size-md);
	}
}

/*
Link.
Base style decoration.
*/
a {
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}

a:hover {
  	text-decoration:none;
	color: unset;
}

/*
Button.
*/
.btn {
	border: none;
	border-radius: 26px;
	padding: 12px 20px;

	font-family: Acumin;
	font-size: calc(var(--base-font-size) - (var(--base-font-size) * 0.1));
	font-weight: bold;
	text-transform: uppercase;
	line-height: normal;
	text-align: left;

	width: fit-content;

	position: relative;
	display: flex;
	align-items: center;
    justify-content: space-between;

	transition: box-shadow 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s;

	cursor: pointer;
}
.btn span {transition: color 0.2s, border-color 0.2s;}
.btn-center .btn {margin: auto;}

.btn.with-arrow span:first-of-type {padding: 3px 8px 0 0;}
.btn.with-arrow .arrow {display: inline-block;}
.btn.with-arrow.full-width .arrow {float: right;}

.btn.with-arrow-r,
.btn.with-arrow-l,
.btn.with-arrow-d {padding-right: 48px;}
.btn.with-arrow-r:after {
	content: " >";

	position: absolute;
	right: 20px;
	top: 12px;
}
.btn.with-arrow-l:after {
	content: "< ";

	position: absolute;
	right: 20px;
}
.btn.with-arrow-d:after {
	content: "∨";

	position: absolute;
	right: 20px;
}

.btn.btn-white,
.btn.btn_white {
	background-color: #fff;
	border-color: #fff;
	color: var(--color-gray);
}
.btn.btn-white span,
.btn.btn_white span {	
	border-color: var(--color-gray);
	color: var(--color-gray);
}
.btn.btn-white:hover,
.btn.btn_white:hover {
	background-color: #918d8c;
	border-color: #918d8c;
	color: #fff;
}
.btn.btn-white:hover span,
.btn.btn_white:hover span {
	border-color: #fff!important;
	color: #fff;
}

.btn.btn-black,
.btn.btn_black {
	background-color: var(--color-gray);
	border-color: var(--color-gray);
	color: #fff;
}
.btn.btn-black span,
.btn.btn_black span {	
	border-color: #fff;
	color: #fff;
}

.btn.btn-black:hover,
.btn.btn_black:hover {
	background-color: #918d8c;
	border-color: #918d8c;
	color: #fff;
}
.btn.btn-black:hover span,
.btn.btn_black:hover span {
	border-color: #fff!important;
	color: #fff;
}

.btn.space-bottom {margin-bottom: 28px;}
.btn.full-width {width: 100%;}
.btn.full-width.with-arrow-r:after,
.btn.full-width.with-arrow-l:after,
.btn.full-width.with-arrow-d:after {float: right;}

.custom-btn > a {
	display: flex;
	align-items: center;
	justify-content: end;
}
.custom-btn span {
	width: 80%;
	padding-top: 12px;
	padding-right: 20px;
	text-align: right;
}
.custom-btn.text-right span {text-align: right;}
.custom-btn.text-left span {text-align: left;}
.custom-btn svg {max-width: 18%;}
.custom-btn.upper {
	font-weight: 600;
    text-transform: uppercase;
}
.custom-btn.pull-right {
	transition: margin-right 0.2s;

	margin-right: 10px;
}
.custom-btn.pull-right:hover {margin-right: 0;}

.btn-pager {
	background-color: var(--color-gray);

    padding: 12px 16px;
	margin: 6px;
}
.btn-pager:hover {background-color: var(--color-gray-medium);}
.btn-pager.selected {
	background-color: var(--color-gray-light);

	color: #fff;
}
.btn-pager.pager-circle {
	border-radius: 100%;
}

.btn.btn-box {
	border: 1px solid #fff;
	border-radius: 0;

	text-transform: none;
	font-weight: normal;
	color: #fff;
}
.btn.btn-box.full-width {justify-content: center;}
.btn.btn-box:hover{
	box-shadow: none!important;
	background-color: #fff;
	color: #333!important;
}

.slick-nav {min-width: 80px;}
.slick-nav.small {
	display: block;

	width: fit-content;
}
.slick-nav .prev, .slick-nav .next {cursor: pointer;}
.slick-nav .prev {
	float: left;
	padding-left: 8px;
}
.slick-nav .next {
	float: right;
	padding-right: 8px;
}
/*
.slick-nav .prev:hover{
	padding-left: 4px!important;
	transition: padding-left 0.2s;
}
.slick-nav .next:hover {
	padding-right: 4px!important;
	transition: padding-right 0.2s;
}
*/

.slick-nav {padding: 2vw 0;}
.slick-nav .prev {padding-right: 1vw;}
.slick-nav .next {padding-left: 1vw;}
.slick-nav .counter {padding: 0 2vw;}
.slick-nav .counter span:nth-child(2) {padding: 0 0.8vw;}


@media (max-width: 576px) {
	.btn{font-size:70%;}
}
@media (min-width: 576px) and (max-width: 768px) {
	.btn{font-size:70%;}
}


/*
Heading.
Heading styles.
*/
h1, .h1 {font-size: 3.8em; font-family: 'Acumin Bold';}
h2, .h2 {font-size: 3.4em; font-family: 'Acumin Bold';}
h3, .h3 {font-size: 3.0em; font-family: 'Acumin Bold';}
h4, .h4 {font-size: 2.6em; font-family: 'Acumin Bold';}
h5, .h5 {font-size: 2.2em; font-family: 'Acumin Bold';}
h6, .h6 {font-size: 1.8em; font-family: 'Acumin Bold';}
/*
h1, .h1 {font-size: 3.0em;}
h2, .h2 {font-size: 2.6em;}
h3, .h3 {font-size: 2.2em;}
h4, .h4 {font-size: 2.0em;}
h5, .h5 {font-size: 4.0em;}
h6, .h6 {font-size: 1.6em;}
*/

/* Medium */
@media (max-width: 768px) {
	h1, .h1 {margin: 0;padding: 0;font-size: 3.4em;line-height: 1.2;font-weight: bold;}
	h2, .h2 {margin: 0;padding: 0;font-size: 3.0em;line-height: 1.2;font-weight: bold;}
	h3, .h3 {margin: 0;padding: 0;font-size: 2.6em;line-height: 1.2;font-weight: bold;}
	h4, .h4 {margin: 0;padding: 0;font-size: 2.2em;line-height: 1.1;font-weight: bold;}
	h5, .h5 {margin: 0;padding: 0;font-size: 1.8em;line-height: 1.1;font-weight: bold;}
	h6, .h6 {margin: 0;padding: 0;font-size: 1.4em;line-height: 1.1;font-weight: bold;}
}
/* small */
@media (max-width: 576px) {
	h1, .h1 {margin: 0;padding: 0;font-size: 3.0em;line-height: 1.2;font-weight: bold;}
	h2, .h2 {margin: 0;padding: 0;font-size: 2.6em;line-height: 1.2;font-weight: bold;}
	h3, .h3 {margin: 0;padding: 0;font-size: 2.2em;line-height: 1.2;font-weight: bold;}
	h4, .h4 {margin: 0;padding: 0;font-size: 1.8em;line-height: 1.1;font-weight: bold;}
	h5, .h5 {margin: 0;padding: 0;font-size: 1.4em;line-height: 1.1;font-weight: bold;}
	h6, .h6 {margin: 0;padding: 0;font-size: 1.0em;line-height: 1.1;font-weight: bold;}
}


/*
Paragraph.
Paragraph styles.
*/
/* Remove margin when last */
p:last-of-type {
	margin-bottom: 0;
}
.border-bottom-short:after {
	content: "";
    display: block;
    border-bottom: 3px solid #fff;
    width: 35px;
}

/*
List.
Lists styles.
*/
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
main ul {
	list-style-type: square;

    padding: 0;
	margin: 0;
}
main ul li {
	margin-left: 16px;
	padding: 0 0 16px 16px;
}






.flex-container {
    display: flex;
    align-items: flex-start;
}

.with-inset-shadow{box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4);}
svg image{width: 100%;}
/* White to Gray (#333) filter */
.gray-icon, .icon_gray{filter: invert(84%) sepia(92%) saturate(3%) hue-rotate(179deg) brightness(106%) contrast(88%);}
/* White to Black (#000) filter */
.dark-icon, .icon_black{filter:invert(1);}





/*
Block Title
*/
.block-title {
	z-index: 90;
	position: relative;
	overflow-y: clip;
}
.block-title h1,
.block-title h2,
.block-title h3,
.block-title h4,
.block-title h5,
.block-title h6 {
	line-height: 125%;
	margin-bottom: 12px;

	/*word-break: break-word;*/
}

.block-title.space-bottom {margin-bottom: 50px;}

.block-title .has-counter {
	display: flex;
}
.block-title .has-counter .counter {
	font-size: 1rem;
    padding-right: 18px;
}

.block-title.center-title {text-align: center;}
.block-title.center-title.border-bottom-short:after {margin: auto;}

/* Borders */
.block-title.border-bottom-short:after {
	content: "";
    display: block;
    border-bottom: 4px solid #fff;
	border-color: inherit;
    width: 50px;
}

.block-title.border-left h5 {
	font-size: var(--base-font-size-md);
	font-weight: bold;

	text-transform: uppercase;
}
.block-title.border-left h5 hr {
    float: left;
	margin-right:16px;

    width: 60px;
    height: 2px;

    background-color: #fff;
	
    border: none;
}

/* Colors */
main .bg-white {background-color: #fff;}
main .bg-white * {color: var(--color-gray);}

main .bg-gray-light {background-color: var(--color-gray-light);}
main .bg-gray-light * {color: var(--color-gray);}

main .bg-gray {background-color: var(--color-gray);}
main .bg-gray * {color: #fff;}



.block-title.white-title {color: #fff;} /* DEFAULT */

.block-title.blue-title {color: var(--color-font-blue);}
.block-title.blue-title.border-bottom-short:after {border-color: var(--color-font-blue);}

.block-title.gray-title {color: var(--color-gray);}
.block-title.gray-title.border-bottom-short:after {border-color: var(--color-gray);}

@media (max-width: 576px) {

}

.block-title-icon {
	display: flex;
	align-items: flex-start;

	margin-bottom: 20px;
}
.block-title-icon h1,
.block-title-icon h2,
.block-title-icon h3,
.block-title-icon h4,
.block-title-icon h5,
.block-title-icon h6 {margin:0;}
.block-title-icon .icon {
	padding-right: 30px;

	max-width: 15%;
}

@media (max-width: 576px) {
	.block-title-icon .icon {max-width: 30%;}
}






/*table*/
.basic-table {width: 100%;}
.basic-table th {
	background-color: #e4e4e4;
}
.basic-table th,
.basic-table td {
	border: 1px solid var(--color-gray);

	color: var(--color-gray);

	padding: 1em;
}
.responsive-table-container {
	overflow-x: scroll;
}





/*
Sideway title
*/
.with-sideway-title {
    position: relative;    
    padding-left: var(--desktop-gap-container-large)!important;
}
.with-sideway-title.align-middle {
	display: flex;
    align-items: center;
}
.with-sideway-title.align-middle > div {position: relative;}
.with-sideway-title.align-middle .sideway-title {left: calc(var(--desktop-gap-container-large) / -1.8)!important;}
.sideway-title{
    white-space: nowrap;
    text-transform: uppercase;
	font-weight: bold;
	font-family: 'Acumin Bold';
    
    /*margin-top: 200px;*/
    
    position: absolute;
    top: 0;
    left: 0;

    transform-origin: 0 0;
    transform: rotate(270deg) translateX(-100%);
    -webkit-transform: rotate(270deg) translateX(-100%);
    -moz-transform: rotate(270deg) translateX(-100%);
    -ms-transform: rotate(270deg) translateX(-100%);
    -o-transform: rotate(270deg) translateX(-100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.sideway-title hr{
    float: left;
    width: 60px;
    border: none;
    height: 1px;
    background-color: #fff;
}
.sideway-title span{padding: 0 6px 0 16px;}

@media (max-width: 576px) {
	.with-sideway-title{padding-left: var(--mobile-gap-container-large)!important;}
	
	.with-sideway-title.align-middle .sideway-title {left: calc(var(--desktop-gap-container-large) * -1.8)!important;}
}
@media (min-width: 576px) and (max-width: 768px) {
	.with-sideway-title{padding-left: var(--mobile-gap-container-large)!important;}
}






/*
Breadcrumb
*/
.breadcrumb {margin-bottom: 16px;}
.breadcrumb a {
	padding: 0 6px 0 8px;

	font-size: 85%;
}
.breadcrumb a:first-of-type {padding-left: 0;}
.breadcrumb a.current {cursor: default;}
.breadcrumb a:not(.current):hover {
	color: var(--color-gray-light)!important;
}





/*
Popup
*/
.popup-video, .popup-image {
	cursor: pointer;

	height: fit-content;

    display: block;
	position: relative;
}
.popup-video.with-icon:after {
	position: absolute;
	top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

	content: url(../img/icon-play.png);
}

.popup-image.with-icon:after {
	content: ''; 

	position: absolute;
	top: 50%;
    left: 50%;

	width: 60px;
	height: 60px;

    transform: translate(-50%, -50%);

	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 410.587 410.588' style='enable-background:new 0 0 410.587 410.588;'%3E%3Cpath d='M410.587,371.351l-50.044-50.044l-39.866-39.866c20.505-28.842,32.685-63.996,32.685-102.009c0-97.424-79.263-176.687-176.684-176.687C79.251,2.745,0,82.008,0,179.432c0,97.423,79.251,176.675,176.678,176.675c40.698,0,78.116-13.963,108.01-37.167l68.508,68.508c0.841,0.841,1.784,1.509,2.705,2.207l18.194,18.188L410.587,371.351zM176.689,314.548c-74.503-0.006-135.111-60.622-135.111-135.111c0-74.5,60.614-135.108,135.111-135.108c74.498,0,135.108,60.608,135.108,135.108c0,30.998-10.59,59.507-28.218,82.333c-5.833,7.537-12.374,14.49-19.642,20.654C240.374,302.409,209.94,314.548,176.689,314.548z' style='fill:%23fff'%3E%3C/path%3E%3C/svg%3E");
}

.popup-video .overlay, .popup-image .overlay {
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.2s;
}
.popup-video:hover .overlay, .popup-image:hover .overlay {
	opacity: 1;
}








.slash-list {
	font-size: 1.6em;

	margin-bottom: 0.5rem;

	display: flex;
}
.slash-list:before {
	content:"/";

	padding-right: 16px;
}



.content {margin-bottom: 40px;}
/*
.content p {
	word-wrap: break-word; 
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
*/
.content img {width: 100%;}
.content:not(:last-of-type) {margin-bottom: 4em;}
.content p:not(:last-of-type) {margin-bottom: 2em;}
.content .content-title {
	font-size: 1.6em;
	font-weight: bold;
}





/*Container and paddings*/
.spacing-h-sm{
	padding-top: var(--desktop-gap-container);
    padding-bottom: var(--desktop-gap-container);
}
.spacing-h-l{
	padding-top: var(--desktop-gap-container-large);
    padding-bottom: var(--desktop-gap-container-large);
}
.spacing-h-xl{
	padding-top: var(--desktop-gap-container-xlarge);
    padding-bottom: var(--desktop-gap-container-xlarge);
}

.spacing-w-r{
	padding-left: var(--desktop-gap-container);
    padding-right: var(--desktop-gap-container);
}
.spacing-w-l{
	padding-left: var(--desktop-gap-container-large);
    padding-right: var(--desktop-gap-container-large);
}
.spacing-w-xl{
	padding-left: var(--desktop-gap-container-xlarge);
    padding-right: var(--desktop-gap-container-xlarge);
}



.square-box {
	/*border:1px solid #fff;*/
	padding: 8px;
	border-collapse: collapse;
	text-transform: uppercase;
}


.pull-right {float: right}
.pull-left {float: left}
.hidden {display: none!important;}

body{overflow-x: hidden;}






.arrow {
    display: inline-block;

    border-width: 0 2px 2px 0;
	border-color: var(--color-gray);
	border-style: solid;

	width: 12px;
	height: 12px;

	transition: border-color 0.2s;
}

/* Directions */
.arrow-top {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
.arrow-right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.arrow-bottom {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.arrow-left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
/* Colors */
.arrow-white {border-color: #fff!important;}
.arrow-blue {border-color: var(--color-font-blue)!important;}

/* Sizes */
.arrow-small {
	width: 8px;
	height: 8px;
}
.arrow-large {
	width: 20px;
	height: 20px;
}

@media (max-width: 768px) {
	
}
.slick-carousel .hidden-sm {display: none!important}
@media (max-width: 576px) {
	.slick-carousel .hidden-sm {display: none!important}
}



/* Redifine html select 
 * 
 * Custom select need 3 elements
 * 1. <div class="click-receiver">  To block default select behavior
 * 2. <ul class="select-dropdown">  Contains all options as <li> 
 * 3. <span class="arrow arrow-down">  Add arrow element (may be up, left, down, right)
 * ** If not created, it will be added at init through main.js
*/

.custom-select-wrapper select {
    -webkit-appearance: none;
    appearance: none;

    border-top: none;
    border-bottom: none;
    outline: none;

    padding-left: 20px!important;
    padding-right: 40px!important;

    width: 100%;

    transition: all 0.5s;
}
.custom-select-wrapper .click-receiver {
    position: absolute;

    top: 0;
    left: 0;

    height: 100%;
    width: 100%;
}

.custom-select-wrapper {
	position: relative;

	cursor: pointer;
}
.custom-select-wrapper .arrow {
    position: absolute;

    top: 30%;
    right: 16px;
    
    height: 10px;
    width: 10px;

    border-color: var(--color-gray);

    transition: all 0.5s;
}
.custom-select-wrapper.open,
.custom-select-wrapper.open select {
    background-color: var(--color-gray);

    color: #fff!important;
}
.custom-select-wrapper.open .arrow {border-color: #fff;}

.custom-select-wrapper .select-dropdown {
    position: absolute;

    top: 0;
    left: 0;

    background-color: var(--color-gray);
    color: #fff;

	border: 1px solid #fff;
	border-top: 0;

    display: none;

    list-style-type: none;

    padding: 18px 0;
    margin: 0;

    width: 100%;

    z-index: 99;
}
.custom-select-wrapper .select-dropdown li {
    margin: 0;
    padding: 8px 20px;
	word-break: break-word;
}

.custom-select-wrapper.custom-select-border select {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	padding: 8px;
}
.custom-select-wrapper.custom-select-border .arrow {border-color: #fff;}
.custom-select-wrapper.custom-select-border.open select {border-bottom: 0;}

/* GForm fix */
.ginput_container_select {
	background-color: #fff;
	border: 1px solid #333;
	padding-right: 12px;
}
.ginput_container_select select {border: none;}
.gfield_consent_description {overflow-y: auto;}



.inset-shadow {
	background: rgb(0 0 0 / 55%);
    width: 100%;
    height: 100%;
    position: absolute;
}


form, form label {
	color: var(--color-gray);
}