.five-item-set {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0;
}

.five-item-set h1 {
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: var(--azamara-blue);
    margin: 0 24px;
}

.five-item-set p {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin: 0 24px;
    color: var(--night-sky);
}

.five-item-set .images-container {
    display: flex;
    width: 100%;
    margin: 24px 0;
    margin-right: 0;
    scrollbar-color: transparent transparent;
    scrollbar-width: 0;
    padding-bottom: 14px;
    overflow-x: scroll;
    scrollbar-width: none;
}

.five-item-set .images-container::-webkit-scrollbar {
    display: none;
}

.five-item-set .images-container .image-group {
    position: relative;
    flex: 1;
    aspect-ratio: 8.5/11;
    margin-right: 24px;
    min-width: 80vw;
}

.five-item-set .images-container .image-group:first-child {
    margin-left: 24px;
}

.five-item-set .images-container .image-group img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.five-item-set .images-container .image-group a {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-image: linear-gradient(rgba(0, 0, 0, 0), var(--azamara-blue));
    padding: 16px;
    color: var(--pure-white);
    font-size: 20px;
}

.five-item-set span {
    display: inline-block;
}

.five-item-set .btn-rounded {
    height: 72px;
}

/* -sm breakpoint */
@media (min-width: 576px) {
    .five-item-set h1 {
        font-size: 48px;
        line-height: 60px;
    }

    .five-item-set p {
        font-size: 24px;
        line-height: 32px;
    }
    
    .five-item-set .images-container .image-group {
        min-width: 432px;
        margin-right: 48px;
    }
    
    .five-item-set .images-container .image-group:first-child {
        margin-left: 48px;
    }
}

/* -md breakpoint */
@media (min-width: 768px) {

}

/* -lg breakpoint*/
@media (min-width: 992px) {

}

/* -xl breakpoint */
@media (min-width: 1200px) {
    .five-item-set .images-container .image-group {
        width: auto;
        min-width: 0;
        margin-right: 24px;
        padding-bottom: 0;
    }

    .five-item-set .images-container {
        width: auto;
        display: flex;
        margin: 48px 84px;
        overflow-x: hidden;
    }

    .five-item-set .images-container .image-group:first-child {
        margin-left: 0;
    }

    .five-item-set .images-container .image-group:last-child {
        margin-right: 0;
    }
}