.page-wrapper:not(.homepage) .tour-locations-section .general-btn-wrapper {
    display: none;
}

.tour-locations-section {
    position: relative;
}

.tour-locations-section.inner {
    padding-block: var(--spacing-large);
    overflow: hidden;
}

.bg-img-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: -450px;
    opacity: 50%;
    z-index: -1;
}

.bg-img {
    width: 100%;
}

.tour-location-item {
    position: relative;
    display: flex;
    align-items: center;
}

.tour-location-item:not(:last-child)::after {
    content: "|";
    height: 42px;
    width: 4px;
    position: absolute;
    background: var(--white);
    right: -47px;
}

.tour-locations-title {
    font-family: 'EBGaramond', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5.5vw, 59px) !important;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: var(--spacing-large);
}

.tour-locations-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--spacing-large);
}

button.location-title {
    font-family: 'GFSNeohellenic';
    font-size: clamp(24px, 5.5vw, 46px) !important;
    letter-spacing: 12px;
    text-transform: uppercase;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    text-transform: uppercase;
}

button.location-title.selected {
    color: var(--accent);
}

.tour-swiper {
    padding-bottom: clamp(80px, 6.65vw, 120px) !important;
}

.tour-swiper .swiper-pagination {
    padding-bottom: 20px;
    min-width: 150px;
}

.tour-swiper .swiper-pagination .swiper-pagination-bullet {
    box-shadow: 
        0px 11.55px 17.33px 0px #00000099,
        0px 3.85px 5.78px 0px #0000001F,
        0px 1.93px 1.93px 0px #0000000A;
    background: linear-gradient(0deg, #5D5677, #5D5677), 
                linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    height: 28px;
    width: 28px;
    opacity: 1;
    margin: 0 5px;
}

.tour-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(0deg, #694BE3, #694BE3),
                linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1441px) {

    .tour-locations-title {
        width: 35%;
    }

    .page-wrapper:not(.homepage) .tour-swiper .swiper-wrapper {
        height: 2850px; /* TODO: Why is this necessary? */
    }

    .page-wrapper:not(.homepage) .tour-swiper .swiper-wrapper {
        height: 2850px; /* TODO: Why is this necessary? */
    }

}

@media (min-width: 860px) {

    .page-wrapper:not(.homepage) .tour-swiper .swiper-wrapper {
        height: 2850px; /* TODO: Why is this necessary? */
    }

}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1440px) {

    .tour-locations-wrapper {
        flex-wrap: wrap;
    }

    .tour-location-item {
        flex: 1 0 auto;
        justify-content: center;
    }

    .tour-location-item:not(:last-child)::after {
        right: 0px;
    }

}

@media (max-width: 576px) {

    .tour-locations-wrapper {
        flex-direction: column;
    }

    button.location-title {
        letter-spacing: 10px;
    }

    .tour-location-item:not(:last-child)::after {
        content: none;
    }

}

