header{
    padding: 15px 0;
}
.header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo img{
    height: auto;
    width: 100%
}
.menu-toggle{line-height: 0}
.menu-toggle i{
    font-size: 54px;
    color: var(--color-green);
}
.header-menu-block{
    position: fixed;
    height: 100vh;
    width: 100vw;
    left: 110vw;
    top: 0;
    background: var(--color-white);
    padding: 14px 20px 52px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    transition: var(--base-transition);
    justify-content: space-between;
    z-index: 150;
}
.open-main-menu .header-menu-block{
    left: 0;
}
.header-menu-wrapper{
    padding: 26px 18px;
    background: var(--color-green-main);
    border-radius: 25px;
    width: 100%;
    margin-bottom: 14px;
    height: calc(100% - 50px );
}
.header-menu-mobile-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.header-menu-mobile-top img{
    height: 24px;
    width: auto;
}
.header-menu-close{
    line-height: 0;
}
.header-menu-close i:before{
    color: var(--color-white);
    font-size: 33px;
}
.header-main-menu{
    height: calc(100% - 83px);
    overflow-y: auto;
}
.header-main-menu .menu{
    padding: 0;
    margin: 0;
}
.top-header{
    display: none;
}
.top-phone-mobile{
    background: var(--color-green-main);
    border-radius: 50px;
    padding: 5px 15px;
    line-height: 0;
}

.top-header-middle .dropdown-custom .dropdown-custom-toggle-js{
    background: var(--color-green-main);
    border-radius: 50px;
    padding: 5px 15px;
    line-height: 0;
    height: auto;
    border: none;
}
.top-header-middle .dropdown-custom-content{
    bottom: auto;
    top: calc(100% + 4px);
}
.top-header-middle .inner{
    column-gap: 3px;
}
.top-header-middle .inner .languages-dropdown{
    order: 16;
}
.top-header-middle .dropdown-custom.languages-dropdown .dropdown-custom-toggle-js{
    font-size: 14px;
    line-height: 14px;
    background: none;
    border: 1px solid #EAEAEA;
    color: var(--color-green-main);
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 5px;
}
.top-header-left,
.top-header-middle{
    width: 95px;
    flex-shrink: 0;
}
.top-header-middle .dropdown-custom.languages-dropdown .dropdown-custom-toggle-js i:before{
    font-size: 8px;
}
.top-header-middle{
    order: 62;
}
ul.menu{
    list-style: none;
}
ul.menu{
    display: flex;
    row-gap: 75px;
    flex-direction: column;
}
.menu ul.sub-menu{
    display: none;
    flex-direction: column;
    list-style: none;
    row-gap: 20px;
    width: 100%;
    margin-top: 25px;
}
.menu ul > li > a{}
.menu  a{
    font-size: 24px;
    line-height: 24px;
    color: var(--color-white);
    text-decoration: none;
}
.toggle-sub-menu{line-height: 0;transition: var(--base-transition)}
.toggle-sub-menu i:before{
    font-size: 29px;
    color: var(--color-white);
}
.menu-item-has-children{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.menu-item-has-children > a{
    width: calc(100% - 35px);
}
.show-sub-menu .toggle-sub-menu{
    transform: rotate(90deg);
}
.menu .show-sub-menu > ul.sub-menu{
    display: flex;
}

.languages-switcher ul{
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding: 0;
    margin: 0;
}
.languages-switcher ul li a,
.languages-switcher ul li span{
    width: 58px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-family: sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    border: 1px solid #EAEAEA;
    transition: var(--base-transition);
    text-decoration: none;
    text-transform: uppercase;
    color: var(--color-black);
}
.languages-switcher ul li a:hover,
.languages-switcher ul li span{
    background: var(--color-green-main);
    color: var(--color-white);
    font-weight: 700;
}

.dropdown-custom {
    position: relative;
}
.header-phones{
    order: 6;
}
.dropdown-custom .dropdown-custom-toggle-js{
    height: 36px;
    width: auto;
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding: 0 12px;
    border: 1px solid #EAEAEA;
    color: var(--color-black);
    border-radius: 30px;
    font-size: 16px;
    line-height: 16px;
}
.dropdown-custom .dropdown-custom-toggle-js i:before{
    color: #D9D9D9;
    font-size: 13px;
    transition: var(--base-transition);
}
.dropdown-custom-content {
    display: none;
    flex-direction: column;
    padding: 9px;
    border-radius: 5px;
    position: absolute;
    width: max-content;
    right: 0;
    bottom: calc(100% - -4px);
    z-index: 666;
    row-gap: 10px;
    border: 1px solid #EAEAEA;
    background: var(--color-white);
}
.dropdown-custom-content a {
    color: var(--color-black);
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
}
.open-dropdown .dropdown-custom-toggle-js i:before{
    transform: rotate(180deg);
}
.open-dropdown .dropdown-custom-content {
    display: flex;
}

.section-banner-block-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 10px;
    background: var(--color-green-main);
    border-radius: 25px;
    overflow: hidden;
    row-gap: 15px;
}
.section-banner-block-wrapper .mask-image-waves{
    display: none;
}
.section-banner-block-wrapper .content{
    order: 2;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    position: relative;
    z-index: 6;
}
.section-banner-block-wrapper .image {
    height: 338px;
    width: auto;
}
.section-banner-block-wrapper .image img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.section-banner-block-wrapper .mask-image-paper{
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}
.section-banner-block-wrapper .mask-image-paper img{
    max-width: 350px;
    height: auto;
    width: 100%;
}
.section-banner-block-wrapper .h2{
    text-align: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 38px;
    line-height: 42px;
}
.section-banner-block-wrapper .banner-header-2{
    text-align: center;
    width: 100%;
    background: var(--color-green-dark);
    border-radius: 19px;
    padding: 12px;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: var(--color-white);
}
.section-banner-block-wrapper .banner-header-2 + .banner-link{
    margin-top: 10px;
}
.section-banner-block-wrapper .banner-text{
    text-align: center;
    color: var(--color-white);
}
.section-banner-block-wrapper .banner-text a{
    text-decoration: underline;
}
.section-about-block-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
}
.section-about-block-wrapper .image{
    border-radius: 25px;
    overflow: hidden;
}
.section-about-block-wrapper .content .h2{
    text-align: center;
    margin-bottom: 15px;
}
.section-about-block-wrapper .content .about-text{
    text-align: center;
}
.section-about-block-wrapper .mask-image-paper{
    display: none;
}
.section-about-block-wrapper .content .about-text p{
    margin-bottom: 0;
}

.images-wrapper .product-image.active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(-50%,-45%,0) rotate(0deg);
    transition: opacity 1s cubic-bezier(.215,.61,.355,1),transform 1s cubic-bezier(.215,.61,.355,1),visibility 1s cubic-bezier(.215,.61,.355,1),background-size 1s cubic-bezier(.215,.61,.355,1),box-shadow .3s cubic-bezier(.215,.61,.355,1);
    transition-delay: .3s;
    z-index: 9;
}


.images-wrapper .product-image {
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate3d(-30%,-30%,0) rotate(15deg);
    opacity: 0;
    visibility: hidden;
    transition: all .1s cubic-bezier(.215,.61,.355,1);
    max-height: 277px;
    height: auto;
    width: auto
}

.section-products-wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    background: #F5F5F5;
    overflow: hidden;
    max-height: 90vh;
}


.section-products-wrapper .images-wrapper{
    padding: 22px 35px;
}
.section-products-wrapper .images-wrapper .images-block{
    height: 277px;
    width: 100%;
    overflow: hidden;
}
.section-products-wrapper .images-wrapper .products-link{
    display: none;
}
.section-products-wrapper .images-wrapper .h2{
    margin-bottom: 5px;
    text-align: center;
}
.section-products-wrapper .images-wrapper .products-text{
    text-align: center;
}
.section-products-wrapper .links-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    overflow-y: scroll;
}
.section-products-wrapper .links-wrapper::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px;
}
.section-products-wrapper .links-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.section-products-wrapper .links-wrapper::-webkit-scrollbar-track {
    background: none
}


.section-products-wrapper .links-wrapper .product-link{
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid #C8C8C8;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
}
.section-products-wrapper .links-wrapper .product-link:last-of-type{
    border-bottom: none;
}
.section-products-block .products-link{
    margin-top: 15px;
    text-align: center;
}

.section-products-wrapper img.products-waves{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.section-products-wrapper .header-block{
    position: relative;
    z-index: 9;
}

.section-cycle-block .cycle-items{
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 60px;
}
.section-cycle-block .section-header-link{
    margin-bottom: 17px;
}
.section-cycle-block .cycle-items .cycle-item{
    height: 123px;
    padding: 0 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: relative;
    border-radius: 25px;
    cursor: pointer;
    background: linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 100%);
}
.section-cycle-block .cycle-items .cycle-item .number{
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    background: var(--color-green-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    top: -40px;
}
.section-cycle-block .cycle-items .cycle-item:first-of-type{
    margin-top: 43px;
}
.section-cycle-block .cycle-items .cycle-item:after{
    position: absolute;
    bottom: -21px;
    height: 21px;
    width: 1px;
    left: calc(50% - 0.5px);
    background: var(--color-green-main);
    content: "";
}
.section-cycle-block .cycle-items .cycle-item:last-of-type:after{
    display: none;
}
.section-cycle-block .cycle-items .cycle-item .header{
    font-weight: 700;
    text-align: center;
}

.section-cycle-block.cycle-block-alt{
    width: 100%;
    overflow: hidden;
}
@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.section-services-wrapper .links-wrapper{
    border-radius: 25px;
    padding: 33px;
    background: var(--color-green-main);
    z-index: 9;
}
.section-services-wrapper .links-wrapper ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    row-gap: 56px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
.section-services-wrapper .links-wrapper ul a{
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: var(--color-white);
    text-decoration: none;
}

.section-services-wrapper .section-header-link{
    margin-bottom: 25px;
}
.section-services-wrapper .services-waves{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
}
.section-header-link{
    text-align: center;
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.section-header-link .h2{
    text-align: center;
}
.section-header-link  a{
    display: none;
}
.section-text{
    text-align: center;
}
.section-technologies-items .item{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    padding: 15px 10px;
    z-index: 9;
}
.section-technologies-items .item .item-top{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    margin-bottom: 7px;
}
.section-technologies-items .item .image {
    flex-shrink: 0;
}
.section-technologies-items .item .image img{
    width: 72px;
    height: auto;
}
.section-technologies-items .item .text{
    margin-bottom: 15px;
}
.section-technologies-items .item .link-more{
    color: var(--color-green-main);
}
.section-technologies-items{
    margin-top: 60px;
}
.section-technologies-items .container{
    background: #F5F5F5;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 25px;
}

.section-technologies-wrapper .technologies-waves{
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
}
/* Block 6 */

.section-advantages-block .h2{
    text-align: center;
    margin-bottom: 5px;
}
.section-advantages-block .advantages-item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
}
.section-advantages-block .advantages-item .image{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23px 0 18px;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(0deg, #FFFFFF 0%, var(--color-grey) 100%);
}
.section-advantages-block .advantages-item .text{
    color: var(--color-black);
}
.section-advantages-block .advantages-item .image img{
    height: 95px;
    width: auto;
}
.section-info-blocks-block .item{
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
}
.section-info-blocks-block .image{
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.section-info-blocks-block .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-info-blocks-block .item .content{
    padding: 210px 18px 30px;
    background: linear-gradient(0deg, #00993C 0%, #00993C 51%, rgba(255, 255, 255, 0) 100%);
    z-index: 9;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section-info-blocks-block .item .link-more,
.section-info-blocks-block .item .text,
.section-info-blocks-block .item .h2{
    text-align: center;
    color: var(--color-white);
    margin-bottom: 5px;
    position: relative;
    z-index: 10;
}
.section-info-blocks-block .item .text{
    margin-bottom: 25px;
}
.section-info-blocks-block .item .info-blocks-waves{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
}

.section-certificates-wrapper{
    background: var(--color-grey);
    border-radius: 25px;
    padding: 30px 0;
}
.section-certificates-wrapper .image{
    height: auto;
    margin-bottom: 25px;
    position: relative;
    padding-top: 40px;
}
.section-certificates-items .item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-certificates-wrapper .image img{
    width: auto;
    height: 286px;
}
.section-certificates-wrapper .image img.image-badge{
    position: absolute;
    top: 0;
    left: -20px;
    width: 130px;
    height: auto;
}
.section-certificates-wrapper .content{
    padding: 0 25px;
}
.section-certificates-wrapper .h3{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}
.section-certificates-wrapper .section-header-link{
    margin-bottom: 25px;
}
.section-news-block .item{
    display: flex;
    flex-direction: column;
    padding: 22px 18px;
    border-radius: 25px;
    background: var(--color-white);
    box-shadow: 0px 3px 48.2px 0px #00000021;
    text-decoration: none;
    color: var(--color-black);
    text-align: center;
    row-gap: 10px;
}
.post-date,
.section-news-block .item .post-date{
    color: #C4C4C4;
}
.section-news-block .item .h3{
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}
.section-news-block .item .link-more{
    color: var(--color-green-main);
    text-decoration: underline;
    margin-top: 20px;
}

.swiper-gallery-carousel-item a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 280px;
    border-radius: 25px;
    overflow: hidden;
}
.swiper-gallery-carousel-item a img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.gallery-carousel-item-images-2{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.swiper-gallery-carousel-item.gallery-carousel-item-images-2 a{
    height: calc((280px - 20px) / 2);
}

.custom-swiper-pagination{
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}
.custom-swiper-pagination .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #F7F4F4;
}
.custom-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #D9D9D9;

}
.section-logotypes-block .inner-wrapper{
    border-radius: 25px;
    background: #F5F5F5;
    overflow: hidden;
    padding: 35px 0;
}
.section-logotypes-block .h2{
    margin-bottom: 5px;
}
.section-logotypes-block .text,
.section-logotypes-block .h2{
    text-align: center;
}
.section-logotypes-block .text{
    margin-bottom: 35px;
}
.section-logotypes-block .swiper-wrapper .swiper-slide{
    height: auto;
    display: flex;
    align-items: center;
}
.section-logotypes-block .swiper-logotypes-item{
    display: flex;
    height: 100%;
    align-items: center;
}
.section-logotypes-block .swiper-logotypes-item img{
    width: 100%;
    height: auto;
}
.section-logotypes-block .logo-waves{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
}
.section-logotypes-block .pos-relative{
    z-index: 9;
}

.copyright-block{
    font-weight: 400;
    font-size: 14px;
    line-height: 16.94px;
    color: var(--color-black);
    padding-top: 19px;
    padding-bottom: 19px;
    display: flex;
    flex-direction: column;

}
.copyright-block img{
    height: 16px;
    width: auto;
}
.copyright-block div:last-of-type {
    display: flex;
    column-gap: 5px;
    line-height: 10px;
    align-items: flex-end;
}
.section-footer{
    background: #00451B;
    padding: 40px 0 60px;
}
.footer-logo img{
    height: 63px;
    width: auto;
}
.footer-logo{
    margin-bottom: 40px;
}
.footer-socials{
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.footer-socials a{
    text-decoration: none;
    color: var(--color-white);
}
.footer-socials a i:before{
    font-size: 22px;
    line-height: 22px;
}
.footer-socials a img {
    width: 24px;
    height: auto;
}
.section-footer .row{
    row-gap: 40px;
}
.footer-header{
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: var(--color-white);
}
.footer-header.mb-20{
    margin-bottom: 25px;
}
.footer-menu ul{
    margin: 0;
    padding: 0;
    row-gap: 18px;
}
.footer-menu ul li a{
    font-size: 14px;
    line-height: 18px;
}
.footer-phones{
    display: flex;
    flex-direction: column;
}
.footer-phones a,
.footer-contacts-text{
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--color-white);
    text-decoration: none;
}
.footer-qr-code picture{
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 120px;
    overflow: hidden;
}
.footer-qr-code picture img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.map-block{
    line-height: 0;
    overflow: hidden;
    border-radius: 25px;
}
.section-header{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: var(--color-black);
}
.custom-form form p{
    margin-bottom: 0;
}
.custom-form form{
    width: 100%;
}
.custom-form input::placeholder,
.custom-form textarea::placeholder{
    color: #C1C1C1;
}
.custom-form textarea,
.custom-form input{
    text-align: center;
    width: 100%;
    padding: 25px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    border: none;
    border-radius: 25px;
    background: #F3EEEE;
    margin-bottom: 10px;
}
.custom-form textarea{
    height: 144px;
}

.custom-form input.submit-button{
    background: var(--color-green-main);
    font-weight: 500;
    padding: 25px;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    color: var(--color-white);
    border: 1px solid var(--color-green-main);
    transition: var(--base-transition);
    white-space: normal;
    margin-bottom: 0;
}
.custom-form input.submit-button:hover{
    background: var(--color-white);
    color: var(--color-black);
}
.map-block iframe{
    height: 284px;
}

.bordered-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
}
.section-text-image .text .h2,
.section-image-text .text .h2{
    margin-bottom: 16px;
    text-align: center;
}

.breadcrumbs-block-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-grey);
    border-radius: 25px;
    padding: 20px 25px;
    overflow: hidden;
    min-height: 150px;
}
.breadcrumbs-items{
    margin-bottom: 20px;
}
.breadcrumbs-items a,
.breadcrumbs-items span{
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0,0,0,.5);
}
.breadcrumbs-block-inner .image{
    position: relative;
    z-index: 9;
    /*margin-bottom: -60px;*/
}
.breadcrumbs-block-inner .image img{
    height: 310px;
    width: auto;
}
.breadcrumbs-block-inner .content{
    z-index: 9;
}
.breadcrumbs-block-inner .h1{
    margin-bottom: 20px;
}
.breadcrumbs-block-inner .waves{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
}
.news-item{
    display: flex;
    flex-direction: column;
    padding: 15px 13px;
    border-radius: 25px;
    background: var(--color-white);
    box-shadow: 0px 3px 48.2px 0px #00000021;
    text-decoration: none;
    color: var(--color-black);
}
.news-item .image{
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 8px;
}
.news-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-item .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.news-item .content .post-date{
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 16px;
}
.news-item .content .h3{
    text-transform: uppercase;
    margin-bottom: 10px;
}
.news-item .content .text{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    width: 100%;
    margin-bottom: 25px;
}
.news-item .content .link-more{
    color: var(--color-green-main);
    text-decoration: underline;
}
.screen-reader-text{
    display: none;
}
.navigation .nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
}
.navigation .nav-links a,
.navigation .nav-links span{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    text-decoration: none;
    box-shadow: 0px 3px 15.2px 0px #00000021;
    font-size: 16px;
    line-height: 16px;
    color: var(--color-green-main);
    font-weight: 500;
    transition: var(--base-transition);
}
.navigation .nav-links a:hover,
.navigation .nav-links span.current{
    color: var(--color-white);
    background:  var(--color-green-main);;
}
.navigation .nav-links a.prev i:before{
    transform: rotate(180deg);
}
.section-breadcrumbs-block-alt .image{
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    overflow: hidden;
}
.section-breadcrumbs-block-alt .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-content-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-grey);
    border-radius: 25px;
    padding: 25px 15px;
    text-align: center;
}
.post-content-header-inner h1{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
}
.post-content-header-inner{
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
}
.section-gallery-block-2 .h2{
    text-align: center;
}
.section-gallery-block-2 .gallery-carousel-item-images-4{
    gap: 8px;
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
}
.swiper-gallery-carousel-item.gallery-carousel-item-images-4 a{
    height: 133px;
    width: calc(50% - 4px);
    background: linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 100%);
    padding: 10px;
}
.section-gallery-block-2 .swiper-gallery-carousel-item.gallery-carousel-item-images-1 a img,
.section-gallery-block-2 .swiper-gallery-carousel-item.gallery-carousel-item-images-4 a img{
    height: 100%;
    width: auto;
    object-fit: contain;
}
.section-gallery-block-2 .swiper-gallery-carousel-item.gallery-carousel-item-images-1 a{
    height: 270px;
    background: linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 100%);
    padding: 10px;
}
.section-breadcrumbs-block-3 .breadcrumbs-block-inner .image{
    margin-bottom: 10px;
}
.section-breadcrumbs-block-3  .breadcrumbs-block-inner{
    padding: 30px 10px;
}
.section-breadcrumbs-block-3 .breadcrumbs-block-inner .image img{
    height: 347px;
    width: auto;
    object-fit: contain;
}
.section-breadcrumbs-block-3  .breadcrumbs-block-inner .content{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.section-breadcrumbs-block-3 .breadcrumbs-top-header{
    padding: 11px 29px;
    border-radius: 50px;
    background: var(--color-white);
}
.section-breadcrumbs-block-3 .breadcrumbs-block-inner .waves{
    /*height: 100%;*/
    height: 70%;
    width: 100%;
    object-fit: cover;
}


.breadcrumbs-order-btn{
    width: 100%;
    margin-top: 20px;
    border-radius: 19px;
    background: var(--color-green-main);
    padding: 25px 0;
    text-decoration: none;
    color:  var(--color-white);
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    transition: var(--base-transition);
}
.breadcrumbs-order-btn:hover{
    background: var(--color-white);
    color: var(--color-green-main);
}
.section-tabs-block .inner-wrapper{
    border-radius: 25px;
    background: var(--color-green);
    padding: 20px 0px;
}
.section-tabs-items-wrapper .h2{
    color: var(--color-white);
    text-align: center;
    margin-bottom: 15px;
}
.section-tabs-items-wrapper .section-tabs-items:not(:last-of-type){
    margin-bottom: 30px;
}

.section-tabs-items-wrapper .items{
    display: flex;
    flex-direction: column;
    row-gap: 11px;
    width: 100%;
    max-height: 200px;
    overflow-y: scroll;
}
.section-tabs-items-wrapper .items div{
    padding: 20px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 33px;
    min-height: 68px;
    border-radius: 25px;
    border: 1px solid var(--color-white);
    line-height: 14px;
    color: var(--color-white);
}
.section-tabs-items-wrapper .items div:before{
    width: 11px;
    height: 11px;
    border-radius: 20px;
    display: block;
    background: var(--color-white);
    content: "";
    flex-shrink: 0;
}
.section-advantages-block-text .advantages-item{
    background: var(--color-white);
    border-radius: 25px;
    box-shadow: 0px 3px 48.2px 0px #00000021;
    padding: 40px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    row-gap: 15px;
    transition: var(--base-transition);
}
.section-advantages-block-text .advantages-item .header{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
}
.section-image-header .bordered-img{
    height: 220px;
}
.section-image-header .bordered-img img{
    width: 100%;
    height: 100%;
    object-fit: cover   ;
}
.team-item .image{
    width: 100%;
    aspect-ratio: 1.07 / 1;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
}
.team-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-item .content .header{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
    text-align: center;
}
.team-item .content .text{
    text-align: center;
}
.section-image-header-parallax-block .inner-wrapper{
    background: var(--color-grey);
    border-radius: 25px;
    overflow: hidden;
    padding: 50px 25px 25px;
}
.image-header-parallax-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image-header-parallax-wrapper .h2{
    margin-bottom: 18px;
}
.image-header-parallax-wrapper .content,
.image-header-parallax-wrapper .h2{
    text-align: center;
}
.image-header-parallax-wrapper img{
    width: 100%;
    height: auto;
    max-width: 400px;
}
.breadcrumbs-block-inner-2{
    overflow: hidden;
    border-radius: 25px;
}
.breadcrumbs-block-inner-2 .image picture{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}
.breadcrumbs-block-inner-2 .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.breadcrumbs-block-inner-2 .content{
    min-height: 550px;
    position: relative;
    z-index: 9;
    padding: 200px 15px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(0deg, #00993C 43.03%, rgba(255, 255, 255, 0) 99.08%);
}
.breadcrumbs-block-inner-2 h1{
    margin-bottom: 18px;
    color: var(--color-white);
}
.breadcrumbs-block-inner-2 .breadcrumbs-top-content{
    color: var(--color-white);
}
.section-history-block  .inner-wrapper{
    border-radius: 25px;
    padding: 25px 0;
    background: var(--color-green-main);
}
.section-history-block  .h2{
    text-align: center;
    margin-bottom: 15px;
    color: var(--color-white);
}
.section-history-block  .item{
    padding: 0 25px;
}
.section-history-block  .item .header{
    font-weight: 700;
    font-size: 80px;
    line-height: 100px;
    color: var(--color-white);
    text-align: center;
}
.section-history-block .item .text{
    text-align: center;
    color: var(--color-white);
}
.section-history-block  .swiper-scrollbar{
    background: #DFDFDF;
    border-radius: 50px;
    padding: 3px 0;
}
.section-history-block  .swiper-scrollbar .swiper-scrollbar-drag{
    height: 11px;
    border-radius: 50px;
    display: block;
    background: #BEBEBE;
}
.section-history-block  .swiper-scrollbar{
    bottom: -55px;
    position: absolute;
    width: 100%;
    z-index: 9;
}
.section-history-block .swiper-button-prev img,
.section-history-block .swiper-button-next img{
    height: 22px;
    width: auto;
}
.section-history-block .swiper-button-prev,
.section-history-block .swiper-button-next{
    position: absolute;
    top: calc((100% - 22px) / 2);
    left: 0;
    z-index: 11;
}
.section-history-block .swiper-button-next{
    left: auto;
    right: 0;
}
.section-services-2-wrapper{
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.section-services-2-wrapper .item{
    border-radius: 25px;
    padding: 15px;
    background: var(--color-green);
}
.section-services-2-wrapper .item .image{
    margin-bottom: 22px;
}
.section-services-2-wrapper .item .image picture{
    display: flex;
    height: 310px;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.section-services-2-wrapper .item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-services-2-wrapper .item .h2{
    margin-bottom: 18px;
}
.section-services-2-wrapper .item{
    color: var(--color-white);
    text-align: center;
}
.section-services-2-wrapper .item:nth-of-type(even){
    background: var(--color-white);
    box-shadow: 0px 3px 48.2px 0px #00000021;
    color: var(--color-black);
}

.cycle-slider-wrapper {
    border-radius: 25px;
    padding: 15px 15px 65px;
    background: var(--color-green);
}

.cycle-slider-wrapper .item{

    position: relative;
}
.cycle-slider-wrapper .item .image picture{
    display: flex;
    height: 310px;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.cycle-slider-wrapper .item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cycle-slider-wrapper .item .image{
    margin-bottom: 22px;
}
.cycle-slider-wrapper .item .h2{
    margin-bottom: 18px;
}
.cycle-slider-wrapper .item{
    color: var(--color-white);
    text-align: center;
    height: 100%;
    position: relative;
}
.cycle-slider-wrapper .swiper-slide{
    height: auto;
}
.cycle-slider-wrapper .number{
    position: absolute;
    top: 8px;
    left: 8px;
    width: 63px;
    height: 63px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-green);
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}
.cycle-slider-wrapper{
    position: relative;
}

.cycle-slider-wrapper .swiper-scrollbar{
    width: calc(100% - 30px);
    left: 15px;
    position: absolute;
    z-index: 9;
    bottom: 35px;
    background: var(--color-green-main);
    padding: 3px 0;
    border-radius: 50px;

}
.cycle-slider-wrapper .swiper-scrollbar .swiper-scrollbar-drag{
    border-radius: 50px;
    height: 11px;
    background: var(--color-green);
}
.swiper-cycle-pagination{
    display: none;
}
.link-to:hover{
    cursor: pointer;
}

a {
    color: #000000;
}

iframe {
    max-width: 100%;
}

.section-breadcrumbs-block-alt .image img {
    opacity: 30%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

:root {
    --bs-link-color: #ffffff;
    --bs-link-hover-color: #b9fec5;
}



/* 404 page */
.section-404-page{
    padding: 69px 0 59px;
}
.page-404-content-wrapper{
    padding: 34px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 25px;
    background: #F5F5F5;
    overflow: hidden;
    text-align: center;
}
.page-404-content-wrapper > :not(img){
    z-index: 9;
}
.page-404-content-wrapper img.waves{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}
.page-404-content-wrapper .page-404-title{
    font-size: 128px;
    line-height: 100px;
    font-weight: 700;
    color: var(--color-black);
}
.page-404-content-wrapper .page-404-title-2{
    font-size: 44px;
    line-height: 44px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
}
.page-404-content-wrapper .page-404-subheading{
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
}
.page-404-content-wrapper .page-404-text{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 35px;
    max-width: 720px;
    text-align: center;
}
.page-404-buttons{
    width: 100%;
}
.page-404-buttons .btn{
    padding: 22px 0;
    width: 100%;
    text-align: center;
    justify-content: center;
}
/* 404 page */

.swiper-gallery-carousel-3 .swiper-button-prev,
.swiper-gallery-carousel-3 .swiper-button-next{
    display: none;
}

.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 24px;
    box-shadow: 0px 0px 30.4px -3px #00000026;
    background: var(--color-green-main);
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 55;
    opacity: .9;
    transition: var(--base-transition);
    cursor: pointer;
}
.back-to-top.show{
    display: flex;
}
.back-to-top img{
    transform: rotate(90deg);
}
.back-to-top:hover {
    opacity: 1;
}