*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Libre Baskerville", serif;

}

a {
    text-decoration: none;
    color: #000000;
}

li {
    list-style: none;
}

.container {
    padding: 0 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-inner {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.header-logo {}


.header-logo-img {}

.header-arnament {
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav-item {}

.header-nav-list {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.header-nav-link:hover {
    color: #078642;
}

.header-contacts {
    align-content: center;
}

.header-contacts-phone-inner {
    display: flex;
}


.header-contacts-phone-inner img,
.header-contacts-message-inner img {
    margin-right: 5px;
}

.header-contacts-phone-inner {
    display: flex;
}

.header-contacts-message-inner {
    display: flex;
}


/* WELCOME */

.welcome {
    height: 60vh;
}

.welcome-back {
    position: absolute;
    width: 100%;
}

.welcome-back-bg {
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(41, 70, 65, 0.6);
    position: absolute;
}

.welcome-back-img {
    width: 100%;
    object-fit: cover;
    height: 60vh;
}

.welcom-text {
    color: white;
    top: 120px;
    position: relative;
}

.welcome-title {
    font-size: 50px;
}

.welcome-description {
    margin-top: 40px;
    max-width: 600px;
}

.welcome-watsapp {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.welcome-watsapp-inner {

    border-radius: 15px;
    font-size: 17px;
    position: relative;
    display: inline-block;
}


.welcome-watsapp-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #4CAF50;
    /* Цвет WhatsApp */
    border-radius: 6666px;
    animation: whatsapp-pulse 3s linear infinite;
    opacity: 0;

    /* Сначала невидимый */
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
        /* Делаем видимым */
    }


    100% {
        transform: scale(2);
        /* Увеличиваем */
        opacity: 0;
        /* Снова делаем невидимым */
    }


}


.welcome-watsapp-link {
    display: flex;
}

.welcome-watsapp-img {}

.welcome-watsapp-title {
    margin: 0 10px;
    color: #25D366;
}


/* CATALOG */


.catalog {}

.container-catalog {
    max-width: 850px;
    margin: 0 auto;

}

.catalog-inner {
    display: flex;
    column-gap: 30px;

    justify-content: center;


}

.catalog-title {
    text-align: center;
    font-size: 50px;
    margin: 50px 0;
}

.catalog-dropdown-vector {
    margin-left: 5px;
}


.catalog-dropdown-link {}


.catalog-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 150px;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: none;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1;
    background-color: #f0f0f0;
}

.catalog-dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.catalog-dropdown-content a {

    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;



}

.catalog-dropdown-content a:hover {
    background-color: #029738;
    border-radius: 5px;
    color: #f0f0f0;
}

.catalog-dropdown {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;


}

.catalog-dropdown-button {

    color: rgb(0, 0, 0);
    font-size: 16px;
    background-color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    border-radius: 5px;
}



.catalog-choose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    column-gap: 90px;
    row-gap: 40px;
}


.catalog-choose-last {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 40px;
}



.catalog-choose-block {
    width: 380px;

}

.catalog-choose-link {}

.catalog-choose-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.catalog-choose-tilte {
    margin-top: -5px;
    text-align: center;
    background-color: #078642;
    padding: 25px;
    color: white;
    font-size: 22px;

}

.catalog-choose-description {
    margin-top: -5px;
    text-align: center;
    background-color: #078642;
    padding-top: 5px;
    padding-bottom: 15px;
    line-height: 25px;
    color: white;
    font-size: 16px;

}

/* ABOUT */

.about {}

.container {}

.about-inner {
    margin-top: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-img img {
    width: 100%;
}

.about-block-right {

    margin-left: 22px;
    background-color: #E2E249;
}

.about-title {
    margin: 40px 0 30px 35px;
    font-size: 35px;
}

.about-description {
    margin-left: 35px;
}


/* ADDRESS */

.address {}

.address-title {
    text-align: center;
    font-size: 50px;
    margin: 150px 0 60px 0;
}

.address-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.addres-img {
    margin-right: 15px;
}

.address-subtitle {
    font-size: 32px;
    color: #7a7a7a;
}

/* footer */

.footer-inner {
    margin-top: 150px;
    display: flex;
    justify-content: space-between;
}


.footer-logo {

    font-weight: 600;
    font-size: 25px;
    color: #078642;
}

.footer-subtitle {
    color: #929292;
    margin-top: 25px;
    font-size: 11px;
    width: 235px;
}

.footer-title {
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-nav-inner {
    display: grid;
    row-gap: 6px;
}

.footer-nav-link {
    color: #929292
}

.footer-soc-inner {
    display: grid;
    row-gap: 6px;
}

.footer-soc-link {
    color: #929292
}

.footer-nav-link:hover,
.footer-soc-link:hover,
.footer-contacts-link:hover {
    color: #A78735;
    transition: all 0.3s ease;
}

.footer-address {
    color: #929292
}

.footer-contacts-2 {
    margin-top: 40px;
}

.footer-contacts-inner {
    display: grid;
    row-gap: 6px;
}

.footer-contacts-link {
    color: #929292;
}

.footer-contacts-link span {
    color: #078642;
}

.footer-c {
    text-align: center;
    margin: 60px 0 10px 0;
    color: #929292;
}

/* menu-burger */

.burger-logo {
    margin: 150px 0 0 20px;
    color: #078642;
    font-size: 33px;
}

.burger-menu {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
}

.burger-menu .bar {
    height: 4px;
    width: 100%;
    background-color: #078642;
    border-radius: 2px;
}


.header-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.none {
    display: none;
}


.burger-bar {
    margin: 50px 20px 0 20px;
    color: #A78735;
}

.burger-bar-link {
    margin-top: 50px;
}

.header-contacts .none {
    display: none;
}


/* ADAPTIV */

@media (max-width: 1200px) {

    .container {
        max-width: 992px;
    }
}

@media (max-width: 992px) {

    .container {
        max-width: 768px;
    }

    .none {
        display: block;
    }

    .welcome-title {
        font-size: 45px;
    }

    .welcome-watsapp {
        margin-top: 30px;
    }

    .welcome-description {
        margin-top: 30px;
        font-size: 14px;
    }

    .container-catalog {
        max-width: 650px;
    }

    .catalog-title {
        font-size: 40px;
    }

    .catalog-choose-block {
        width: 300px;
    }

    .catalog-choose-img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }

    .catalog-dropdown-button {
        font-size: 14px;
    }

    .catalog-choose {
        column-gap: 40px;
        row-gap: 40px;
    }

    .burger-menu {
        display: flex;
    }



    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 999;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100%;
        background-color: #141414;
        transition: left 0.8s ease;
        z-index: 1000;
    }

    .header-nav.show-menu {
        left: 0;
        top: 0;
        background-color: #ffffff;
    }



    .header-inner {
        align-items: center;
    }

    .header-nav {
        display: block;
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 30px;
        cursor: pointer;
        color: #141414;
    }

    .header-nav-list {
        padding-top: 35px;
        padding-left: 20px;
        display: grid;
        row-gap: 13px;
    }

    .header-contacts-phone-inner {
        margin-top: 20px;
    }



    .header-nav-inner {
        margin-bottom: 20px;
    }

    .header-nav-link {
        text-decoration: none;
        font-size: 20px;
        color: #4e4d4d;

    }

    .header-contacts {
        display: none;
    }

    .about-title {
        font-size: 30px;
    }


    .about-description {
        font-size: 13px;
        margin: 0px 35px;

    }

    .address-title {
        font-size: 40px;
    }

    .address-subtitle {
        font-size: 23px;
    }

    .footer-soc-link,
    .footer-address,
    .footer-contacts-link,
    .footer-nav-link {
        font-size: 13px;


    }

    .footer-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .catalog-choose {
        grid-template-columns: 1fr;
        column-gap: 40px;
        row-gap: 40px;
    }

    .container {
        max-width: 480px;
    }

    .container-catalog {
        max-width: 480px;
    }

    .catalog-title {
        margin: 30px 0;
    }

    .catalog-title {
        font-size: 35px;
    }

    .catalog-dropdown-button {
        font-size: 13px;
    }

    .catalog-inner {
        column-gap: 10px;
    }

    .about-description {
        font-size: 12px;
        margin: 0px 35px;
        padding-bottom: 50px;
    }

    .about-block-right {
        margin-left: 0;
    }

    .about-inner {
        margin-top: 150px;
        display: block;
    }

    .about-title {
        margin: 0 0 0 35px;
        padding: 25px 0;
        font-size: 27px;
    }

    .address-title {
        font-size: 33px;
        margin: 90px 0 40px 0;
    }

    .addres-img {
        width: 20px;
    }

    .address-subtitle {
        font-size: 15px;
    }


    .footer-inner {
        margin-top: 150px;
        display: block;
        text-align: center;
    }

    .footer-title {
        margin-top: 30px;
    }

    .footer-subtitle {
        color: #929292;
        margin: 25px auto 30px;
        font-size: 11px;
        width: 235px;
    }

    .footer-c {

        font-size: 12px;

    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }

    .off {
        max-width: 100%;
    }

    .container-catalog {
        max-width: 320px;
    }

    .header-arnament img {
        max-width: 80%;
    }

    .welcome-title {
        font-size: 40px;
    }

    .welcome-description {
        font-size: 12px;
    }


    .catalog-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .catalog-title {
        font-size: 30px;
    }

    .catalog-choose-block {
        width: 260px;
    }

    .catalog-choose-img {
        height: 350px;
    }

    .catalog-choose-tilte {
        padding: 19px;
        font-size: 16px;
    }

    .catalog-choose-description {
        font-size: 14px;

    }


    .about-inner {
        margin-top: 100px;
    }

    .about-title {
        font-size: 23px;
    }

    .about-description {
        font-size: 11px;
    }

    .address-title {
        font-size: 27px;
    }

    .addres-img {
        margin-right: 0;
    }

    .address-text {
        display: block;
        text-align: center;
    }

    .address-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .container {
        max-width: 280px;
    }

    .container-catalog {
        max-width: 280px;
    }

    .catalog-dropdown-content {
        width: 130px;
    }
}