.section-video {
    width: 100%;
    aspect-ratio: 2/1;
    position: relative;
    overflow: hidden;
}
.section-video .section__inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.section-video .section__inner:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    pointer-events: none;
    /* background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); */
    /* background: linear-gradient(180deg,rgba(48, 48, 54, 0) 0%, rgba(48, 48, 54, 1) 100%); */
    background: linear-gradient(180deg,rgba(19, 19, 25, 0) 0%, rgba(19, 19, 25, 1) 100%);
}
.section-video .section__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section-video .section__bg .section__bg-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(40%);
}



.section-video .section__content {
    width: 100%;
    height: 100%;
    padding: 20rem 12rem;
    position: relative;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-video .section__features {
    display: flex;
    align-items: stretch;
    gap: .6rem;
    margin-bottom: 3.6rem;
    flex-shrink: 0;
}
.section-video .feature-item {
    display: flex;
    align-items: center;
    height: 4rem;
    border-radius: 20rem;
    background-color: rgba(255, 255, 255, .1);
    padding: 0 2rem 0 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    gap: .6rem;
}
.section-video .feature-item:before {
    content: '';
    align-self: stretch;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.section-video .feature-item.techniques {

}
.section-video .feature-item.production:before {
    background-image: url('../../../media/img/common/icons/production-light.svg');
    width: 1.8rem;
}
.section-video .feature-item.technology:before {
    background-image: url('../../../media/img/common/icons/technology-light.svg');
    width: 2rem;
}
.section-video .feature-item.quality:before {
    background-image: url('../../../media/img/common/icons/check-badge-light.svg');
    width: 2.4rem;
}


.section-video .section__text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}
.section-video .section__text .section__title {
    font-size: 8rem;
    line-height: 1;
    color: #fff;
    max-width: 100rem;
}
.section-video .section__text .section__title b {
    font-weight: 700;
}
.section-video .section__text .section__description {
    font-size: 1.6rem;
    line-height: 1.3;
    color: #fff;
    display: block;
    margin-top: 3.6rem;
    font-weight: 200;
    opacity: .7;
    max-width: 100rem;
}
.section-video .section__text .section__actions {
    display: flex;
    gap: 6rem;
    align-items: center;
    margin-top: 6rem;
}
.section-video .section__text .section__links {
    display: flex;
    gap: .6rem;
    align-items: stretch;
    flex-wrap: wrap;
}
.section-video .section__text .section__link {
    display: flex;
    align-items: center;
    border-radius: 20rem;
    height: 6rem;
    padding: 0 3.6rem;
    font-size: 1.6rem;
    background-color: #FC5130;
    color: #fff;
    transition: .2s;
}
.section-video .section__text .section__link:hover {
    opacity: .8;
}
.section-video .section__text .section__link.catalog {
    background-color: rgba(255, 255, 255, .1);
}
.section-video .section__text .section__actions .video-toggle {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: .2s;
}
.section-video .section__text .section__actions .video-toggle:hover {
    opacity: .8;
}
.section-video .section__text .section__actions .video-toggle .video-toggle__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background-color: #FC5130;
    border-radius: 20rem;
    flex-shrink: 0;
    padding-left: .2rem;
}
.section-video .section__text .section__actions .video-toggle .video-toggle__icon {
    display: block;
    background-image: url('../../../media/img/common/icons/play-light.svg');
    width: 1.8rem;
    align-self: stretch;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.section-video .section__text .section__actions .video-toggle .video-toggle__label {
    line-height: 1.2;
}



.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(1rem);
    transition: .3s;
    z-index: 1000;
    padding: 12rem;
    opacity: 0;
    pointer-events: none;
}
.video-popup.active {
    opacity: 1;
    pointer-events: auto;
}
.video-popup .video-popup-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 8rem;
    height: 8rem;
    border-radius: 20rem;
    background-color: #FC5130;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1050;
    transition: .3s;
}
.video-popup .video-popup-close:hover {
    transform: rotate(90deg);
    opacity: .8;
}
.video-popup .video-popup-close:before {
    content: '';
    align-self: stretch;
    display: flex;
    background-image: url('../../../media/img/common/icons/close-light.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 40%;
}
.video-popup .video-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.video-popup .video {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}
















.about {
    width: 100%;
    display: flex;
    align-items: center;
    /* background-color: #fff; */
    padding: 0 12rem;
    gap: 8rem;
    margin-top: 6rem;
}
.about__info {
    width: calc(50% - 4rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 0;
}
.about__title {
    display: block;
    flex-shrink: 0;
    font-size: 6rem;
    font-weight: 700;
}
.about__text {
    margin-top: 3.6rem;
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 200;
}
.about .about-link {
    padding: 0 .6rem 0 3.6rem;
    height: 6rem;
    border-radius: 20rem;
    background-color: #FC5130;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.6rem;
    margin-top: 5.2rem;
    align-self: flex-start;
    transition: .2s;
}
.about .about-link:hover {
    opacity: .8;
}
.about .about-link .about-link__label {
    display: block;
    font-size: 1.6rem;
    color: #fff;
}
.about .about-link:after {
    content: '';
    width: 4.8rem;
    height: 4.8rem;
    flex-shrink: 0;
    border-radius: 20rem;
    background-image: url('./../../../media/img/common/icons/arrow-right-light.svg');
    background-size: .8rem;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-color: #131319;
}
.about__img {
    width: calc(50% - 4rem);
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    aspect-ratio: 1/1;
}
.about__img img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(30%);
}


.about__img .video-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    cursor: pointer;
}
.about__img .video-toggle .video-toggle__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 10rem;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 20rem;
    flex-shrink: 0;
    padding-left: .2rem;
    transition: .3s;
}
.about__img .video-toggle:hover .video-toggle__icon-wrap {
    background-color: #FC5130;
}
.about__img .video-toggle .video-toggle__icon {
    display: block;
    background-image: url('../../../media/img/common/icons/play-light.svg');
    width: 1.8rem;
    align-self: stretch;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.about__img .video-toggle .video-toggle__label {
    line-height: 1.2;
    display: block;
    text-align: center;
}












.section-features {
    margin-top: 10rem;
    width: 100%;
    padding: 0 12rem;
}
.section-features .features-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3.6rem;
}
.section-features .features-list .feature-item {
    width: 100%;
    display: flex;
    align-items: center;
    /* flex-direction: column; */
    gap: 2rem;
}
.section-features .features-list .feature-item .feature-item__icon-wrap {
    flex-shrink: 0;
    width: 20%;
    display: flex;
    align-items: stretch;
    aspect-ratio: 1/1;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 20rem;
    padding: 2rem;
}
.section-features .features-list .feature-item .feature-item__icon {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 100%;
}
.section-features .features-list .feature-item:first-child .feature-item__icon {
    background-image: url('../../../media/img/common/icons/production-light.svg');
}
.section-features .features-list .feature-item:nth-child(2) .feature-item__icon {
    background-image: url('../../../media/img/common/icons/switzerland-svgrepo-com.svg');
}
.section-features .features-list .feature-item:nth-child(3) .feature-item__icon {
    background-image: url('../../../media/img/common/icons/laboratory-microscope-svgrepo-com.svg');
}
.section-features .features-list .feature-item:nth-child(4) .feature-item__icon {
    background-image: url('../../../media/img/common/icons/chemistry-chemical-formula-svgrepo-com.svg');
}
.section-features .features-list .feature-item:nth-child(5) .feature-item__icon {
    background-image: url('../../../media/img/common/icons/percent-light.svg');
}
.section-features .features-list .feature-item .feature-item__text {
    font-size: 1.6rem;
    line-height: 1.2;
}









.section-stats {
    margin-top: 10rem;
    width: 100%;
    padding: 0 12rem;
}
.section-stats .section__inner {
    width: 100%;
}
.section-stats .section__content {
    width: 100%;
}
.section-stats .stats-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 2.4rem;
    overflow: hidden;
}
.section-stats .stats-list .list-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    /* background-color: rgba(0, 0, 0, .3); */
    /* padding: 6rem 3.6rem; */
    /* border-radius: 1.2rem; */
}
.section-stats .stats-list .list-item .list-item__title {
    font-size: 5.2rem;
    font-weight: 700;
    display: block;
    color: #FC5130;
}
.section-stats .stats-list .list-item .list-item__title:after {
    display: block;
    content: '';
    width: 30%;
    height: .2rem;
    background-color: #FC5130;
    /* opacity: .3; */
    border-radius: .6rem;
    margin-top: 2rem;
}
.section-stats .stats-list .list-item .list-item__description {
    line-height: 1.3;
    display: block;
    font-size: 2rem;
    font-weight: 200;
    margin-top: 1.2rem;
}
















.section-offer {
    width: calc(100% - 12rem);
    overflow: hidden;
    position: relative;
    border-radius: 1.2rem;
    display: flex;
    align-items: stretch;
    margin: 10rem auto 0;
}
.section-offer .section__inner {
    width: 100%;
    position: relative;
}
.section-offer .section__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section-offer .section__bg .section__bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(40%);
}
.section-offer .section__content {
    width: 100%;
    height: 100%;
    padding: 12rem;
    position: relative;
    z-index: 50;
    display: flex;
    flex-direction: column;
}
.section-offer .section__features {
    display: flex;
    align-items: stretch;
    gap: .6rem;
    margin-bottom: 3.6rem;
    flex-shrink: 0;
}
.section-offer .feature-item {
    display: flex;
    align-items: center;
    height: 4rem;
    border-radius: 20rem;
    background-color: rgba(255, 255, 255, .1);
    padding: 0 2rem 0 .8rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    gap: .6rem;
}
.section-offer .feature-item:before {
    content: '';
    align-self: stretch;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.section-offer .feature-item.quality:before {
    background-image: url('../../../media/img/common/icons/check-badge-light.svg');
    width: 2.4rem;
}


.section-offer .section__text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    max-width: 60%;
}
.section-offer .section__text .section__title {
    font-size: 4.8rem;
    line-height: 1;
    font-weight: 700;
    color: #fff;
}
.section-offer .section__text .section__title b {
    font-weight: 700;
}
.section-offer .section__text .section__description {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 200;
    color: #fff;
    display: block;
    margin-top: 3.6rem;
}
.section-offer .section__text .section__links {
    display: flex;
    margin-top: 6rem;
    gap: .6rem;
    align-items: stretch;
    flex-wrap: wrap;
}
.section-offer .section__text .section__link {
    padding: 0 .6rem 0 3.6rem;
    height: 6rem;
    border-radius: 20rem;
    background-color: #FC5130;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.6rem;
    align-self: flex-start;
    transition: .2s;
}
.section-offer .section__text .section__link:hover {
    opacity: .8;
}
.section-offer .section__text .section__link .link__label {
    display: block;
    font-size: 1.6rem;
    color: #fff;
}
.section-offer .section__text .section__link:after {
    content: '';
    width: 4.8rem;
    height: 4.8rem;
    flex-shrink: 0;
    border-radius: 20rem;
    background-image: url('./../../../media/img/common/icons/arrow-right-light.svg');
    background-size: .8rem;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-color: #131319;
}















.section-products {
    margin-top: 10rem;
    width: 100%;
}
.section-products .section__inner {
    width: 100%;
}
.section-products .section__heading {
    padding: 0 12rem;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 3.6rem;
    width: 100%;
}
.section-products .section__heading .section__heading-line {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    width: 100%;
}
.section-products .section__heading .section__title {
    display: block;
    flex-shrink: 0;
    font-size: 6rem;
    font-weight: 700;
}
.section-products .section__heading .link-to-all {
    padding: 0 3.6rem;
    height: 6rem;
    border-radius: 20rem;
    background-color: #FC5130;
    display: flex;
    align-items: center;
    transition: .2s;
    font-size: 1.6rem;
    color: #fff;
    transition: .2s;
    flex-shrink: 0;
}
.section-products .section__heading .link-to-all:hover {
    opacity: .8;
}
.section-products .section__heading .swiper-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3.6rem;
}
.section-products .section__heading .swiper-controls .swiper-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .2rem;
    flex-shrink: 0;
    overflow: hidden;
}
.section-products .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button {
    width: 6rem;
    height: 6rem;
    background-color: rgba(255, 255, 255, .1);
    flex-shrink: 0;
    display: flex;
    border-radius: 1.2rem;
    cursor: pointer;
    transition: .2s;
    justify-content: center;
    align-items: center;
}
.section-products .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button:not(.swiper-button-disabled):hover {
    opacity: .8;
}
.section-products .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button.swiper-button-disabled {
    opacity: .5;
    cursor: not-allowed;
}
.section-products .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button.swiper-button-lock {
    pointer-events: none;
    display: none;
}
.section-products .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button.prev {
    background-image: url('./../../../media/img/common/icons/arrow-left-light.svg');
    background-size: .8rem;
    background-position: center;
    background-repeat: no-repeat;
}
.section-products .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button.next {
    background-image: url('./../../../media/img/common/icons/arrow-right-light.svg');
    background-size: .8rem;
    background-position: center;
    background-repeat: no-repeat;
}

.section-products .section__heading .swiper-pagination {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, .1);
    height: .2rem;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
}
.section-products .section__heading .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: #FC5130;
    height: .2rem;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
}


.section-products .section__content {
    margin-top: 4.8rem;
}

.section-products .swiper {
    padding: 0 12rem;
}
.section-products .swiper-slide {
    display: flex;
    align-items: stretch;
}
.section-products .post-product {
    width: 100%;
    display: flex;
    align-items: stretch;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 1.2rem;
    padding: 3.6rem;
}
.section-products .post-product .post__inner {
    width: 100%;
    display: flex;
    align-items: stretch;
}
.section-products .post-product .post__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.section-products .post-product .post__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2/1;
    overflow: hidden;
    border-radius: .6rem;
    flex-shrink: 0;
}
.section-products .post-product .post__image-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section-products .post-product .post__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-products .post-product .post__details {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    flex-grow: 1;
}
.section-products .post-product .post__title {
    font-size: 2rem;
    line-height: 1.2;
    display: block;
    font-weight: 400;
}
.section-products .post-product .post__description {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #fff;
}
.section-products .post-product .post__link {
    display: flex;
    align-items: center;
    border-radius: 20rem;
    height: 3.8rem;
    font-size: 1.4rem;
    background-color: #FC5130;
    padding: 0 2.4rem;
    color: #fff;
    margin-top: 2rem;
    flex-shrink: 0;
    transition: .2s;
    align-self: flex-start;
}
.section-products .post-product .post__link:hover {
    opacity: .8;
}

























.section-services {
    margin-top: 10rem;
}
.section-services .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4.8rem;
}
.section-services .section__heading {
    padding: 0 12rem;
}
.section-services .section__title {
    display: block;
    flex-shrink: 0;
    font-size: 6rem;
    font-weight: 700;
}
.section-services .section__body {

}
.section-services .section__content {
    padding: 0 12rem;
}
.section-services .services-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}
.section-services .service-item {
    background-color: rgba(0, 0, 0, .2);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 1.2rem;
    padding: 6rem;
    overflow: hidden;
    justify-content: flex-start;
}
.section-services .service-item .service-item__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 100rem;
    aspect-ratio: 16/9;
    width: 50%;
}
.section-services .service-item .service-item__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-services .service-item .service-item__info {
    margin-top: 3.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    flex-grow: 1;
}
.section-services .service-item .service-item__title {
    display: block;
    line-height: 1.2;
    font-size: 2.4rem;
    font-weight: 400;
    display: flex;
    gap: 1.2rem;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}
.section-services .service-item .service-item__description {
    display: block;
    font-size: 1.4rem;
    font-weight: 200;
    margin-top: 1.2rem;
    line-height: 1.4;
    flex-shrink: 0;
    opacity: .6;
}
.section-services .service-item .item-link {
    padding: 0 .6rem 0 2.4rem;
    height: 4.4rem;
    border-radius: 20rem;
    background-color: #FC5130;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
    margin-top: 3.6rem;
    flex-shrink: 0;
    transition: .2s;
}
.section-services .service-item .item-link:hover {
    opacity: .8;
}
.section-services .service-item .item-link .item-link__label {
    display: block;
    font-size: 1.4rem;
    font-weight: 200;
    color: #fff;
}
.section-services .service-item .item-link:after {
    content: '';
    width: 3.2rem;
    height: 3.2rem;
    flex-shrink: 0;
    border-radius: 20rem;
    background-image: url('./../../../media/img/common/icons/arrow-right-light.svg');
    background-size: .6rem;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-color: #131319;
}



























.section-testimonials {
    margin-top: 10rem;
}
.section-testimonials .section-heading {
    padding: 0 8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}
.section-testimonials .section-heading .section-title {
    display: block;
    flex-shrink: 0;
    font-size: 6rem;
    font-weight: 700;
}

.section-testimonials .section-content {
    margin-top: 3.6rem;
}


.section-testimonials .swiper-testimonials-thumbs {
    padding: 0 6rem;
}
.section-testimonials .swiper-testimonials-thumbs .swiper-slide {
    border-radius: 20rem;
    overflow: hidden;
    width: auto;
    cursor: pointer;
}
.section-testimonials .swiper-testimonials-thumbs .swiper-slide .testimonial-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    height: 6rem;
    background-color: rgba(255, 255, 255, .1);
    transition: .3s;
    padding: 0 3.6rem 0 .6rem;
}
.section-testimonials .swiper-testimonials-thumbs .swiper-slide.swiper-slide-thumb-active .testimonial-item {
    background-color: #FC5130;
}
.section-testimonials .swiper-testimonials-thumbs .swiper-slide .testimonial-item .testimonial-item__img-wrap {
    position: relative;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 20rem;
    overflow: hidden;
}
.section-testimonials .swiper-testimonials-thumbs .swiper-slide .testimonial-item .testimonial-item__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-testimonials .swiper-testimonials-thumbs .swiper-slide .testimonial-item .testimonial-item__text {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.section-testimonials .swiper-testimonials-thumbs .swiper-slide .testimonial-item .testimonial-item__title {
    display: block;
    font-size: 1.6rem;
    font-weight: 200;
    line-height: 1.2;
}
.section-testimonials .swiper-testimonials-thumbs .swiper-slide .testimonial-item .testimonial-item__subtitle {
    opacity: .6;
    font-size: 1.2rem;
    display: block;
}





.section-testimonials .swiper-testimonials-wrap {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #E6E7EF;
    margin: 2.4rem auto 0;
    width: calc(100% - 12rem);
}
.section-testimonials .swiper-testimonials-wrap .swiper-testimonials-wrap__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(20%) contrast(100%);
}
.section-testimonials .swiper-testimonials {
    padding: 6rem 0;
    position: relative;
    z-index: 50;
}

.section-testimonials .swiper-testimonials .swiper-slide {
    overflow: hidden;
}

.section-testimonials .swiper-testimonials .testimonial-item {
    display: flex;
    position: relative;
    overflow: hidden;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}
.section-testimonials .swiper-testimonials .testimonial-item .testimonial-item__inner {
    position: relative;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    flex-shrink: 0;
}

.section-testimonials .swiper-testimonials .testimonial-item .media-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 3rem;
    position: relative;
    overflow: hidden;
    border: .4rem solid rgba(255, 255, 255, .2);
}
.section-testimonials .swiper-testimonials .testimonial-item .media-wrap .button-play {
    background-image: url('./../../../media/img/common/icons/play-light.svg');
    background-size: 2rem;
    background-position: center;
    background-repeat: no-repeat;
    width: 8rem;
    height: 8rem;
    border-radius: 3rem;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -4rem;
    margin-left: -4rem;
    transition: .2s;
    z-index: 120;
    cursor: pointer;
}
.section-testimonials .swiper-testimonials .testimonial-item .media-wrap .button-play.hidden {
    opacity: 0;
    pointer-events: none;
}
.section-testimonials .swiper-testimonials .testimonial-item .media-wrap .button-play:hover {
    background-color: #FC5130;
}
.section-testimonials .swiper-testimonials .testimonial-item .poster-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    transition: .2s;
}
.section-testimonials .swiper-testimonials .testimonial-item .poster-wrap.hidden {
    opacity: 0;
    pointer-events: none;
}
.section-testimonials .swiper-testimonials .testimonial-item .testimonial__poster {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    /* filter: brightness(70%); */
}
.section-testimonials .swiper-testimonials .testimonial-item .video-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #131319;
}
.section-testimonials .swiper-testimonials .testimonial-item .testimonial__video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center;
}

.section-testimonials .swiper-testimonials .testimonial-item .testimonial__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.4rem;
    gap: .6rem;
}
.section-testimonials .swiper-testimonials .testimonial-item .testimonial__name {
    font-size: 2rem;
    display: block;
    text-align: center;
    line-height: 1.2;
}
.section-testimonials .swiper-testimonials .testimonial-item .testimonial__subtitle {
    font-size: 1.6rem;
    opacity: .7;
}






.section-testimonials .swiper-pagination {
    display: flex;
    position: absolute;
    bottom: 2.6rem;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 50;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}
.section-testimonials .swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: .8rem;
    height: .8rem;
    border-radius: 20rem;
    background-color: #fff;
    transition: .3s;
    pointer-events: auto;
    opacity: .3;
}
.section-testimonials .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}
.section-testimonials .swiper-pagination.swiper-pagination-lock {
    display: none;
}

.section-testimonials .swiper-testimonials .swiper-navigation-button {
    position: absolute;
    width: 6rem;
    height: 6rem;
    background-color: rgba(255, 255, 255, .1);
    flex-shrink: 0;
    display: flex;
    border-radius: 20rem;
    cursor: pointer;
    transition: .2s;
    justify-content: center;
    align-items: center;
    z-index: 50;
    top: 50%;
    margin-top: -3rem;
}
.section-testimonials .swiper-testimonials .swiper-navigation-button:not(.swiper-button-disabled):hover {
    opacity: .8;
}
.section-testimonials .swiper-testimonials .swiper-navigation-button.swiper-button-disabled {
    opacity: .5;
    cursor: not-allowed;
}
.section-testimonials .swiper-testimonials .swiper-navigation-button.swiper-button-lock {
    pointer-events: none;
    display: none;
}
.section-testimonials .swiper-testimonials .swiper-navigation-button.prev {
    left: 8rem;
}
.section-testimonials .swiper-testimonials .swiper-navigation-button.next {
    right: 8rem;
}
.section-testimonials .swiper-testimonials .swiper-navigation-button:before {
    font-family: 'Fontello';
    font-size: 1.6rem;
}
.section-testimonials .swiper-testimonials .swiper-navigation-button.prev:before {
    content: '\e813';
}
.section-testimonials .swiper-testimonials .swiper-navigation-button.next:before {
    content: '\e812';
}


























.section-questions {
    margin-top: 10rem;
}
.section-questions .section__inner {
    padding: 0 12rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4.8rem;
}
.section-questions .section__heading {

}
.section-questions .section__title {
    display: block;
    flex-shrink: 0;
    font-size: 6rem;
    font-weight: 700;
}
.section-questions .section__body {

}
.section-questions .section__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}
.section-questions .question-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
}
.section-questions .question-item {
    width: 100%;
    background-color: rgba(0, 0, 0, .2);
    padding: 3.6rem;
    border-radius: 1.2rem;
    cursor: pointer;
    display: flex;
}
.section-questions .link-all {
    padding: 0 .6rem 0 3.6rem;
    height: 6rem;
    border-radius: 20rem;
    background-color: #FC5130;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.6rem;
    align-self: flex-start;
    transition: .2s;
}
.section-questions .link-all .link-all__label {
    display: block;
    font-size: 1.6rem;
    color: #fff;
}
.section-questions .link-all:after {
    content: '';
    width: 4.8rem;
    height: 4.8rem;
    flex-shrink: 0;
    border-radius: 20rem;
    background-image: url('./../../../media/img/common/icons/arrow-right-light.svg');
    background-size: .8rem;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-color: #131319;
}
.section-questions .question-item .question-item__title {
    display: block;
    line-height: 1.2;
    font-size: 2rem;
    font-weight: 200;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 80%;
}
.section-questions .question-item .question-item__title:before {
    content: '';
    background-image: url('./../../../media/img/common/icons/plus-light.svg');
    background-size: 2rem;
    background-position: center;
    background-repeat: no-repeat;
    width: 4rem;
    height: 4rem;
    border-radius: 2.4rem;
    background-color: #FC5130;
    display: block;
    flex-shrink: 0;
    transition: .3s;
}
.section-questions .question-item:hover .question-item__title:before {
    background-color: #FC5130;
}
.section-questions .question-item.active .question-item__title:before {
    transform: rotate(45deg);
}
.section-questions .question-item .question-item__description {
    display: block;
    font-size: 1.6rem;
    font-weight: 200;
    margin-top: 2.4rem;
    line-height: 1.4;
    display: none;
}
.section-questions .question-item.active .question-item__description {
    display: block;
}


















.section-articles {
    margin-top: 10rem;
    width: 100%;
}
.section-articles .section__inner {
    width: 100%;
}
.section-articles .section__heading {
    padding: 0 12rem;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 3.6rem;
    width: 100%;
}
.section-articles .section__heading .section__heading-line {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    width: 100%;
}
.section-articles .section__heading .section__title {
    display: block;
    flex-shrink: 0;
    font-size: 6rem;
    font-weight: 700;
}
.section-articles .section__heading .link-to-all {
    padding: 0 3.6rem;
    height: 6rem;
    border-radius: 20rem;
    background-color: #FC5130;
    display: flex;
    align-items: center;
    transition: .2s;
    font-size: 1.6rem;
    color: #fff;
    transition: .2s;
    flex-shrink: 0;
}
.section-articles .section__heading .link-to-all:hover {
    opacity: .8;
}
.section-articles .section__heading .swiper-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3.6rem;
}
.section-articles .section__heading .swiper-controls .swiper-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .2rem;
    flex-shrink: 0;
    overflow: hidden;
}
.section-articles .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button {
    width: 6rem;
    height: 6rem;
    background-color: rgba(255, 255, 255, .1);
    flex-shrink: 0;
    display: flex;
    border-radius: 1.2rem;
    cursor: pointer;
    transition: .2s;
    justify-content: center;
    align-items: center;
}
.section-articles .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button:not(.swiper-button-disabled):hover {
    opacity: .8;
}
.section-articles .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button.swiper-button-disabled {
    opacity: .5;
    cursor: not-allowed;
}
.section-articles .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button.swiper-button-lock {
    pointer-events: none;
    display: none;
}
.section-articles .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button.prev {
    background-image: url('./../../../media/img/common/icons/arrow-left-light.svg');
    background-size: .8rem;
    background-position: center;
    background-repeat: no-repeat;
}
.section-articles .section__heading .swiper-controls .swiper-navigation .swiper-navigation-button.next {
    background-image: url('./../../../media/img/common/icons/arrow-right-light.svg');
    background-size: .8rem;
    background-position: center;
    background-repeat: no-repeat;
}

.section-articles .section__heading .swiper-pagination {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, .1);
    height: .2rem;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
}
.section-articles .section__heading .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: #FC5130;
    height: .2rem;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
}

.section-articles .section__content {
    margin-top: 4.8rem;
}

.section-articles .swiper-articles {
    padding: 0 12rem;
}


.section-articles .swiper-articles {

}

.section-articles .swiper-articles .swiper-slide {
    overflow: hidden;
    position: relative;
}

.section-articles .article-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
}
.section-articles .article-item .article-item__img-wrap {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    aspect-ratio: 3/2;
}
.section-articles .article-item .article-item__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
.section-articles .article-item:hover .article-item__img {
    transform: scale(1.05);
    opacity: .7;
}
.section-articles .article-item .article-item__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 3.6rem;
    min-height: 50%;
    position: absolute;
    background: linear-gradient(0deg,rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 100%);
}
.section-articles .article-item .article-item__title {
    display: block;
    line-height: 1.3;
    font-size: 1.8rem;
    font-weight: 200;
    color: #fff;
}
.section-articles .article-item .article-item__actions {
    display: flex;
    gap: .6rem;
    align-items: center;
    margin-top: 3.6rem;
    display: none;
}
.section-articles .article-item .article-item__action {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #fff;
    gap: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
}
.section-articles .article-item .article-item__action:after {
    font-family: 'Fontello';
    content: '\e812';
}

.section-articles .link-all {
    background-color: rgba(255, 255, 255, .1);
    color: #EDBF92;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 3.6rem;
    height: 6rem;
    font-size: 1.2rem;
    letter-spacing: .2rem;
    border-radius: 1.2rem;
    transition: .2s;
    margin-top: 1.2rem;
    text-align: center;
    justify-content: center;
    margin: 4.8rem 12rem 0;
    width: calc(100% - 24rem);
}
.section-articles .link-all:hover {
    background-color: #EDBF92;
    color: rgba(0, 0, 0, .8);
}
















.section-slogan {
    width: 100%;
    margin-top: 10rem;
    padding: 0 12rem;
}
.section-slogan .slogan-title {
    gap: 2.4rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.section-slogan .slogan-title .slogan-title-text {
    text-align: center;
}
.section-slogan .slogan-title .slogan-title-text.slogan-title-1 {
    font-weight: 100;
    font-size: 4rem;
    opacity: .6;
}
.section-slogan .slogan-title .slogan-title-text.slogan-title-2 {
    font-weight: 700;
    color: #fc5130;
    font-size: 6rem;
}
.section-slogan .slogan-title .slogan-title-text.slogan-title-3 {
    font-weight: 100;
    display: block;
    margin-top: 1.2rem;
    font-size: 3.2rem;
}









