/* -------------------------------------- GENERAL -------------------------------------- */
/* ********************************************
                    FONTS
******************************************** */
@font-face {
    font-family: Montserrat-Light;
    src: url('../fonts/Montserrat-Light.ttf');
}

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('../fonts/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url('../fonts/Montserrat-SemiBold.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/Montserrat-Bold.ttf');
}

@font-face {
    font-family: SpaceMono-Bold;
    src: url('../fonts/SpaceMono-Bold.ttf');
}

@font-face {
    font-family: SpaceMono-Regular;
    src: url('../fonts/SpaceMono-Regular.ttf');
}

/* ********************************************
                HTML/PAGE SETTINGS
******************************************** */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 2.2vw;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    color: #22231C;
    background-color: #b1b0a3;
}

:root {
    font-size: 14px;
    --space-mono: "SpaceMono-Bold", 'Courier New', monospace, serif;
    --montserrat: "Montserrat-Regular", "Helvetica", 'Arial', sans-serif;
    --montserrat-semibold: 'Montserrat-SemiBold', var(--montserrat);
}

h1 {
    font-family: "SpaceMono-Bold";
    font-size: 6rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h2 {
    font-family: "SpaceMono-Bold";
    font-size: 10rem;
    line-height: 10.5rem;
    color: #22231C;
    letter-spacing: -3px;
}

h3 {
    font-family: "Montserrat-Bold";
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h4 {
    font-family: "SpaceMono-Bold";
    font-size: 6rem;
    line-height: 6.2rem;
    color: #22231C;
}

h5 {
    font-family: "SpaceMono-Bold";
    font-size: 4.2rem;
    line-height: 4.5rem;
    letter-spacing: -1px;
}

h6 {
    font-family: "Montserrat-Medium";
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

p, a {
    font-family: "Montserrat-Regular";
    font-size: 1rem;
    color: #22231C;
    letter-spacing: 1px;
}

a:hover {
    text-decoration: none;
    color: #828282;
}

a, a:hover {
    transition: color 0.3s ease-out;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
}

.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: max(8vw, 8rem);
}

/* ********************************************
                    BUTTONS
******************************************** */
a.button {
    display: block;
    width: fit-content;
    position: relative;
}

a.button:hover {
    text-decoration: none;
}

button {
    display: block;
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    font-family: "Montserrat-SemiBold";
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 4px 15px 2px 15px;
}

button:focus {
    outline: none;
}

a.button:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(1);
    height: 0.5px;
    bottom: -7px;
    left: 0;
    background-color: #000;
    transform-origin: left;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

a.button:hover:after {
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

/* Custom classes */
.anim-all, .anim-all:hover {
    transition: color 0.4s, background-color 0.4s, transform 0.4s, border 0.4s, opacity 0.4s ease;
    -webkit-transition: color 0.4s, background-color 0.4s, transform 0.4s, border 0.4s, opacity 0.4s ease;
    -moz-transition: color 0.4s, background-color 0.4s, transform 0.4s, border 0.4s, opacity 0.4s ease;
    -o-transition: color 0.4s, background-color 0.4s, transform 0.4s, border 0.4s, opacity 0.4s ease;
}

/* ********************************************
                    FORMS
******************************************** */
input:focus, textarea:focus {
    outline: none;
}

::placeholder {
    visibility: hidden;
	color: transparent;
}

form .form-field {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 15px;
    margin-top: 15px;
}

form .message-field {
    height: fit-content !important;
}

.form-field input, .form-field textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #22231C;
    height: 47px;
    color: #22231C;
    font-family: "Montserrat-SemiBold";
    font-size: 1.15rem;
    letter-spacing: 1px;
    padding-left: 20px;
}

.form-field input:focus, .form-field textarea:focus {
    border-color: #C5C4B9;
}

.form-field textarea {
    height: 9rem;
    padding-top: 0.6rem;
}

form .form-field span {
    z-index: 1;
	display: block;
}

form .form-field label {
    color: #22231C;
    font-family: "Montserrat-Medium";
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding-left: 20px;
    position: absolute;
    top: 9px;
    left: 1px;
    z-index: 0;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out; 
}

.form-field span.wpcf7-form-control-wrap:hover > input + label, .form-field span.wpcf7-form-control-wrap input:focus + label, .form-field span.wpcf7-form-control-wrap input:not(:placeholder-shown) + label, .form-field span.wpcf7-form-control-wrap:hover > textarea + label, .form-field span.wpcf7-form-control-wrap textarea:focus + label, .form-field span.wpcf7-form-control-wrap textarea:not(:placeholder-shown) + label {
    font-size: 0.9rem;
    top: -12px;
}

form input, form textarea {
    padding-left: 1px;
}


form input[type="submit"] {
    background-color: transparent;
    border: 1px solid #22231C;
    border-radius: 0;
    color: #22231C;
    font-family: "Montserrat-SemiBold";
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 3px 26px;
}

form input[type="checkbox"] {
    display: none;
}

form input[type="checkbox"] + span {
    display: block;
    text-align: left;
    padding-left: 50px !important;    
    position: relative;
    cursor: pointer;
}

form input[type="checkbox"] + span:before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    text-align: center;
    border: 1px solid #22231C;
    left: 0;
    top: calc(50% - 16.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat-SemiBold";
}

form input[type="checkbox"]:checked + span:before {
    content: 'X';
}

/* ANIMATIONS */
.form-field span.wpcf7-form-control-wrap:hover > input + label, .form-field span.wpcf7-form-control-wrap input:focus + label, .form-field span.wpcf7-form-control-wrap input:not(:placeholder-shown) + label, .form-field span.wpcf7-form-control-wrap:hover > textarea + label, .form-field span.wpcf7-form-control-wrap textarea:focus + label, .form-field span.wpcf7-form-control-wrap textarea:not(:placeholder-shown) + label, .form-field input, .form-field textarea, .form-field input:focus, .form-field textarea:focus {
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

/* --------- CONTACT FORM 7 PLUGIN --------- */
/* Contacts page */
.contact-form .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    background-color: #22231C;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
}

/* General */
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: none;
    padding: 0;
    margin: 1.2rem 0 0 0;
    font-family: "Montserrat-Regular", Verdana, sans-serif;
    font-size: 0.9rem;
}

.wpcf7-not-valid-tip {
    text-align: left;
    padding-left: 20px;
    margin-top: 9px;
    font-family: "Montserrat-Regular", Verdana, sans-serif;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    border: none;
    margin: 1.2rem 0 0 0;
    font-family: "Montserrat-Regular", Verdana, sans-serif;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output {
    max-width: 35rem;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    background-color: #c5c4b95c;
    font-family: "Montserrat-Medium", Verdana, sans-serif;
    font-size: 1rem;
    padding: 7px 20px;
    margin: 1em 0;
}

/* ********************************************
                    MENU
******************************************** */
/* --------- General --------- */
header nav.menu {
    width: 95.7%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 5.7vw 0 12.7vw;
    position: absolute;
    z-index: 5;
}

header nav.menu svg#menuToggle {
    width: 75px;
    height: 15px;
    cursor: pointer;
    z-index: 99999;
}

@media (hover: hover) {
    svg#menuToggle:hover > rect {
        width: 68.29px;
    }
}

header nav.menu a.custom-logo-link {
    width: 12.6%;
    min-width: 140px;
    height: fit-content;
    min-height: 163px;
}

header nav.menu a.custom-logo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

nav.menu .menu-content {
    position: fixed;
    width: 95.7%;
    height: calc(100% - 3.7vw);
    min-height: 92vh;
    background-color: #000000;
    z-index: 9999;
    left: 2.2vw;
    top: 2.2vw;
    padding: 0;
    max-width: 0;
    display: grid;
    grid-template-columns: 179px auto;
    color: #fff;
    overflow-x: hidden;
    transform-origin: left;
    transform: scaleX(0);
    transition: all 0.95s cubic-bezier(.33,1,.68,1);
    -webkit-transition: all 0.95s cubic-bezier(.33,1,.68,1);
    -moz-transition: all 0.95s cubic-bezier(.33,1,.68,1);
    -o-transition: all 0.95s cubic-bezier(.33,1,.68,1);
}

nav.menu .menu-content img.custom-logo {
    display: block;
    width: max(140px, 9.65vw);
    max-width: 0;
    height: 11.2vw;
    min-height: 163px;
    overflow: hidden;
    object-fit: cover;
    object-position: left;
}

nav.menu .menu-content ul.menu-page-list {
    padding-left: 0;
    margin-top: 16%;
    margin-left: 21%;
    z-index: 2;
}

nav.menu .menu-content ul.menu-page-list li {
    list-style-type: none;
    width: fit-content;
    position: relative;
    cursor: pointer;
}

nav.menu .menu-content ul.menu-page-list li:before {
    content: url(../imgs/white-arrow-menu.svg);
    position: absolute;
    width: 70px;
    left: -105px;
    top: 8px;
    opacity: 0;
    transform: translateX(-40px);
    transition: transform 0.4s, opacity 0.4s cubic-bezier(.33,1,.68,1);
    -webkit-transition: transform 0.4s, opacity 0.4s cubic-bezier(.33,1,.68,1);
    -moz-transition: transform 0.4s, opacity 0.4s cubic-bezier(.33,1,.68,1);
    -o-transition: transform 0.4s, opacity 0.4s cubic-bezier(.33,1,.68,1);
}

nav.menu .menu-content ul.menu-page-list li:hover:before {
    opacity: 1;
    transform: translateX(0px);
    transition: transform 0.4s, opacity 0.4s cubic-bezier(.33,1,.68,1);
    -webkit-transition: transform 0.4s, opacity 0.4s cubic-bezier(.33,1,.68,1);
    -moz-transition: transform 0.4s, opacity 0.4s cubic-bezier(.33,1,.68,1);
    -o-transition: transform 0.4s, opacity 0.4s cubic-bezier(.33,1,.68,1);
}

nav.menu .menu-content ul.menu-page-list li a {
    color: #fff;
    font-family: "SpaceMono-Bold";
    font-size: 2.9rem;
    text-transform: uppercase;
    position: relative;
    display: block;
    max-width: 0%;
    white-space: nowrap;
    overflow: hidden;
}

nav.menu .menu-content ul.menu-page-list li a:hover {
    text-decoration: none;
}

/* subpages / submenus */
ul.menu-page-list .menu-item .sub-menu {
    display: none;
    overflow-y: hidden;
    padding-left: 22px;
}

nav.menu .menu-content ul.menu-page-list ul.sub-menu li {
    height: 1.8rem;
}

nav.menu .menu-content ul.menu-page-list .menu-item .sub-menu li a {
    font-family: "Montserrat-Regular";
    font-size: 1rem;
    padding: 3px 0;
    position: relative;
}

nav.menu .menu-content ul.menu-page-list .menu-item .sub-menu li:before {
    content: unset;
}

ul.menu-page-list .menu-item ul.sub-menu li a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0.9px;
    bottom: 3px;
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(.33,1,.68,1);
    -webkit-transition: transform 0.4s cubic-bezier(.33,1,.68,1);;
    -moz-transition: transform 0.4s cubic-bezier(.33,1,.68,1);
    -o-transition: transform 0.4s cubic-bezier(.33,1,.68,1);
}

ul.menu-page-list .menu-item ul.sub-menu li a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.33,1,.68,1);
    -webkit-transition: transform 0.4s cubic-bezier(.33,1,.68,1);;
    -moz-transition: transform 0.4s cubic-bezier(.33,1,.68,1);
    -o-transition: transform 0.4s cubic-bezier(.33,1,.68,1);
}
/* end of submenus */

nav.menu .menu-content .right-side {
    position: absolute;
    display: flex;
    flex-direction: row;
    margin-top: -1rem;
    right: 4.5vw;
    width: 35.5%;
    top: 9vw;
    /*top: 130px;*/
    align-items: flex-end;
    justify-content: space-between;
}

nav.menu .menu-content .right-side .decoration-photo {
    width: 25vw;
    height: 31vw;
    overflow: hidden;
    position: relative;
}

nav.menu .menu-content .right-side .decoration-photo:before {
    content: '';
    background-color: #000;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.7s cubic-bezier(.33,1,.68,1);
    -webkit-transition: transform 0.7s cubic-bezier(.33,1,.68,1);
    -moz-transition: transform 0.7s cubic-bezier(.33,1,.68,1);
    -o-transition: transform 0.7s cubic-bezier(.33,1,.68,1);
}

nav.menu .menu-content .right-side .decoration-photo.menu-open:before {
    transform: scaleX(0);
}

nav.menu .menu-content .right-side .decoration-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

nav.menu .menu-content .right-side .decoration-photo img:not(.default_img) {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}

nav.menu .menu-content .right-side .decoration-photo img.default_img {
    clip-path: unset !important;
    z-index: 0;
}

.languages {
    display: flex;
    flex-direction: column;
}

.languages ul {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

.languages ul li {
    list-style-type: none;
    margin-right: 0.4rem;
}

.languages ul li a {
    color: #fff;
    font-family: "SpaceMono-Regular", Courier, monospace;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0px 6px;
    display: block;
    position: relative;
}

.languages ul li a:hover {
    text-decoration: none;
}

.languages ul li a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0px;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

.languages ul li a:hover:after, .languages ul li.current-lang a:after {
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

div.languages {
    width: fit-content;
    overflow: hidden;
    position: relative;
}

div.languages nav.languages {
    transform: translateY(100%);
}

/* animations */
header nav.menu svg#menuToggle, svg#menuToggle:hover > rect, svg#menuToggle > rect, nav.menu .menu-content img.custom-logo, nav.menu .menu-content ul.menu-page-list li a, div.languages nav.languages {
    transition: all 0.65s, background-image 0s cubic-bezier(.33,1,.68,1);
    -webkit-transition: all 0.65s, background-image 0s cubic-bezier(.33,1,.68,1);
    -moz-transition: all 0.65s, background-image 0s cubic-bezier(.33,1,.68,1);
    -o-transition: all 0.65s, background-image 0s cubic-bezier(.33,1,.68,1);
}

/* --------- Menu open --------- */
.menu-open {
    transition: all 0.7s cubic-bezier(.33,1,.68,1) !important;
    -webkit-transition: all 0.7s cubic-bezier(.33,1,.68,1) !important;
    -moz-transition: all 0.7s cubic-bezier(.33,1,.68,1) !important;
    -o-transition: all 0.7s cubic-bezier(.33,1,.68,1) !important;
}

nav.menu .menu-content.menu-open {
    padding: 40px 14.15% 1.71% 12.7vw;
    max-width: 95.7%;
    transform: scaleX(1);
}

nav.menu svg.menu-open#menuToggle {
    fill: #fff !important;  
    width: 40px;
    height: 43px;
    right: 7.5%;
    position: fixed;
}

nav.menu svg.menu-open#menuToggle rect:nth-child(1) {
    transform: translateX(3px) rotate(45deg);
    width: 50px;
}

nav.menu svg.menu-open#menuToggle rect:nth-child(2) {
    transform: translateX(-7px) translateY(29px) rotate(-45deg);
    width: 50px;
}

.menu-content.menu-open::-webkit-scrollbar {
    width: 12px;
}

.menu-content.menu-open::-webkit-scrollbar-thumb {
    background: #d7d7d7;
    border-radius: 40px;
}

nav.menu .menu-content img.custom-logo.menu-open {
    max-width: max(140px, 9.65vw);
}

nav.menu .menu-content ul.menu-page-list li a.menu-open {
    max-width: 100%;
    width: fit-content;
}

div.languages nav.languages.menu-open {
    transform: translateY(0%);
}

/* ********************************************
                    HEADER
******************************************** */
header .page-header {
    width: 100%;
    height: 47vw;
    min-height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(123, 123, 99, .5);
    background-blend-mode: multiply;
    padding: 14vw 3vw 2vw 3vw;
}

.page-header .page-title {
    text-align: center;
}

.page-header .page-title h1, .page-header .page-title h2 {
    color: #fff;
    /*display: flex;*/
    justify-content: center;
    position: relative;
}

.page-header .page-title h1 {
    width: fit-content;
    max-width: 43rem;
    margin: 0 auto;
}

.page-header .page-title h2 {
    font-family: "Montserrat-Regular";
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 2px;
    line-height: initial;
}

.page-header .scroll-anim-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.page-header .scroll-anim-container span:not(.scrollbar) {
    font-family: "Montserrat-Light";
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2.5rem;
    margin-left: 3px;
}

.page-header .scroll-anim-container span.scrollbar {
    display: block;
    width: 1.2px;
    height: 7vw;
    min-height: 60px;
    position: relative;
    overflow: hidden;
}

.page-header .scroll-anim-container span.scrollbar:before {
    content: '';
    position: absolute;
    width: 0.5px;
    height: 7vw;
    min-height: 60px;
    top: 0;
    left: 0;
    background-color: #fff;
    animation: scrolly 1.5s infinite;
}

@keyframes scrolly {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}


/* ********************************************
                    FOOTER
******************************************** */
footer {
    width: 100%;
    height: 27vw;
    min-height: 450px;
    background-color: #22231C;
    background-repeat: no-repeat;
    background-size: 45vw;
    background-position-x: 75%;
    background-position-y: -9vw;
    padding: 5% 9.5%;
    color: #fff;
    position: absolute;
    left: 0;
    margin-top: 9vw;
    overflow: hidden;
}

footer a, footer p {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.5rem;
    transition: color 0.3s ease-out;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
}

footer .footer-cols {
    display: flex;
    flex-direction: row;
    width: 95%;
    align-items: flex-end;
}

footer .footer-cols .footer-col {
    flex: 1;
    padding-right: 4vw;
}

h5#slogan {
    width: 32rem;
    margin-bottom: 2rem;
}

footer h5#newsletter {
    font-size: 3.5rem;
    margin-left: -2px;
    margin-bottom: 1rem;
}

footer .footer-cols .footer-col p span {
    font-family: "Montserrat-Bold";
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 35px;
}

footer .social-media {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 30%;
    margin-top: 35px;
}

footer .social-media a {
    width: 21%;
    min-width: 30px;
    transition: opacity 0.35s ease-out;
    -webkit-transition: opacity 0.35s ease-out;
    -moz-transition: opacity 0.35s ease-out;
    -o-transition: opacity 0.35s ease-out;
}

footer .social-media a:hover {
    opacity: 40%;
    transition: opacity 0.35s ease-out;
    -webkit-transition: opacity 0.35s ease-out;
    -moz-transition: opacity 0.35s ease-out;
    -o-transition: opacity 0.35s ease-out;
}

footer .social-media a img {
    width: 100%;
}

footer form {
    width: 73%;
    min-width: 365px;
}

footer form .form-field {
    margin-top: 0;
} 

footer form .form-field label {
    color: #fff;
    font-size: 1.15rem;
    padding-left: 0;
}

form input[type="submit"] {
    padding: 3px 20px 1px 20px;
}

footer form input[type="email"] {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    height: 47px;
    color: #fff;
    font-family: "Montserrat-SemiBold";
    font-size: 1.15rem;
    letter-spacing: 1px;
    padding-left: 0;
}

footer form input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

footer form span.wpcf7-list-item label {
    display: flex;
    flex-direction: row;
    line-height: 1rem;
}

footer form .wpcf7-not-valid-tip {
    padding-left: 0;
}


footer form label span.wpcf7-list-item-label, footer form label span.wpcf7-list-item-label a {
    text-transform: none !important;
    font-family: "Montserrat-Regular" !important;
    font-size: 0.9rem !important;
}

footer .footer-cols .footer-col p span {
    margin-top: 0;
    margin-left: 0;
}

footer form input[type="checkbox"] + span:before {
    border-color: #fff;
    width: 25px;
    height: 25px;
    top: 3px;
}

footer form input[type="checkbox"] + span {
    padding-left: 38px !important;
}

footer form input[type="submit"] {
    border: 1px solid #fff;
    color: #fff;
}

form #newsletter-submit {
    position: relative;
    width: fit-content;
    margin-top: 26px;
}

form #newsletter-submit:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(1);
    height: 0.7px;
    bottom: -7px;
    left: 0;
    background-color: #fff;
    transform-origin: bottom left;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

form #newsletter-submit:hover:after {
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

form .wpcf7-spinner {
    position: absolute;
    background-color: #c5c4b9;
}


footer a.design {
    position: absolute;
    bottom: 75px;
    right: 10vw;
    font-family: 'Montserrat-Bold';
    color: #5F5F5E;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: color 0.35s ease-out;
    -webkit-transition: color 0.35s ease-out;
    -moz-transition: color 0.35s ease-out;
    -o-transition: color 0.35s ease-out;
}

footer a.design:hover {
    color: #828282;
    transition: color 0.35s ease-out;
    -webkit-transition: color 0.35s ease-out;
    -moz-transition: color 0.35s ease-out;
    -o-transition: color 0.35s ease-out;
}

footer a.design:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0px;
    left: 0;
    background-color: #5F5F5E;
    transform-origin: bottom right;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

footer a.design:hover:after {
    transform: scaleX(1);
    background-color: #828282;
    transform-origin: bottom left;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

/* --------------------------------------------------- HOME ---------------------------------------------------*/
.swiper_slide {
    overflow: hidden;
    touch-action: pan-y;
}

.swiper-wrapper {
    display: flex;
    flex-direction: row;
}

.swiper-slide {
    flex-shrink: 0;
}


/* ********************************************
                    SLIDER
******************************************** */
.slider {
    width: 100%;
    /*min-height: 47vw;*/
    min-height: calc(40vw + 8rem);
    background-color: #C5C4B9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10% 1.5vw 3% 3.5%;
    position: relative;
}

.slider .slide {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.slider .slide .slides-imgs {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    width: 59vw;
    position: absolute;
    right: 5rem;
    z-index: 1;
    margin-top: 1rem;
}

.slider .slide .slides-imgs img {
    width: 59vw;
    height: 40vw;
    object-fit: cover;
    object-position: center;
	flex-shrink: 0;
}

.slider .slide .slide-text {
    margin-top: 10.5%;
    display: flex;
    flex-direction: column;
    max-width: 50%;
    overflow: hidden;
    z-index: 2;
}

.slider .slide .slide-text h4 {
    background-color: #fff;
    padding: 0.5rem 3rem 0.8rem 3rem;
    width: fit-content;
    z-index: 3;
    white-space: nowrap;
    user-select: none;
}

.slider .slide .slide-text #description {
    max-width: 100%;
    padding-left: 5.5vw;
    margin-top: -1rem;
    z-index: 2;
    overflow: hidden;
}

.slider .slide .slide-text p {
    background-color: #fff;
    width: 31vw;
    padding: 2.2vw 3.8vw 2.6vw 3.7vw;
    font-size: 1.15rem;
    user-select: none;
}

.slider .slide .slide-text.loading, .slider .slide .slide-text .loading#description {
    max-width: 0;
}

.slider .slide .slide-text, .slider .slide .slide-text #description, .slider .slide .slide-text.loading, .slider .slide .slide-text .loading#description, .slider .slide p.slide-brand, .slider .slide p.slide-brand.changing {
    transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
}

.slider .slide .slide-text.loaded {
    transition: max-width .6s ease-in-out, opacity 1.3s, transform 1.3s cubic-bezier(.33,1,.68,1) !important;
}

.slider .slide p.slide-brand {
    writing-mode: vertical-lr;
    font-family: "Montserrat-Medium";
    margin-top: 0.9rem;
    margin-right: 0;
    margin-left: 1.7vw;
    max-height: 150px;
    overflow: hidden;
    white-space: nowrap;
}

.slider .slide p.slide-brand.changing {
    max-height: 0;
}

.slider .slider-controls {
    width: fit-content;
    margin-top: 12px;
    margin-left: -11px;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 1;
}

.slider .slider-controls a {
    width: 7.5vw;
    height: 7.5vw;
    min-width: 115px;
    min-height: 115px;
    display: block;
    margin-right: 35px;
}

/* MORE INFO BUTTON */
a.more-info .more-info-bttn, a.more-info:hover > .more-info-bttn {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .6s cubic-bezier(.33,1,.68,1);
    -webkit-transition: all .6s cubic-bezier(.33,1,.68,1);
    -moz-transition: all .6s cubic-bezier(.33,1,.68,1);
    -o-transition: all .6s cubic-bezier(.33,1,.68,1);
}

a.more-info svg.more-info-bttn path:not(.circle) {
    fill: #333332;
    stroke: transparent;
    stroke-width: 0.5;
}

a.more-info svg.more-info-bttn path.circle:not(.unchanged), a.more-info svg.more-info-bttn circle {
    fill: transparent;
}

a.more-info:hover > svg.more-info-bttn path:not(.circle) {
    fill: #fff;
    stroke: #fff;
}

a.more-info:hover > svg.more-info-bttn path.circle:not(.unchanged), a.more-info:hover > svg.more-info-bttn circle {
    fill: #333332;
}

a.more-info svg.more-info-bttn path, a.more-info:hover > svg.more-info-bttn path, a.more-info svg.more-info-bttn circle, a.more-info:hover > svg.more-info-bttn circle {
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.slider .slider-controls .slide-bttn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.9vw;
    height: 2.9vw;
    min-width: 45px;
    min-height: 45px;
    cursor: pointer;
    margin-right: 14px;
    z-index: 1;
}

.slider .slider-controls .slide-bttn svg  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform .9s, stroke .3s cubic-bezier(.33,1,.68,1);
    -webkit-transition: transform .9s, stroke .3s cubic-bezier(.33,1,.68,1);
    -moz-transition: transform .9s, stroke .3s cubic-bezier(.33,1,.68,1);
    -o-transition: transform .9s, stroke .3s cubic-bezier(.33,1,.68,1);
}

.slider .slider-controls .slide-bttn .slide-bttn-index {
    position: absolute;
    font-family: "Montserrat-SemiBold";
    letter-spacing: 3px;
    font-weight: 100;
    font-size: 1rem;
    color: #222221;
}

.slider .slider-controls .slide-bttn.current .slide-bttn-index, .slider .slider-controls .slide-bttn:hover > svg + .slide-bttn-index {
    color: #fff;
}

.slider .slider-controls .slide-bttn:hover > svg, .slider .slider-controls .slide-bttn.current svg {
    stroke: #fff !important;
    transition: stroke .3s, transform .6s cubic-bezier(.33,1,.68,1);
    -webkit-transition: stroke .3s, transform .6s cubic-bezier(.33,1,.68,1);
    -moz-transition: stroke .3s, transform .6s cubic-bezier(.33,1,.68,1);
    -o-transition: stroke .3s, transform .6s cubic-bezier(.33,1,.68,1);
}

/*TRANSITIONS*/
.slider .slider-controls .slide-bttn .slide-bttn-index, .slider .slider-controls .slide-bttn.current .slide-bttn-index, .slider .slider-controls .slide-bttn:hover > svg + .slide-bttn-index {
    transition: color .3s cubic-bezier(.33,1,.68,1);
    -webkit-transition: color .3s cubic-bezier(.33,1,.68,1);
    -moz-transition: color .3s cubic-bezier(.33,1,.68,1);
    -o-transition: color .3s cubic-bezier(.33,1,.68,1);
}

/*.slider .slider-controls .slide-bttn.current > svg {
    animation: bttnRotation 4s linear infinite;
}*/

@keyframes bttnRotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(+359deg);
    }
}

/* ********************************************
                INTRODUCTION
******************************************** */
.category-wrapper-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 13% 0 9% 0;
}

.category-wrapper-1 h2, .category-wrapper-1 h2 + p {
    text-align: center;
    margin-bottom: 0;
}

.category-wrapper-1 h2 + p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 0 20px;
}

.category-wrapper-1 .introduction .wp-block-columns {
    display: flex;
    align-items: center;
    margin-top: 9%;
    padding: 0 10.5% 0 13.5%;
}

.category-wrapper-1 .introduction .wp-block-column:nth-child(1) {
    align-self: stretch;
}

.category-wrapper-1 .introduction .wp-block-column:nth-child(1) figure {
    width: 95%;
    height: 100%;
    margin: 0;
}

.category-wrapper-1 .introduction .wp-block-column:nth-child(1) figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-wrapper-1 .introduction .wp-block-columns .wp-block-column:nth-child(2) {
    margin-left: 6vw;
    position: relative;
    line-height: 1.45rem;
}

.category-wrapper-1 .introduction .wp-block-column:nth-child(2) figure {
    position: absolute;
    top: calc(9% - 7.8rem);
    left: -9%;
    width: 20vw;
    display: block;
}

.category-wrapper-1 .introduction .wp-block-column:nth-child(2) figure img {
    width: 100%;
}

.category-wrapper-1 .introduction .wp-block-column:nth-child(2) h3 {
    line-height: 2rem;
    margin-top: 1.8vw;
    margin-bottom: 2.3rem;
}

.category-wrapper-1 .introduction .wp-block-column:nth-child(2) h3 span {
    font-size: 1.6rem;
    letter-spacing: 2px;
}

/* ********************************************
                    TEAM
******************************************** */
.team-members-wrapper {
    display: flex;
    flex-direction: row;
    margin-top: 7%;
    flex-wrap: wrap;
    justify-content: center;
}

.team-members-wrapper .team-member .member-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.4rem;
}

.team-member {
    width: 22vw;
    min-width: 250px;
    max-width: 370px;
    margin: 0 1.3vw;
}

.team-member img {
    width: 100%;
}

.team-member .member-name {
    margin-top: 1.5rem;
    font-size: 1.8rem;
}

.team-member .member-name span {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 7px;
}


/* ********************************************
                CUSTOM BIKES
******************************************** */
.custom-bikes {
    width: 100%;
    min-height: 41vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 4% 2% 7% 7.5%;
    margin-top: 13vw;
    margin-bottom: 5vw;
    background-color: #C5C4B9;
    position: relative;
}

.custom-bikes .custom-bikes-col1 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-right: 45vw;
    padding-top: calc(62px + 0.8vw);
}

.custom-bikes .custom-bikes-col1 h2 {
    line-height: 5.5rem;
    font-size: 7.5rem;
    display: flex;
    flex-direction: column;
}

.custom-bikes .custom-bikes-col1 h2 span {
    font-size: 6.1rem;
    margin-top: 7px;
}

.custom-bikes .custom-bikes-col1 ul {
    padding: 0;
    margin: 9% 0;
    min-width: 255px;
}

.custom-bikes .custom-bikes-col1 ul li {
    list-style-type: none;
    font-family: "Montserrat-Regular";
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: relative;
    color: #22231C;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.custom-bikes .custom-bikes-col1 ul li:after {
    content: '';
    position: absolute;
    width: 125%;
    transform: scaleX(0);
    height: 2.3px;
    bottom: -2px;
    left: 2.5rem;
    background-color: #22231C;
    transform-origin: bottom right;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

.custom-bikes .custom-bikes-col1 ul li:hover:after, .custom-bikes .custom-bikes-col1 ul li.active:after {
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

.custom-bikes .custom-bikes-col2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.custom-bikes .custom-bikes-col2 .bike-img-gallery-controlls {
    display: flex;
    flex-direction: row;
    z-index: 1;
    justify-content: flex-end;
    align-items: center;
}

.custom-bikes-col2 .bike-img-gallery-controlls p.indexes {
    font-family: "SpaceMono-Regular";
    font-size: 1.4rem;
    margin-bottom: 0;
    margin-right: 4vw;
    color: #9C9987;
    letter-spacing: 2px;
}

.bike-img-gallery-controlls p.indexes span#max {
    font-family: "SpaceMono-Bold";
}

.custom-bikes-col2 .bike-img-gallery-controlls .arrows {
    display: flex;
    flex-direction: row;
    width: 125px;
    justify-content: space-between;
}

.custom-bikes-col2 .bike-img-gallery-controlls .arrows svg {
    width: 56px;
    justify-content: space-between;   
    opacity: 1;
    cursor: pointer;
}

.bike-img-gallery-controlls .arrows svg.inactive {
    opacity: 0.36;
    cursor: auto;
}

.bike-img-gallery-controlls .arrows svg, .bike-img-gallery-controlls .arrows svg.inactive {
    transition: all 0.3s cubic-bezier(.33,1,.68,1);
    -webkit-transition: all 0.3s cubic-bezier(.33,1,.68,1);
    -moz-transition: all 0.3s cubic-bezier(.33,1,.68,1);
    -o-transition: all 0.3s cubic-bezier(.33,1,.68,1);
}

.custom-bikes-col2 .bike-img-gallery {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 54vw;
    padding-top: calc(62px + 2.5vw);
}

.custom-bikes-col2 .bike-img-gallery .single-bike-gallery {
    min-width: 100%;
    height: 38vw;
    display: flex;
    flex-direction: row;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-bikes-col2 .bike-img-gallery .single-bike-gallery.dragging {
    cursor: grabbing;
}

.bike-img-gallery .single-bike-gallery figure, .bike-img-gallery .single-bike-gallery img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.65s cubic-bezier(.33,1,.68,1);
    -webkit-transition: all 0.65s cubic-bezier(.33,1,.68,1);
    -moz-transition: all 0.65s cubic-bezier(.33,1,.68,1);
    -o-transition: all 0.65s cubic-bezier(.33,1,.68,1);
}

/* --------------------------------------------------- MODELS ---------------------------------------------------*/
/* ********************************************
                    GENERAL
******************************************** */
h3.subbrand-name {
    font-family: "SpaceMono-Bold", serif;
    font-size: 5rem;
    text-align: center;
    line-height: 1.2;
    max-width: 70rem;
    margin-bottom: 1rem;
}

.models-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: max(5vw, 7rem) 8vw 0 8vw;
}

.models-page .brand-logo {
    display: block;
    height: 200px;
    width: 17vw;
    min-width: 250px;
    margin: 0 auto;
}

.models-page .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.models-page .brand-description {
    text-align: center;
    color: #363635;
    padding: 2vw 11vw;
    margin-top: 3vw;
}

.models-page .brand-description p {
    font-size: 2rem;
}

/* Brand models nav */
.brand_models_nav ul {
    max-width: 68rem;
    flex-wrap: wrap;
    justify-content: center;
}

.brand_models_nav ul li {
    list-style-type: none;
}

.brand_models_nav ul li a {
    font-family: var(--space-mono);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9f9c9c;
    margin: 0.5em 1em;
    display: block;
    position: relative;
}

.brand_models_nav ul li a:after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-in-out;
    -webkit-transition: transform 0.4s ease-in-out;
    -moz-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
}

.brand_models_nav ul li a.current:after {
    transform: scaleX(1);
    transform-origin: left;
}

.brand_models_nav ul li a.current, .brand_models_nav ul li a:hover {
    color: #000;
}

/* Model container */
.model_wrapper.loading .models-container, .model_wrapper:not(.loading) .lds-ring {
    opacity: 0;
}

.model_wrapper .lds-ring {
    top: 2rem;
}

.model_wrapper .lds-ring div {
    width: 55px;
    height: 55px;
    border: 7px solid #000;
    border-color: #000 transparent transparent transparent;
}


/* ********************************************
                MODEL WRAPPER
******************************************** */
.models-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3vw;
}

.models-container .model-wrapper {
    width: 100%;
    margin: 3.5vw 0;
    display: grid;
    justify-content: center;
    position: relative;
}

.model-wrapper .model-image, .model-image img {
    width: 100%;
}

.model-wrapper .model-info {
    margin-top: calc(90px + 3vw);
}

.model-wrapper .model-info h3 {
    /*width: fit-content;*/
    width: max-content;
    max-width: 38rem;
    font-size: 4.5rem;
    padding-right: 15px;
    margin-bottom: 3px;
    position: relative;
}

.model-wrapper .model-info h3:after {
    content: '';
    position: absolute;
    left: -2rem;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid #22231C;
}

.model-wrapper .model-info h3 .line_2 {
    font-size: 0.5em;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    display: block;
}

.model-wrapper .model-info a {
    width: 110px;
    height: 110px;
    display: block;
    position: absolute;
    bottom: 72%;
    left: 95%;
}

.model-wrapper .model-info p {
    font-size: 1.2rem;
    line-height: 1.7rem;
}


/* ODD */
.models-container .model-wrapper:nth-of-type(odd) {
    margin-left: -7vw;
    grid-template-columns: 65% 25%;
}

.model-wrapper:nth-of-type(odd) .model-info {
    width: 170%;
    margin-left: -6vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.model-wrapper:nth-of-type(odd) .model-info p {
    padding: 1rem 2.8vw 0 min(7.5vw, 8.2rem);
}


/* EVEN */
.models-container .model-wrapper:nth-of-type(even) {
    grid-template-columns: 25% 65%;
}

.models-container .model-wrapper:nth-of-type(even) .model-image {
    margin-left: 3vw;
    grid-row-start: 1;
    grid-column-start: 2;
    grid-column-end: 3;
}

.models-container .model-wrapper:nth-of-type(even) .model-info {
    min-width: 20rem;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    position: absolute;
    right: 86%;
}

.model-wrapper:nth-of-type(even) .model-info p {
    padding: 1rem 5vw 0 min(7.5vw, 8.2rem);
}

/* specific models */
.model-wrapper[data-model = "superveloce"] {
    margin-left: 11vw;
}

.model-wrapper[data-model = "superveloce"] .model-info {
    right: 77%;
}

.model-wrapper[data-model = "400f-neo-scrambler"] {
    grid-template-columns: 65% 25% !important;
}

/* --------------------------------------------------- FINANCING ---------------------------------------------------*/
.financing {
    width: 100%;
    min-height: 670px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: #C5C4B9;
    position: relative;
    margin-top: 12vw;
}

.financing img.background {
    width: 58vw;
    object-fit: cover;
}

.financing .financing-info {
    position: absolute;
    left: 4vw;
    top: 11vw;
}

.financing-info h2 {
    background-color: #fff;
    width: fit-content;
    padding: 0.4vw 5vw 0.5vw 4.2vw;
    font-size: 7.2rem;
    z-index: 1;
    position: relative;
}

.financing-info p {
    background-color: #fff;
    width: 650px;
    padding: 4vw 5vw 3.5vw 3.3vw;
    margin-left: min(11.3rem, 10.3vw);
    margin-top: -60px;
    font-size: 1.2rem;
    line-height: 1.7rem;
}

.financing-info a.more-info {
    display: block;
    min-width: 140px;
    min-height: 140px;
    width: 9vw;
    height: 9vw;
    position: absolute;
    bottom: -4vw;
    left: 5vw;
}


/* ----------------------------------------- VEHICULES EN STOCK -------------------------------------------*/
/* ********************************************
            CATEGORY CONTAINER
******************************************** */
.in-stock-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.in-stock-container > div {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.in-stock-container:not(:nth-last-child(2)) {
    margin-bottom: 15vw;
}

.in-stock-container:last-of-type {
    margin: 4vw;
}

.in-stock-container h2 {
    text-align: center;
	max-width: 49rem;
	font-size: 8rem;
    line-height: 7.5rem;
}

.in-stock-container a.button {
    margin: 0 auto;
    z-index: 2;
}

.in-stock-container figure {
    width: 68vw;
    margin-top: -4vw;
    min-width: 750px;
}

.in-stock-container figure img {
    width: 100%;
}


/* ----------------------------------------- SERVICES -------------------------------------------*/
/* ********************************************
                CONTAINER 1
******************************************** */
.service-container-1, .service-container-1 .service-description,  .service-container-1 .service-description figure img {
    width: 100%;
}

.service-container-1, .service-container-2, .service-container-1 .wp-block-group__inner-container:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h2 + p.brief {
    font-family: "Montserrat-Light";
    color: #363635;
    font-size: 2.4rem;
    line-height: 2.9rem;
    padding: 0 10px;
}

.service-container-1 .service-description {
    margin-top: 5vw;
}

.service-container-1 .service-description .wp-block-group__inner-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.service-container-1 .service-description figure {
    width: 50vw;
    display: block;
}

.service-container-1 .service-description p {
    background-color: #C5C4B9;
    width: 56vw;
    height: fit-content;
    margin-left: -12vw;
    padding: 9vw 7vw;
}


.service-container-1 .service-description p, .service-container-2 .gallery p, .service-container-2 .gallery a {
    text-align: left;
    line-height: 1.8rem;
    font-size: 1.2rem;
}

.service-container-2 .gallery a {
    font-family: "Montserrat-Medium", Verdana, sans-serif;
}


/* ********************************************
                CONTAINER 2
******************************************** */
.service-container-2  {
    margin-top: 14vw;
}

.service-container-2 .gallery {
    width: 100%;
    margin-top: 5vw;
}

.service-container-2 .gallery .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: 60% 40%;
}

.service-container-2 .gallery #atelier-content {
    background-color: #C5C4B9;
    padding: 9vw 7vw;
}

.service-container-2 .gallery #atelier-content > div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-container-2 .gallery p {
    margin: 0;
}

.service-container-2 .gallery figure, .service-container-2 .gallery figure img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    margin: 0;
}

.service-container-2 .gallery figure {
    height: 43vw !important;
}

/* ----------------------------------------- EVENTS -------------------------------------------*/
/* ********************************************
            EVENT CONTAINER
******************************************** */
.events-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 9vw 8vw 0 8vw;
}

.events-container .event-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #C5C4B9;  
    margin-bottom: 1.5vw;
}

.event-wrapper .thumbnail-wrapper {
    display: block;
    width: 48%;
    align-self: stretch;
}

.event-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-wrapper .event-excerpt {
    width: 52%;
    padding: 3vw 3vw 5.5vw 3vw;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-wrapper .event-excerpt > div {
    padding-top: 2vw;
}

.event-wrapper .event-excerpt span, .event-popup .single-event-container .header span {
    display: block;
    font-family: "Montserrat-Medium";
    font-size: 1.2rem;
    letter-spacing: 1px;
	text-transform: uppercase;
    margin-bottom: 9px;
}

.event-excerpt a.title:hover {
    color: #22231C;
    text-decoration: none;
}

.event-excerpt a.title h3 {
    color: #22231C;
    text-transform: none;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.event-excerpt p {
    font-size: 1.1rem;
    letter-spacing: 0.7px;
    line-height: 1.6rem;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    white-space: break-spaces;
}

/* pagination */
.pagination {
    width: fit-content;
    display: block;
    margin: 2rem auto 0 auto;
}


.pagination .nav-links {
    display: flex;
    flex-direction: row;
    grid-column-gap: 5px;
}

.pagination a, .pagination span.current {
    font-size: 1.3rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
}

.pagination a {
    font-family: "Montserrat-Medium", Verdana, sans-serif;
    cursor: pointer;
}

.pagination span.current {
    font-family: "Montserrat-Bold", Verdana, sans-serif;
    background-color: #9C9987;
    color: #fff;
}


/* ********************************************
                    POP-UP
******************************************** */
.event-popup {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5vw 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9990;
    position: fixed;
    cursor: pointer;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.6s ease;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
}

.event-popup.loaded {
    opacity: 1;
}

.lds-ring {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    top: calc(45% - 40px);
    left: calc(50% - 40px);
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

.event-popup .single-event-container {
    width: max(75%, 800px);
	max-width: 800px;
    margin: 0 auto;
    padding-bottom: 4rem;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    cursor: auto;
    display: none;
}

.event-popup .close-popup {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    cursor: pointer;
    border: none;
    position: absolute;
    padding: 0;
    top: 0;
    right: 0;
    z-index: 5;
}

.event-popup .close-popup:hover {
    background-color: #C5C4B9;
}

.event-popup .close-popup span {
    width: 25px;
    display: block;
    position: absolute;
    border-bottom: 3px solid #fff;
}

.event-popup .close-popup span:nth-of-type(1) {
    transform: rotate(45deg);
}

.event-popup .close-popup span:nth-of-type(2) {
    transform: rotate(-45deg);
}

.event-popup img.thumbnail {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 3rem;
}

.event-popup .popup_content {
    padding-left: 80px;
    padding-right: 80px;
}

.event-popup .single-event-container .header h1 {
    font-family: "Montserrat-Bold", Verdana, sans-serif;
    color: #22231C;
    text-transform: none;
    font-size: 2.5rem;
    letter-spacing: 0px;
    line-height: 3.5rem;
    margin-bottom: 2rem;
}

.event-popup .single-event-container p, .event-popup .single-event-container a, .event-popup .single-event-container p strong, .event-popup .single-event-container p em, .event-popup .single-event-container p b {
    font-size: 1.12rem;
    line-height: 1.8rem;
    letter-spacing: 0.4px;
}

.event-popup .single-event-container a {
    font-family: "Montserrat-Medium", Verdana, sans-serif;
    color: #000;
}

.event-popup .single-event-container a:hover {
    color: #C5C4B9;
}

.event-popup .single-event-container p strong {
    font-family: "Montserrat-SemiBold", Verdana, sans-serif;
}


/* ----------------------------------------- CONTACTS -------------------------------------------*/
/* ********************************************
                CONTACT DETAILS
******************************************** */
.contacts-container {
    width: 83%;
    display: flex;
    flex-direction: row;
    margin: 0 auto 6.5vw auto;
    position: relative;
}

.contacts-container .wp-block-group__inner-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.contacts-container figure:first-of-type {
    width: 63.5%;
    height: 62vw;
    min-height: 650px;
}

.contacts-container figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contacts-container .contact-details {
    width: 45vw;
    min-width: 550px;
    position: absolute;
    background-color: #C5C4B9;
    display: block;
    margin-left: -17vw;
    height: fit-content;
    position: relative;
}

.contacts-container .contact-details .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    padding: 4vw 6vw 6vw 6vw;
    align-items: flex-start;
}

.contact-details a.more-info {
    position: absolute;
    width: 135px;
    height: 135px;
    min-height: fit-content;
    left: 29rem;
}

.contact-details p.coordinates {
    font-size: 1.6rem;
    letter-spacing: 2px;
    line-height: 2.2rem;
    margin-top: 90px;
    margin-bottom: 8vw;
    text-transform: uppercase;
}

.contact-details p.coordinates span {
    font-family: "Montserrat-Bold";
}

.contact-details h6 {
    margin-bottom: 0;
}

.contact-details p:not(.coordinates), .contact-details p:not(.coordinates) a  {
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin-bottom: 5rem;
}

.contact-details p:not(.coordinates) span {
    font-family: "Montserrat-Light";
}

/* ********************************************
                CONTACT FORM
******************************************** */
.contact-form {
    width: 50%;
    min-width: 650px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
}

.contact-form h3 {
    font-size: 3.5rem;
    padding: 0 6vw;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 87%;
    margin: 0 auto;
}

.contact-form form .form-field {
    width: 100%;
}

.contact-form form .form-col2 {
    width: 100%;
    display: inline-grid;
    grid-template-columns: 47.5% 47.5%;
    justify-content: space-between;
}


.contact-form .message-field + p {
    width: 100%;
    align-self: flex-start;
    text-align: left;
    padding: 2px 20px;
}

.contact-form .message-field + p span {
    padding-left: 0;
    margin-left: 0;
}

.acceptance-181 span, .acceptance-181 a {
    font-family: "Montserrat-Regular";
    font-size: 1.05rem;
}

.contact-form form #submit {
    margin-top: 1rem;
    position: relative;
}

.contact-form form input[type="submit"] {
    font-size: 2.5rem;
    border: none;
    border-bottom: 4px solid #22231C;
    padding-top: 0.5rem;
    padding-bottom: 0.4rem;
    transition: color 0.35s ease-out;
    -webkit-transition: color 0.35s ease-out;
    -moz-transition: color 0.35s ease-out;
    -o-transition: color 0.35s ease-out;
}

.contact-form form #submit:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    bottom: 0;
    left: 0;
    background-color: #22231C;
    transform-origin: bottom;
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
    z-index: -1;
}

.contact-form form #submit:hover:after {
    transform: scaleY(1);
    transition: transform 0.35s ease-out;
    -webkit-transition: transform 0.35s ease-out;
    -moz-transition: transform 0.35s ease-out;
    -o-transition: transform 0.35s ease-out;
}

.contact-form form #submit:hover input {
    color: #fff;
    transition: color 0.35s ease-out;
    -webkit-transition: color 0.35s ease-out;
    -moz-transition: color 0.35s ease-out;
    -o-transition: color 0.35s ease-out;
}

.contact-form form #submit p {
	margin-bottom: 0;
}


/* --------------------------------------------------------------------------*/
/* ********************************************
                CUSTOM ANIMATIONS   
******************************************** */
#footer-col-2 {
    transition-delay: .1s !important;
}


/* ********************************************
                PRIVACY POLICY
******************************************** */
.privacy-policy .page-header .page-title h1 {
    max-width: 60rem;
}

.privacy-policy .main-wrapper {
    padding-top: 11rem;
}

.privacy-policy .page-content {
    text-align: left;
    margin-left: 13vw;
    max-width: 800px;
}

.privacy-policy .page-content h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    margin-bottom: 15px;
}

.privacy-policy .page-content p, .privacy-policy .page-content h1, .privacy-policy .page-content a {
    width: 100%;
    text-align: left;
}



/* ********************************************
                COOKIES NOTICE
******************************************** */
#cookie-notice {
    bottom: 15px;
    background-color: transparent !important;
}

#cookie-notice .cookie-notice-container {
    width: fit-content;
    max-width: 570px;
    color: #fff;
    margin: 0 auto;
    font-family: var(--montserrat);
    font-size: 1rem;
    padding: 1em 1.5em;
    box-shadow: 0 9px 12px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
}

#cookie-notice .cn-button:not(.cn-button-custom) {
    color: #000 !important;
    background-color: #C5C4B9 !important;
    font-family: var(--montserrat-semibold) !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
}

.cn-close-icon {
    display: none !important;
}
