.contactpage{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

a{
    text-decoration: none;
    color: #000000;
}

.contact-form{
    display: flex;
    flex-direction: column;
}

.input{
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    background-color: #F7F7F7;
    font-size: 16px;
}

.textarea{
    width: 80%;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    background-color: #F7F7F7;
    font-size: 16px;
    height: 200px;
}

.input-name{
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    background-color: #F7F7F7;
    font-size: 16px;
}

.submitform{
    background-color: #000000;
    color: #F7F7F7;
    border: none;
    font-size: 16px;
    border-radius: 10px;
    padding: 10px 30px;
    margin-top: 20px;
}

.contact-form{
    width: 50%;
}

.contact-form h2{
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

.contact-form h3{
    font-size: 20px;
    font-weight: 400;
    margin-top: 30px;

}

.phoneandemail{
    margin-top: 50px;
}

.phoneandemail h3{
    font-size: 25px;
    font-weight: 400;
}

.phoneandemail h4{
    font-size: 18px;
    font-weight: 400;
}

.phoneandemail a{
    font-size: 18px;
}


#form2{display: none;}

.typeofforms{
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}

.typeofforms button{
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #222222;
    border-radius: 10px;
    background: none;
}


@media screen and (min-width: 321px) and (max-width: 768px){
    .flex{
        flex-direction: column;
    }

    .contact-form{
        width: 100%;
    }
}