/* ==================== GLOBAL STYLES ==================== */
:root {
    --white-color: #FFFFFF;
    --light-gray-color: #F3F4F6;
    --dark-gray-color: #111827;
    --accent-color: #4338CA;
    --accent-hover-color: #3730A3;
    --text-color-light: #6B7280;

    --font-family-main: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --container-padding: 1rem;

    --header-height: 70px;
    --transition-duration: 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-main);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--white-color);
    color: var(--dark-gray-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-duration) ease;
}

a:hover {
    color: var(--accent-hover-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}


/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray-color);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray-color);
}

.header__nav {
    display: none; /* Hidden on mobile */
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__nav-link {
    color: var(--dark-gray-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-duration) ease;
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__nav-link--button {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: background-color var(--transition-duration) ease;
}

.header__nav-link--button:hover {
    background-color: var(--accent-hover-color);
    color: var(--white-color);
}

.header__nav-link--button::after {
    display: none; /* Remove underline effect for button */
}

.header__burger-menu {
    display: block; /* Visible on mobile */
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-gray-color);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--dark-gray-color);
    color: var(--light-gray-color);
    padding: 4rem 0 2rem;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
}

.footer__logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer__copyright {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.footer__title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 1.2rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__link {
    color: var(--text-color-light);
    transition: color var(--transition-duration) ease;
}

.footer__link:hover {
    color: var(--white-color);
}

.footer__list--contacts .footer__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__link--static {
    color: var(--text-color-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* ==================== RESPONSIVE STYLES ==================== */
@media (min-width: 768px) {
    .footer__container {
        grid-template-columns: 2fr 1fr 1fr 2fr;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .header__nav {
        display: block; /* Show navigation on desktop */
    }
    .header__burger-menu {
        display: none; /* Hide burger on desktop */
    }
}

/* ==================== HERO ==================== */
.hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
    background-color: var(--white-color);
    overflow: hidden; /* Важно для анимации */
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    text-align: center;
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray-color);
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero__cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color var(--transition-duration) ease, transform var(--transition-duration) ease;
}

.hero__cta-button:hover {
    background-color: var(--accent-hover-color);
    transform: translateY(-3px);
}

.hero__animation-area {
    display: none; /* Скрыто на мобильных устройствах для производительности */
    position: relative;
    min-height: 400px;
}

.hero__tech-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray-color);
    color: var(--text-color-light);
    border-radius: 50%;
    font-weight: 500;
    font-size: 0.9rem;
    user-select: none; /* Запретить выделение текста */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==================== HERO | RESPONSIVE STYLES ==================== */
@media (min-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(var(--header-height) + 5rem);
        padding-bottom: 6rem;
    }
    
    .hero__container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero__content {
        text-align: left;
    }

    .hero__description {
        margin: 0 0 2.5rem;
    }

    .hero__animation-area {
        display: block; /* Показываем анимацию на десктопе */
    }
}

/* ==================== DIRECTIONS ==================== */
.directions {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--light-gray-color);
}

.directions__header {
    text-align: center;
    margin-bottom: 3rem;
}

.directions__title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.directions__subtitle {
    font-size: 1.125rem;
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

.directions__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.directions-card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}

.directions-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.directions-card__icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden; /* To contain the placeholder image */
}

.directions-card__icon {
    width: 100%;
    height: 100%;
    object-fit: cover; /* In case placeholder is not square */
}

.directions-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.directions-card__description {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes the link to the bottom */
}

.directions-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.directions-card__tag {
    background-color: var(--light-gray-color);
    color: var(--text-color-light);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.directions-card__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--accent-color);
}

.directions-card__link-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-duration) ease;
}

.directions-card__link:hover .directions-card__link-icon {
    transform: translateX(4px);
}

/* ==================== DIRECTIONS | RESPONSIVE STYLES ==================== */
@media (min-width: 768px) {
    .directions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .directions {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .directions__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==================== PROCESS ==================== */
.process {
    padding: 4rem 0;
    background-color: var(--white-color);
}

.process__header {
    text-align: center;
    margin-bottom: 4rem;
}

.process__title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.process__subtitle {
    font-size: 1.125rem;
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

.process__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* The vertical line */
.process__timeline::before {
    content: '';
    position: absolute;
    top: 25px; /* start below the first icon */
    bottom: 25px; /* end above the last icon */
    left: 24px; /* center of the icon */
    width: 2px;
    background-color: var(--light-gray-color);
}

.process-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.process-item__icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* above the timeline line */
    border: 4px solid var(--white-color);
}

.process-item__content {
    padding-top: 0.5rem;
}

.process-item__step {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.process-item__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-item__description {
    color: var(--text-color-light);
}


/* ==================== PROCESS | RESPONSIVE STYLES ==================== */
@media (min-width: 768px) {
    .process {
        padding: 6rem 0;
    }
    
    .process__timeline {
        gap: 0; /* Remove gap for alternating layout */
    }

    .process__timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .process-item {
        width: 50%;
        padding: 0 2.5rem; /* Space from the center line */
    }

    /* Even items on the right */
    .process-item:nth-child(even) {
        align-self: flex-end;
    }
    
    /* Odd items on the left */
    .process-item:nth-child(odd) {
        align-self: flex-start;
        /* Reverse flex direction */
        flex-direction: row-reverse;
        text-align: right;
    }
    
    .process-item__icon-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .process-item__content {
        width: 100%;
        padding-top: 0;
        padding-bottom: 3rem;
    }
}
/* ==================== MENTORS ==================== */
.mentors {
    padding: 4rem 0;
    background-color: var(--light-gray-color);
}

.mentors__header {
    text-align: center;
    margin-bottom: 3rem;
}

.mentors__title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.mentors__subtitle {
    font-size: 1.125rem;
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

.mentors__slider-container {
    position: relative;
    max-width: 1280px; /* Slightly wider than main container for better look */
    margin: 0 auto;
    padding: 0 2.5rem; /* Space for navigation buttons */
}

.mentors-swiper {
    padding: 1rem 0;
}

.mentor-card {
    background: var(--white-color);
    border-radius: 12px;
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid #E5E7EB;
    height: 100%; /* Ensure all cards have same height */
}

.mentor-card__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.mentor-card__name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mentor-card__role {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.mentor-card__bio {
    font-size: 0.9rem;
    color: var(--text-color-light);
    line-height: 1.5;
}

.mentors-swiper__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white-color);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray-color);
    cursor: pointer;
    transition: background-color var(--transition-duration) ease, color var(--transition-duration) ease;
    z-index: 10;
}

.mentors-swiper__button:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.mentors-swiper__button--prev {
    left: 0;
}

.mentors-swiper__button--next {
    right: 0;
}

/* On mobile, hide arrows if they overflow */
@media (max-width: 480px) {
    .mentors__slider-container {
        padding: 0;
    }
    .mentors-swiper__button {
        display: none;
    }
}

/* ==================== REVIEWS ==================== */
.reviews {
    padding: 4rem 0;
    background-color: var(--white-color);
}

.reviews__header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews__title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.reviews__subtitle {
    font-size: 1.125rem;
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

.reviews__grid {
    column-gap: 1.5rem;
}

.review-card {
    background-color: var(--light-gray-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    break-inside: avoid; /* Prevents cards from breaking across columns */
    border: 1px solid #E5E7EB;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.review-card__course {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.review-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray-color);
}

/* ==================== REVIEWS | RESPONSIVE STYLES ==================== */

@media (min-width: 768px) {
    .reviews {
        padding: 6rem 0;
    }
    .reviews__grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .reviews__grid {
        column-count: 3;
    }
}

/* ==================== FAQ ==================== */
.faq {
    padding: 4rem 0;
    background-color: var(--white-color);
}

.faq__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.faq__title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.faq__subtitle {
    font-size: 1.125rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.faq__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
}

.faq__accordion {
    border-top: 1px solid #E5E7EB;
}

.accordion-item {
    border-bottom: 1px solid #E5E7EB;
}

.accordion-item__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-item__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark-gray-color);
}

.accordion-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    transition: transform var(--transition-duration) ease;
}

.accordion-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-item__text {
    padding-bottom: 1.5rem;
    color: var(--text-color-light);
    line-height: 1.6;
}

/* Active state for accordion */
.accordion-item--active .accordion-item__icon {
    transform: rotate(180deg);
}


/* ==================== FAQ | RESPONSIVE STYLES ==================== */
@media (min-width: 1024px) {
    .faq {
        padding: 6rem 0;
    }
    .faq__container {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
        align-items: center;
    }
}

/* ==================== CONTACT ==================== */
.contact {
    padding: 4rem 0;
    background-color: var(--light-gray-color);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact__title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.contact__subtitle {
    font-size: 1.125rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact__detail-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray-color);
    font-weight: 500;
}
.contact__detail-item:hover {
    color: var(--accent-color);
}
.contact__detail-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

.contact__form-wrapper {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.05), 0 4px 6px -4px rgba(0,0,0,.05);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family-main);
    transition: border-color var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}

.form-group__input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
}
.form-group__input--error {
    border-color: #EF4444;
}

.form-group__error {
    display: block;
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25em;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.form-group--checkbox .form-group__error {
    width: 100%;
    margin-top: 0;
}
.form-group__checkbox {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
}
.form-group__checkbox-label {
    font-size: 0.9rem;
    color: var(--text-color-light);
}
.form-group__checkbox-label a {
    text-decoration: underline;
}

.contact-form__submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color var(--transition-duration) ease;
}
.contact-form__submit:hover {
    background-color: var(--accent-hover-color);
}
.contact-form__submit:disabled {
    background-color: #9CA3AF;
    cursor: not-allowed;
}


/* Success message styles */
.contact-form__success {
    display: none; /* Hidden by default */
    text-align: center;
    padding: 2rem;
}
.contact-form__success-icon {
    color: #10B981;
    margin-bottom: 1rem;
}
.contact-form__success-icon svg {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.contact-form__success-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.contact-form__success-text {
    color: var(--text-color-light);
}


/* Responsive */
@media (min-width: 1024px) {
    .contact {
        padding: 6rem 0;
    }
    .contact__container {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }
     .contact__form-wrapper {
        padding: 2.5rem;
    }
}

/* ==================== COOKIE POP-UP ==================== */
.cookie-popup {
    position: fixed;
    bottom: -100%; /* Initially hidden */
    left: 0;
    width: 100%;
    background-color: var(--dark-gray-color);
    color: var(--white-color);
    padding: 1rem;
    z-index: 2000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.cookie-popup--show {
    bottom: 0;
}

.cookie-popup__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.cookie-popup__text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-popup__link {
    color: var(--white-color);
    text-decoration: underline;
}
.cookie-popup__link:hover {
    color: var(--light-gray-color);
}

.cookie-popup__button {
    background-color: var(--accent-color);
    color: var(--white-color);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color var(--transition-duration) ease;
    flex-shrink: 0; /* Prevent button from shrinking */
}
.cookie-popup__button:hover {
    background-color: var(--accent-hover-color);
}

/* Responsive */
@media (min-width: 768px) {
    .cookie-popup {
        padding: 1.5rem;
    }
    .cookie-popup__content {
       flex-direction: row;
       text-align: left;
    }
}
/* ==================== POLICY & TEXT PAGES STYLES ==================== */
.pages {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
}

.pages .container {
    max-width: 800px; /* Narrower container for better readability */
}

.pages h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray-color);
    padding-bottom: 1rem;
}

.pages h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.pages p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color-light);
}

.pages ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.pages li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-color-light);
}

.pages a {
    text-decoration: underline;
}

.pages strong {
    color: var(--dark-gray-color);
    font-weight: 500;
}

@media (min-width: 768px) {
    .pages {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 6rem;
    }
}