html {
    scroll-behavior: smooth;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f2f2f2;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
a,
button,
input,
textarea,
select {
    margin: 0;
    margin-block: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

select {
    font-size: 16px;
}

ul {
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

h1 {
    font-size: 52px;
    font-weight: 900;
}

h2 {
    font-size: 26px;
    font-weight: 800;
}

h3 {
    font-size: 45px;
}

p {
    font-size: 18px;
}

textarea {
    resize: vertical;
    max-height: 100px;
}

input, textarea {
    font-size: 16px;
}

select:invalid { color: grey; }

.select {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    padding: .5rem 1rem;

    background-image: url("data:image/svg+xml,<svg fill='rgb(128,128,128)' xmlns='http://www.w3.org/2000/svg' height='23' viewBox='0 -960 960 960' width='23'><path d='M480-345 240-585l43-43 197 198 197-197 43 43-240 239Z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    border-radius: 2px;
    padding: 0.25rem 2rem 0.25rem 0.75rem;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    opacity: 1;
    /* Firefox */
    color: #878787;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #878787;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #878787;
}

/* Navbar  */
:root {
    --navbar-height: 3rem;
}

#navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
}

#navigation nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--navbar-height);
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.navbar__logo {
    position: absolute;
    left: 1.5rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar__logo img {
    display: block;
    height: 2rem;
    width: auto;
}

.navbar__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

#main {
    padding-top: var(--navbar-height);
}

.hamburger {
    display: none;
}

/* Form */

.hero__cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(0, 0, 0, .5);
    width: 72%;
}

.form__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
}

.hero__cta-header {
    color: white;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form__element {
    height: 32px;
    padding: 0rem 1rem;
}

.double__input {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}


.form__text-area {
    min-height: 50px;
    padding: 1rem 1rem;
}

/* Button  */
.submit__button {
    background-color: #316696;
    padding: 1rem;
    margin: 0 4rem;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 900;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
}

.submit__button:hover {
    background-color: #1D3D5A;
}

a.submit__button {
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

/* Footer  */
.footer__container {
    background-color: #ECF2F6;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding-top: 2rem;
}

.footer__logo {
    display: block;
    margin: 0 auto;
    max-width: min(480px, 90vw);
    height: auto;
    padding: 0 1rem;
}

.footer_columns {
    display: flex;
    flex-direction: row;
    gap: 10rem;
    justify-content: center;
}

.footer__column {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 1rem;
}

.column__list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.contact__item {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
}



@media screen and (max-width: 1200px) {
    .footer_columns {
        gap: 5rem;
        padding: 0rem 3rem;
    }

    h3 {
        font-size: 35px;
    }

    h1 {
        font-size: 45px;
    }
    
}

@media screen and (max-width: 1050px) {
    h1 {
        font-size: 35px;
    }
}

@media screen and (max-width: 1000px) {
    .footer_columns {
        flex-direction: column;
        align-items: center;
    }

    .footer__column {
        min-width: 400px;
    }

    .hamburger {
        display: none;
    }

    .cross {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .hamburger {
        display: flex;
        justify-content: end;
        align-items: center;
        background-color: transparent;
        position: absolute;
        top: 0;
        right: 0;
        height: var(--navbar-height);
        padding: 0 1rem;
    }

    .cross {
        display: none;
        display: flex;
        justify-content: end;
        align-items: center;
        background-color: transparent;
        position: absolute;
        top: 0;
        right: 0;
        height: var(--navbar-height);
        padding: 0 1rem;
    }

    .navbar__container {
        display: none;
        position: absolute;
        flex-direction: column;
        background-color: white;
        color: black;
        max-width: 30%;
        text-align: end;
        padding: 1rem;
        right: 1rem;
        top: var(--navbar-height);
        left: unset;
        gap: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

@media screen and (max-width: 650px) {
    .form {
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .form__container {
        gap: 1rem;
    }

    .double__input {
        gap: .5rem;
    }
}

@media screen and (max-width: 550px) {
    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 25px;
    }

    .footer_columns {
        flex-direction: column;
        align-items: flex-start;
        padding: 0rem 1rem;
    }

    .footer__column {
        min-width: unset;
    }
}



.active {
    display: flex !important;
}

.inactive {
    display: none !important;
}