@import "./reset.css";

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




body {
    background-color:#F5F5F5;
    margin: 0;
    padding: 0;
    font-family: Montserrat;
}

.none {
    display: none !important;
}

.container {
    max-width: 1568px;
    overflow: hidden !important;
    margin: 0 auto;
}






.burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: 20px;
    margin-top: 10px;
}

.burger span {
    width: 30px;
    height: 3px;
    background: white;
    transition: transform 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header__logo {
    display: none;
    height: 40px;
    width: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.overlay.active {
    transform: translateX(0);
}

.overlay__menu {
    list-style: none;
    text-align: center;
}

.overlay__menu li {
    margin: 20px 0;
}

.overlay__menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}






/*Header*/

.header {
    background-color: #092600;
    height: 100px;
}

.header__menu {
    font-weight: 600;
    font-size: 20px;
    line-height: 24.38px;
    display: flex;
    justify-content: space-between;
    margin-left: 512px;
}

.nav__list {
    display: flex;
    margin-top: 33px;
    gap: 18px;
}

.nav__button{
    display: inline-block;
    width: 180px;
    height: 34px;
    text-align: center;
    text-decoration: none;
    padding: 5px 0;
    color: #ffff;
    border-radius: 20px;
    transition: background-color 0.5s, color 0.5s;
}

.nav__button.active {
    background-color: #2D8415;
    color: white;
}

.nav__button:hover {
    background-color: #2D8415;
    color: white;
}

.header__video {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.video__media {
    width: 100%;             
    object-fit: cover;
    height: 800px;
    top: 0;
    left: 0;
}

.container__item {
    position: absolute;
    top: 12%;
    left: 18%;
    transform: translate(-50%, -50%);
}











/*About us*/

.about__section {
    height: 638px;
}

.about__title {
    padding: 60px 0 40px 0;
    text-align: center;
    color: #092600;
    font-size: 40px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: .04em;
}

.about__text {
    font-size: 32px;
    font-weight: 600;
    line-height: 54.4px;
}











/*Our products*/

.section__products {
    height: 620px;
}

.products__title {
    padding: 120px 0 60px 0;
    text-align: center;
    color: #092600;
    font-size: 40px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: .04em;
}

.products__slider {
    position: relative;
    width: 100%;
    max-width: 1425px;
    margin: 0 auto;
}

.owl-carousel .slider__item {
    display: flex;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.slider__content {
    width: 320px;
    height: 360px;
    border-color: rgba(52, 134, 136, 0.3);
    border-radius: 1px;
    background: linear-gradient(#FDFBFB, #092600);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    padding: 10px;
}

.slider__item {
    margin: 5px;
    padding: 10px;
}

.slider__item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.slider__item p {
    text-align: center;
    margin-top: 4px;
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: .04em;
    color: #ffff;
}

.slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider__btn--prev {
    left: -60px;
}

.slider__btn--next {
    right: -60px;
}










/*principles*/

.section__principles {
    height: 770px;
    overflow: hidden !important;
}

.principles__title {
    padding: 120px 0 60px 0;
    text-align: center;
    color: #092600;
    font-size: 40px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: .04em;
}

.principles__container {
    max-width: 1568px;
    margin: 0 auto;
    display: flex;
    gap: 55px;
}

.blocks-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 60px;
    max-width: 1030px;
}

.principles__text {
    background: linear-gradient(180deg, #E7F0FD 0%, #FFFFFF 100%);
    width: 468px;
    height: 184px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #092600;
    overflow: hidden;
}

.p__principles {
    color: #092600;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: .04em; 
}

.p__text_1 {
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1),
     0px 22px 22px 0px rgba(0, 0, 0, 0.09),
     0px 49px 30px 0px rgba(0, 0, 0, 0.05),
     0px 88px 35px 0px rgba(0, 0, 0, 0.01),
     0px 137px 38px 0px rgba(0, 0, 0, 0);
}

.p__text_2 {
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1),
    0px 22px 22px 0px rgba(0, 0, 0, 0.09),
    0px 49px 30px 0px rgba(0, 0, 0, 0.05),
    0px 88px 35px 0px rgba(0, 0, 0, 0.01),
    0px 137px 38px 0px rgba(0, 0, 0, 0);
}

.p__text_3 {
    box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.1),
    0px 24px 24px 0px rgba(0, 0, 0, 0.09),
    0px 54px 32px 0px rgba(0, 0, 0, 0.05),
    0px 96px 39px 0px rgba(0, 0, 0, 0.01),
    0px 150px 42px 0px rgba(0, 0, 0, 0);
}

.p__text_4 {
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1),
    0px 22px 22px 0px rgba(0, 0, 0, 0.09),
    0px 50px 30px 0px rgba(0, 0, 0, 0.05),
    0px 89px 36px 0px rgba(0, 0, 0, 0.01),
    0px 139px 39px 0px rgba(0, 0, 0, 0);
}










/*Benefits*/

.section__benefits {
    overflow: hidden !important;
}

.benefits__title {
    padding: 60px 0 40px 0;
    text-align: center;
    color: #092600;
    font-size: 40px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: .04em;
}

.benefits__container {
    max-width: 1575px;
    margin: 0 auto;
}

.container__up {
    max-width: 1365px;
    margin: 0 auto;
}

.benefits__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 400px;
    margin: auto;
}

.benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 480px;
}

.benefits__text span {
    color: #092600;
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: .04em; 
}

.benefits__text {
    color: #092600;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: .04em; 
}

.benefits__image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.benefits__container__image {
    margin-top: 40px;
}













/*Standards*/

.section__standards {
    overflow: hidden !important;
}

.standards__title {
    padding: 120px 0 60px 0;
    text-align: center;
    color: #092600;
    font-size: 40px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: .04em;
}

.standards__container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.standards__text {
    font-weight: 500;
    font-style: italic;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: .04em;
}










/*Choose*/



.choose__title {
    padding: 120px 0 60px 0;
    text-align: center;
    color: #092600;
    font-size: 40px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: .04em; 
}

.container__choose {
    max-width: 1570px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.choose__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 697px;
    max-height: 395px;
}

.choose__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.choose__image {
    width: 50px;
    height: 50px;
}

.choose__text {
    color: #092600;
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: .04em;
}

.choose__image__container {
    width: 665px;
    height: 480px;
    object-fit: cover;
}













/*Services*/

.services__title {
    padding: 120px 0 60px 0;
    text-align: center;
    color: #092600;
    font-size: 40px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: .04em;
}

.container__services {
    max-width: 1570px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 145px;
}

.services__content {
    display: flex;
    flex-direction: column;
    max-width: 825px;
    max-height: 425px;
    gap: 50px;
}

.services__text span {
    color: #092600;
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: .04em;
}

.services__text {
    color: #092600;
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: .04em;
}












/*Footer*/

.footer__section {
    background-color: #092600;
    height: 527px;
    overflow: hidden !important;
}

.footer__container {
    max-width: 1568px;
    margin: 0 auto;
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__info {
    max-width: 620px;
    max-height: 527px;
}

.footer__nav {
    min-width: 220px;
}

.footer__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__right {
    display: flex;
    align-items: flex-end;
    gap: 80px;
}

.footer__nav__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: .04em;
    margin-bottom: 16px;
    color: #ffff;
}

.footer__nav__list {
    max-width: 220px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer__nav__item {
    margin-bottom: 8px;
    font-weight: 400;
    font-style: italic;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: .04em;
}

.footer__nav__link {
    color: #fff;
}

.footer__nav__link:hover {
    color: #7b54e4;
}

.footer__nav__list__under {
    margin-top: 65px;
}

.footer-social-wrap {
    min-width: 550px;
}

.footer__media__title {
    text-align: right;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: .04em;
    color: #ffff;
}

.footer__media__menu {
    display: flex;
    gap: 18px;
    margin-left: 300px;
}


















/*Media*/

@media (max-width: 1360px) {


    /*Header*/

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .header__menu {
        margin-left: 128px;
    }

    .header__item {
       width: 350px;
       height: 76px;
       object-fit: cover;
    }




    /*About us*/

    .about__section {
        height: auto;
    }



    /*Our products*/

    .products__slider {
        max-width: 1150px;
    }

    .slider__btn--prev {
        left: -25px;
    }
    
    .slider__btn--next {
        right: -25px;
    }



    /*principles*/

    .section__principles {
        height: 1330px;
    }

    .principles__container {
        max-width: 1200px;
        gap: 133px;
    }

    .blocks-container {
        display: grid;
        grid-template-columns: none;
    }

    .principles__container img {
        width: 518px;
        height: 466px;
        object-fit: cover;
        margin-top: 290px;
    }





    /*benefits*/

    .benefits__container {
        max-width: 1360px;
    }

    .container__up {
        max-width: 1200px;
    }

    .benefits__content {
        gap: 60px 195px;
    }

    .benefits__item {
        max-width: 470px;
    }
    
    .benefits__container__image {
       height: 389px;
       object-fit: cover;
    }



    /*standards*/

    .standards__container {
        gap: 22px;
        
    }

    .standards__text {
        font-weight: 500;
        font-style: italic;
        font-size: 28px;
        line-height: 42px;
        letter-spacing: .04em;
    }

    .standards__container img {
        width: 575px;
        object-fit: cover;
    }




    /*choose*/

    .container__choose {
        max-width: 1200px;
    }

    .choose__text {
        color: #092600;
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
        letter-spacing: .04em;
    }

    .choose__image__container {
        width: 518px;
        height: 374px;
        object-fit: cover;
    }


    /*services*/

    .container__services {
        gap: 0;
        max-width: 1200px;
    }

    .services__image__container {
        width: 520px;
        height: 317px;
        margin-top: 40px;
        object-fit: cover;
    }

    .services__content {
        max-width: 676px;
        max-height: 467px;
        gap: 30px;
    }



    /*footer*/

    .footer__section {
        margin-top: 40px;
    }

    .footer__container {
        max-width: 1200px;
    }

    .footer__wrap {
        margin-top: 50px;
    }

    .footer__right {
        gap: 50px;
    }

    .footer-social-wrap {
        min-width: 510px;
    }

    .footer__info img {
        max-width: 450px;
        max-height: 505px;
        object-fit: cover;
    }
}



/*****************************************/





@media (max-width: 1024px) {


    /*Header*/

    .container {
        max-width: 865px;
        margin: 0 auto;
    }

    .header__menu {

        font-weight: 600;
        font-size: 18px;
        line-height: 24.38px;
        margin-left: 40px;
    }

    .nav__list {
        gap: 6px;
    }

    .nav__button{
        width: 160px;
        height: 32px;
    }

    .header__item {
       width: 300px;
       height: 65px;
       object-fit: cover;
    }

    .container__item {
        top: 10%;
        left: 18%;
    }




    /*About us*/

    .about__section {
        height: auto;
    }

    .about__title {
        font-size: 36px;
        line-height: 54px;
    }

    .about__text {
        font-size: 28px;
        line-height: 47.6px;
    }



    /*Our products*/

    .products__title {
        font-size: 36px;
        line-height: 54px;
    }

    .products__slider {
        max-width: 945px;
    }

    .slider__btn--prev {
        left: 0px;
    }
    
    .slider__btn--next {
        right: 0px;
    }



    /*principles*/

    .section__principles {
        height: 1100px;
    }

    .principles__container {
        max-width: 865px;
        gap: 44px;
    }

    .principles__title {
        font-size: 36px;
        line-height: 54px;
    }

    .principles__text {
        width: 410px;
        height: 165px;
    }

    .blocks-container {
        display: grid;
        grid-template-columns: none;
        gap: 50px;
    }

    .p__principles {
        font-size: 28px;
        line-height: 42px;
    }

    .principles__container img {
        width: 488px;
        height: 399px;
        object-fit: cover;
        margin-top: 200px;
    }





    /*benefits*/

    .benefits__container {
        max-width: 1024px;
    }

    .container__up {
        max-width: 865px;
    }

    .benefits__content {
        gap: 65px 20px;
    }

    .benefits__title {
        font-size: 36px;
        line-height: 54px;
    }

    .benefits__item {
        max-width: 555px;
    }
    
    .benefits__container__image {
       height: 290px;
       object-fit: cover;
    }



    /*standards*/

    .standards__container {
        gap: 22px;
    }

    .standards__title {
        font-size: 36px;
        line-height: 54px;
    }

    .standards__text {
        font-weight: 500;
        font-style: italic;
        font-size: 24px;
        line-height: 36px;
        letter-spacing: .04em;
    }

    .standards__container img {
        width: 450px;
        object-fit: cover;
    }




    /*choose*/

    .section__choose {
        height: 700px;
    }

    .choose__title {
        font-size: 36px;
        line-height: 54px;
    }

    .container__choose {
        max-width: 865px;
    }

    .choose__content {
        max-width: 565px;
        max-height: 465px;
    }

    .choose__text {
        color: #092600;
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
        letter-spacing: .04em;
    }

    .choose__image__container {
        width: 500px;
        height: 290px;
        object-fit: cover;
    }


    /*services*/

    .services__title {
        font-size: 36px;
        line-height: 54px;
    }

    .container__services {
        gap: 20px;
        max-width: 924px;
    }

    .services__image__container {
        width: 400px;
        height: 310px;
        margin-top: 100px;
        object-fit: cover;
    }

    .services__content {
       gap: 30px;
    }



    /*footer*/

    .footer__section {
        margin-top: 40px;
        height: 800px;
    }

    .footer__container {
        max-width: 865px;
    }

    .footer__wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .footer__right {
        display: flex;
    }

    .footer__nav__title {
        font-size: 36px;
        line-height: 54px;
    }

    .footer-social-wrap {
        margin-top: 30px;
    }

    .footer__media__title {
        font-size: 24px;
        line-height: 36px;
    }

    .footer__nav__item {
        font-size: 24px;
        line-height: 36px;
    }
}








/*****************************************/








@media (max-width: 728px) {


    /*Header*/

    .container {
        max-width: 650px;
        margin: 0 auto;
    }

    .header__menu {
        font-weight: 600;
        font-size: 16px;
        line-height: 19.5px;
        margin-left: 10px;
    }

    .nav__list {
        gap: 5px;
    }

    .nav__button{
        width: 120px;
        height: 30px;
    }

    .header__item {
       width: 200px;
       height: 43px;
       object-fit: cover;
    }

    .container__item {
        top: 8%;
        left: 18%;
    }




    /*About us*/

    .about__section {
        height: auto;
    }

    .about__title {
        font-size: 32px;
        line-height: 48px;
    }

    .about__text {
        font-size: 24px;
        line-height: 40.8px;
    }



    /*Our products*/

    .products__title {
        font-size: 32px;
        line-height: 48px;
    }

    .products__slider {
        max-width: 600px;
    }

    .slider__btn--prev {
        left: 65px;
    }
    
    .slider__btn--next {
        right: 65px;
    }



    /*principles*/

    .section__principles {
        height: 1550px;
    }

    .principles__container {
        max-width: 728px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .principles__title {
        font-size: 32px;
        line-height: 48px;
    }

    .principles__text {
        width: 410px;
        height: 165px;
    }

    .blocks-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        width: 100%;
    }

    .p__principles {
        font-size: 28px;
        line-height: 42px;
    }

    .principles__container img {
        width: 440px;
        height: 400px;
        object-fit: cover;
        margin-top: 20px;
    }





    /*benefits*/

    .benefits__container {
        max-width: 700px;
    }

    .container__up {
        max-width: 650px;
    }

    .benefits__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .benefits__title {
        font-size: 32px;
        line-height: 48px;
    }

    .benefits__item {
        max-width: 555px;
    }
    
    .benefits__container__image {
       height: 200px;
       object-fit: cover;
    }



    /*standards*/

    .standards__container {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .standards__title {
        font-size: 32px;
        line-height: 48px;
    }

    .standards__text {
        font-weight: 500;
        font-style: italic;
        font-size: 24px;
        line-height: 36px;
        letter-spacing: .04em;
    }

    .standards__container img {
        width: 450px;
        object-fit: cover;
    }




    /*choose*/

    .section__choose {
        height: 900px;
    }

    .choose__title {
        font-size: 32px;
        line-height: 48px;
    }

    .container__choose {
        max-width: 650px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .choose__content {
        max-width: 565px;
        max-height: 465px;
    }

    .choose__text {
        color: #092600;
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
        letter-spacing: .04em;
    }

    .choose__image__container {
        width: 400px;
        height: 290px;
        object-fit: cover;
        margin-top: 30px;
    }


    /*services*/

    .services__title {
        font-size: 32px;
        line-height: 48px;
    }

    .container__services {
        max-width: 650px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .services__image__container {
        width: 400px;
        height: 310px;
        margin-top: 10px;
        object-fit: cover;
    }

    .services__content {
       gap: 30px;
       max-width: 535px;
    }



    /*footer*/

    .footer__section {
        margin-top: 40px;
        height: 1050px;
    }

    .footer__container {
        max-width: 650px;
    }

    .footer__right {
        display: block;
    }

    .footer__nav__title {
        font-size: 36px;
        line-height: 54px;
    }

    .footer-social-wrap {
        margin-top: 30px;
    }

    .footer__info img {
        max-width: 428px;
        max-height: 525px;
        object-fit: cover;
    }

    .footer__nav__item {
        font-size: 24px;
        line-height: 36px;
    }

    .footer__menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__media__title {
        text-align: center;
    }

    .footer__media__menu {
        justify-content: center;
        margin: 0;
    }

}








/*****************************************/








@media (max-width: 425px) {


    /*Header*/

    .container {
        max-width: 345px;
        margin: 0 auto;
    }

    .burger {
        display: flex;
        order: 2;
        margin-left: 20px;
    }
    .nav__list {
        display: none;
    }
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #092600;
        z-index: 1100;
        transition: top 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        margin: 0 auto;
    }
    
    .header__logo {
        display: block;
    }

    .container__item {
        position: relative;
    }
    .header__item {
        display: none;
    }



    /*About us*/

    .about__section {
        height: auto;
    }

    .about__title {
        font-size: 28px;
        line-height: 42px;
    }

    .about__text {
        font-size: 24px;
        line-height: 40.8px;
    }



    /*Our products*/

    .products__title {
        font-size: 28px;
        line-height: 42px;
    }

    .products__slider {
        max-width: 400px;
    }

    .slider__btn--prev {
        display: none;
        left: 0;
    }
    
    .slider__btn--next {
        display: none;
        right: 0;
    }



    /*principles*/

    .section__principles {
        height: 1550px;
    }

    .principles__container {
        max-width: 345px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .principles__title {
        font-size: 28px;
        line-height: 42px;
    }

    .principles__text {
        width: 330px;
        height: 185px;
    }

    .blocks-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        width: 100%;
    }

    .p__principles {
        font-size: 24px;
        line-height: 36px;
    }

    .principles__container img {
        width: 354px;
        height: 325px;
        object-fit: cover;
        margin-top: 20px;
    }





    /*benefits*/

    .benefits__container {
        max-width: 420px;
    }

    .container__up {
        max-width: 345px;
    }

    .benefits__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefits__title {
        font-size: 28px;
        line-height: 42px;
    }

    .benefits__item {
        max-width: 340px;
    }
    
    .benefits__container__image {
       height: 105px;
       object-fit: cover;
    }



    /*standards*/

    .standards__container {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .standards__title {
        font-size: 28px;
        line-height: 42x;
    }

    .standards__text {
        font-weight: 500;
        font-style: italic;
        font-size: 24px;
        line-height: 36px;
        letter-spacing: .04em;
        text-align: center;
    }

    .standards__container img {
        width: 355px;
        object-fit: cover;
    }




    /*choose*/

    .section__choose {
        height: 1100px;
    }

    .choose__title {
        font-size: 28px;
        line-height: 42px;
    }

    .container__choose {
        max-width: 345px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .choose__content {
        max-width: 345px;
        max-height: 595px;
    }

    .choose__text {
        color: #092600;
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
        letter-spacing: .04em;
    }

    .choose__image__container {
        width: 325px;
        height: 245px;
        object-fit: cover;
        margin-top: 30px;
    }


    /*services*/

    .section__services {
        height: 1180px;
    }

    .services__title {
        font-size: 28px;
        line-height: 42px;
    }

    .container__services {
        max-width: 345px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .services__image__container {
        width: 350px;
        height: 250px;
        margin-top: 250px;
        object-fit: cover;
    }

    .services__content {
       gap: 30px;
       max-width: 345px;
    }



    /*footer*/

    .footer__section {
        margin-top: 40px;
        height: 820px;
    }

    .footer__container {
        max-width: 345px;
    }

    .footer__right {
        display: block;
    }

    .footer__nav__title {
        font-size: 32px;
        line-height: 48px;
    }

    .footer__wrap {
        display: block;
    }

    .footer-social-wrap {
        margin-top: 30px;
    }

    .footer__info img {
        max-width: 420px;
        max-height: 420px;
        object-fit: cover;
    }

    .footer__nav__item {
        font-size: 24px;
        line-height: 36px;
    }

    .footer__media__menu {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .footer__menu {
        margin-top: 10px;
    }
}


@media (max-width: 430px) {


    /*Header*/

    .container {
        max-width: 345px;
        margin: 0 auto;
    }

    .burger {
        display: flex;
        order: 2;
        margin-left: 20px;
    }
    .nav__list {
        display: none;
    }
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #092600;
        z-index: 1100;
        transition: top 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        margin: 0 auto;
    }
    
    .header__logo {
        display: block;
    }

    .container__item {
        position: relative;
    }
    .header__item {
        display: none;
    }



    /*About us*/

    .about__section {
        height: auto;
    }

    .about__title {
        font-size: 28px;
        line-height: 42px;
    }

    .about__text {
        font-size: 24px;
        line-height: 40.8px;
    }



    /*Our products*/

    .products__title {
        font-size: 28px;
        line-height: 42px;
    }

    .products__slider {
        max-width: 400px;
    }

    .slider__btn--prev {
        display: none;
        left: 0;
    }
    
    .slider__btn--next {
        display: none;
        right: 0;
    }



    /*principles*/

    .section__principles {
        height: 1550px;
    }

    .principles__container {
        max-width: 345px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .principles__title {
        font-size: 28px;
        line-height: 42px;
    }

    .principles__text {
        width: 330px;
        height: 185px;
    }

    .blocks-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        width: 100%;
    }

    .p__principles {
        font-size: 24px;
        line-height: 36px;
    }

    .principles__container img {
        width: 354px;
        height: 325px;
        object-fit: cover;
        margin-top: 20px;
    }





    /*benefits*/

    .benefits__container {
        max-width: 420px;
    }

    .container__up {
        max-width: 345px;
    }

    .benefits__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefits__title {
        font-size: 28px;
        line-height: 42px;
    }

    .benefits__item {
        max-width: 340px;
    }
    
    .benefits__container__image {
       height: 105px;
       object-fit: cover;
    }



    /*standards*/

    .standards__container {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .standards__title {
        font-size: 28px;
        line-height: 42x;
    }

    .standards__text {
        font-weight: 500;
        font-style: italic;
        font-size: 24px;
        line-height: 36px;
        letter-spacing: .04em;
        text-align: center;
    }

    .standards__container img {
        width: 355px;
        object-fit: cover;
    }




    /*choose*/

    .section__choose {
        height: 1100px;
    }

    .choose__title {
        font-size: 28px;
        line-height: 42px;
    }

    .container__choose {
        max-width: 345px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .choose__content {
        max-width: 345px;
        max-height: 595px;
    }

    .choose__text {
        color: #092600;
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
        letter-spacing: .04em;
    }

    .choose__image__container {
        width: 325px;
        height: 245px;
        object-fit: cover;
        margin-top: 30px;
    }


    /*services*/

    .section__services {
        height: 1180px;
    }

    .services__title {
        font-size: 28px;
        line-height: 42px;
    }

    .container__services {
        max-width: 345px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .services__image__container {
        width: 350px;
        height: 250px;
        margin-top: 250px;
        object-fit: cover;
    }

    .services__content {
       gap: 30px;
       max-width: 345px;
    }



    /*footer*/

    .footer__section {
        margin-top: 40px;
        height: 1170px;
    }

    .footer__container {
        max-width: 345px;
    }

    .footer__right {
        display: block;
    }

    .footer__nav__title {
        font-size: 32px;
        line-height: 48px;
    }

    .footer__wrap {
        display: block;
    }

    .footer-social-wrap {
        margin-top: 50px;
        min-width: 345px;
    }

    .footer__info img {
        max-width: 420px;
        max-height: 420px;
        object-fit: cover;
    }

    .footer__nav__item {
        font-size: 24px;
        line-height: 36px;
    }

    .footer__media__menu {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .footer__menu {
        margin-top: 10px;
    }
}


@media (min-width: 431px) {
    .burger {
        display: none; /* Скрываем бургер-меню на экранах больше 425px */
    }
    .nav__list {
        display: flex; /* Показываем стандартное меню */
    }
}