/* >>> FAQ STYLES <<< */
.accordion_container {
    border-bottom: 1px solid #393939;
}

.accordion_container--last {
    border-bottom: 0
}

.accordion_title {
    padding-top: 18px;
    padding-bottom: 27px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    /*overflow: hidden;*/
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 1s;
}

.answer {
    padding: 0 0 34px;
    color: #ffffff;
    font-family: 'JostRegular', 'sans-serif';
    line-height: 138.2%;
    letter-spacing: calc(1em / 10);
    font-size: 14px;
    width: 399px;
}

.accordion_title-text {
    display: flex;
    align-items: center;
    overflow: hidden;
    line-height: initial;
}

.accordion_title-text h3 {
    font-family: 'YouthRegular', sans-serif;
    font-size: 3rem;
    line-height: inherit;
    letter-spacing: calc(1em / 20);
    color: #ffffff;
}

.accordion_title-text--black h3,
.answer--black {
    color: #292929;
}

/*.icon.active {*/
/*    background: transparent;*/
/*    border: 2px solid #fff;*/
/*}*/

.icon:hover {
    cursor: pointer;
}

.icon-shape {
    position: relative;
    width: 35px;
    height: 35px;
}

.icon .icon-shape::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 3px;
    background: #393939;
    border-radius: 3px;
    transition: all 0.5s ease;
}

.icon .icon-shape::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 25px;
    background: #393939;
    border-radius: 3px;
    transition: all 0.5s ease;
}

.icon .icon-shape.active::before {
    transform: translate(-50%, -50%) rotate(-135deg);
    transition: all 0.5s ease;
}

.icon .icon-shape.active::after {
    transform: translate(-50%, -50%) rotate(-135deg);
    transition: all 0.5s ease;
}

.accordion-title__number {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: YouthRegular, sans-serif;
    font-size: 40px;
    color: #393939;
    border-radius: 100%;
    border: 1px solid #393939;
}

.accordion_container .answer__title {
    font-family: JostMedium, sans-serif;
    font-size: 20px;
    letter-spacing: calc(1em / 10);
}


@media screen and (max-width: 768px) {
    .accordion_title-text h3 {
        font-size: 1.875rem;
    }

    .accordion-title__number {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* ===> SOME SUGGESTIONS ON USING THE CODE <=== */
/* There are 2 Main containers in a single FAQ Container - accordion_title & answercont */
/* You can make a div inside these container to add content and styling purposes */
