.phone-system{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 80px;
    z-index: 8;
}

.phone-system._mobile{
    display: none;
}

.phone-system__block{
    position: relative;
    width: 50%;
    padding: 60px 80px;
    z-index: 1;
}

.phone-system__block._left{
    /*opacity: .5;*/
    text-align: right;
    color: #00000050;
}

.phone-system__block._right{
    background: #ffffff50;
    border-radius: 36px;
    -webkit-box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
}

.phone-system__list:not(:last-child){
    margin-bottom: 35px;
}

.phone-system__list{
    position: relative;
    line-height: 24px;
    white-space: nowrap;
}

.phone-system__block._left .phone-system__list:before{
    content: '';
    position: absolute;
    width: 120px;
    height: 20px;
    background-image: url(../img/icon/Arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    top: 2px;
    right: -140px;
}

.phone-system__tab{
    position: relative;
    display: none;
    width: 100%;
    z-index: 3;
    margin-bottom: 40px;
    font-family: var(--font--mulish-bold);
    border-bottom: 1px solid var(--color--black-op);
    bottom: auto!important;
    margin-top: 0!important;
    text-align: left!important;
}

.swiper-pagination-bullet.phone-system__tab-title{
    padding-bottom: 8px;
    width: calc(50% - 10px);
    opacity: .5;
    font-size: var(--font--medium);
    line-height: 24px;
    height: auto;
    background: transparent;
    margin: 0 0 -1px!important;
    border-radius: 0;
    transition: none;
}

.phone-system__tab-title.swiper-pagination-bullet-active{
    border-bottom: 4px solid var(--color--bluelight);
    opacity: 1;
}

.phone-system__tab-title:nth-child(2){
    margin-left: auto!important;
}

.phone-system__br-mobile{
    display: none;
    overflow: visible!important;
}

@media screen and (max-width: 1200px){
    .phone-system__block {
        padding: 40px;
    }

    .phone-system__block._left .phone-system__list:before {
        width: 70px;
        right: -70px;
    }
}

@media screen and (max-width: 1024px){
    .phone-system__br-mobile{
        display: block;
    }
    
    .phone-system{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .phone-system__tab{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .phone-system__block{
        padding: 0;
        width: 100%!important;
    }

    .phone-system__block._left{
        text-align: left;
        color: var(--color--black);
    }

    .phone-system__block .h2{
        display: none;
    }

    .phone-system__block._right{
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .phone-system__list{
        padding-bottom: 12px;
        border-bottom: 1px  solid rgba(0,0,0,.3);
        opacity: 1;
        white-space: normal;
    }

    .phone-system__list:not(:last-child){
        margin-bottom: 10px;
    }

    .phone-system__block._left .phone-system__list:before,
    .phone-system{
        display: none;
    }

    .phone-system._mobile{
        display: block;
        overflow: visible!important;
    }

    .phone-system .swiper-wrapper{
        width: calc(100% + 20px);
    }
    .swiper-slide.phone-system__block._right{
        width: calc(100% - 40px)!important;
    }


    .swiper-slide.phone-system__block._left.swiper-slide-prev {
        width: calc(100% - 20px)!important;
    }

    .phone-system__block._right.swiper-slide-active {
        width: calc(100% - 20px)!important;
    }
}