nav#navbar {
    background-color: #1C1E50;

    position: fixed;
    left: 0;
    top: 0;
}

section#form {
    width: 100vw;
    padding: 2rem 4rem;
    margin-top: 6rem;
}

.form__container {
    padding: 1rem 2rem;

    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.form__address {
    flex: 1;

    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    gap: 2rem;

}

.form__address > h2 {
    color: #1C1E50;
    /*font-size: calc(2.5rem + 1vw) !important;*/
    font-size:60px;
}

.form__address--office,
.form__address--contact,
.form__address--social {
    width: 75%;

    display: flex;
    gap: 0.5rem;
}

.form__address h3 {
    /*font-size: calc(0.6rem + 0.5vw);*/
    font-size: 22px;
    margin-bottom: 0.5rem;
}

.form__address p {
    /*font-size: calc(0.5rem + 0.4rem);*/
    font-size:18px;
}

.form__details {
    flex: 2;

    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    gap: 0.5rem;
}

.form__details > h2 {
    /*font-size: calc(2.5rem + 1vw) !important;*/
    font-size:60px;
    color: #1C1E50;
}

.form__details p {
    /*font-size: calc(0.5rem + 0.4rem);*/
    font-size:18px;
}

.form__details > form {
}

.form__details > form > input:not(:last-of-type)
 {
    width: 100%;
    height: 3rem;
    padding: 0.5rem;
    border: 1px solid gray;
    margin: 1rem 0;
    border-radius: 0.5rem;
}

textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid gray;
    margin: 1rem 0;
    border-radius: 0.5rem;
}

input[type='submit'] {
    width: 5rem;
    height: 3rem;
    border-radius: 1.8rem;
    background-color: #1C1E50;
    color: white;
    cursor: pointer;
    border: none;
    border: 2px solid #1C1E50;
    transition: all 0.3s ease;
}

input[type='submit']:hover {
    background-color: white;
    color: #1C1E50;
}

.response {
    width: 100%;
    height: 3rem;
    background-color: #1C1E50;
    color: white;
    border-radius: 0.5rem;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;

    display: none;
}

i {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: #1C1E50;
}

a {
    text-decoration: none;
    color: black;
}

@media only screen and (max-width:900px) {
    section#form {
        padding: 2rem 2rem;
    }

}

@media only screen and (max-width:750px) {
    section#form {
        padding: 1rem 1rem;
    }

    .form__container {
        padding: 1rem 1rem;

        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 2rem;
    }

}

