/* Contact Section Styles */
#contactForm {
    margin: 0 auto 2rem;
    width: 65%;
}
.contactColumns {
    display: flex;
    justify-content: center;
    padding: 0 0 1.5rem;
}
.contactColumn {
    width: 100%;
    margin: 0 0.75rem;
}
.contactInputLabel {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgb(20, 27, 77);
    margin-bottom: 0.5rem;
}
.contactInput {
    font-size: 1rem;
    color: rgb(20, 27, 77);
    width: 100%;
    height: 2.5rem;
    line-height: 1.5rem;
    border: 1px solid transparent;
    border-color: rgba(20, 27, 77, 0.5);
    border-radius: 5px;
    padding: 0.75rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}
.contactInput:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.32), 0 2px 10px 0 rgba(0, 0, 0, 0.24);
}
.contactTextArea {
    min-width: 100%;
    max-width: 100%;
    height: initial;
}
.contactSubmit {
    width: 70%;
    height: 2.5rem;
    background-color: rgb(181, 133, 0);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    padding: 0;
    font: inherit;
    outline: inherit;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}
.contactSubmit:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.32), 0 2px 10px 0 rgba(0, 0, 0, 0.24);
}
#contactsTable {
    margin: auto;
    text-align: center;
}
.contactsBox {
    display: inline-block;
    margin: auto;
}
.contacts {
    position: relative;
    display: inline-block;
    width: 14.75rem;
    height: 4.75rem;
}
.contactsIconBack {
    color: inherit;
    text-decoration: none;
    position: relative;
    float: left;
    width: 3.75rem;
    height: 3.75rem;
    background-color: rgb(181, 133, 0); 
    border-radius: 50%;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}
.contactsIconBack:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.32), 0 2px 10px 0 rgba(0, 0, 0, 0.24);
}
.contactsIcon {
    position: absolute;
    width: 1.875rem;
    height: 1.875rem;
    top: 0.9375rem;
    left: 0.9375rem;
}
.contactsInfo {
    float: left;
    width: 10rem;
    margin: 1rem 0.5rem;
    line-height: 1.75rem;
    text-align: left;
}
.contactsLink {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}
.contactsLink:hover {
    border-bottom: 3px solid rgb(181, 133, 0);
}


/* Media Queries Styles */
@media screen and (max-width: 1200px) {
    #contactForm {
        width: 75%;
    }
}
@media screen and (max-width: 900px) {
    #contactForm {
        margin: 0 auto 1rem;
        width: 85%;
    }
    .contactColumns {
        padding: 0 0 1rem;
    }
}
@media screen and (max-width: 600px) {
    #contactForm {
        width: 95%;
    }
    .contactColumns {
        padding: 0 0 0.75rem;
    }
    .contactColumn {
        width: 100%;
        margin: 0 0.25rem;
    }
}
@media screen and (max-width: 320px) {
    #contactForm {
        margin: 0 auto 0.5rem;
        width: 100%;
    }
    .contactInputLabel {
        font-size: 1rem;
    }
}