@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');
* {
    box-sizing: border-box;
    font-family: Roboto, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    border: 0;
}

:root {
    --black: #000;
    --white: #FFF;
    --bg: #E2E2E2;
    --bg2: #1c192c;
    --base-text: #1E1E1E;

    --max-width: 1440px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: Roboto, Arial, 'Helvetica Neue', Helvetica, 'Arial Rub', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: var(--base-text);
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    width: 100vw;
    overflow: hidden;
}
body::-webkit-scrollbar {
    width: 4px;
}
body::-webkit-scrollbar-track {
    background: #FFF;
}
body::-webkit-scrollbar-thumb {
    background-color: #ffa900;
    border-radius: 4px;
}

section {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 20px;
    position: relative;
}

input {
    outline: 0;
}
section {
    margin-left: auto;
    margin-right: auto;
}

h1,h2,h3,h4,h5,h6 {
    font-family: Unbounded;
    font-weight: 600;
}

h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 600;
}
h2 {
    font-size: 38px;
    margin: 0;
    font-weight: 800;
}
h3 {
    font-size: 19px;
    margin: 0;
    font-weight: 600;
}
h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}
h5 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}
h6 {
    font-size: 12px;
    margin: 0;
    font-weight: 600;
}
p {
    margin: 0;
}
a {
    color: inherit;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s;
}
a:hover {
    text-decoration: none;
}
button {
    cursor: pointer;
}
ul {
    list-style-type: disc;
    margin-left: 20px;
}
li {
    margin-bottom: 5px;
}
.text-center {
    text-align: center;
}
.padding-top-20 {
    padding-top: 20px;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
.noborder {
    border: 0!important;
}
.row {
    display: flex;
    flex-direction: row;
}
.nowrap {
    flex-wrap: nowrap;
}
.column {
    display: flex;
    flex-direction: column;
}
.gap5 {
    gap: 5px;
}
.gap10 {
    gap: 10px;
}
.gap15 {
    gap: 15px;
}
.gap20 {
    gap: 20px;
}
.gap25 {
    gap: 25px;
}
.gap30 {
    gap: 30px;
}
.w100 {
    width: 100%;
}
.h100 {
    height: 100%;
}
.w50 {
    width: 50%;
}
.grid2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.grid3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.grid4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.grid5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.space-between {
    justify-content: space-between;
}
.flex-start {
    align-items: flex-start;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}
.flex {
    display: flex;
}
.upper {
    text-transform: uppercase;
}

@media screen and (max-width: 746px) {
    .mw100 {
        width: 100%;
    }
    .mw50 {
        width: 50%;
    }
    .mrow {
        display: flex;
        flex-direction: row;
    }
    .mcolumn {
        display: flex;
        flex-direction: column;
    }
    .mgrid1col {
        grid-template-columns: repeat(1, 1fr);
    }
    .mgrid2col {
        grid-template-columns: repeat(2, 1fr);
    }
    .mgrid3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .mgrid4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

a {
    transition: all 0.3s;
}
a:hover {
    transform: scale(1.02);
}

header {
    z-index: 99999;
}

.header-out {
    width: 100%;
    max-width: var(--max-width);
    margin: 104px auto 0 auto;
}
main.inner-page .header-box {
    width: 100%;
    padding: 50px 50px 50px 80px;
    height: 400px;
    max-height: 400px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    position: relative;
}
.header-box {
    width: 100%;
    padding: 120px 50px 50px 80px;
    height: 100vh;
    max-height: 800px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    position: relative;
}
.header-box .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(15, 4, 76, 0.9), rgba(15, 4, 76, 0.5), rgba(15, 4, 76, 0.9));
    background-size: cover;
    z-index: -1;
}
.header-box video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.header-box h1 {
    font-size: 44px;
    color: #FFF;
    background: linear-gradient(160deg, #cf22de, #4bf2f2, #ffa901);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.header-box .company {
    font-size: 16px;
    color: #FFF;
    background: linear-gradient(160deg, #cf22de, #4bf2f2, #ffa901);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Unbounded';
    font-weight: 300;
}
.header-box .company.mob {
    display: none;
}
@media (min-width: 1201px) and (max-width: 1440px) {
    .header-box h1 {
        font-size: 44px;
    }
    .header-box h1 br {
        display: none;
    }
}
@media (min-width: 747px) and (max-width: 1200px) {
    .header-box h1 {
        font-size: 36px;
    }
    .header-box {
        padding: 120px 30px 50px 30px;
    }
}
.header-box h1 a {
    font-family: inherit;
}

.header-menu {
    width: 100%;
    height: 104px;
    max-width: var(--max-width);
    position: fixed;
    top: 0;
    margin: 20px auto;
    padding-right: 40px;
}
.header-menu .logo img {
    height: 40px;
}
.header-menu .phone {
    font-family: Unbounded;
    font-weight: 700;
}
.header-menu .phone a {
    transition: all 0.3s;
}
.header-menu .phone a:hover {
    color: #4f2383;
    transform: scale(1.02);
}
.header-menu .phone a svg {
    width: 24px;
    fill: #1C1C1C;
    display: inline-block;
    margin-bottom: -7px;
    transition: all 0.4s;
}
.header-menu .phone:hover a svg {
    transform: rotate(180deg);
}

.header-menu .phone-more {
    width: 225px;
    position: absolute;
    top: 0;
    right: 0;
    margin-left: -130px;
    padding-top: 30px;
    margin-top: 40px;
    background-color: transparent;
    height: fit-content;
    display: none;
    transition: all 0.5s;
}
.phone-more .phone-more-inner {
    flex-direction: column;
    width: 100%;
    gap: 14px;
    display: flex;
    padding: 20px;
    background-color: #ffa901;
    border-radius: 20px;
    color: #1C1C1C;
    position: relative;
    z-index: 999;
}
.header-menu .phone:hover .phone-more {
    display: flex;
}
.phone-more .phone-more-inner a {
    font-family: 'Unbounded';
    font-size: 12px;
    color: #1C1C1C;
    font-weight: 500;
    transition: all 0.3s;
}
.phone-more .phone-more-inner a:hover {
    color: #4f2383;
}

.header-menu-inner {
    width: 100%;
    max-width: var(--max-width);
    height: fit-content;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgb(255 255 255 / 48%);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    box-shadow:
        /* Нижний и правый эффект глубины */
            inset -0.75px -0.5px rgba(255, 255, 255, 0.1),
                /* Верхний и левый эффект глубины */
            inset +0.75px +0.5px rgba(255, 255, 255, 0.025),
                /* Эффект тени */
            3px 2px 5px rgba(0, 0, 0, 0.05),
                /* Короткий подповерхностный эффект */
            inset 0px 0px 10px 5px rgba(255, 255, 255, 0.025),
                /* Длинный подповерхностный эффект */
            inset 0px 0px 40px 5px rgba(255, 255, 255, 0.025);
    border-radius: 32px;
    color: #1C1C1C;
    position: relative;
    z-index: 999;
}
.header-menu .menu ul {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-menu .menu ul li {
    font-family: 'Unbounded';
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #1C1C1C;
    transition: all 0.3s;
    font-weight: 500;
    cursor: pointer;
}
.header-menu .menu ul li:hover {
    transform: scale(1.02);
    color: #4f2383;
}

body {
    display: flex;
    flex-direction: column;
}
.header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 30px 0;
    align-items: center;
}
.all-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.cards-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.cards-row .card .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgb(185 185 185 / 90%), rgb(255 255 255 / 50%), rgb(193 193 193 / 90%));
    z-index: 0;
    transition: all 0.3s;
    opacity: 1;
}
.cards-row .card .bg-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(15, 4, 76, 0.9), rgba(15, 4, 76, 0.5), rgba(15, 4, 76, 0.9));
    z-index: 0;
    transition: all 0.3s;
    opacity: 0;
}
.cards-row .card:hover .bg {
    opacity: 0;
}
.cards-row .card:hover .bg-hover {
    opacity: 1;
}
.cards-row .card {
    width: 100%;
    height: 100%;
    min-height: 400px;
    padding: 20px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #4c4c4c;
    color: #FFF;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}
.cards-row .card a.all-a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.cards-row .card span:nth-child(1) {
    font-size: 48px;
    font-weight: 800;
    font-family: Unbounded;
    color: #FFF;
    letter-spacing: 2px;
    z-index: 1;

    background: linear-gradient(115deg, #3571dc, #9c61d5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cards-row .card span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: #2f2f2f;
    letter-spacing: 1px;
    z-index: 1;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.cards-row .card span:nth-child(3) {
    font-size: 16px;
    font-weight: 500;
    font-family: Unbounded;
    color: #2f2f2f;
    letter-spacing: 2px;
    z-index: 1;
    transition: all 0.3s;
}
.cards-row .card span:nth-child(4) {
    font-size: 16px;
    font-weight: 500;
    font-family: Unbounded;
    color: #2f2f2f;
    letter-spacing: 2px;
    z-index: 1;
    transition: all 0.3s;
}
.cards-row .card span:nth-child(5) {
    font-size: 14px;
    font-weight: 300;
    font-family: Unbounded;
    color: #2f2f2f;
    letter-spacing: 2px;
    z-index: 1;
    transition: all 0.3s;
}
.cards-row .card:hover span {
    color: #FFF !important;
}



.cards-row .card.abs {
    flex: 1.5;
    background: url('https://vist-list.ru/wp-content/uploads/2022/01/bdff4c02-2e2f-4132-9caa-093f382eb309.jpg') center center/cover no-repeat;
}
.cards-row .card:hover {
    transform: scale(1.02);
}
.cards-row .card.abs2 {
    flex: 1;
    background: url('https://vist-list.ru/wp-content/uploads/2022/01/438f50fe-bee0-4515-964e-4331873c6f62-1024x768.jpg') center center/cover no-repeat;
}
.cards-row .card.abs3 {
    flex: 1;
    background: url('https://vist-list.ru/wp-content/uploads/2022/01/b7c1ae56-63e9-4b9d-af66-ce4dff53d0fe.jpg') center center/cover no-repeat;
}
.cards-row .card.abs4 {
    flex: 1;
    background: url('https://vist-list.ru/wp-content/uploads/2021/06/3839E076-9A25-42EC-A6AD-B0019EB4549D-e1623009063187.jpg') center center/cover no-repeat;
}
.cards-row .card.abs5 {
    flex: 2;
    background: url('https://vist-list.ru/wp-content/uploads/2024/12/2024-12-02_15-44-52_result.webp') center center/cover no-repeat;
}
.cards-row .card.abs6 {
    flex: 1;
    background: url('https://vist-list.ru/wp-content/uploads/2022/01/386524c8-a3b2-4be3-8a5e-9fa44dd03d95-e1641993371370-1024x768.jpg') center center/cover no-repeat;
}
.cards-row .card.abs7 {
    flex: 1;
    background: url('https://vist-list.ru/wp-content/uploads/2022/05/hips-e1653989954697.jpg') center center/cover no-repeat;
}
.cards-row .card.abs8 {
    flex: 1;
    background: url('https://vist-list.ru/wp-content/uploads/2021/06/IMG_5472-1-1536x710.jpg') center center/cover no-repeat;
}
.cards-row .card.abs2 span:nth-child(1) {
    font-size: 24px;
    font-weight: 800;
    font-family: Unbounded;
    color: #2f2f2f;
    letter-spacing: 2px;
    z-index: 1;
    background: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}
.cards-row .card.abs3 span:nth-child(1) {
    font-size: 24px;
    font-weight: 800;
    font-family: Unbounded;
    color: #2f2f2f;
    letter-spacing: 2px;
    z-index: 1;
    background: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}
.cards-row .card.abs4 span:nth-child(1) {
    font-size: 24px;
    font-weight: 800;
    font-family: Unbounded;
    color: #2f2f2f;
    letter-spacing: 2px;
    z-index: 1;
    background: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}
.cards-row .card.abs5 span:nth-child(1) {
    font-size: 48px;
    font-weight: 800;
    font-family: Unbounded;
    color: #2f2f2f;
    letter-spacing: 2px;
    z-index: 1;
    background: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}
.cards-row .card.abs6 span:nth-child(1) {
    font-size: 24px;
    font-weight: 800;
    font-family: Unbounded;
    color: #FFF;
    letter-spacing: 2px;
    z-index: 1;
    background: linear-gradient(115deg, #3571dc, #9c61d5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cards-row .card.abs7 span:nth-child(1) {
    font-size: 24px;
    font-weight: 800;
    font-family: Unbounded;
    color: #FFF;
    letter-spacing: 2px;
    z-index: 1;
    background: linear-gradient(115deg, #3571dc, #9c61d5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cards-row .card.abs8 span:nth-child(1) {
    font-size: 24px;
    font-weight: 800;
    font-family: Unbounded;
    color: #FFF;
    letter-spacing: 2px;
    z-index: 1;
    background: linear-gradient(115deg, #3571dc, #9c61d5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
section:has(.stroke) {
    padding: 0;
    max-width: 100vw;
    width: 100vw;
}
.stroke {
display: flex;
width: 100%;
max-width: 100vw;
margin: 0 auto 0 auto;
overflow: hidden;
}
.stroke span {
color: #a9a9a9;
}

.stroke__item {
flex-shrink: 0;
font-size: clamp(1.125rem, 0.8023rem + 1.2064vw, 2.25rem);
line-height: 1.5;
font-family: 'Unbounded';
font-weight: 600;
text-transform: uppercase;
animation: running-animation 20s linear infinite;
white-space: nowrap;
}

@keyframes running-animation {
    0% {
        transform: translateZ(0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.special-button {
display: flex;
flex-direction: row;
gap: 20px;
padding: 10px 20px;
border-radius: 50px;
    background-color: #59187245;
    color: #ffffff;
font-weight: 400;
font-size: 16px;
z-index: 1;
margin-top: 20px;
transition: all 0.3s;
letter-spacing: 1px;
}
.special-button:hover {
transform: scale(1.02);
}

main {
display: flex;
flex-direction: column;
gap: 50px;
}
.mobile-menu {
    display: none;
}
.mobile-menu svg {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #611eaf;
    padding: 8px;
}
.burger-checkbox {
    position: absolute;
    visibility: hidden;
}
.burger {
    cursor: pointer;
    display: block;
    position: relative;
    border: none;
    background: transparent;
    width: 30px;
    height: 26px;
    margin: 5px auto;
}
.burger::before,
.burger::after {
    content: '';
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: #611eaf;
}
.burger::before {
    top: 0;
    box-shadow: 0 11px 0 #611eaf;
    transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
    bottom: 0;
    transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
    top: 11px;
    transform: rotate(45deg);
    box-shadow: 0 6px 0 rgba(0,0,0,0);
    transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
    bottom: 11px;
    transform: rotate(-45deg);
    transition: bottom .3s, transform .3s .15s;
}
section.full-width {
    padding: 0;
    width: 100vw;
    max-width: 100vw;
}

.owl-carousel.partners .owl-item .item {
    display: flex !important;
    align-items: center !important;
    height: 100px !important;
}
.owl-carousel.partners {
    background: #FFF;
    padding: 20px 0;
}
.owl-carousel.zakazi .owl-item .item {
    display: flex !important;
    align-items: center !important;
    height: 350px !important;
    flex-direction: column;
    gap: 20px;
}
.owl-carousel.zakazi .owl-item .item img {
    height: 350px !important;
}
.header-menu-inner .menu ul li {
    position: relative;
}
.header-menu-inner .menu ul li ul.submenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 150px;
    gap: 10px;
    padding: 10px 15px;
    background-color: #FFF;
    border-radius: 20px;
    color: #1C1C1C;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 25px;
    left: -15px;
}
.header-menu-inner .menu ul li:hover ul.submenu {
    visibility: visible;
    opacity: 1;
}

.header-menu-inner .menu ul li ul.submenu li a {
    font-size: 14px;
    color: #1C1C1C;
}
.header-menu-inner .menu ul li a:hover {
    color: #4f2383;
}
.header-menu-inner .menu ul li ul.submenu.big li a {
    font-size: 12px;
    color: #1C1C1C;
}
.header-menu-inner .menu ul li ul.submenu.big li a:hover {
    color: #4f2383;
}

.header-menu-inner .menu ul li ul.submenu.big {
    width: 250px;
    line-height: 1;
}
footer {
    background-color: #4f2383;
    color: #ffffff7d;
    font-weight: 300;
    padding: 50px 0;
    font-size: 12px;
    transition: all 0.5s;
    margin-top: 50px;
}
footer .logo {
    width: 120px;
}
.footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.footer-grid div {
    padding-top: 50px;
}
.footer-grid div:first-child {
    padding-top: 0;
}
footer ul {
    margin: 0;
    margin-top: 10px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
footer ul li {
    margin: 0;
    padding: 0;
    transition: all 0.5s;

}
footer a:hover,
footer li:hover {
    color: #ffa901;
    transform: scale(1.02);
}
.mobile-menu-box {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 10px;

}
.mobile-menu-box.active {
    display: flex;
}
.after-footer {
    text-align: center;
    padding-top: 20px;
}

.mobile-menu-inner {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgb(255 255 255 / 70%);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    box-shadow: inset -0.75px -0.5px rgba(255, 255, 255, 0.1), inset +0.75px +0.5px rgba(255, 255, 255, 0.025), 3px 2px 5px rgba(0, 0, 0, 0.05), inset 0px 0px 10px 5px rgba(255, 255, 255, 0.025), inset 0px 0px 40px 5px rgba(255, 255, 255, 0.025);
    border-radius: 32px;
    color: #1C1C1C;
    position: relative;
    z-index: 999;
}

.mobile-menu-inner .menu {
    display: flex;
    flex-direction: column;
    gap: 20px;

}
.mobile-menu-inner .menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-menu-inner .menu ul li {
    font-family: 'Unbounded';
    font-size: 16px;
    font-weight: 500;
}
.mobile-menu-inner .menu ul li .submenu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding-left: 10px;
    transition: all 0.5s;
}
.mobile-menu-inner .menu ul li:hover {
    color: #611eaf;
}

.mobile-menu-inner .menu ul li:hover .submenu {
    display: flex;
    padding-top: 10px;
    color: #1C1C1C;
}
.mobile-menu-inner .menu ul li .submenu li {
    font-size: 14px;
}
.foricon {
    background-color: #611eaf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    width: 30px;
    height: 30px;
    justify-content: center;
}
.foricon svg {
    fill: #FFF;
}
.after-h1 {
    color: #FFF;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.6;
}
.after-h1.pc {
    display: block;
}
.after-h1.mob {
    display: none;
    text-align: center;
    font-size: 14px;
}
.product-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    background-color: #FFF;
    border-radius: 24px;
    overflow: hidden;
}
.product-info div.box:first-child {
    padding: 0;
}
.product-info div.box:first-child span {
    font-family: Unbounded;
    font-size: 19px;
    font-weight: 700;
    z-index: 1;
}
.product-info div.box.pict {
    position: relative;

}
.product-info div.box.pict .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgb(15 4 76 / 68%), rgba(15, 4, 76, 0.5), rgb(15 4 76 / 68%));
    z-index: 0;
}
.product-info div.box.pict {
    color: #ffa901;
    line-height: 1.6;
}
.product-info div.box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    justify-content: center;
    padding: 20px;
}
.product-info div.box strong {
    font-family: Unbounded;
}
.product-tis {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    background-color: #FFF;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 30px;
}
.product-tis .left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding: 20px;
    width: 30%;
    height: 200px;
}
.product-tis .left strong {
    font-size: 16px;
    font-family: Unbounded;
    color: #1C1C1C;
}
.product-tis .left  {
    font-size: 14px;
    color: #1C1C1C;
}
.product-tis .right {
    width: 70%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
}
.product-tis .right .var {
    width: 150px;
    min-width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: all 0.5s;
}
.product-tis .right .var:hover {
    transform: scale(1.15);
}

.call-back {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow: hidden;
    border-radius: 24px;
    background-color: #FFF;
    transition: all 0.5s;
}
.call-back:hover {
    transform: scale(1.05);
}
.call-back .left {
    width: 30%;
    height: 350px;
    background: url('/img/call.webp') center center/cover no-repeat;
}
.call-back .right {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}
.call-back .right h2 {
    font-size: 26px;
    text-transform: uppercase;
}
.call-back .right .phonecall {
    font-size: 40px;
    font-family: Unbounded;
    color: #ffa901;
}
.call-back .right p {
    font-family: 'Unbounded';
    text-wrap: balance;
}
.adapt-table th,
.adapt-table td {
    padding: 8px;
}
.adapt-table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 30px;
    table-layout: fixed;
    width: 100%;
}
.adapt-table tr:nth-child(2n) {
    background: #f6f6f6;
}
.text-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: #FFF;
    border-radius: 24px;
}
.text-box ul{
    margin: 0;
    padding: 0 0 0 20px;
}

.text-box p {
    line-height: 1.4;
}
.text-box p strong {
    font-family: Unbounded;
}

.uCalc_351953 {
    position: relative;
    width: fit-content;
    border-radius: 24px;
    min-width: 500px;
    overflow: hidden;
    margin: auto;
    transition: all 0.5s;
}
.uCalc_351953:hover {
    transform: scale(1.05);
}

.block1 {
    width: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 24px;
    background-color: #FFF;
    align-items: center;
    justify-content: center;
}

.block1 a {
    font-size: 40px;
    font-family: Unbounded;
    color: #ffa901;
}
.block1 p {
    text-align: center;
}

.block1.info a {
    color: #ffa901;
    font-family: inherit;
    font-size: inherit;
}

#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #4f23838c;
    z-index: 99999999999999999999;
    height: 72px;
    color: white;
}
#cookie_notification button {
    height: 100%;
    width: 150px;
}
#cookie_notification p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    padding: 25px;
}
@media (min-width: 746px) {
    #cookie_notification.show {
        display: flex;
        align-items: center;
        backdrop-filter: blur(8px);
    }
}
@media (max-width: 746px) {
    #cookie_notification.show {
        display: flex;
        text-align: left;
        align-items: center;
        height: fit-content;
        flex-direction: column;
        backdrop-filter: blur(8px);
    }
    #cookie_notification button {
        min-height: 50px;
        width: 100%;
    }
    #cookie_notification p {
        padding: 15px;
    }
}


.checkbox-all {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    gap: 30px;
}
.checkbox-all .checkbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    border-radius: 24px;
    background-color: #FFF;
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}
.checkbox-all .checkbox:hover {
    transform: scale(1.05);
}
.checkbox-all .checkbox label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    border-radius: 24px;
    background-color: #FFF;
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.checkbox-all .checkbox label .gal {
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    background-color: #ffa901;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s;
}
.checkbox-all .checkbox label span {
    font-size: 14px;
    font-family: Unbounded;
    color: #FFF;
    font-weight: 700;
    z-index: 9;
    padding-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
}
.checkbox-all .checkbox div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}
.checkbox-all .checkbox div.bg {
    background-image: linear-gradient(rgb(98 77 200 / 0%), rgb(15 4 76 / 70%));
}
.checkbox-input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
input[type="checkbox"]:checked + label {
    border: 3px solid #ffa901;
}
input[type="checkbox"]:checked + label .gal {
    opacity: 1;
}

.last-btn {
    width: fit-content;
    padding: 12px 24px;
    background-color: #9c61d5;
    border-radius: 24px;
    font-size: 20px;
    color: #FFF;
    margin-top: 50px;
    transition: all 0.3s;
    cursor: pointer;
}
.last-btn:hover {
    transform: scale(1.05);
}

.raschet-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.all-points, .end-point {
    transition: opacity 0.5s ease;
    opacity: 1;
}

.all-points {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Изначально скрытый блок */
.end-point {
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.raschet-form .base-input {
    padding: 12px 24px;
    font-size: 16px;
    color: #1C1C1C;
    transition: all 0.2s;
    border-radius: 24px;
    border: 2px solid #CCC;
    width: 50%;
}
.raschet-form .base-input:focus {
    transform: scale(1.02);
    border: 2px solid #ffa901;
}

form .response {
    font-size: 20px;
    color: #30a60e;
    text-align: center;
}

.go-form {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow: hidden;
    border-radius: 24px;
    background-color: #FFF;
    transition: all 0.5s;
}
.go-form:hover {
    transform: scale(1.05);
}
.go-form .left {
    width: 30%;
    height: 350px;
    background: url('/img/k2.webp') center center/cover no-repeat;
}
.go-form .right {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}
.go-form .right h2 {
    font-size: 26px;
    text-transform: uppercase;
}
.go-form .right a {
    font-size: 40px;
    font-family: Unbounded;
    color: #fff;
    background-color: #ffa901;
    padding: 12px 24px;
    width: fit-content;
    border-radius: 24px;
}
.go-form .right p {
    font-family: 'Unbounded';
    text-wrap: balance;
}

.products-box {
    background-color: #FFF;
    border-radius: 24px;
    padding: 20px;
}

h2.light {
    font-size: 26px;
}

button.last-btn:disabled {
    background-color: #ccc;
    color: #777;
    cursor: not-allowed;
    opacity: 0.6;
    border: 1px solid #aaa;
}
