@font-face {
    font-family: "Helvetica_Neue";
    src: url(HelveticaNeue.ttc);
    font-weight: normal;
}
@font-face {
    font-family: "AppleSymbols";
    src: url(Apple_Symbols.ttf);
    font-weight: normal;
}
@font-face {
    font-family: "DidoLtH-Roman";
    src: url(DidotLH-Roman.otf);
    font-weight: normal;
}

.nav-item.active a{
    color: var(--pallete_blue);
}
.nav-item{
    margin-left: 0.5vw;
    margin-top: 69px;
    font-family: "Helvetica_Neue";
    align-content: center;
 
}

.zoominzoomout {
    animation: zizo 1s ease;
}

@keyframes zizo {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(.5, .5);
    }
    100% {
        transform: scale(1, 1);
    }
}

.form form {
    display: flex;
    flex-flow: column;
    margin-top: 4em;
    padding-top: 4em;
    background-color: var(--pallete_blue);
    color: var(--white);
    font-size: 1.1em;
    gap: 2em;
}

form .form_row {
    display: flex;
    flex-flow: row;
    gap: 2em;
}

form .form_row .form_left {
    margin-left: 1.5em;
}

form .form_row .form_right {
    margin-right: 1.5em;
}

form .form_row .form_left,
form .form_row .form_right {
    display: flex;
    width: 50%;
    justify-content: space-between;
}

form .form_row input[type = "text"],
form .form_row input[type = "numeric"],
form .form_row textarea[type = "text"] {
    width: 100%;
    font-size: 1.1em;
    color: white;
    background: transparent;
    border: none;
    border: none;
    border-bottom: 1px solid #eceff4;
    outline: none;
    color: #eceff4;
}

form .form_box {
    margin: 0em 1.5em;
}

form .form_row button {
    background-color: transparent;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 1.5em;
    margin-bottom: 1em;
    padding: 0.5em;
    cursor: pointer;
}

@media (max-width: 900px) {
    .form form {
        gap: 1em;
    }

    form .row {
        display: flex;
        flex-flow: column;
        gap: 1em;
    }

    form .row .left,
    form .row .right {
        display: flex;
        width: 75%;
        margin-left: 1.5em;
        flex-direction: column;
        gap: 1em;
    }

    form .row input[type = "text"], form .row input[type = "numeric"], form .row textarea[type = "text"] {
        width: 100%;
        font-size: 1em;
    }

    form .row input[type = "text"], form .row input[type = "numeric"] {
        height: 1.2em;
    }

    form .row textarea[type = "text"] {
        height: 3em;
    }
}

@media (max-width: 250px) {
    form .row input[type = "text"], form .row input[type = "numeric"], form .row textarea[type = "text"] {
        width: 100%;
        font-size: 0.8em;
    }
}

footer .footerdiv {
    display: flex;
    flex-flow: row;
}

footer .footerimage {
    flex: 0.8;
}

footer img {
    width: 4.7em;
    height: 5.7em;
}

footer .footertext {
    display: flex;
    flex: 1.2;
    flex-direction: column;
    align-items: center;
    width: 40%;
    margin-right: 25%;
}

