.textWithPhoto {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    max-width: 1512px;
    margin-inline: auto;
    padding: 80px 75px;
}

.textWithPhoto-Reversed {
    flex-direction: row-reverse;
}

.bg-gray {
    background-color: #F4F4F4;
}

.textWithPhoto__text {
    max-width: calc(100% - 680px);
}

.textWithPhoto__text h2 {
    font-family: 'Campus 700';
    font-size: 26px;
    line-height: 39px;
    font-feature-settings: "case" 1;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.textWithPhoto__text p {
    font-family: 'Campus 500';
    font-size: 16px;
    line-height: 150%;
    text-align: justify;
}
.textWithPhoto__text p:last-child {
    margin-bottom: 0;
}

.textWithPhoto__photo {
    width: min(580px, calc(100vw - 32px));
    height: 543px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 8px;
}

.textWithPhoto__photo img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.mobile { 
    display: none;
    font-family: 'Campus 700';
    font-size: 18px;
    line-height: 27px;
    text-transform: uppercase;
    font-feature-settings: "case" on;
    margin-bottom: 1rem;
}


/* .slider-laptop {
    display: block;
} */
.slider-mobile {
    display: none;
}

/* R E S P O N S I V E  */

@media screen and (max-width: 1400px) {
    .textWithPhoto__photo {
        width: 500px;
        height: 468.33px;
    }
    .textWithPhoto__text {
        /* width: 40.625%; */
        max-width: calc(100% - 600px);
        /* max-width: unset; */
    }
}
@media screen and (max-width: 1300px) {
    .textWithPhoto {
        gap: 40px;
    }
    .textWithPhoto__text {
        max-width: calc(100% - 540px);
    }
}

@media screen and (max-width: 1199px) {
    .textWithPhoto {
        flex-direction: column-reverse;
        padding: 24px 45px 40px;
        gap: 0;
    }
    .textWithPhoto__text {
        width: unset;
        max-width: unset;
    }
    .textWithPhoto__text p {
        text-align: unset;
    }
    .textWithPhoto__photo {
        width: min(500px, calc(100vw - 32px));
        margin: 0 auto 24px;
    }
    .laptop {
        display: none;
    }
    .mobile {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .textWithPhoto {
        padding-inline: 16px;
    }
    
    .textWithPhoto__photo {
        height: 280px;
    }
    .slider-laptop {
        display: none;
    }
    .slider-mobile {
        display: block;
    }
}