@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.otf");
}

@font-face {
    font-family: "InterLight";
    src: url("../fonts/Inter-Light.otf");
}

@font-face {
    font-family: "InterBold";
    src: url("../fonts/Inter-Bold.otf");
}

* {
    scrollbar-color: black white;
    scrollbar-width: thin;
    scroll-padding-top: 5px;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    box-sizing: border-box;
}

*::-webkit-scrollbar-button {
    background-repeat: no-repeat;
    width: 5px;
    height: 0px;
}

*::-webkit-scrollbar-track {
    background-color: white;
    margin: 1px 0px;
}

*::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: black;
    height: 30px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: black;
}


* {
    font-family: 'Inter';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

video::-webkit-media-controls-volume-slider {
    display: none;
}

video::-webkit-media-controls-mute-button {
    display: none;
}

html {
    width: 100%;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}


body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Inter';
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html.active {
    overflow-y: hidden;
}


a:visited {
    color: transparent;
}

a {
    text-decoration: none;
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
    border-style: none;
}



header {
    z-index: 200;
    position: relative;
    transition: 0.5s;
    background: white;
}

.m-auto {
    display: flex;
    padding: 30px 0px 25px;
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    height: 100vh;
    position: relative;
    min-height: 900px;
    overflow-x: hidden;
}

.logo img {
    width: 100px;
    margin-right: 15px;
}

.text-blue {
    color: #6775FE;
}

.text-orange {
    color: #ED7E00;
}

.logo {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    color: black;
    align-items: center;
    display: flex;
    position: absolute;
    left: 0;
    font-family: 'InterBold';

}

.header-list {
    display: flex;
    margin: 0 auto;
    align-items: center;
    padding: 0;
    position: relative;
    gap: 50px;
    -webkit-gap: 50px;
    -webkit-box-gap: 50px;
}

ul {
    list-style: none;
}


.header-list li a {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: black;
    transition: 0.5s;
}

.header-list li a:hover {
    transition: 0.5s;
    color: #6775FE;
}

.header-list.active li a {
    color: white;
}

.header-tel {
    color: white;
    font-size: 32px;
    font-weight: bold;
    padding: 5px 15px;
    color: #6775FE;
    box-sizing: border-box;
    border-radius: 5px;
    font-family: 'InterBold';

}

.container-banner {
    margin: 0 auto;
    border-radius: 60px;
    background: none;
    padding: 70px 0px 70px 0px;
    width: 1200px;
    position: relative;
    overflow: hidden;
    height: auto;
    box-sizing: border-box;
    min-height: auto;
}

.container-banner__img {
    width: 76%;
    display: block;
    z-index: 0;
    position: absolute;
    height: 100%;
    right: 0;
    bottom: 0px;
    object-fit: cover;
    bottom: -130px;
}

.container-banner__title {
    font-size: 64px;
    font-weight: 600;
    line-height: 115%;
    margin-bottom: 20px;
    color: white;
    font-family: 'InterBold';
}

.container-banner__title span {
    font-family: 'InterBold';
}

.container-banner__form-text {
    font-size: 16px;
    font-weight: 500;
}

.container-banner__form-input {
    width: auto;
    padding: 19px 15px;
    color: black;
    border-radius: 10px;
    border: 1px solid #2B2B2B;
    outline: none;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    height: 50px;
}

.container-banne__form-input::placeholder {
    color: #BDBDBD;
    opacity: 1;
    font-size: 16px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.container-banner__subtitle {
    font-size: 38px;
    font-weight: bold;
    line-height: 110%;
}

.container-banner__box {
    margin-bottom: 40px;
    height: 42px;
    color: white;
}

.container-banner__form-btn {
    border: 1px solid #6775FE;
    border-radius: 5px;
    width: auto;
    display: table;
    height: 50px;
    background: #6775FE;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: white;
    border-radius: 10px;
    padding: 0;
    outline: none;
    text-transform: uppercase;
}

.header-tel {
    position: relative;
    overflow-x: hidden;
}


.header-tel .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    animation: flareAnimation;
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}


.typed-cursor {
    opacity: 1;
    font-weight: 200;
    animation: blink 0.7s infinite;
    font-size: 34px;
    position: relative;
    top: 5px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.container-banner__box {
    display: flex;
}

.btn-burger {
    display: none;
}


.container-company,
.container-gallery,
.container-call,
.container-step,
.container-usluga {
    display: flex;
    width: 1200px;
    margin: 100px auto;
    box-sizing: border-box;
    flex-direction: column;
}

.section-form,
.container-map {
    display: flex;
    width: 100%;
    margin: 100px auto;
    box-sizing: border-box;
    flex-direction: column;
}



.section-form,
.container-company,
.container-map,
.container-gallery {
    margin-bottom: 0 !important;
}

.container-gallery,
.container-call {
    margin-top: 0;
}

.container-usluga__title {
    font-size: 64px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 60px;
    font-family: 'InterBold';
}

.container-usluga__card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 20px;
}

.container-usluga__card-item-content {
    background: white;
    border-radius: 50px;
    position: relative;
    border: none;
    border: 1px solid #dde1e4;
    transition: 0.2s;
    box-shadow: 0px 5px 30px -10px rgba(34, 36, 38, .15);
    height: 100%;
}

.container-usluga__card-item-content:hover {
    box-shadow: 0px 5px 20px 0px rgba(34, 36, 38, .30);
    transition: 0.2s;
}

.card-item-content__text {
    font-size: 18px;
    padding: 20px 20px 30px 20px;
    text-align: left;
    text-transform: inherit;
    gap: 5px;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    border: none;
    border-top: none;
    border-radius: 0px 0px 30px 30px;
    background: white;
    color: black;
    line-height: 130%;
    height: 100%;
    justify-content: center;
    border: 1px solid rgba(192, 192, 192, 0.8);
    justify-content: start;
}



.card-item-content__text .text {
    margin-bottom: 10px;
    line-height: 150%;
    font-size: 22px;
}

.card-item-content__text div {
    font-weight: 400;
    text-transform: initial;
}

.container-usluga__card-item-btn {
    margin-top: 30px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
}

.card-item-btn__zakaz {
    border-radius: 30px;
    border: 1px solid #2B2B2B;
    width: max-content;
    padding: 13px 20px 13px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    cursor: pointer;
    box-sizing: border-box;
    height: 50px;
    width: 100%;
    transition: 0.3s;
    box-shadow: 0px 3px 3px 1px rgba(0, 0, 0, 0.5);
}

.card-item-btn__zakaz:hover {
    border: 1px solid #ED7E00;
    color: #ED7E00;
    transition: 0.3s;
    box-shadow: none;
}

.card-item-btn__zakaz span {

    align-items: center;
    display: flex;
    flex-grow: 1;
}

.card-item-btn__zakaz img {
    width: 25px;
    height: 25px;
    transition: 0.3s;
    position: relative;
    right: 0;
}

.card-item-btn__zakaz:hover img {
    right: 5px;
    transition: 0.3s;
}

.card-item-btn__tel {
    border: 1px solid #6775FE;
    border-radius: 5px;
    display: table;
    height: 50px;
    background: #6775FE;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: white;
    border-radius: 10px;
    padding: 0;
    outline: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-sizing: border-box;
    width: 150px;
    text-transform: uppercase;
    font-weight: bold;
}

.card-item-btn__tel:hover {
    background: none;
    color: black;
    border: 1px solid black;
    transition: 0.3s;
    box-shadow: none;
}

.card-item-content__top {
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-item-content__price {
    position: absolute;
    bottom: 0;
    background: rgba(237, 126, 0, 0.8);
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    display: none;
}

.card-item-content__price span {
    font-size: 24px;
}

.card-item-content__top img {
    height: 220px;
    object-fit: cover;
    border: none;
    border-radius: 20px 20px 0px 0px;
}

.fixed-btn {
    position: fixed;
    background: #ED7E00;
    color: white;
    width: 50px;
    height: 50px;
    right: 70px;
    bottom: 40px;
    border-radius: 50px;
    padding: 10px;
    z-index: 200;
}

.banner__btn {
    margin-top: 30px;
}

.banner__btn a {
    color: #ED7E00;
    font-size: 30px;

}

/* .container-usluga h2 {
    font-size: 30px;
    margin-top: 30px;
} */

.screen-reader-response p {
    color: #ED7E00;
}

.wpcf7-response-output {
    display: none;
}

.screen-reader-response {
    display: none;
}

.popup-succesful {
    padding: 70px 50px 80px;
    box-sizing: border-box;
    background-color: white;
    color: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    transform: 0;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.popup-succesful p{
    font-size: 22px;
        color: black;
        text-align: center;
        margin-bottom: 0;
}

.popup-zakaz {
    padding: 50px 50px 70px;
    box-sizing: border-box;
    background-color: white;
    color: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 550px;
    position: absolute;
    top: 50%;
    transform: 0;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.popup-zakaz .container-banner__form-input,
.popup-zakaz .container-banner__form-btn {
    width: 100%;
}

.modal-open {
    overflow: hidden;
}


.overlay {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    position: fixed;
    overflow-y: auto;
    scrollbar-width: none;
}

.message-form {
    color: black;
    font-size: 36px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

.modal-open {
    overflow: hidden;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: -80px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: none;
    padding: 9px;
    border-radius: 50%;
}

.close-popup:before {
    content: '';
    background-color: white;
    position: absolute;
    height: 2px;
    width: 35px;
    top: 21px;
    left: 3px;
    transform: rotate(-45deg);
}

.close-popup:after {
    content: '';
    background-color: white;
    position: absolute;
    height: 2px;
    width: 35px;
    top: 21px;
    transform: rotate(45deg);
    left: 4px;
}

.popup-title {
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    /* identical to box height, or 36px */

    text-align: center;

    /* Черный текст */

    color: #3aaa1f;
    white-space: nowrap;
    margin-bottom: 30px;
    padding: 0 50px;
}

.close-popup--two {
    top: 15px;
    right: 15px;
}


.close-popup--two:before {
    content: '';
    background-color: black;
}

.close-popup--two:after {
    content: '';
    background-color: black;
}

.wpcf7-form-control-wrap {
    display: flex;
    gap: 5px;
    flex-direction: column-reverse;
    font-size: 12px;
    color: red;
}

.form {
    position: relative;
}

.wpcf7-form .wpcf7-spinner {
    display: none;
}

.cookies__container {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(7.5px);
    height: auto;
    width: 100%;
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 99999999999999999999999;
    align-items: center;
    display: flex;
    display: none;
}

.lwpcngNotice-dark {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(7.5px) !important;
    padding: 26px 100px 16px;
}

.lwpcngNotice_message {
    display: inline;
    margin-right: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
    width: 564px;
    margin-right: 25px;
    display: inline-block;
    text-align: left;
}

.lwpcngNotice_accept,
.lwpcngNotice_reject {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    padding: 14px 0px;
    border: 1px solid white;
    white-space: nowrap;
    cursor: pointer;
    width: 250px;
    box-sizing: border-box;
    height: 50px;
    position: relative;
    bottom: 12px;
    transition: 0.5s;
    border-radius: 5px;
}

.lwpcngNotice-dark .lwpcngNotice_accept:hover {
    background: white;
    color: black;
    transition: 0.5s;
}

.lwpcngNotice_accept {
    font-weight: 400;
    font-size: 18px;
}

.lwpcngNotice-dark .lwpcngNotice_accept {
    border-color: white;
    color: white;
}

.cookies-block {
    width: 1039px;
    height: auto;
    display: flex;
    padding: 26px 100px 28px;
    box-sizing: border-box;
    align-items: center;
    margin: 0 auto;
}

.cookies-block .cookies__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    /* or 23px */


    /* White */

    color: #FFFFFF;
    width: 564px;
    margin-right: 25px;

}

.cookies-block .cookies__btn {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    height: 50px;
    position: relative;
    top: 0px;
    cursor: pointer;
    background: none;
    width: 250px;
    display: table;
    margin: 0 auto;
    transition: 0.5s;
    box-sizing: border-box;

}

.cookies-block .cookies__btn:hover {
    background: white;
    color: black;
    transition: 0.5s;
}

.cookies-block .cookies__btn a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
}


footer {
    padding-top: 30px;
    padding-bottom: 30px;

}

.policy-footer::before {
    content: '©';
    position: relative;
    bottom: 0px;
}

.policy-footer {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #909090;
}

.flex-grow {
    flex-grow: 1;
}

.text-footer {
    padding: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    width: 500px;
    margin-top: 11px;
    color: #909090;
}

.block__footer {
    display: flex;
}

.flex-end .policy-footer a {
    color: #909090;
    align-items: end;
    transition: 0.3s all;
}

.flex-end .policy-footer a:hover{
    color: #6775FE;
}
.flex-end .policy-footer::before {
    display: none;
}

.policy-footer {
    margin-top: 10px;
    color: #909090;
}

.flex-end .policy-footer {
    margin-top: 0;
}

.flex-end {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: end;
}

.container-usluga--footer {
    margin-top: auto !important;
    margin-bottom: 0 !important;
}

.footer-menu {
    display: flex;

    gap: 20px;
    margin-left: auto;
}

.footer-menu a {
    color: #6775FE;
    font-size: 28px;
    font-family: "InterBold";
    transition: 0.3s all;
    margin-top: 10px;
}

.policy-footer a,
.footer-menu a:hover {
    color: black;
}



.container-policy .title-policy {
    max-width: 100%;
}

.container-policy .strong {
    font-weight: bold !important;
}

.container-policy .text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #282828;
}

.container-policy .text {
    margin: 15px 0;
}

.container-bg {
    padding: 50px 0 100px;
    background: #f8f8f8;
    box-sizing: border-box;
    margin: 50px auto 0;
    width: 100%;
    background-image: url('../img/main-gaid.jpg');

    /* Set a specific height */
    min-height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
}

.container-bg::after {
    content: '';
    z-index: 1;
    background: rgba(0, 0, 0, 0.65);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    display: block;
    top: 0;
}

.container-order {
    width: 1200px;
    display: flex;
    box-sizing: border-box;
    margin: 0 auto;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.container-order--top {
    display: flex;
    align-items: start;
    gap: 50px;
    justify-content: start;

}

.container-order__title {
    color: white;
    font-size: 64px;
    font-weight: 600;
    line-height: 115%;
    margin-bottom: 0px;
    text-align: left;
    width: 100%;
}

.container-order__title p{
    margin: 0 ;
}

.container-order__pricce {
    background: #ED7E00;
    border-radius: 15px;
    padding: 10px;
    color: white;
    font-size: 34px;
    font-weight: bold;
}

.container-order__box {
    display: flex;
    align-items: start;
    margin-top: 0px;
    justify-content: start;
    flex-direction: column;
}

.container-order__box-text {
    color: white;
    font-size: 34px;
    width: 700px;
}



.container-order__box-text a {
    color: white;
    font-weight: bold;

}

#clockdiv {
    font-family: sans-serif;
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 32px;
}

#clockdiv>div {
    padding: 10px;
    border-radius: 3px;
    background: none;
    display: inline-block;
}

#clockdiv div>span {
    padding: 15px;
    border-radius: 3px;
    background: #6775FE;
    display: inline-block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
    display: flex;
    align-items: center;
    color: white;
}

.smalltext {
    padding-top: 10px;
    font-size: 18px;
}

.clockdiv {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clockdiv .text {
    font-size: 18px;
    color: black;
    font-weight: bold;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;

}

.container-list {
    display: flex;
    width: 1200px;
    margin: 0 auto 155px;
    box-sizing: border-box;
    flex-direction: column;
}

.container-list h3 {
    font-size: 58px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 20px;
    color: black;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: max-content;
}

.container-list h3::after {
    content: '';
    display: block;
    height: 6px;
    margin-top: -0px;
    background-image: linear-gradient(to right, rgb(237, 126, 0, 1), rgb(0, 0, 0));
}

.container-list h4 {
    font-size: 28px;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 0px;
    color: #ED7E00;
    font-weight: bold;
}

.container-list ul {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-left: 0;
    margin-bottom: 0;
}

.container-list ul li a {
    font-size: 22px;
    color: black;
    transition: 0.2s;
}

.container-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.container-list ul li::before {
    content: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3c!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3e%3csvg width='25px' height='25px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 21C15.5 17.4 19 14.1764 19 10.2C19 6.22355 15.866 3 12 3C8.13401 3 5 6.22355 5 10.2C5 14.1764 8.5 17.4 12 21Z' stroke='%23ED7E00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13Z' stroke='%23ED7E00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    display: flex;
    width: 20px;
}

.container-list ul li a:hover {
    color: #ED7E00;
    transition: 0.2s;
}

.show-more {
    border: 1px solid #ED7E00;
    border-radius: 5px;
    display: table;
    height: 50px;
    background: #ED7E00;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: white;
    border-radius: 10px;
    padding: 0;
    outline: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0px 3px 3px 1px rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    margin: 40px auto 0;
    width: 200px;
}

.show-more:hover {
    background: none;
    color: black;
    border: 1px solid black;
    transition: 0.3s;
    box-shadow: none;
}

.container-list .block-list-container {
    display: none;
    /* по умолчанию прячем все блоки */
}

.container-list .block-list-container.active {
    display: grid;
    /* по умолчанию показываем нужный блок */
}

.tabs-list {
    display: flex;
    gap: 30px;
}

.tabs-list_item {
    border: 1px solid black;
    border-radius: 5px;
    display: table;
    height: 50px;
    background: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: black;
    border-radius: 10px;
    padding: 0;
    outline: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: none;
    box-sizing: border-box;
    margin: 50px 0 0;
    width: 150px;
}

.tabs-list_item.active {
    background: #ED7E00;
    border: 1px solid #ED7E00;
    color: white;
    box-shadow: 0px 3px 3px 1px rgba(0, 0, 0, 0.7);
}

.tabs-list_item:hover {
    background: #ED7E00;
    color: white;
    border: 1px solid #ED7E00;
    transition: 0.3s;
    box-shadow: none;
    box-shadow: 0px 3px 3px 1px rgba(0, 0, 0, 0.7);
}

.container-list .children {
    display: none;
}

.grecaptcha-badge {
    display: none;
}

.call-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    right: 0;
    justify-content: center;
    align-items: center;
}

.call-block .text {
    color: black;
    font-weight: bold;
    font-size: 18px;
}

.call-block .open-zakaz {
    background: #6775FE;
    color: white;
    border-radius: 30px;
    font-size: 22px;
    padding: 10px 25px;
    cursor: pointer;
    font-family: 'InterBold';
}

.call-block .open-zakaz:hover {
    background: #404fdb;
}

.banner-main {
    position: relative;
    height: 700px;

}

.banner-main>img {
    position: absolute;
    width: 100%;
    height: 700px;
    z-index: 1;
    object-fit: cover;
}

.container-banner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.banner-main::after {
    content: '';
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 700px;
    left: 0;
    display: block;
    top: 0;
}

.container-banner__form {
    margin-left: auto;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    width: 400px;
}

.container-banner__form-text {
    font-size: 18px;
}

.container-banner__form-text .text-blue {

    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'InterBold';
}

.container-usluga__card-item {
    display: flex;
    flex-direction: column;
    height: auto;
}

.card-item-content__text .smile-text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.card-item-content__text .price {
    font-weight: bold;
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-family: 'InterBold';

}

.card-item-content__text .bottom {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.container-order__box .form {
    margin-top: 0;
    justify-content: start;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.clockdiv .open-zakaz {
    width: 100%;
    background: black;
    color: white;
    border-radius: 10px;
    padding: 15px 20px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
}

.container-bg .container-banner__form-btn {
    width: 300px;
    height: 60px;
    font-size: 18px;
}

.container-bg .wpcf7-form-control-wrap {
    width: 100%;
}

.container-order__box .form {
    width: 100%;
}

.container-bg .container-banner__form-input {
    width: 100%;
    height: 60px;
    margin: 0;
}

.container-order__box .form .wpcf7 {
    width: 100%;
}

.container-order__box .form p {
    color: white;
    width: 800px;
    font-size: 26px;
    text-align: left;
    margin-bottom: 0;
}

.logo span {
    margin-right: 10px;
    font-family: 'InterBold';
}

.container-step .card-item-content__top img {
    height: 170px !important;
}


.container-step .container-usluga__card-item .card-item-content__top img {
    border: 1px solid rgba(192, 192, 192, 0.8);
    box-sizing: border-box;
    border-bottom: none;
}


.container-step .card-item-content__text .text {
    font-family: 'InterBold';
    font-size: 24px;
    color: #6775FE;
}


.container-order__box form {
    display: grid;
    flex-direction: row;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
}

.container-call .container-usluga__title {
    font-family: 'Inter';
    text-align: center;
    line-height: 130%;
    font-size: 54px;

}

.container-call .container-usluga__title a {
    color: #6775FE;
    font-family: "InterBold";
}

.grid-special {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.grid-special__list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.grid-special__list .item {
    display: flex;
    gap: 20px;
}



.grid-special__list .item img {
    width: 60px;
    height: 60px;
}

.grid-special__list .item .title {
    font-family: 'InterBold';
    font-size: 24px;
    color: black;
    margin-bottom: 15px;
}

.grid-special__list .item .text {
    line-height: 150%;
    font-family: "InterLight";
}

.grid-special>img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.section-gallery {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
}

.section-gallery>.section-gallery__item:nth-child(-n+5) {
    display: block;
}

.section-gallery a {
    border-radius: 10px;
    height: 200px;
}

.section-gallery__item {
    position: relative;
}

.section-gallery a img {
    object-fit: cover;
    border-radius: 10px;
    height: 100%;
}

.section-gallery .section-gallery__item:last-child {
    display: block;
}

.section-gallery .section-gallery__item:last-child {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 4;
    height: 420px;
}

.section-gallery .section-gallery__item {
    display: none;
}

.bg-silver {
    background: #f8f8f8;
    padding: 80px 0;
}
#yamap0,
#map {
    width: 100%;
    height: 600px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.40);


    overflow: hidden;

    .ymaps-2-1-79-map ymaps,
    .ymaps-2-1-79-map ymaps::after,
    .ymaps-2-1-79-map ymaps::before {
        border-radius: 25px;
    }
}

.ymaps-2-1-79-ground-pane {

    filter: grayscale(1);

    -ms-filter: grayscale(1);

    -webkit-filter: grayscale(1);

    -moz-filter: grayscale(1);

    -o-filter: grayscale(1);

}

.container-company .text {
    font-size: 18px;
    margin: 0 auto;
    color: #a5a5a5;
}

.container-map {
    position: relative;
}

.section-form .form {
    width: 800px;
    margin: 0 auto;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid #6775FE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 80px 100px;
    box-sizing: border-box;
}

.section-form .form .title {
    font-family: 'InterBold';
    margin-bottom: 15px;
    text-align: center;
    font-size: 38px;
}

.section-form .form .text {
    margin: 0;
    font-size: 22px;
    color: black;
    margin-bottom: 20px;
    text-align: center;
    font-family: "InterLight";
    line-height: 150%;
}

.section-form .form .container-banner__form-input {
    font-size: 18px;
    height: 60px;
    border: 1px solid silver;

}

.section-form .form form {
    width: 550px;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.section-form .container-banner__form-btn {
    height: 60px;
    font-size: 16px;
    width: 250px;
}

.container-map__contact {
    width: 1200px;
    margin: 0 auto;
    height: 600px;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    z-index: 1;


}

.container-map__contact-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 500px;
    padding: 50px;
    box-sizing: border-box;
    background: white;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.3);
}

.container-map__contact-block .title p {
    font-size: 32px;
    font-family: 'InterBold';
    line-height: 130%;
    margin: 0;

}

.container-map__contact-block .text {
    font-size: 18px;
    line-height: 130%;
    color: black;
    font-family: 'InterLight';
    margin: 0;

}

.container-map__contact-block .text a {
    font-size: 20px;
    font-family: 'InterBold';
    color: black;


}

footer .logo{
    position: relative;
}

@media(max-width:1600px) {
    .m-auto {
        width: 100%;
        padding: 35px 50px 35px;
    }

    .container-banner {
        width: auto;
        padding: 50px 50px 50px 45px;
    }

    .container-banner__img {
        width: 76%;
        bottom: -120px;
        z-index: 0;
    }


    .section-form,
    .container-company,
    .container-gallery,
    .container-list,
    .container-order,
    .container-usluga,
    .container,
    .container-step,
    .container-call {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
        box-sizing: border-box;
        display: block;
    }


    .container-banner__title {
        font-size: 64px;
    }

    form {
        z-index: 1;
        position: relative;
    }



}

@media(max-width:1450px) {
    .container-banner {
        min-height: auto;
    }

    .container-header {
        padding: 0 20px;
    }

    .container-order__box-text {
        width: 600px;
    }

    .container-usluga__card {
        gap: 60px 30px;
    }

    .header-list {
        gap: 40px;
        -webkit-gap: 40px;
        -webkit-box-gap: 40px;
    }

    .logo {
        font-size: 20px;
    }

    .header-list li {
        font-size: 16px;
    }

    .header-tel {
        font-size: 22px;
    }

    .container-banner__title {
        font-size: 76px;
    }

    .container-banner__subtitle {
        font-size: 34px;
    }

    form {
        gap: 20px;
        margin-top: 20px;
    }

    .typed-cursor {
        font-size: 28px;
    }

    .container-usluga__card-item-btn {
        gap: 20px;

    }

    .card-item-content__text {
        padding: 20px 30px 30px 30px;
    }
}

@media(max-width:1200px) {
    .card-item-content__top img {
        border-radius: 30px 30px 0px 0px;
        padding: 0px;
        box-sizing: border-box;
    }

    .lwpcngNotice_message {
        font-size: 16px;
        width: 501px;
        margin-right: 25px;
    }

    .container-order__title {
        font-size: 54px;
    }

    .lwpcngNotice-dark {
        padding: 25px 10px 15px;
    }

    .lwpcngNotice_accept {
        font-size: 16px;
    }



    .container-bg {
        padding: 50px 0;

        margin-top: 100px;
    }

    .container-usluga,
    .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .section-form,
    .container-company,
    .container-map,
    .container-gallery,
    .container-call,
    .container-step,
    .container-usluga {
        margin: 80px auto 0;
    }

    .container-banner__box {
        margin-bottom: 0;
    }

    .container-banner {
        padding-left: 0;
        min-height: auto;
        max-height: 1570px;
        height: auto;


    }

    .container-banner__img {
        width: 100%;
        bottom: 0;
        z-index: 0;
        position: relative;
        height: auto;
    }

    .container-banner__title,
    .container-banner__box {
        padding-left: 55px;
    }

    form {
        gap: 20px;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
    }

    .container-banner__form-text {
        font-size: 16px;
        padding-left: 0;
    }

    .container-banner__form {
        width: 370ppx;
    }

    .container-banner__form-btn {
        padding: 0 20px;
    }

    .container-banner__form-input {
        width: 100%;
        margin: 0 auto;
    }

    .wpcf7-form-control-wrap {
        width: 100%;
    }

    .container-banner__title {
        font-size: 66px;
    }

    .container-banner__subtitle {
        font-size: 28px;
    }

    .typed-cursor {
        font-size: 22px;
    }

    .card-item-content__top img {
        border-radius: 20px 20px 0 0;
        height: 220px;
    }

    .container-usluga__card-item-content {
        border-radius: 20px;
    }

    .card-item-content__price {
        font-size: 16px;
    }

    .container-usluga__title {
        font-size: 54px;
    }

    .card-item-content__price span {
        font-size: 22px;
    }

    .card-item-content__text {
        font-size: 16px;
        border-radius: 0px 0px 20px 20px;
    }

    .container-usluga__card-item-btn {
        grid-template-columns: 1fr;
    }

    .fixed-btn {
        width: 40px;
        height: 40px;
        right: 50px;
        bottom: 30px;
    }

    .container-order__box-text {
        width: 440px;
        font-size: 24px;
    }

    #clockdiv div>span {
        padding: 10px;
        width: 35px;
        height: 35px;
    }

    #clockdiv {
        font-size: 24px;
    }

    .smalltext {
        font-size: 16px;
    }

    .clockdiv {
        gap: 5px;
    }

    .clockdiv .text {
        font-size: 16px;
        font-weight: 500;
    }

    .container-order__box {
        gap: 40px;
        margin-top: 0px;
    }

    #clockdiv>div {
        padding: 7px;
    }

    .container-list {
        margin-bottom: 100px;
    }

    .container-list h3 {
        font-size: 48px;
    }

    .container-list h4 {
        font-size: 24px;
    }

    .container-list ul {
        margin-top: 60px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .container-list ul li a {
        font-size: 20px;
    }

    .container-list ul li::before {
        content: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3c!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3e%3csvg width='20px' height='20px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 21C15.5 17.4 19 14.1764 19 10.2C19 6.22355 15.866 3 12 3C8.13401 3 5 6.22355 5 10.2C5 14.1764 8.5 17.4 12 21Z' stroke='%23ED7E00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13Z' stroke='%23ED7E00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
        display: flex;
        width: auto;
    }

    .container-banner {
        padding-right: 20px;
    }

    .container-step .container-usluga__card {
        grid-template-columns: 1fr 1fr;
    }

    .container-order__box .wpcf7-form-control-wrap {
        align-items: center;
    }

    .container-order__box form {
        justify-content: center;
    }

    .section-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-gallery a {
        border-radius: 20px;
        height: auto;
        min-height: 110px;
    }

    .section-gallery .section-gallery__item:last-child {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 4;
        height: auto;
        order: 1;
        min-height: 210px;
    }

    .section-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .section-gallery>.section-gallery__item:nth-child(-n+4) {
        display: block;
    }

    .section-gallery>.section-gallery__item:nth-child(5) {
        display: none;
    }

    .section-gallery a img {
        min-height: 210px;
        max-height: 300px;
    }

    .section-gallery>.section-gallery__item:nth-child(-n+4) img {
        max-height: 200px;
    }

    .container-gallery {
        margin: 0 auto;
    }

    .bg-silver {
        padding: 50px 0;
        margin: 80px 0;
    }

    .container-map__contact {
        width: 100%;
    }

    .container-map__contact-block {
        gap: 20px;
        width: 400px;
        padding: 30px;
        box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
        position: relative;
        left: 50px;
    }

    .container-map__contact-block .title p {
        font-size: 28px;
    }

    .container-map__contact-block .text a {
        display: block;
    }

    .container-map__contact-block .text br {
        display: none;
    }

}

@media(max-width:1024px) {
    .lwpcngNotice_message {
        width: 353px;
    }

    .container-banner {
        padding-right: 0;
    }

    .lwpcngNotice_accept,
    .lwpcngNotice_reject {
        bottom: 20px;
    }

    .header-list {
        right: -100%;
        position: absolute;
        opacity: 0;
        transition: 0.5s;
        height: 100vh;
        padding: 70px 0px 70px 0px;
        width: 300px;
        display: flex;
        flex-direction: column;
        top: 0px;
        align-items: flex-start;
        overflow: hidden;
        z-index: 0;
    }

    .header-list li {
        color: white;
    }

    .header-list.active {
        position: absolute;
        opacity: 1;
        transition: 0.5s;
        height: 100vh;
        top: 0px;
        right: 0;
        background: rgba(237, 126, 0, 0.8);
        backdrop-filter: blur(7.5px);
        box-sizing: border-box;
        padding: 70px 24px 70px 50px;
        z-index: 0;
        flex-direction: column;
        z-index: 9;
    }

    .header-list {
        gap: 30px;
    }

    .btn-burger::after {
        height: 2px;
        width: 100%;
        position: absolute;
        background: black;
        margin: 0 auto;
        text-align: center;
        content: "";
        bottom: 0px;
        transition: .4s;
    }

    .btn-burger::before {
        height: 2px;
        width: 100%;
        position: absolute;
        background: black;
        margin: 0 auto;
        text-align: center;
        content: "";
        top: 14px;
        transition: .4s;
    }

    .btn-burger {

        width: 40px;
        height: 30px;
        display: block;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 23px;
        z-index: 10;
    }

    .btn-burger span {
        height: 2px;
        width: 100%;
        position: absolute;
        background: black;
        margin: 0 auto;
        text-align: center;
        top: 21px;
        display: flex;
    }

    .close-burger::after {
        transform: translateY(-8px) rotate(-135deg);
        background: white;
    }

    .close-burger::before {
        transform: translateY(6px) rotate(135deg);
        background: white;
    }

    .close-burger span {
        transform: scale(0);
    }

    .logo {
        flex-grow: 1;
    }

    .section-form,
    .container-company,
    .container-gallery,
    .container-list,
    .container-order,
    .container-usluga,
    .container,
    .container-step,
    .container-call {
        padding-left: 25px;
        padding-right: 25px;
    }

    .container-header {
        padding: 0 0px;
    }

    .container-header .m-auto {
        padding: 35px 20px 35px;
        flex-direction: column;
        gap: 20px;
    }

    .header-tel {
        font-size: 38px;
    }

    .header-tel {
        margin-right: 0px;
    }

    .container-banner {
        height: 700px;
        border-radius: 50px;
        flex-direction: column;
        align-items: start;
    }

    .container-banner__title {
        padding-left: 20px;
    }

    .container-usluga__card {
        grid-template-columns: 1fr 1fr;
    }

    .container-usluga__card-item-btn {
        grid-template-columns: 1fr 1fr;
    }

    .container-usluga__title {
        font-size: 48px;
        margin-bottom: 40px;
    }

    .block__footer {
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        display: flex;
        gap: 20px;
        margin-left: 0;
        margin-top: 20px;
    }

    .container-order__title {
        font-size: 44px;
    }

    .container-order__box .form p {
        font-size: 24px;
    }

    .container-order--top {
        gap: 30px;
    }

    .container-order__pricce {
        font-size: 24px;
    }

    .container-order__box-text {
        width: 100%;
        font-size: 24px;
    }

    .container-order__box {
        gap: 30px;
        margin-top: 0px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    #clockdiv div>span {
        padding: 10px;
        width: 45px;
        height: 45px;
    }

    .clockdiv .text {
        text-align: left;
    }

    #clockdiv>div:nth-child(1) {
        padding-left: 0;
    }

    .container-list h3 {
        font-size: 38px;
    }

    .container-list h3::after {
        content: '';
        display: block;
        height: 4px;
    }

    .container-list h4 {
        font-size: 22px;
    }

    .container-banner__form {
        background: white;
        border-radius: 20px;
        width: 400px;
        width: calc(100% - 80px);
        padding: 20px;
        margin-top: 50px;
        margin-left: 20px;
    }

    form {
        padding: 0;
    }

    .container-banner__form-text {
        padding: 0;
    }

    .container-banner__form-btn {
        padding: 0 20px;
    }

    .container-banner__box {
        padding-left: 20px;
    }

    .m-auto {
        padding: 35px 50px 35px;
    }

    .banner-main>img {
        height: 800px;
    }

    .banner-main,
    .banner-main::after {
        height: 800px;
    }

    .container-banner {
        height: 800px;
    }

    .call-block,
    .logo {
        position: relative;
    }

    .container-bg .container-banner__form-btn {
        font-size: 16px;
        width: 100%;
    }

    .container-step .container-usluga__card-item:nth-child(2) .card-item-content__top img,
    .container-step .container-usluga__card-item:nth-child(5) .card-item-content__top img {
        height: 200px !important;
    }

    .container-step .container-usluga__card {
        gap: 30px;
    }

    .container-step .card-item-content__top img {
        height: 200px !important;
    }

    .container-step .card-item-content__text .smile-text {
        font-size: 16px;
    }

    .container-step .card-item-content__text {
        height: 100% !important;
    }

    .container-step .container-usluga__card-item:nth-child(4),
    .container-step .container-usluga__card-item:nth-child(6) {
        margin-bottom: 0;
        height: 100%;
    }

    .container-order__box .form p {
        width: 100%;
    }

    .container-step .container-usluga__card-item:nth-child(1),
    .container-step .container-usluga__card-item:nth-child(3) {
        margin-top: 0;
    }

    .grid-special {
        grid-template-columns: repeat(1, 1fr);
    }

    .container-call .container-usluga__title {
        font-size: 48px;
    }

    .grid-special__list {
        gap: 30px;
    }

    .grid-special>img {
        height: auto;
    }

    .section-form,
    .container-company {
        margin-top: 0;
    }

    .section-form .form {
        width: 100%;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        padding: 50px 50px 70px;
    }
        .flex-end{
            justify-content: start;
            align-items: start;
        }
                .footer-menu a{
                    padding: 0;
                    margin: 0;
                }

}

@media(max-height: 800px) {

    .popup-succesful {
        position: relative;
        top: 25%;
        transform: 0;
        left: 0;
        margin: 20px auto;
        transform: translate(0%, 0%);
    }

    .popup-zakaz {
        position: relative;
        top: 10%;
        transform: 0;
        left: 0;
        margin: 20px auto;
        transform: translate(0%, 0%);
    }
}

@media(max-width:768px) {
    .wpcf7-form-control-wrap {
        width: 100%;
    }

    .lwpcngNotice-dark {
        padding: 15px 10px 15px;
    }

    .lwpcngNotice_accept,
    .lwpcngNotice_reject {
        width: 100%;
        bottom: 0;
    }

    .lwpcngNotice_message {


        font-size: 12px;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .container-banner__title {
        font-size: 53px;
    }

    .popup-zakaz {
        padding: 70px 30px 70px;
        max-width: 566px;
    }

    .popup-succesful {
        padding: 70px 30px 70px;
        max-width: 566px;
    }

    .container-banner__title,
    .container-banner__box {
        padding-left: 15px;
        padding-right: 10px;
    }

    .container-banner__subtitle {
        font-size: 24px;
    }

    .container-banner__box {
        margin-bottom: 0px;
        height: 28px;
    }

    .typed-cursor {
        font-size: 18px;
    }

    .card-item-btn__tel,
    .card-item-btn__zakaz {
        font-size: 16px;
    }

    .container-usluga__card {
        grid-template-columns: 1fr;
    }

    .card-item-content__top img {
        height: 300px;
        object-fit: cover;
        padding: 0;
    }

    .section-form,
    .container-company,
    .container-gallery,
    .container-list,
    .container-order,
    .container-usluga,
    .container,
    .container-step,
    .container-call {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container-header .m-auto {
        padding: 25px 15px 25px;
    }

    .container-banner {
        padding: 30px 0px 30px 0px;
    }

    .header-tel {
        font-size: 38px;
    }

    .btn-burger {
        top: 20px;
    }

    .container-banner__form-input {
        width: 100%;
    }

    form {
        flex-direction: column;
        padding: 0 15px;
    }

    .container-banner__form-text {
        padding-left: 15px;
    }

    .container-banner {
        border-radius: 30px;
        min-height: auto;
        max-height: 1000px;
        height: auto;
        width: 100%;
    }

    .container-step .card-item-content__top img {
        height: 250px !important;
    }

    .logo {
        position: relative;
        top: 5px;
    }

    .container-banner__form-btn {
        width: 100%;
    }

    .container-banner__img {
        width: 100%;
        position: relative;
    }

    .container-banner__img {
        margin-bottom: 20px;
    }

    .btn-burger {
        width: 25px;
    }

    .container-order__title {
        font-size: 44px;
    }

    .container-order__box-text {
        font-size: 22px;
    }

    .container-order--top {
        align-items: start;
        gap: 30px;
        flex-direction: column;
    }

    .container-bg {
        padding: 50px 0;

    }

    .banner-main {
        align-items: center;
        display: flex;
    }

    .container-header .m-auto {
        gap: 10px;
    }

    .container-order__box form {
        padding: 0;
        width: 100%;
    }

    .container-bg .container-banner__form-input {
        width: 100%;
    }

    .container-order__box .form {
        margin-top: 0;
        width: 100%;
    }

    .container-bg .container-banner__form-btn,
    .container-order__box .form p {
        width: 100%;
    }

    .container-step .container-usluga__card {
        grid-template-columns: 1fr;
    }

    .container-order__box form {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-form .form {
        width: 100%;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        padding: 50px 30px 70px;
        border: 1px solid #6775FE;
    }

    .section-form .form form {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 0;
        
    }

    .container-map__contact {
        position: relative;
        height: auto;
    }

    .container-map__contact-block {
        gap: 20px;
        width: 100%;
        padding: 25px;
        position: relative;
        left: 0;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    }
        .container-map__contact-block .text a {
            display: initial;
        }
                 .container-map__contact-block .text br {
                     display: block;
                 }
                                 #yamap0,
                                 #map{
                                    height: 400px;
                                 }
}

@media(max-width:576px) {
    .container-list h4 {
        font-size: 16px;
    }

    .container-bg {
        padding: 30px 0;
        margin-top: 0;
    }

    .container-list h3 {
        font-size: 28px;
    }

    .container-list ul {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .container-list ul li a {
        font-size: 18px;
    }

    .container-list ul li {
        gap: 5px;
    }

    .container-list ul li::before {
        content: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3c!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3e%3csvg width='15px' height='15px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 21C15.5 17.4 19 14.1764 19 10.2C19 6.22355 15.866 3 12 3C8.13401 3 5 6.22355 5 10.2C5 14.1764 8.5 17.4 12 21Z' stroke='%23ED7E00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13Z' stroke='%23ED7E00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");

    }

    .container-list {
        margin-bottom: 80px;
    }


    .container-order__title {
        font-size: 34px;
    }

    #clockdiv div>span {
        padding: 10px;
        width: 40px;
        height: 40px;
    }

    .container-order--top {
        gap: 20px;
    }

    .container-order__box-text {
        font-size: 18px;
    }

    .container-order__box {
        gap: 20px;
        margin-top: 0px;
    }

    .container-order__pricce {
        font-size: 20px;
    }

    .footer-menu a {
        font-size: 24px;
    }

    .policy-footer {
        margin-top: 15px;
        font-size: 18px;
    }

    .text-footer {
        font-size: 14px;
        width: 100%;
    }
        .flex-end{
            gap: 10px;
        }

    .popup-succesful {
        padding: 70px 25px 70px;
        max-width: 100%;
        position: relative;
        top: 50%;
        transform: 0;
        left: 50%;
        margin: 20px auto;
        transform: translate(-50%, -50%);
    }

    .overlay {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .popup-zakaz form {
        padding-left: 15px;
        padding-right: 15px;
        padding: 0;
    }


    .popup-zakaz {
        padding: 70px 15px 70px;
        max-width: 100%;
        position: relative;
        top: 50%;
        transform: 0;
        left: 50%;
        margin: 20px auto;
        transform: translate(-50%, -50%);
    }

    .popup-zakaz .message-form {
        font-size: 27px;
    }

    .container-banner__title,
    .container-banner__box {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-list {
        width: 100%;
    }

    .container-banner__box {
        margin-bottom: 0px;
    }

    .container-banner__title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .container-banner__subtitle {
        font-size: 24px;
    }

    .typed-cursor {
        font-size: 10px;
    }

    form,
    .container-banner__form-text {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container-banner {
        border-radius: 25px;

    }

    .section-form,
    .container-company,
    .container-gallery,
    .container-usluga,
    .container,
    .container-step,
    .container-call {
        padding-left: 10px;
        padding-right: 10px;
    }

    .card-item-content__price span {
        font-size: 20px;
    }

    .card-item-content__price {
        font-size: 14px;
    }

    .container-banner__img {
        margin-bottom: 15px;
    }

    .container-banner__form-input::placeholder {
        font-size: 14px;
    }

    .logo {
        font-size: 16px;
    }

    .header-tel {
        font-size: 32px;
    }

    .btn-burger {
        width: 25px;
        height: 30px;
    }



    .container-header .m-auto {
        padding: 25px 10px 25px;
    }

    .container-usluga__card {
        gap: 30px 20px;
    }

    .card-item-content__top img {
        height: 200px;
    }

    .container-usluga__title {
        font-size: 38px;
    }

    .container-usluga {
        margin: 80px auto;
    }

    .card-item-btn__zakaz img {
        width: 20px;
        height: 20px;
        top: 2px;
    }

    .card-item-content__text {
        font-size: 16px;
        padding: 15px 10px 20px 10px;
        border-radius: 0px 0px 10px 10px;
    }

    .card-item-btn__tel,
    .card-item-btn__zakaz {
        border-radius: 25px;
        padding: 13px 15px 13px 15px;
    }

    .container-usluga__card-item-btn {
        margin-top: 20px;
    }

    /* .container-usluga h2 {
        font-size: 16px;
        margin-top: 24px;
        padding: 0 10px;
    } */

    .banner__btn a {

        font-size: 20px;
    }

    .banner__btn {
        margin-top: 20px;

        padding: 0 10px;
    }

    .tabs-list {
        gap: 15px;
    }

    .tabs-list {
        gap: 15px;
        overflow: auto;
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        scrollbar-color: #FFF9F3 #FFF9F3;
        scrollbar-width: thin;
        scroll-padding-top: 5px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .card-item-content__text .text {
        font-size: 18px;
    }

    .card-item-content__text .price {
        font-weight: bold;
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .container-order__box .form p {
        font-size: 16px;
    }

    .container-call .container-usluga__title {
        font-size: 38px;
    }

    .grid-special__list .item .title {
        font-size: 20px;
    }

    .grid-special__list .item img {
        width: 40px;
        height: 40px;
    }

    .grid-special__list .item .text {
        font-size: 14px;
    }

    .section-gallery>.section-gallery__item:nth-child(-n+4) img {
        min-height: 150px;
        max-height: 150px;
    }

    .section-gallery a img {
        min-height: 200px;
        max-height: 250px;
    }

    .bg-silver {
        padding: 30px 0;
        margin-top: 0;
    }

    .container-company .text {
        font-size: 16px;
    }

    .section-form .form {
        padding: 35px 15px 50px;
    }

    .section-form .form form {
        gap: 25px;
    }

    .section-form .form .text {
        font-size: 18px;
    }
.container-map__contact-block{
    padding: 20px 10px;
}
}

@media(max-width:440px) {
    .container-header .m-auto {
        padding: 25px 10px 25px;
        flex-direction: column;
        gap: 5px;
    }

    .container-call .container-usluga__title {
        font-size: 28px;
    }

    .grid-special__list .item .title {
        font-size: 18px;
    }

    .grid-special {
        gap: 30px;
    }

    .container-banner__form {
        background: white;
        border-radius: 15px;
        width: 400px;
        width: calc(100% - 40px);
        padding: 20px 10px;
        margin-top: 20px;
        margin-left: 10px;
    }

    .card-item-btn__tel {
        border-radius: 10px;
        padding: 13px 15px 13px 15px;
        width: 100%;
    }

    .banner-main>img {
        height: 700px;
    }

    .banner-main,
    .banner-main::after {
        height: 700px;
    }

    .container-banner {
        height: 700px;
    }

    .fixed-btn {
        display: none;
    }

    .card-item-content__top img {
        height: 200px;
        padding: 0px;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }

    .header-tel {
        margin-right: 0;
        width: 100%;
        margin-top: 0px;
        font-size: 28px;
        text-align: center;
        padding: 10px 15px;
    }

    .header-tel.active {
        position: fixed;
        transition: 0.5s;
        transition: background 500ms linear;
        transition: 1s;
        bottom: 0;
        opacity: 1;
        transition: 0.5s;
        right: 0px;
        margin-top: 0;
        border-radius: 0;
        background: #6775FE;
        color: white;
    }

    .container-bg::after {
        background: rgba(0, 0, 0, 0.65);
    }
}

@media(max-width:420px) {
    .section-form .form .title {
        font-size: 34px;
    }

    .section-form .form .text {
        font-size: 16px;
    }

    .section-form .container-banner__form-btn {
        width: 100%;
    }

    .container-banner__title,
    .container-banner__box {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container-usluga__title {
        font-size: 34px;
    }

    form,
    .container-banner__form-text {
        padding-left: 10px;
        padding-right: 10px;
    }

    form {
        margin-top: 15px;
    }

    .container-banner__title {
        font-size: 38px;
        margin-bottom: 15px;
        line-height: 130%;
    }

    .container-banner__subtitle {
        font-size: 22px;
    }

    .container-banner__box {
        height: 18px;
        margin-bottom: 15px;

    }

    .typed-cursor {
        font-size: 8px;
    }

    .container-list ul {
        gap: 20px 10px;
    }

    .container-list ul li a {
        font-size: 14px;
    }

    .tabs-list_item {
        min-width: 150px;
    }



    .banner-main>img {
        height: 800px;
    }

    .banner-main,
    .banner-main::after {
        height: 800px;
    }

    .container-banner {
        height: 800px;
    }
          .container-map__contact-block .text a {
              display: block;
          }
                        .container-map__contact-block .text br {
                            display: none;
                        }
}