@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500;800&display=swap');
        
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}
.swiper-container {
    width: 100%;
    min-height: 600px;
    /*height: 100%;*/
    position: relative;
}
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 0 40px 0px 40px;
    height: auto;
}
.text-content {
    width: 33.3%;
    /*min-height: 700px;*/
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 0 100px;
    position: absolute;
    left: -100%;
    top: 0;
    transition: left 0.8s ease-in-out;
    border-radius: 0 40px 0px 40px;
}
.text-content h2, .text-content p{
    color: white!important;
}
.text-content h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 51px;
    line-height: 59px;
    font-weight: 800;
}
.text-content p {
    font-family: 'Barlow', sans-serif;
    font-size: 19px;
    line-height: 28px;
    font-weight: 500;
}
.text-content a {
    font-size: 17px;
    line-height: 26px;
    font-weight: 700;
    color: #273756!important;
    background: white;
    padding: 10px 24px;
    border: 2px solid white;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 40px;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.text-content a:hover {
    font-size: 17px;
    line-height: 26px;
    font-weight: 700;
    color: white!important;
    background: transparent!important;
    padding: 10px 24px;
    border: 2px solid white;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 40px;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.image-content {
    width: 100%;
    /*min-height: 700px;*/
    height: 100%;
    /*position: absolute;*/
    right: -100%;
    transition: right 0.8s ease-in-out;
}
.image-content img {
    width: 100%;
    height: 100%!important;
    /*object-fit: contain;*/
}
.swiper-slide-active .image-content {
    right: 0;
}
.swiper-slide-active .text-content {
    left: 0;
}
.navigation-buttons {
    display: flex;
    gap: 52px;
    position: absolute;
    bottom: calc(50% - 22px);
    left: 0px;
    width: 100%;
    /*opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;*/
}
.swiper-button-next, .swiper-button-prev {
    color: white!important;
    /*position: static!important;*/
    transform: none;
    background-color: transparent!important;
}
.swiper-button-prev:after{
    content: url('https://connto.me/img/back.svg') !important;
}

.swiper-button-next:after{
    content: url('https://connto.me/img/next.svg') !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 28px!important;
    font-weight: bold!important;
}
.resp{ display: none; }
.desk{ display: block; }

.dt_swiper .swiper-button-prev {
    left: 20px!important;
    top: 0px;
}

.dt_swiper .swiper-button-next {
    right: 20px!important;
    top: 0px;
}

@media (max-width: 768px) {
    .swiper-container {
        width: 100%;
        height: 100%;
        position: relative;
    }
    .swiper-slide {
        display: flex!important;
        flex-direction: column-reverse;
        border-radius: 40px 40px 40px 0px;
    }
    .text-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 20px 160px;
        display: block;
        position: relative;
        left: -100%;
        transition: left 0.8s ease-in-out;
        border-radius: 40px 40px 0px 0px;
    }
    .text-content h2, .text-content p{
        color: #273756!important;
    }
    .text-content h2{
        padding-bottom: 55px;
        font-size: 45px;
        font-style: normal;
        font-weight: 800;
        line-height: 53px;
    }
    .text-content p{
        padding-bottom:20px;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 26px;
    }

    .text-content a {
        font-size: 17px;
        line-height: 26px;
        font-weight: 700;
        color: white!important;
        background: #273756;
        padding: 10px 24px;
        border: 2px solid #273756;
        text-align: center;
        cursor: pointer;
        margin-top: 20px;
        border-radius: 40px;
        width: fit-content;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    .image-content {
        width: 100%;
        display: block;
        position: relative;
        right: -100%;
        transition: right 0.8s ease-in-out;
    }
    .navigation-buttons {
        display: flex;
        gap: 52px;
        position: absolute;
        bottom: 60px;
        left: 30px;
    }
    .resp{ display: block; }
    .desk{ display: none; }
}
