* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #FAFAFA;
    width: 100%;
    max-width: 2100px;
    margin: 0 auto;
    color: #343434;
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 28px 32px;
    z-index: 6;
    background-color: #FAFAFA;
}

.nav-bar .nav-normal-logo {
    visibility: hidden;
}

.nav-bar .nav-bigger-logo {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.5);
    transform-origin: center left;
}

@media screen and (max-width: 550px) { .nav-bar .nav-bigger-logo { transform: scale(1); } }

.nav-bar-links ul li {
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
    vertical-align: middle;
}

.nav-bar-links ul li a {
    padding: 4px 6px;
    color: #343434;
    text-decoration: none;
}

.nav-bar-link-active::before {
    content: "";
    height: 2px;
    width: 50%;
    background-color: #00ABC7;
    border-radius: 2px;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-bar-link-active.nav-bar-link-active {
    color: #00ABC7;
    font-weight: bold;
}

.nav-bar-links ul li:last-child {
    margin-right: 0;
}

.nav-bar-link-responsive-flag.nav-bar-link-responsive-flag {
    display: none;
}

.nav-bar-lang-btn {
    background-color: transparent;
    border: 0;
    color: #343434;
    padding: 4px 12px;
    border-radius: 30px;
    cursor: pointer;
}

.nav-bar-lang-btn-active {
    background-color: #00ABC7;
    color: #F4F4F4;
}

@media screen and (max-width: 878px) {
    .nav-bar-links ul li {
        display: none;
    }

    .nav-bar-link-responsive-flag.nav-bar-link-responsive-flag {
        display: inline-block;
    }

    .header-hero-page-text-h1 {
        font-size: 48px;
        line-height: 58px;
    }
}

@media screen and (max-width: 490px) {
    .nav-bar {
        padding: 18px 16px;
    }
}

.side-nav-bar {
    position: fixed;
    background-color: #FAFAFA;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.side-nav-bar.side-nav-bar-hidden {
    transform: scaleX(0);
}

.nav-bar-close p {
    background-color: #212121;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    color: #D7272E;
}

.side-nav-bar ul {
    height: 100%;
    list-style-type: none;
}

.side-nav-bar ul li {
    width: 80%;
    margin: 48px auto;
    cursor: pointer;
    padding: 12px;
}

.side-nav-bar ul li a {
    font-size: 34px;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.side-nav-bar ul li:hover a {
    transform: translateX(40px);
    transition: transform 350ms ease-in-out;
}


/*************************************************************************
Booking Container
*************************************************************************/

.booking-container {
    position: fixed;
    display: flex;
    flex-direction: row-reverse;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 350ms linear 0ms;
}

.booking-container[data-show="true"] {
    opacity: 1;
    visibility: visible;
    transition: opacity 350ms linear 250ms;
}

.booking-container-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F4F4F4;
    width: 40%;
    margin: 22px;
    border-radius: 12px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity 250ms linear 350ms;
}

.booking-container[data-show="true"] .booking-container-body {
    opacity: 1;
    visibility: visible;
    transition: opacity 250ms linear 0ms;
}

.booking-form h2 {
    margin-bottom: 8px;
}

.booking-form p {
    font-size: 18px;
    line-height: 24px;
}

.booking-form-body {
    margin-top: 12px;
}

.booking-form-body-user-details {
    margin-top: 32px;
}

.booking-form-body-user-details h4 {
    margin-bottom: 6px;
}

.booking-form-body-user-details input,
.booking-form-body-user-details textarea {
    font-family: "Inter", sans-serif;
    width: 100%;
    padding: 12px;
    margin-bottom: 8px;
    font-size: 18px;
    border-radius: 6px;
    border: 1px solid #343434;
}

.booking-form-body-user-details input.booking-form-body-user-details-warning {
    border: 1px solid #D7272E;
}

.booking-confirmation-and-btns {
    margin-top: 18px;
}

.booking-confirmation-and-btns button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #00ABC7;
    border-radius: 6px;
    border: 0px;
    margin-bottom: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 18px;
}

.bookings-completed {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.bookings-completed-showing p {
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.bookings-completed-loading {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border-top: 4px solid #212121;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #212121;
    animation: spin-animation 2s linear 0s infinite;
}

@keyframes spin-animation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bookings-completed-no-showing {
    display: none;
}

.bookings-completed-showing p:nth-child(1) { font-size: 42px; }

.bookings-completed-showing p:nth-child(2) {
    font-size: 24px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.bookings-completed-showing p:nth-child(3) {
    font-size: 16px;
    line-height: 22px;
}

.booking-confirmation-and-btns button:last-child {
    background-color: transparent;
    padding: 8px;
    margin-bottom: 8px;
    margin-top: 0;
    font-size: 16px;
    color: #D7272E;
}

.booking-confirmation-and-btns h4 {
    margin-bottom: 8px;
}

.booking-confirmation-p span:first-child {
    display: inline-block;
    width: 190px;
}

.booking-confirmation-p {
    margin-bottom: 8px;
}

.booking-confirmation-p:last-child {
    margin-bottom: 0px;
}

.bookings-fully-completed.bookings-fully-completed {
    display: none;
}

/*************************************************************************
Our Offers
*************************************************************************/

.our-offers {
    margin-top: 112px;
}

.our-offers-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 126px;
}

.our-offers-header h1 {
    font-family: Vogie-Black, "Inter", sans-serif;
    font-size: 74px;
}

.our-offers-header p {
    font-family: Vogie-Black, "Inter", sans-serif;
    font-size: 74px;
    color: #D7272E;
    font-weight: 600;
}

.our-offers-body {
    margin-top: 54px;
    overflow-x: hidden;
}

.our-offers-carousel {
    --card-dimensions: 542px;
    height: var(--card-dimensions);
    margin-bottom: 34px;
}

.our-offers-carousel-imgs figure {
    position: absolute;
    top: 0;
    left: calc( 50% - (var(--card-dimensions) / 2) );
    height: var(--card-dimensions);
    width: var(--card-dimensions);
}

.our-offers-carousel-imgs figure img {
    --diff: calc( var(--image-i) - var(--image-selected) );
    --diff-abs: calc( var(--diff) * var(--diff) );
    --diff-abs-div: calc( ( var(--diff) * var(--diff) ) / var(--image-count) );
    --diff-abs-div-scale: calc( 1 - 2 * (var(--diff-abs-div) / var(--image-count)) );

    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    transform:
        translate( calc(40% * var(--diff)), 0 )
        scale( var(--diff-abs-div-scale) );
    z-index: calc( 4 - var(--diff-abs) );
    filter: grayscale( var(--diff-abs) );

    opacity: calc( 3 - 2.9 * var(--diff-abs-div));

    transition:
        transform 450ms ease-in-out 0s,
        z-index 450ms linear 0s,
        filter 350ms linear 0s;
}

.our-offers-carousel-content {
    text-align: center;
}

.our-offers-carousel-content h3 {
    font-size: 44px;
    margin-bottom: 24px;
}

.our-offers-carousel-content p {
    font-size: 24px;
    color: #5B5B5B;
    line-height: 34px;
    width: 54%;
    margin: 0 auto;
}

.our-offers-carousel-btn {
    margin-top: 24px;
    padding: 18px 44px;
    font-size: 18px;
    color: #FAFAFA;
    background-color: #D7272E;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.our-offers-carousel-action-btns {
    position: static;
}

.our-offers-carousel-action-btn {
    position: absolute;
    height: 124px;
    width: 124px;
    font-size: 18px;
    border-radius: 100px;
    background-color: transparent;
    cursor: pointer;
    z-index: 5;
}

.our-offers-carousel-action-btn p {
    margin-top: 8px;
    margin-bottom: 8px;
}

.our-offers-carousel-btn-prev {
    bottom: -30px;
    left: 14%;
    color: #D7272E;
    border: 1px solid #D7272E;
    background-color: #FAFAFA;
    outline: 3px solid #FAFAFA;
}

.our-offers-carousel-btn-next {
    top: 30%;
    right: calc( 50% - (var(--card-dimensions) / 2) - 62px );
    background-color: #00ABC7;
    border: 0;
    color: #FAFAFA;
    font-weight: 600;
}

.our-offers-carousel-btn-next::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00ABC7;
    border-radius: 100px;
    z-index: -1;
    animation: pulse-next-btn-shorter 2s ease-in-out 0ms infinite;
}

.our-offers-carousel-btn-next::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00ABC7;
    border-radius: 100px;
    z-index: -1;
    animation: pulse-next-btn-longer 3s ease-in-out 2s infinite;
}

@keyframes pulse-next-btn-shorter {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulse-next-btn-longer {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.3);
        opacity: 0;
    }
}

.our-offers-carousel-content h3 {
    overflow: hidden;
}

.our-offers-carousel-content h3 span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 350ms linear;
}

.our-offers-carousel-content h3 span:not(:first-child) {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    transition:
        transform 350ms linear,
        opacity 250ms linear;
}

.our-offers-carousel-content h3 span:not(:first-child).our-offers-carousel-content-current-h1 {
    transform: translateX(-50%) translateY(0%);
    opacity: 1;
}

.our-offers-carousel-content-current-h1.our-offers-carousel-content-current-h1 {
    transform: translateY(0%);
}

.our-offers-carousel-btn-next.remove-offers-carousel-btn { display: none }

.our-offers-carousel-btn-prev.remove-offers-carousel-btn { display: none }

@media screen and (min-width: 980px) {
    .our-offers-carousel-action-btn:hover {
        transform: scale(0.95);
        transition: transform 250ms ease-in-out;
    }   
}

@media screen and (max-width: 1398px) {
    .our-offers-header h1 { font-size: 64px; }
    
    .our-offers-header p { font-size: 64px; }

    .our-offers-carousel-content p { width: 60%; }
}

@media screen and (max-width: 1280px) {
    .our-offers-header h1 { font-size: 44px; }
    
    .our-offers-header p { font-size: 44px; }

    .our-offers-carousel { --card-dimensions: 482px; }

    .our-offers-carousel-content p {
        font-size: 22px;
        width: 70%;
    }

    .our-offers-carousel-content h3 { font-size: 36px; }
}

@media screen and (max-width: 1080px) {
    .our-offers-header { padding: 0 88px; }
}

@media screen and (max-width: 980px) {
    .our-offers-header h1 { font-size: 38px; }
    
    .our-offers-header p { font-size: 38px; }

    .our-offers-carousel { --card-dimensions: 412px; }

    .our-offers-carousel-content p {
        font-size: 18px;
        line-height: 28px;
    }

    .our-offers-carousel-content h3 { font-size: 28px; }
}

@media screen and (max-width: 860px) {
    .our-offers-header h1 { font-size: 38px; }
    
    .our-offers-header p { font-size: 38px; }

    .our-offers-carousel { --card-dimensions: 362px; }

    .our-offers-carousel-content p { width: 90%; }

    .our-offers-carousel-content h3 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .our-offers-carousel-btn-prev {
        transform: scale(0.8);
    }
    
    .our-offers-carousel-btn-next {
        transform: scale(0.8);
    }
}

@media screen and (max-width: 810px) {
    .our-offers-header { padding: 0 44px; }
}

@media screen and (max-width: 710px) {
    .our-offers-header { padding: 0 22px; }

    .our-offers-carousel { --card-dimensions: 292px; }

    .our-offers-carousel-content p { width: 90%; }
}

@media screen and (max-width: 654px) {
    .our-offers-carousel {
        --card-dimensions: 262px;
    }

    .our-offers-header {
        display: block;
    }

    .our-offers-header p {
        margin-top: 38px;
    }

    .our-offers-carousel-btn-prev {
        transform: scale(0.6);
    }
    
    .our-offers-carousel-btn-next {
        transform: scale(0.6);
    }
}

@media screen and (max-width: 490px) {
    .our-offers-header h1 { font-size: 32px; }
    
    .our-offers-header p { font-size: 32px; }

    .our-offers-carousel { --card-dimensions: 264px; }

    .our-offers-carousel-content p {
        width: 100%;
        padding: 0px 22px;
    }

    .our-offers-carousel-content h3 { font-size: 22px; }

    .our-offers-carousel-btn-prev {
        bottom: -60px;
        left: 4%;
    }
}

/*************************************************************************
Footer
*************************************************************************/

footer {
    margin-top: 64px;
    padding: 0 22px;
    margin-bottom: 38px;
}

.footer {
    color: #F4F4F4;
    background-color: #343434;
    border-radius: 12px;
    padding: 58px 62px 34px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-container-desc {
    flex: 1;
    max-width: 436px;
}

.footer-container-desc p {
    margin-top: 14px;
    font-size: 18px;
    line-height: 30px;
}

.footer-container-links {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.footer-container-links-container-1 p,
.footer-container-links-container-2 p {
    font-size: 22px;
    margin-bottom: 26px;
}

.footer-container-links-container-1 ul,
.footer-container-links-container-2 ul {
    list-style: none;
}

.footer-container-links-container-1 ul li,
.footer-container-links-container-2 ul li {
    margin-bottom: 18px;
}

.footer-container-links-container-1 ul li a,
.footer-container-links-container-2 ul li a {
    font-size: 18px;
    color: #F4F4F4;
    text-decoration: none;
}

.footer-container-links-container-2-header {
    display: flex;
}

.footer-container-links-container-2-header svg {
    margin-top: 4px;
}

.footer-container-links-container-2-header p {
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-container-links-container-2-header p.remove-margin {
    margin-left: 0px;
}

.footer-container-links-container-2-email {
    margin-top: 38px;
}

.footer-container-copyright {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    margin-top: 124px;
}

.footer-container-copyright a {
    color: inherit;
}

@media screen and (max-width: 1100px) {
    .footer-container-links {
        display: block;
        margin-left: 80px;
    }

    .footer-container-desc {
        max-width: 650px;
    }

    .footer-container-links-container-2 {
        margin-top: 80px;
    }

    .footer-container-copyright {
        display: block;
        text-align: center;
        margin-top: 78px;
    }

    .footer-container-copyright p {
        margin-bottom: 18px;
    }

    .footer-container-copyright p:nth-child(2) {
        width: 70%;
        margin: 0 auto 18px;
    }
}

@media screen and (max-width: 490px) {
    footer {
        padding: 0 6px;
    }

    .footer {
        padding: 58px 18px 34px;
    }

    .footer-container {
        display: block;
    }

    .footer-container-links {
        display: flex;
        margin-left: 0px;
    }

    .footer-container-desc {
        max-width: 350px;
        margin-bottom: 72px;
    }

    .footer-container-links-container-2 { margin-top: 0px; }

    .footer-container-desc p {
        font-size: 16px;
        line-height: 30px;
    }

    .footer-container-links {
        display: flex;
        width: 100%;
    }
}