.faq-contact-container {
    padding-top: 30px;
    padding-bottom: 100px;
}


/* FAQ */
.faq-data{
    background-color: rgb(242, 242, 242);
    padding-top: 8px;
    border-radius: 20px;
    transform: none;
    transform-origin: 50% 50% 0px;
    transition: 0.4s ease-in-out;
    max-width: 1000px;
}

.faq-data-content{
    padding: 10px 20px 0px 0px;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.faq-answer{
    transition: 0.4s ease-in-out;
    padding: 5px 0px 5px 60px;

    color: rgb(102, 102, 102);
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0px;
}

#open-faq-answer{
    opacity: 1;
    max-height: 100%;
}

#hide-faq-answer{
    opacity: 0;
    max-height: 0;
}

.per-faq{
    cursor: pointer;
    display: table;
    color: rgb(51, 51, 51);
    line-height: 1.5em;
    font-weight: 600;
    letter-spacing: opx;
}

.per-faq > div {
    display: table-cell;
    vertical-align: middle;
}

/* Contact */

#contact-form,
.contact {
    max-width: 565px;
}

.contact-name h2,
.faq-name h2 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2.1px;
    color: rgb(0, 17, 34);
}

#name,
#email,
#message {
    border: none;
    padding: 15px;
    line-height: 1.4em;
    border-radius: 8px;
    font-weight: 500;
    background-color: rgb(242, 242, 242);
    font-size: 16px;
    color: rgb(0, 0, 0);
    box-shadow: inset 0 0 0 1px transparent;
}

.send-form-button {
    line-height: 1.4em;
    outline: none;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-weight: 600;
    color: white;
    background-color: rgb(34, 34, 34);
}

@media (max-width: 810px) {
    .faq-contact-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .faq-data-content{
        padding: 20px 20px 0px 0px;
    }

    .faq-data{
        padding-top: 0px;
    }
}