.content-image-section {
    margin: 50px 0;
}

.content-image-section .content-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
}

.content-image-section.section-reverse .content-image-wrapper {
    flex-direction: row-reverse;
}

.content-image-section .content-image-wrapper>div {
    width: 50%;
}

.content-image-section .content-text h1{
    font-size: 35px;
}

.content-image-section .content-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    line-height: 0.8;
}

.content-image-section .content-image img {
    aspect-ratio: 558 / 426;
    object-fit: cover;
    border-radius: 24px;
    transition: transform .3s ease;
}

.content-image-section .content-image:hover img {
    transform: scale(1.05);
}

.content-image-section .content-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-image-section .content-text * {
    margin: 0;
}

.content-image-section .content-text ul,
.content-image-section .content-text ol {
    padding-left: 16px;
}

.content-image-section .content-text .content-button {
    margin-top: 46px;
}

.content-image-section .content-text>*:nth-child(2)[style="text-align: center;"]+.content-button {
    display: flex;
    justify-content: center;
}

.content-image-section .content-text>*:nth-child(2)[style="text-align: right;"]+.content-button {
    display: flex;
    justify-content: flex-end;
}

@media (max-width:1199px) {
    .content-image-section {
        margin: 126px 0 75px;
    }

    .content-image-section.section-reverse .content-image-wrapper,
    .content-image-section .content-image-wrapper {
        flex-direction: column;
        gap: 120px;
    }

    .content-image-section .content-image-wrapper>div {
        width: 100%;
    }

    .content-image-section:not(.section-reverse) .content-image::before {
        transform: translateY(-50%) translateX(-83px);
    }

    .content-image-section.section-reverse .content-image::before {
        transform: translateY(-50%) translateX(83px);
    }

    .content-image-section .content-text {
        gap: 12px;
    }

    .content-image-section .content-text .content-button {
        margin-top: 32px;
    }
}

@media (max-width:679px) {
    .content-image-section {
        margin: 28px 0 75px;
    }

    .content-image-section .content-image::before {
        height: 130%;
    }

    .content-image-section:not(.section-reverse) .content-image::before {
        transform: translateY(-50%) translateX(-74px);
    }

    .content-image-section.section-reverse .content-image::before {
        transform: translateY(-50%) translateX(74px);
    }

    .content-image-section .content-image-wrapper {
        gap: 50px;
    }
}