.hero {
    height: max-content;
}
nav {
    background-color: var(--boxBG) !important;
}
nav .nav-link.btnCon {
    font-weight: 1000;
}
.contactSect {
    height: max-content;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 4rem;
    font-family: 'Arial', sans-serif;
}
.contactForm {
    flex: 2;
}
.contactForm h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.contactInfo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.form-row {
    display: flex;
    gap: 1rem;
}
input,
textarea {
    background-color: transparent;
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
}
textarea {
    resize: none;
}
.submit-btn {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.5s;
}
.submit-btn:hover {
    transition: 0.5s;
    box-shadow: 0px 2px 4px 2px var(--hColor);
}
.contactDirect {
    flex: 1;
}
.contactDirectInfo {
    margin-bottom: 1.5rem;
    width: max-content;
}
.contactDirectInfo h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}
.contactDirectInfo a {
    text-decoration: none;
    color: var(--hColor);
}
.contactDirectInfo a:active {
    color: white;
    text-decoration: underline;
}
.contactDirectInfo p {
    margin: 0;
    font-style: italic;
    padding: 3px 9px;
}
@media (max-width: 768px) {
    .contactSect {
        flex-direction: column;
        padding: 2rem;
    }
    .submit-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}