#experiences {
    position: relative;
    background-color: #FAFAFA;
    z-index: -2;
}

.experiences {
    display: flex;
    align-items: center;
    padding: 60px;
}

.experiences-img {
    position: relative;
    width: 60%;
    margin-right: 8vw;
}

.experiences-img::after {
    position: absolute;
    content: '';
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    background-color: #FF7F50;
    z-index: -1;
}

.experiences-img img {
    width: 100%;
    height: 100%;
}

.experiences-content-item {
    margin-bottom: 24px;
}

.experiences-content-item-title {
    font-weight: 600;
}


.experiences-content-quote {
    font-size: 1.875em;
    font-weight: bold;
    line-height: 1.4em;
}


@media screen and (max-width: 1200px) {
    .experiences {
        flex-direction: column;
    }

    .experiences-img {
        width: 100%;
        height: 420px;
        margin-right: 0;
        margin-bottom: 32px;
    }

    .experiences-img img {
        object-fit: cover;
        object-position: center -64px;
    }
}