.top {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    background: url('../../assets/images/about.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.top h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: 62px;
    color: white;
    text-align: center;
    padding-top: 15%;
}

.contact_form {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact_form h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    margin-top: 90px;
    text-align: left;
    width: 100%;
}

.contact_form p {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 60px;
    text-align: left;
    width: 100%; 
}

input {
    background-color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    margin-bottom: 40px;
    width: 49%;
    padding: 10px;
    border-radius: 40px;
    border-color: #c4c4c4;
    border-width: 2px;
    border-style: solid;
}

#first_name {
    margin-right: 1%;
    
}

#last_name {
    margin-left: 1%;
}

#email {
    width: 100%;
}

textarea {
    background-color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    margin-bottom: 60px;
    width: 100%;
    padding: 10px;
    border-radius: 25px;
    border-color: #c4c4c4;
    border-width: 2px;
}

input:focus {
    outline: none;
    border-color: #1F1F1F;
}

textarea:focus {
    outline: none;
    border-color: #1F1F1F;
}

.contact_form button {
    background-color: #BE884C;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: white;
    font-size: 18px;
    border: none;
    padding: 12px 60px;
    cursor: pointer;
    border-radius: 40px;
    width: 100%;
    margin-bottom: 120px;
}

.contact_form button:hover {
    font-weight: 700;
}

@media (min-width: 1950px) {

    .contact_form {
        max-width: 1920px;
    }
}

@media (max-width: 768px) {

    .top {
        min-height: 600px;
    }

    .top h1 {
        padding-top: 50%;
        font-size: 58px;
    }

    input {
        width: 100%;
    }
    
    #first_name {
        margin-right: 0%;
        
    }
    
    #last_name {
        margin-left: 0%;
    }
}

@media (max-width: 450px) {
    
    .top {
        min-height: 500px;
    }

    .top h1 {
        padding-top: 60%;
        font-size: 48px;
    }

    .contact_form h2 {
        font-size: 34px;
        margin-top: 60px;
    }
    
    .contact_form p {
        font-size: 16px;
    }

    input {
        font-size: 12px;
    }

    textarea {
        font-size: 12px;
    }

}