:root {
    --color-white: #ffffff;
    --color-primary: #04374B;
    --color-secondary: #0B8ABB;
    --color-tertiary: #85C5DD;
    --color-background: #E7F3F8;
    --color-text: #414141;
    --font-primary: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
    display: flex;
    flex-direction: column;
}

a {
    color: var(--color-white);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.cursor-pointer {
    cursor: pointer;
}

.icon {
    width: 34px;
    height: 34px;

    @media (min-width: 768px) {
        width: 56px;
        height: 56px;
    }
}

/* HEADER */
.header {
    padding: 16px;
    border-bottom: 1px solid #DADADA;
}

.header img {
    width: 142px;
    height: 16px;
}

@media (min-width: 768px) {
    .header {
        padding: 24px 40px;
        border-bottom: none;
    }

    .header img {
        width: 214px;
        height: 24px;
    }
}

/* BODY */
.short-page-main {
    flex-grow: 1;
    max-width: 1124px;
}

.hero {
    padding: 0 16px 24px;
    margin: 24px auto 0;
}

.content-container {
    width: 100%;
    max-width: 576px;
    margin: auto;
}

.content-container p {
    color: var(--color-text);
    margin: 4px 0;
    line-height: 1.5rem;
}

@media (min-width: 768px) {
    .content-container p {
        margin: 8px 0;
        font-weight: 400;
        line-height: 1.75rem;
    }
}

/* BODY TITLE */
.hero-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 32px;
}

.heading {
    margin-bottom: 32px;
}

.heading h1 {
    color: var(--color-primary);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 3rem;
    letter-spacing: -0.72px;
    margin-top: 0;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        padding-bottom: 80px;
        margin: 0 auto;
    }

    .hero-content {
        width: 100%;
        margin-right: 81px;
    }

    .hero {
        padding: 40px 0 80px;
    }

    .heading {
        width: 60%;
    }

    .heading h1 {
        font-size: 3.75rem;
        line-height: 4.5rem;
        letter-spacing: -1.2px;
    }
}

/* BODY IMAGE */
.hero-image-container-mobile,
.hero-image-container-desktop {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-image-container-mobile {
    margin: 24px 0;
}

.hero-image-container-desktop {
    display: none;
}

@media (min-width: 768px) {
    .hero-image-container-mobile {
        display: none;
    }

    .hero-image-container-desktop {
        margin-top: 0;
        display: flex;
    }
}

.hero-image {
    max-width: 358px;
    height: auto;
}

@media (min-width: 768px) {
    .hero-image {
        width: 424px;
    }
}

/* SUBMIT FORM */
#default-message {
    display: block;
}

#success-message {
    display: none;
}

#error-message {
    display: none;
}

.thank-you-header {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    

    @media (min-width: 768px) {
        gap: 16px;
        margin-bottom: 16px;
    }
}

.submit-form-container {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: var(--color-background);
    padding: 24px 16px;
    color: var(--color-primary);
}

.submit-form-container h2 {
    font-size: 2rem;
    margin: 0 0 16px 0;

    @media (min-width: 768px) {
        margin: 0;
    }
}

.submit-form-container p {
    margin: 16px 0;
    line-height: 1.5rem;
}

.submit-form-container form p {
    font-size: 14px;

    @media (min-width: 768px) {
        font-size: 16px;
    }
}

.submit-form-container a {
    color: var(--color-primary);
    text-decoration: underline;
    cursor: pointer;
}

.submit-form-container input,
.submit-form-container button {
    width: 100%;
    border-radius: 8px;
}

.submit-form-container input {
    font-size: 1rem;
    height: 40px;
    margin: 8px 0;
    padding: 12px 14px;
    border: 1px solid #AFAFAF;
    background-color: var(--color-white);
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    box-sizing: border-box;
}

.submit-form-container button {
    height: 48px;
    padding: 12px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    background-color: var(--color-secondary);
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .submit-form-container {
        padding: 64px;
        flex-direction: row;
    }

    .submit-form-container form {
        width: 480px;
        margin-left: 32px;
    }

    .submit-form-container h2 {
        font-size: 2.5rem;
    }

    .submit-form-container p {
        font-size: 1.25rem;
    }
}

/* FOOTER */
.footer {
    padding: 32px 24px 24px 24px;
    color: white;
    background-color: var(--color-primary);
}

.footer-container {
    display: flex;
    flex-direction: column;
    border-bottom-color: var(--color-tertiary);

    @media (min-width: 768px) {
        display: flex;
        flex-direction: row;
        width: 76%;
        margin: 0 auto;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--color-tertiary);
    }
}

.footer-st-icon-desktop {
    display: none;

    @media (min-width: 768px) {
        display: block;
    }
}

.footer-image-container {
    order: 1;
    padding-bottom: 2rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--color-secondary);

    @media (min-width: 768px) {
        width: 25%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        border-bottom-width: 0;
    }
}

.footer-hotel-link {
    order: 2;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-secondary);

    @media (min-width: 768px) {
        order: 3;
        border-bottom: none;
        width: 25%;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.footer-mobile-hotel-link {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    font-size: 0.875rem;

    @media (min-width: 768px) {
        display: none;
    }
}

.footer-smartertravel-link {
    order: 3;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-secondary);

    @media (min-width: 768px) {
        order: 2;
        border-bottom: none;
        width: 25%;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.footer-desktop-smartertravel-link {
    display: none;
    margin-top: 1.5rem;
    gap: 0.75rem;
    font-size: 0.875rem;
    flex-direction: column;

    @media (min-width: 768px) {
        display: flex;
    }
}

.footer-mobile-hotel-link-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    font-size: 0.875rem;
    display: none;
}

.footer-desktop-hotel-link-container {
    display: none;
    margin-top: 1.5rem;
    gap: 0.75rem;
    font-size: 0.875rem;

    @media (min-width: 768px) {
        display: flex;
        flex-direction: column;
    }
}

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

.footer-title {
    color: #ffffff;
    font-weight: bold;

    @media (min-width: 768px) {
        color: var(--color-tertiary);
    }
}

.footer-title-only-mobile {
    display: inline;

    @media (min-width: 768px) {
        display: none;
    }
}

.footer-title-only-desktop {
    display: none;

    @media (min-width: 768px) {
        display: inline;
    }
}

.footer-social-and-review {
    order: 4;
    padding-top: 1.5rem;
    padding-bottom: 2rem;

    @media (min-width: 768px) {
        padding-top: 0;
        padding-bottom: 0;
        width: 25%;
    }
}

.footer-icon {
    width: 20px;
    height: 20px;
    max-width: none;
}

.footer-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 3rem;
    text-align: center;

    @media (min-width: 768px) {
        justify-content: flex-start;
        gap: 2rem;
        text-align: left;
    }
}

.footer-icon-title {
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-align: left;
    font-weight: 700;
    padding-bottom: 1rem;

    @media (min-width: 768px) {
        color: var(--color-tertiary);
        justify-content: flex-start;
    }
}

.footer-credit {
    text-align: center;
    font-size: 0.75rem;

    @media (min-width: 768px) {
        width: 76%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        padding-top: 1rem;
    }
}

.footer-credit-br {
    display: block;

    @media (min-width: 768px) {
        display: none;
    }
}

.footer-trustpilot {
    width: 85px;
    max-width: none;
}

.footer-bbb {
    width: 105px;
    max-width: none;
}


@media (min-width: 768px) {
    .footer-st-icon-mobile {
        display: none;
    }

    .footer-arrow-up-and-down {
        display: none;
    }
}

.footer-review {
    display: flex;
    justify-content: center;
    gap: 3.125rem;

    @media (min-width: 576px) {
        gap: 5.313rem;
    }

    @media (min-width: 768px) {
        justify-content: flex-start;
        gap: 0.5rem;
    }

    @media (min-width: 1280px) {
        gap: 2.5rem;
    }
}