.faq-of-competencies {
    --bgColor: #fff;

    background-color: var(--bgColor);
    padding: 140px 0;
}

.faq-of-competencies__wrapper {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.faq-of-competencies__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 5.7%;
    padding: 5.7%;
    background-color: #f8f8f8;
    border-radius: 32px;
}

.faq-of-competencies__sidebar {
    display: flex;
    align-items: center;
}

.faq-of-competencies__content {
    flex: 1;
    max-width: 797px;
    max-height: 491px;
    aspect-ratio: 797 / 491;
    border-radius: 24px;
}

.faq-of-competencies__header {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    color: #02060b;
    margin-bottom: 64px;
}

.faq-of-competencies__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-of-competencies__item {
    padding: 24px 0;
}

.faq-of-competencies__item:not(:last-child) {
    border-bottom: 1px solid #cccdce;
}

.faq-of-competencies__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #000;
}

.faq-of-competencies__trigger-icon {
    width: 24px;
    transition: transform 0.3s ease-in-out;
}

.faq-of-competencies__trigger.active .faq-of-competencies__trigger-icon {
    transform: rotate(180deg);
}

.faq-of-competencies__drawer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-of-competencies__drawer.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.faq-of-competencies__description {
    margin-top: 20px;
    margin-bottom: 0;
    color: #6e6e73;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.2s ease-in-out;
}

.faq-of-competencies__drawer.active .faq-of-competencies__description {
    opacity: 1;
    transform: translateY(0);
}

.faq-of-competencies__image {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: none;
}

.faq-of-competencies__image.active {
    display: block;
}

.faq-of-competencies__module {
    display: none;
    margin: 0 auto;
}

@media screen and (max-width: 959px) {
    .faq-of-competencies__container {
        flex-direction: column;
        border-radius: 24px;
    }

    .faq-of-competencies__header {
        margin-bottom: 40px;
    }

    .faq-of-competencies__sidebar {
        width: 100%;
    }

    .faq-of-competencies__content {
        display: none;
    }

    .faq-of-competencies__module {
        margin-top: 20px;
        width: 100%;
        aspect-ratio: 290 / 180;
    }

    .faq-of-competencies__drawer.active {
        max-height: 700px;
    }

    .faq-of-competencies__drawer.active .faq-of-competencies__module {
        display: block;
    }

    .faq-of-competencies__drawer.active .faq-of-competencies__image {
        display: block;
    }

    .faq-of-competencies__trigger-icon {
        width: 20px;
    }

    .faq-of-competencies__item {
        padding: 18px 0;
    }

    .faq-of-competencies__trigger {
        font-weight: 700;
        font-size: 18px;
        line-height: 140%;
        letter-spacing: 0px;
    }
}

@media screen and (max-width: 679px) {
    .faq-of-competencies {
        padding-top: 48px;
        padding-bottom: 32px;
    }

    .faq-of-competencies__header {
        font-weight: 800;
        font-size: 24px;
        line-height: 120%;
        margin-bottom: 40px;
    }

    .faq-of-competencies__description {
        font-size: 14px;
    }
}

@media screen and (min-width: 680px) and (max-width: 959px) {
    .faq-of-competencies {
        padding: 80px 0;
    }

    .faq-of-competencies__container {
        padding: 16px 30px;
    }

    .faq-of-competencies__header {
        font-weight: 800;
        font-size: 32px;
        line-height: 120%;
        margin-bottom: 66px;
    }

    .faq-of-competencies__item {
        padding: 40px 0;
    }

    .faq-of-competencies__trigger {
        font-weight: 800;
        font-size: 30px;
        line-height: 120%;
    }

    .faq-of-competencies__description {
        font-weight: 600;
        font-size: 24px;
    }

    .faq-of-competencies__module {
        max-width: 556px;
        aspect-ratio: 556 / 348;
    }
}

@media screen and (min-width: 960px) {
    .faq-of-competencies__sidebar {
        width: 29%;
        max-width: 360px;
    }

    .faq-of-competencies__image img {
        width: 100%;
        height: 100%;
        border-radius: 24px;
        object-fit: cover;
    }
}

@media screen and (min-width: 960px) and (max-width: 1439px) {
    .faq-of-competencies__header {
        font-weight: 800;
        font-size: 32px;
        line-height: 120%;
        margin-bottom: 60px;
    }

    .faq-of-competencies {
        padding: 100px 0;
    }

    .faq-of-competencies__container {
        padding: 60px 36px;
        gap: 48px;
    }

    .faq-of-competencies__trigger {
        font-weight: 700;
        font-size: 18px;
        line-height: 140%;
    }

    .faq-of-competencies__description {
        margin-top: 15px;
        font-size: 14px;
    }

    .faq-of-competencies__item {
        padding: 18px 0;
    }

    .faq-of-competencies__item:first-child {
        padding-top: 0;
    }

    .faq-of-competencies__sidebar {
        width: 270px;
        max-width: 270px;
    }

    .faq-of-competencies__content {
        max-width: 510px;
        max-height: 314px;
        aspect-ratio: 510 / 314;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .faq-of-competencies__header {
        font-weight: 700;
        font-size: 36px;
        line-height: 120%;
        text-align: center;

        margin-bottom: 56px;
    }

    .faq-of-competencies {
        padding: 100px 0;
    }

    .faq-of-competencies__description {
        font-size: 16px;
    }

    .faq-of-competencies__container {
        padding: 4%;
    }

    .faq-of-competencies__sidebar {
        width: 360px;
        max-width: 360px;
    }

    .faq-of-competencies__content {
        max-width: 680px;
        max-height: 419px;
        aspect-ratio: 680 / 419;
    }
}