@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=auto");

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    color: #111111;
    font-family: "Raleway", sans-serif;
    font-variant-numeric: lining-nums;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
    scroll-behavior: smooth;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-variant-numeric: lining-nums;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* BAR */

.bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    border-bottom: solid 1px transparent;
    background-color: #FFFFFF;
    transition: 0.2s;
    z-index: 99;
}

.bar-compact {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom-color: rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.bar-layout {
    display: flex;
    column-gap: 24px;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.bar-brand {
    flex: none;
    display: flex;
    align-items: center;
}

.bar-brand-link {
    display: inline-flex;
}

.bar-brand-link img {
    width: 232px;
    height: 44px;
    transition: 0.2s;
}

.bar-compact .bar-brand-link img {
    width: 169px;
    height: 32px;
    transition: 0.2s;
}

.bar-nav {
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar-buttons {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 640px;
}

.bar-button {
    color: #999999;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    transition: 0.25s;
}

.bar-button:hover {
    color: #111111;
}

.touch .bar-button:hover {
    color: #717271;
}

.bar-button:active,
.touch .bar-button:active {
    color: #111111;
}

.bar-button-on {
    color: #111111;
    font-weight: 800;
}

.bar-button-on:hover {
    color: #111111;
}

.touch .bar-button-on:hover {
    color: #111111;
}

.bar-button-on:active,
.touch .bar-button-on:active {
    color: #111111;
}

.bar-actions {
    flex: none;
    display: flex;
    column-gap: 24px;
    align-items: center;
    justify-content: flex-end;
}

.bar-networks {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.bar-network {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 200px;
    background-color: #A0A1A2;
    transition: 0.25s;
}

.bar-network:hover {
    background-color: #111111;
    transform: scale(1.2);
}

.touch .bar-network:hover {
    background-color: #A0A1A2;
    transform: scale(1);
}

.bar-network:active,
.touch .bar-network:active {
    background-color: #111111;
    transform: scale(1.2);
}

.bar-network img {
    width: 100%;
    height: 100%;
}

.bar-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding-left: 21px;
    padding-right: 20px;
    border-radius: 100px;
    background-color: #555759;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    transition: 0.25s;
}

.bar-action:hover {
    background-color: #111111;
}

.touch .bar-action:hover {
    background-color: #A0A1A2;
}

.bar-action:active,
.touch .bar-action:active {
    background-color: #111111;
}

.bar-menu {
    display: none;
    align-items: center;
}

.bar-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 48px;
    height: 42px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

.bar-menu-line {
    width: 100%;
    height: 2px;
    background-color: #717271;
    transition: 0.25s;
}

.bar-menu-btn:hover .bar-menu-line {
    background-color: #111111;
}

.touch .bar-menu-btn:hover .bar-menu-line {
    background-color: #717271;
}

.bar-menu-btn:active .bar-menu-line,
.touch .bar-menu-btn:active .bar-menu-line {
    background-color: #111111;
}

.bar-fix {
    height: 92px;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background-color: #555759;
    animation: panel-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes panel-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    animation: panel-bg-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.panel-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.panel-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.panel-actions {
    display: flex;
    justify-content: center;
    column-gap: 16px;
}

.panel-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.5s;
}

.panel-close:hover img {
    transform: rotate(180deg);
}

.touch .panel-close:hover img {
    transform: rotate(0deg);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: rotate(180deg);
}

.panel-actions-buttons {
    flex: none;
    display: flex;
    column-gap: 22px;
    padding-bottom: 16px;
}

.panel-buttons {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 48px;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
    padding-top: 32px;
}

.panel-networks {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 16px;
    padding-bottom: 32px;
}

.panel-link-block {
    position: relative;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    opacity: 0;
    text-align: center;
    transform: translateY(-32px);
    animation-name: panel-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-link {
    display: inline-block;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s;
}

.panel-link:hover {
    opacity: 0.5;
}

.touch .panel-link:hover {
    opacity: 1;
}

.panel-link:active,
.touch .panel-link:active {
    opacity: 0.5;
}

.panel-link-on {
    opacity: 0.5;
}

.panel-link-on:hover {
    opacity: 0.5;
}

.touch .panel-link-on:hover {
    opacity: 0.5;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    opacity: 0.5;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.1s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.4s;
}

.panel-link-block:nth-child(5) {
    animation-delay: 0.5s;
}

.panel-link-block:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-action {
    padding-top: 24px;
    text-align: center;
}

.panel-social {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 200px;
    opacity: 0;
    transform: scale(0.75);
    cursor: pointer;
    animation-name: panel-social-anima;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-social img {
    width: 100%;
    height: 100%;
}

.panel-social:hover {
    background-color: #111111;
}

.touch .panel-social:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.panel-social:active,
.touch .panel-social:active {
    background-color: #111111;
}

.panel-social:nth-child(1) {
    animation-delay: 0.5s;
}

.panel-social:nth-child(2) {
    animation-delay: 0.75s;
}

.panel-social:nth-child(3) {
    animation-delay: 1s;
}

.panel-social:nth-child(4) {
    animation-delay: 1.25s;
}

@keyframes panel-social-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* GLOBALS */

.margin {
    padding-left: 24px;
    padding-right: 24px;
}

.lost {
    padding-top: 100px;
    padding-bottom: 200px;
}

.frame {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.frame-compact {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding-left: 21px;
    padding-right: 20px;
    border-radius: 100px;
    background-color: #222222;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.button:hover {
    background-color: #111111;
}

.touch .button:hover {
    background-color: #222222;
}

.button:active,
.touch .button:active {
    background-color: #111111;
}

.button-alt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding-left: 21px;
    padding-right: 20px;
    border-radius: 100px;
    background-color: #111111;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.button-alt:hover {
    background-color: #666666;
}

.touch .button-alt:hover {
    background-color: #111111;
}

.button-alt:active,
.touch .button-alt:active {
    background-color: #666666;
}

.button-alt-2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 40px;
    padding-left: 21px;
    padding-right: 20px;
    border-radius: 100px;
    background-color: transparent;
    border: solid 2px #999999;
    color: #888888;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.button-alt-2:hover {
    border-color: #111111;
    color: #111111;
}

.touch .button-alt-2:hover {
    border-color: #999999;
    color: #888888;
}

.button-alt-2:active,
.touch .button-alt-2:active {
    border-color: #111111;
    color: #111111;
}

.button-alt-2 svg {
    width: 18px;
}

.button-alt-2 path {
    width: 18px;
    fill: #888888;
    transition: 0.25s;
}

.button-alt-2:hover path {
    fill: #111111;
}

.touch .button-alt-2:hover path {
    fill: #888888;
}

.button-alt-2:active path,
.touch .button-alt-2:active path {
    fill: #111111;
}

.button-alt-3 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 40px;
    padding-left: 21px;
    padding-right: 20px;
    border-radius: 100px;
    background-color: transparent;
    border: solid 2px #111111;
    color: #111111;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.button-alt-3:hover {
    border-color: #666666;
    color: #666666;
}

.touch .button-alt-3:hover {
    border-color: #111111;
    color: #111111;
}

.button-alt-3:active,
.touch .button-alt-3:active {
    border-color: #666666;
    color: #666666;
}

.button-alt-3 svg {
    width: 18px;
    height: 18px;
}

.button-alt-4 svg {
    transform: translateY(1px);
}

.button-alt-3 path {
    width: 18px;
    fill: #111111;
    transition: 0.25s;
}

.button-alt-3:hover path {
    fill: #666666;
}

.touch .button-alt-3:hover path {
    fill: #111111;
}

.button-alt-3:active path,
.touch .button-alt-3:active path {
    fill: #666666;
}

.button-alt-5 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 40px;
    padding-left: 21px;
    padding-right: 20px;
    border-radius: 100px;
    background-color: #111111;
    border: solid 2px transparent;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.button-alt-5:hover {
    background-color: #666666;
}

.touch .button-alt-5:hover {
    background-color: #111111;
}

.button-alt-5:active,
.touch .button-alt-5:active {
    background-color: #666666;
}

.button-alt-5 svg {
    width: 18px;
    height: 18px;
}

.title-animated {
    opacity: 0;
    transform: translateY(-10px);
    animation-name: title-animated-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes title-animated-anima {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.caption-animated {
    opacity: 0;
    animation-name: caption-animated-anima;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-delay: 0.5s;
}

@keyframes caption-animated-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ENTRANCE */

.entrance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: calc(100% - 92px);
}

.entrance-picture {
    width: 100%;
    height: 100%;
    background-color: #D1D1D1;
    background-image: url(../assets/entrance.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.entrance-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 96px;
    padding-bottom: 124px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: #E2E2E2;
}

.entrance-block {
    display: none;
}

.entrance-block-alt {
    display: block;
}

#entrance-login {
    display: block;
}

.entrance-title {
    width: 100%;
    max-width: 380px;
    padding-bottom: 24px;
    color: #222222;
    font-size: 28px;
    line-height: 38px;
    text-align: center;
}

.entrance-caption {
    width: 100%;
    max-width: 380px;
    padding-bottom: 24px;
    color: #666666;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
}

.entrance-caption p {
    padding-bottom: 10px;
}

.entrance-caption p:last-of-type {
    padding-bottom: 0px;
}

.entrance-fields {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 380px;
    min-width: 380px;
    margin: 0 auto;
}

.entrance-field-password {
    position: relative;
}

.entrance-show-password {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 100%;
    background-image: url(../assets/show.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.entrance-hide-password {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 100%;
    background-image: url(../assets/hide.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.entrance-button {
    margin-top: 24px;
}

.entrance-code-label {
    color: #111111;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.entrance-code {
    display: grid;
    grid-template-columns: 44px 44px 44px 44px 44px 44px;
    column-gap: 8px;
    justify-content: center;
    padding-bottom: 12px;
}

.entrance-help {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    color: #888888;
    cursor: pointer;
    transition: 0.25s;
}

.entrance-help-alt {
    margin-top: -13px;
}

.entrance-help-label {
    padding-bottom: 1px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
}

.entrance-help:hover {
    color: #111111;
}

.touch .entrance-help:hover {
    color: #888888;
}

.entrance-help:active,
.touch .entrance-help:active {
    color: #111111;
}

.entrance-profile {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 16px;
    border-radius: 500px;
    background-color: #FFFFFF;
    background-image: url(../assets/users/none.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* DISPLAY */

.display {
    position: relative;
    display: flex;
    width: 100%;
    min-height: calc(100% - 92px);
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 24px;
    background-color: #E2E2E2;
}

.display-layout {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.display-swiper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    --swiper-theme-color: #FFFFFF;
    --swiper-pagination-left: 0px;
    --swiper-pagination-right: 0px;
    --swiper-pagination-bottom: 32px;
    --swiper-pagination-bullet-size: 7px;
    --swiper-pagination-bullet-width: 7px;
    --swiper-pagination-bullet-height: 7px;
    --swiper-pagination-bullet-horizontal-gap: 5px;
    --swiper-pagination-bullet-inactive-color: rgb(255, 255, 255);
    --swiper-pagination-bullet-inactive-opacity: 0.3;
}

.swiper-pagination-frame {
    width: 100%;
    max-width: 1428px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.swiper-pagination-frame-2 {
    position: relative;
}

.display-swiper .swiper-pagination {
    text-align: left !important;
    left: 0px !important;
}

.display-slide {
    position: relative !important;
    width: 100% !important;
    overflow: hidden;
}

.slide-picture {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: slide-picture-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    overflow: hidden;
}

@keyframes slide-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 17, 17, 0.65) 0%, rgba(17, 17, 17, 0) 100%);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 32px;
    padding-left: 24px;
    padding-right: 24px;
}

.slide-layout {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1380px;
    height: 100%;
    margin: 0 auto;
}

.slide-frame {
    width: calc(100% - 400px - 24px);
}

.slide-title {
    width: 100%;
    max-width: 640px;
    padding-bottom: 20px;
    color: #FFFFFF;
    font-size: 56px;
    line-height: 58px;
    font-weight: 700;
}

.display-slide-on .slide-title {
    animation-name: slide-title-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes slide-title-anima {
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-caption {
    width: 100%;
    max-width: 640px;
    padding-bottom: 34px;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 30px;
}

.display-slide-on .slide-caption {
    animation-name: slide-caption-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes slide-caption-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.quick {
    width: 400px;
    padding: 24px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    z-index: 2;
}

.quick-title {
    padding-top: 4px;
    padding-bottom: 18px;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

/* FORMS */

.fields {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
}

.fields-alt {
    row-gap: 18px;
}

.fields-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fields-double-alt {
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.textbox {
    width: 100%;
    height: 38px;
    padding: 8px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #111111;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    transition: 0.25s;
}

.textbox:focus {
    box-shadow: 0 0 1px 1px #444444;
}

.textbox::placeholder {
    color: #999999;
    font-weight: 500;
    opacity: 1;
}

.textbox-big {
    height: 44px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
}

.textbox-alt {
    width: 100%;
    height: 42px;
    padding: 10px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 6px;
    background-color: #333333;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    transition: 0.25s;
}

.textbox-alt:focus {
    box-shadow: 0 0 1px 1px #999999;
}

.textbox-alt::placeholder {
    color: #AAAAAA;
    font-weight: 500;
    opacity: 1;
}

.textarea {
    width: 100%;
    height: 132px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #111111;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    resize: none;
    transition: 0.25s;
}

.textarea:focus {
    box-shadow: 0 0 1px 1px #444444;
}

.textarea::placeholder {
    color: #999999;
    font-weight: 500;
    opacity: 1;
}

.textarea::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    border-radius: 30px;
}

.textarea::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    border: solid 3px #FFFFFF;
}

.textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.textarea::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 30px;
}

.textarea-alt {
    width: 100%;
    height: 172px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 6px;
    background-color: #333333;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    resize: none;
    transition: 0.25s;
}

.textarea-alt:focus {
    box-shadow: 0 0 1px 1px #999999;
}

.textarea-alt::placeholder {
    color: #AAAAAA;
    font-weight: 500;
    opacity: 1;
}

.textarea-alt::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    border-radius: 30px;
}

.textarea-alt::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    border: solid 3px #FFFFFF;
}

.textarea-alt::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.textarea-alt::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 30px;
}

/* HOME */

.home-caption {
    width: 100%;
    max-width: 1040px;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #999999;
    font-size: 50px;
    line-height: 60px;
    font-weight: 300;
    text-align: center;
}

.home-caption strong {
    color: #333333;
    font-weight: 500;
}

/* ABOUT */

.about {
    padding-top: 90px;
    background: linear-gradient(135deg, rgba(204, 204, 204, 1) 0%, rgba(221, 221, 221, 1) 100%);
}

.about-title {
    padding-bottom: 48px;
    text-align: center;
}

.about-title-text {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: solid 2px #333333;
    color: #333333;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.about-content {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 52px;
    color: #333333;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
}

.about-content p {
    padding-bottom: 16px;
}

.about-content strong {
    font-weight: 700;
}

.about-pictures {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.about-picture-frame {
    flex: 1 0 calc(20% - 19.2px);
    max-width: calc(20% - 19.2px);
}

.about-picture {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 8px;
    background-color: #AAAAAA;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-picture-1 {
    background-image: url(../assets/about-1.jpg);
}

.about-picture-2 {
    background-image: url(../assets/about-2.jpg);
}

.about-picture-3 {
    background-image: url(../assets/about-3.jpg);
}

.about-picture-4 {
    background-image: url(../assets/about-4.jpg);
}

.about-picture-5 {
    background-image: url(../assets/about-5.jpg);
}

.about-marquee {
    padding-top: 64px;
    padding-bottom: 80px;
    background-color: transparent;
    overflow: hidden;
}

.about-marquee .carouselTicker__item {
    height: auto;
}

.about-marquee-caption {
    color: #BBBBBB;
    font-family: "Raleway", sans-serif;
    font-size: 18vw;
    line-height: 1;
    font-weight: 300;
    white-space: nowrap;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* PRODUCTS */

.products-title {
    text-align: center;
}

.products-title-text {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: solid 2px #333333;
    color: #333333;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding-top: 64px;
    padding-bottom: 132px;
}

.product-item {
    position: relative;
    display: block;
    flex: 1 0 calc(20% - 19.2px);
    max-width: calc(20% - 19.2px);
    border-radius: 16px;
    background-color: #E2E2E2;
    overflow: hidden;
}

.product-item-on {
    opacity: 0.3;
}

.product-item-picture {
    width: 100%;
    padding-bottom: 125%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.75s;
}

.product-item:hover .product-item-picture {
    transform: scale(1.25);
}

.touch .product-item:hover .product-item-picture {
    transform: scale(1);
}

.product-item:active .product-item-picture,
.touch .product-item:active .product-item-picture {
    transform: scale(1.25);
}

.product-item-on:hover .product-item-picture {
    transform: scale(1);
}

.touch .product-item-on:hover .product-item-picture {
    transform: scale(1);
}

.product-item-on:active .product-item-picture,
.touch .product-item-on:active .product-item-picture {
    transform: scale(1);
}

.product-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0) 100%);
}

.product-item-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    opacity: 0;
    transition: 0.75s;
}

.product-item:hover .product-item-shadow {
    opacity: 0.65;
}

.touch .product-item:hover .product-item-shadow {
    opacity: 0;
}

.product-item:active .product-item-shadow,
.touch .product-item:active .product-item-shadow {
    opacity: 0.65;
}

.product-item-name {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 24px;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 26px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

/* PRODUCT */

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    padding-top: 72px;
    padding-bottom: 72px;
}

.product-picture {
    width: 100%;
    height: 100%;
    background-color: #EFEFEF;
}

.product-intro {
    padding-top: 32px;
    padding-bottom: 64px;
}

.product-title {
    margin-left: -4px;
    padding-bottom: 32px;
    color: #999999;
    font-size: 64px;
    line-height: 74px;
    font-weight: 300;
}

.product-title strong {
    color: #333333;
    font-weight: 500;
}

.product-relations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 32px;
    margin-top: -14px;
}

.product-relation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 100px;
    background-color: #E2E2E2;
    color: #111111;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.product-relation:hover {
    background-color: #CCCCCC;
}

.touch .product-relation:hover {
    background-color: #E2E2E2;
}

.product-relation:active,
.touch .product-relation:active {
    background-color: #CCCCCC;
}

.product-relation-on {
    background-color: #111111;
    color: #FFFFFF;
}

.product-relation-on:hover {
    background-color: #111111;
    color: #FFFFFF;
}

.touch .product-relation-on:hover {
    background-color: #111111;
    color: #FFFFFF;
}

.product-relation-on:active,
.touch .product-relation-on:active {
    background-color: #111111;
    color: #FFFFFF;
}

.product-description {
    color: #333333;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.product-description p {
    padding-bottom: 16px;
}

.product-description p:last-of-type {
    padding-bottom: 0px;
}

.product-actions {
    display: flex;
    column-gap: 10px;
    padding-top: 40px;
    margin-left: -2px;
}

.product-tabs {
    display: flex;
    width: 100%;
    overflow: auto;
    overflow-y: hidden;
    column-gap: 26px;
    border-bottom: solid 1px #E2E2E2;
}

.product-tabs::-webkit-scrollbar {
    display: none;
}

.product-tab {
    padding-top: 16px;
    padding-bottom: 12px;
    border-bottom: solid 2px transparent;
    color: #999999;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.25s;
}

.product-tab:hover {
    color: #555555;
}

.touch .product-tab:hover {
    color: #999999;
}

.product-tab:active,
.touch .product-tab:active {
    color: #555555;
}

.product-tab-on {
    color: #111111;
    border-bottom-color: #111111;
}

.product-tab-on:hover {
    color: #111111;
}

.touch .product-tab-on:hover {
    color: #111111;
}

.product-tab-on:active,
.touch .product-tab-on:active {
    color: #111111;
}

.product-content {
    padding-bottom: 96px;
    padding-top: 32px;
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.product-content p {
    padding-bottom: 16px;
}

.product-content ul {
    padding-bottom: 16px;
    padding-left: 17px;
}

.product-content p:last-of-type {
    padding-bottom: 0px;
}

.product-block-columns {
    column-count: 2;
    column-gap: 24px;
}

.product-block-columns>div {
    break-inside: avoid;
    margin-bottom: 16px;
}

.product-block-item {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
}

.product-block-columns>div>div:nth-child(2) {
    padding-left: 10px;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
}

table th,
table td {
    border: 1px solid #DADADA;
    padding: 6px 10px;
    text-align: left;
}

table thead {
    background-color: #DADADA;
}

table tbody tr:nth-child(even) {
    background-color: #F9F9F9;
}

.product-block {
    display: none;
    opacity: 0;
    transform: translateY(16px);
}

.product-block-on {
    display: block;
    opacity: 1;
    transform: translateY(0px);
    animation: product-block-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes product-block-anima {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.product-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.product-thumb-frame {
    width: 100%;
}

.product-thumb {
    width: 100%;
    padding-bottom: 100%;
    background-color: #E2E2E2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.25s;
}

.product-thumb:hover {
    transform: scale(1.12);
    filter: brightness(120%);
}

.touch .product-thumb:hover {
    transform: scale(1);
    filter: brightness(100%);
}

.product-thumb:active,
.touch .product-thumb:active {
    transform: scale(1.12);
    filter: brightness(120%);
}

.product-thumb-on {
    opacity: 0.3;
}

.product-thumb-on:hover {
    transform: scale(1);
    filter: brightness(100%);
}

.touch .product-thumb-on:hover {
    transform: scale(1);
    filter: brightness(100%);
}

.product-thumb-on:active,
.touch .product-thumb-on:active {
    transform: scale(1);
    filter: brightness(100%);
}

.product-pictures {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background-color: #E2E2E2;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: zoom-in;
}

.product-image-show {
    animation: product-image-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.product-image-hidden {
    display: none;
}

@keyframes product-image-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.product-image-blur {
    position: absolute;
    top: -32px;
    left: -32px;
    width: calc(100% + 64px);
    height: calc(100% + 64px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(32px);
}

.product-image-blur-show {
    animation: product-image-blur-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.product-image-blur-hidden {
    display: none;
}

@keyframes product-image-blur-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.product-samples {
    display: flex;
    column-gap: 5%;
}

.product-series {
    flex: none;
}

.product-serie {
    padding-top: 4px;
    padding-bottom: 5px;
    color: #999999;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.25s;
}

.product-serie:hover {
    color: #555555;
}

.touch .product-serie:hover {
    color: #999999;
}

.product-serie:active,
.touch .product-serie:active {
    color: #555555;
}

.product-serie-on {
    color: #111111;
    border-bottom-color: #111111;
}

.product-serie-on:hover {
    color: #111111;
}

.touch .product-serie-on:hover {
    color: #111111;
}

.product-serie-on:active,
.touch .product-serie-on:active {
    color: #111111;
}




.product-serie-on {
    font-weight: 700;
}


.product-serie-name {
    padding-bottom: 6px;
    color: #111111;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.product-serie-name strong {
    font-weight: 700;
}

.product-samples-content {
    flex: auto;
}

.product-samples-block {
    display: none;
    opacity: 0;
    transform: translateY(16px);
}

.product-samples-block-on {
    display: block;
    opacity: 1;
    transform: translateY(0px);
    animation: product-samples-block-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes product-samples-block-anima {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.product-colors {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding-top: 24px;
}

.band {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.product-color {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 20px;
}

.product-sample-frame {
    position: relative;
}

.product-sample {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 3px;
    background-color: #E2E2E2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 3px -2px rgba(0, 0, 0, 0.75);
    overflow: hidden;
}

.stick .product-sample {
    padding-bottom: 200%;
}

.band .product-sample {
    padding-bottom: 29.13385826771654%;
}

.color-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0) 40%),
        radial-gradient(circle at 70% 20%,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0) 35%),
        radial-gradient(circle at 40% 80%,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0) 45%),
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0) 60%);
}

.color-metallic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.05) 20%,
            rgba(255, 255, 255, 0) 40%),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.45) 30%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 70%),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.4) 60%,
            rgba(255, 255, 255, 0.05) 80%,
            rgba(255, 255, 255, 0) 100%);
    mix-blend-mode: overlay;
}

.color-brilliant {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            white 0%,
            transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.4;
}

.color-fold {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: auto;
    height: 40%;
    border: solid 3px #FFFFFF;
    border-top: none;
    border-left: none;
    overflow: hidden;
}

.band .color-fold {
    height: 56%;
}

.color-fold svg {
    position: relative;
    width: auto;
    height: 100%;
    margin-right: -2px;
    margin-top: 2px;
}

.product-sample-name {
    padding-top: 6px;
    font-weight: 600;
}

/* ARTICLES */

.articles-title {
    padding-top: 64px;
    padding-bottom: 24px;
    color: #999999;
    font-size: 64px;
    line-height: 74px;
    font-weight: 300;
    text-align: center;
}

.articles-title strong {
    color: #333333;
    font-weight: 500;
}

.articles-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 32px;
    column-gap: 24px;
    padding-top: 48px;
    padding-bottom: 120px;
}

.articles-item,
.articles-item:link,
.articles-item:visited {
    display: flex;
    flex-direction: column;
    color: #333333;
    text-decoration: none;
}

.articles-item:hover .articles-pic {
    filter: brightness(120%);
}

.touch .articles-item:hover .articles-pic {
    filter: brightness(100%);
}

.articles-item:active .articles-pic,
.touch .articles-item:active .articles-pic {
    filter: brightness(120%);
}

.articles-item svg path {
    fill: #333333;
    transition: 0.18s;
}

.articles-item:hover svg path {
    fill: #999999;
}

.touch .articles-item:hover svg path {
    fill: #333333;
}

.articles-item:active svg path,
.touch .articles-item:active svg path {
    fill: #999999;
}

.articles-picture {
    overflow: hidden;
}

.articles-content {
    padding-top: 18px;
}

.articles-pic {
    width: 100%;
    padding-bottom: 66.66666666666667%;
    background-color: #EFEFEF;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s;
}

.articles-preheader {
    color: #999999;
    font-size: 17px;
    line-height: 23px;
    font-weight: 600;
}

.articles-header {
    padding-top: 6px;
    padding-bottom: 7px;
    color: #111111;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
}

.articles-intro {
    font-size: 16px;
    line-height: 24px;
}

.articles-more {
    display: flex;
    column-gap: 4px;
    padding-top: 8px;
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    transition: 0.18s;
}

.articles-more-arrow {
    display: flex;
    align-items: center;
}

.articles-more svg {
    display: block;
    width: 9px;
    height: 9px;
    margin-top: 1px;
}

.articles-item:hover .articles-more {
    color: #999999;
}

.touch .articles-item:hover .articles-more {
    color: #333333;
}

.articles-item:active .articles-more,
.touch .articles-item:active .articles-more {
    color: #999999;
}

/* ARTICLE */

.article-intro {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 75%;
    overflow: hidden;
}

.article-intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EFEFEF;
}

.article-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.article-intro-picture {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.article-intro-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
}

.article-intro-content>div {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.article-intro-tagline {
    padding-bottom: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    text-align: center;
}

.article-intro-title {
    color: #FFFFFF;
    font-size: 54px;
    line-height: 64px;
    font-weight: 700;
    text-align: center;
}

.articles-suggestions-divisor {
    width: 100%;
    height: 1px;
    background-color: #E7E7E7;
}

.articles-suggestions {
    padding-top: 48px;
    padding-bottom: 4px;
    color: #999999;
    font-size: 34px;
    line-height: 40px;
    font-weight: 300;
    text-align: center;
}

.articles-suggestions strong {
    color: #333333;
    font-weight: 500;
}

.article-content {
    display: block;
    width: 100%;
    padding-bottom: 100px;
}

.article-content h2,
.article-content h3,
.article-content p,
.article-content ul,
.article-content ol,
.article-content-summary,
.article-image,
.article-content-embed {
    display: block;
    width: 100%;
    max-width: 800px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}

.article-content-embed {
    padding-top: 20px;
    padding-bottom: 20px;
}

.article-content-embed-frame {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
}

.article-content-embed iframe {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.article-content-embed-frame iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.article-content-summary {
    padding-top: 38px;
    padding-bottom: 22px;
    color: #111111;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

.article-content strong,
.article-content b {
    font-weight: 600;
}

.article-content p,
.article-content ul,
.article-content ol {
    color: #111111;
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
}

.article-content ul,
.article-content ol {
    padding-left: 64px;
    padding-right: 64px;
}

.article-content li {
    padding: 0;
    margin: 0;
}

.article-content h2 {
    padding-top: 18px;
    color: #111111;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.article-content h3 {
    padding-top: 18px;
    color: #111111;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}

.article-content a,
.article-content a:link,
.article-content a:visited {
    color: #999999;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.article-content a:hover {
    text-decoration: underline;
}

.touch .article-content a:hover {
    text-decoration: none;
}

.article-content a:active,
.touch .article-content a:active {
    text-decoration: underline;
}

.article-image {
    padding-top: 22px;
    padding-bottom: 22px;
}

.article-content img {
    display: block;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    cursor: pointer;
}

.article-image-full {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.article-image-full img {
    width: 100%;
    max-width: none;
    border-radius: 0;
}

.article-image-with-border img {
    border: solid 2px #E2E2E2;
}

.article-image-with-bg img {
    padding: 32px;
    background-color: #E2E2E2;
}

.article-content figcaption {
    padding-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    color: #999999;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
}

.article-content-embed figcaption {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
}

/* SHOWROOM */

.showroom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 24px;
}

.showroom-block {
    position: relative;
    width: 100%;
    padding-bottom: 66.66666666666667%;
    background-color: #EFEFEF;
    overflow: hidden;
}

.showroom-block-alt {
    background-color: #FFFFFF;
}

.showroom-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: showroom-picture-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.showroom-picture-alt {
    animation-name: showroom-picture-anima-alt;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.showroom-picture-blur {
    top: -48px;
    left: -48px;
    width: calc(100% + 96px);
    height: calc(100% + 96px);
    animation: none;
    filter: blur(48px);
    opacity: 0.3;
}

@keyframes showroom-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes showroom-picture-anima-alt {
    0% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.showroom-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showroom-map iframe {
    width: 100%;
    height: 100%;
}

.showroom-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 32px;
}

.showroom-caption {
    color: #888888;
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
}

.showroom-caption strong {
    color: #333333;
    font-weight: 500;
}

.showroom-title {
    padding-bottom: 18px;
    color: #333333;
    font-size: 18px;
    line-height: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.showroom-contact {
    padding-top: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.showroom-contact-link {
    color: #333333;
    transition: 0.25s;
}

.showroom-contact-link:hover {
    color: #888888;
}

.touch .showroom-contact-link:hover {
    color: #333333;
}

.showroom-contact-link:active,
.touch .showroom-contact-link:active {
    color: #888888;
}

.showroom-button {
    padding-top: 16px;
}

/* CORPORATE */

.corporate-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    padding-top: 96px;
    padding-bottom: 96px;
}

.corporate-title {
    padding-bottom: 48px;
    color: #999999;
    font-size: 64px;
    line-height: 74px;
    font-weight: 300;
}

.corporate-title strong {
    color: #333333;
    font-weight: 500;
}

.corporate-content {
    flex: auto;
}

.corporate-content p {
    width: 100%;
    max-width: 640px;
    padding-bottom: 16px;
    color: #333333;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.corporate-content p:last-of-type {
    padding-bottom: 0px;
}

.corporate-content p strong {
    font-weight: 700;
}

.corporate-ticker {
    height: 1000px;
    overflow: hidden;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.corporate-ticker:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

/* ASSISTANCE */

.assistance-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    column-gap: 24px;
    margin-bottom: 24px;
}

.assistance-title {
    padding-bottom: 32px;
    color: #999999;
    margin-left: -2px;
    font-size: 50px;
    line-height: 60px;
    font-weight: 300;
}

.assistance-title strong {
    color: #333333;
    font-weight: 500 !important;
}

.assistance-info {
    padding: 15%;
    padding-top: 15%;
    padding-bottom: 15%;
    background-color: #EFEFEF;
    color: #333333;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.assistance-info p {
    padding-bottom: 16px;
}

.assistance-info strong {
    font-weight: 700;
}

.assistance-link {
    font-weight: 700;
    transition: 0.25s;
}

.assistance-link:hover {
    color: #999999;
}

.touch .assistance-link:hover {
    color: #333333;
}

.assistance-link:active,
.touch .assistance-link:active {
    color: #999999;
}

.assistance-buttons {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 240px;
    padding-top: 16px;
}

.assistance-map {
    position: relative;
    background-color: #EFEFEF;
    overflow: hidden;
    filter: grayscale(100);
}

/* FAQS */

.faqs-layout {
    display: flex;
    column-gap: 5%;
    padding-top: 64px;
    padding-bottom: 96px;
}

.faqs-title {
    flex: none;
    color: #999999;
    font-size: 64px;
    line-height: 74px;
    font-weight: 300;
}

.faqs-title strong {
    color: #333333;
    font-weight: 500;
}

.faqs-list {
    flex: auto;
    display: flex;
    flex-direction: column;
}

.faqs-item {
    border-bottom: solid 1px #E2E2E2;
}

.faqs-item:last-of-type {
    border-bottom: none;
}

.faqs-header {
    display: flex;
    column-gap: 10px;
    cursor: pointer;
    padding-top: 16px;
    padding-bottom: 16px;
    color: #333333;
    transition: 0.25s;
}

.faqs-header:hover {
    color: #999999;
}

.touch .faqs-header:hover {
    color: #333333;
}

.faqs-header:active,
.touch .faqs-header:active {
    color: #999999;
}

.faqs-item-on .faqs-header {
    color: #333333;
}

.faqs-item-on .faqs-header:hover {
    color: #333333;
}

.touch .faqs-item-on .faqs-header:hover {
    color: #333333;
}

.faqs-item-on .faqs-header:active,
.touch .faqs-item-on .faqs-header:active {
    color: #333333;
}

.faqs-question {
    flex: auto;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.faqs-item-on .faqs-question {
    font-weight: 800;
}

.faqs-arrow {
    flex: none;
    display: flex;
    align-items: flex-start;
    padding-right: 0px;
    padding-top: 6px;
}

.faqs-arrow svg {
    width: 18px;
    transition: 0.5s;
}

.faqs-item-on .faqs-arrow svg {
    transform: rotate(180deg);
}

.faqs-arrow path {
    fill: #333333;
    transition: 0.25s;
}

.faqs-header:hover .faqs-arrow path {
    fill: #999999;
}

.touch .faqs-header:hover .faqs-arrow path {
    fill: #333333;
}

.faqs-header:active .faqs-arrow path,
.touch .faqs-header:active .faqs-arrow path {
    fill: #999999;
}

.faqs-item-on .faqs-arrow path {
    fill: #999999;
    transition: 0.25s;
}

.faqs-item-on .faqs-header:hover .faqs-arrow path {
    fill: #999999;
}

.touch .faqs-item-on .faqs-header:hover .faqs-arrow path {
    fill: #999999;
}

.faqs-item-on .faqs-header:active .faqs-arrow path,
.touch .faqs-item-on .faqs-header:active .faqs-arrow path {
    fill: #999999;
}

.faqs-response {
    display: none;
    width: 100%;
    padding-bottom: 32px;
    font-size: 16px;
    line-height: 24px;
    opacity: 0;
    transform: scale(0.9);
    animation: faqs-response-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.faqs-item-on .faqs-response {
    display: block;
}

.faqs-response p {
    padding-bottom: 8px;
}

.faqs-response p:last-of-type {
    padding-bottom: 0px;
}

@keyframes faqs-response-anima {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* CONTACT */

.contact {
    background-color: #222222;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-request {
    padding-top: 100px;
    padding-bottom: 90px;
    padding-right: 10%;
}

.contact-title {
    padding-bottom: 48px;
    color: #FFFFFF;
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
}

.contact-form-caption {
    padding-top: 4px;
    padding-bottom: 18px;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.contact-form {
    padding: 32px;
    padding: 0;
    border-radius: 8px;
    background-color: #444444;
    background-color: transparent;
}

.contact-brand {
    padding-bottom: 32px;
}

.contact-wheel {
    position: relative;
    width: 140px;
    height: 140px;
    margin-top: -24px;
    margin-left: -12px;
}

.contact-wheel-logo {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.contact-wheel-caption {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    animation: contact-wheel-anima 20s linear infinite;
}

@keyframes contact-wheel-anima {
    100% {
        transform: rotate(360deg);
    }
}

.contact-data {
    padding-top: 100px;
    padding-bottom: 48px;
    padding-left: 10%;
    color: #888888;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.contact-data-title {
    padding-bottom: 4px;
    color: #FFFFFF;
    font-weight: 700;
}

.contact-data-info {
    padding-bottom: 18px;
}

.contact-data a {
    transition: 0.25s;
}

.contact-data a:hover {
    color: #FFFFFF;
}

.touch .contact-data a:hover {
    color: #888888;
}

.contact-data a:active,
.touch .contact-data a:active {
    color: #FFFFFF;
}

.contact-networks {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding-top: 32px;
    padding-bottom: 72px;
}

.contact-network {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 200px;
    background-color: #111111;
    transition: 0.25s;
}

.contact-network:hover {
    transform: scale(1.2);
}

.touch .contact-network:hover {
    transform: scale(1);
}

.contact-network:active,
.touch .contact-network:active {
    transform: scale(1.2);
}

.contact-network img {
    width: 100%;
    height: 100%;
}

.contact-copy {
    padding-top: 32px;
    color: #888888;
    font-size: 13px;
    line-height: 19px;
    font-weight: 500;
}

/* WHATSAPP */

.whatsapp {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 40px;
    text-decoration: none;
    cursor: pointer;
    transform: translateY(0px);
    animation: whatsapp-anima 5s ease-in-out infinite;
    z-index: 20;
}

@keyframes whatsapp-anima {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.whatsapp-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 1000px;
    background-color: #111111;
    transition: 0.25s;
    z-index: 2;
}

.whatsapp:hover .whatsapp-icon {
    transform: scale(1.16);
}

.touch .whatsapp:hover .whatsapp-icon {
    transform: scale(1);
}

.whatsapp:active .whatsapp-icon,
.touch .whatsapp:active .whatsapp-icon {
    transform: scale(1.16);
}

.whatsapp svg {
    display: block;
    width: 40px;
    height: 40px;
}

.whatsapp svg path {
    fill: #FFFFFF;
    transition: 0.25s;
}

/* TOAST */

#toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    z-index: 110;
}

.toast-item {
    display: none;
    column-gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 10px;
    background-color: #111111;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
}

.toast-show {
    opacity: 1;
    transform: translateY(0%);
    transition: 0.5s;
}

.toast-hide {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.25s;
}

.toast-caption {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 19px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.toast-inverse .toast-caption {
    color: #111111;
}

.toast-button {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.25s;
}

.toast-inverse .toast-button {
    color: #111111;
}

.toast-button:hover {
    opacity: 1;
}

.touch .toast-button:hover {
    opacity: 0.7;
}

.toast-button:active,
.touch .toast-button:active {
    opacity: 1;
}

/* ADVICE */

.advice {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #FFFFFF;
    animation: advice-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes advice-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.advice-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes advice-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.advice-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.advice-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.advice-actions {
    display: flex;
    justify-content: center;
}

.advice-close {
    display: inline-flex;
    padding: 12px;
    padding-top: 11px;
    padding-bottom: 17px;
    cursor: pointer;
}

.advice-close img {
    display: block;
    width: 14px;
    height: 14px;
    transition: 0.5s;
}

.advice-close:hover img {
    transform: rotate(180deg);
}

.touch .advice-close:hover img {
    transform: rotate(0deg);
}

.advice-close:active img,
.touch .advice-close:active img {
    transform: rotate(180deg);
}

.advice-actions-buttons {
    flex: none;
    display: flex;
    column-gap: 22px;
    padding-bottom: 16px;
}

.advice-content {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.advice-main {
    color: #111111;
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.advice-main strong {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.advice-detail {
    padding-top: 16px;
    color: #111111;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.advice-detail strong {
    font-weight: 700;
}

.advice-main div,
.advice-detail div {
    padding-bottom: 16px;
}

.advice-title {
    padding-bottom: 24px !important;
}

@keyframes advice-content-anima {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* DIALOG */

#dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    z-index: 120;
}

.dialog-block {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #FFFFFF;
    text-align: center;
    box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.2);
}

@keyframes anima-dialog-show {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dialog-show {
    animation-name: anima-dialog-show;
    animation-duration: 0.5s;
}

@keyframes anima-dialog-hide {
    from {
        opacity: 1;
        transform: translateY(0%);
    }

    to {
        opacity: 0;
        transform: translateY(-50%);
    }
}

.dialog-hide {
    animation-name: anima-dialog-hide;
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
}

.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.8);
    z-index: 120;
}

@keyframes anima-dialog-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dialog-overlay-show {
    animation-name: anima-dialog-overlay-show;
    animation-duration: 0.5s;
}

@keyframes anima-dialog-overlay-hide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.dialog-overlay-hide {
    animation-name: anima-dialog-overlay-hide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.dialog-message {
    padding: 32px;
    padding-top: 32px;
    padding-bottom: 0px;
    color: #111111;
}

.dialog-caption {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
}

.dialog-detail {
    padding-top: 16px;
    color: #222222;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
}

.dialog-detail strong {
    font-weight: 700;
}

.dialog-detail a {
    color: #CCCCCC;
    font-weight: 700;
    text-decoration: none;
    transition: 0.15s;
}

.dialog-detail a:hover {
    color: #B5CD34;
}

.touch .dialog-detail a:hover {
    color: #CCCCCC;
}

.dialog-detail a:active,
.touch .dialog-detail a:active {
    color: #B5CD34;
}

.dialog-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 8px;
    padding-top: 16px;
    padding-bottom: 32px;
    margin-left: 32px;
    margin-right: 32px;
}

/* DISTRIBUTORS */

.dist {
    display: flex;
    width: 100%;
    height: 100%;
}

.dist-panel {
    flex: none;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 260px;
    background-color: #FFFFFF;
    z-index: 2;
}

@keyframes dist-panel-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.dist-panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(10px);
    animation: dist-panel-bg-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 1;
}

@keyframes dist-panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dist-menu {
    flex: auto;
}

.dist-brand {
    flex: none;
    padding-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
}

.dist-brand img {
    width: 100%;
    height: auto;
}

.dist-brand-link {
    display: inline-block;
}

.dist-buttons {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    min-height: 100%;
    padding-top: 32px;
    text-align: right;
}

.dist-buttons-list {
    flex: auto;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    height: 100%;
}

.dist-buttons-list-alt {
    flex: none;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    padding-bottom: 24px;
}

.dist-button {
    display: inline-flex;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 24px;
    padding-left: 24px;
    border-right: solid 3px transparent;
    color: #999999;
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.dist-button-alt {
    cursor: default;
}

.dist-button:hover {
    color: #111111;
}

.touch .dist-button:hover {
    color: #999999;
}

.dist-button:active,
.touch .dist-button:active {
    color: #111111;
}

.dist-button-on {
    border-color: #111111;
    color: #111111;
    font-weight: 700;
}

.dist-canvas {
    flex: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #E2E2E2;
}

.dist-bar {
    flex: none;
    height: 64px;
    display: grid;
    column-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #EFEFEF;
}

.dist-bar-actions {
    flex: auto;
    display: flex;
    column-gap: 24px;
    align-items: center;
}

.dist-bar-back {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    height: 100%;
    cursor: pointer;
}

.dist-bar-back path {
    fill: #999999;
    transition: 0.25s;
}

.dist-bar-back:hover path {
    fill: #111111;
}

.touch .dist-bar-back:hover path {
    fill: #999999;
}

.dist-bar-back:active path,
.touch .dist-bar-back:active path {
    fill: #111111;
}

.dist-bar-btn {
    display: flex;
    align-items: center;
    column-gap: 8px;
    color: #777777;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.25s;
}

.dist-bar-btn-alt {
    padding-top: 10px;
    padding-bottom: 10px;
}

.dist-bar-btn:hover {
    color: #111111;
}

.touch .dist-bar-btn:hover {
    color: #777777;
}

.dist-bar-btn:active,
.touch .dist-bar-btn:active {
    color: #111111;
}

.dist-bar-btn path {
    fill: #777777;
    transition: 0.25s;
}

.dist-bar-btn:hover path {
    fill: #111111;
}

.touch .dist-bar-btn:hover path {
    fill: #777777;
}

.dist-bar-btn:active path,
.touch .dist-bar-btn:active path {
    fill: #111111;
}

.dist-bar-iso {
    display: none;
    align-items: center;
    justify-content: center;
}

.dist-bar-alt .dist-bar-iso {
    display: flex;
}

.dist-bar-iso img {
    width: 46px;
    height: 28px;
}

.dist-bar-menu {
    flex: none;
    display: none;
    justify-content: flex-end;
    align-items: center;
    padding-right: 14px;
}

.dist-bar-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 48px;
    height: 42px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

.dist-bar-menu-line {
    width: 100%;
    height: 2px;
    background-color: #777777;
    transition: 0.25s;
}

.dist-bar-menu-btn:hover .dist-bar-menu-line {
    background-color: #111111;
}

.touch .dist-bar-menu-btn:hover .dist-bar-menu-line {
    background-color: #777777;
}

.dist-bar-menu-btn:active .dist-bar-menu-line,
.touch .dist-bar-menu-btn:active .dist-bar-menu-line {
    background-color: #111111;
}

.dist-title {
    padding-top: 18px;
    padding-bottom: 28px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #111111;
}

.dist-title-alt {
    text-align: center;
}

.dist-caption {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    border: solid 2px #C2C2C2;
    padding: 24px;
    padding-bottom: 27px;
    padding-left: 32px;
    padding-right: 32px;
    color: #777777;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
}

.dist-caption p {
    padding-bottom: 10px;
}

.dist-caption p:last-of-type {
    padding-bottom: 0px;
}

.dist-content {
    flex: auto;
    overflow: auto;
    padding: 24px;
}

.dist-content::-webkit-scrollbar {
    width: 14px;
    height: 14px;
    border-radius: 30px;
}

.dist-content::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 30px;
    border: solid 4px #E2E2E2;
}

.dist-content::-webkit-scrollbar-thumb:hover {
    background: #888888;
}

.dist-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 30px;
}

.dist-groups {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.dist-group {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 0px 2px transparent;
    transition: 0.3s;
}

.dist-group-alt {
    padding-bottom: 25%;
}

.dist-group:hover {
    box-shadow: 0px 0px 0px 2px #999999;
}

.touch .dist-group:hover {
    box-shadow: 0px 0px 0px 2px transparent;
}

.dist-group:active,
.touch .dist-group:active {
    box-shadow: 0px 0px 0px 2px #999999;
}

.dist-group-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dist-group-name {
    color: #111111;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
}

.dist-group-alt .dist-group-name {
    font-size: 16px;
    line-height: 24px;
}

.dist-group-detail {
    color: #999999;
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    text-align: center;
}

.dist-resources {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.dist-resources-alt {
    padding-top: 24px;
}

.dist-resource {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: #FFFFFF;
    overflow: hidden;
    transition: 0.3s;
}

.dist-resource-picture {
    position: relative;
    flex: none;
    width: 100%;
    padding-bottom: 66.66666666666667%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.dist-resource-shadow {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.dist-resource-picture-has .dist-resource-shadow {
    display: block;
}

.dist-resource-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1px;
    background-color: #E2E2E2;
    padding-top: 1px;
}

.dist-resource-action {
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.dist-resource-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    font-weight: 500;
}

.dist-resource-picture-has .dist-resource-info {
    color: #FFFFFF;
}

.dist-resource-icon {
    padding-bottom: 16px;
    padding-right: 1px;
}

.dist-resource-icon img {
    margin: 0 auto;
}

/* NAV */

.nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: rgba(232, 232, 232, 0.5);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(50%);
    transition: 0.25s;
    z-index: 19;
}

.nav-on {
    display: block;
    animation-name: nav-anima;
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
}

@keyframes nav-anima {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.nav-layout {
    display: flex;
    flex-wrap: wrap;
    column-gap: 70px;
    justify-content: center;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    padding: 8px;
    color: #222222;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s;
}

.nav-btn:hover {
    opacity: 0.5;
}

.touch .nav-btn:hover {
    opacity: 1;
}

.nav-btn:active,
.touch .nav-btn:active {
    opacity: 0.5;
}

.nav-prev {
    text-align: right;
}

.nav-next {
    text-align: left;
}

/* RESPONSIVE */

@media (max-width: 1360px) {

    .dist-groups {
        grid-template-columns: 1fr 1fr;
    }

    .dist-resources {
        grid-template-columns: 1fr 1fr;
    }

    .showroom-caption {
        font-size: 24px;
        line-height: 34px;
    }

    .showroom-title {
        font-size: 16px;
        line-height: 16px;
    }

}

@media (max-width: 1200px) {

    .bar-menu {
        display: flex;
    }

    .bar-networks {
        display: none;
    }

    .assistance-layout {
        grid-template-columns: 0.85fr 1fr;
    }

    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-colors {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .band {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

}

@media (max-width: 1170px) {

    .showroom {
        grid-template-columns: 1fr;
    }

    .showroom-block-alt {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .showroom-content {
        position: relative;
    }

    .showroom-caption {
        font-size: 30px;
        line-height: 40px;
    }

    .showroom-title {
        font-size: 18px;
        line-height: 18px;
    }

}

@media (max-width: 1100px) {

    .bar-distributors {
        display: none;
    }

    .product-item {
        flex: 1 0 calc(25% - 18px);
        max-width: calc(25% - 18px);
    }

}

@media (max-width: 1020px) {

    .product-item {
        flex: 1 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }

    .about-picture-frame {
        flex: 1 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }

    .dist-panel {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        animation: dist-panel-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

    .dist-bar-iso {
        display: flex;
    }

    .dist-bar-menu {
        display: flex;
    }

    .corporate-layout {
        grid-template-columns: 1fr;
    }

    .corporate-ticker {
        margin-top: 32px;
    }

    .product-colors {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .band {
        grid-template-columns: 1fr 1fr 1fr;
    }

}

@media (max-width: 980px) {

    .assistance-layout {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .assistance-info {
        order: 1;
    }

    .assistance-map {
        order: 2;
        height: 360px;
    }

}

@media (max-width: 960px) {

    .bar-nav {
        display: none;
    }

    .bar-actions {
        flex: auto;
    }

    .articles-layout {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-request {
        padding-bottom: 64px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .contact-wheel {
        margin: 0 auto;
    }

    .contact-data {
        padding-top: 0px;
        padding-bottom: 96px;
        padding-left: 0px;
        padding-right: 0px;
        border-left: none;
        text-align: center;
    }

    .contact-networks {
        justify-content: center;
    }

}

@media (max-width: 900px) {

    .corporate-layout {
        display: flex;
        flex-direction: column;
        row-gap: 32px;
    }

}

@media (max-width: 840px) {

    .entrance-form {
        padding-left: 24px;
        padding-right: 24px;
    }

    .display {
        flex-direction: column;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-right: 0px;
    }

    .display-swiper {
        position: relative !important;
        height: 560px !important;
    }

    .slide-frame {
        width: 100%;
    }

    .display-swiper .swiper-pagination {
        text-align: center !important;
    }

    .display-layout {
        justify-content: center;
        align-items: unset;
        padding: 24px;
        background-color: #CCCCCC;
    }

    .quick {
        width: 100%;
    }

    .product-item {
        flex: 1 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .about-marquee-caption {
        font-size: 28vw;
    }

    .assistance-info {
        padding: 32px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .faqs-layout {
        flex-direction: column;
        row-gap: 24px;
    }

    .product-colors {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .band {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 780px) {

    .slide-overlay {
        background: linear-gradient(to right, rgba(17, 17, 17, 0.65) 0%, rgba(17, 17, 17, 0.4) 100%);
    }

    .home-caption {
        font-size: 40px;
        line-height: 50px;
    }

    .entrance-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .entrance-picture {
        height: 264px;
    }

    .entrance-content {
        padding-top: 48px;
        padding-bottom: 100px;
    }

    .dist-bar {
        grid-template-columns: 1fr 1fr;
    }

    .dist-bar-alt {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .dist-bar-iso {
        display: none;
    }

    .dist-bar-actions {
        column-gap: 8px;
    }

    .product-thumbs {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .product-block-columns {
        column-count: 1;
    }


}

@media (max-width: 680px) {

    .dist-groups {
        grid-template-columns: 1fr;
    }

    .dist-resources {
        grid-template-columns: 1fr;
    }

    .articles-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 640px) {

    .about-pictures {
        gap: 16px;
    }

    .about-picture-frame {
        flex: 1 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .dist-content {
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .dist-content::-webkit-scrollbar {
        display: none;
    }

    .product-layout {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .product-intro {
        padding-bottom: 32px;
    }

    .product-pictures {
        padding-bottom: 100%;
    }

    .product-title {
        margin-left: 0px;
        padding-bottom: 32px;
        font-size: 44px;
        line-height: 54px;
    }

    .product-actions {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        padding-top: 40px;
        margin-left: 0px;
    }

    .button-alt-4 {
        display: flex;
    }

    .product-colors {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 490px) {

    .entrance-form {
        padding-top: 72px;
        padding-bottom: 120px;
    }

    .slide-title {
        padding-bottom: 14px;
        font-size: 40px;
        line-height: 42px;
    }

    .slide-caption {
        padding-bottom: 24px;
        font-size: 18px;
        line-height: 26px;
    }

    .display-layout {
        padding: 16px;
    }

    .quick {
        padding: 16px;
    }

    .fields-double {
        grid-template-columns: 1fr;
    }

    .home-caption {
        padding-top: 72px;
        padding-bottom: 64px;
        font-size: 30px;
        line-height: 40px;
    }

    .products-title-text {
        padding-bottom: 8px;
        font-size: 18px;
        line-height: 22px;
    }

    .about-title-text {
        padding-bottom: 8px;
        font-size: 18px;
        line-height: 22px;
    }

    .products-grid {
        padding-top: 48px;
        padding-bottom: 100px;
    }

    .product-item {
        flex: 1 0 100%;
        max-width: 100%;
    }

    .product-item-picture {
        padding-bottom: 100%;
    }

    .about {
        padding-top: 80px;
    }

    .about-content {
        padding-bottom: 32px;
        font-size: 17px;
        line-height: 30px;
    }

    .about-pictures {
        gap: 14px;
    }

    .about-picture-frame {
        flex: 1 0 calc(50% - 7px);
        max-width: calc(50% - 7px);
    }

    .articles-title {
        font-size: 50px;
        line-height: 58px;
    }

    .articles-layout {
        padding-bottom: 96px;
    }

    .article-intro-tagline {
        font-size: 18px;
        line-height: 24px;
    }

    .article-intro-title {
        font-size: 38px;
        line-height: 44px;
    }

    .article-content-summary {
        font-size: 20px;
        line-height: 28px;
    }

    .article-content h2,
    .article-content h3,
    .article-content p,
    .article-content ul,
    .article-content ol,
    .article-content-summary,
    .article-image,
    .article-content-embed {
        padding-left: 24px;
        padding-right: 24px;
    }

    .article-image-full {
        padding-left: 0;
        padding-right: 0;
    }

    .showroom {
        gap: 16px;
        padding-bottom: 16px;
    }

    .showroom-block-alt {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .showroom-block-alt-2 {
        padding-bottom: 100%;
    }

    .showroom-caption {
        font-size: 24px;
        line-height: 34px;
    }

    .showroom-title {
        font-size: 16px;
        line-height: 16px;
    }

    .corporate-layout {
        padding-top: 48px;
        padding-bottom: 64px;
    }

    .corporate-title {
        font-size: 54px;
        line-height: 62px;
    }

    .corporate-text {
        font-size: 17px;
        line-height: 30px;
    }

    .corporate-caption {
        font-size: 17px;
        line-height: 30px;
    }

    .assistance-title {
        font-size: 36px;
        line-height: 46px;
    }

    .assistance-info {
        padding-left: 24px;
        padding-right: 24px;
        font-size: 17px;
        line-height: 30px;
    }

    .faqs-layout {
        padding-top: 48px;
        padding-bottom: 72px;
    }

    .faqs-title {
        font-size: 36px;
        line-height: 46px;
    }

    .whatsapp {
        bottom: 36px;
        right: 16px;
    }

    .whatsapp-icon {
        width: 64px;
        height: 64px;
    }

    .whatsapp svg {
        width: 36px;
        height: 36px;
    }

    .entrance-picture {
        height: 172px;
    }

    .entrance-fields {
        width: 100%;
        min-width: 264px;
    }

    .product-thumbs {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .product-colors {
        grid-template-columns: 1fr;
    }

    .band {
        grid-template-columns: 1fr;
    }

    .product-sample {
        padding-bottom: 25%;
    }

    .product-serie {
        font-size: 15px;
        line-height: 23px;
    }

    .product-serie-name {
        padding-bottom: 3px;
        font-size: 18px;
        line-height: 26px;
    }

    .nav-layout {
        column-gap: 10px;
    }

}