.upcoming-section {
    height: 600px;
    background-size: cover;
    width: 90%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin: 5%;
    justify-content: space-between;
}

.upcoming-section:nth-child(odd) {
    /* background-color: #f0f0f0; */
    /* justify-self: flex-end; */
    flex-direction: row-reverse;
}

.upcoming-section img{
    max-width: 70%;
    max-height: 100%;
}

.upcoming-section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px;
}

.upcoming-section-text h2 {
    font-size: 35px;
}

.upcoming-section-text p {
    font-size: 20px;
}

/* .kimberly-section {
    background-image: url(/assets/upcoming/kimberly_banner.png);
}

.bermuda-section {
    background-image: url(/assets/upcoming/bermuda_banner.png);
} */

@media (max-width: 1300px) {
    .upcoming-section {
        flex-direction: column !important;
        justify-content: flex-start;
        height: auto;
    }

    .upcoming-section img {
        max-width: 100%;
    }
}