body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

@media(max-width:1320px) {
    .container {
        padding: 0 20px;
    }
}

.navigation {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    padding: 16px;
}



.navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

.navigation-no-main {
    position: inherit;
}

.navigation--fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

.navigation--fixed::before {
    background-color: rgba(255, 255, 255, 1);
}




.navigation__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.menu ul {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.menu ul li {
    margin-right: 25px;
}

.menu ul li:last-child {
    margin-right: 0;
}

.menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #161616;
}

.menu ul li a:hover {
    transition: .2s;
    color: #448749;
    padding-bottom: 5px;
    border-bottom: 2px solid #448749;
}

.navigation__btns {
    display: flex;
    align-items: center;
}

.mobile__burger__menu {
    display: none;
}

.navigation__btns a {
    margin-right: 11px;
}

.navigation__btns a:last-child {
    margin-right: 0;
}

.navigation__btn {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    border: 1px solid #448749;
    border-radius: 15px;
}

.search__form {
    display: none;
}


.search-active {
    display: none;
}

.site_search {
    width: 0;
    height: 0;
    visibility: hidden;
    position: relative;
}

.site_search-active {
    width: 100%;
    height: auto;
    visibility: inherit;
}

.site_search input {
    width: 92%;
    padding: 16px;
    border-radius: 15px;
    outline: none;
    border: 1px solid #A2A2A2;
    background-color: #F3F3F3;
    font-size: 16px;
    display: block;
    margin: 0 auto;
}

.site__search__controll {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.site__search__controll span {
    cursor: pointer;
    display: none;
}

.site__search__controll-active {
    display: block !important;
}


.search__dashbord {
    position: absolute;
    width: 100%;
    margin-top: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.search__dashbord__items {
    margin: 5px;
}

.search__dashbord__items a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #263345;
}

.search__dashbord__items a:hover {
    background-color: #f3f3f3;
}


.catalog__search__dashbord {
    position: absolute;
    top: 55px;
    width: 100%;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.catalog__search__dashbord-item {
    margin: 5px;
}

.catalog__search__dashbord-item a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #263345;
}

.catalog__search__dashbord-item a:hover {
    background-color: #f3f3f3;
}


.navigation__btn-search-active {
    display: none;
}

.navigation__btn img {
    width: 22px;
}

.navigation__btn-call {
    position: relative;
}

.navigation__call__numbers {
    position: absolute;
    top: 115%;
    border-radius: 12px;
    background-color: #fff;

    visibility: hidden;
    height: 0;
}

.navigation__call__numbers-active {
    visibility: inherit;
    height: auto;
    width: 215px;
    transition: .4s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000000;
}

.navigation__call__number {
    padding: 12px;
    color: #161616;
}

.navigation__call__number span {
    display: block;
    color: #A2A2A2;
    padding-bottom: 6px;
}

.navigation__feedback {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 257px;
    font-size: 16px;
    text-decoration: none;
    background-color: #448749;
    color: #fff;
}

.navigation__feedback-mobile {
    display: none;
}


@media(max-width: 1140px) {
    .navigation__feedback {
        width: 160px;
    }
}


@media(max-width: 1060px) {

    .navigation {
        position: relative;
        transition: right 0.5s ease;
    }

    .navigation-active {
        overflow: inherit !important;
    }

    .navigation__inner {
        position: inherit;
    }

    .menu {
        top: 100%;
        background-color: #F3F3F3;
        width: 0;
        height: 0;
        visibility: hidden;
        overflow: hidden;
        right: -100%;
        position: absolute;
        padding-top: 43px;
        transition: right 0.5s ease;
    }

    .menu-active {
        width: 100%;
        height: 100vh;
        visibility: inherit;
        right: 0;
        transition: right 0.5s ease;
    }

    .menu ul {
        flex-direction: column;
        align-items: center;
    }

    .menu ul li {
        padding: 20px 0;
        margin-right: 0;
        border-bottom: 1px solid #C7C7C7;
        width: 90%;
        text-align: center;
    }

    .menu ul li:first-child {
        border-top: 1px solid #C7C7C7;
    }

    .navigation__feedback {
        display: none;
    }

    .navigation__feedback-mobile {
        display: block;
        width: 90%;
        margin: 0 auto;
        border-radius: 20px;
        text-align: center;
        padding: 18px 0;
        margin-top: 50px;
        font-size: 16px;
        text-decoration: none;
        background-color: #448749;
        color: #fff;
    }

    .mobile__burger__menu {
        display: block;
    }


    .mobile__burger__menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 24px;
        cursor: pointer;
        position: relative;
        z-index: 1100;
    }

    .mobile__burger__menu span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #161616;
        border-radius: 5px;
        transition: transform 0.4s, opacity 0.4s;
        transform-origin: center;
        /* Центрируем точку вращения */
    }

    .mobile__burger__menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 5px);
        background-color: #A2A2A2;
    }

    .mobile__burger__menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile__burger__menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(10px, -5px);
        background-color: #A2A2A2;
    }





}




.header {
    margin-bottom: 48px;
}


.header__slider {
    position: relative;
    /* overflow: inherit !important; */
}

.header__slider .swiper-slide img {
    width: 100%;
    height: 868px;
    object-fit: cover;
}

.down__slider {
    position: relative;
    /* overflow: inherit !important; */
}

.down__slider .swiper-slide img {
    width: 100%;
    height: 868px;
    object-fit: cover;
}


.header__slider__image {}

.header__slider__image img {}

.header__slider__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 23.96%, rgba(0, 0, 0, 0.8) 100%); */
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    /* клики проходят сквозь градиент */
}



.header__slider .swiper-slide {
    position: relative;

}



.header__slider__txt {
    position: absolute;
    z-index: 100000;
    bottom: 62px;
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    right: 5%;
    width: 500px;
}


.header__slider__txt-up {
    position: absolute;
    z-index: 100000;
    top: 17%;
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
}


.header__slider-pagination {
    text-align: center;
    margin-top: 12px;
}

.header__slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.header__slider-pagination .swiper-pagination-bullet-active {
    background-color: #448749;
}

@media(max-width: 1250px) {
    .header__slider__txt {
        .header__slider__txt {
            right: 0%;
        }
    }
}

@media(max-width: 1060px) {

    .header__slider__txt-up {
        position: absolute;
        z-index: 100000;
        top: 20%;
        left: 0;
        right: 0;
        color: #fff;
        font-weight: 600;
        font-size: 30px;
        line-height: 1.2;
        width: 100%;
        text-align: center;
    }

    .header__slider__txt {
        font-size: 30px;
        text-align: center;
        bottom: 50%;
        left: 0;
        right: 0;
        width: 100%;
    }
}


@media(max-width: 620px) {
    .header__slider__txt {
        font-size: 22px;
        text-align: center;
        bottom: 40%;
        left: 0;
        right: 0;
    }

    .header__slider__txt span {
        font-weight: 600;
        font-size: 22px;
    }

    .header__slider .swiper-slide img {
        height: 75vh;
    }
}

@media(max-width: 620px) {
    .header__slider__txt-up {
        top: 10%;
        font-size: 22px;
    }

    .header__slider__txt {
        bottom: 25%;
    }

}


.work__category {
    margin-bottom: 60px;
}

.work__category__items {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.work__category__item {
    background-color: #448749;
    width: 23%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.work__category__title {
    color: #fff;
    text-transform: uppercase;
    padding: 20px 0 0 20px;
    font-size: 24px;
}

.work__category__img {
    position: absolute;
    bottom: -5px;
    right: 0;
    z-index: 3;
    transition: .3s;
}

.work__category__img-dubble {
    position: absolute;
    left: 20px;
    bottom: -5px;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.work__category-btn {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: -2%;
    bottom: -2%;
    z-index: 3;
    padding: 20px;
    border-radius: 25px;
    background-color: #D7B56D;
    border: 8px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}


.work__category__item:hover .work__category__img-dubble {
    visibility: inherit;
    opacity: 1;
}

.work__category__item:hover .work__category__img {
    transform: scale(1.2);
    bottom: 0;
}

.work__category__item:hover .work__category-btn {
    visibility: inherit;
    opacity: 1;
}

@media(max-width: 1060px) {
    .work__category__items {
        flex-wrap: wrap;
    }

    .work__category__item {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media(max-width: 550px) {
    .work__category__item {
        width: 100%;
    }
}



.main__about {
    margin-bottom: 60px;
}


.main__logo a img {
    width: 68px;
}

.main__about__item {
    display: flex;
    align-items: center;
    background-color: #448749;
    border-radius: 20px;
    padding: 40px 40px;
}

.main__about__txt {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    margin-right: 32px;
}

.main__about__txt span {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

@media(max-width: 1000px) {
    .main__about__item {
        flex-direction: column;
    }

    .main__about__txt {
        margin-bottom: 32px;
        margin-right: 0;
    }

    .main__about__img {
        width: 70%;
    }

    .main__about__img img {
        width: 100%;
    }
}

@media(max-width: 670px) {
    .main__about__img {
        width: 100%;
    }
}


.main__paralax {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.main__parallax-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.footer {
    position: relative;
    z-index: 2;
}


.footer__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

.footer__item-mobile {
    display: none;
}


.footer__socials {
    display: flex;
}

.footer__contacts a,
.footer__socials a {
    color: #161616;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
}


.footer__contacts a:hover {
    color: ;
}

.footer__nymbers {
    margin-bottom: 12px;
}


.footer__socials__link {
    margin-bottom: 12px;
    margin-right: 20px;
}

.footer__socials__link:last-child {
    margin-right: 0;
}

.footer__adress {
    font-weight: 400;
    font-size: 18px;
    width: 300px;
}

.footer__adress a {
    text-decoration: none;
    color: #161616;
}

.footer__up {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d7b56d;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
}




.footer__navs {
    padding: 30px 0;
    margin-bottom: 32px;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
}

.footer__navs ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding-left: 0;
}

.footer__navs ul li a {
    font-weight: 400;
    font-size: 16px;
    color: #161616;
    text-decoration: none;
}


.footer__copyrights {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer__copyright {
    text-align: center;
    color: #161616;
    opacity: 0.65;
    font-weight: 400;
    font-size: 12px;
    line-height: 110%;
}

.footer__copyright span {
    font-weight: 700;
}

.dat_link {
    font-size: 12px;
}


.footer__logo__img {
    width: 159px;
}

@media(max-width: 880px) {
    .footer__items {
        flex-wrap: wrap;
        margin-top: 0;
    }

    .footer__item {
        width: 50%;
        border-bottom: 1px solid #D2C8CF;
        padding: 32px 0;
    }

    .footer__item-mobile {
        display: flex;
        justify-content: end;
    }

    .footer__item-mobile .footer__up {
        height: 20%;
    }

    .footer__item:nth-last-child(2) {
        border-bottom: none;
        width: 100%;
    }

    .footer__item:last-child {
        display: none;
    }
	
	.footer__item-first {
        border-bottom: 0;
    }

    .footer__item-two {
        border-bottom: 0;
    }
	
	.footer__socials {
		height:54px;
	}
	
	.footer__item-third,
	.footer__item-four {
		border-top: 1px solid #D2C8CF;
	}
}


@media(max-width: 585px) {
    .footer__navs {
        display: none;
    }

    .footer__item:nth-last-child(2) {
        border-bottom: 1px solid #D2C8CF;
    }

    .footer__logo__img {
        width: 80px;
    }
}



.news__category__title {
    font-weight: 600;
    font-size: 56px;

    margin: 40px 0 60px 0;
}


.news__category__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.news__category__items-up,
.news__category__items-down {
    margin-bottom: 20px;
}

.news__category__items-up .news__category__item {
    width: 32%;
}

.news__category__items-down .news__category__item {
    width: 49%;
}


.news__category__item {
    background-color: #f3f3f3;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}



.news__item__title {
    padding: 24px;
    font-weight: 600;
    font-size: 18px;
}

.news__item__desc {
    padding: 0 24px;
    font-weight: 400;
    font-size: 16px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 200px;
    opacity: 1;
}

.news__item__desc span {
    display: none;
}

.news__item__desc.extended span {
    display: inline;
}

.news__item__image {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.news__category__item.active .news__item__desc {
    max-height: 0;
    opacity: 0;
}

.news__category__item.active .news__item__image {
    max-height: 300px;
    /* подбирай под высоту картинки */
    opacity: 1;
}



.news__item__controll {
    display: flex;
    padding: 24px;
    justify-content: space-between;
}

.news__item__controll a {
    font-weight: 400;
    font-size: 16px;
    color: #448749;
    text-decoration: none;
}

.news__category__date {
    font-weight: 600;
    font-size: 18px;
    color: #a2a2a2;
}

.news__category__item img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

@media(max-width: 1120px) {
    .news__category__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .news__category__items-up .news__category__item {
        width: 49%;
        margin-bottom: 20px;
    }

    .news__category__items-up .news__category__item:last-child {
        margin-bottom: 0;
        width: 100%;
    }
}


@media(max-width: 720px) {
    .news__category__items-up .news__category__item {
        width: 100%;
    }

    .news__category__items-down {
        flex-wrap: wrap;
    }

    .news__category__items-down .news__category__item {
        width: 100%;
        margin-bottom: 20px;
    }


}


.main__parallax-image-news {
    margin-top: 60px;
}


.single__news {
    margin-bottom: 60px;
    margin-top: 40px;
}

.single__news__wrapper {
    display: flex;
}


.single__breadcrabs {
    margin-bottom: 24px;
    color: #D0D0D0;
}

.single__breadcrabs a {
    text-decoration: none;
    color: #D0D0D0;
    transition: .3s;
}

.single__breadcrabs a:hover {
    color: #161616;
}

.single__breadcrabs span {
    color: #161616;
}

.single__title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 12px;
}

.single__date {
    font-weight: 600;
    font-size: 18px;
    color: #a2a2a2;
    margin-bottom: 24px;
}



.single__news__line {
    width: 1px;
    background-color: #D0D0D0;
    margin: 0 30px;
}

.single__news__title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 32px;
}

.news__category__items-sidebar .news__category__item {
    width: 100%;
    margin-bottom: 20px;
}


@media(max-width: 1280px) {
    .single__news__wrapper {
        flex-wrap: wrap;
    }

    .single__photo img {
        width: 100%;
    }

    .single__news__line {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }

    .news__category__items-sidebar {
        display: flex;
    }

    .news__category__items-sidebar .news__category__item {
        width: 32%;
    }

    .news__category__items-sidebar .news__category__item:last-child {
        width: 32%;
    }
}

@media(max-width: 1060px) {
    .news__category__items-sidebar .news__category__item {
        width: 48%;
    }

    .news__category__items-sidebar .news__category__item:last-child {
        width: 100%;
    }
}

@media(max-width: 725px) {
    .news__category__items-sidebar .news__category__item {
        width: 100%;
    }
}

@media(max-width: 600px) {
    .single__title {
        font-size: 20px;
    }

    .single__breadcrabs {
        font-size: 12px;
    }

    .single__date {
        font-size: 12px;
    }

}

.footer__single {
    border-top: 1px solid #D0D0D0;
    border-radius: 20px 20px 0 0;
}


.contact__page {
    margin-top: 40px;
    margin-bottom: 60px;
}


.contact__page__title {
    font-weight: 600;
    font-size: 56px;
    margin-bottom: 60px;
}

.contact__page__wrapper {
    display: flex;
    justify-content: space-between;
}

.contact__page__content {
    width: 70%;
    margin-right: 60px;
}

.contact__page__info ul {
    padding-left: 0;
    list-style: none;
}

.contact__page__info ul li {
    font-weight: 400;
    font-size: 16px;
}

.contact__page__info ul li:nth-child(2) {
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
    margin: 12px 0;
    padding: 12px 0;
}

.contact__page__info ul li span {
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
}


.contact__page__map {
    margin-bottom: 32px;
}


.contact__page_requisites {
    background-color: #f3f3f3;
    padding: 24px;
    border-radius: 20px;
}

.contact__requisites__title {
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
}

.contact__page_requisites ul {
    padding-left: 0;
    list-style: none;
}

.contact__page_requisites ul li {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 18px;
}

.contact__page_requisites ul li:last-child {
    margin-bottom: 0;
}


.contact__page__sidebar {
    position: relative;
}


.contact__sidebar__form {
    position: absolute;
    margin: 24px;
    padding: 24px;
    border-radius: 20px;
    z-index: 1;
    overflow: hidden;
}

.contact__sidebar__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

.contact__sidebar__title {
    font-weight: 600;
    font-size: 28px;
}

.contact__sidebar__desc {
    font-weight: 400;
    font-size: 16px;
    margin: 12px 0;
}

.contact__sidebar__link {
    display: block;
    background-color: #448749;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
}

.contact__sidebar__img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}


@media(max-width: 1120px) {
    .contact__page__title {
        font-size: 32px;
        margin-bottom: 32px;
    }
}

@media(max-width: 990px) {

    .contact__page__wrapper {
        flex-direction: column;
    }

    .contact__page__content {
        width: 100%;
        margin-bottom: 32px;
    }

    .contact__sidebar__form {
        position: inherit;
        border: 1px solid #D2C8CF;
        margin: 0;
        margin-bottom: 32px;
    }
}


.about__page__about {
    margin-bottom: 60px;
}

.about__page__header {
    position: relative;
    margin-bottom: 60px;
}

.about__header__image img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.about__header__items {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    margin-bottom: 60px;


    color: #fff;
    font-weight: 400;
    font-size: 18px;
}


.about__header__item__inner {
    display: flex;
}

.about__header__item__inner .about__header__item {
    background-color: #448749;
    padding: 28px;
    border-radius: 20px;
}

.about__header__item__inner .about__header__item:first-child {
    width: 545px;
    margin-right: 20px;
}

.about__header__link {
    display: block;
    margin-top: 24px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.about__header__title {
    font-weight: 600;
    font-size: 49px;
    margin-right: 157px;
}


.about__header__total span {
    display: block;
    font-weight: 600;
    font-size: 56px;
}


.about__page__infos {
    display: flex;
    justify-content: space-between;
}

.about__page__info__item {
    width: 48%;
    overflow: hidden;
    border-radius: 20px;
}

.about__info__title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 8px;
}

.about__info__desc {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 32px;
}

.about__info__placeholder {
    display: flex;
    align-items: center;
    background-color: #448749;
    border-radius: 20px;
    padding: 24px;

    color: #fff;
    margin-bottom: 20px;
}

.about__info__placeholder:last-child {
    margin-bottom: 0;
}

.about__info__placeholder_icon {
    margin-right: 20px;
}


.about__page__info__image {
    height: 100%;
}


.about__page__about-llk {
    margin-bottom: 60px;
}

.about__page__infos-llk {
    display: flex;
    justify-content: space-between;
}

.about__page__info__item-llk {
    width: 48%;
}

.about__page__info__item-llk-txt span {
    display: block;
    font-size: 24px;
}


.about__page__info__item-llk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}


.about__page__about-llknew {
    margin-bottom: 60px;
}


.about__page__infos-llknew {
    display: flex;
    justify-content: space-between;
}

.about__page__info__item-llknew-green {
    width: 70%;
}

.about__page__info__item-llknew-green div {
    background-color: #448749;
    border-radius: 20px;
    color: #fff;
    font-size: 24px;
    padding: 40px;
}

.about__page__info__item-llknew-image {
    width: 25%;
}

.about__page__info__item-llknew-image img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
}


@media(max-width: 1304px) {
    .about__page__info__item-llknew-image img {
        height: 90%;
    }
}

@media(max-width: 1120px) {
    .about__page__infos-llknew {
        flex-direction: column;
    }

    .about__page__info__item-llknew-green {
        width: 100%;
        margin-bottom: 30px;
    }

    .about__page__info__item-llknew-image {
        width: 100%;
    }
}

@media(max-width: 990px) {
    .about__page__infos-llk {
        flex-direction: column;
    }

    .about__page__info__item-llk {
        width: 100%;
    }

    .about__page__info__item-llk-txt {
        margin-bottom: 30px;
    }
}

.about__gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about__gallery__image {
    width: 24%;
}


.about__mission {
    margin-bottom: 60px;
}

.about__mission__items {
    display: flex;
    justify-content: space-between;
}


.about__mission__item {
    width: 48%;
}



.about__mission__txt {
    background-color: #448749;
    border-radius: 20px;
    padding: 24px;

    font-size: 24px;

    color: #fff;
    margin-bottom: 20px;
}

.about__mission__txt span {
    font-weight: bold;
}


.about__mission__plaseholder {
    background-color: #f3f3f3;
    padding: 24px;
    border-radius: 20px;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
}

.about__mission__plaseholder:last-child {
    margin-bottom: 0;
}

.about__docs {
    margin-bottom: 60px;
}

.about__docs__title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 24px;
}

.about__docs__items {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.about__docs__item {
    background-color: #f3f3f3;
    margin-bottom: 20px;
    margin-right: 15px;
    padding: 15px 57px;
    border-radius: 20px;
    color: #161616;
}


.about__skills__wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.about__skills__inner {
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about__skills__inner-txt {
    background-color: #F3F3F3;
    padding: 24px;
    border-radius: 20px;
    height: 35%;
}

.about__skills__inner-txt span {
    display: block;
    font-size: 32px;
    font-weight: 600;

}

.about__skills__inner-image {
    height: 55%;
}

.about__skills__inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.about__skills__items {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about__skills__item {
    width: 43%;
    background-color: #F3F3F3;
    border-radius: 20px;
    margin-bottom: 12px;
    padding: 24px;

    display: flex;
}

.about__skills__icons {
    width: 52px;
    height: 52px;
    margin-right: 20px;
    border-radius: 20px 20px 0 0;
    background-color: #448749;

    display: flex;
    justify-content: center;
}

.about__skills__icons img {
    padding: 5px;
}

.about__skills__title {
    font-size: 18px;
    font-weight: 600;
}

.about__skills__desc {
    font-size: 14px;
}

@media(max-width: 1111px) {

    .about__skills__wrapper {
        flex-direction: column;
    }

    .about__skills__inner {
        width: 100%;
        flex-direction: row;
        margin-bottom: 20px;
    }

    .about__skills__inner-txt {
        height: auto;
        width: 45%;
    }

    .about__skills__inner-image {
        height: auto;
        width: 48%;
    }

    .about__skills__items {
        width: 100%;
    }

    .about__skills__item {
        width: 43%;
    }
}

@media(max-width: 775px) {
    .about__skills__inner {
        flex-direction: column-reverse;
    }

    .about__skills__inner-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .about__skills__inner-txt {
        width: auto;
    }

    .about__skills__item {
        width: 100%;
    }
}



@media(max-width: 535px) {

    .about__docs__title {
        font-size: 20px;
    }

    .about__docs__item {
        padding: 15px 0;
        width: 48%;
        text-align: center;
    }
}




.mobile__about__gallery {
    display: none;
}



@media(max-width: 1345px) {
    .about__header__items {
        left: 0;
        right: 0;
        padding: 0 20px;
    }

    .about__header__item__inner .about__header__item:first-child {
        width: 489px;
    }
}

@media(max-width: 1310px) {
    .about__header__items {
        position: inherit;
        flex-direction: column;
        margin-top: -120px;
        padding: 0;
    }

    .about__header__item {
        margin-bottom: 90px;
    }

    .about__header__item__inner {
        justify-content: space-between;
    }

    .about__header__item__inner .about__header__item:first-child {
        width: 80%;
        margin-bottom: 0;
    }

    .about__header__item__inner .about__header__item:last-child {
        margin-bottom: 0;
    }
}

@media(max-width: 720px) {
    .about__header__item__inner {
        flex-direction: column;
    }

    .about__header__item__inner .about__header__item:first-child {
        width: auto;
        margin-bottom: 32px;
        margin-right: 0;
    }
}


@media(max-width: 1070px) {
    .about__header__image {
        height: 65vh;
    }

    .about__header__image img {
        height: 100%;
        object-fit: cover;
    }

    .about__page__infos {
        flex-direction: column;
    }

    .about__page__info__item {
        width: 100%;
        margin-bottom: 32px;
    }

    .about__page__info__image {
        width: 100%;
    }

    .about__page__about {
        margin: 0;
    }

    .about__gallery {
        display: none;
    }

    .about__mission__items {
        flex-direction: column;
    }

    .about__mission__item {
        width: 100%;
    }

    .mobile__about__gallery {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .mobile__about__gallery img {
        width: 48%;
        margin-bottom: 15px;
    }
}


@media(max-width: 580px) {

    .about__page__info__item {
        border-radius: inherit;
    }

    .about__info__title,
    .about__mission__txt span,
    .about__mission__txt {
        font-size: 18px;
    }

    .about__info__desc {
        font-size: 18px;
    }

    .about__mission__plaseholder {
        font-size: 18px;
    }
}

@media(max-width: 475px) {
    .about__header__title {
        font-size: 34px;
    }
}

.catalog__titles {
    display: flex;
    align-items: center;
    margin: 40px 0 60px 0;
}


.catalog__title {
    font-size: 56px;
    font-weight: 600;
    margin-right: 24px;
}



.catalog__search {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
}

.catalog__search input {
    display: block;
    padding: 15px 12px;
    border-radius: 20px;
    border: none;
    outline: none;
    background-color: #f3f3f3;
    color: #a2a2a2;
    width: 100%;
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px 16px;
    /* Размер иконки */
}

.catalog__tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}


.catalog__tab {
    text-decoration: none;
    width: auto;
    color: #161616;
    border: 1px solid #448749;
    padding: 16px 70px;
    border-radius: 20px;
}

.catalog__tab-active {
    color: #fff;
    background-color: #448749;
}

.catalog__tab-mobile {
    display: none;
}



.catalog__info {
    background-color: #f3f3f3;
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.catalog__info__title {
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.catalog__items__up {
    display: flex;
    justify-content: space-around;
}

.catalog__items__up .catalog__item {
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-color: #f3f3f3;
    width: 32%;
    border-radius: 20px;

    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    color: #161616;
    margin-bottom: 20px;
}

.catalog__items__up .catalog__item img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    margin: 0 auto;
}


.catalog__items__up .catalog__item__title {
    margin-top: 15px;
    margin-bottom: 24px;
}

.catalog__items__down {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.catalog__items__down .catalog__item {
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-color: #f3f3f3;
    width: 48%;
    border-radius: 20px;

    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    color: #161616;
}


.catalog__items__down .catalog__item img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    margin: 0 auto;
}

.catalog__items__down .catalog__item__title {
    margin-top: 15px;
    margin-bottom: 24px;
}



@media(max-width: 1280px) {
    .catalog__tab {
        padding: 15px 0;
        width: 24%;
        font-size: 14px;
        text-align: center;
    }

    .catalog__tab:first-child {
        display: none;
    }

    .catalog__tab:nth-child(3) {
        display: none;
    }

    .catalog__tab-mobile {
        display: block;
    }
}

@media(max-width: 1040px) {
    .catalog__titles {
        flex-direction: column;
        align-items: start;
    }

    .catalog__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .catalog__search {
        width: 100%;
    }

    .catalog__search input {
        width: 100%;
    }

    .catalog__item__title {
        font-size: 23px;
    }
}

@media(max-width: 780px) {
    .catalog__items__up {
        flex-direction: column;
    }

    .catalog__items__up .catalog__item {
        width: 100%;
        height: 80%;
    }

    .catalog__items__up .catalog__item img {
        height: 300px;
    }

    .catalog__items__down {
        flex-direction: column;
    }

    .catalog__items__down .catalog__item {
        width: 100%;
        margin-bottom: 20px;
    }

    .catalog__items__down .catalog__item img {
        height: 300px;
    }
}

@media(max-width: 480px) {
    .catalog__items__up .catalog__item img {
        height: 200px;
    }

    .catalog__items__down .catalog__item img {
        height: 200px;
    }
}



.catalog__info-fiting {
    background-color: #fff !important;
    padding: 0;
    border-radius: 0;
    margin-bottom: 60px;

    display: flex;
    justify-content: space-between;
}

.catalog__info__inner {
    background-color: #f3f3f3;
    padding: 24px;
    border-radius: 20px;
    width: 70%;
}

.catalog__info__image img {
    height: 100%;
}

.catalog__info-fiting .catalog__info__content {
    margin-bottom: 50px;
}

.catalog__info__link {
    background-color: #448749;
    color: #fff;
    padding: 15px 50px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 24px;
}

.catalog__accardion {
    width: 100%;
    margin-bottom: 60px;
}

.catalog__accardion__item {
    background-color: #f3f3f3;
    border-radius: 12px;
    margin-bottom: 4px;
    padding-left: 60px;
    position: relative;
}

.catalog__accardion__link {
    padding: 24px 0;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}

.catalog__accardion__item::after {
    content: '+';
    position: absolute;
    top: 22px;
    left: 20px;
    color: #448749;
    font-size: 24px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.catalog__accardion__item.open::after {
    content: '−';
    transform: rotate(180deg);
}

.catalog__accardion__item.open {
    border: 2px solid #D7B56D !important;
    background-color: #fff;
}

.catalog__accardion__content {
    height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0;
}

.catalog__accardion__item.open .catalog__accardion__content {
    padding: 20px 0;
    border-top: 1px solid #D0D0D0;
    margin-right: 24px;
    height: 100%;
}


@media(max-width: 1290px) {
    .catalog__info__inner {
        width: 100%;
        margin-right: 20px;
    }

    .catalog__info__image img {
        width: 100%;
        object-fit: cover;
    }
}

@media(max-width: 995px) {
    .catalog__info__inner {
        margin-right: 0;
    }

    .catalog__info__image {
        display: none;
    }
}

@media(max-width: 620px) {
    .catalog__accardion__link {
        font-size: 20px;
    }
}


.single__truby__title {
    font-weight: 600;
    font-size: 56px;
    margin: 32px 0;
}

.single__truby {
    margin-top: 40px;
    margin-bottom: 60px;
}



.single__truby__desc {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 16px;
}


.single__truby__images {
    margin-bottom: 60px;
}



.single__truby__tabs {
    display: flex;
    flex-wrap: wrap;
    color: #161616;
}


.single__truby__tab {
    background-color: #f3f3f3;
    border: 1px solid #f3f3f3;
    display: block;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    padding: 20px;
    margin: 12px;

    text-decoration: none;
    color: #161616;
    text-align: center;
    transition: .3s;
    width: auto;
}

.single__truby__tab img {
    margin-left: 12px;
    width: 0;
    visibility: hidden;
    transition: .3s;
}

.single__truby__tab:hover {
    background-color: #fff;
    border: 1px solid #448749;
}

.single__truby__tab:hover img {
    width: auto;
    visibility: inherit;

}

.single__truby__images-img {
    width: 48%;
    max-height: 320px;

}

.single__truby__images img {
    width: 100%;
    height: 100%;
    justify-content: space-between;
    object-fit: contain;
}

@media(max-width: 880px) {

    .single__truby__title {
        font-size: 32px;
    }

    .single__truby__images {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .single__truby__images-img {
        width: 100%;
        margin-bottom: 15px;
    }

    .single__truby__tab {
        display: flex;
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }

    .single__truby__tab img {
        margin-left: 12px;
        width: auto;
        visibility: inherit !important;
    }
}

@media(max-width: 570px) {
    .single__truby__images img {
        width: 100%;
    }
}


.truby__single {
    margin-top: 40px;
    margin-bottom: 60px;
}


.truby__single__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}


.truby__single__title {
    font-weight: 600;
    font-size: 56px;
    width: 100%;
}

.truby__single__title-thabnail {
    width: 50% !important;
}

.truby__single__img {
    width: 40%;
}

.truby__single__img img {
    width: 100%;
}



@media(max-width: 1040px) {
    .truby__single__header {
        flex-direction: column;
        align-items: start;
    }

    .truby__single__title {
        font-size: 32px;
        width: 100%;
        margin-bottom: 24px;
    }

    .truby__single__img {
        width: 80%;
    }
}

@media(max-width: 520px) {
    .truby__single__img {
        width: 100%;
    }
}



/* .modal-open .modal-backdrop {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
} */


body.modal-open {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100000000000000;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 425px;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100000000000000;
}

.modal-open .modal-backdrop,
.modal-open .modal {
    opacity: 1;
    visibility: visible;
}


.modal__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}

.moodal__header__title {
    font-weight: 600;
    font-size: 32px
}

.moodal__header__subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #a2a2a2;
}

.modal__header button {
    outline: none;
    border: none;
    background-color: transparent;
}

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

.modal__form__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.modal__form__item label {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 16px;
}

.modal__form__item label span {
    color: #C13232;
}

.modal__form__item input {
    padding: 17px;
    border-radius: 12px;
    outline: none;
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: #a2a2a2;
    background-color: #f3f3f3;
}

.modal__form__item textarea {
    font-family: 'Inter';
    padding: 17px;
    border-radius: 12px;
    outline: none;
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: #a2a2a2;
    background-color: #f3f3f3;
}

.modal__form_button {
    display: block;
    width: 100%;
    margin-top: 28px;
    padding: 15px 0;
    border-radius: 12px;
    outline: none;
    border: none;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
    background-color: #448749;
}

.modal__form__read {
    display: block;

}


@media(max-width: 550px) {
    .modal {
        width: 80%;
    }
}

.single__truby__images {
    display: flex;
    justify-content: space-between;
}


.transportation__storage__table img {
    width: 100%;
}

.transportation__storage__note-title {
    margin-bottom: 15px;
}

.transportation__storage__note-title span {
    font-weight: bold;
}

.transportation__storage__table {
    margin: 20px 0;
}


.transportation__storage__item_title {
    font-weight: bold;
}

.transportation__storage__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 32px 0;
}

.transportation__storage__item {
    width: 48%;
}

.transportation__storage__item img {
    width: 100%;
}

.transportation__storage__height img {
    width: 100%;
}

@media(max-width: 1090px) {
    .transportation__storage__items {
        justify-content: center;
    }

    .transportation__storage__item {
        width: 100%;
    }

    .transportation__storage__item img {
        display: block;
        width: 60%;
        margin: 0 auto;
    }
}

.installation__content {
    display: flex;
    margin-bottom: 32px;
}

.installation__desc {
    width: 70%;
}

.installation__img {
    width: 30%;
}

.installation__img img {
    width: 100%;
}


.installation__content__contact {
    display: flex;
}

.installation__content__contact-iamge {}



.installation__content__contact-iamge img {
    width: 370px;
    height: auto;
    border-radius: 15px;
}

.installation__fitst__line-accardion_minidesc {
    margin: 20px 0;
}

.installation__fitst__line-accardion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
    padding: 20px 0;
}

.installation__fitst__line-accardion_txt-title {
    font-weight: bold;
    margin-bottom: 12px;
}

.installation__fitst__line-accardion img {
    width: 50%;
}

.installation__fitst__line-accardion_images {
    display: flex;
    justify-content: end;
}

.installation__two__line-accardion {
    display: flex;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
    padding: 20px 0;
}

.installation__two__line-accardion:first-child {
    border-top: none;
}

.installation__two__line-accardion img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
}

.installation__two__line-accardion_txt {
    width: 65%;
    margin-right: 20px;
}

.installation__two__line-accardion_txt-title {
    font-weight: bold;
}

.installation__two__line-accardion_images {
    width: 35%;
}


.installation__two__line-accardion-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.installation__two__line-accardion-item {
    display: flex;
    width: 48%;
    margin-bottom: 20px;
}

.installation__two__line-accardion-item__nymber {
    display: block;
    font-size: 24px;
    font-weight: 400;
    margin-right: 8px;
}

.installation__two__line-accardion-item__txt {
    display: flex;
    width: 70%;
}

.installation__two__line-accardion-item__image {
    width: 30%;
}


.installation__two__line-accardion-item__image img {
    width: 100%;
}

@media(max-width:1040px) {
    .installation__two__line-accardion-items {
        flex-direction: column;
    }

    .installation__two__line-accardion-item {
        width: 100%;
        flex-direction: column;
    }

    .installation__two__line-accardion-item__txt {
        width: 100%;
    }

    .installation__two__line-accardion-item__image {
        width: 180px;
        margin-top: 20px;
    }
}


@media(max-width:980px) {
    .installation__two__line-accardion {
        flex-direction: column;
    }

    .installation__two__line-accardion_txt {
        width: 100%;
        margin-right: 0;
    }

    .installation__two__line-accardion_images {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .installation__two__line-accardion img {
        width: 50% !important;
    }
}


@media(max-width: 940px) {
    .installation__content__contact {
        flex-direction: column;
    }

    .installation__content__contact-iamge {
        display: flex;
        justify-content: center;
    }
}

@media(max-width: 930px) {
    .installation__content {
        flex-direction: column;
    }

    .installation__desc {
        width: 100%;
    }

    .installation__img {
        margin: 0 auto;
        width: 50%;
    }

    .installation__fitst__line-accardion {
        flex-direction: column;
    }

    .installation__fitst__line-accardion_images {
        flex-direction: column;
        justify-content: center;
    }

    .installation__fitst__line-accardion img {
        width: 100%;
    }


}

@media(max-width: 720px) {
    .installation__two__line-accardion img {
        width: 100% !important;
    }

    .installation__content__contact-iamge img {
        width: 100%;
    }
}


.coatings__footer img {
    width: 100%;
    margin-bottom: 60px;
}

.coatings__footer img:first-child {
    height: 600px;
    object-fit: cover;
}

.coatings__footer img:nth-child(2) {
    margin-bottom: 0;
}


@media(max-width: 720px) {
    .coatings__footer {
        display: flex;
        flex-direction: column-reverse;
    }

    .coatings__footer img {
        margin-bottom: 0;
    }

    .coatings__footer img:nth-child(2) {
        margin-bottom: 32px;
    }
}

.alignleft {

    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {

    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.grecaptcha-badge {
	display:none !important;
}