* {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
    letter-spacing: 0.015em;
    text-align: left;
color: rgba(49, 37, 68, 1);
scroll-behavior: smooth;
}

header, .section {
    max-width: 1440px;
    margin: 0 auto;
}

.section {
    padding: 0 32px 0 32px;
    max-width: 1440px;
    margin: 0 auto;
}

body {
    background-color: rgba(255, 255, 255, 1);
}

.flex-container {
    display: flex;
    justify-content: space-between;
}

.flex-list {
    display: flex;
    gap: 32px;
}

.flex-list li a {
    display: block;
    padding: 20px 0;
}

.flex-list li a:hover {
    color: rgba(88, 0, 234, 1);
}

.header {
    height: 100vh;
    padding: 16px 32px;
    position: relative;
    font-family: 'Rubik', sans-serif;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-button {
font-weight: 600;
text-align: left;
padding: 14px 24px 14px 24px;
gap: 10px;
border-radius: 10px;
opacity: 0px;
background: rgba(255, 245, 0, 1);
border: 1px solid rgba(220, 211, 6, 1);
cursor: pointer;
}

.header-button:hover {
    background-color: rgba(88, 0, 234, 1);
    color: white;
    border: 1px solid rgba(88, 0, 234, 1);
}

.header-bottom {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

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

.header-top {
    position: fixed;
    padding: 16px 32px 16px 32px;
    background-color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
.main {
    padding: 16px 0 0 0;
}

.second-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 24px;
    width: 300px;
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .avatar {
    width: 34px;
    height: 34px;
    border-radius: 6.8px;
  }
  
  .name {
    color: rgba(49, 37, 68, 1);
    font-size: 14px;
    margin: 0;
  }
  
  .position {
    color: rgba(121, 113, 133, 1);
    font-size: 12px;
    margin: 0;
  }
  
  .description {
    color: rgba(49, 37, 68, 1);
    font-size: 13px;
    margin-top: 10px;
  }
  .carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.carousel {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

.card {
    flex: 0 0 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Размытие по бокам */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.btn img {
    margin-right: 10px;
}
.first-section-left  {
    width: 50%;
}
.first-section-right {
    width: 50%;
}


.first-section-left h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 66px;
    line-height: 59.4px;
    color: rgba(49, 37, 68, 1);
    font-weight: 700;
    margin: 0;
}

.first-section-left h2 {
    font-size: 44px;
    line-height: 51.27px;
    color: rgb(255, 255, 255);
    background-color: rgba(88, 0, 234, 1);
    display: inline-block;
    font-weight: 700;
    padding: 0 10px;
    margin: 10px 0;
}

.first-section-left .header-par {
    font-size: 28px;
    color: rgba(49, 37, 68, 1);
    line-height: 32.63px;
    font-weight: 900;
    margin-bottom: 20px;
}
.blinking-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(169, 235, 0, 1); /* Цвет точки */
    display: inline-block;
    margin-right: 10px;
    animation: blink 1s infinite;
    border: 3px solid rgba(233, 250, 191, 1);
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}
/* Контейнер для кнопок */
.button-container {
    display: flex;
    gap: 20px; /* Пробел между кнопками */
}

/* Стили кнопок */
.btn {
    display: flex;
    align-items: center; /* Выравнивание по вертикали */
    justify-content: center; 
    padding: 16px 26px;
    border: 1px solid rgba(209, 215, 224, 1);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    background: rgba(255, 255, 255, 1);

}

.btn:hover {
    background: linear-gradient(90deg, #DFFFBB 0%, #B0F5FF 100%);
}

.btn:active {
    background: linear-gradient(90deg, #b4cd97 0%, #89bec6 100%);
}


.first-section-right img {
    width: 100%;
    max-width: 100%; 
}
.second-section {
    padding-bottom: 44px;
}

.third-section {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 44px 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    width: 60%;
}



.select {
    background-color: rgba(248, 249, 251, 1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
    min-height: 150px;
padding: 32px;
gap: 16px;
border-radius: 16px;
opacity: 0px;

}

.select.empty {
    background-color: #f5f5f5;
    border: 1px dashed #ccc;
}

.card-icon {
    display: flex;
    align-items: center;
font-size: 26px;
font-weight: 600;
line-height: 30.3px;
text-align: left;
gap: 12px;
    margin-bottom: 10px;
}

.select h3 {
    font-family: Rubik;
    font-size: 26px;
    font-weight: 600;
    line-height: 30.3px;
    text-align: left;
    
}

.select p {
    font-size: 15px;
    font-weight: 400;
    line-height: 23.25px;
    text-align: left;
    
}

.promo-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    
    width: 35%;
    text-align: center;
}

.section-h2 {
    font-family: Rubik;
    font-size: 36px;
    font-weight: 600;
    line-height: 41.95px;
    text-align: left;
    
}

.section-h2-last {
    color: white;
}


.score {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    align-items: center;
}


.stars {
    height: 20px;
    display: flex;
   
}

.score-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 18.6px;
    text-align: left;

}
.section-button__container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.section-button {
    font-size: 16px;
    font-weight: 600;
    line-height: 18.75px;
    letter-spacing: 0.015em;
    text-align: left;
color: rgba(255, 255, 255, 1);  
padding: 18px 32px 18px 32px;
border-radius: 10px;
background-color: rgba(88, 0, 234, 1);
cursor: pointer;
margin-top: 24px;
width: max-content;
display: block;
border: none;
}
.section-button:hover {
    background-color: rgba(255, 122, 0, 1);
}
.section-button:active {
    background-color: rgba(214, 103, 0, 1);
}
.promo-section button:hover {
    background-color: #5500cc;
}

.above-text {
    display: block;
font-size: 14px;
font-weight: 600;
line-height: 16.59px;
text-align: left;
background-color: rgba(249, 255, 233, 1);
color: rgba(134, 186, 0, 1);
border: 1px solid rgba(134, 186, 0, 1);
border-radius: 6px;
padding: 10px;
width: max-content;
margin-bottom: 24px;
}

.above-text-trans {
    background-color: transparent;
font-size: 13px;
font-weight: 600;
line-height: 15.15px;
text-align: left;
padding: 10px 16px;
color: white;
border: 1px solid white;
}

.under-title {
font-size: 16px;
font-weight: 600;
line-height: 24.8px;
letter-spacing: 0.015em;
text-align: left;
margin-top: 10px;
margin-bottom: 48px;
color: rgba(101, 92, 115, 1);;
}


.middle-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    background: url(../pics/1920px.svg);
    background-size: cover;
    padding: 12px 32px 12px 32px;
}

.sticky {
    position: sticky;
    top: 90.75px;
    z-index: 999;
}

.middle-nav a {
    border: 1px solid rgba(212, 220, 232, 1);
    border-radius: 100px;
    text-decoration: none;
    width: 600px;
    text-align: center;
    padding: 9px 20px 9px 20px;
}

.middle-nav a:hover {
    border: 1px solid rgba(148, 161, 182, 1);  
    color: rgb(125, 136, 154);
}

.fourth-section {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    margin-bottom: 64px;
    gap: 44px;
}
.fourth-par {
    display: flex;
    align-items: center;
font-family: 'Rubik';
font-size: 13px;
font-weight: 600;
line-height: 15.15px;
text-align: left;
margin-bottom: 24px;
}
.fourth-par .blinking-dot {
    width: 18px;
    height: 18px;
    border: 4px solid rgba(233, 250, 191, 1);
}

.fourth-text {
    padding: 50px 50px 24px 50px;
    
}

.fourth-text h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 30.3px;
    text-align: left;
    margin-bottom: 16px;

}

.fourth-text p {
font-size: 16px;
font-weight: 400;
line-height: 24.8px;
text-align: left;

} 
.fourth-right {
    background-color: rgba(248, 249, 251, 1);
    border-radius: 16px;
    margin-bottom: 50px;
}
.fourth-right img {
    width: 100%;
    border-radius: 16px;
}
.fourth-left-main {
flex: 1;
margin-bottom: 50px;
position: sticky;
top: 353px;
align-self: flex-start;
}
.fourth-right-main {
    flex: 1;
    gap: 10px;
}
.fourth-right-main, .fourth-left-main {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    flex: 1;
}

.tab2 {
    display: none;
}


.orange {
    background-color: rgba(255, 122, 0, 1);
    border: 4px solid  rgba(250, 223, 191, 1) !important;
}

.faq-section {
    flex: 5;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.faq-item {
    background-color: rgba(113, 38, 237, 1);
    color: white;
    margin: 5px 0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    padding: 32px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 10px;
    color: white;
}

.faq-question h3 {
    color: white;
}

.faq-question:hover {
    background-color: rgba(113, 38, 237, 1);
    border-radius: 0;
}

.faq-answer {
    display: none;
    padding: 32px;
    background-color: rgba(113, 38, 237, 1);
    border-radius: 0 0 10px 10px;
    color: white;
    padding-top: 0;
}

.faq-answer p {
    color: white;
}

.arrow {
    font-size: 24px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.fifth-section-main {
    background-color: rgba(88, 0, 234, 1);
}

.fifth-section {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    background-color: rgba(88, 0, 234, 1);
    padding-top: 80px;
    padding-bottom: 80px;
}
.promo-section {
    margin-top: 90px;
    margin-bottom: 66px;
}
.promo-section {

}
.promo-section-last {
    flex: 3;
    padding: 11px 44px 11px 44px;
        margin-top: 0;
    margin-bottom: 0;
}

.arrow {
    width: 24px;  /* размер картинки стрелки */
    height: 24px;
    transition: transform 0.3s ease;  /* плавный переход для поворота */
}

.faq-item.active .arrow {
    transform: rotate(180deg);  /* поворот стрелки на 180 градусов при открытом состоянии */
}

.faq-item.active {
    border: 1px solid rgba(255, 255, 255, 1);

}

.under-title-last {
    color: white;
font-size: 16px;
font-weight: 400;
line-height: 18.75px;
letter-spacing: 0.015em;
text-align: left;
margin-top: 26px;
margin-bottom: 34px;
}

.score-text-last {
font-weight: 400;
color: white;
}

.middle-nav a {
    color: rgba(149, 163, 185, 1);
}

.section-button-last {
    background-color: rgba(255, 122, 0, 1);
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-button-last:hover {
    background-color: #fff !important; 
    color: rgba(88, 0, 234, 1);
}
.section-button-last:active {
    background-color: rgba(241, 243, 248, 1) !important; 
    color: rgba(88, 0, 234, 1);
}

#collab {
    margin-bottom: 10px;
}

#publish {
    padding-top: 0;
}


footer {
    background-color: rgba(34, 24, 52, 1);
}

.footer {
    background-color: rgba(34, 24, 52, 1);
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer ul li {
    list-style: none;
font-size: 16px;
font-weight: 400;
line-height: 20px;
letter-spacing: 0.015em;
text-align: left;
color: white;
} 

.footer-logo {
    margin-bottom: 44px;
}

.footer-left {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    padding: 44px 32px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 44px;
    gap: 68px;
}

.footer-bottom {
font-size: 13px;
font-weight: 400;
line-height: 18.85px;
letter-spacing: 0.015em;
text-align: left;

    color: rgba(121, 113, 133, 1);
}

.list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list li img {
    margin-right: 6px;
}

.list li {
    display: flex;
    align-items: center;
}

body.modal-open {
    overflow: hidden;
  }

  /* Стиль для модального фона */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }



  /* Стиль для модального окна */
  .modal {
    background-color: white;
    max-width: 780px;
    display: flex;
    border-radius: 10px;
    position: relative;
    
  }

.modal-left {
    display: flex;
    align-items: center;
    padding: 48px 50px;
}


.close-button {
    position: absolute;
    top: 0;
    right: -40px;
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 24px;
    color: white;
}

.right-modal-bg {
    background-color: rgba(240, 246, 255, 1);
    border-radius: 0 10px 10px 0;
}

  /* Показываем модальное окно */
  .modal-overlay.active {
    display: flex;
  }
  @keyframes scrollBackground {
    from {
      background-position-y: 100%;
    }
    to {
      background-position-y: 0%;
    }
  }
  .modal-right {
    height: 100%;

    background: url('../pics/Animated-row.png') repeat-y center;
    background-size: cover;
    animation: scrollBackground 20s linear infinite;
    font-size: 28px;
  }

  /* Стиль для картинки справа */
  .modal-right img {
    height: 100%;
    
  }

  .modal-score {
    margin-top: 24px;
    margin-bottom: 24px;
    gap: 48px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: rgba(255, 249, 240, 1);
  }

  .modal-under-title {
font-size: 22px;
font-weight: 600;
line-height: 29.7px;
text-align: left;
margin-bottom: 10px;
  }

  .modal-small-text {
font-size: 15px;
font-weight: 400;
line-height: 24.8px;
text-align: left;
color: rgba(49, 37, 68, 0.75);
  }

  .top {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .bot {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .no-margin {
    margin: 0;
    position: unset;
    align-self: unset;
  }
  .tab {
    display: none;
  }
  .mob {
    display: none;
  }
  .footer ul li {
    white-space: nowrap;
  }
  .menu-button {
    display: none;
  }
  .menu-arrow {
    display: none;
  }
  .footer ul a li:hover {
    color: rgba(88, 0, 234, 1);
  }
  .flex-list li a span:hover {
    color: rgba(88, 0, 234, 1);
  }

@media (max-width: 992px) {
    .third-section {
        padding: 44px 32px;
    }
    .header-bottom-main {
        height: 100%;
    }
    .first-section-right {
        height: 100%;
        display: flex;
        align-items: center;
    }
    .desk {
        display: none;
    }
    .tab {
        display: block;
    }
    .score {
        flex-direction: column;
        align-items: baseline;
    }
    .select {
        padding: 24px;
        align-items: baseline;
        gap: 16px;
    }
    .card-icon {
        flex-direction: column;
        gap: 12px;
        align-items: baseline;
        margin: 0;
    }
    .fifth-section {
        flex-direction: column;
        padding: 44px 32px;
    }
    .promo-section-2 {
        width: 100%;
        order: -1;
        align-items: center;
    }
    .section-h2-2 {
        width: 450px;
        text-align: center;
    }
    .modal h2 {
        width: auto;
    }
    .faq-score {
        flex-direction: row;
        align-items: center;
    }
    .modal-score {
        flex-direction: row;
        align-items: center;
    }
}
/* Для мобильных устройств */
@media (max-width: 768px) {
    .section-h2 {
        text-align: center;
    }
    .flex-container {
        flex-direction: column; 
        align-items: center;
    }
    
    .first-section-left {
        max-width: 100%;
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    
    .first-section-right {
        order: -1;
        width: 100%;
        margin-top: 20px;
        height: max-content;
    }
    .close-button {
        display: none;
    }
    .modal {
        max-width: 688px;
    }
    .modal-left {
        width: 60%;
    }
    .right-modal-bg {
        width: 100%;
    }
    .modal-right {
        width: 100%;
    }
    .modal-score {
        flex-direction: column;
        align-items: baseline;
        gap: 5px;
    }
    .btn {
        padding: 20px;
    }
    .tab {
        display: none;
    }
    .tab2 {
        display: block;
    }
    .navigation {
        display: none;
    }
    .header-top {
        flex-direction: row;
    }
    .menu-button {
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .flex-list {
        align-items: center;
    }
    .menu-open .menu-button img {
        content: url('../pics/menu.png');
        width: 50px;
        height: 50px;
    }
.flex-container.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
}

.header-logo img {
    width: 100px; /* Можно подкорректировать размер */
}

nav.flex-list {
    display: flex;
    align-items: center;
}

.flex-list.navigation {
    list-style: none;
    display: none; /* По умолчанию меню скрыто */
    padding: 44px;
    background-color: #f0f0f0;
    border-radius: 20px;
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.flex-list.navigation li {
    margin: 10px 0;
}

.flex-list.navigation li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.menu-button img {
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/* Стили для отображения меню при открытии */
.menu-open .flex-list.navigation {
    display: block;
    background-color: rgba(248, 249, 251, 1);
    border: 1px solid rgba(209, 215, 224, 1);

}

/* Замена иконки меню на "close" */
.menu-open .menu-button img {
    content: url('../pics/menu-close.png');
}
.header-logo img {
    width: 200px;
}
.flex-list li a {
    padding: 0;
}

.flex-list li .menu-nav-cont {
    padding: 10px 0 20px 0;
    border-bottom: 0.5px solid rgba(209, 215, 224, 1);
    display: flex;
    justify-content: space-between;
}

/* Анимация открытия/закрытия */
.flex-list.navigation {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;

}

.menu-open .flex-list.navigation {
    max-height: 362px; /* Достаточно места для всех пунктов */
    width: 94%;
    margin-left: 20px;
    margin-right: 20px;
}

.nav-title {
font-size: 26px;
font-weight: 600;
line-height: 30.3px;
text-align: left;
margin-bottom: 4px;
}
.last-list-element {
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.menu-arrow {
    display: block;
    width: 24px;
    height: 24px;
}
.flex-container {
    justify-content: space-evenly;
}
.third-section {
    flex-direction: column;
    gap: 20px;
}
.card-grid {
    width: 100%;
}
.promo-section {
    width: 100%;
    align-items: center;
}
.under-title {
    text-align: center;
}
.promo-score {
    align-items: center;
    gap: 4px;
}
.middle-nav a {
font-size: 14px;
font-weight: 600;
line-height: 16.41px;
letter-spacing: 0.015em;

}
.fourth-right {
    margin-bottom: 0;
}
.fourth-section {
    flex-direction: column;
}
.fourth-left-main {
    align-items: center;
    position: relative;
    top: 0;
}
.fourth-right-main {
    order: -1;
}
.fourth-text h2 {
    text-align: center;
}
.fourth-text p {
    text-align: center;
}
.under-title {
    margin-bottom: 0;
}
.under-title-last {
    margin-bottom: 24px;
}
.footer {
    overflow: hidden;
}
.sticky {
    top: 69.75px;
}

}

@media (max-width: 576px) {
    .modal {
        flex-direction: column;
        max-width: 420px;
    }
    .modal-right img {
        content: url('../pics/offer-mob.png');
        width: 100%;
    }
    .right-modal-bg {
        border-radius: 0 0 10px 10px;
    }
    .first-section-left h2 {
        text-align: center;
    }
    .fourth-left-main {
        align-items: flex-start;
    }
    .modal h2 {
        text-align: left;
    }
    .footer-pic img {
        content: url('../pics/footer-mob.png');
    }
    .section-button {
        align-self: center;
    }
    .fourth-par {
        align-self: center;
    }
    .modal-left {
        width: 100%;
        padding-bottom: 32px;
    }
    .first-section-right img {
        content: url('../pics/header-top-mobi.png');
    }

}

@media (max-width: 430px) {
    .section-button__container {
        flex-direction: column;
        width: 100%;
    }
    .section-button-last-last {
        margin-top: 0;
    }
    .section-button-last {
        width: 100%;
    justify-content: center;
    }
    .button-container {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .header-logo img {
        content: url('../pics/favicon.png');
        width: 38px;
        height: 38px;
    }
    .first-section-right img {
        content: url('../pics/header-top-last.png');
    }
    .first-section-left h1 {
font-size: 44px;
font-weight: 700;
line-height: 38.2px;
text-align: center;

    }
    .first-section-left h2 {
font-size: 32px;
font-weight: 700;
line-height: 37.29px;
text-align: center;

    }
    .first-section-left .header-par {
        font-family: Rubik;
font-size: 16px;
font-weight: 600;
line-height: 20.97px;

    }
    .blinking-dot {
        width: 15px;
        height: 15px;
    }
    .button-container {
        width: 100%;
    }
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    .middle-nav {
        flex-direction: column;
    }
    .middle-nav a {
        max-width: 300px;
    }
    .fourth-text {
        padding: 24px;
    }
    .section {
        padding: 0 16px 0 16px;
    }
    .section-h2-2 {
        max-width: 328px;
    }
    .promo-section {
        margin-bottom: 96px;
    }
    .promo-section-last {
        padding: 44px 0 44px 0;
        margin-bottom: 0;
    }
    .faq-score {
        flex-direction: column;
        align-items: center;
    }
    .menu-open .flex-list.navigation {
        width: 90%;
    }
    .menu-button img {
        width: 38px;
        height: 38px;
    }
    .menu-open .menu-button img {
        width: 38px;
        height: 38px; 
    }
    .faq-section {
        padding-bottom: 44px;
    }
    .modal {
        max-width: 320px;
    }
    .modal-right img {
        max-width: 320px;
    }
    .modal-left {
        padding: 24px 24px;
    }
    .modal h2 {
        text-align: left;
        font-size: 24px;
        line-height: 30px;
    }
    .close-button {
        display: block;
        top: 10px;
        right: 10px;
        color: black;
    }
    .modal-under-title {
        text-align: left;
        font-size: 15px;
        line-height: 18px;
    }
    .modal-small-text {
        margin-top: 10px;
        font-size: 12px;
    }
    .sticky {
        top: 66.75px;
    }
    .header-bottom {
        margin-top: 25px;
    }
    .second-section {
        margin: 50px 0;
    }
}

