.page-about .about-speakers {
    display: none;
}

.page-about .about-tabs {
    width: 100vw;
    margin-left: calc((100vw - 1180px) / 2 * -1);
    border-bottom: 3px solid #290a4e;
    margin-bottom: 50px;
}

.page-about .about-tabs .tabs-inner {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
}

.page-about .about-tabs h3 {
    font-weight: 600;
    font-size: 22px;
    padding: 15px 30px;
    color: white;
    border-bottom: 3px solid #290a4e;
    border-top-left-radius: 85px;
    border-top-right-radius: 85px;
    width: 100%;
    text-align: center;
    background: linear-gradient( 155deg, rgba(98, 159, 185, 1) 20%, rgba(100, 59, 175, 1) 100% );
    margin-bottom: -3px;
    cursor: pointer;
}

.page-about .about-tabs h3.active-tab {
    background: white;
    color: #290a4e;
    border: 3px solid #290a4e;
    border-color: #290a4e;
    border-bottom: none;
    pointer-events: none;
}

.page-about .about-tabs h3:hover {
    background: #290a4e;
    color: white;
}

@media screen and (max-width: 1300px) {

    .page-about .about-tabs {
        margin-left: -20px;
        width: calc(100% + 40px);
    }

    .page-about .about-tabs .tabs-inner {
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }
}

@media screen and (max-width: 650px) {

    .page-about .about-tabs h3 span {
        display: none;
    }

    .page-about .about-tabs .tabs-inner {
        gap: 15px;
    }
}

@media screen and (max-width: 500px) {

    .page-about .about-tabs h3 {
        font-size: 18px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
}