/*!
Theme Name: Riva55 Theme
Author: Jessica Croce - Stazione.Club
Description: WordPress Custom Theme
Version: 1.0
*/

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #393939;
    --secondary: #3E493A;
    --tertiary: #C40000;
    --quaternary: #97918C;
    --white: #F6F5EE;
    --black: #B7B7B7;

    --border-radius: 80px;

    --font-primary: "stinger-variable";
    --font-secondary: "stinger-variable";

    --item-margin: 20px;
    --item-margin-xs: 10px;

    --space-xxs: 10px;
    --space-xs: 20px;
    --space-sm: 40px;
    --space-md: 60px;
    --space-lg: 80px;
    --space-xl: 100px;
    --space-xxl: 160px;
}

/* Lenis */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Body */

body {
    font-family: var(--font-secondary);
    font-variation-settings: "wdth" 120;
    background-color: var(--secondary);
    overflow-x: hidden;
    -webkit-appearance: none;
    color: var(--black);
    letter-spacing: 0.02em;
}

#wpadminbar,
#wpadminbar * {
    font-variation-settings: normal !important;
}

.page-bg-transition {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

main,
header,
footer {
    position: relative;
    z-index: 1;
}

.change-bg-black,
.change-bg-white {
    color: var(--black);
    transition: color 1.4s ease, border-color 1.4s ease;
}

.change-bg-black.bg-active {
    color: var(--black);
}

.change-bg-white.bg-active {
    color: var(--quaternary);
}

.change-bg-black *,
.change-bg-white * {
    transition: color 1.4s ease, border-color 1.4s ease;
}

.change-bg-black.bg-active .button {
    color: var(--black);
}

.change-bg-white.bg-active .button {
    color: var(--quaternary);
}

/* Contenitori */

.container { min-width: 1100px; }

.subcontainer { width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0 auto; }

/* Flex */

.flex { display: flex; }

.flexcenter { align-items: center;
    justify-content: center; }

.row { flex-direction: row; }

.column { flex-direction: column; }

.row-reverse { flex-direction: row-reverse; }

.column-reverse { flex-direction: column-reverse; }

.wrap { flex-wrap: wrap; }

.space-between { justify-content: space-between; }

.justifycenter { justify-content: center; }

.alignstart { align-items: flex-start; }

.aligncenter { align-items: center; }

.alignend { align-items: flex-end; }

.justifystart { justify-content: flex-start; }

.justifyend { justify-content: flex-end; }

/* Img */

.obj-cover { object-fit: cover; }

.obj-contain { object-fit: contain; }

/* Margin */

.m0a { margin: 0 auto; }

.mla { margin-left: auto; }

.mra { margin-right: auto; }

.mta { margin-top: auto; }

.mba { margin-bottom: auto; }

/* Width */

.wh8 { width: 8.33333%; }

.wh16 { width: 16.66666%; }

.wh20 { width: 20%; }

.wh25 { width: 25%; }

.wh33 { width: 33.33333%; }

.wh40 { width: 40%; }

.wh50 { width: 50%; }

.wh60 { width: 60%; }

.wh66 { width: 66.66666%; }

.wh75 { width: 75%; }

.wh83 { width: 83.33333%; }

.wh90 { width: 90%; }

.wh100 { width: 100%; }

/* Font */

.regular { font-weight: 400; }

.medium { font-weight: 500; }

.semibold { font-weight: 600; }

.bold { font-weight: 700; }

.italic { font-style: italic; }

.uppercase { text-transform: uppercase; }

.center { text-align: center; }

.right { text-align: right; }

.left { text-align: left; }

/* Heights */

.vh33 { height: 33.33333vh; }

.vh40 { height: 40vh; }

.vh50 { height: 50vh; }

.vh60 { height: 60vh; }

.vh66 { height: 66.66666vh; }

.vh80 { height: 80vh; }

.vh100 { height: 100vh; }

.h100 { height: 100%; }

.h50 { height: 50%; }

/* Divisori */

.space-xxs { padding: var(--space-xxs); }

.space-xs { padding: var(--space-xs); }

.space-sm { padding: var(--space-sm); }

.space-md, .space { padding: var(--space-md); }

.space-lg { padding: var(--space-lg); }

.space-xl { padding: var(--space-xl); }

.space-xxl { padding: var(--space-xxl); }

.p-xxs { padding: var(--space-xxs); }

.p-xs { padding: var(--space-xs); }

.p-sm { padding: var(--space-sm); }

.p-md { padding: var(--space-md); }

.p-lg { padding: var(--space-lg); }

.p-xl { padding: var(--space-xl); }

.p-xxl { padding: var(--space-xxl); }

.py-xxs { padding-top: var(--space-xxs);
    padding-bottom: var(--space-xxs); }

.py-xs { padding-top: var(--space-xs);
    padding-bottom: var(--space-xs); }

.py-sm { padding-top: var(--space-sm);
    padding-bottom: var(--space-sm); }

.py-md { padding-top: var(--space-md);
    padding-bottom: var(--space-md); }

.py-lg { padding-top: var(--space-lg);
    padding-bottom: var(--space-lg); }

.py-xl { padding-top: var(--space-xl);
    padding-bottom: var(--space-xl); }

.py-xxl { padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl); }

.px-xs {
    padding-right: var(--space-xs);
    padding-left: var(--space-xs);
}

.pb-xxs { padding-bottom: var(--space-xxs); }

.pb-xs { padding-bottom: var(--space-xs); }

.pb-sm { padding-bottom: var(--space-sm); }

.pb-md { padding-bottom: var(--space-md); }

.pb-lg { padding-bottom: var(--space-lg); }

.pb-xl { padding-bottom: var(--space-xl); }

.pb-xxl { padding-bottom: var(--space-xxl); }

.pt-xxs { padding-top: var(--space-xxs); }

.pt-xs { padding-top: var(--space-xs); }

.pt-sm { padding-top: var(--space-sm); }

.pt-md { padding-top: var(--space-md); }

.pt-lg { padding-top: var(--space-lg); }

.pt-xl { padding-top: var(--space-xl); }

.pt-xxl { padding-top: var(--space-xxl); }

/* Position */

.p-rel { position: relative; }

.p-abs { position: absolute; }

/* Other */

a { text-decoration: none;
    cursor: pointer;
    }

.padding-right-5 { padding-right: 5%; }

.padding-left-5 { padding-left: 5%; }

.padding-left { padding-left: 50px; }

.padding-right { padding-right: 50px; }

.padding-top { padding-top: 50px; }

.padding-bottom { padding-bottom: 50px; }

.bg-center { background-position: center;
    background-size: cover; }

.overflow-hidden { overflow: hidden; }

.border-radius-50 { border-radius: 50%; }

.border-radius { border-radius: var(--border-radius); }

.border-radius-big {
    border-radius: 280px;
}

@media (min-width: 1800px) {
    .border-radius-big {
        border-radius: 400px;
    }
}

.grecaptcha-badge { visibility: hidden !important; }

.item-margin-bottom {
    margin-bottom: var(--item-margin);
}

.item-margin-bottom-xs {
    margin-bottom: var(--item-margin-xs);
}

/* Grid */

.grid {
    display: grid;
    gap: 40px;
    }

.col-2 { grid-template-columns: repeat(2, 1fr); }

.col-3 { grid-template-columns: repeat(3, 1fr); }

.col-4 { grid-template-columns: repeat(4, 1fr); }

.col-5 { grid-template-columns: repeat(5, 1fr); }

.col-6 { grid-template-columns: repeat(6, 1fr); }

.gap-xxs { gap: var(--space-xxs); }

.gap-xs { gap: var(--space-xs); }

.gap-sm { gap: var(--space-sm); }

.gap-md { gap: var(--space-md); }

.gap-lg { gap: var(--space-lg); }

.gap-xl { gap: var(--space-xl); }

.gap-xxl { gap: var(--space-xxl); }

/* Titoli e Paragrafi */

h1 {
    font-family: var(--font-primary);
    font-weight: 200;
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    line-height: 1.2;
}

h2, .title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(2.5rem, 3.2vw, 3rem);
    line-height: 1.1;
}

h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    line-height: 1.15;
}

p {
    font-family: var(--font-secondary);
    font-weight: 200;
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    line-height: 1.3;
}

ul li {
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    line-height: 1.2;
    font-weight: 200;
}

/* Colors */

.primary { color: var(--primary); }

.bg-primary { background-color: var(--primary); }

.secondary { color: var(--secondary); }

.bg-secondary { background-color: var(--secondary); }

.tertiary { color: var(--tertiary); }

.bg-tertiary { background-color: var(--tertiary); }

.quaternary { color: var(--quaternary); }

.bg-quaternary { background-color: var(--quaternary); }

.white { color: var(--white); }

.bg-white { background-color: var(--white); }

.black { color: var(--black); }

.bg-black { background-color: var(--black); }

/* Cursor */

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: #888888;
    opacity: 0;
    z-index: 10000;
    user-select: none;
    pointer-events: none;
}

/* Pulsanti */

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 200;
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    line-height: 1.2;
    transition: all 0.5s ease;
    width: max-content;
    height: max-content;
    cursor: pointer;
    position: relative;
    color: var(--white);
}

.button::after {
    content: "";
    left: 0;
    right: 0;
    height: 1px;
    background: currentColor;
    position: absolute;
    bottom: -5px;
    width: 100%;
    transition: all 0.4s linear;
}

.button i {
    margin-left: 10px;
    transition: all 0.5s ease;
}

.button:hover::after {
    width: 0;
}

.button:hover i {
    transform: rotate(-45deg);
}

/*GO TOP*/

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.7);
    width: 50px;
    height: 50px;
    z-index: 11;
    cursor: pointer;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}
#return-to-top i {
    color: var(--primary);
    margin: 0;
    position: relative;
    left: 16px;
    top: 14px;
    font-size: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: var(--primary);
}
#return-to-top:hover i {
    color: var(--white);
    top: 5px;
}

/* Overlay */

.overlay {
    top: 0;
    background: rgba(0,0,0,0.5);
    bottom: 0;
    left: 0;
    z-index: 10;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s linear;
    margin: auto; }

.overlay-sm { background: rgba(0,0,0,0.3); }

.overlay-lg { background: rgba(0,0,0,0.7); }

/* Header */

.mobile-menu {
    display: none;
}

.main-tool-bar {
    --header-color: var(--white);

    position: fixed;
    height: 90px;
    display: flex;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 11;
    background: transparent;
    justify-content: end;
    transition: height 0.45s ease;
}

.main-tool-bar.is-scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.menu-principale li a {
    position: relative;
    font-family: var(--font-secondary);
    color: var(--header-color);
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 200;
    transition: color 0.45s ease, opacity 0.45s ease, text-shadow 0.45s ease;
}

.main-tool-bar.header-light {
    --header-color: var(--white);
}

.main-tool-bar.header-light .menu-principale li a {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.main-tool-bar.header-dark {
    --header-color: var(--black);
}

.main-tool-bar.header-dark .menu-principale li a {
    text-shadow: none;
}

.floating-header-logo {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.45s ease;
}

.main-tool-bar.is-scrolled .floating-header-logo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.floating-header-logo img {
    display: block;
    height: 42px;
    width: auto;
    transition: filter 0.45s ease, opacity 0.45s ease;
}

.main-tool-bar.header-light .floating-header-logo img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7476%) hue-rotate(185deg) brightness(107%) contrast(96%);
}

.main-tool-bar.header-dark .floating-header-logo img {
    filter: none;
}

.menu-principale li {
    list-style: none;
    margin-right: 25px;
    align-items: center;
    display: flex;
    position: relative;
}

.menu-principale li.menu-item { height: 100%; }

.menu-principale li:last-child {
    margin-right: 0;
}

.menu-principale li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: top center;
    z-index: 10;
    background: var(--tertiary);
    transition: width .35s ease;
}

.menu-principale li:hover > a::after,
.menu-principale li.scroll-active > a::after {
    width: 40px;
}

.logo {
    transition: all 0.3s linear;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7476%) hue-rotate(185deg) brightness(107%) contrast(96%);
}

/* Responsive */

.none-desktop { display: none; }

.none-sm { display: flex; }

/* Vimeo */

.vimeo-wrapper { position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.vimeo-wrapper iframe { position: absolute;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Img fit */

.img-fit {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
}

.img-fit img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */

.fade {
    opacity: 0;
    transition: 1.7s all cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.fade.in-page {
    opacity: 1;
}
.fade-in {
    transform: translateY(50px);
    opacity: 0;
    transition: 1s all cubic-bezier(0.53, 0.03, 0.01, 0.46);
}
.fade-in.in-page {
    transform: translateY(0);
    opacity: 1;
}

.reveal-from-left img, .reveal-from-left .overlay, .reveal-all.reveal-from-left * {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
    transition: 1.7s all cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-from-left.in-page img, .reveal-from-left.in-page .overlay, .reveal-all.reveal-from-left.in-page * {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-from-right img, .reveal-from-right .overlay {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: 1.7s all cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-from-right.in-page img, .reveal-from-right.in-page .overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Img Hover */

.squared {
    aspect-ratio: 1;
}

.img-hover-container {
    overflow: hidden;
}

.img-hover-container img {
    transform: scale(1);
    transition: all 0.6s ease;
}

.img-hover-container:hover img {
    transform: scale(1.03);
}

/* Elements */


/* Parallax section */

.parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    border-radius: var(--border-radius);
    isolation: isolate;
}

.parallax-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
    will-change: transform;
    background-size: cover;
    background-position: center;
}

.img-overlay-wrapper {
    min-height: 80vh;
    min-height: 80svh;
}

.text-overlay {
    position: relative;
    z-index: 10;
}

.img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 5%;
    padding-right: 5%;
    z-index: 9;
    pointer-events: none;
}

.img-overlay img {
    display: block;
    flex: 0 0 auto;
    width: clamp(300px, 28vw, 540px) !important;
    max-width: 46%;
    height: auto;
    aspect-ratio: 560 / 650;
    object-fit: cover;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.img-overlay-1,
.img-overlay-2 {
    height: auto;
}

@media (min-width: 1800px) {
    .img-overlay img {
        width: clamp(460px, 24vw, 620px) !important;
        max-width: 48%;
    }
}

@media (min-width: 2400px) {
    .img-overlay img {
        width: clamp(540px, 23vw, 700px) !important;
        max-width: 48%;
    }
}

.mini-logo {
    max-width: 100px;
}

/* -----------------------------
 * Crivel visual
 * ----------------------------- */

.crivel-visual {
    position: relative;
    height: clamp(420px, 48vw, 680px);
    min-height: 420px;
    overflow: visible;
}

.img-crivel,
.img-bottle {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: none;
    height: auto;
    object-fit: contain;
    will-change: transform;
    pointer-events: none;
}

.img-crivel {
    width: clamp(420px, 38vw, 720px);
    z-index: 1;
}

.img-bottle {
    width: clamp(180px, 11vw, 230px);
    z-index: 2;
}

@media (min-width: 1600px) {
    .crivel-visual {
        height: clamp(600px, 42vw, 820px);
    }

    .img-crivel {
        width: clamp(680px, 34vw, 860px);
    }

    .img-bottle {
        width: clamp(220px, 10vw, 280px);
    }
}

@media (min-width: 1900px) {
    .crivel-visual {
        height: 820px;
    }

    .img-crivel {
        width: 900px;
    }

    .img-bottle {
        width: 290px;
    }
}

@media (max-width: 991px) {
    .crivel-visual {
        height: clamp(420px, 80vw, 580px);
        margin-top: 3rem;
    }

    .img-crivel {
        width: clamp(260px, 70vw, 360px);
    }

    .img-bottle {
        width: clamp(135px, 32vw, 200px);
    }
}

/* Contacts */

.contacts *, footer * {
    font-weight: 200;
    font-size: clamp(1.1rem, 1vw, 1.2rem);
    line-height: 1.2;
}

.contacts a, footer a {
    color: var(--white);
    transition: all 0.3s linear;
}

.contacts a:hover, footer a:hover {
    opacity: 0.5;
}

/* Line SVG */

.site-main h2, .site-main p, .site-main .logo, .site-main .button {
    position: relative;
    z-index: 4;
}

.site-main {
    position: relative;
    overflow: hidden;
}

.decorative-lines-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
    opacity: 0.85;
    color: var(--tertiary);
    --decor-left-x: 50%;
    --decor-right-x: 50%;
}

.decorative-lines-item {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decorative-lines-svg {
    position: absolute;
    top: 0;
    width: max(100vw, 1440px);
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.decorative-lines-svg path {
    fill: currentColor;
    will-change: transform;
}

.decorative-lines-left .decorative-lines-svg {
    left: var(--decor-left-x);
    transform: translateX(-50%);
}

.decorative-lines-right .decorative-lines-svg {
    left: var(--decor-right-x);
    transform: translateX(-50%);
}

@media (min-width: 1800px) {
    .decorative-lines-wrapper {
        --decor-left-x: 47%;
        --decor-right-x: 53%;
    }
}

@media (min-width: 2400px) {
    .decorative-lines-wrapper {
        --decor-left-x: 44%;
        --decor-right-x: 56%;
    }
}

@media (min-width: 2800px) {
    .decorative-lines-wrapper {
        --decor-left-x: 42%;
        --decor-right-x: 58%;
    }
}

/* Form */

.form p {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form br {
    display: none;
}

.form input[type='text'], .form input[type='tel'], .form input[type='email'], .form textarea, .form select {
    width: calc(50% - 10px);
    padding-bottom: var(--space-xs);
    padding-top: var(--space-xs);
    margin-bottom: 10px;
    transition: all 0.2s linear;
    border: unset;
    border-bottom: 1px solid #707070;
    color: var(--white);
    background: transparent;
    font-family: var(--font-primary);
    font-weight: 200;
    font-size: clamp(1.1rem, 1vw, 1.2rem);
    line-height: 1.2;
    font-variation-settings: "wdth" 120;
}

.form textarea {
    width: 100%;
    resize: none;
    height: 200px;
}

.form input[type='text']:focus, .form input[type='tel']:focus, .form input[type='email']:focus, .form textarea:focus {
    outline: none !important;
    box-shadow: unset;
    border-bottom: 1px solid var(--white);
}

.form input[type='submit'] {
    border: unset;
    padding: 10px 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: 40px;
    font-family: var(--font-primary);
    font-weight: 200;
    font-size: clamp(1.1rem, 1vw, 1.2rem);
    line-height: 1.2;
    transition: all 0.4s ease;
    font-variation-settings: "wdth" 120;
}

.form input[type='submit']:hover {
    background: var(--quaternary);
    color: var(--white);
}

.wpcf7-acceptance {
    font-size: clamp(1.1rem, 1vw, 1.2rem);
    width: 100%;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
    margin-bottom: var(--item-margin-xs);
    }

.wpcf7-acceptance a {
    color: var(--white);
    opacity: 0.5;
    text-decoration: underline;
    transition: all 0.2s linear;
    }

.wpcf7-acceptance a:hover {
    opacity: 1;
}

.wpcf7-spinner {
    display: none !important;
    visibility: hidden !important;
}

/* Footer */

footer {
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
}

.logo-footer {
    max-width: 200px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

/* Responsive Tablet */
@media only screen and (min-width: 768px) and (max-width: 1100px) {

    :root {
        --space-xxs: 8px;
        --space-xs: 15px;
        --space-sm: 30px;
        --space-md: 40px;
        --space-lg: 60px;
        --space-xl: 70px;
        --space-xxl: 110px;
    }

    .container { min-width: 768px; }

    .none-desktop { display: flex; }

    .none-tablet { display: none; }

    .hide-tablet { display: none !important; }

    .none-sm { display: flex; }

    .t-col { flex-direction: column; }

    .t-center { align-items: center;
        justify-content: center; }

    .wht50 { width: 50%; }

    .wht60 { width: 60%; }

    .wht100 { width: 100%; }

    .vht70 { min-height: 70vh; }

    .col-4 { grid-template-columns: 1fr 1fr 1fr; }

    .col-5 { grid-template-columns: 1fr 1fr 1fr; }

    .col-6 { grid-template-columns: 1fr 1fr 1fr; }

    .h-t-unset { height: unset; }

}

/* Responsive Mobile */

@media only screen and (max-width: 767px) {

    :root {
        --space-xxs: 5px;
        --space-xs: 10px;
        --space-sm: 20px;
        --space-md: 30px;
        --space-lg: 40px;
        --space-xl: 50px;
        --space-xxl: 80px;
    }

    .container { min-width: 319px; }

    .sm-col { flex-direction: column; }

    .sm-col-reverse { flex-direction: column-reverse; }

    .column-reverse { flex-direction: column; }

    .whs100 { width: 100%; }

    .whs20 { width: 20%; }

    .whs50 { width: 50%; }

    .whs80 { width: 80%; }

    .whs90 { width: 90%; }

    .vhs50 { height: 50vh; }

    .one { order: 1; }

    .two { order: 2; }

    .three { order: 3; }

    .four { order: 4; }

    .five { order: 5; }

    .six { order: 6; }

    .none-desktop { display: flex; }

    .none-sm { display: none; }

    .hide-sm { display: none !important; }

    .col-2, .col-3, .col-4, .col-5, .col-6 { grid-template-columns: 1fr; }

    .form input[type='text'], .form input[type='tel'], .form input[type='email'], .form select {
        width: 100%;
    }

    .h-sm-unset { height: unset; }

    .sticky-section {
        width: 100%;
        flex-grow: unset;
        align-self: unset;
        bottom: unset;
        overflow: hidden;
        position: static;
        height: unset;
    }

    .parallax-section {
        height: 70vh;
    }

    .parallax-section-bg {
        height: 100%;
    }

    .vimeo-wrapper { height: 70vh; }

    .vimeo-wrapper iframe { min-height: 70vh; }

    .img-overlay-wrapper {
        min-height: 70vh;
        min-height: 70svh;
    }

    .img-overlay {
        align-items: flex-start;
    }

    .img-overlay img {
        width: clamp(100px, 33vw, 200px) !important;
        max-width: 48%;
    }

    .logo-footer {
        max-width: 100px;
    }

    .crivel-visual {
        order: -1;
    }

    .pb-xxl-sm {
        padding-bottom: var(--space-xxl);
    }

    .aligncenter-sm {
        align-items: center;
    }

    .sm-center {
        text-align: center;
    }

}

@media (max-width: 1100px) {

    h1 br, h2 br, h3 br {
        display: none;
    }

    .desktop-menu { display: none; }
}