
/* services popup mobile */
.sevices_popup_overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgb(255 255 255 / 10%);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}
    .sevices_popup_overlay.open{
        visibility: visible;
        opacity: 1;
    }
.sevices_popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease all;

    width: calc(100vw - 36px);
    height: calc(100vh - 80px);

    border-radius: 8px;
    box-shadow: 0px 2px 27px 0 rgba(0, 0, 0, 0.29);
    border: solid 2px #f9b234;
    background-color: #fff;

    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;

}
    .sevices_popup.open{
        visibility: visible;
        opacity: 1;
    }

    .sevices_popup .selected_item{
        border:none;
        margin: 0;
    }

    .sevices_popup_wrap{
        position: relative;
        padding-top: 40px;
    }
        .sevices_popup_close{
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 2;
        }
            .sevices_popup_close svg{
                width: 18px;
                height: 18px;
                transition: all 0.2s linear;
                fill: #000;
            }

    @media screen and (max-width: 800px){
        .services_auto .card.active{
            border-color: #fff;
        }
    }


/*  forms */
.gfield_checkbox{
    display: flex;
}
    .gfield_checkbox li{
        display: flex;
        align-items: center;    
    }
    .gfield_checkbox li:first-child{
        margin-right: 1.5rem;
    }
        .gfield_checkbox li input{
            margin: 0 16px 0 0;
        }
        .order_form .form .gform_fields .gfield_checkbox li label{
            color: #4F4E4E;
            font-size: 1rem;
            margin: 0;
        }

/*  services */

.services_auto .card{
    cursor: pointer;
}
.big_card_slider .selected_item{
    display: none;
}
    .big_card_slider .selected_item.active{
        display: block;
    }

.services_auto_section .wrap{
    position: relative;
}
.services_auto[data-banner]:not(.active){
    width: 100%;
    position: absolute;
    top: 0;
    left: 10px;
    opacity: 0;
    visibility: hidden;
}


.pagination{
    text-align: center;
    margin: 30px 0;
}
    .pagination a{
        margin: 0 5px;
    }
        .pagination a:hover{
            color: #779fa1;
        }

.seo_text .content .col_wide{
    width: 100%;
    margin-bottom: 50px;
}

@media screen and (max-width: 800px){
    .seo_text .content .col_wide{
        margin-bottom: 10px;
    }
}

.seo_text h2, .seo_text h3{
    margin-bottom: 0.7rem;
}
.mt{
    margin-top: 1rem;
}


.card_list_cargo .card{
    width: 25%;
}
@media screen and (max-width: 800px){
    .card_list_cargo .card{
        width: calc((100% - 15px) / 2);
    }
}



/* fixed socilas */

.fixed_socials{
    position: fixed;
    bottom: 0;
    right: 50px;
}

    .fixed_socials .wrap{
        position: relative;
        background: #1d213c;

        display: flex;
        align-items:center;
        justify-content: space-between;
        padding: 6px 15px 6px 10px;
        border-top-left-radius: 8px;
        border-top-right-radius: 24px;
    }

    .fixed_socials .title{
        color: #fff;
        font-size: 14px;
        margin-right: 20px;
    }
    .fixed_socials .links{
        
        display: flex;
        align-items:center;
    }

    .fixed_socials a{
        margin-right: 5px;
        width: 24px;
    }
    .fixed_socials a:last-child{
        margin-right: 0;
    }

    @media screen and (max-width: 800px){
        .fixed_socials{
            right: unset;
            left: 50%;
            transform: translateX(-50%);
            width: max-content;
            max-width: 100%;
        }
        .fixed_socials .title{
            font-size: 12px;
        }
        .fixed_socials a{
            width: 20px;
        }
    }