html, body {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #1A0E29;
    color: white;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* ---------- HEADER ---------- */
.header {
    background: linear-gradient(60deg, #1322E6, #2D2E33);
    color: white;
    display: flex;
    align-items: center;
    padding: 8px 20px;
    
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.main {
    padding-top: 72px;
}
.header__logo {
    margin-right: 20px;
}
.header__title {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
}
.header__right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ---------- CARD, FEATURES ---------- */
.card, .features, .pricing {
    background: radial-gradient(#2e37bba5, #1e25fc57);
    border-radius: 12px;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
}
.card__title, .features__title {
    color: white;
    font-size: 2rem;
    margin: 0;
}

/* ---------- CARD ---------- */
.card__item {
    display: inline-block;
    text-align: center;
    background: linear-gradient(60deg, #2E37BB, #1E25FC57);
    border-radius: 100px;
    padding: 8px 20px;
    box-shadow: 0 2px 6px rgba(255,255,255,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    overflow: hidden;
    margin: 8px 0;
}
.card__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}
.card__subtitle {
    margin: 0;
    font-size: 2rem;
    font-weight: 300;
    max-width: 150px;
    max-height: 90px;
}
.card__descriptions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: left;
    text-align: center;
    font-weight: 300;
    font-size: 1rem;
    margin: 12px 0 36px 0;
}
.card__description {
    display: flex;
    align-items: center;
    background: linear-gradient(60deg, #2E37BB, #1E25FC57);
    border-radius: 12px;
    padding: 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- FEATURES ---------- */
.features__list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.features__item {
    flex: 1 1 250px;
    background: linear-gradient(180deg, #1c2af7, #8d1efc);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(255,255,255,0.2);
    color: white;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.features__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}
.features__itemTitle {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.features__itemText {
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ---------- REVIEWS ---------- */
.reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.reviews__item {
    flex: 1 1 300px;
}
.review {
    background: linear-gradient(60deg, #323486, #41434ab2);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: white;
}
.review:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}
.review__title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
}
.review__text {
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
}
.review__cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ---------- BEM TABLE ---------- */
.pricing__title {
    font-size: 2rem;
    text-align: center;
    margin: 0;
}
.pricing__table {
    width: 100%;
    border-collapse: collapse;
}
.pricing__head .pricing__row_head,
.pricing__body .pricing__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}
.pricing__cell {
    padding: 10px;
    border-bottom: 1px solid #555;
}
.pricing__row:nth-child(even) .pricing__cell {
    background-color: rgba(255, 255, 255, 0.1);
}
.pricing__cell_head {
    font-weight: 700;
}

/* ---------- BANNER ---------- */
.banner {
    margin: 20px auto;
    background: linear-gradient(90deg, #F21EFC, #8d1efc);
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-weight: bold;
}

/* ---------- FOOTER ---------- */
.footer {
    background: linear-gradient(60deg, #1322E6, #2D2E33);
    color: white;
    padding: 20px;
    text-align: center;
}
.footer__menu {
    list-style: none;
    padding: 0;
}
.footer__menuItem {
    display: inline-block;
    margin: 0 10px;
}
.footer__link {
    color: #F21EFC;
    text-decoration: none;
    font-weight: 600;
}
.footer__link:hover {
    text-decoration: underline;
}
.footer__email {
    color: #EEE7FE;
}

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 1300px) {
    .pricing__head .pricing__row_head,
    .pricing__body .pricing__row {
        grid-template-columns: 1fr 1fr;
    }
    .pricing__row .pricing__cell:nth-child(3),
    .pricing__row_head .pricing__cell_head:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__title { font-size: 1.3rem; }
    .card, .features, .pricing { max-width: 95%; }
    .banner { display: none; }
}

@media (min-width: 2000px) {
    body { font-size: 1.2rem; }
}

/* ---------- NAVGATION ---------- */
.nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    align-items: center;
}
.nav__link {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #EEE7FE;
    font-weight: 600;
    transition: background-color 0.25s ease, transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.nav__link:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.nav__link--star {
    background: linear-gradient(90deg, rgba(241, 30, 252, 0.119), rgba(141, 30, 252, 0.503));
    position: relative;
    transition: transform 0.28s ease, filter 0.28s ease;
}
.nav__link--star:hover {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 6px 18px rgba(139, 0, 255, 0.25));
}

.nav__link--is-active {
    background: linear-gradient(90deg, rgba(240,218,255,0.12), rgba(220,160,255,0.06));
    color: #fff;
    box-shadow: 0 8px 20px rgba(137, 70, 255, 0.25);
}

.footer__load {
    margin-top: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #EDE7FF;
}

/* ---------- ABOUT PAGE (BEM, harmonized palette) ---------- */

.about__hero {
    background: linear-gradient(180deg, #1C1A3D 0%, #261D4F 100%);
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
}
.about__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.page-width { max-width: 1100px; }

.about__title {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
}
.about__lead {
    margin: 0 auto 22px;
    max-width: 780px;
    color: rgba(234,230,255,0.9);
    font-weight: 300;
}

/* ---------- MISSION ---------- */
.mission {
    margin-bottom: 32px;
    background: linear-gradient(90deg, rgba(90,70,180,0.2), rgba(70,50,160,0.15));
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(138,79,255,0.2);
}
.mission__title {
    margin: 0 0 10px;
    font-size: 1.35rem;
    color: #CFC6FF;
}
.mission__text {
    margin: 0 0 14px;
    color: rgba(240,235,255,0.9);
    font-weight: 300;
}
.mission__pill-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.mission__pill {
    background: rgba(138,79,255,0.35);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #FFF;
    transition: 0.25s ease;
}
.mission__pill:hover {
    background: rgba(138,79,255,0.55);
}

/* ---------- TEAM ---------- */
.team {
    margin-bottom: 32px;
}
.team__title {
    margin: 0 0 14px;
    font-size: 1.35rem;
    color: #CFC6FF;
}
.team__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.team__member {
    background: rgba(255,255,255,0.05);
    border: solid rgba(138,79,255,0.15);
    border-radius: 14px;
    padding: 16px;
    width: 33%;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team__member:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(90,60,160,0.25);
}
@media (max-width: 900px) {
    .team__member { width: calc(50% - 10px); }
}
@media (max-width: 560px) {
    .team__member { width: 100%; }
}
.member__photo {
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
}
.member__name {
    margin: 6px 0 2px;
    font-size: 1rem;
    font-weight: 700;
    color: #FFF;
}
.member__role {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: rgba(230,225,255,0.8);
}
.member__bio {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(235,235,255,0.8);
}

/* ---------- HISTORY (TIMELINE) ---------- */
.history {
    margin-bottom: 32px;
}
.history__title {
    margin: 0 0 14px;
    font-size: 1.35rem;
    color: #CFC6FF;
}
.history__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.history__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(138,79,255,0.18);
    padding: 14px;
    border-radius: 10px;
    border-left: 3px solid #8A4FFF;
}
.history__year {
    min-width: 64px;
    font-weight: 700;
    color: #DAD2FF;
}
.history__desc {
    margin: 0;
    font-weight: 300;
    color: rgba(240,235,255,0.9);
}

/* ---------- STATS ---------- */
.stats {
    margin-bottom: 32px;
}
.stats__title {
    margin: 0 0 14px;
    font-size: 1.35rem;
    color: #CFC6FF;
}
.stats__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.stats__item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(138,79,255,0.2);
    padding: 14px;
    border-radius: 10px;
    min-width: 140px;
    text-align: center;
}
.stats__value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #8A4FFF;
}
.stats__label {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(240,235,255,0.85);
}

/* ---------- CTA ---------- */
.cta {
    margin: 16px 0 40px;
    text-align: center;
    padding: 24px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(138,79,255,0.12), rgba(92,46,255,0.08));
    border: 1px solid rgba(138,79,255,0.2);
}
.cta__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    color: #EAE6FF;
}
.cta__text {
    margin: 0 0 14px;
    font-weight: 300;
    color: rgba(235,230,255,0.9);
}
.cta__button {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 12px;
    background: linear-gradient(90deg, #5C2EFF 0%, #8A4FFF 100%);
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(138,79,255,0.25);
}

/* ---------- CONTACT PAGE ---------- */
.contact__hero {
    background: linear-gradient(180deg, #1C1A3D 0%, #261D4F 100%);
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
}
.contact__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact__title {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
}
.contact__lead {
    margin: 0 auto 22px;
    max-width: 780px;
    font-weight: 300;
    color: rgba(234,230,255,0.9);
}

.contact__form-section {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 40px;
}
.form__group { margin-bottom: 18px; }
.form__label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}
.form__input,
.form__textarea {
    width: 100%;
    border: 1px solid rgba(138,79,255,0.3);
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 10px 14px;
    color: #FFF;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #8A4FFF;
    box-shadow: 0 0 8px rgba(138,79,255,0.4);
}
.form__button {
    display: inline-block;
    background: linear-gradient(90deg, #5C2EFF, #8A4FFF);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 26px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.form__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138,79,255,0.25);
}

.contact__info {
    margin-bottom: 40px;
}
.contact__subtitle {
    font-size: 1.35rem;
    color: #CFC6FF;
    margin-bottom: 12px;
}
.contact__list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
.contact__item {
    margin-bottom: 8px;
    color: rgba(235,230,255,0.9);
}
.contact__link {
    color: #8A4FFF;
    text-decoration: none;
}
.contact__link:hover {
    text-decoration: underline;
}

.contact__socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.social {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(138,79,255,0.2);
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease, transform 0.25s ease;
}
.social:hover {
    background: rgba(138,79,255,0.4);
    transform: translateY(-3px);
}

.contact__map-container {
    position: relative;
    overflow: hidden;
}
.contact__map-link {
    color: #eee;
    font-size: 12px;
    position: absolute;
    left: 0;
    text-decoration: none;
}
.contact__map-link--city {
    top: 0;
}
.contact__map-link--address {
    top: 14px;
}
.contact__map-frame {
    position: relative;
    border-radius: 14px;
    border: none;
}
.contact__load-posts {
    text-align: center;
    margin-top: 30px;
}

/* ---------- PARTNERS PAGE ---------- */

.partners__hero {
    background: linear-gradient(180deg, #1C1A3D 0%, #261D4F 100%);
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
}
.partners__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.partners__title {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
}
.partners__lead {
    margin: 0 auto 22px;
    max-width: 780px;
    color: rgba(235,230,255,0.9);
    font-weight: 300;
}

.partners__list-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partners__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1100px;
}

.partner__card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(138,79,255,0.2);
    border-radius: 16px;
    text-align: center;
    width: 260px;
    padding: 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(138,79,255,0.25);
}

.partner__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 14px;
    background: rgba(255,255,255,0.1);
    padding: 8px;
}

.partner__name {
    font-size: 1.15rem;
    color: #FFF;
    font-weight: 700;
    margin: 8px 0 6px;
}

.partner__desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(235,230,255,0.85);
    margin-bottom: 14px;
}

.partner__link {
    display: inline-block;
    background: linear-gradient(90deg, #5C2EFF, #8A4FFF);
    padding: 8px 16px;
    border-radius: 10px;
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(138,79,255,0.3);
}

@media (max-width: 768px) {
    .partner__card {
        width: 90%;
        max-width: 360px;
    }
}

/* ---------- PRICING PAGE ---------- */

.pricing__hero {
    background: linear-gradient(180deg, #1C1A3D 0%, #261D4F 100%);
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
}
.pricing__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.pricing__title {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
}

.pricing__lead {
    margin: 0 auto 22px;
    max-width: 780px;
    color: rgba(235,230,255,0.9);
    font-weight: 300;
}

.pricing__plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.pricing__card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(138,79,255,0.2);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    width: 280px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(138,79,255,0.25);
}
.pricing__card--highlight {
    background: linear-gradient(180deg, rgba(138,79,255,0.25), rgba(92,46,255,0.15));
    border-color: rgba(138,79,255,0.5);
    transform: scale(1.05);
}

.pricing__card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 8px;
}
.pricing__price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8A4FFF;
    margin-bottom: 14px;
}
.pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    color: rgba(235,230,255,0.9);
    font-weight: 300;
}
.pricing__features li {
    margin-bottom: 6px;
}
.pricing__btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, #5C2EFF, #8A4FFF);
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
}
.pricing__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(138,79,255,0.25);
}

/* ---------- FEATURES-PAGE ---------- */

.features-page__hero {
    background: linear-gradient(180deg, #1C1A3D 0%, #261D4F 100%);
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
}
.features-page__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.features-page__title {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
}
.features-page__subtitle {
    margin: 0 auto 22px;
    max-width: 780px;
    color: rgba(235,230,255,0.9);
    font-weight: 300;
}

.features-page__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 40px 20px 60px;
    background: rgba(255,255,255,0.03);
}

.features-page__item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(138,79,255,0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    width: 260px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features-page__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(138,79,255,0.25);
}
.features-page__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}
.features-page__item-title {
    font-size: 1.3rem;
    color: #FFF;
    font-weight: 700;
    margin-bottom: 8px;
}
.features-page__item-text {
    color: rgba(235,230,255,0.9);
    font-weight: 300;
}

.features-page__extra {
    background: linear-gradient(90deg, rgba(92,46,255,0.1), rgba(138,79,255,0.15));
    padding: 60px 20px;
    text-align: center;
}
.features-page__extra-title {
    font-size: 1.6rem;
    color: #FFF;
    font-weight: 700;
    margin-bottom: 10px;
}
.features-page__extra-text {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(235,230,255,0.9);
}

.features-page__cta {
    text-align: center;
    padding: 60px 20px;
}
.features-page__cta-title {
    font-size: 1.6rem;
    color: #FFF;
    font-weight: 700;
    margin-bottom: 16px;
}
.features-page__cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, #5C2EFF, #8A4FFF);
    color: #FFF;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}
.features-page__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138,79,255,0.25);
}

.session {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
}
.session__text {
    color: rgba(255, 255, 255, 0.85);
}
.session__link {
    color: #EEE7FE;
    text-decoration: none;
    font-weight: 600;
}
.session__link:hover {
    text-decoration: underline;
}
.nav__star {
    margin-left: 6px;
    color: #F21EFC;
    font-size: 0.95em;
}
