.two-columns-component {
    display: flex;
}

.two-columns-component .columns-fix {
    padding-left: 0;
    padding-right: 0;

}

.two-columns-component .content-left,
.two-columns-component .content-right {
    z-index: 2;
    position: relative;
    max-width: 534px;
}

.two-columns-component .content-right {
    margin-right: auto;
}

.two-columns-component .content-left {
    margin-left: auto;
}

.two-columns-component .full-width {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: inherit;
}

.two-columns-component .full-width-right,
.two-columns-component .full-width-left {
    right: -10px;
    width: 100vw;
}

.two-columns-component .two-columns-image {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-columns-component .cover-image {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.two-columns-component .two-columns-button {
    color: white;
    background-color: black;
    width: 245px;
}

.two-columns-component .align-left {
    text-align: left;
}

.two-columns-component .align-center {
    text-align: center;
}

.two-columns-component .align-right {
    text-align: right;
}

.two-columns-component .swiper-container-custom-two {
    width: 100%;
    height: 100%;
}

.two-columns-component .swiper-slide {
    background-position: center;
    background-size: cover;
}

.two-columns-component .swiper-button-next {
    background-image: none !important;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.two-columns-component .swiper-button-prev {
    background-image: none !important;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.two-columns-component .swiper-button-prev:after {
    font-family: 'Font Awesome\ 5 Free';
    content: '\f104';
    font-weight: 900;
}

.two-columns-component .swiper-button-next:after {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    content: '\f105';
}


@media (min-width: 768px) {
    .two-columns-component .full-width-right {
        right: inherit;
    }

    .two-columns-component .full-width-left {
        right: unset;
    }
}

@media (min-width: 561px) {
    .two-columns-component {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: 0;
        padding-right: 0;
        object-fit: contain;
    }
}

@media (max-width: 767px) {
    .two-columns-component {
        flex-direction: column;
    }

    .two-columns-component .content {
        text-align: left;
    }

    .two-columns-component .align-left,
    .two-columns-component .align-right,
    .two-columns-component .center-on-mobile {
        text-align: center;
    }

    .two-columns-component .cover-image {
        height: 300px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        background-position: center;
        order: 1;
    }

    .two-columns-component .content-left,
    .two-columns-component .content-right {
        max-width: 100%;
    }
}