.main {
    width: 100%;
    min-height: 60vh;
}
.header {
    width: 100%;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contactPageHeaderH2 {
    width: 100%;
    margin-top: 1rem;
    height: 4rem;
    font-size: 2rem;
    line-height: 4rem;
    text-align: center;
}
.contactPageHeaderContent {
    margin-left: 10%;
    width: 80%;
    height: calc(100% - 6rem);
    margin-bottom: 1rem;
}
/*********************/
.contactSection {
    margin-top: 3rem;
    width: 100%;
    min-height: 40vh;
}
.contactSection > form {
    width: 60%;
    margin-left: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contactForm {
}
.contactsectionContactDivs {
    width: 100%;
    min-height: 5vh;
}
.contactLabels {
    display: none;
}
.contactInputs {
    margin-top: 1rem;
    width: 100%;
    height: 3rem;
    border: none;
    background-color: var(--primaryBackgroundColor);
    color: var(--primaryTextColor);
    padding: 1rem;
    font-size: 1.2rem;
}
.contactInputs::placeholder {
    font-size: 1.2rem;
    padding-left: 1rem;
    color: var(--secondaryTextColor);
}
.contactMessageInputs {
    min-height: 20vh;
}
.contactSendFormButton {
    height: 3rem;
    width: 80%;
    border: none;
    font-size: 1.2rem;
    border-radius: 0.3rem;
    margin: 0.4rem 0rem;
    background-color: var(--secondaryBackgroundColor);
    transition: 600ms;
}
.contactSendFormButton:hover {
    width: 60%;
    color: var(--secondaryTextColor);
    background-color: var(--navBackColor);
}
