#contactus{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 0.5rem;
}

.contact-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-details p{
    margin-top: 2rem;
}

.form{
    display: flex;
}

.contact-form{
    display: flex;
    flex-direction: column;
    color: #f4f4f4;
    width: 50%;
    height: 100%;
}

.contact-form > input{
    width: 100%;
    padding: 1.25rem 1rem;
    border: none;
}

.contact-form h2{
    text-align: center;
    margin: 2rem;
    border: none;
    color: #000;
}

#feedback{
    align-items: flex-start;
    width: 20rem;
    height: 4rem;
}

.contact-form .radio-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    width: 100%;
    color: #333;
    background: #fff;
    margin: 0 1rem;
    padding: 0 1rem;
}

.contact-form .radio-box p{
    font-size: 1.2rem;
}

.contact-form .radio-btn{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contact-form .radio-btn .radio-btn-1,
.contact-form .radio-btn .radio-btn-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.6rem;
}   

.contact-form .radio-btn .radio-btn-1 label,
.contact-form .radio-btn .radio-btn-2 label{
    margin: 0 2rem;
    font-weight: bold;
}

.contact-form .btn
{
    display: flex;
    justify-content: center;
    align-self: center;
    background-color: #1B74BD;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    width: 45%;
    border-radius: 10%;
}