/* NAV */
nav {
    padding-bottom: 50px;
    background: url('../img/contact-nav-back.jpg');
    background-size: cover;
}

#dropdown {
    position: absolute;
    margin-left: 20%;
}

#page-contact-wrapper {
    display: block;
    width: 90%;
    margin: auto;
    margin-top: 160px;
    margin-bottom: 10%;
}

#page-contact-wrapper .page-contact-copy {
    padding-top: 5%;
}

#page-contact-wrapper .page-contact-copy h2 {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 28px
}

#page-contact-wrapper .page-contact-copy p {
    font-size: 18px
}

#page-contact-wrapper .page-contact-copy p a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

#page-contact-wrapper .page-contact-copy p a:hover {
    text-decoration: underline;
}

#page-contact-wrapper .page-contact-form {
    display: block;
    max-width: 500px;
    margin: auto;
    margin-top: 5%;
}

#page-contact-wrapper .page-contact-form label {
    font-weight: 600;
}

#page-contact-wrapper .page-contact-form span {
    color: #ba0000;
}

#page-contact-wrapper .page-contact-form input, #page-contact-wrapper .page-contact-form textarea {
    padding: 2%;
    border: 2px solid var(--black);
    border-radius: 10px;
    width: 100%;
    font-size: 18px;
    font-family: 'Oxygen', sans-serif;
    margin: 2% 0 3% 0;
}

#page-contact-wrapper .page-contact-form #submit {
    padding: 2% 15%;
    width: auto;
    display: block;
    margin: auto;
    cursor: pointer;
    margin-top: 5%;
    position: relative;
}

#result {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-top: 25px;
    color: #579f46;
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
    nav {
        padding-bottom: 0;
        background: url('../img/contact-page-nav-back.jpg');
        background-size: cover;
    }
    
    #page-contact-wrapper .page-contact-copy p {
        font-size: 22px
    }
    
    #page-contact-wrapper .page-contact-form input, #page-contact-wrapper .page-contact-form textarea {
        padding: 3%;
        border: 2px solid var(--black);
        border-radius: 10px;
        width: 94%;
        font-size: 18px;
        font-family: 'Oxygen', sans-serif;
        margin: 2% 0 3% 0;
    }
    
    #page-contact-wrapper .page-contact-form #submit {
        font-size: 24px;
    }
}














