.faq-item-bottom {
    max-height: 0px;
    opacity: 0;
    pointer-events: none;
    transition: all 500ms ease;
}

.faq-item.active .faq-item-bottom {
    max-height: 4800px;
    opacity: 1;
    pointer-events: all;
    margin: 20px 0px 0px 0px;
}

.faq-item {
    background: whitesmoke;
    padding: 20px;
    margin: 0px 0px 20px 0px;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
}

.faq-item-bottom p:last-child {
    margin: 0px;
}

.faq-item-top p {
    font-weight: 400;
    margin: 0px;
    font-family: 'Teko';
}

.faq-fold {
    padding: 70px 0px 0px;
    background: white;
}

.faq-item-top {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-right: 50px;
}

.faq-item ul {
    padding: 0px;
}

.faq-item ul li {
    list-style: none !important;
    padding-left: 20px;
    position: relative;
}

.faq-item ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    left: 0;
    color: var(--primary-color1);
}

.faq-item-top::after {
    content: '+';
    transition: all 500ms ease;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.faq-item.active .faq-item-top::after {
    content: '-';
    color: var(--primary-color1);
}

.faq-fold-content {
    position: sticky;
    top: 120px;
    height: fit-content;
    max-width: 420px;
    background: whitesmoke;
    padding: 30px;
    border-radius: 5px;
}

.faq-fold-content::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -40px;
    background: url(/wp-content/uploads/2025/11/GOATvector8.png);
    width: 200px;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotateY(180deg);
}

.faq-fold-content::before {
    content: '';
    position: absolute;
    bottom: -105px;
    right: -45px;
    background: url(/wp-content/uploads/2025/11/GOATvector8.png);
    width: 200px;
    height: 200px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: hue-rotate(
-185deg) brightness(0.3);
    transform: rotateY(180deg);
}

.faq-fold-main {
    display: flex;
    gap: 40px;
}

.faq-list {
    flex: 100;
}

div#page {
    overflow: inherit;
}

.faq-item:last-child {
    margin: 0;
}