.base-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1.25rem; 
    padding-right: 1.25rem; 
}

@media (min-width: 768px) {
    .base-wrapper {
        padding-left: 2.5rem; 
        padding-right: 2.5rem;
    }
}

.base-container {
    width: 100%;
    max-width: 75rem;
}

.home-banner-container {
    min-height: 52.5625rem;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 4.375rem;
    padding-bottom: 1.25rem;
    background-image: url('../imgs/home-banner-background-mobile.webp');
}

@media (min-width: 768px) {
    .home-banner-container {
        background-image: url('../imgs/home-banner-background.webp');
    }

    .home-baner-title {
        font-size: 3.125rem;
    }
}

.home-banner-text-group {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

.home-baner-title {
    font-weight: bold;
    font-size: 1.75rem;
    line-height: 1.5;
}

.home-baner-content {
    font-weight: normal;
    font-size: 1rem;
}

.home-banner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .home-banner {
        flex-direction: row;
        gap: 7.625rem; 
    }
}

.booking-form.ra-booking-form .form-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125rem;
}

@media (min-width: 768px) {
    .booking-form.ra-booking-form .form-group {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-form.ra-booking-form form {
    height: 100%;
    border-radius: 1.25rem;
    gap: 1.125rem;
}

.booking-form.ra-booking-form .form-submit-button {
    padding-top: 2.5rem; 
}
