#contactsContentContainer {
    padding: 20px;
    justify-items: center;
    margin-bottom: 50px;
    /* display: flex;
    flex-direction: row;
    justify-content: space-around; */
}

#contactsContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 800px;
    width: fit-content;
}

.contactsContents {
    display: inline-block;
    width: fit-content;
}

.contactsContents img {
    height: 25px;
}

.contactsContents a {
    top: -10%;
    margin-left: 10px;
}

.form {
    display: flex;
    flex-direction: column;
    background-color: var(--blackSecondary);
    padding: 20px;
    border-radius: 20px;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    transition: all 0.2s ease-in-out;
}

.form:hover {
    box-shadow: 0 0 15px var(--goldTertiary);
}

.form h4 {
    font-size: 25px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formInputs {
    padding: 10px;
    color: var(--blackPrimary);
}

textarea {
    height: 100px;
}

#formBtn {
    padding: 15px;
    background-color: var(--blackPrimary);
    color: var(--gray);
    border: none;
    width: 150px;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    margin: auto;
}

#formBtn:hover {
    cursor: pointer;
    background-color: var(--goldPrimary);
    color: var(--blackPrimary);
}

/* Footer */
footer {
    border-top: solid 2px var(--goldPrimary);
    justify-content: center;
}

#footerContent {
    border-top: solid 2px var(--gray);
    padding: 20px;
    text-align: center;
    font-weight: lighter;
}

#footerContent div {
    margin-top: 10px;
}

@media (max-width: 800px) {

    #contactsContentContainer {
        gap: 50px;
        flex-direction: column;
    }

    #contactsContainer {
        grid-template-columns: repeat(2, 1fr);
        margin: auto;
        transform: translateX(10%);
    }

    .form {
        margin: auto;
    }
}

@media (max-width: 738px) {

    .contactsContents a {
        font-size: 12px;
    }

    .contactsContents img {
        height: 18px;
    }
}

@media (max-width: 710px) {

    #contactsContainer {
        grid-template-columns: repeat(1, 1fr);
        transform: translateX(0)
    }

    #footerContent {
        font-size: 10px;
    }
}

@media (max-width: 300px) {

    .contactsContents a {
        font-size: 10px;
    }

    .contactsContents img {
        height: 16px;
    }
}