@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat/Montserrat-Regular.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat/Montserrat-Medium.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Jost";
    src: url(../fonts/Jost/Jost-Regular.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Jost";
    src: url(../fonts/Jost/Jost-Medium.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "icon";
    src: url(../fonts/icon.woff2?v=0.2);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    color: var(--white);
}
html {
    scroll-behavior: smooth;
}
:root {
    --dark: #151515;
    --dark-b: #212121;
    --white: #fff;
    --white-20: rgba(255, 255, 255, 0.2);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-70: rgba(255, 255, 255, 0.7);
    --pink: #ffd2f7;
    --blue: #c4faf8;
    --success: #ceffbc;
    --danger: #ffbcc7;
    --danger-b: rgb(255, 0, 0);
    --warning: #fffd89;
    --main: rgba(128, 11, 201);
    --main-gradient: linear-gradient(117deg, rgba(0, 0, 0) 40%, rgba(88, 8, 138, .7) 70%, rgba(128, 11, 201, .9) 100%);
    --bright-gradient: linear-gradient(135deg, #6a00ff, #c05bff);
    --shadow-main: 0 0 8px 2px var(--white-20);
}
body {
    background: var(--dark);
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin-right: 40px;
    max-width: 180px;
    img {
        height: 70px;
    }
}
h2 {
    font-family: Jost, sans-serif;
    font-size: 48px;
    line-height: 48px;
    &.line {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
        max-width: fit-content;
        &.before {
            &::before {
                content: '';
                width: 80px;
                height: 2px;
                border-radius: 2px;
                background: var(--blue);
            }
        }
        &.after {
            justify-self: end;
            text-align: right;
            &::after {
                content: '';
                width: 80px;
                height: 2px;
                border-radius: 2px;
                background: var(--pink);
            }
        }
    }
    &.center {
        text-align: center;
    }
}
img {
    width: 100%;
    display: block;
}
section {
    margin-top: 100px;
    &.wrapper {
        margin-top: 100px;
    }
    .section-meta {
        margin-top: 20px;
        color: var(--white-70);
        &.before {
            margin-left: 100px;
        }
        &.after {
            margin-right: 100px;
            margin-left: auto;
            text-align: right;
        }
    }
}
a {
    text-decoration: none;
    transition: .2s linear;
}
ul {
    list-style: none;
    li {
        margin-bottom: 5px;
        color: var(--white-70);
        p {
            display: inline;
        }
        &::before {
            content: '•';
            margin-right: 10px;
            font-size: 22px;
            color: var(--blue);
        }
    }
}
ol {
    list-style-position: inside;
    li {
        margin-bottom: 20px;
        p {
            display: inline;
        }
        &::marker {
            color: var(--blue);
        }
    }
}
form {
    input, textarea {
        border: none;
    }
    .error {
        border: 1px solid var(--danger);
    }
    span.error-text {
        color: var(--danger);
        font-size: 14px;
    }
}
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--white-70);
    border-radius: 4px;
    outline: none;
    &::-webkit-slider-runnable-track {
        height: 8px;
        background: transparent;
        border-radius: 4px;
    }
    &::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      background: #6A00FF;
      border-radius: 50%;
      cursor: pointer;
      margin-top: -6px;
    }
    &::-moz-range-track {
        height: 8px;
        background: transparent;
        border-radius: 4px;
    }
    &::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background: #6A00FF;
        border-radius: 50%;
        cursor: pointer;
        border: none;
    }
}
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    font-size: 16px;
    input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
        &:checked ~ .checkmark {
            background: linear-gradient(135deg, #6a00ff, #c05bff);
            border: none;
            &::after {
                display: block;
            }
        }
    }
    .checkmark {
        width: 20px;
        height: 20px;
        background-color: var(--white-30);
        border-radius: 4px;
        border: 1px solid var(--white-50);
        margin-right: 10px;
        transition: background-color 0.3s, border-color 0.3s;
        &::after {
            content: "";
            position: absolute;
            display: none;
            left: 7px;
            top: 3px;
            width: 4px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
    }
    &:hover .checkmark {
        border-color: var(--blue);
    }
}
.custom-radiobtn {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    font-size: 16px;
    input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
        &:checked ~ .radiomark {
            border-color: #6a00ff;
            background: #fff;
            &::after {
                display: block;
            }
        }
    }
    .radiomark {
        width: 20px;
        height: 20px;
        background-color: #fff;
        border-radius: 50%;
        border: 2px solid var(--white-50);
        margin-right: 10px;
        transition: all 0.1s linear;
        &::after {
            content: "";
            position: absolute;
            display: none;
            top: 5px;
            left: 5px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6a00ff, #c05bff);
        }
    }
    &:hover .radiomark {
        border-color: var(--blue);
    }
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    height: 52px;
    background: none;
    outline: none;
    border: none;
    &.main {
        border-radius: 40px;
        span {
            border-radius: 40px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 200px;
            transition: .2s linear;
        }
        &::after {
            font-family: icon;
            content: '\e907';
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 100%;
            border-radius: 40px;
            transition: .2s linear;
        }
        &.white {
            span {
                color: var(--dark);
                background: var(--white);
                border: 1px solid var(--white);
            }
            &::after {
                background: var(--white);
                color: var(--dark);
                border: 1px solid var(--white);
            }
        }
        &.transparent {
            span {
                color: var(--white);
                border: 1px solid var(--white);
            }
            &::after {
                color: var(--white);
                border: 1px solid var(--white);
            }
        }
        &.blue {
            span {
                border: 1px solid var(--blue);
                color: var(--dark);
                background: var(--blue);
            }
            &::after {
                background: var(--blue);
                color: var(--dark);
                border: 1px solid var(--blue);
            }
        }
    }
}
.alert {
    position: fixed;
    width: calc(100% - 40px);
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    top: -100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    background: var(--dark-b);
    z-index: 9999;
    transition: .2s linear;
    p {
        text-align: center;
    }
    &.active {
        top: 20px;
        opacity: 1;
        visibility: visible;
    }
}
.quote {
    padding: 10px 10px 10px 20px;
    position: relative;
    &::before {
        content: '';
        width: 2px;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }
    &.blue {
        background: rgba(196, 250, 248, .1);
        &::before {
            background: var(--blue);
        }
    }
    &.pink {
        background: rgba(247, 205, 240, .1);
        &::before {
            background: var(--pink);
        }
    }
}
.wrapper {
    max-width: 1660px;
    width: 100%;
    margin: 0 auto;
}
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .2s linear;
    .wrapper {
        position: relative;
        width: 100%;
        max-width: 600px;
        background: var(--dark);
        border-radius: 20px;
        padding: 60px;
        transition: .2s linear;
        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--white-20);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--white);
            transition: .2s linear;
            &::before {
                font-family: icon;
                content: '\e910';
                font-size: 12px;
            }
        }
        h2 {
            &::after {
                content: '';
                width: 100px;
                height: 2px;
                border-radius: 2px;
                background: var(--blue);
                display: block;
                margin-bottom: 20px;
            }
        }
        p {
            color: var(--white-70);
        }
    }
    &.active {
        opacity: 1;
        visibility: visible;
    }
}
form.contacts-form {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 20px;
    input, textarea {
        width: 100%;
        padding: 10px;
        border-radius: 16px;
        height: 48px;
        outline: none;
        font-size: 16px;
        background: linear-gradient(135deg, var(--white-20) 0%, var(--dark-b) 100%);
        color: var(--white-70);
        transition: .2s linear;
        &::placeholder {
            color: var(--white-50);
            font-size: 14px;
        }
    }
    textarea {
        resize: vertical;
        min-height: 100px;
        max-height: 240px;
    }
    .btn {
        align-self: start;
    }
}
@keyframes rotateAndFloat {
  0% {
    transform: rotate(0deg) translate(0px, 0px);
  }
  25% {
    transform: rotate(90deg) translate(10px, -5px);
  }
  50% {
    transform: rotate(180deg) translate(-10px, 10px);
  }
  75% {
    transform: rotate(270deg) translate(5px, 5px);
  }
  100% {
    transform: rotate(360deg) translate(0px, 0px);
  }
}
@keyframes fluctuate {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(10px, -5px);
  }
  50% {
    transform: translate(5px, 5px);
  }
  75% {
    transform: translate(-5px, 5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes shake-pause {
  0%, 85% {
    transform: rotate(0deg);
  }
  86% {
    transform: rotate(-15deg);
  }
  88% {
    transform: rotate(15deg);
  }
  90% {
    transform: rotate(-10deg);
  }
  92% {
    transform: rotate(10deg);
  }
  94% {
    transform: rotate(-5deg);
  }
  96% {
    transform: rotate(5deg);
  }
  98%, 100% {
    transform: rotate(0deg);
  }
}
.hero-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 768px;
    max-height: 860px;
    header {
        z-index: 99;
        position: relative;
        padding: 40px 0;
        display: flex;
        align-items: center;
        nav {
            padding: 10px;
            height: 60px;
            border: 1px solid var(--white-50);
            border-radius: 30px;
            margin-right: auto;
            ul {
                display: flex;
                gap: 5px;
                align-items: center;
                list-style-type: none;
                margin: 0;
                padding: 0;
                height: 100%;
                li {
                    margin: 0;
                    height: 100%;
                    display: flex;
                    a {
                        font-size: 18px;
                        padding: 0 10px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        height: 100%;
                        border-radius: 20px;
                        transition: background .2s linear;
                    }
                    &.current-menu-item {
                        a {
                            background: var(--white-20);
                        }
                    }
                    &::before {
                        content: none;
                    }
                }
            }
        }
        .burger-menu {
            margin-left: 30px;
            z-index: 99;
            .btn.toggle {
                width: 60px;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                .item {
                    position: relative;
                    width: 30px;
                    height: 18px;
                    span {
                        &::before, &::after {
                            content: '';
                            position: absolute;
                            right: 0;
                            height: 2px;
                            border-radius: 2px;
                            background: var(--white);
                            z-index: 1;
                        }
                        &::before {
                            top: 12px;
                            width: 30px;
                        }
                        &::after {
                            width: 20px;
                            top: 18px;
                        }
                    }
                    &::before, &::after {
                        content: '';
                        position: absolute;
                        right: 0;
                        height: 2px;
                        border-radius: 2px;
                        background: var(--white);
                        z-index: 1;
                        transition: .2s linear;
                    }
                    &::before {
                        top: 0;
                        width: 30px;
                    }
                    &::after {
                        width: 20px;
                        top: 6px;
                    }
                }
            }
            .items {
                position: absolute;
                right: -140px;
                opacity: 0;
                visibility: hidden;
                display: flex;
                flex-direction: column;
                transition: .2s linear;
                ul {
                    list-style-type: none;
                    margin: 0;
                    padding: 0;
                    display: flex;
                    flex-direction: column;
                    li {
                        margin: 0;
                        height: 100%;
                        display: flex;
                        &::before {
                            content: none;
                        }
                        &.current-menu-item {
                            a {
                                color: var(--blue);
                            }
                        }
                    }
                }
                .main-menu {
                    display: none;
                }
                a, button {
                    padding: 5px 0;
                    font-size: 16px;
                    height: auto;
                    white-space: nowrap;
                    justify-content: start;
                }
                .phone {
                    margin-top: 20px;
                }
                .social {
                    margin-top: 20px;
                    display: flex;
                    gap: 10px;
                    a {
                        padding: 0;
                    }
                    a::before {
                        font-size: 20px;
                        font-family: icon;
                    }
                    .inst::before {
                        content: '\e908';
                    }
                    .tg::before {
                        content: '\e901';
                    }
                    .viber::before {
                        content: '\e921';
                    }
                    .wa::before {
                        content: '\e920';
                    }
                }
            }
        }
        &.burger-active {
            .burger-menu {
                .btn.toggle {
                    .item {
                        span {
                            display: none;
                        }
                        &::before, &::after {
                            width: 30px;
                        }
                        &::before {
                            top: 6px;
                            transform: rotate(45deg);
                        }
                        &::after {
                            transform: rotate(-45deg);
                        }
                    }
                }
                .items {
                    opacity: 1;
                    visibility: visible;
                    right: 20px;
                }
            }
            &::after {
                width: 400px;
                height: 520px;
                border-radius: 60px;
                z-index: 9;
            }
        }
        &::before {
            content: '';
            position: absolute;
            left: -420px;
            width: 500px;
            height: 500px;
            z-index: -1;
            top: -200px;
            background: rgb(92, 141, 255, .6);
            filter: blur(120px);
        }
        &::after {
            content: '';
            position: absolute;
            right: -190px;
            width: 300px;
            height: 300px;
            top: -150px;
            background: rgba(224, 243, 254, .2);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-radius: 150px;
            z-index: -1;
            transition: .2s linear;
        }
    }
    .hero {
        position: relative;
        z-index: 9;
        height: calc(100% - 150px);
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        .headline {
            font-size: 102px;
            font-weight: 500;
            letter-spacing: 2px;
            line-height: 122px;
            margin-bottom: 50px;
            max-width: fit-content;
            span {
                font-weight: inherit;
                &.pink {
                    color: var(--pink);
                }
                &.blue {
                    color: var(--blue);
                }
            }
        }
        .btn {
            margin-bottom: 60px;
            justify-self: start;
        }
        .caption {
            max-width: 600px;
            * {
                display: inline;
                font-size: 16px;
                letter-spacing: 2px;
                color: var(--white-70);
            }
        }
        .object {
            position: absolute;
            width: 600px;
            right: 0;
            aspect-ratio: 1/1;
            top: 50%;
            transform: translateY(-50%);
            z-index: -1;
            img {
                height: 100%;
                object-fit: contain;
                &:not(.still) {
                    animation: rotateAndFloat 80s linear infinite;
                }
                &.fluct {
                    animation: fluctuate 6s linear infinite;
                }
            }
            &::before {
                content: '';
                position: absolute;
                right: 30px;
                top: 320px;
                width: 250px;
                height: 100px;
                background: rgba(196, 250, 248);
                filter: blur(50px);
                z-index: -1;
            }
            &::after {
                content: '';
                position: absolute;
                left: 210px;
                bottom: 100px;
                width: 250px;
                height: 100px;
                background: rgba(247, 205, 240, .7);
                filter: blur(50px);
                z-index: -1;
            }
        }
        .accent-item {
            position: absolute;
            left: 55%;
            bottom: 50px;
            background: rgba(224, 243, 254, .2);
            border-radius: 150px;
            width: 300px;
            height: 300px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: -1;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                max-width: 90px;
                aspect-ratio: 1/1;
                object-fit: contain;
                display: block;
                animation: shake-pause 4s infinite ease-in-out;
            }
        }
        &::before {
            content: '';
            position: absolute;
            left: 400px;
            top: 400px;
            width: 140px;
            height: 100px;
            background: rgba(196, 250, 248, .7);
            filter: blur(68px);
        }
        &::after {
            content: '';
            position: absolute;
            left: 870px;
            top: 80px;
            width: 160px;
            height: 120px;
            background: rgba(247, 205, 240, 0.5);
            filter: blur(50px);
        }
    }
    .cell-container {
        position: absolute;
        inset: 0;
        display: grid;
        grid-template-columns: repeat(var(--cols), var(--cell-size));
        grid-auto-rows: var(--cell-size);
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
        .cell {
            border: 1px solid var(--white-50);
        }
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--main-gradient);
        z-index: 2;
    }
    &::after {
        content: '';
        position: absolute;
        left: -70px;
        bottom: 40px;
        width: 180px;
        height: 140px;
        background: rgba(196, 250, 248, .4);
        filter: blur(80px);
        z-index: 3;
    }
}
.cta {
    background: var(--pink);
    padding: 40px 0;
    background: url(../img/cta.webp) center / cover no-repeat fixed;
    position: relative;
    .wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 9;
        gap: 100px;
        padding: 0 40px;
        h2 {
            width: 100%;
        }
        .btn {
            span {
                width: 200px;
            }
        }
    }
    &::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--main-gradient);
        z-index: 2;
    }
}
.btn.go-up {
    width: 52px;
    height: 52px;
    position: fixed;
    right: 0;
    bottom: 20px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-main);
    transition: .2s linear;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    &.active {
        visibility: visible;
        opacity: 1;
        right: 20px;
    }
    &.b-menu {
        bottom: 72px;
    }
    &::before {
        font-family: icon;
        content: '\e916';
        transform: rotate(90deg);
        color: var(--dark);
    }
}
.bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    bottom: -52px;
    opacity: 0;
    visibility: hidden;
    transition: .2s linear;
    .btn, a {
        width: 100%;
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        height: 52px;
    }
    .btn {
        background: var(--blue);
    }
    a {
        background: var(--pink);
    }
    &.active {
        bottom: 0;
        opacity: 1;
        visibility: visible;
    }
}
footer {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-b) 0%, var(--dark) 100%);
    .top {
        display: flex;
        justify-content: space-between;
        margin-bottom: 120px;
        .promo {
            font-size: 52px;
            font-weight: 500;
            letter-spacing: 2px;
            span {
                font-weight: inherit;
                &.pink {
                    color: var(--pink);
                }
                &.blue {
                    color: var(--blue);
                }
            }
        }
    }
    .bottom {
        display: flex;
        > div {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-right: auto;
            p {
                font-size: 22px;
                font-weight: 500;
            }
            a {
                font-size: 18px;
                font-weight: 400;
            }
            .social {
                display: flex;
                gap: 10px;
                a::before {
                    font-family: icon;
                    font-size: 18px;
                }
                .inst::before {
                    content: '\e908';
                }
                .tg::before {
                    content: '\e901';
                }
                .viber::before {
                    content: '\e921';
                }
                .wa::before {
                    content: '\e920';
                }
            }
            &.menu {
                margin-right: 100px;
            }
        }
        .copy {
            align-self: end;
        }
    }
}
@media screen and (max-width: 1720px) {
    .logo {
        p {
            font-size: 16px;
        }
    }
    h2 {
        font-size: 42px;
    }
    section {
        .section-meta {
            margin-top: 10px;
        }
    }
    .btn {
        height: 48px;
        &.main {
            span {
                height: 48px;
                width: 160px;
                font-size: 16px;
            }
            &::after {
                height: 48px;
                width: 48px;
                font-size: 12px;
            }
        }
    }
    .wrapper {
        max-width: unset;
        width: calc(100% - 120px);
    }
    .hero-wrapper {
        header {
            nav {
                height: 48px;
                padding: 6px;
                a {
                    font-size: 16px;
                }
            }
            .burger-menu {
                position: relative;
                .btn.toggle {
                    width: 48px;
                    height: 48px;
                }
            }
        }
        .hero {
            .headline {
                font-size: 72px;
                line-height: normal;
            }
            .caption * {
                letter-spacing: 1px;
            }
            .object {
                max-width: 600px;
            }
            .accent-item {
                width: 220px;
                height: 220px;
                bottom: 90px;
            }
        }
    }
    footer {
        .top {
            .promo {
                font-size: 36px;
                letter-spacing: 1px;
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    .wrapper {
        width: calc(100% - 100px);
    }
    .hero-wrapper {
        header {
            nav {
                display: none;
            }
            .logo {
                margin-right: auto;
            }
            .burger-menu {
                .items .main-menu {
                    display: flex;
                    flex-direction: column;
                }
            }
            &.burger-active {
                &::after {
                    height: 660px;
                    width: 440px;
                }
            }
        }
        .hero {
            padding: 60px 0 120px;
           .headline {
                font-size: 52px;
            }
            .object {
                max-width: 400px;
                top: 60%;
            }
            .caption {
                max-width: 400px;
                * {
                    letter-spacing: normal;
                    font-size: 14px;
                    br {
                        display: none;
                    }
                }
            }
            .accent-item {
                width: 160px;
                height: 160px;
                bottom: 200px;
            }
        }
    }
    .cta {
        .wrapper {
            padding: 0;
            flex-direction: column;
            gap: 40px;
            h2 {
                text-align: center;
            }
        }
    }
    footer {
        padding: 80px 0;
        .top {
            margin-bottom: 60px;
            .promo {
                font-size: 24px;
                letter-spacing: 1px;
            }
        }
        .bottom {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px 20px;
            > div {
                p {
                    font-size: 18px;
                }
                a {
                    font-size: 16px;
                }
                &.menu {
                    margin: 0;
                }
            }
            .copy {
                grid-column: 1 / 3;
            }
        }
    }
}
@media screen and (max-width: 767px) {
    h2 {
        font-size: 36px;
        &.line {
            gap: 5px;
            &.before {
                flex-direction: column-reverse;
                align-items: start;
            }
            &.after {
                flex-direction: column;
                align-items: end;
            }
        }
    }
    section {
        .section-meta {
            font-size: 14px;
            &.before, &.after {
                margin: 20px 0 0;
            }
        }
    }
    .wrapper {
        width: calc(100% - 60px);
    }
    .modal {
        .wrapper {
            width: calc(100% - 40px);
            padding: 60px 30px;
        }
    }
    .hero-wrapper {
        header {
            > .btn {
                display: none;
            }
            .logo {
                max-width: 160px;
            }
        }
        .hero {
           .headline {
                font-size: 36px;
                letter-spacing: normal;
                br {
                    display: none;
                }
            }
            .object {
                right: -30px;
                width: 300px;
                display: none;
            }
            .accent-item {
                bottom: 260px;
                width: 120px;
                height: 120px;
                left: 68%;
                img {
                    max-width: 40px;
                }
            }
        }
    }
    .bottom-menu {
        display: flex;
    }
    footer {
        .top {
            flex-direction: column;
            gap: 20px;
            .promo {
                font-size: 22px;
            }
        }
        .bottom {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            > div {
                min-width: 150px;
            }
            .copy {
                grid-column: 1;
            }
        }
    }
}
@media screen and (hover: hover) {
    .hero-wrapper {
        header {
            nav {
                a:hover {
                    background: var(--white-20);
                }
            }
            .burger-menu {
                .items {
                    a:hover, button:hover {
                        color: var(--blue);
                    }
                }
            }
        }
        .hero {
            .object:hover {
                img {
                    animation-play-state: paused;
                }
            }
            a.accent-item:hover {
                transform: scale(1.1);
            }
        }
    }
    .btn {
        &.main:hover {
            span {
                box-shadow: var(--shadow-main);
            }
            &.white {
                span {
                    color: var(--white);
                    background: transparent;
                }
                &::after {
                    background: transparent;
                    color: var(--white);
                }
            }
            &.transparent {
                span {
                    color: var(--dark);
                    background: var(--white);
                }
                &::after {
                    background: var(--white);
                    color: var(--dark);
                }
            }
            &.blue {
                span {
                    color: var(--blue);
                    background: transparent;
                }
                &::after {
                    background: transparent;
                    color: var(--blue);
                }
            }
            &::after {
                transform: rotate(45deg);
                box-shadow: var(--shadow-main);
            }
        }
        &.go-up:hover {
            transform: scale(1.1);
            box-shadow: 0 0 8px 2px var(--white-50);
        }
    }
    footer {
        .bottom {
            > div {
                a:hover {
                    color: var(--blue);
                }
                > a:hover {
                    transform: translateX(4px);
                }
            }
        }
    }
}