#contact-methods {
    display: flex;
    justify-content: space-between;
    background-color: var(--lightGray);
    padding: 13vh 8vw !important;
}

h1, h2 {
    color: var(--black);
    font-weight: 600;
    font-size: 2rem !important;
}

.contact-cards {
    background-color: var(--white) !important;
    box-shadow: 0 0 4px 0 var(--gray);
    width: 23%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    min-height: 30vh;
}

.contact-cards:hover {
    box-shadow: 0 0 8px 0 var(--gray);
}

.contact-cards img {
    height: 25%;
}

.contact-cards h2 {
    color: var(--black);
    font-weight: 500;
    font-size: 1.3rem !important;
    margin: 0;
    transition: .3s;
}

.contact-cards:hover h2 {
    color: var(--secondary);
}

.contact-cards p {
    margin: 0;
    line-height: 1.2rem;
}

#contact-form-and-faq {
    display: flex;
    justify-content: space-between;
    gap: 3vw;
}

#faq {
    width: 50vw;
}

#contact-form {
    max-width: 40vw;
    margin-top: 0 !important;
}

#contact-form-frame {
    width: 100% !important;
}

.faq-card {
    display: flex;
    flex-direction: column;
    background-color: var(--lightGray);
    margin-bottom: 2vh;
    box-sizing: border-box;
}

.question-frame {
    display: flex;
    justify-content: space-between;
    height: fit-content;
    align-items: center;
    padding: 2vh 2vw;
    cursor: pointer;
    transition: .3s;
    box-sizing: border-box;
}

.question-frame i {
    height: 3vh;
    transition: .3s;
    color: var(--gray);
}

.question {
    color: var(--gray);
}

.answer-frame {
    padding: 0 2vw;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    opacity: 1;
    transition: .3s ease-in-out;
}

.question, .answer, .question-frame img {
    padding: 0;
    margin: 0;
    line-height: normal;
    font-size: 1.1rem;
    line-height: 1.4rem;
}

.answer {
    color: var(--white);
    margin: 2vh 0;
}

.expanded-faq-card .question-frame i {
    transform: rotateX(180deg);
    color: var(--white);
}

.expanded-faq-card .question-frame {
    background-color: var(--secondary);
}

.expanded-faq-card .question-frame .question {
    color: var(--white);
}

.expanded-faq-card .answer-frame {
    visibility: visible;
    opacity: 1;
    background-color: var(--tertiary);
}

@media only screen and (max-width: 1300px) { 
    #contact-methods {
        flex-direction: column;
        gap: 5vh;
    }

    .contact-cards {
        width: 100%;
        padding: 3vh;
    }

    .contact-cards img {
        height: 8vh;
    }

    #contact-form-and-faq {
        flex-direction: column;
    }

    #contact-form-and-faq div {
        width: 100%;
    }

    #contact-form {
        width: 100%;
        max-width: unset;
    }
    
    .answer-frame {
        box-sizing: border-box;
    }

    #faq {
        width: 100%;
    }
}