.block__speakers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 120px;
    max-width: 926px;
    margin-left: auto;
    margin-right: auto;
}

.speaker__img {
    margin-bottom: 24px;
}

.speaker__img img {
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
}

.speaker__text {
    font-weight: 700;
    line-height: 130%;
}

.speaker__name {
    margin-bottom: 24px;
    font-size: 24px;
    color: #f5f4eb;
    font-weight: 700;
    line-height: 130%;
}

.speaker__desc {
    font-size: 14px;
    color: #7be6e6;
    font-weight: 700;
    line-height: 150%;
}

.speaker__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.speaker__list .speaker__point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.speaker__list .speaker__point::before {
    content: url("../img/list-point.svg");
}

@media screen and (max-width: 1200px) {
    .block__speakers {
        justify-content: space-between;
    }

    .speaker__name {
        font-size: 24px;
    }
}

@media screen and (max-width: 980px) {
    .block__speakers {
        gap: 60px;
    }
}

@media screen and (max-width: 650px) {
    .block__speakers {
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 450px;
    }
}

/*speakers-bars*/

.speakers-bars {
    margin: 160px 0;
}

.speakers-bars .splide__slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    border-radius: 40px;
    overflow: hidden;
    width: calc(33.3% - 16px);
}

.speakers-bars .splide__slide.splide__slide_big {
    width: calc(50% - 12px);
}
.speakers-bars__content {
    padding: 60px 20px;
    padding-bottom: 0;
}

.speakers-bars__name {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    text-align: center;
    background: linear-gradient(
        180deg,
        #fff 0%,
        rgba(255, 255, 255, 0) 256.52%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.speakers-bars__desc {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.speakers-bars__img {
    margin-top: auto;
    padding: 24px 0 0 0;
}

.speakers-bars__img img {
    display: flex;
    align-self: center;
    height: 410px;
    object-fit: cover;
    object-position: center top;
}

.speakers-bars .splide__arrow {
    background: none;
    border: none;
    width: 40px;
    cursor: pointer;
}


.speakers-bars .splide__arrows--ltr {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    justify-content: space-between;
    width: 267px;
    border: 1px solid #363636;
    background: radial-gradient(
        100% 100% at 50% 0%,
        rgba(51, 51, 52, 0.6) 0%,
        rgba(36, 36, 37, 0.6) 100%
    );
    backdrop-filter: blur(11.800000190734863px);
    transition: 0.2s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}


.speackers-header {
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .speakers-bars {
        margin: 120px 0;
    }

    .speakers-bars .splide__slide {
        min-height: 460px;
        border-radius: 32px;
    }

    .speakers-bars__name {
        font-size: 18px;
    }
    .speakers-bars__img img {
        display: flex;
        align-self: center;
        height: 340px;
    }
}

@media (max-width: 980px) {
    .speakers-bars {
        margin: 120px 0;
    }

    .speakers-bars__content {
        padding: 42px 20px;
        padding-bottom: 0;
    }
    .speakers-bars__img {
        padding: 20px 0 0 0;
    }
    .speakers-bars__img img {
        height: 410px;
    }
}

@media (max-width: 750px) {
    .speakers-bars {
        margin: 60px 0;
    }

    .speakers-bars__content {
        padding: 24px 20px;
        padding-bottom: 0;
    }

    .speakers-bars .splide__track {
        margin: 0;
        padding: 0;
        overflow: initial;
    }

    .speakers-bars .splide__slide {
        max-width: initial;
        border-radius: 24px;
    }

    .speakers-bars__desc {
        font-size: 14px;
    }

    .speakers-bars__img img {
        height: 370px;
    }
}

@media screen and (max-width: 581px) {
    .speakers-bars .splide__arrows--ltr {
        width: 100%;
    }

    .speackers-header .title {
        text-align: left;
    }

    .speackers-header {
        margin-bottom: 5px;
    }
}

