:root {
    --color-black-text: #282828;
    --color-black: #000;
    --color-white: #FFF;
    --color-black-light: #4d4d4d;
    --color-grey-dark: #dddddd;
    --color-grey-light: #EDEDED;
    --color-salat: #80b986;
    --color-salat-dark: #405C43;
}
* {
    outline: none;
}
html {
    -ms-overflow-style: scrollbar;
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--color-black-text);
}
h1 {
    margin: 0 0 25px;
    font-size: 36px;
    color: var(--color-salat-dark);
}
h2 {
    margin: 0 0 20px;
    font-size: 32px;
    color: var(--color-salat-dark);
}
.button {
    background-color: var(--color-salat-dark);
    color: var(--color-white);
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--color-salat-dark);
    border-radius: 10px;
    letter-spacing: 1px;
    opacity: 0.75;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}
.button:hover {
    opacity: 1;
}
.body-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}
.header__wrapper {
    max-width: 1340px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.header-logo {
    transition: box-shadow .3s ease-in-out;
}
.header-logo:hover {
    box-shadow: 0px 5px 10px 2px rgba(64, 92, 67, 0.2);
}
.header-menu-contacts {
    display: flex;
    gap: 50px;
    align-items: center;
}
.svg-header-logo,
.svg-header-logo-mobile {
    max-width: 275px;
    width: 100%;
    height: auto;
    display: block;
}
.svg-header-logo-mobile {
    max-width: 100px;
}
.a-header-logo-mobile {
    display: none;
}
.header-menu {
    
}
.header-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 160px;
}
.header-menu-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    white-space: nowrap;
}
.header-menu-list a,
.header-contacts a {
    color: var(--color-salat);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all .1s ease-in-out;
}
.header-menu-list a:hover,
.header-contacts a:hover {
    text-decoration: underline;
    color: var(--color-salat-dark);
}
.button-order {
    font-size: 12px;
    padding: 10px;
}
.button-order-footer {
    background-color: var(--color-white);
    color: var(--color-black);
    opacity: .85;
}
.close-button {
    display: flex;
    justify-content: right;
}
.close-x {
    background-color: transparent;
    font-size: 50px;
    cursor: pointer;
    border: none;
}
.dialog-order-form__wrapper {
    margin: 10px 40px 30px;
}
.dialog-order-form-header {
    text-align: center;
    font-size: clamp(1.625rem, 1.5179rem + 0.5357vw, 2rem);
    margin-bottom: 30px;
    color: var(--color-salat-dark);
}
.dialog-order {
    padding: 0;
    border: none;
}
.dialog-order::backdrop {
  background: rgba(0,0,0,0.5);
}


.header-mobile {
    display: none;
}
.burger-menu {
    position: relative;
    z-index: 3;
    margin-top: 2px;
}
.burger-menu span { 
    display: block;
    width: 36px;
    height: 2px;
    background-color: var(--color-black);
    margin: 0 auto 8px;
    transition: all .3s ease-in-out;
}


.main {
    border-top: 1px solid var(--color-grey-dark);
}
.section-intro {
    min-height: 800px;
    background-color: var(--color-salat);
    background-image: url(../images/intro.jpg);
    background-position: 50% 50%;
    background-size: cover;
    display: flex;
    justify-content: center;
}
.section-intro__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 620px;
}
.section-intro__wrapper h1 {
    font-family: "Nunito", sans-serif;
    text-align: center;
    font-size: clamp(2rem, 1.75rem + 1.25vw, 2.875rem);
    font-weight: 900;
}
.p-intro {
    color: var(--color-white);
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 60px;
}
.a-button-intro {
    width: fit-content;
    padding: 15px 80px;
    border-radius: 30px;
}
.section-services {
    min-height: 800px;
    background-image: url(../images/services.jpg);
    background-position: 50% 50%;
    background-size: cover;
}
.section-services__wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding-bottom: 40px;
}
.section-services-intro {
    padding: 90px 0 60px;
}
.section-services-intro h2 {
    font-family: "Roboto", sans-serif;
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
}
.p-services-intro {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    max-width: 810px;
    line-height: 1.5;
}
.section-services-list {
    display: flex;
    gap: 20px;
    max-width: 850px;
}
.section-services-service {
    width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-grey-dark);
    padding: 30px;
    border-radius: 30px;
}
.section-services-icon {
    margin-bottom: 30px;
}
.section-services-icon .icon {
    display: block;
    width: 70px;
    height: 70px;
    background-color: var(--color-salat);
    border-radius: 50%;
}
.section-services-header {
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--color-salat-dark);
}
.section-services-header a {
    text-decoration: none;
    color: var(--color-salat-dark);
}
.section-services-header a:hover {
    text-decoration: underline;
}
.section-services-description p {
    text-align: center;
    font-style: italic;
}
.section-ideas {
    min-height: 800px;
    background-color: var(--color-salat);
}
.section-ideas-wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding: 90px 0 60px;
}
.section-ideas-intro {
    text-align: center;
}
.section-ideas-intro h2 {
    font-family: "Roboto", sans-serif;
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
    color: var(--color-salat-dark);
}
.section-ideas__wrapper {
    margin: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 160px;
}
.section-ideas-idea__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.section-ideas-idea__wrapper:nth-child(odd) {
        flex-direction: row-reverse;
}
 .section-ideas-idea__wrap {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 80px;
    box-sizing: border-box;
    background-color: var(--color-grey-light);
    border-radius: 30px;
}
.section-ideas-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.section-ideas-icon .icon {
    display: block;
    width: 70px;
    height: 70px;
    background-color: var(--color-salat);
    border-radius: 50%;
}
.section-ideas-header {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--color-salat-dark);
    text-align: center;
}
.section-ideas-description ul {
    margin: 0 0 0 12px;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-black-text);
    font-style: italic;
}
.section-ideas-description ul li {
    list-style-type: "\2713";
    padding: 5px 15px;

}
.section-ideas-description ul li::marker {
    color: var(--color-salat-dark);
}

.section-ideas-idea__pic {
    width: 50%;
}
.section-ideas-idea__pic .pic {
    height: 100%;
    max-width: 800px;
    width: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 400 / 267;
    object-position: top center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
}
.section-quote {
    background-color: var(--color-grey-light);
    display: flex;
    justify-content: center;
}
.section-quote__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
    text-align: center;
    margin: 100px 0;
}
.section-quote__quote .quote {
    font-size: clamp(2rem, 1.8571rem + 0.7143vw, 2.5rem);
}
.section-quote__author .author {
    font-size: 18px;
}
.section-quote__author .spec {
    display: block;
    opacity: 0.7;
}
.section-contacts {
    background-color: var(--color-salat);
    padding: 90px 0 60px;
}
.section-contacts__wrapper h2 {
    font-family: "Roboto", sans-serif;
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
    text-align: center;
    color: var(--color-salat-dark);
    margin-bottom: 40px;
}
.form-container {
    max-width: 520px;
    margin: 0 auto;
    background-color: var(--color-grey-dark);
    padding: 50px 50px 0 50px;
    border-radius: 30px;
}
.form-container-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contacts-form-map .form-container {
    max-width: unset;
}
input, textarea, select, select option {
    font-family: "Open Sans", sans-serif;
    width: 100%;
    /*background-color: var(--color-grey-light);*/
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--color-grey-dark);
    font-size: 16px;
    box-sizing: border-box;
}
input::placeholder,
textarea::placeholder {
    color: var(--color-black-text);
    opacity: .8;
}
select option{
    color: var(--color-black-text);
    opacity: .8;
}
.contact-form input {
    height: 45px;
}
.contact-form textarea {
    height: 120px;
    resize: vertical;
}
.checkbox-container {
    display: flex;
    gap: 10px;
    align-items: center;
}
.contact-form .note {
    font-size: 0.8rem;
    color: var(--color-black-text);
    opacity: 0.8;
    line-height: 16px;
}
.contact-form .note a {
    color: var(--color-black-text);
}
.contact-form .note a:hover {
    text-decoration: none;
}
.checkbox-request {
    width: 35px;
}
.checkbox-container input {
    width: 35px;
}
.contacts-data a {
    text-decoration: none;
    color: var(--color-black);
}


.footer {
    background-color: var(--color-black);
}
.footer__wrapper {
    max-width: 1340px;
    margin: 0 auto;
    color: var(--color-white);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.footer__wrapper a {
    color: var(--color-white);
    text-decoration: none;
    width: max-content;
    transition: opacity .1s ease-in-out;
}
.footer__wrapper a:hover {
    text-decoration: underline;
    opacity: .8;
}
.footer-content__wrapper {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}
.footer-logo__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-menu-list {
    max-width: 500px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
    max-height: 140px;
    column-gap: 85px;
}
.footer-logo {
    transition: box-shadow .3s ease-in-out;
}
.footer-logo:hover {
    box-shadow: 0px 0px 25px 15px rgba(255, 255, 255, 0.2);
}
.img-footer-logo {
    width: 200px;
    display: block;
}
.footer-copyright {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.breadcrumbs {
    max-width: 1340px;
    margin: 20px auto;
}
.breadcrumbs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    row-gap: 5px;
    flex-wrap: wrap;
}
.breadcrumbs-list li a {
    text-decoration: none;
    color: var(--color-black-text);
    font-weight: 500;
}
.breadcrumbs-list li a:after {
    content: '>';
    margin-left: 10px;
}
.breadcrumbs-list li a span:hover {
    text-decoration: underline;
}
.section-content {
    background-color: var(--color-grey-light);
    min-height: 700px;
}
.section-content__wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding: 60px 0;
    font-size: 20px;
    line-height: 36px;
}
.section-content__wrapper h2 {

}
.section-content-header {
    margin-bottom: 60px;
}
.section-content-header h1 {
    font-size: clamp(2rem, 1.7143rem + 1.4286vw, 3rem);
    line-height: 60px;
}
.section-content-header h1 span,
.section-content__wrapper h2 span {
    font-weight: 400;
}
.content-description,
.category-description {
    background-color: var(--color-grey-dark);
    padding: 50px;
    border-radius: 30px;
}
.content-services-list {
    display: flex;
    gap: 40px;
    row-gap: 120px;
    flex-wrap: wrap;
    margin: 120px 0 90px;
}
.content-service {
    width: calc(100% / 3 - 128px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    background-color: var(--color-grey-dark);
    border-radius: 30px;
    padding: 50px;
}
.content-service-icon .icon {
    display: block;
    width: 70px;
    height: 70px;
    background-color: var(--color-salat);
    border-radius: 50%;
}
.content-service-header {
    font-size: clamp(1.5rem, 1.3929rem + 0.5357vw, 1.875rem);
    text-align: center;
    min-height: 75px;
}
.content-service-header a {
    text-decoration: none;
    color: var(--color-salat-dark);
    transition: all .3s ease-in-out;
}
.content-service-header a:hover {
    text-decoration: underline;
}
.content-service-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    text-align: center;
}
.content-service-description p {
    font-style: italic;
    margin-top: 0;
}
.content-description p {
    margin: 30px 0;
}
.content-description ul li::marker,
.content-description ol li::marker {
    color: var(--color-salat-dark);
}
.section-content__wrapper-sp {
    max-width: 1000px;
}
.img-content-description-sp {
    max-width: 1000px;
    width: 100%;
    display: block;
    margin-bottom: 60px;
    border-radius: 30px;
}
.category-description ul li::marker {
    color: var(--color-salat);
}
.content-services-list.price-page {
    margin: 55px 0 90px;
}
.content-service-header__price-page span {
    display: block;
    font-size: 20px;
}
.price-page-description {
    flex-wrap: nowrap;
    align-items: center;
}
.price-page-description .content-service {
    width: 70%;
}
.content-service__price-page-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.price-page-comment {
    display: block;
    font-size: 16px;
    font-style: italic;
}





.cookie-banner {
    display: none; 
    position: fixed; 
    bottom: 0; 
    right: 0; 
    width: 100%; 
    background-color: #848e9a; 
    color: #fff; 
    padding: 20px; 
    z-index: 9999; 
    font-family: 'Source Sans Pro', sans-serif; max-width: 1050px;
}
.cookie-banner__content {
    display: flex; 
    max-width: 950px; 
    margin: 0 auto;
}
.cookie-banner__content p {
    margin: 0 0 10px;
    font-size: 14px;
}
.cookie-banner__content p a {
    color: #fff;
}
.cookie-banner__btns {
    display: flex;
}
.cookie-banner__btn {
    height: 40px;
    max-width: 120px; 
    margin-left: 10px;
}




.bold {
    font-weight: 600;
}
.contacts-content-description {
    display: flex;
    flex-direction: column;
    gap: 60px;
    background-color: var(--color-grey-light);
    padding: 0;
}
.contacts-data {
    line-height: 16px;
    background-color: var(--color-grey-dark);
    padding: 10px 50px;
    border-radius: 30px;
}
.contacts-form-map {
    display: flex;
    gap: 50px;
}
.contacts-form-wrapper {
    width: 50%;
}
.contacts-form-wrapper h2 {
    font-size: 24px;
    text-align: center;
}
.contacts-form input,
.contacts-form textarea {
    background-color: var(--color-white);
}
.contacts-map {
    max-width: 800px;
    width: 50%;
    margin-top: 55px;
}
.contact-form-button {
    background-color: var(--color-salat-dark) !important;
    height: auto !important;
    font-weight: 600;
}
.wpcf7-list-item {
    margin: 0;
}


@media (max-width: 1400px) {
    .header__wrapper {
        margin: 20px;
        position: relative;
    }
    .section-services__wrapper, .section-ideas-wrapper, .section-contacts__wrapper, .footer__wrapper {
        margin: 0 20px;
    }
    .section-quote__wrapper {
        margin: 100px 20px;
    }
    .section-content {
        padding: 0 20px;
    }
    .breadcrumbs {
        margin: 20px;
    }
}

@media (max-width: 1200px) {
    .header-menu-contacts {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: end;
    }
    .header-menu {
        order: 1;
    }
    .header__wrapper {
        align-items: start;
    }
}

@media (max-width: 1024px) {
    .header__wrapper {
        align-items: center;
    }
    .header-menu {

    }
    .header-mobile {
        display: block;
        margin-left: 50px;
    }
    .header-menu-list {
        position: fixed;
        transform: translateX(120%);
        flex-direction: column;
        background-color: var(--color-white);
        padding: 20px;
        top: 95px;
        right: 0;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
        z-index: 10;
        transition: transform .5s ease-in-out;
        width: 50%;
    }

    .header-menu-list.active {
        transform: translateX(0);
    }
    .burger-menu.active {
        padding-top: 1px;
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }
    .header-menu-contacts {
        flex-wrap: nowrap;
    }
    .content-service {
        width: calc(100% / 2 - 120px);
    }
    .content-services-list {
        row-gap: 40px;
    }
}


@media (max-width: 750px) {
    .header-menu-contacts {
        gap: 0;
    }
    .section-services-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .section-intro__wrapper {
        justify-content: end;
        margin-bottom: 40px;
        padding: 0 20px 20px;
        max-width: 440px;
    }
    .section-ideas__wrapper {
        margin: 0;
        gap: 60px;
    }
    .section-ideas-idea__wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
    .section-ideas-idea__wrapper:nth-child(odd) {
        flex-direction: column-reverse;
    }
    .section-ideas-idea__wrap, .section-ideas-idea__pic {
        width: 100%;
        margin-bottom: 45px;
    }
    .section-ideas-idea__wrap {
        
    }
    .section-ideas-idea__wrapper {
        gap: 0;
    }
    .footer-menu {
        order: 1;
    }
    .footer-content__wrapper {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 10px;
    }
    .section-content-header {
        text-align: center;
    }
    .content-service {
        width: 100%;
    }
    .contacts-form-map {
        flex-direction: column-reverse;
    }
    .contacts-form-wrapper,
    .contacts-map {
        width: 100%;
    }
    .contacts-map {
        height: 500px;
    }
    .content-services-list {
        margin-top: 60px;
    }
    .contacts-data {
        line-height: 36px;
    }
    .contacts-data p {
        margin-bottom: 10px;
    }
    .price-page-description {
        flex-direction: column;
        gap: 30px;
    }
    .content-service__price-page-description {
        margin: 0 55px;
        width: auto;
    }
    .price-page-description .content-service {
        padding: 50px 0;
        width: 100%;
    }   
}


@media (max-width: 440px) {
    .svg-header-logo {
        max-width: 168px;
    }
    .a-header-logo {
        display: none;
    }
    .a-header-logo-mobile {
        display: block;
    }
    .header-contacts {
        gap: 15px;
    }
    .section-services__wrapper, .section-ideas-wrapper, .section-contacts__wrapper, .footer__wrapper {
        margin: 0 12px;
    }
    .header__wrapper, .breadcrumbs {
        margin: 20px 12px;
    }
    .section-quote__wrapper {
        margin: 60px 12px;
    }
    .section-content {
        padding: 0 12px;
    }
    .header__wrapper {
        gap: 16px;
    }
    .header-mobile {
        margin-left: 20px;
    }
    .header-menu-list {
        width: 85%;
    }
    .section-services-intro {
        padding-top: 60px;
        text-align: center;
    }
    .section-ideas-wrapper, .section-contacts {
        padding-top: 60px;
    }
    .footer-menu-list {
        column-gap: 40px;
    }
    .footer-contacts {
        margin-bottom: 20px;
        align-items: center;
    }
    .footer-logo__wrapper {
        align-items: center;
    }
    .button-order-footer {
        width: 200px;
    }
    .footer-menu {
        display: flex;
        justify-content: space-around;
    }
    .checkbox-request {
        width: 60px;
    }
    input, textarea, select, select option {
        font-size: 14px;
    }
    .checkbox-container input {
        width: 75px;
    }
    .section-services-header {
        margin-bottom: 20px;
    }
    .content-service {
        padding: 40px 20px;
    }
    .section-ideas-idea__wrap {
        padding: 30px;
    }
    .dialog-order-form__wrapper {
        margin: 0 15px 15px;
    }
    .contact-form .note {
        font-size: 0.7rem;
    }
    .contact-form-button {
        font-size: 14px;
    }
    .contacts-map {
        height: 400px;
    }
    .section-content-header h1 {
        line-height: 42px;
    }
    .content-description p {
        word-wrap: break-word;
        margin-top: 10px;
    }
    .section-services-service {
        width: 100%;
    }
    .content-description, .category-description {
        padding: 20px 16px;
    }
    .contacts-content-description {
        gap: 0;
        padding: 0;
    }
    .section-content__wrapper {
        padding: 40px 0;
    }
    .content-service__price-page-description {
        margin: 0 18px;
    }
    .content-service__price-page-description p {
        margin-top: 0;
    }
    .form-container {
        padding: 30px;
    }
    input::placeholder,
    textarea::placeholder {
        color: var(--color-black-text);
        opacity: 1;
    }
    .dialog-order {
        max-width: 100vw;
        margin: 10px 1%;
    }
}




.hidden {
    display: none;
}