@charset "utf-8";

@font-face {
    font-family: "Geomanist";
    src: url("https://cimalco.com.ar/adoquines/css/fonts/Geomanist-Regular.woff2?v=1.0") format("woff2"),
        url("https://cimalco.com.ar/adoquines/css/fonts/Geomanist-Regular.woff?v=1.0") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Geomanist";
    src: url("https://cimalco.com.ar/adoquines/css/fonts/Geomanist-Book.woff2?v=1.0") format("woff2"),
        url("https://cimalco.com.ar/adoquines/css/fonts/Geomanist-Book.woff?v=1.0") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Geomanist";
    src: url("https://cimalco.com.ar/adoquines/css/fonts/Geomanist-Medium.woff2?v=1.0") format("woff2"),
        url("https://cimalco.com.ar/adoquines/css/fonts/Geomanist-Medium.woff?v=1.0") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Geomanist";
    src: url("https://cimalco.com.ar/adoquines/css/fonts/Geomanist-Bold.woff2?v=1.0") format("woff2"),
        url("https://cimalco.com.ar/adoquines/css/fonts/Geomanist-Bold.woff?v=1.0") format("woff");
    font-weight: 700;
    font-style: normal;
}

*,
*::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;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    font-family: "Geomanist", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    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%;
    background-color: transparent;
    transition: 0.25s;
    z-index: 10;
}

.bar-compact {
    background-color: #FFC10E;
    box-shadow: 0px 0px 9px -1px rgba(0, 0, 0, 0.12);
}

.bar-layout {
    display: flex;
    column-gap: 14px;
    width: 100%;
    max-width: 1280px;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
    transition: 0.25s;
}

.bar-compact .bar-layout {
    padding-top: 18px;
    padding-bottom: 18px;
}

.bar-brand {
    flex: none;
}

.bar-brand img {
    width: auto;
    height: 47px;
}

.bar-dash {
    flex: none;
    display: flex;
    align-items: center;
    padding-left: 0px;
    padding-bottom: 4px;
    color: #000;
    font-size: 33px;
    line-height: 33px;
    font-weight: 400;
}

.bar-caption {
    flex: none;
    display: flex;
    align-items: center;
    padding-left: 0px;
    padding-bottom: 4px;
    color: #000;
    font-size: 33px;
    line-height: 33px;
    font-weight: 500;
}

.bar-nav {
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar-buttons {
    display: flex;
    column-gap: 18px;
    padding-top: 1px;
}

.bar-button {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 6px;
    padding-right: 6px;
    color: #000000;
    font-size: 17.5px;
    line-height: 17.5px;
    font-weight: 500;
    transition: 0.25s;
}

.bar-button:hover {
    color: #FFFFFF;
}

.touch .bar-button:hover {
    color: #000000;
}

.bar-button:active,
.touch .bar-button:active {
    color: #FFFFFF;
}

.bar-button-on {
    color: #FFFFFF;
}

.bar-button-on:hover {
    color: #FFFFFF;
}

.touch .bar-button-on:hover {
    color: #FFFFFF;
}

.bar-button-on:active,
.touch .bar-button-on:active {
    color: #FFFFFF;
}

.bar-menu {
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    width: 54px;
    height: 44px;
    padding-top: 6px;
    padding-bottom: 5px;
    padding-left: 13px;
    padding-right: 13px;
    cursor: pointer;
}

.bar-menu-line {
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: 0.25s;
}

.bar-menu:hover .bar-menu-line {
    background-color: #FFFFFF;
}

.touch .bar-menu:hover .bar-menu-line {
    background-color: #000000;
}

.bar-menu:active .bar-menu-line,
.touch .bar-menu:active .bar-menu-line {
    background-color: #FFFFFF;
}

.bar-actions {
    flex: none;
    display: flex;
    align-items: center;
}

.bar-action-anima {
    animation: bar-action-anima 1.25s forwards;
}

@keyframes bar-action-anima {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.85);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.bar-action-anima-alt {
    animation: bar-action-anima-alt 1.25s forwards;
}

@keyframes bar-action-anima-alt {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.85);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background-color: #FFC10E;
    animation: panel-anima 0.5s 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(0, 0, 0, 0.85);
    animation: panel-bg-anima 0.5s 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;
    column-gap: 16px;
    justify-content: center;
}

.panel-actions-close {
    flex: none;
}

.panel-close {
    display: flex;
    padding: 16px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 18px;
    height: 18px;
    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-buttons {
    flex: auto;
    display: flex;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: center;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
}

.panel-shortcuts {
    display: flex;
    flex-direction: column;
    column-gap: 16px;
    row-gap: 16px;
    padding-bottom: 32px;
}

.panel-networks {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 18px;
    padding-bottom: 24px;
}

.panel-link-block {
    position: relative;
    width: 100%;
    height: 38px;
    opacity: 0;
    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: #000000;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s;
}

.panel-link:hover {
    color: #FFFFFF;
}

.touch .panel-link:hover {
    color: #000000;
}

.panel-link:active,
.touch .panel-link:active {
    color: #FFFFFF;
}

.panel-link-on {
    color: #FFFFFF;
}

.panel-link-on:hover {
    color: #FFFFFF;
}

.touch .panel-link-on:hover {
    color: #FFFFFF;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    color: #FFFFFF;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.4s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.5s;
}

.panel-link-block:nth-child(5) {
    animation-delay: 0.6s;
}

.panel-link-block:nth-child(6) {
    animation-delay: 0.7s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-social {
    width: 48px;
    height: 48px;
    opacity: 0;
    transform: scale(0.75);
    cursor: pointer;
    animation-name: panel-social-anima;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.panel-social img {
    width: 100%;
    height: 100%;
    padding: 4px;
    border-radius: 100px;
    border: solid 2px #000000;
    background-color: #FFC10E;
    transition: 0.25s;
}

.panel-social:hover img {
    transform: scale(1.25);
}

.touch .panel-social:hover img {
    transform: scale(1);
}

.panel-social:active img,
.touch .panel-social:active img {
    transform: scale(1.25);
}

.panel-social:nth-child(1) {
    animation-delay: 0s;
}

.panel-social:nth-child(2) {
    animation-delay: 0.25s;
}

.panel-social:nth-child(3) {
    animation-delay: 0.5s;
}

.panel-social:nth-child(4) {
    animation-delay: 0.75s;
}

@keyframes panel-social-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* GLOBALS */

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 9px;
    height: 44px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 0px;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 16.5px;
    line-height: 16.5px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.25s;
}

.button>div:nth-child(1) {
    padding-bottom: 0px;
}

.button>div:nth-child(2) {
    display: flex;
    align-items: center;
    height: 100%;
}

.button svg {
    transition: 0.25s;
}

.button path {
    fill: #FFC10E;
    transition: 0.25s;
}

.button:hover {
    color: #FFC10E;
}

.touch .button:hover {
    color: #FFFFFF;
}

.button:active,
.touch .button:active {
    color: #FFC10E;
}

.button:hover svg {
    transform: translateX(4px);
}

.touch .button:hover svg {
    transform: translateX(0px);
}

.button:active svg,
.touch .button:active svg {
    transform: translateX(4px);
}

.button:hover path {
    fill: #FFFFFF;
}

.touch .button:hover path {
    fill: #FFC10E;
}

.button:active path,
.touch .button:active path {
    fill: #FFFFFF;
}

.button-alt {
    padding-left: 26px;
    padding-right: 26px;
    background-color: #FFFFFF;
    color: #000000;
}

.button-alt:hover {
    color: #FFC10E;
}

.touch .button-alt:hover {
    color: #000000;
}

.button-alt:active,
.touch .button-alt:active {
    color: #FFC10E;
}

.button-alt-2 {
    width: 100%;
    background-color: transparent;
    border: solid 2px #FFC10E;
    color: #FFC10E;
}

.button-alt-2>div:nth-child(1) {
    padding-top: 0px;
}

.button-alt-2 path {
    fill: #FFC10E;
}

.button-alt-2:hover {
    background-color: #FFC10E;
    color: #000000;
}

.touch .button-alt-2:hover {
    background-color: transparent;
    color: #FFC10E;
}

.button-alt-2:active,
.touch .button-alt-2:active {
    background-color: #FFC10E;
    color: #000000;
}

.button-alt-2:hover path {
    fill: #FFFFFF;
}

.touch .button-alt-2:hover path {
    fill: #FFC10E;
}

.button-alt-2:active path,
.touch .button-alt-2:active path {
    fill: #FFFFFF;
}

.button-alt-3 {
    background-color: transparent;
    border: solid 2px #FFC10E;
    color: #FFC10E;
}

.button-alt-3>div:nth-child(1) {
    padding-top: 0px;
}

.button-alt-3 path {
    fill: #FFC10E;
}

.button-alt-3:hover {
    border-color: #FFFFFF;
}

.touch .button-alt-3:hover {
    border-color: #FFC10E;
}

.button-alt-3:active,
.touch .button-alt-3:active {
    border-color: #FFFFFF;
}

.button-alt-3:hover path {
    fill: #FFFFFF;
}

.touch .button-alt-3:hover path {
    fill: #FFC10E;
}

.button-alt-3:active path,
.touch .button-alt-3:active path {
    fill: #FFFFFF;
}

/* INTRO */

.intro {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #FFC10E;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../assets/intro.jpg);
    animation-name: intro-bg-anima;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.intro-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 193, 14, 0.5);
}

@keyframes intro-bg-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.intro-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-frame {
    position: relative;
    width: 100%;
    max-width: 1280px;
    padding-top: 7%;
    padding-bottom: 32px;
    padding-left: 64px;
    padding-right: 64px;
}

.intro-title {
    max-width: 920px;
    padding-bottom: 24px;
    font-size: 76px;
    line-height: 78px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(25%);
    animation-name: intro-title-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes intro-title-anima {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.intro-caption {
    max-width: 600px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    opacity: 0;
    animation-name: intro-caption-anima;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes intro-caption-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.85;
    }
}

.intro-buttons {
    display: flex;
    column-gap: 16px;
    row-gap: 16px;
    padding-top: 36px;
    opacity: 0;
    transform: translateY(10%);
    animation-name: intro-buttons-anima;
    animation-duration: 2s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes intro-buttons-anima {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

/* MODELS */

.models {
    padding-top: 90px;
    padding-bottom: 100px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: #F4F4F4;
}

.models-heading {
    width: 100%;
    padding-bottom: 64px;
    padding-left: 32px;
    padding-right: 32px;
}

.models-title {
    padding-bottom: 24px;
    font-size: 66px;
    line-height: 74px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(30%);
}

.models-caption {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: 1s;
}

.models-caption-on {
    opacity: 1;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 32px;
    row-gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.models-item {
    position: relative;
    background-color: #FFFFFF;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15%);
    transition: 0.25s;
}

.models-item:hover {
    background-color: #E6E6E6;
}

.touch .models-item:hover {
    background-color: #FFFFFF;
}

.models-item:active,
.touch .models-item:active {
    background-color: #E6E6E6;
}

.models-item:hover .models-item-info {
    border-color: #CCCCCC;
}

.touch .models-item:hover .models-item-info {
    border-color: #EBEBEB;
}

.models-item:active .models-item-info,
.touch .models-item:active .models-item-info {
    border-color: #CCCCCC;
}

.models-item:hover .models-item-picture {
    filter: brightness(90%);
}

.touch .models-item:hover .models-item-picture {
    filter: brightness(100%);
}

.models-item:active .models-item-picture,
.touch .models-item:active .models-item-picture {
    filter: brightness(90%);
}

.models-item:hover .button-alt-2 {
    background-color: #FFC10E;
    color: #000000;
}

.touch .models-item:hover .button-alt-2 {
    background-color: transparent;
    color: #FFC10E;
}

.models-item:active .button-alt-2,
.touch .models-item:active .button-alt-2 {
    background-color: #FFC10E;
    color: #000000;
}

.models-item:hover .button-alt-2 path {
    fill: #FFFFFF;
}

.touch .models-item:hover .button-alt-2 path {
    fill: #FFC10E;
}

.models-item:active .button-alt-2 path,
.touch .models-item:active .button-alt-2 path {
    fill: #FFFFFF;
}

.models-item:hover .button-alt-2 svg {
    transform: translateX(4px);
}

.touch .models-item:hover .button-alt-2 svg {
    transform: translateX(0px);
}

.models-item:active .button-alt-2 svg,
.touch .models-item:active .button-alt-2 svg {
    transform: translateX(4px);
}

.models-item-content {
    position: relative;
    z-index: 2;
}

.models-item-picture {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.25s;
}

.models-item-info {
    display: flex;
    column-gap: 8px;
    margin-left: 24px;
    margin-right: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: solid 2px #EBEBEB;
    transition: 0.25s;
}

.models-item-label {
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3px;
    color: #000000;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
}

.models-item-button {
    flex: none;
}

.models-action {
    padding-left: 32px;
    padding-right: 32px;
    text-align: center;
}

.models-action-title {
    padding-top: 72px;
    padding-bottom: 26px;
    font-size: 34px;
    line-height: 38px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.9);
    transition: 1s;
}

.models-action-title-on {
    opacity: 1;
    transform: scale(1);
}

/* MODEL */

.model {
    display: none;
    position: fixed;
    top: 24px;
    left: 24px;
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    z-index: 60;
}

.model-frame {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@keyframes anima-model-frame-show {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

.model-frame-show {
    animation-name: anima-model-frame-show;
    animation-duration: 0.25s;
}

@keyframes anima-model-frame-hide {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 0;
    }
}

.model-frame-hide {
    animation-name: anima-model-frame-hide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.model-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    opacity: 0.7;
    z-index: 50;
}

@keyframes anima-model-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}

.model-overlay-show {
    animation-name: anima-model-overlay-show;
    animation-duration: 0.25s;
}

@keyframes anima-model-overlay-hide {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 0;
    }
}

.model-overlay-hide {
    animation-name: anima-model-overlay-hide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.model-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
}

.model-list {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 12px;
    padding: 12px;
    background-color: #F4F4F4;
    overflow: auto;
}

.model-list::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

.model-list::-webkit-scrollbar-thumb {
    min-height: 50px;
    border: solid 5px #FFFFFF;
    background: #C1C1C1;
}

.model-list::-webkit-scrollbar-thumb:hover {
    background: #A8A8A8;
}

.model-list::-webkit-scrollbar-track {
    background: #FFFFFF;
}

.model-list::-webkit-scrollbar-corner {
    background: transparent;
}

.model-item {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    background-color: #FFFFFF;
    border: solid 2px transparent;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.25s;
}

.model-item:hover {
    filter: brightness(90%);
}

.touch .model-item:hover {
    filter: brightness(100%);
}

.model-item:active,
.touch .model-item:active {
    filter: brightness(90%);
}

.model-item-on {
    border-color: #FFC10E;
}

.model-item-on:hover {
    filter: brightness(100%);
}

.touch .model-item-on:hover {
    filter: brightness(100%);
}

.model-item-on:active,
.touch .model-item-on:active {
    filter: brightness(100%);
}

.model-pictures {
    flex: none;
    animation: model-pictures-anima 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes model-pictures-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.model-pictures-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 24px;
}

.model-pictures img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.model-content {
    flex: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 32px;
    padding: 48px;
    overflow: auto;
}

.model-content::-webkit-scrollbar {
    width: 17px;
    height: 17px;
}

.model-content::-webkit-scrollbar-thumb {
    min-height: 50px;
    border: solid 5px #FFFFFF;
    background: #C1C1C1;
}

.model-content::-webkit-scrollbar-thumb:hover {
    background: #A8A8A8;
}

.model-content::-webkit-scrollbar-track {
    background: #FFFFFF;
}

.model-content::-webkit-scrollbar-corner {
    background: transparent;
}

.model-info {
    display: none;
    font-size: 16px;
    line-height: 24px;
    animation: model-info-anima 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.model-info img {
    width: 100%;
    height: auto;
}

@keyframes model-info-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.model-info p {
    padding-bottom: 14px;
}

.model-info p:first-of-type {
    padding-top: 16px;
}

.model-info p:last-of-type {
    padding-bottom: 0;
}

.model-name {
    padding-top: 28px;
    font-size: 52px;
    line-height: 56px;
    font-weight: 700;
}

.model-caption {
    padding-top: 10px;
    padding-bottom: 4px;
    color: #FFC10E;
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
}

.model-specs {
    padding-top: 16px;
    border-top: solid 1px #ECECEC;
}

.model-button {
    padding-top: 30px;
    padding-bottom: 16px;
}

.model-close {
    position: absolute;
    top: 23px;
    right: 23px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: #FFC10E;
    cursor: pointer;
    transition: 0.25s;
}

.model-close img {
    width: 16px;
    height: 16px;
}

.model-close:hover {
    transform: scale(1.2);
}

.touch .model-close:hover {
    transform: scale(1);
}

.model-close:active,
.touch .model-close:active {
    transform: scale(1.2);
}

/* FEATURES */

.features {
    background-color: #FFFFFF;
    overflow: hidden;
}

.features-layout {
    display: grid;
    grid-template-columns: 0.55fr 0.45fr;
    column-gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 32px;
    padding-top: 64px;
    padding-bottom: 64px;
    padding-right: 64px;
    padding-left: 0px;
}

.features-title {
    margin-left: -3px;
    padding-top: 8px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-size: 66px;
    line-height: 74px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10%);
}

.features-caption {
    padding-left: 28px;
    padding-bottom: 34px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    opacity: 0;
    transition: 1s;
}

.features-caption-on {
    opacity: 1;
}

.features-items {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 48px;
}

.features-item {
    position: relative;
    padding-top: 14px;
    padding-bottom: 20px;
    padding-left: 28px;
    color: #AAAAAA;
    cursor: pointer;
    transition: 0.35s;
}

.features-item:hover {
    color: #666666;
}

.touch .features-item:hover {
    color: #AAAAAA;
}

.features-item:active,
.touch .features-item:active {
    color: #666666;
}

.features-item-on {
    color: #000000;
}

.features-item-on:hover {
    color: #000000;
}

.touch .features-item-on:hover {
    color: #000000;
}

.features-item-on:active,
.touch .features-item-on:active {
    color: #000000;
}

.features-item-line {
    position: absolute;
    top: 0;
    left: -2px;
    width: 2px;
    height: 100%;
    background-color: #FFC10E;
    opacity: 0;
    transform-origin: center top;
    transform: scaleY(0);
    transition: transform 0.75s;
}

.features-item-on .features-item-line {
    opacity: 1;
    transform: scaleY(1);
}

.features-item-title {
    padding-bottom: 8px;
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
}

.features-item-caption {
    font-size: 16px;
    line-height: 24px;
}

.features-item-palette {
    display: flex;
    column-gap: 10px;
    padding-top: 14px;
    opacity: 0.5;
    transition: 0.25s;
}

.features-item-on .features-item-palette {
    opacity: 1;
}

.features-item-color {
    width: 34px;
    height: 34px;
}

.features-item-color-1 {
    background-color: #AAAAAA;
}

.features-item-color-2 {
    background-color: #333333;
}

.features-item-color-3 {
    background-color: #A76256;
}

.features-item-models {
    padding-top: 14px;
    opacity: 0.5;
    transition: 0.25s;
}

.features-item-on .features-item-models {
    opacity: 1;
}

.features-item-models img {
    width: auto;
    max-width: 100%;
    height: 32px;
}

.features-pictures {
    position: relative;
    padding-left: 0px;
    z-index: 2;
}

.features-pictures-frame {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.features-pictures-frame>div {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.features-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 0.35s;
    animation-name: features-picture-anima;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes features-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.features-picture-on {
    opacity: 1;
}

.features-picture-alt {
    display: none;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 26px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: left center;
}

.features-picture-1 {
    background-image: url(../assets/styles.jpg);
}

.features-picture-2 {
    background-image: url(../assets/colors.jpg);
}

.features-picture-3 {
    background-image: url(../assets/quality.jpg);
}

.features-picture-4 {
    background-image: url(../assets/endurance.jpg);
}

.features-button {
    padding-top: 14px;
    padding-bottom: 16px;
    padding-left: 28px;
}

/* BENEFITS */

.benefits {
    background-color: #FFC10E;
    padding-top: 100px;
    padding-bottom: 64px;
    overflow: hidden;
}

.benefits-heading {
    width: 100%;
    padding-bottom: 64px;
    padding-left: 32px;
    padding-right: 32px;
}

.benefits-title {
    padding-bottom: 24px;
    font-size: 66px;
    line-height: 74px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(-70%);
}

.benefits-caption {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: 1s;
}

.benefits-caption-on {
    opacity: 1;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 32px;
    row-gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}

.benefits-graph img {
    width: auto;
    height: 154px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.75);
}

.benefits-item-title {
    padding-top: 18px;
    padding-bottom: 8px;
    color: #000000;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transition: 1s;
}

.benefits-item-title-on {
    opacity: 1;
}

.benefits-item-caption {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
}

.benefits-button {
    padding-top: 56px;
    text-align: center;
}

/* ADVANTAGES */

.advantages {
    padding-top: 48px;
    padding-bottom: 72px;
    background-color: #F1B300;
    overflow: hidden;
}

.advantages-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 32px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}

.advantages-item {
    display: flex;
    column-gap: 24px;
}

.advantages-icon {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 114px;
}

.advantages-icon img {
    width: auto;
    height: 100px;
    opacity: 0;
    transform: scale(0.75);
}

.advantages-info {
    flex: auto;
    display: flex;
    align-items: center;
}

.advantages-title {
    padding-bottom: 8px;
    color: #000000;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    opacity: 0;
    transition: 1s;
}

.advantages-title-on {
    opacity: 1;
}

.advantages-caption {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

/* USES */

.uses {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.uses-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    column-gap: 32px;
    row-gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.uses-content {
    display: flex;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 32px;
}

.uses-title {
    margin-left: -3px;
    padding-bottom: 12px;
    font-size: 66px;
    line-height: 74px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(25%);
}

.uses-caption {
    padding-bottom: 34px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    opacity: 0;
    transition: 1s;
}

.uses-caption-on {
    opacity: 1;
}

.uses-items {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    padding-left: 22px;
}

.uses-item {
    display: flex;
    column-gap: 14px;
}

.uses-item-bullet {
    flex: none;
}

.uses-item-bullet img {
    border-radius: 100px;
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.85s;
}

.uses-item-bullet-on img {
    opacity: 1;
    transform: translateX(0);
}

.uses-item-caption {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.uses-button {
    padding-top: 45px;
}

.uses-pictures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
    row-gap: 26px;
}

.uses-picture {
    background-color: #D3D3D3;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
}

.uses-picture-1 {
    height: 260px;
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
    background-image: url(../assets/uses-1.jpg);
}

.uses-picture-2 {
    margin-top: 100px;
    height: 400px;
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
    background-image: url(../assets/uses-2.jpg);
}

.uses-picture-3 {
    height: 400px;
    grid-row-start: 2;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
    background-image: url(../assets/uses-3.jpg);
}

.uses-picture-4 {
    height: 260px;
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 2;
    grid-column-end: 3;
    background-image: url(../assets/uses-4.jpg);
}

/* DIRECT */

.direct {
    padding-top: 64px;
    padding-bottom: 72px;
    background-color: #FFFFFF;
    background-image: url(../assets/direct-2.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    overflow: hidden;
}

.direct-layout {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}

.direct-icon-img {
    width: 101px;
    margin: 0 auto;
    margin-bottom: 20px;
    transform: rotate(0deg);
}

.direct-content {
    text-align: center;
}

.direct-title {
    padding-bottom: 16px;
    color: #000000;
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30%);
}

.direct-caption {
    padding-bottom: 32px;
    color: #000000;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    opacity: 0;
    transition: 1s;
}

.direct-caption-on {
    opacity: 1;
}

/* CONTACT */

.contact {
    padding-top: 120px;
    padding-bottom: 200px;
    background-color: #FFC10E;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    row-gap: 48px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 64px;
    padding-right: 64px;
}

.contact-title {
    margin-left: -3px;
    padding-bottom: 12px;
    font-size: 66px;
    line-height: 74px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(25%);
}

.contact-caption {
    padding-bottom: 34px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    opacity: 0;
    transition: 1s;
}

.contact-caption-on {
    opacity: 1;
}

.contact-form {
    padding-top: 64px;
    padding-bottom: 64px;
}

.contact-fields {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

.contact-fields-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 16px;
}

.contact-field {
    position: relative;
    cursor: text;
}

.contact-textbox {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    border: solid 2px #000000;
    color: #000000;
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    transition: 0.25s;
}

.contact-textarea {
    height: 200px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
    line-height: 22px;
    resize: none;
}

.contact-textarea::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.contact-textarea::-webkit-scrollbar-thumb {
    background: #000000;
    border: solid 2px #FFC10E;
}

.contact-textarea::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

.contact-textarea::-webkit-scrollbar-track {
    background: transparent;
}

.contact-field-on .contact-textbox {
    border-color: #FFFFFF;
}

.contact-field-filled .contact-textbox {
    border-color: #000000;
    color: #FFFFFF;
}

.contact-label {
    position: absolute;
    top: 11px;
    left: 13px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #FFC10E;
    color: #000000;
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    transition: 0.25s;
}

.contact-field-on .contact-label {
    top: -12px;
    left: 11px;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    cursor: default;
}

.contact-field-filled .contact-label {
    color: #000000;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    text-align: center;
}

.contact-info strong {
    font-weight: 600;
}

.contact-info-layout {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 48px;
    padding-bottom: 54px;
    background-color: #FFFFFF;
    transform: scale(0.85);
}

.contact-info-layout>div {
    width: 100%;
}

.contact-wheel {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    margin-bottom: 32px;
}

.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: footer-wheel-anima 20s linear infinite;
}

@keyframes footer-wheel-anima {
    100% {
        transform: rotate(360deg);
    }
}

.contact-direct {
    padding-bottom: 12px;
    color: #FFC10E;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.contact-links {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.contact-link {
    color: #000000;
    transition: 0.25s;
}

.contact-link:hover {
    color: #FFC10E;
}

.touch .contact-link:hover {
    color: #000000;
}

.contact-link:active,
.touch .contact-link:active {
    color: #FFC10E;
}

.contact-networks {
    display: inline-flex;
    column-gap: 12px;
    padding-top: 28px;
}

.contact-network {
    opacity: 0;
    transform: scale(0.75);
}

.contact-network img {
    width: 52px;
    height: 52px;
    padding: 4px;
    border-radius: 100px;
    background-color: #FFC10E;
    transition: 0.25s;
}

.contact-network:hover img {
    transform: scale(1.2);
}

.touch .contact-network:hover img {
    transform: scale(1);
}

.contact-network:active img,
.touch .contact-network:active img {
    transform: scale(1.2);
}

.contact-networks-on .contact-network {
    animation-name: contact-network-anima;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.contact-network:nth-child(1) {
    animation-delay: 0s;
}

.contact-network:nth-child(2) {
    animation-delay: 0.25s;
}

.contact-network:nth-child(3) {
    animation-delay: 0.5s;
}

.contact-network:nth-child(4) {
    animation-delay: 0.75s;
}

@keyframes contact-network-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* FOOTER */

.footer {
    padding-top: 56px;
    background-color: #FFFFFF;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8%;
    width: 100%;
    max-width: 1380px;
    padding-left: 48px;
    padding-right: 48px;
    margin: 0 auto;
}

.footer-brand {
    padding-bottom: 32px;
    opacity: 0;
    transition: 1.5s;
}

.footer-brand-on {
    opacity: 1;
}

.footer-brand img {
    width: auto;
    height: 52px;
}

.footer-caption {
    color: #000000;
    font-size: 15px;
    line-height: 25px;
}

.footer-button-frame {
    padding-top: 17px;
}

.footer-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    color: #000000;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    transition: 0.25s;
}

.footer-button>div:nth-child(2) {
    display: flex;
    align-items: center;
    height: 100%;
}

.footer-button svg {
    transition: 0.25s;
}

.footer-button path {
    fill: #000000;
    transition: 0.25s;
}

.footer-button:hover {
    color: #FFC10E;
}

.touch .footer-button:hover {
    color: #000000;
}

.footer-button:active,
.touch .footer-button:active {
    color: #FFC10E;
}

.footer-button:hover svg {
    transform: translateX(4px);
}

.touch .footer-button:hover svg {
    transform: translateX(0px);
}

.footer-button:active svg,
.touch .footer-button:active svg {
    transform: translateX(4px);
}

.footer-info {
    color: #000000;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

.footer-info strong {
    font-weight: 600;
}

.footer-contact {
    display: flex;
    align-items: center;
    padding-bottom: 4px;
    color: #000000;
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.footer-link {
    color: #000000;
    transition: 0.25s;
}

.footer-link:hover {
    color: #FFC10E;
}

.touch .footer-link:hover {
    color: #000000;
}

.footer-link:active,
.touch .footer-link:active {
    color: #FFC10E;
}

.footer-networks {
    display: inline-flex;
    column-gap: 12px;
    padding-top: 28px;
}

.footer-network img {
    width: 42px;
    height: 42px;
    padding: 4px;
    border-radius: 100px;
    background-color: #FFC10E;
    transition: 0.25s;
}

.footer-network:hover img {
    transform: scale(1.2);
}

.touch .footer-network:hover img {
    transform: scale(1);
}

.footer-network:active img,
.touch .footer-network:active img {
    transform: scale(1.2);
}

.footer-copy {
    background-color: #F1F1F1;
    margin-top: 100px;
    padding-top: 24px;
    padding-bottom: 24px;
    color: #000000;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-align: center;
}

.footer-copy strong {
    font-weight: 600;
}

/* 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: 78px;
    height: 78px;
    border-radius: 1000px;
    background: #0CC243;
    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: 46px;
    height: 46px;
}

.whatsapp svg path {
    fill: #FFFFFF;
    transition: 0.25s;
}

/* MODAL */

#modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid yellow 4px;
    z-index: 60;
}

.modal-block {
    width: 100%;
    height: 100%;
    border: solid 3px red;
}

.modal-window {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}

@keyframes anima-modal-window-show {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-window-show {
    animation-name: anima-modal-window-show;
    animation-duration: 0.35s;
}

@keyframes anima-modal-window-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.97);
    }
}

.modal-window-hide {
    animation-name: anima-modal-window-hide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    opacity: 0.7;
    z-index: 60;
}

@keyframes anima-modal-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}

.modal-overlay-show {
    animation-name: anima-modal-overlay-show;
    animation-duration: 0.25s;
}

@keyframes anima-modal-overlay-hide {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 0;
    }
}

.modal-overlay-hide {
    animation-name: anima-modal-overlay-hide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.modal-header {
    position: relative;
    height: 50px;
    background-color: #F5F5F5;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    border-radius: 160px;
    background-color: transparent;
    cursor: pointer;
    transition: 0.2s;
}

.modal-close:hover {
    background-color: #E4E4E4;
}

.touch .modal-close:hover {
    background-color: transparent;
}

.modal-close:active,
.touch .modal-close:active {
    background-color: #E4E4E4;
}

.modal-close-icon {
    position: absolute;
    top: 11px;
    left: 11px;
    width: 12px;
    height: 12px;
    background-image: url(../resources/close.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.modal-content {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.modal-content::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

.modal-content::-webkit-scrollbar-thumb {
    min-height: 50px;
    background: #C1C1C1;
    border: solid 5px #FFFFFF;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #A8A8A8;
}

.modal-content::-webkit-scrollbar-track {
    background: #FFFFFF;
}

.modal-content::-webkit-scrollbar-corner {
    background: transparent;
}

/* ADVICE */

.advice {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #FFC10E;
    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(0, 0, 0, 0.85);
    animation: advice-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;
    column-gap: 16px;
    justify-content: center;
}

.advice-close {
    display: flex;
    padding: 16px;
    cursor: pointer;
}

.advice-close img {
    display: block;
    width: 18px;
    height: 18px;
    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: 32px;
}

.advice-main {
    color: #000000;
    font-size: 18px;
    line-height: 25px;
    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: 22px;
    line-height: 30px;
    font-weight: 700;
}

.advice-detail {
    padding-top: 16px;
    color: #000000;
    font-size: 17px;
    line-height: 25px;
    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: 600;
}

.advice-main div,
.advice-detail div {
    padding-bottom: 16px;
}

@keyframes advice-content-anima {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 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: 14px;
    padding-bottom: 14px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 8px;
    background-color: #FFC10E;
    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: 16px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.toast-inverse .toast-caption {
    color: #000000;
}

.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: #000000;
}

.toast-button:hover {
    opacity: 1;
}

.touch .toast-button:hover {
    opacity: 0.7;
}

.toast-button:active,
.touch .toast-button:active {
    opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 1170px) {

    .bar-nav {
        justify-content: flex-end;
    }

    .bar-buttons {
        display: none;
    }

    .bar-menu {
        display: flex;
    }

    .models-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-layout {
        grid-template-columns: 0.5fr 0.5fr;
        padding-top: 64px;
        padding-bottom: 64px;
        padding-right: 64px;
        padding-left: 0px;
    }

    .benefits-layout {
        grid-template-columns: 1fr 1fr;
    }

    .uses-layout {
        grid-template-columns: 0.5fr 0.5fr;
    }

}

@media (max-width: 1100px) {

    .uses {
        padding-left: 48px;
        padding-right: 48px;
    }

    .uses-layout {
        grid-template-columns: 1fr;
    }

    .uses-content {
        order: 2;
    }

    .uses-pictures {
        order: 1;
    }

    .uses-picture-2 {
        margin-top: 0px;
    }

}

@media (max-width: 1030px) {

    .features-layout {
        grid-template-columns: 0.6fr 0.5fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
        padding-top: 0px;
        padding-bottom: 0px;
    }

}

@media (max-width: 920px) {

    .model-content {
        grid-template-columns: 1fr;
    }

    .model-pictures {
        order: 2;
    }

}

@media (max-width: 890px) {

    .advantages {
        padding-top: 48px;
    }

    .advantages-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 830px) {

    .intro-frame {
        padding-bottom: 32px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .intro-title {
        font-size: 56px;
        line-height: 58px;
    }

    .intro-caption {
        max-width: unset;
        font-size: 22px;
        line-height: 30px;
    }

    .models-title {
        padding-bottom: 18px;
        font-size: 46px;
        line-height: 54px;
    }

    .models-caption {
        max-width: unset;
        font-size: 20px;
        line-height: 28px;
    }

    .models-action-title {
        font-size: 28px;
        line-height: 34px;
    }

    .features-layout {
        grid-template-columns: 1fr;
        padding-top: 48px;
        padding-bottom: 32px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .features-title {
        margin-left: 0px;
        padding-left: 0px;
        font-size: 46px;
        line-height: 54px;
    }

    .features-caption {
        padding-left: 0px;
        font-size: 20px;
        line-height: 28px;
    }

    .features-items {
        padding-left: 0px;
    }

    .features-pictures {
        display: none;
    }

    .features-item {
        padding-left: 0px;
        margin-bottom: 0px;
        padding-top: 24px;
        color: #000000;
        cursor: default;
    }

    .features-item-last {
        margin-bottom: 8px;
    }

    .features-item:hover {
        color: #000000;
    }

    .touch .features-item:hover {
        color: #000000;
    }

    .features-item:active,
    .touch .features-item:active {
        color: #000000;
    }

    .features-item-palette {
        opacity: 1;
    }

    .features-item-models {
        opacity: 1;
    }

    .features-picture-alt {
        display: block;
    }

    .features-item-line {
        display: none;
    }

    .features-button {
        padding-left: 0px;
    }

    .benefits-title {
        padding-bottom: 18px;
        font-size: 46px;
        line-height: 54px;
    }

    .benefits-caption {
        max-width: unset;
        font-size: 20px;
        line-height: 28px;
    }

    .uses-title {
        font-size: 46px;
        line-height: 54px;
    }

    .uses-caption {
        font-size: 20px;
        line-height: 28px;
    }

    .contact-title {
        margin-left: -2px;
        font-size: 46px;
        line-height: 54px;
    }

    .contact-caption {
        font-size: 20px;
        line-height: 28px;
    }

}

@media (max-width: 780px) {

    .direct {
        background-image: none;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        order: 1;
    }

    .footer-contact {
        order: 3;
        padding-bottom: 18px;
    }

    .footer-caption {
        order: 2;
        padding-bottom: 32px;
    }

    .footer-info {
        order: 4;
    }

}

@media (max-width: 720px) {

    .model {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .model-list {
        order: 2;
        justify-content: flex-start;
        border-top: solid 1px #EEEEEE;
        border-bottom: none;
    }

    .model-content {
        padding: 24px;
        padding-bottom: 48px;
    }

    .model-content::-webkit-scrollbar {
        display: none;
    }

    .model-close {
        top: 16px;
        right: 16px;
    }

    .button-alt-2>div:nth-child(1) {
        padding-top: 2px;
    }

    .button-alt-3>div:nth-child(1) {
        padding-top: 2px;
    }

}

@media (max-width: 680px) {

    .bar-layout {
        column-gap: 3px;
        padding-right: 11px;
    }

    .bar-brand {
        padding-top: 2px;
    }

    .bar-brand img {
        height: 44px;
    }

    .bar-caption {
        padding-top: 5px;
        padding-bottom: 0px;
        padding-left: 0px;
        font-size: 24px;
        line-height: 24px;
    }

    .bar-dash {
        padding-top: 5px;
        padding-bottom: 0px;
        padding-left: 0px;
        font-size: 24px;
        line-height: 24px;
    }

    .bar-actions {
        display: none;
    }

    @keyframes intro-bg-anima {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.25);
        }

        100% {
            transform: scale(1);
        }
    }

    .intro-frame {
        padding-top: 25%;
        padding-bottom: 0px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .intro-title {
        padding-bottom: 18px;
        font-size: 38px;
        line-height: 40px;
    }

    .intro-caption {
        font-size: 20px;
        line-height: 28px;
    }

    .intro-buttons {
        flex-direction: column;
        max-width: 164px;
        padding-top: 28px;
    }

    .models {
        padding-top: 64px;
        padding-bottom: 80px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .models-heading {
        padding-bottom: 48px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .models-title {
        font-size: 38px;
        line-height: 44px;
    }

    .models-caption {
        font-size: 18px;
        line-height: 26px;
    }

    .models-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .models-item-info {
        margin-left: 18px;
        margin-right: 18px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .models-item-label {
        font-size: 18px;
        line-height: 18px;
    }

    .features-layout {
        padding: 24px;
        padding-bottom: 0px;
        padding-left: 24px;
    }

    .features-title {
        font-size: 38px;
        line-height: 44px;
    }

    .features-caption {
        padding-bottom: 24px;
        font-size: 18px;
        line-height: 26px;
    }

    .features-item-title {
        font-size: 24px;
        line-height: 28px;
    }

    .features-picture-alt {
        padding-bottom: 100%;
    }

    .benefits {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .benefits-heading {
        padding-bottom: 40px;
    }

    .benefits-title {
        font-size: 38px;
        line-height: 44px;
    }

    .benefits-caption {
        font-size: 18px;
        line-height: 26px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        row-gap: 32px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .benefits-button {
        padding-top: 32px;
    }

    .uses {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .uses-content {
        padding-top: 8px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .uses-title {
        font-size: 38px;
        line-height: 44px;
    }

    .uses-caption {
        font-size: 18px;
        line-height: 26px;
    }

    .uses-items {
        row-gap: 12px;
        padding-left: 0px;
    }

    .uses-pictures-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .uses-picture-1 {
        grid-row-start: unset;
        grid-row-end: unset;
        grid-column-start: unset;
        grid-column-end: unset;
    }

    .uses-picture-2 {
        grid-row-start: unset;
        grid-row-end: unset;
        grid-column-start: unset;
        grid-column-end: unset;
    }

    .uses-picture-3 {
        grid-row-start: unset;
        grid-row-end: unset;
        grid-column-start: unset;
        grid-column-end: unset;
    }

    .uses-picture-4 {
        grid-row-start: unset;
        grid-row-end: unset;
        grid-column-start: unset;
        grid-column-end: unset;
    }

    .direct {
        background-position: center;
    }

    .direct-layout {
        flex-direction: column;
    }

    .direct-icon img {
        width: 64px;
    }

    .direct-title {
        font-size: 32px;
        line-height: 38px;
    }

    .direct-caption {
        font-size: 18px;
        line-height: 26px;
    }

    .contact {
        padding-top: 72px;
        padding-bottom: 120px;
    }

    .contact-layout {
        row-gap: 32px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .contact-title {
        margin-left: 0px;
        font-size: 38px;
        line-height: 44px;
    }

    .contact-caption {
        font-size: 18px;
        line-height: 26px;
    }

    .contact-fields-double {
        grid-template-columns: 1fr;
    }

    .contact-label {
        top: 13px;
    }

    .contact-textbox {
        font-size: 16px;
        line-height: 16px;
    }

    .contact-textarea {
        font-size: 16px;
        line-height: 22px;
    }

    .contact-info-layout {
        padding: 24px;
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .contact-network img {
        width: 48px;
        height: 48px;
    }

    .footer {
        padding-top: 64px;
    }

    .footer-layout {
        padding-left: 32px;
        padding-right: 32px;
    }

}

@media (max-width: 490px) {

    .panel-frame {
        padding-left: 24px;
        padding-right: 24px;
    }

    .model-name {
        padding-top: 48px;
    }

    .advantages-layout {
        padding-left: 24px;
        padding-right: 24px;
    }

    .advantages-item {
        flex-direction: column;
        row-gap: 20px;
        text-align: center;
    }

    .advantages-icon {
        width: unset;
    }

    .advantages-icon img {
        height: 90px;
        margin: 0 auto;
    }

    .whatsapp {
        bottom: 24px;
        right: 24px;
    }

    .whatsapp-icon {
        width: 72px;
        height: 72px;
    }

    .whatsapp svg {
        width: 40px;
        height: 40px;
    }

    .advice-frame {
        padding-left: 24px;
        padding-right: 24px;
    }

}