.banner {
    width: 100%;
    height: 100%;
}

.banner__bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #5f4b8b;
}

.banner__bg--img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
    opacity: 0.5;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner__content {
    position: relative;
    z-index: 2;
    padding: 158px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.banner__content--tag {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 122%;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.banner__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.banner__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
}

.tabs-nav {
    background: #fff;
    border-bottom: 1px solid rgba(95, 75, 139, 0.12);
    position: relative;
}

.tabs-nav__wrap {
    position: relative;
}

.tabs-nav__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-nav__scroll::-webkit-scrollbar {
    display: none;
}

.tabs-nav__list {
    display: flex;
    align-items: stretch;
    width: max-content;
    min-width: 100%;
}

.tabs-nav__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #565656;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.tabs-nav__item::before {
    content: '';
    position: absolute;
    inset: 8px 4px;
    border-radius: 8px;
    background: rgba(95, 75, 139, 0.08);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: -1;
}

.tabs-nav__item span {
    position: relative;
    transition: color 0.25s ease;
}

.tabs-nav__item:hover span {
    color: #5f4b8b;
}

.tabs-nav__item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.tabs-nav__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #5f4b8b;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 3;
}

.tabs-nav__item.is-active span {
    font-weight: 700;
    color: #5f4b8b;
}

.tabs-nav__item.is-active::after {
    opacity: 1;
}

.tabs-nav__fade {
    position: absolute;
    top: 0;
    height: 100%;
    width: 40px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.tabs-nav__fade--left {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.tabs-nav__fade--right {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.tabs-nav__fade.is-visible {
    opacity: 1;
}




.parents {
    padding: 80px 0;
    background: #fff;
}

.title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 34px;
    line-height: 150%;
    color: #000;
    margin-bottom: 36px;
}

.parents__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 48px;
    margin-top: -12px;
}

.parents__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 48px;
}

.parents__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.parents__text h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    color: #5f4b8b;
    margin-bottom: -6px;
}

.parents__text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #565656;
}

.parents__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.parents__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}

.parents__list li:hover {
    transform: translateX(4px);
}

.parents__list li svg {
    width: 18px;
    height: 18px;
    padding-top: 2px;
    flex-shrink: 0;
}

.parents__list li span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #565656;
    transition: color 0.2s ease;
}

.parents__list li:hover span {
    color: #5f4b8b;
}

.parents__img {
    width: 100%;
    height: 435px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(95, 75, 139, 0.08);
}

.parents__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.parents__img:hover img {
    transform: scale(1.06);
}




.parents__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.parents__text ul:not(.parents__list) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.parents__text ul:not(.parents__list) li {
    position: relative;
    padding-left: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #565656;
    max-width: 100%;
    transition: color 0.2s ease, transform 0.2s ease;
}

.parents__text ul:not(.parents__list) li:hover {
    color: #5f4b8b;
    transform: translateX(4px);
}

.parents__text ul:not(.parents__list) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5f4b8b;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.parents__text ul:not(.parents__list) li:hover::before {
    transform: translateY(-50%) scale(1.4);
}




.parents__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 16px;
}

.parent__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    padding: 16px;
    background: #f4f3f8;
    box-shadow: 0 2px 10px 0 rgba(95, 75, 139, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.parent__card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 10px 22px 0 rgba(95, 75, 139, 0.16);
}

.parent__card--img {
    border-radius: 10px;
    width: 44px;
    height: 44px;
    background: #5f4b8b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.parent__card:hover .parent__card--img {
    transform: scale(1.08) rotate(-4deg);
}

.parent__card--text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.parent__card--text h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #5f4b8b;
}

.parent__card--text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    color: #565656;
}





@media (max-width: 991px) {
    .banner__content {
        padding: 130px 0 48px;
    }

    .banner__title {
        font-size: 42px;
    }

    .banner__desc {
        font-size: 16px;
    }

    .parents {
        padding: 56px 0;
    }

    .title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .parents__grid {
        gap: 32px;
    }

    .parents__info {
        gap: 32px;
    }

    .parents__img {
        height: 340px;
    }

    .parents__cards {
        gap: 12px;
    }
}

@media (max-width: 850px) {
    .parents__cards {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .banner__content {
        padding: 110px 0 40px;
        gap: 12px;
    }

    .banner__title {
        font-size: 32px;
    }

    .banner__content--tag {
        font-size: 14px;
    }

    .banner__desc {
        font-size: 15px;
    }

    .tabs-nav__item {
        padding: 12px 16px;
        font-size: 12px;
    }

    .parents {
        padding: 48px 0;
    }

    .title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .parents__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 0;
    }

    .parents__info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .parents__text h3 {
        font-size: 19px;
    }

    .parents__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .parents__text {
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .banner__content {
        padding: 100px 0 32px;
    }

    .banner__title {
        font-size: 26px;
    }

    .banner__desc br {
        display: none;
    }

    .parents__img {
        height: 220px;
    }

    .parents__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .parent__card {
        padding: 14px;
    }

    .parent__card--img {
        width: 38px;
        height: 38px;
    }

    .parents__img {
        height: 260px;
    }
}