/* Filters */
.filters {
    position: sticky;
    top: 0;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    z-index: 100;

    background-color: #f7f7f770;

    display: flex;
	flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 30px;

    margin-bottom: 30px;
	overflow-x: hidden;
}

.filters.sticky {
    transform: translateY(100%);
}

.filter {
    width: fit-content;
    height: fit-content;
    display: block;
    border-radius: 50px;
    padding: 5px 20px;
    border: 1px solid #1D1D1B;
}

.filters .filter {
    user-select: none;
    cursor: pointer;
    color: #1D1D1B;
}
.filters .filter.active {
    background-color: #1D1D1B;
    color: #f5f5f7;
}

.filter.training {
    background-color: #D8CDBC;
    border-color: #D8CDBC;
}
.filter.coaching {
    background-color: #0171E3;
    color: #f5f5f7;
    border-color: #0171E3;
}

.frequently-asked-questions .faq-question {
    margin: 10px 0;
    padding: 0;
    transition: all 0.2s ease-in-out;
}

.frequently-asked-questions .faq-question-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
	gap: 16px;
}
.frequently-asked-questions .faq-question-icon-wrapper .icon {
    width: 40px;
    height: 40px;
    background-image: url('../icons/plus.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	flex: none;
}
.frequently-asked-questions .faq-item.active .faq-question-icon-wrapper .icon {
    background-image: url('../icons/min.svg');
}

.frequently-asked-questions .faq-item.active h6 {
    font-weight: 700;
}

.frequently-asked-questions .faq-item h6 {
	font-size: 18px;
}

.frequently-asked-questions .faq-item .faq-answer {
    max-height: 350px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}
.frequently-asked-questions .faq-item:not(.active) .faq-answer {
    max-height: 0;
}

.frequently-asked-questions .faq-divider {
    height: 1px;
    background: #f5f5f7;
    margin: 20px 0;
}

.frequently-asked-questions .faq-question h6 {
	font-size: 18px;
	margin-bottom: 16px;
}

.frequently-asked-questions .faq-answer p {
	color: #1D1D1B90;
}