/*Показывает ТЕМНЫЙ логотип в шапке */
.header_absolute .header .logo_img_dark {
    display: block;
}

.header_absolute .header .logo_img_light {
    display: none;
}

/*Первый блок*/
.serv_top_block {
    position: relative;
    background-color: var(--theme-color-grey-light);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.serv_top_block.video_bg {
    min-height: 40vw;
}

.serv_top_block_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.serv_top_block_video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.serv_top_block_content {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(246, 249, 250, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.serv_top_block_title {
    font-size: 2.2rem;
    color: var(--theme-skit-color);
    margin-bottom: 0;
}

.serv_top_block_button {
    margin-top: 3rem;
}

@media all and (min-width: 1400px){
    .serv_top_block {
        margin: 1rem 1rem 0;
    }
}

@media all and (max-width: 991px){
    .serv_top_block {
        background-size: contain;
    }

}

@media all and (max-width: 575px){
    .serv_top_block_content {
        padding: 1rem 0.5rem;
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .serv_top_block_title {
        font-size: 1.5rem !important;
    }

    .serv_top_block_button {
        margin-top: 1rem;
    }
}

/*detail-text*/
.news-detail-text p:last-child {
    margin-bottom: 0;
}

.news-detail-text img {
    border-top-right-radius: 60px;
    display: block;
    margin: 30px 0;
    max-width: 100%;
}

/*serv_detail_file_download*/
.serv_detail_file_download {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
}