.last-section-paragraph {
    margin-top: 20px;
    display: inline-block;
    width: 100%;
}


/* OFFERS */

.offer {
    display: flex;
    margin-top: 100px;
}

.offer-select-date {
    margin-top: 200px;
}

.first-column,
.second-column {
    box-sizing: border-box;
}

.first-column {
    width: 50%;
}

.second-column {
    width: 40%;
    margin-left: 10%;
    align-content: center;
}

.second-column img {
    width: 100%;
}

.offer:nth-child(even) {
    flex-direction: row-reverse;
}

.offer:nth-child(even) .second-column {
    margin-left: 0;
    margin-right: 10%;
}

.first-column .attraction-rank {
    font-size: var(--step-3);
    line-height: 130%;
    font-family: var(--font-headers);
    margin-right: 10px;
    vertical-align: super;
    display: inline;
}

.first-column h2 {
    display: inline;
    margin: 0;
}

.offer-description {
    margin-top: 30px;
}

.offer-description ul {
    margin-top: 1em;
    margin-bottom: 1em;
}

.offer-description ul li {
    list-style-type: circle;
    margin-bottom: 10px;
}

.visitor-info {
    margin-top: 30px;
}

.visitor-info div strong {
    font-weight: 700;
}

.visitor-info a {
    text-decoration: underline;
}

.visitor-info a::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 14px;
    height: 14px;
    background: url('../images/icon-external-link.svg') no-repeat center;
    background-size: contain;
    vertical-align: middle;
}

.explore-other-offers {
    text-align: left;
    text-align: center;
    margin-bottom: 100px;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.explore-other-offers h2 {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.full-width-combo {
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 50px;
    min-height: 200px;
}


/* .full-width-combo {
    width: 100%;
    display: block;
    margin-bottom: 100px;
    min-height: 200px;
} */

.explore-other-offers .read-more {
    margin-top: 20px;
}

.explore-other-offers .offer-description {
    margin-top: 20px;
}

.explore-other-offers h3 {
    margin-bottom: 0;
    padding-bottom: 0;
}

.other-offer {
    width: 48%;
    box-sizing: border-box;
    text-align: left;
}

.other-offer img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}


/* END OFFERS */


/* BUTTON */

.button {
    position: relative;
    background-color: #000000;
    border: none;
    font-size: var(--step-0);
    color: #FFFFFF;
    width: 230px;
    height: 43px;
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.button-link {
    display: block;
    margin-top: 30px;
}

.button:after {
    content: "";
    background: #f1f1f1;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px !important;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s;
}

.button:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s;
}

.wrapper {
    max-width: 1216px;
    margin: auto;
    box-sizing: border-box;
}


/*END  BUTTON */


/* MOBILE */

@media (max-width: 800px) {
    h1 {
        margin-top: 50px !important;
    }
    .offer-select-date {
        margin-top: 50px;
    }
    .visitor-info {
        width: 100%;
    }
    .offer {
        align-items: center;
        margin-top: 50px;
    }
    .offer img {
        width: 100%;
        height: auto;
    }
    .button {
        margin-top: 20px;
    }
    .first-column {
        width: 100%;
    }
    .offer:nth-child(even) .second-column,
    .offer:nth-child(odd) .second-column {
        margin-right: 0;
        margin-left: 0;
    }
    .offer:nth-child(odd),
    .offer:nth-child(even) {
        flex-direction: column;
    }
    .button-link {
        margin-top: 20px;
        width: 100%;
    }
    .question__label {
        position: relative;
        padding-right: 40px;
    }
    .question__label::after {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0%, -50%) rotate(90deg);
    }
    .question__content p {
        padding: 1rem 40px 0 0;
    }
    .offer-description ul {
        margin-left: 20px;
    }
    .other-offer {
        width: 100%;
        margin-bottom: 30px;
    }
}


/* END MOBILE */