* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    transition: opacity ease-in 0.2s;
}
body[unresolved] {
    opacity: 0;
    display: block;
    overflow: hidden;
    position: relative;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: "";
}

abbr,
acronym {
    border: 0;
}

textarea {
    resize: none;
}

a:focus-visible,
select:focus,
textarea:focus,
input:focus {
    outline: none;
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-VariableFont_wght.ttf);
}

@font-face {
    font-family: RalewayItalic;
    src: url(../fonts/Raleway-Italic-VariableFont_wght.ttf);
}

@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: MontserratItalic;
    src: url(../fonts/Montserrat-Italic-VariableFont_wght.ttf);
}

#root {
    height: 100%;
}

html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #222;
    line-height: 1.6;
}

#root {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

.header {
    padding: 36px 15px 40px 15px;
    width: 100%;

    .nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
        text-align: center;

        @media (max-width: 1320px) {
            gap: 20px;
        }
    }

    .nav .menu-item a {
        color: #000000;
        font-family: Raleway;
        text-transform: uppercase;
        text-decoration: none;
    }

    .nav ul li:hover {
        cursor: pointer;
    }

    nav a:hover {
        color: #388e3c;
    }

    .nav .current-menu-item a {
        color: #4e7330;
    }

    .nav .menu-item.menu-item-has-children {
        position: relative;
    }

    .nav .menu-item.menu-item-has-children>ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        width: 440px;
        background: #fff;
        border-radius: 7px;
        padding: 10px 15px;
        left: calc(50% - 220px);
        border: 1px solid;
        box-shadow: 0 0 10px -5px #000;
        pointer-events: none;
        opacity: 0;
        z-index: 10;
        transition: 300ms;
        font-size: 0.9em;
    }

    .nav .menu-item.menu-item-has-children a:hover {
        text-decoration: underline;
    }

    .nav .menu-item.menu-item-has-children:hover>ul {
        opacity: 1;
        pointer-events: all;
    }

    @media (max-width: 1024px) {
        .nav ul {
            gap: 25px;
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        .nav ul {
            gap: 15px;
            font-size: 12px;
        }
    }

    @media (max-width: 425px) {
        padding: 15px 15px 40px 15px;
    }
}

.logo {
    display: flex;
    align-items: center;

    img {
        max-width: 100%;
        height: auto;
    }
}

.button {
    padding: 15px;
    text-decoration: none;
    background-color: #4e7330;
    color: #ffffff;
    font-family: Raleway;
    font-weight: 300;
    border-radius: 5px;
    z-index: 7;
    transition: 0.5s;
    font-size: 20px;
}

.button:hover {
    background-color: #354e1f;
    cursor: pointer;
}

.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px;

    a svg path {
        transition: 300ms;
    }

    a:hover svg path {
        fill: #4e7330;
    }

    @media (max-width: 1100px) {
        gap: 20px;

        svg {
            width: 25px;
            height: 25px;
        }
    }

    @media (max-width: 900px) {
        gap: 10px;
    }
}

.review {
    max-width: 425px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    .review__email {
        font-family: RalewayItalic;
        color: #4e7330;
        font-size: 20px;
    }

    .review__text {
        width: 100%;
        font-family: Montserrat;
        font-size: 20px;
        font-weight: 300;
        line-height: 110%;
    }

    .review__stars {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-top: 10px;
        gap: 15px;
    }

    .review__stars svg {
        fill: #4e7330;
    }

    @media (max-width: 900px) {
        .review__email,
        .review__text {
            font-size: 20px;
        }

        .review__stars {
            gap: 10px;
        }

        .review__stars svg {
            height: 18px;
            width: 18px;
        }
    }

    @media (max-width: 768px) {
        .review__email,
        .review__text {
            font-size: 18px;
        }

        .review__stars {
            gap: 10px;
        }

        .review__stars svg {
            height: 14px;
            width: 14px;
        }
    }

    @media (max-width: 426px) {
        .review__email,
        .review__text {
            font-size: 16px;
        }

        .review__stars {
            gap: 5px;
        }

        .review__stars svg {
            height: 14px;
            width: 14px;
        }
    }
}

.form-start {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    .form-start__title {
        font-family: Raleway;
        font-size: 40px;
        font-weight: bold;
        line-height: 120%;
    }

    .form-start__subtext {
        font-family: RalewayItalic;
        font-size: 18px;
        max-width: 740px;
        line-height: 120%;
        color: #4e7330;
    }

    .form-start__note {
        font-family: RalewayItalic;
        font-size: 20px;
        font-weight: 100;
        line-height: 120%;
    }

    form {
        max-width: 555px;
        margin-top: 100px;
        margin-bottom: 15px;

        @media (max-width: 980px) {
            max-width: 100%;
        }

        @media (max-width: 768px) {
            margin-top: 0px;
        }
    }
    form>p {
        display: flex;
        flex-direction: column;
        gap: 52px;

        @media (max-width: 980px) {
            gap: 16px;
        }
    }
    input:not([type="submit"]) {
        border-bottom: 4px solid #4e7330;
        height: auto;
        font-family: Raleway;
        font-size: 20px;
        padding: 0 0 10px 40px;
        width: 100%;

        @media (max-width: 980px) {
            font-size: 18px;
        }
    }

    input::placeholder {
        font-family: RalewayItalic;
        font-size: 20px;

        @media (max-width: 980px) {
            font-size: 18px;
        }
    }

    input[type="submit"] {
        width: fit-content;
        margin-top: 75px;
        padding: 15px;
        background-color: #4e7330;
        color: #ffffff;
        font-family: Raleway;
        font-weight: 300;
        border-radius: 5px;
        transition: 0.5s;
        font-size: 20px;
        cursor: pointer;

        @media (max-width: 768px) {
            font-size: 18px;
            margin-top: 30px;
        }
    }

    .form-start__gazel {
        position: absolute;
        right: -8%;
        bottom: 0;

        width: 62vw;
        max-width: 1100px;
        height: auto;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 1300px) {
            width: 48vw;
        }

        @media (max-width: 980px) {
            display: none;
        }
    }
}

.form-orders {
    display: flex;
    flex-direction: column;
    width: fit-content;

    @media (max-width: 1200px) {
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        width: 100%;
    }

    .form-orders__title {
        max-width: 555px;
        font-family: Raleway;
        font-size: 36px;
        font-weight: bold;
        line-height: 120%;
        color: #4e7330;

        @media (max-width: 768px) {
            width: 100%;
            max-width: 100%;
        }
    }

    .form-start__note {
        font-family: RalewayItalic;
        font-size: 20px;
        font-weight: 100;
        line-height: 120%;
    }

    form {
        max-width: 555px;
        margin-top: 70px;
        margin-bottom: 15px;

        @media (max-width: 768px) {
            max-width: 100%;
        }
    }

    form>p {
        display: flex;
        flex-direction: column;
        gap: 52px;
        margin-bottom: 52px;

        @media (max-width: 980px) {
            gap: 16px;
            margin-bottom: 16px;
        }
    }
    form>p input:not([type="submit"]):not([type="checkbox"]) {
        width: 100%;
        font-family: Raleway;
        border-bottom: 4px solid #4e7330;
        height: auto;
        font-size: 20px;
        padding: 0 0 10px 40px;
        transition: 0.5s;
    }

    form>p input:not([type="submit"]):not([type="checkbox"]):hover {
        border-bottom: 4px solid #354e1f;
        cursor: pointer;

        @media (max-width: 768px) {
            font-size: 18px;
        }
    }

    form>p input::placeholder {
        font-family: Raleway;
        font-size: 20px;

        @media (max-width: 768px) {
            font-size: 18px;
        }
    }

    .wpcf7-list-item {
        margin: 0;
    }

    input[type="submit"] {
        width: fit-content;
        padding: 15px;
        background-color: #4e7330;
        color: #ffffff;
        font-family: Raleway;
        font-weight: 300;
        border-radius: 5px;
        transition: 0.5s;
        cursor: pointer;
        font-size: 20px;

        @media (max-width: 768px) {
            font-size: 18px;
        }
    }

    input[type="submit"]:hover {
        background-color: #354e1f;
        cursor: pointer;
    }

    label {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        height: auto;
        font-family: Raleway;
        font-size: 16px;
        padding: 0;

        input[type="checkbox"] {
            min-width: 30px;
            min-height: 30px;
            accent-color: #4e7330;
            transition: 0.5s;
        }

        input[type="checkbox"]:hover {
            background-color: #354e1f;
            cursor: pointer;
        }
    }

    @media (max-width: 900px) {
        .form-orders__title {
            font-size: 20px;
        }

        .form-start__note {
            font-family: RalewayItalic;
            font-size: 16px;
        }

        form {
            gap: 32px;
            margin-top: 30px;
            margin-bottom: 10px;

            input {
                font-size: 28px;
                padding: 0 0 10px 20px;
            }

            input::placeholder {
                font-size: 28px;
            }

            label {
                gap: 10px;
                font-size: 20px;
                padding: 0 0 0 20px;
            }
        }
    }

    @media (max-width: 768px) {
        .form-orders__title {
            font-size: 20px;
        }

        .form-start__note {
            font-family: RalewayItalic;
            font-size: 14px;
        }

        form {
            gap: 22px;
            margin-top: 20px;
            margin-bottom: 10px;

            input {
                font-size: 18px;
                padding: 0 0 10px 20px;
            }

            input::placeholder {
                font-size: 22px;
            }

            label {
                gap: 10px;
                font-size: 16px;
                padding: 0 0 0 20px;

                input {
                    width: 20px;
                    height: 20px;
                }
            }
        }
    }

    /* @media (max-width: 426px) {
    .form-orders__title {
    font-size: 20px;
    }

    .form-start__note {
    font-family: RalewayItalic;
    font-size: 14px;
    }

    form {
    gap: 22px;
    margin-top: 10px;
    margin-bottom: 10px;

    input {
      font-size: 22px;
      padding: 0 0 10px 20px;
    }

    input::placeholder {
      font-size: 22px;
    }

    label {
      gap: 10px;
      font-size: 16px;
      padding: 0 0 0 20px;

      input {
        width: 20px;
        height: 20px;
      }
    }
    }
    }   */
}

.form-rev {
    display: flex;
    flex-direction: column;
    gap: 45px;
    width: fit-content;
    padding: 0 15vw 0 50px;
    float: right;

    .form-rev__title {
        font-family: Raleway;
        font-size: 36px;
        font-weight: bold;
        text-align: center;
        line-height: 120%;
        text-transform: uppercase;
    }

    form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 600px;
    }

    .acceptance {
        margin: 0 28px;
    }

    .form-rev__devide {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .form-rev__devide-email-stars {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        gap: 50px;

        .star-rating-input {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            width: 100%;
            z-index: 7;
        }

        .star-rating-input>span {
            cursor: pointer;
        }
        .star-rating-input>span.is-active svg, .star-rating-input>span.is-hover svg {
            fill: #4e7330 !important;
        }

        .form-rev__email {
            padding: 0 0 0 20px;
            z-index: 1;
        }
    }

    .form-rev__text,
    .form-rev__email {
        border-bottom: 4px solid #4e7330;
        height: auto;
        font-family: Raleway;
        font-size: 32px;
        padding: 0 0 0 20px;
    }

    .form-rev__text,
    .form-rev__email::placeholder {
        font-family: RalewayItalic;
        color: #000000;
        font-size: 28px;
    }

    .form-rev__text {
        max-width: 700px;
        min-height: 250px;
        border: 4px solid #4e7330;
        border-radius: 5px;
        padding: 10px 0 0 20px;
        resize: none;
    }

    button {
        width: fit-content;
        padding: 15px;
        background-color: #4e7330;
        color: #ffffff;
        font-family: Raleway;
        font-weight: 300;
        border-radius: 5px;
        transition: 0.5s;
        cursor: pointer;
        font-size: 20px;

        @media (max-width: 768px) {
            font-size: 20px;
        }
    }

    @media (max-width: 1100px) {
        gap: 25px;

        .form-rev__title {
            font-size: 30px;
            line-height: 120%;
        }

        form {
            gap: 10px;

            @media (max-width: 768px) {
                padding: 0 30px;
                width:100%;
            }
        }

        .form-rev__devide {
            gap: 10px;
        }

        .form-rev__devide-email-stars {
            gap: 30px;

            .star-rating-input {
                width: 100%;
                z-index: 7;

                svg {
                    height: 20x;
                    width: 20px;
                }
            }

            .form-rev__email {
                padding: 0 0 0 10px;
            }
        }

        .form-rev__text,
        .form-rev__email {
            font-size: 26px;
            padding: 0 0 0 10px;
        }

        .form-rev__text,
        .form-rev__email::placeholder {
            font-size: 22px;
        }

        .form-rev__text {
            max-width: 550px;
            min-height: 200px;
        }
    }

    @media (max-width: 768px) {
        gap: 25px;
        width: unset;
        padding: unset;
        float: unset;
        align-items: center;

        .form-rev__title {
            font-size: 26px;
            line-height: 120%;
        }

        .form-rev__devide-email-stars {
            gap: 20px;

            .star-rating-input svg {
                height: 18x;
                width: 18px;
            }
        }

        .form-rev__text,
        .form-rev__email {
            font-size: 22px;
            padding: 0 0 0 10px;
        }

        .form-rev__text,
        .form-rev__email::placeholder {
            font-size: 20px;
        }

        .form-rev__text {
            max-width: 100%;
            min-height: 175px;
        }
    }

    @media (max-width: 426px) {
        gap: 25px;

        .form-rev__title {
            font-size: 20px;
            line-height: 120%;
        }

        .form-rev__devide-email-stars {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;

            .star-rating-input svg {
                height: 18x;
                width: 18px;
            }
        }

        .form-rev__text,
        .form-rev__email {
            font-size: 22px;
            padding: 0 0 0 10px;
        }

        .form-rev__text,
        .form-rev__email::placeholder {
            font-size: 20px;
        }

        .form-rev__text {
            max-width: 100%;
            min-height: 275px;
        }
    }
}

.map-render {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    z-index: 7;
}

.news-card {
    max-width: 350px;
    display: flex;
    flex-direction: column;
    cursor: pointer;

    .news-card__image-container {
        width: 100%;
        max-height: 500px;
        height: 100%;
    }

    .news-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-card__title {
        max-width: 350px;
        max-height: 120px;
        font-family: Raleway;
        font-weight: bold;
        line-height: 180%;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        transition: all 1s ease-in-out;
        z-index: 1;
        padding-right: 1px;
    }

    @media (max-width: 900px) {
        .news-card__image-container {
            max-height: 450px;
        }
    }

    @media (max-width: 768px) {
        .news-card__image-container {
            max-height: 400px;
        }
    }

    @media (max-width: 425px) {
        .news-card__image-container {
            max-height: 300px;
        }
    }
}

.footer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
    align-self: flex-start;
    position: relative;
    width: 100%;
    padding-left: 10vw;

    .logoFooter {
        z-index: 7;
    }

    .logoFooter img {
        max-width: 100%;
        width: 35vw;
        height: auto;
        z-index: 7;
    }

    .socials {
        z-index: 7;
    }

    .image-footer {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 25vw;
        max-width: 600px;
        z-index: -1;
    }
}

.footer-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 150px 0 0 0;
    width: 100%;

    @media (max-width: 768px) {
        margin-top: 70px;

        .thisFontLogo {
            max-width: 90%;
        }
    }

    .header .nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        z-index: 7;
    }

    .socials {
        z-index: 7;
    }

    .logoFooter {
        position: absolute;
        width: 300px;
        height: 300px;
        bottom: 0;
        align-self: center;
        margin-left: 700px;
        z-index: 4;

        @media (max-width: 1100px) {
            right: 0;
            margin-left: unset;
        }

        @media (max-width: 768px) {
            display: none;
        }
    }

    .form-start__bushes {
        position: absolute;
        width: 100%;
        bottom: 0;
        z-index: -1;
    }

    .nav .menu-item.menu-item-has-children>ul {
        display: none;
    }

    @media (max-width: 768px){
        .menu-menu-1-container {
            width:100%;
        }

        .menu-menu-1-container>ul>li {
            width: 100%;
        }

        .nav .menu-item.menu-item-has-children>ul {
            left: 0;
            width: 100%;
            align-items: center;
        }
    }
}

.home {
    .mainframe {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 120px;
        padding: 0 150px 0 130px;

        .leftColumn img {
            max-height: 700px;
            object-fit: contain;
            width: 100%;
        }

        .mainframe__title {
            color: #4e7330;
            font-size: 36px;
            font-weight: bold;
            font-family: Raleway;
            text-transform: uppercase;
            line-height: 120%;
        }

        .mainframe__text {
            font-size: 20px;
            font-weight: 200;
            font-family: MontserratItalic;
            /* line-height: 120%; */
        }

        .mainframe__buttons {
            display: flex;
            flex-direction: row;
            gap: 50px;

            @media (max-width: 768px) {
                gap: 10px 50px;
                flex-wrap: wrap;

                .button {
                    flex: 1 240px;
                    text-align: center;
                }
            }
        }
    }

    @media (max-width: 1600px) {
        .mainframe {
            gap: 80px;
            padding: 0 60px 0 60px;
        }
    }

    @media (max-width: 450px) {
        .mainframe {
            padding: 0 30px 0 30px;
        }
    }

    .rightColumn {
        display: flex;
        flex-direction: column;
        gap: 25px;
        max-width: 50%;
    }

    .leftColumn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        max-width: 50%;
    }

    @media (max-width: 1100px) {
        .mainframe {
            flex-direction: column-reverse;
            align-items: center;
        }
        .rightColumn {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .leftColumn {
            max-width: 90%;
        }
    }

    .news {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 150px 130px 0 130px;

        @media (max-width: 1600px) {
            padding: 60px 60px 0 60px;
        }

        @media (max-width: 450px) {
            padding: 60px 30px 0 30px;
        }

        .leftColumn img {
            max-height: 850px;
            object-fit: contain;
            width: 100%;
        }

        .rightColumn {
            gap: 25px;
        }

        @media (max-width: 1100px) {
            flex-direction: column-reverse;
            align-items: center;
            gap: 50px;
        }

        .news__title {
            font-family: Montserrat;
            font-weight: bold;
            font-size: 64px;
            line-height: 120%;

            @media (max-width: 768px) {
                font-size: 40px;
            }
        }

        .news__text {
            padding-left: 50px;
            font-family: Montserrat;
            font-size: 20px;
            line-height: 190%;

            @media (max-width: 1100px) {
                padding-left:0;
            }
        }

        .news__redirect {
            padding-left: 50px;

            @media (max-width: 1100px) {
                padding-left:0;
            }
        }
    }

    .reviews-and-from {
        padding-top: 120px;

        @media (max-width: 1600px) {
            padding-top: 60px;
        }

        .reviews {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 80px;
            padding: 0 130px 0 130px;

            .reviews__title {
                font-family: Montserrat;
                font-weight: bold;
                font-size: 60px;
                line-height: 120%;
                text-align: center;

                @media (max-width: 768px) {
                    font-size: 40px;
                }
            }

            .reviews__grid {
                width: 100%;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;
                flex-wrap: wrap;
            }

            @media (max-width: 1600px) {
                padding: 0 50px;
            }

            @media (max-width: 450px) {
                gap: 30px;
            }
        }

        .form-start {
            padding: 70px 0 0 150px;

            @media (max-width: 1600px) {
                padding: 70px 0 0 60px;
            }

            @media (max-width: 980px) {
                padding: 70px 60px 0 60px;
                gap: 20px;
            }

            @media (max-width: 450px) {
                padding: 70px 30px 0 30px;
            }
        }
    }

    .map-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-top: 70px;

        .map-section__title {
            font-family: Montserrat;
            font-weight: bold;
            font-size: 48px;
            line-height: 120%;
            text-align: center;
            margin: 0 140px;

            @media (max-width: 1600px) {
                margin: 0 60px;
            }

            @media (max-width: 768px) {
                font-size: 40px;
            }

            @media (max-width: 450px) {
                margin: 0 30px;
            }
        }

        .map-section__text {
            font-family: MontserratItalic;
            font-size: 20px;
            font-weight: 400;
            line-height: 120%;
            margin: 0 130px;
            max-width: 80vw;

            @media (max-width: 1600px) {
                margin: 0 60px;
            }

            @media (max-width: 450px) {
                margin: 0 30px;
            }
        }

        .button {
            margin: 0 130px;

            @media (max-width: 1600px) {
                margin: 0 60px;
            }

            @media (max-width: 450px) {
                margin: 0 30px;
            }
        }
    }
}

.news {
    display: flex;
    flex-direction: column;
    align-items: center;

    .mainframe {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 0 130px 0 130px;
        width: 100%;

        @media (max-width: 1600px) {
            padding: 0 50px;
        }

        @media (max-width: 1600px) {
            padding: 0 30px;
        }

        .mainframe__logos {
            position: relative;
            display: flex;

            .logo {
                position: absolute;
                align-self: center;
            }

            .mainframe__recycling-logo {
                max-width: 530px;
                width: 100%;
                height: 100%;
            }
        }

        .mainframe__text {
            font-family: Montserrat;
            font-size: 18px;
            max-width: 1400px;
        }

        .mainframe__subtext {
            font-family: Raleway;
            font-size: 18px;
            font-weight: bold;
            max-width: 1400px;
            color: #4e7330;
        }
    }

    .news-grid {
        display: grid;
        grid-template-columns: auto auto auto;
        row-gap: 90px;
        column-gap: 120px;
        padding: 90px 50px 140px 50px;
    }

    @media (max-width: 900px) {
        .mainframe {
            .mainframe__text,
            .mainframe__subtext {
                font-size: 18px;
            }
        }

        .news-grid {
            grid-template-columns: auto auto;
            row-gap: 60px;
            column-gap: 80px;
            padding: 50px 50px 90px 50px;
        }
    }

    @media (max-width: 768px) {
        .mainframe {
            .mainframe__text,
            .mainframe__subtext {
                font-size: 18px;
            }
        }

        .news-grid {
            grid-template-columns: auto auto;
            row-gap: 30px;
            column-gap: 50px;
            padding: 40px 30px 90px 30px;
        }
    }

    @media (max-width: 425px) {
        .mainframe {
            .mainframe__text,
            .mainframe__subtext {
                font-size: 14px;
            }
        }

        .news-grid {
            grid-template-columns: auto;
            row-gap: 40px;
        }
    }
}

.forms {
    height: 83%;
    .mainframe {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
        padding: 0 130px;
        width:100%;

        @media (max-width: 1600px) {
            padding: 0 50px;
        }

        @media (max-width: 1200px) {
            flex-direction: column-reverse;
            padding: 0 30px;
        }

        .leftColumn {
            width: fit-content;
            align-self: center;
            flex: 1 0 0;
            max-width: 50%;

            @media (max-width: 1200px) {
                max-width: 100%;
                width: 100%;
            }
        }

        .rightColumn {
            flex: 1 0 0;
            display: flex;
            flex-direction: column;
            max-width: 50%;

            .mainframe__logo {
                max-width: 680px;
                width: 100%;
                height: auto;

                @media (max-width: 1200px) {
                    margin: 0 auto;
                }
            }

            .mainframe__text {
                width: 100%;
                font-family: Montserrat;
                font-size: 18px;
                line-height: 180%;
            }

            @media (max-width: 1200px) {
                max-width: 100%;
                width: 100%;
            }
        }
    }

    .reviews {
        padding: 80px 0 100px 0;

        .reviews__title {
            font-family: Raleway;
            font-weight: bold;
            font-size: 48px;
            text-align: center;
            padding: 0 130px;

            @media (max-width: 1600px) {
                padding: 0 50px;
            }
            @media (max-width: 768px) {
                padding: 0 30px;
            }
        }

        .reviews__grid {
            padding: 60px 130px 60px 130px;
            display: flex;
            place-items: center;
            gap: 40px;
            justify-content: center;
            flex-wrap: wrap;

            @media (max-width: 1600px) {
                padding: 60px 50px 60px;
            }
            @media (max-width: 768px) {
                padding: 60px 30px 60px;
            }
        }
    }

    @media (max-width: 1100px) {
        .mainframe .rightColumn .mainframe__text {
            font-size: 18px;
            line-height: 130%;
            padding-left: 90px;
        }
    }

    @media (max-width: 900px) {
        .mainframe .rightColumn .mainframe__text {
            font-size: 18px;
            line-height: 120%;
            padding-left: 50px;
        }

        .reviews .reviews__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, auto);
            column-gap: 10px;
            row-gap: 25px;

            .rev1 {
                grid-column: 1;
                grid-row: 1;
            }

            .rev2 {
                grid-column: 2;
                grid-row: 1;
            }

            .rev3 {
                grid-column: 1;
                grid-row: 2;
            }

            .rev4 {
                grid-column: 2;
                grid-row: 2;
            }

            .rev5 {
                display: none;
            }

            .form6 {
                grid-column: 1 / 3;
                grid-row: 3;
            }
        }
    }

    @media (max-width: 768px) {
        .mainframe .rightColumn .mainframe__text {
            font-size: 16px;
            line-height: 120%;
            padding-left: 0;
        }

        .reviews {
            padding: 40px 0 70px 0;

            .reviews__title {
                font-size: 32px;
                line-height: 120%;
            }

            .reviews__grid {
                padding: 30px 80px 0 80px;
            }
        }
    }

    @media (max-width: 715px) {
        .mainframe {
            flex-direction: column-reverse;
            gap: 20px;
        }

        .mainframe .rightColumn {
            align-items: center;
        }

        .mainframe .rightColumn .mainframe__logo {
            max-width: 440px;
        }

        .mainframe .rightColumn .mainframe__text {
            padding-left: 0px;
        }

        .reviews .reviews__grid {
            padding: 40px 30px 40px 30px;
            display: flex;
            flex-direction: column;
            row-gap: 40px;
        }
    }

    @media (max-width: 426px) {
        .reviews {
            padding: 20px 0 40px 0;

            .reviews__title {
                font-size: 22px;
                line-height: 120%;
            }
        }
    }
}

.map {
    display: flex;
    flex-direction: column;
    position: relative;

    .mainframe {
        align-self: center;
        padding: 0 130px 56px 130px;
        display: grid;
        place-items: center;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
        column-gap: 10px;
        row-gap: 15px;

        @media (max-width: 1600px) {
            padding: 0 50px 56px 50px;
        }
    }

    .mainframe__pic {
        display: flex;
        align-items: center;
        grid-column: 1;
        grid-row: 1;

        img {
            max-width: 100%;
            height: auto;
        }
    }

    .logo {
        grid-column: 2;
        grid-row: 1;
    }

    .mainframe__text {
        grid-column: 1 / 3;
        grid-row: 2;
        padding-top: 25px;
        font-family: Montserrat;
        font-size: 18px;
    }

    .map-block {
        width: 100%;
        padding-bottom: 56px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .map-block__text {
        font-family: Montserrat;
        font-size: 18px;
        text-align: center;
        padding: 25px 130px 0;

        a {
            font-weight: bold;
            color: #4e7330;
        }

        @media (max-width: 1600px) {
            padding: 25px 50px 0;
        }
    }

    @media (max-width: 900px) {
        .mainframe__text,
        .map-block__text {
            font-size: 18px;
            line-height: 140%;
        }
    }

    @media (max-width: 768px) {
        .mainframe__text,
        .map-block__text {
            font-size: 16px;
            line-height: 140%;
        }
    }

    @media (max-width: 426px) {
        .mainframe {
            padding: 0 26px 26px;
        }

        .mainframe__text {
            text-align: justify;
            padding-top: 10px;
        }

        .mainframe__text,
        .map-block__text {
            font-size: 12px;
            line-height: 120%;
        }

        .map-block {
            padding-bottom: 36px;
        }
    }
}

.about {
    height: 83%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0 0;

    .mainframe {
        display: grid;
        place-items: center;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, auto);
        column-gap: 20px;
        row-gap: 8px;
        padding: 0 130px 56px;
        width: 100%;

        @media (max-width: 1600px) {
            padding: 0 50px 56px;
        }

        @media (max-width: 768px) {
            padding: 0 30px 56px;
        }

        .mainframe__image-wrapper {
            grid-column: 1/3;
            grid-row: 1;
            position: relative;
        }

        .mainframe__image-wrapper img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .mainframe__titles-wrapper {
            grid-column: 3/6;
            grid-row: 1;
        }

        .mainframe__bottom-text-wrapper {
            grid-column: 1/6;
            grid-row: 2;
        }

        h2 {
            font-size: 36px;
            color: #4e7330;
            text-transform: uppercase;
            font-weight: 600;
            margin-top: 0;
            display: inline-block;
            border-radius: 5px;
            font-family: Raleway;
        }

        p {
            font-size: 20px;
            line-height: 180%;
            font-family: Montserrat;
        }
    }

    .content-grid {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
        gap: 30px;
        place-items: center;
        padding: 0 130px 56px;
        width: 100%;
        justify-items: stretch;

        @media (max-width: 1600px) {
            padding: 0 50px 56px;
        }

        @media (max-width: 768px) {
            padding: 0 30px 56px;
        }

        .content-grid__image-wrapper_1 {
            grid-column: 1;
            grid-row: 1;
        }

        .content-grid__text_1 {
            grid-column: 2;
            grid-row: 1;
        }

        .content-grid__image-wrapper_2 {
            grid-column: 2;
            grid-row: 2;
        }

        .content-grid__text_2 {
            grid-column: 1;
            grid-row: 2;
        }

        .content-grid__image-wrapper_1,
        .content-grid__image-wrapper_2 {
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        h2 {
            font-size: 36px;
            color: #4e7330;
            font-weight: 500;
            margin-top: 0;
            display: inline-block;
            border-radius: 5px;
            font-family: Raleway;
        }

        ul {
            list-style: inside;
        }

        li {
            font-size: 20px;
            line-height: 180%;
            font-family: Montserrat;
        }
    }

    @media (max-width: 1024px) {
        .mainframe,
        .content-grid {
            p,
            li {
                font-size: 16px;
            }

            h2 {
                font-size: 20px;
            }
        }
    }

    @media (max-width: 768px) {
        .mainframe,
        .content-grid {
            p,
            li {
                font-size: 14px;
            }

            h2 {
                font-size: 18px;
            }
        }

        .mainframe,
        .content-grid {
            padding-bottom: 32px;
        }

        .content-grid {
            grid-template-columns: repeat(1, auto);
            grid-template-rows: repeat(4, auto);
            gap: 20px;

            .content-grid__image-wrapper_1 {
                grid-row: 1;
                grid-column: 1;
            }

            .content-grid__text_1 {
                grid-row: 2;
                grid-column: 1;
            }

            .content-grid__image-wrapper_2 {
                grid-row: 3;
                grid-column: 1;
            }

            .content-grid__text_2 {
                grid-row: 4;
                grid-column: 1;
            }
        }
    }

    @media (max-width: 695px) {
        padding: 0;

        .mainframe {
            grid-template-columns: repeat(1, 1fr);
            grid-template-rows: repeat(3, auto);

            .mainframe__image-wrapper {
                max-width: 300px;
                grid-column: 1;
                grid-row: 1;
                margin-bottom: 15px;
            }

            .mainframe__titles-wrapper {
                grid-column: 1;
                grid-row: 2;
            }

            .mainframe__bottom-text-wrapper {
                grid-column: 1;
                grid-row: 3;
            }
        }
    }

    @media (max-width: 425px) {
        .content-grid {
            .content-grid__image-wrapper_1,
            .content-grid__image-wrapper_2 {
                max-width: 100%;
            }
        }

        .mainframe,
        .content-grid {
            p,
            li {
                font-size: 12px;
            }

            h2 {
                font-size: 15px;
            }
        }
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal.is-active {
    display: flex;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.modal-content {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-image {
    align-self: center;
    width: 200px;
    max-height: 400px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 10px;
    color: #333;
}

.modal-text {
    font-size: 16px;
    line-height: 150%;
    color: #555;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message .alert-success {
    color: green;
}

.message .alert-error {
    color: red;
}


.contacts-section {
    width: 100%;
    padding: 0 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.contacts-section__title {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 60px;
    line-height: 120%;
    text-align: center;
}

.contacts-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px 40px;
    flex-wrap: wrap;
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 300;
    line-height: 110%;
    max-width: 1240px;
    align-items: center;
}
.contacts-item a {
    text-decoration: none;
    color: #222222;
}

.acceptance .wpcf7-list-item {
    margin: 0;
}
.acceptance label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.acceptance label input:not([type="submit"]) {
    width: 30px;
    height: 30px;
    accent-color: #4e7330;
    transition: 0.5s;
}
.acceptance label input[type="checkbox"]:hover {
    background-color: #354e1f;
    cursor: pointer;
}
.acceptance .wpcf7-list-item-label {
    font-size: 16px;
    font-family: Raleway;
}


#modal-cookie {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    background-color: rgba(13,13,13,.5);
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.agreementCookie {
    display: block;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    padding: 1em;
    overflow-y: auto;
    font-size: 1em;
    line-height: 1.5;
}

.agreementCookie .content-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}
.agreementCookie .content-wrapper.settings-show {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}

.agreementCookie .content {
    width: 100%;
    font-weight: 500;
}

.agreementCookie .content.content-settings {
    padding-right: -webkit-calc(226px + 2rem);
    padding-right: -moz-calc(226px + 2rem);
    padding-right: calc(226px + 2rem);
}
.agreementCookie .content.content-settings span {
    color:#4e7330;
}
.agreementCookie .content.content-settings>p{
    margin-bottom:10px;
}
.agreementCookie .content p {
    margin: 0;
}

.agreementCookie .content ul {
    margin: 1em 0;
    list-style: none;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1em;
}

.agreementCookie .content ul span {
    font-weight: bold;
    margin: 0 0 0 5px;
    opacity: 1;
}

.agreementCookie .buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 566px;
}

.agreementCookie .buttons .btn {
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0;
    padding: 15px 10px;
    font-size: 16px;
    cursor:pointer;
    border-radius: 6px;
}

.agreementCookie .buttons .btn.apply {
    background: #4e7330;
    color:#fff;
}

.agreementCookie .buttons .btn-grey {
    background: rgb(177, 177, 177)!important;
    color:#fff;
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.agreementCookie .buttons .btn-grey:hover {
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}

.agreementCookie ul li input {
    width: initial;
}

.agreementCookie label {
    color: #000;
    position:relative;
    cursor: pointer;
}

.agreementCookie .blue-clr {
    color: #4e7330;
}
.agreementCookie input[type="checkbox"] {
    display: none;
}
.agreementCookie input[type="checkbox"] + span {
    padding-left: 1.5em;
    vertical-align: middle;
    display: block;
}
.agreementCookie input[type="checkbox"] + span:before {
    content: '';
    width: 0.9em;
    height: 0.9em;
    border: 1px solid #000;
    position: absolute;
    left: 0;
    top: -webkit-calc(50% - 0.52em);
    top: -moz-calc(50% - 0.52em);
    top: calc(50% - 0.52em);
}
.agreementCookie input[type="checkbox"] + span:after {
    content: '✔';
    position: absolute;
    left: 0;
    font-size: 1.3em;
    opacity: 0;
    color: #000;
    line-height: 0;
    top: 50%;
}
.agreementCookie input[type="checkbox"]:checked + span:after {
    opacity: 1;
}
.agreementCookie input[type="checkbox"]:disabled {
    cursor: not-allowed;
}
.agreementCookie input[type="checkbox"]:disabled + span:before {
    background: #0000001c;
}


@media (max-width: 1600px) {
    .contacts-section {
        padding: 0 60px;
    }
}
@media (max-width: 1200px) {
    .agreementCookie .content-wrapper {
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -webkit-flex-direction:column;
        -moz-box-orient:vertical;
        -moz-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column;
        gap: 5px;
    }
}
@media (max-width: 1024px) {
    .contacts-list {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .contacts-section {
        padding: 0 30px;
    }
    .contacts-section__title {
        font-size: 40px;
    }
    .agreementCookie {
        padding: 1em 0;
        font-size: 1.13em;
    }

    .agreementCookie .content {
        margin: 0;
    }

    .agreementCookie .content.content-settings {
        padding-right: 0;
    }

    .agreementCookie .content ul {
        margin: 1vw 0 1vw 3vw;
    }

    .agreementCookie .buttons {
        min-width: 120px;
        gap: 0.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .agreementCookie .buttons .btn {
        width: 100%;
    }
}

.copyright.header {
    padding-top: 0;
}

.news.page {
    display: block;
    align-items: unset;
}
.news.page .mainframe {
    display: block;
    text-align: unset;
    font-family: Montserrat;
    font-size: 18px;
}
.news.page h1 {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 36px;
    line-height: 120%;
    text-align: center;
}
.news.page p {
    margin: 10px 0;
}
.news.page h1, .news.page h2, .news.page h3, .news.page h4 {
    margin: 1em 0;
}
.news.page ol, .news.page ul {
    list-style: disc;
    padding-left: 30px;
}
.news.page table td {
    border: 1px solid #000;
    padding: 0 10px;
}

.service-page {
    font-family: Montserrat;
    font-size: 20px;
}
.service-page .header-block, .service-page .main-block, .service-page .body-block, .service-page .footer-block {
    padding: 50px 130px;
}
.service-page .header-block {
    display: flex;
    justify-content: center;
    padding-top: 0;
}
.service-page .main-block {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.service-page h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
}
.service-page h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 20px;
}
.service-page .main-block__form {
    background: #ffffff59;
    border: 2px solid #ffffff52;
    border-radius: 30px;
    padding: 40px;
    max-width: 530px;
    width: 100%;
    box-shadow: 0 0 25px -10px;
    backdrop-filter: blur(1px);
}
.service-page .main-block__form .form-start form {
    margin: 0;
    max-width: unset;
}
.service-page .main-block__form .form-start form>p {
    gap: 20px;
}
.service-page .main-block__form .form-start input:not([type="submit"]) {
    padding: 15px 40px;
    background: #ffffff73;
    border-radius: 10px;
}
.service-page .main-block__form .form-start input[type="submit"] {
    margin-top: 20px;
}
.service-page .main-block__form .form-start .acceptance .wpcf7-list-item-label {
    line-height: 1.2;
}
.service-page .main-block__form .form-start form>div>p {
    display: flex;
    flex-direction: row-reverse;
}
.service-page .body-block {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}
.service-page .body-block__content {
    width: 100%;
}
.service-page .body-block__image {
    width: 100%;
    max-width: 600px;
}
.service-page .body-block__image-sticky {
    position: sticky;
    top: 40px;
}
.service-page .body-block__image-sticky img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-page .footer-block {
    display: flex;
    justify-content: center;
}
.service-page .footer-block .form-orders {
    max-width: 1300px;
}
.service-page .form-orders__title {
    max-width: unset;
    text-align: center;
}
.service-page .form-orders form {
    max-width: unset;
}
.service-page .form-orders form>p {
    margin-bottom: 0;
}
.service-page .form-orders form>p:nth-child(2) {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}
.service-page .form-orders .wpcf7-form-control-wrap {
    width: calc(100% / 3 - 20px);
}
.service-page .form-orders .wpcf7-form-control-wrap[data-name="checkbox-65"] {
    width: unset;
}
.service-page .form-orders .wpcf7-not-valid-tip, .service-page .form-start .wpcf7-not-valid-tip {
    font-size: 0.8em;
}
.service-page .form-orders form>div>p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.js-burger {
    display: none;
    width: 50px;
    height: 35px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.js-burger span {
    width: 100%;
    height: 7px;
    background: #000;
    border-radius: 5px;
    transition: transform 300ms;
}
.js-burger.is-active {
    justify-content: center;
}
.js-burger.is-active span {
    position: absolute;
}
.js-burger.is-active span:nth-child(1) {
    transform: rotate(45deg);
}
.js-burger.is-active span:nth-child(3) {
    transform: rotate(-45deg);
}
.js-burger.is-active span:nth-child(2) {
    display: none;
}

.header-contacts {
    padding: 0;
    margin: 0;
    list-style: none;
    color: #404040;
    width: max-content;
    max-width: 300px;
    position:relative;
    text-align: center;
    z-index: 1;
}
.header-contacts a {
    color:#404040;
    text-decoration:none;
}
.header-contacts .header-group__phone {
    display: flex;
    flex-direction: column;
}
.header-contacts .phone-area__collapse {
    overflow: hidden;
    max-height: 0px;
    position: absolute;
    transition: max-height 300ms, background 300ms;
    background: #4e7330;
    right: 0;
    left:0;
    width:100%;
    border-radius: 0 0 10px 10px;
}
.header-contacts .phone-area__collapse-block {
    display: flex;
    flex-direction: column;
    padding: 0 15px 15px;
    gap:5px;
}
.header-contacts .phone-area__collapse-block p {
    margin:0;
    display:flex;
    align-items: center;
}
.header-contacts .phone-area__collapse-block p:first-child {
    display:  none;
}
.header-contacts .phone-area__button {
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    transition: background 300ms;
    min-width: 210px;
}
.header-contacts .phone-area__button:before, .icon-phone-alt {
    content:'';
    background:url("../img/icon-phone-alt.webp") no-repeat center / contain;
    width: 0.8em;
    height: 1em;
    display: inline-block;
    margin-right: 0.5em;
    object-fit: contain;
    vertical-align: middle;
    transition: filter 300ms;
}
.header-contacts .icon-mail-alt {
    content:'';
    background:url("../img/icon-mail-alt.png") no-repeat center / contain;
    width: 0.8em;
    height: 1em;
    display: inline-block;
    margin-right: 0.5em;
    object-fit: contain;
    vertical-align: middle;
    transition: filter 300ms;
}
.header-contacts .icon-telegram {
    content:'';
    background:url("../img/icon-telegram.png") no-repeat center / contain;
    width: 0.8em;
    height: 1em;
    display: inline-block;
    margin-right: 0.5em;
    filter: brightness(0) saturate(100%) invert(39%) sepia(10%) saturate(2200%) hue-rotate(50deg) brightness(98%) contrast(87%);
    object-fit: contain;
    vertical-align: middle;
    transition: filter 300ms;
}
.header-contacts .icon-viber {
    content:'';
    background:url("../img/icon-viber.png") no-repeat center / contain;
    width: 0.8em;
    height: 1em;
    display: inline-block;
    margin-right: 0.5em;
    filter: brightness(0) saturate(100%) invert(39%) sepia(10%) saturate(2200%) hue-rotate(50deg) brightness(98%) contrast(87%);
    object-fit: contain;
    vertical-align: middle;
    transition: filter 300ms;
}
.header-contacts .icon-whatsapp {
    content:'';
    background:url("../img/icon-whatsapp.png") no-repeat center / contain;
    width: 0.8em;
    height: 1em;
    display: inline-block;
    margin-right: 0.5em;
    filter: brightness(0) saturate(100%) invert(39%) sepia(10%) saturate(2200%) hue-rotate(50deg) brightness(98%) contrast(87%);
    object-fit: contain;
    vertical-align: middle;
    transition: filter 300ms;
}
.header-contacts .phone-area__button:after {
    content:'';
    background:url("../img/angle.png") no-repeat center / contain;
    width: 0.5em;
    height: 0.7em;
    display: inline-block;
    margin-left: 0.5em;
    transform: rotate(90deg);
    filter: brightness(0);
    transition: filter 300ms;
}
.header-contacts:hover .phone-area__collapse,
.header-contacts.is-active .phone-area__collapse {
    max-height: 300px;
    background: #fff;
    -webkit-box-shadow: 0px 8px 10px -2px #00000040;
    box-shadow: 0px 8px 10px -3px #00000040;
}
.header-contacts .phone-area__collapse hr {
    margin: 5px auto;
    border: none;
    width: 100%;
    height: 1px;
    background: #ffffff73;
    transition: background 300ms;
}
.header-contacts:hover .phone-area__button,
.header-contacts.is-active .phone-area__button {
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px 2px #00000040;
    box-shadow: 0px 0px 8px 2px #00000040;
}
.header-contacts:hover .phone-area__button a,
.header-contacts.is-active .phone-area__button a {
    color: #4e7330;
}
.header-contacts:hover .phone-area__collapse a,
.header-contacts:hover .phone-area__collapse span,
.header-contacts.is-active .phone-area__collapse a,
.header-contacts.is-active .phone-area__collapse span {
    color: #4e7330;
}
.header-contacts:hover .phone-area__button:before,
.header-contacts:hover .icon-phone-alt,
.header-contacts:hover .icon-mail-alt,
.header-contacts.is-active .phone-area__button:before,
.header-contacts.is-active .icon-phone-alt,
.header-contacts.is-active .icon-mail-alt {
    filter: brightness(0) saturate(100%) invert(39%) sepia(10%) saturate(2200%) hue-rotate(50deg) brightness(98%) contrast(87%);
}
.header-contacts:hover .phone-area__collapse hr,
.header-contacts.is-active .phone-area__collapse hr {
    background: #a9a9a973;
}
.header-contacts:hover .phone-area__button:after,
.header-contacts.is-active .phone-area__button:after {
    filter: brightness(0) saturate(100%) invert(39%) sepia(10%) saturate(2200%) hue-rotate(50deg) brightness(98%) contrast(87%);
}

.contact .mainframe {
    padding: 0 130px 56px 130px;
}
.page-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
}
.contacts-wrapper {
    display: grid;
    gap: 38px;
    grid-template-columns: 36% 1fr;
}
.contacts-block {
    border-radius: 18px 0 18px 0;
    background-color: #4e733014;
    margin-bottom: 20px;
    padding: 24px 30px;
}
.contacts-block:last-child {
    margin-bottom: 0;
}
.contacts-block__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
.contacts-block__item {
    display: flex;
    gap: 12px;
}
.contacts-block__item .icon {
    fill: #AEB6BE;
    flex-shrink: 0;
}
.contacts-block__timetable {
    font-weight: 600;
}
.contacts-block__timetable-item {
    display: flex;
    flex-wrap: wrap;
}
.contacts-block__timetable-val {
    flex-grow: 1;
    font-weight: 400;
    padding-left: 10px;
}
.contacts-block .contacts-block__item.a {
    align-items: center;
    display: flex;
    margin-bottom: 17px;
    max-width: fit-content;
    font-weight: 600;
    transition: color .3s ease;
}
.contacts-block .contacts-block__item a {
    text-decoration: unset;
    color:#000;
}
.contacts-block .contacts-block__item.a .contacts-block__descr {
    position: relative;
}
.contacts-block .contacts-block__item.a .contacts-block__descr:before {
    border-bottom: 1px dashed #AEB6BE;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    transition: border-color .3s ease;
    width: 100%;
}
.phones-list__item {
    display: flex;
    align-items: center;
    font-weight: 600;
    max-width: fit-content;
}
.phones-list__item:not(:last-child) {
    margin-bottom: 15px;
}
.phones-list__item .btn {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    transition: background .3s ease, color .3s ease, border .3s ease;
    font-weight: 600;
}
.phones-list__item .btn--text-icon {
    align-items: center;
    background-color: transparent;
    gap: 12px;
    height: auto;
    justify-content: flex-start;
    text-decoration: unset;
}
.phones-list__item .btn--text-icon span:before {
    border-bottom: 1px dashed #969696;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    transition: border-color .3s
    ease;
    width: 100%;
}
.phones-list__item .btn--text-icon svg {
    fill: #AEB6BE;
    transition: fill .3s ease;
    max-width: 100%;
}
.phones-list__item .btn span {
    align-items: center;
    display: flex;
    justify-content: center;
    transition: all .3s
    ease;
}
.phones-list__item .btn--text-icon span {
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #2B2A29;
    height: auto;
    line-height: 1.5;
    padding: 0;
    position: relative;
}
.contacts-right {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.contacts-right .map {
    height: 100%;
    min-height: 272px;
    width: 100%;
    border-radius: 18px 0 18px 0;
    overflow: hidden;
}
.contacts-right .map iframe {
    width: 100%;
    height: 100%;
}
.contact .home .reviews-and-from {
    padding-top: 0px;
}
.contact .home .reviews-and-from .form-start {
    padding: 30px 0 0 130px;
}

.contact .social {
    display: flex;
    gap: 10px;
    align-items: center;
}
.contact .social .icon {
    width: 1.2em;
    height: 1.2em;
    display: block;
    object-fit: contain;
}
.social-group__viber, .social-group__telegram, .social-group__whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-viber-color {
    background:url("../img/icon-viber-color.png") no-repeat center / contain;
}
.icon-telegram-color {
    background:url("../img/icon-telegram-color.png") no-repeat center / contain;
}
.icon-whatsapp-color {
    background:url("../img/icon-whatsapp-color.png") no-repeat center / contain;
}

@media (max-width: 1600px) {
    .service-page .header-block,
    .service-page .main-block,
    .service-page .body-block,
    .service-page .footer-block,
    .contact .mainframe {
        padding: 60px;
    }
    .service-page .footer-block {
        padding-bottom: 0;
    }
    .contact .home .reviews-and-from .form-start {
        padding: 30px 0 0 60px;
    }
}
@media (max-width: 1024px) {
    .service-page .main-block {
        flex-direction: column;
        align-items: center;
    }
    .service-page .main-block__content h1 {
        font-size: 40px;
    }
    .service-page .main-block__content h2 {
        font-size: 20px;
    }
    .service-page .form-orders form>p:nth-child(2) {
        flex-direction: column;
    }
    .service-page .form-orders .wpcf7-form-control-wrap {
        width: 100%;
    }
    .service-page .body-block {
        flex-direction: column-reverse;
    }
    .service-page .body-block__image {
        max-width: 100%;
        height: 37vw;
    }
    .service-page .body-block__image-sticky {
        position: relative;
        top: 0;
        height: 100%;
    }
    .service-page .body-block__image-sticky img {
        object-fit: cover;
    }
    .service-page .body-block {
        padding-bottom: 0;
    }
    .page-template-service .footer-main {
        margin-top: 20px;
    }
    .service-page .main-block {
        padding: 0px 60px;
        background-image: unset !important;
    }
    .service-page .main-block__content {
        display: none;
    }
    .contacts-wrapper {
        display: flex;
        flex-direction: column;
    }
    .contacts-right {
        height: 400px;
    }
}
@media (max-width: 980px) {
    .contact .home .reviews-and-from .form-start {
        padding: 30px 60px 0;
    }
}
@media (max-width: 768px) {
    #root {
        position: relative;
    }
    .js-burger {
        display: flex;
        z-index: 1;
    }
    .header-page {
        z-index: 10;
    }
    .header-page .nav {
        justify-content: flex-start;
        flex-direction: row-reverse;
    }
    .header-contacts {
        font-size: 20px;
    }
    .header-page .nav .menu-menu-1-container>ul {
        flex-direction: column;
        font-size: 18px;
        align-items: end;
        text-align: right;
    }
    .header-page .nav .menu-menu-1-container {
        position: absolute;
        background: #fff;
        right: 0;
        top: 0;
        padding: 110px 20px 90px;
        width: 100%;
        box-shadow: 10px 0 10px 0 #000;
        transform: translateX(100%);
        transition: transform 300ms;
    }
    .header-page .nav .js-burger.is-active + .menu-menu-1-container {
        transform: translateX(0%);
    }
    .header-page .nav .menu-item.menu-item-has-children {
        text-align: right;
    }
    .header-page .nav .menu-item.menu-item-has-children>ul {
        position: relative;
        left: unset;
        right: 0;
        width: unset;
        opacity: 1;
        border: unset;
        box-shadow: unset;
        align-items: end;
        padding: 10px 0;
        text-align: right;
    }
    .header-page .nav .menu-item.menu-item-has-children>ul>li:after {
        content: '';
        width: 5px;
        height: 5px;
        background: #000;
        display: block;
        border-radius: 50%;
    }
    .header-page .nav .menu-item.menu-item-has-children>ul>li {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}
@media (max-width: 450px) {
    .service-page .main-block,
    .service-page .body-block,
    .service-page .footer-block,
    .contact .mainframe {
        padding: 60px 30px;
    }
    .service-page .header-block {
        padding: 0 30px;
    }
    .service-page .footer-block {
        padding-bottom: 0;
    }
    .header-page .nav .menu-menu-1-container {
        padding: 70px 20px 90px;
    }
    .contact .home .reviews-and-from .form-start {
        padding: 30px 30px 0;
    }
}