.slider{
    border-radius: 40px;
    background: #fff;
    overflow: hidden;
    height: 500px;
    position: relative;
}

.slide-item__bg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
    object-position: center;
}

.slide-item__inner {
    position: absolute;
    top: 79px;
    left: 96px;
    height: calc(100% - 79px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 32px;
}

.slide-item__text {
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.slide-item__title {
    max-width: 100%;
}

.slide-item__desc {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.slide-item__bottom img {
    width: 52px;
    height: 85px;
}

.slider__button {
    padding: 0;
    border: none;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__button::after {
    display: none;
}

.slider__button svg {
    width: auto;
    height: auto;
}

.slider__button_prev {
    left: 32px;
}

.slider__button_prev svg {
    rotate: -180deg;
}

.slider__button_next {
    right: 95px;
}

.slider .slider__pagination {
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.slider .slider__pagination .swiper-pagination-bullet {
    margin: 0;
}

.slider__pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: var(--greyColor);
    opacity: 0.2;
}
.slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.slider .swiper-button-next.swiper-button-disabled,
.slider .swiper-button-prev.swiper-button-disabled {
    display: none;
}

.products {
    margin: 25px 0 12px;
}

.products__section-content {
    background-color: #fff;
    padding: 34px 0 30px;
}

.products__main-title {
    margin-bottom: 21px;
}

.technologies {
    padding: 12px 0;
}

.technologies__section-content {
    background-color: transparent;
    padding: 34px 0 41px;
}

.technologies__main-title {
    margin-bottom: 20px;
}

.technologies__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 33px;
}

.info-card {
    position: relative;
    border-radius: 40px;
    height: 407px;
    width: calc((100% - 33px) / 2);
    overflow: hidden;
}

.info-card-plain {
    background-color: #fff;
    padding-top: 127px;
    display: flex;
    justify-content: center;
}

.info-card-plain__title {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--greenColor);
}

.info-card-plain__image {
    position: absolute;
    left: -165px;
    bottom: -145px;
    max-width: 572px;
}

.info-card-plain__image img{
    display: block;
    max-width: 100%
}

.info-card-filled {
    background-color: var(--greenColor);
    padding: 17px 45px;
}

.info-card-filled__description {
    line-height: 1.3;
    color: #fff;
}

.info-card-filled__title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px;
}

.info-card-filled__text {
    font-size: 15px;
    font-weight: 300;
    margin-top: 21px;
}

.info-card-filled__button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.info-card-filled__image {
    max-width: 433px;
    position: absolute;
    left: -65px;
    bottom: -80px;
}

.info-card-filled__image img {
    display: block;
    max-width: 100%;
}

.applications {
    padding: 12px 0;
}

.applications__section-content {
    background-color: #DDDEDB;
    padding: 34px 0;
}

.applications__main-title {
    margin-bottom: 32px;
    color: var(--greyColor);
}

.applications__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}

.applications__button {
    margin: 33px 0 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.app-card {
    position: relative;
    border-radius: 40px;
    background-color: #fff;
    padding: 46px 10px 0;
    min-height: 298px;
    overflow: hidden;
}

.app-card__bg {
    display: block;
    position: absolute;
}

.app-card__title {
    margin: 0;
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--greyColor);
    text-align: center;
}

.app-card__image {
    position: absolute;
    max-width: 100%;
}

.app-card__image img {
    display: block;
    max-width: 100%;
}

.app-card:nth-child(even) {
    background-color: var(--greyColor);
}

.app-card_electric .app-card__bg {
    left: -25px;
    top: 115px;
}

.app-card_datacenters .app-card__bg {
    left: -20px;
    top: 124px;
}

.app-card_telecom .app-card__bg {
    left: -10px;
    top: 118px;
}

.app-card:nth-child(even) .app-card__title {
    color: #fff;
}

.news {
    padding: 12px 0;
}

.news__section-content {
    padding: 34px 0 65px;
    background-color: transparent;
    position: relative;
}

.news__main-title {
    margin-bottom: 21px;
    color: var(--darkGreenColor);
}

.news-slide {
    border-radius: 40px;
    background-color: #fff;
    min-height: 333px;
    height: auto;
    position: relative;
}

.news-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.news-slide__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-slide__info {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 12px 30px 17px 23px;
    border-radius: 0 0 37px 37px;
    background-color: #fff;
    line-height: 1.3;
    color: var(--darkGreenColor);
}

.news-slide__top {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 500;
}

.news-slide__title {
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}

.news-slide__small {
    font-size: 15px;
}

.news-slide__desc {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-slider__button {
    padding: 0;
    border: none;
    width: 54px;
    height: 51px;
    background: rgba(145, 147, 137, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.news-slider__button_prev {
    left: 0;
}

.news-slider__button_next {
    right: 0;
}

.news-slider__button::after {
    display: none;
}

.news-slider__button svg {
    width: auto;
    height: auto;
}

.news-slider__button_prev svg {
    rotate: -180deg;
}

.news .swiper-button-next.swiper-button-disabled,
.news .swiper-button-prev.swiper-button-disabled {
    display: none;
}

.news-slider__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

}

.news .news-slider__pagination {
    top: auto;
    bottom: 34px;
}

.news-slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.2;
}

.news-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.news .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}

@media(max-width: 1110px) {
    .news-slider {
        max-width: 700px;
    }

    .news-slide__title {
        font-size: 24px;
    }
}

@media(max-width: 900px) {
    .slide-item__inner {
        top: 70px;
        left: 20px;
    }

    .slide-item__text {
        max-width: 300px;
    }

    .news-slider__button {
        display: none;
    }

    .news .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        background-color: rgba(145, 147, 137, 0.3);
        opacity: 1;
    }

    .news .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
        background-color: var(--greenColor);
    }

    .news-slider__pagination {
        gap: 11px;
    }

    .news .news-slider__pagination {
        bottom: 49px;
    }

    .info-card-filled__image {
        bottom: -142px;
    }

    .applications__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .slider {
        position: static;
    }

    .slider-wrapper {
        position: relative;
        padding-bottom: 15px;
    }

    .slider__button {
        display: none;
    }

    .slider .slider__pagination {
        bottom: 0;
        gap: 11px;
    }

    .slider__pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        opacity: 0.3;
    }
    .slider__pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background-color: var(--greenColor);
    }

    .products {
        margin: 0;
        padding: 20px 0;
    }

    .products__section-content {
        background-color: transparent;
        padding: 0;
    }

    .technologies__row {
        align-items: flex-start;
        flex-wrap: initial;
        gap: 0;
    }

    .info-card {
        width: 100%;
    }

    .info-card-filled__image {
        bottom: -82px;
    }

    .applications__section-content {
        padding: 0;
        background-color: transparent;
    }

    .applications__row {
        display: flex;
        gap: 0;
    }

    .app-card:nth-child(even) {
        background-color: #ffffff;
    }

    .app-card:nth-child(even) .app-card__title {
        color: var(--greyColor);
    }

    .app-card {
        height: 280px;
        min-height: auto;
    }
}

@media(max-width: 575px) {
    .slider-wrapper {
        margin: 0 -20px;
    }

    .slider {
        border-radius: 0;
        height: 540px;
    }

    .slide-item__bg {
        object-position: 70%;
    }

    img.slide-item__title {
        width: 154px;
        height: 49px;
    }

    .slide-item__inner {
        padding-bottom: 20px;
        top: 81px;
        height: calc(100% - 81px);
        width: calc(100% - 40px);
    }

    .slide-item__bottom {
        display: flex;
        justify-content: flex-end;
    }

    .slide-item__bottom img {
        width: 43px;
        height: 69px;
    }

    .slide-item__desc {
        position: absolute;
        bottom: 20px;
        left: 0;
        font-size: 15px;
        max-width: 123px;
    }

    .slider .title-section {
        margin: 0;
    }
    .slider .title-section__content {
        margin: 0;
    }

    .main-title {
        padding-left: 28px;
        font-size: 23px;
    }

    .products {
        padding: 20px 0 10px
    }

    .products__main-title {
        margin-bottom: 7px;
    }

    .news {
        padding: 12px 0 35px;
    }

    .news__section-content {
        padding: 0;
    }

    .news .news-slider__pagination {
        bottom: -18px;
    }

    .news__main-title {
        color: var(--greenColor);
        margin-bottom: 7px;
    }

    .news-slide {
        aspect-ratio: 280/330;
        min-height: auto;
        border-radius: 20px;
    }

    .news-slide__bg {
        border-radius: 20px;
    }

    .news-slide__info {
        padding: 14px 10px 20px 28px;
        border-radius: 0 0 17px 17px;
    }

    .news-slide__top {
        gap: 0;
        flex-direction: column-reverse;
    }

    .news-slide__title {
        font-size: 20px;
        line-height: 1.25;
    }

    .news-slide__desc {
        display: none;
    }

    .technologies {
        padding: 10px 0;
    }

    .technologies__section-content {
        padding: 0;
    }

    .technologies__main-title {
        margin-bottom: 7px;
    }

    .info-card {
        border-radius: 20px;
        aspect-ratio: 1/1;
        height: auto;
    }

    .info-card-filled {
        padding: 22px 25px 0 28px;
    }

    .info-card-filled__title {
        font-size: 18px;
        line-height: 1.27;
    }

    .info-card-plain__title {
        font-size: 28px;
    }

    .info-card-filled__text {
        margin: 0 0 15px;
        font-size: 12px;
        line-height: 1.25;
    }

    .info-card-filled__image {
        max-width: 248px;
        height: 165px;
        bottom: -33px;
        left: -35px;
    }

    .info-card-filled__button {
        width: 93px;
        height: 34px;
        font-size: 12px;
        line-height: 1.25;
    }

    .applications {
        padding: 10px 0 12px;
    }

    .applications__button {
        display: none;
    }

    .applications__main-title {
        margin-bottom: 7px;
        color: var(--darkGreenColor);
    }

    .app-card {
        position: static;
        max-width: 100%;
        height: auto;
        padding: 0;
        background-color: transparent;
        display: flex;
        justify-content: center;
    }

    .app-card__title {
        display: flex;
        align-items: center;
        min-height: 56px;
        font-size: 15px;
        line-height: 1.26;
        color: var(--darkGreenColor);
    }

    .app-card:nth-child(even) .app-card__title {
        color: var(--darkGreenColor);
    }

    .app-card__content {
        position: relative;
        width: 280px;
        height: 138px;
        padding: 45px 7px 37px 123px;
        border-radius: 40px;
        background-color: #fff;
        overflow: hidden;
    }

    .app-card:nth-child(even) {
        background-color: transparent;
    }

    .app-card__bg {
        width: 108px;
        height: 122px;
    }

    .app-card__bg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .app-card_electric .app-card__bg {
        top: auto;
        left: -6px;
        bottom: -7px;
    }

    .app-card_datacenters .app-card__bg {
        top: auto;
        left: -8px;
        bottom: -11px;
    }

    .app-card_telecom .app-card__bg {
        top: auto;
        left: -25px;
        bottom: -12px;
    }
}