/*Показывает ТЕМНЫЙ логотип в шапке */
.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;
    background: -webkit-linear-gradient(0deg, #F1F4F9, #E4E3E4);
    background: linear-gradient(90deg, #F1F4F9, #E4E3E4);
}

.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;
    gap: 1rem;
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 1rem 0;
    z-index: 2;
}

.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;
    }

    .serv_top_block_content {
        -webkit-align-items: center;
        align-items: center;
        text-align: center;
        padding: 1rem;
        border-radius: 1rem;
        background: rgba(246, 249, 250, 0.7);
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
    }
}

@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.3rem !important;
    }

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

/*serv_top_block_image*/
.serv_top_block_image_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.serv_top_block_image {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: end;
    position: absolute;
    right: 0;
    bottom: -4rem;
    width: auto;
    height: 100%;
}

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

@media all and (max-width: 991px){
    .serv_top_block_image_wrap {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .serv_top_block_image {
        position: relative;
        bottom: auto;
    }

    .serv_top_block_image img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }
}

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

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

/*serv_detail_image*/
.serv_detail_image_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.serv_detail_image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: auto;
}

.serv_detail_image img {
    width: 100%;
    height: auto;
}

.serv_detail_image_desc {
    margin-top: 1rem;
    text-align: center;
}

@media all and (max-width: 1399px){
    .serv_detail_image {
        width: 60%;
    }
}

@media all and (max-width: 991px){
    .serv_detail_image {
        width: 100%;
    }
}

@media all and (max-width: 767px){
    .serv_detail_image {
        position: relative;
    }
}