.image-carousel {
    background: var(--bg-color);
    position: relative;
}

.image-carousel:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: transparent var(--bg-image) no-repeat center / cover;
}

.image-carousel .container {
    max-width: 1190px;
    margin: 0 auto;
    width: 90%;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.image-carousel .col-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 57px;
}

.image-carousel .col-wrapper .col {
    width: 100%;
    max-width: 50%;
}

.image-carousel .title {
    font: normal var(--f-bold) 3.88rem / 1.1 var(--font-sans);
    color: var(--heading-color);
}

.image-carousel .col.left>.content {
    font: normal var(--f-medium) 1.13rem / 1.3 var(--font-sans);
    color: var(--content-color);
    margin-bottom: 40px;
}

.image-carousel .col.left .content p {
    margin-bottom: 0;
}

.image-carousel .btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: none;
    font: normal var(--f-bold) 0.875rem / 1 var(--font-sans);
    background: var(--btn-bg-color);
    color: var(--white);
    border-radius: 25px;
    padding: 9px 16px;
    width: max-content;
    text-decoration: none;
    box-shadow: none;
}

.image-carousel .btn svg {
    transition: var(--transition);
}

.image-carousel .btn:hover svg {
    transform: rotate(90deg);
}

.image-carousel .col.right .img-slide {
    width: 100%;
    border-radius: 30px;
    margin: 0 5px;
}

.image-carousel .img-slider-nav {
    position: relative;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.image-carousel .img-slider-nav .slick-arrow {
    position: unset;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: 2px solid var(--label-color);
    transform: translate(0);
}

.image-carousel .img-slider-nav .slick-arrow:before {
    content: none;
}

.image-carousel .img-slider-nav .slick-arrow svg {
    width: 16px;
    height: 16px;
}

.image-carousel .img-slider-nav .slick-prev.slick-arrow {
    transform: scale(-1) translate(0);
}

.image-carousel .divider {
    background: transparent var(--divider-bg) repeat-x left center / auto;
    width: 100%;
    height: 4px;
    margin: 21px 0 0;
}

@media screen and (max-width: 1024px) {
    .image-carousel .container {
        padding: 70px 0;
    }

    .image-carousel .col-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .image-carousel .col-wrapper .col {
        width: 100%;
        max-width: 100%;
    }

    .image-carousel .title {
        font: normal var(--f-bold) 3.25rem / 1.1 var(--font-sans);
    }

    .image-carousel .col.left>.content {
        font: normal var(--f-medium) 1.38rem / 1.3 var(--font-sans);
        margin-bottom: 20px;
    }

    .image-carousel .img-slider-nav {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .image-carousel .container {
        padding: 40px 0;
    }

    .image-carousel .col-wrapper .col {
        width: 100%;
    }

    .image-carousel .title {
        font: normal var(--f-bold) 2.63rem / 1.1 var(--font-sans);
    }

    .image-carousel .col.left>.content {
        font: normal var(--f-medium) 1.13rem / 1.3 var(--font-sans);
    }
}