.gap {
    height: 38px
}

/*    header block   */
.main_block {
    border-radius: 20px;
    -webkit-box-shadow: 0 0 25px 0 rgba(0,0,0,0.25);
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.25);
    background-color: white;
    padding: 28px 38px;
    display: flex;
    align-items: center;
}

.main_block-img {
    display: flex;
    margin-right: 30px;
    min-width: 288px;
}
.main_block-img img {
    max-width: 100%;
}

.main_block-desc-title {
    text-align: left;
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
    color: #1B1B1B;
    margin-bottom: 8px;
}
.main_block-desc-text{
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #1B1B1B;
}

@media (max-width: 1135px) {
    .main_block {
        flex-direction: column;
        padding: 28px;
    }
    .main_block-img {
        margin-right: 0;
        margin-bottom: 28px;
        min-width: unset;
    }
}
@media (max-width: 768px) {
    .main_block {
        padding: 20px;
    }
    .main_block-img {
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .main_block {
        padding: 16px;
    }
    .main_block-img {
        margin-bottom: 16px;
    }
    .main_block-desc-title {
        font-size: 18px;
        line-height: 21px;
        text-align: center;
    }

    .main_block-desc-text {
        height: 114px;
        overflow: hidden;
        font-size: 16px;
        line-height: 19px;
    }
}

/*    video block   */
.video_block {
    display: flex;
    padding: 30px;
    background-color: white;
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
    -webkit-box-shadow: 0 0 25px 0 rgba(0,0,0,0.25);
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.25);
}

.video_block-wrapper {
    width: 40%;
}

.video_block-player-wrapper {
    width: 100%;
    height: 300px;
}

.video_block-desc {
    width: 57%;
    display: flex;
    flex-direction: column;
    line-height: 180%;
    justify-content: center;
}

.video_block-desc-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 33px;
    color: #000000;
    margin-bottom: 14px;
}

#player {
    border-radius: 20px
}
.video_block-desc-text{
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    line-height: 152.2%;
    color: #000000;
}
@media (max-width: 1024px) {
    .video_block {
        flex-direction: column;
    }

    .video_block-wrapper {
        width: 100%;
        height: 240px;
        display: flex;
        justify-content: center;
        margin-bottom: 28px;
    }

    .video_block-player-wrapper {
        width: 65%;
        height: unset;
    }

    .video_block-desc {
        width: unset;
    }
    .video_block-desc-text{
        line-height: 21px;
    }
}

@media (max-width: 768px) {
    .video_block-player-wrapper {
        width: 80%;
    }

    .video_block-desc {
        line-height: 100%;
    }
}

@media (max-width: 480px) {
    .video_block {
        padding: 20px;
    }
    .video_block-player-wrapper {
        width: 100%;
    }
    .video_block-wrapper {
        margin-bottom: 20px;
    }
    .video_block-desc-title {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 8px;
    }
    .video_block-desc-text{
        height: 114px;
        overflow: hidden;
        font-size: 16px;
        line-height: 19px;
    }
}

/*   read more buttons   */
.read_more {
    height: fit-content;
}

.read_more_button {
    display: none;
}
.d-none{
    display: none!important;
}
@media (max-width: 480px) {
    .read_more_button{
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin-top: 20px;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        color: #9D0000;
    }
    .read_more_button img{
        padding-left: 8px;
    }
}