body._lock {
    overflow: hidden;
}

.menu {
    transition: all .5s ease;
}

.menu__item {
    color: rgb(55 65 81);
}

.menu__item:hover {
    color: rgb(17 24 39);
}

.menu-icon {
    width: 24px;
    min-width: 24px;
    height: 16px;
    position: relative;
    z-index: 110;
    position: relative;
}

.menu-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 1px;
    background: rgb(55 65 81);
    transition: opacity 0s ease .1s;
}

.menu-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, -50%);
    height: 1px;
    width: 100%;
    background: rgb(55 65 81);
    transition: transform .2s ease, top .2s ease .2s;
}

.menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    transform: translate(0, -50%);
    height: 1px;
    width: 100%;
    background: rgb(55 65 81);
    transition: transform .2s ease, top .2s ease .2s, width 0s ease .2s;
}

.menu-icon._active span {
    opacity: 0;
}

.menu-icon._active::before {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    transition: top .2s ease, transform .2s ease .2s;
}

.menu-icon._active::after {
    top: 50%;
    width: 100%;
    transform: translate(0, -50%) rotate(-45deg);
    transition: top .2s ease, transform .2s ease .2s, width 0s ease .2s;
}

.menu-icon:hover span,
.menu-icon:hover::before,
.menu-icon:hover::after {
    background: rgb(17 24 39);
}

.logo {
    width: 150px;
    height: 80%;
    position: relative;
    z-index: 110;
}

.logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

[data-fancybox] {
    aspect-ratio: 400 / 250;
    position: relative;
}

[data-fancybox] img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-item {
    position: relative;
}

.how-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 32px;
    height: 2px;
    background: rgb(37 99 235);
    transform: translate(50%, -50%);
}

.how-image img {
    width: 48px;
    height: 48px;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    padding: 32px 0;
    margin: -32px 0;
}

@media (max-width: 1023.5px) {
    .how-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767.5px) {
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        background: #FFF;
        z-index: 100;
        flex-direction: column;
        padding: 96px 64px 32px;
        transform: translate(100%, 0);
    }

    .menu._active {
        transform: translate(0, 0);
    }

    .menu__item {
        margin: 0 !important;
    }

    .menu__item:not(:last-child) {
        margin-bottom: 24px !important;
    }
}

@media (max-width: 480px) {
    .menu {
        width: 100%;
    }
}