.faq-container {
    position: relative;
}

/* .faq-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
    opacity: .1;
} */

.faqtitle {
    color: white;
    margin: 0 0 20px;
    font-weight: 700;
}

.faqFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.faqFlex.faqswap {
    flex-direction: row-reverse;
}

.flexFaqs {
    width: calc(50% - 30px);
}

.rightblockfaq {
    width: calc(50% - 30px);
}

.squarething {
    background-color: var(--tertiary);
    padding: 50px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.squarething p {
    color: white;
    margin: 15px 0 50px;
    font-weight: 400;
    width: 550px;
    max-width: 100%;
}

.squarething a {
    color: black;
    width: 100%;
}

.squarething a:hover {
    color: var(--primary);
}

#accordionfaq .opensingle .beefup__head {
    padding: 10px 35px 5px 0;
    font-weight: 600;
    font-family: var(--font2);
    border-bottom: 2px solid var(--primary);
    font-size: 16px;
}

#accordionfaq .opensingle .beefup__body {
    padding: 0 0;
}

#accordionfaq .opensingle .beefup__body p {
    font-size: 14px;

}



.beefup__head {
    overflow: inherit;
    white-space: normal;
    position: relative;

}

.beefup__head::after {
    content: "";
    display: block;
    height: 2px;
    width: 15px;
    background: var(--primary);
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform .3s ease-in-out;
    transform-origin: 50% 50%;
    border-color: transparent;
    border-width: inherit;
    margin-top: 0;
}

.beefup__head::before {
    content: "";
    display: block;
    height: 15px;
    width: 2px;
    background: var(--primary);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform .3s ease-in-out;
    transform-origin: 50% 50%;
}

.beefup.is-open>.beefup__head::after,
.beefup.is-open>.beefup__head::before {
    transform: translate(-50%, -50%) rotate(45deg);
    border-color: transparent;
    border-width: inherit;
    margin-top: 0;
}

#accordionfaq .opensingle {
    border: none;
    margin: 15px 0;
}




@media (max-width:1199px) {

    .faqtitle {}

    .flexFaqs {
        width: 100%;
    }

    .beefup__head {
        white-space: normal;
    }


    .beefup__body p {}

    .rightblockfaq {
        width: 100%;
    }

    .squarething {
        padding: 26px;
        min-height: initial;
        margin-top: 30px;
    }

    #accordionfaq .opensingle .beefup__head {
        padding-right: 40px;
    }

}