.travel-class-banner-container {
    margin-top: 73px;
    display: flex;
    align-items: center;
    position: relative;
    height: 400px;
    padding: 0 80px;
}

.travel-class-banner-container:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000 21.39%, rgba(0, 0, 0, 0) 62.85%);
    opacity: 0.5;
    z-index: 2;
}

.travel-class-banner-container img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-class-banner-container .title {
    z-index: 3;
    color: white;
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
}

.travel-class-section-row {
    padding: 70px 0;
    font-size: 20px;
}

.travel-class-section-row:nth-child(odd) {
    background: #F4F4F4;
}

.travel-class-section-row:nth-child(even) {
    background: white;
}

.travel-class-section-row .sub-types {
    margin-bottom: 25px;
}

.travel-class-section-row .sub-types .item {
    display: flex;
    align-items: flex-start;
}

.travel-class-section-row .sub-types .item:not(:last-child) {
    margin-bottom: 15px;
}

.travel-class-section-row .sub-types .item .icon {
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    padding: 14px;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.travel-class-section-row .sub-types .item .icon svg {
    width: 100%;
    height: 100%;
}

.travel-class-section-row .sub-types .item .item-content {
    width: 100%;
}

.travel-class-section-row .sub-types .item .item-content .item-title {
    color: #212121;
    font-weight: 700;
    margin-bottom: 3px;
}

.travel-class-section-row .cta-button-container {
    display: flex;
    justify-content: center;
}

.travel-class-section-row .cta-button-container .cta-button {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 0 40px;
}

.travel-class-section-row .top-content p:empty,
.travel-class-section-row .bottom-content p:empty {
    display: none;
}

.travel-class-section-row p:has(iframe) {
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: 0 auto 1rem auto;
    padding-top: 45%;
}

.travel-class-section-row p iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.travel-class-section-row p img.size-full {
    width: 100%;
}

@media screen and (max-width: 560px) {
    .travel-class-banner-container {
        padding: 15px;
        height: 250px;
    }

    .travel-class-banner-container .title {
        font-size: 36px;
        line-height: 1.3;
    }

    .travel-class-section-row {
        padding: 35px 0;
        font-size: 16px;
    }
}