


.faq-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
}

.faq-item {
    width: 100%;
    color: var(--oth-white);
    border-radius: 2px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.faq-question {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--oth-white);
    font-size: 18px;
    border: 2px solid var(--oth-black);
    background-color: var(--oth-black);
    border-radius: 15px;
    font-weight: 400;
}

.faq-question:hover {
    border: 2px solid var(--oth-green);
     background-color: black;
    transition: 0.2s;
    cursor: pointer;
}

.faq-item.faq-opened .faq-question {
    background-color: black;
    color: var(--oth-green);
}

.faq-item img {
    filter: invert(5);
    width: 25px;
    transition: 0.1s;
    margin-left: 20px;
}

.faq-item h3 {
    margin-block-start: 0em;
    margin-block-end: 0em;
   padding: 15px;
   color: var(--oth-white);
   font-size: 20px;
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    background-color: var(--oth-black);
    padding-left: 15px;
    padding-right: 15px;
    transition: 0.2s;
    color: var(--oth-white);
}

.faq-answer p {
    margin-bottom: 16px;
    max-width: 760px;
    text-align: left !important;
}

.faq-answer span, .faq-answer a {
    color: var(--oth-white) !important;
    font-size: 16px !important;
}

.faq-item.faq-opened .faq-answer
{
    max-height: unset;
    padding-bottom: 25px;
    padding-top: 25px !important;
    border-bottom: 1px solid darkgray;
}

.faq-item.faq-opened img {
    transform: rotate(180deg);
}

@media (max-width: 992px)
{

    .faq-item {
        width: 100%;
    }
}

@media (max-width: 768px) {


.faq-container {
    margin-top: 35px;
}

    
}

