.coaching_element_main {
    position: relative;
}

.coaching_element__header {
    justify-items: center;
    margin-bottom: 5%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
    text-align: center;
}

.coaching_element__header__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #001B2F;
}

.coaching_element__header__subtitle {
    background-color: #ECF5FF;
    color: #0075FF !important;
    width: fit-content !important;
    font-size: 12px;
    font-weight: 500 !important;
    padding: 2px 10px !important;
    border-radius: 6px;
    margin-bottom: 8px !important;
    
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}

.coaching_element__big_box {
    min-height: 380px;
    border-radius: 20px;
    padding: 40px 80px 40px 40px;
    background-color: #F3F8FF;
    margin-bottom: 1%;
    display: flex;
    position: relative;
}

.coaching_element__big_box__content {
    flex: 1;
}

.coaching_element__big_box__content__title {
    font-weight: 700;
    font-size: 20px;
    color: #001B2F;
    margin-bottom: 15px;
}

.coaching_element__big_box__content__text {
    font-size: 16px;
    color: #001B2F;
    margin-bottom: 40px;
}

.button_coaching {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    background-color: #E70491;
    color: white;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.button_coaching:hover {
    color: #E70491;
    background-color: #FFBBE5;
}

.coaching_element__big_box__image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 33%;
}

.coaching_element__big_box__image img {
    max-width: 100%;
    height: auto;
}

.coaching_element__small_boxes {
    display: flex;
    gap: 1%;
}

.small_box {
    flex: 1;
    min-height: 320px;
    border-radius: 20px;
    padding: 40px !important;
    background-color: #F3F8FF;
}

.small_box__icon_section {
    margin-bottom: 20px;
}

.small_box__icon_section img {
    width: 50px;
    height: 50px;
}

.small_box__title {
    font-weight: 700;
    font-size: 20px;
    color: #001B2F;
    margin-bottom: 10px;
}

.small_box__text {
    font-weight: 400;
    font-size: 16px;
    color: #001B2F;
}

@media (max-width: 991px) {
    .coaching_element__header {
        width: 100%;
        margin-bottom: 30px;
    }

    .coaching_element__header__title {
        font-size: 26px;
    }

    .coaching_element__big_box {
        flex-direction: column;
        padding: 30px 25px;
        min-height: auto;
    }

    .coaching_element__big_box__image {
        display: none;
    }

    .coaching_element__small_boxes {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 20px !important;
        margin-left: -5px;
        margin-right: -5px;
        scrollbar-width: none;
    }

    .coaching_element__small_boxes::-webkit-scrollbar {
        display: none;
    }

    .small_box {
        flex: 0 0 88% !important;
        max-width: 88% !important;
        min-height: auto;
        padding: 25px !important;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .coaching_element__header__title {
        font-size: 24px;
        text-align: center;
    }

    .coaching_element__big_box__content__title {
        font-size: 18px;
    }

    .coaching_element__big_box__content__text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .button_coaching {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }

    .small_box__title {
        font-size: 18px;
    }

    .small_box__text {
        font-size: 14px;
    }

    .coaching_element__big_box {
        margin-bottom: 5%;
    }
}