/* ===== Блок "Тариф Практичный ВИП" ===== */

.tariff-vip-section {
    margin-top: 80px;
    margin-bottom: 80px;
    font-family: 'Onest', sans-serif;
}

.tariff-vip-block {
    background-color: #E8ECF3;
    border-radius: 50px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Заголовок */

.tariff-vip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.tariff-vip-title {
    margin: 0;
    font-weight: 700;
    font-size: 53px;
    line-height: 71px;
    letter-spacing: 0;
    color: #7B4DDE;
}

.tariff-vip-badge {
    border-radius: 10px;
    padding: 10px 15px;
    background-color: #7B4DDE;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Контент 60/40 */

.tariff-vip-content {
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.tariff-vip-left {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tariff-vip-right {
    flex: 0 0 40%;
    position: relative;
}

/* Картинка справа снизу, "приклеена" к краю */

.tariff-vip-women {
    position: absolute;
    right: -10px;
    bottom: -40px;
    max-width: 100%;
    height: auto;
}

/* Две колонки */

.tariff-vip-columns {
    display: flex;
    gap: 32px;
}

.tariff-vip-col {
    flex: 1 1 0;
}

.tariff-vip-col-title {
    margin: 0 0 16px;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
}

.tariff-vip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tariff-vip-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.tariff-vip-list-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Карточки */

.tariff-vip-cards {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.tariff-vip-card {
    position: relative;
    flex: 1 1 calc(33.333% - 14px);
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 15px;
    padding-top: 55px; /* запас под иконку */
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.tariff-vip-card p {
    margin: 0;
}

.tariff-vip-card-icon {
    position: absolute;
    top: 0;
    left: 25%;
    transform: translate(-50%, -50%);
}

.tariff-vip-card-icon img {
    display: block;
}

/* Кнопка + цена */

.tariff-vip-footer {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.tariff-vip-footer-left {
    flex: 2;
}

.tariff-vip-footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tariff-vip-buy-btn {
    width: 100%;
    height: 74px;
    border-radius: 15px;
    padding: 15px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #FFB627;
    text-transform: uppercase;
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
}

.tariff-vip-buy-btn:hover {
    opacity: 0.9;
}

.tariff-vip-price-label {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #949191;
}

.tariff-vip-price {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #000000;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 991.98px) {
    .tariff-vip-title {
        font-size: 34px;
        line-height: 42px;
    }

    .tariff-vip-badge {
        font-size: 16px;
        white-space: normal;
    }

    .tariff-vip-content {
        flex-direction: column;
    }

    .tariff-vip-left,
    .tariff-vip-right {
        flex: 1 1 100%;
    }

    /* Картинка справа скрыта на мобильной */
    .tariff-vip-right {
        display: none;
    }

    .tariff-vip-columns {
        flex-direction: column;
        gap: 20px;
    }

    .tariff-vip-cards {
        flex-direction: column;
    }

    .tariff-vip-card {
        flex: 1 1 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        padding: 16px 16px 16px 60px;
        min-height: 60px;
    }

    .tariff-vip-card-icon {
        left: 6%;
        top: 20px;
        transform: translate(-50%, -50%);
    }

    .tariff-vip-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .tariff-vip-footer-right {
        order: 1; /* текст + цена */
        text-align: center;
    }

    .tariff-vip-footer-left {
        order: 2; /* кнопка купить */
    }

    .tariff-vip-price {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .tariff-vip-block {
        padding: 50px 20px;
        border-radius: 30px;
    }

    .tariff-vip-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tariff-vip-badge {
        order: 1;
    }

    .tariff-vip-title {
        order: 2;
        font-size: 40px;
        line-height: 100%;
    }
}




html { overflow-x: hidden; }

.margins-header {
    margin-left: 5%;
    margin-right: 5%;
}

.containerMainImg {
    position: relative;
    text-align: center;
}
.bottom-image-header {
    position: relative;
    z-index: 1;
}

@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .hypnotize {
    animation: spin 35s linear infinite;
  }

@keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
    
  }

  .animateSuren {
    animation: float 2s ease-in-out infinite;
    position: absolute;
    top: 10%;
    left: 12%;
    z-index: 2;
  }

.animate-cap-of-coffee {
    transform: translate(-50%, -50%);
    /*animation: float 2s ease-in-out infinite;*/
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
}


.middle-image-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.top-image-header {
    position: absolute;
    bottom: 5em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.feedback-block {
    width: 100%;
background-image: url("/assets/media/image/main/Feedback_form.svg");
background-size: cover;
background-repeat: no-repeat;
}

.zero-out-four {
background-color: #E7EDFA;
padding-left: 5%;
padding-right: 5%;
}

.teachers-block {
    background-color: #F8F8F9;
}

.lesson-block {
    padding-top: 10em ;
    padding-left: 7em;
    padding-right: 7em;
    padding-bottom: 10em;
}

.lesson-block-card {
margin: 15px;
}

.lesson-block-bigCard {
    border-radius: 30px;
}

.reviews-block {
    background-color: #E7EDFA;
}

.reviews-card {
    border-radius: 30px;
    background-color: white;
    max-width: 277px;
    min-width: 277px;
    min-height: 341px;
}

.tariff {
    padding-top: 10em;
}

.tariff-mobile {
    display: none;
}

.tariff-cards-header-1 {
    border-radius: 30px;
    background-color:#7B4DDE;
    color: white;
    box-shadow: 0 4px 0 black, 0px 6px 9px 0px rgba(34, 60, 80, 0.19);
    position: relative;
    top: -80px;
}

.tariff-cards-header-2 {
    border-radius: 30px;
    background-color:#AA3900;
    color: white;
    box-shadow: 0 4px 0 black, 0px 6px 9px 0px rgba(34, 60, 80, 0.19);
    position: relative;
    top: -80px;
}

.tariff-cards-header-3 {
    border-radius: 30px;
    background-color:#FFB627;
    color: black;
    box-shadow: 0 4px 0 black, 0px 6px 9px 0px rgba(34, 60, 80, 0.19);
    position: relative;
    top: -80px;
}


.tariff-cards {
    border-radius: 30px;
    border: solid 1px #848EA2;
    padding: 2em;
}

.tariff-cards ul {
    list-style-position: inside;
  }

.tariff-cards li {
    list-style-type: none; 
   }
   .tariff-cards li:before {
    content: "🡢"; 
    font-size: 25px;
    margin-left: -1em;
   }

.tariff-cards .color-purple span {
    color:#7B4DDE ;
}

.tariff-cards .color-broun span {
    color:#AA3900 ;
}

.inactive-text {
    opacity: 0.7;
    text-decoration: line-through;
}

.font-size-price {
    font-size: 3em;
}

.benefit {
padding-left: 10em;
padding-right: 10em;
padding-top: 3em;
padding-bottom: 3em;

}

.benefit .left {

height: 100em;
}

.benefit .right {
    height: 100em;
}

.relevantQuestions {
    padding-top: 10em;
    padding-bottom: 10em;
}

.socialNetwork {
    padding-top: 2em;
    padding-bottom: 10em;
}

.carouselReviews {
    width: 100%;
    height: 100%;
    overflow: scroll;
    margin-bottom: 10em;
    /* scrollbar-width: none !important;
    -ms-overflow-style: none !important; */
    
}

.megamenu {
    z-index: 100;
}

.carouselReviews::-webkit-scrollbar {
    width: 0;
  }


.carouselReviews::-webkit-scrollbar-track {
    
    background-color: #e4e4e4;
  border-radius: 100px;
}

.carouselReviews::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 2px solid rgba(0, 0, 0, 0.18);
    border-left: 0;
    border-right: 0;
    background-color: #8070d4;
}

/* =================================== */

.color-change {
    color: black;
    transition: color 2s ease; /* Добавляем плавный переход цвета */
  }
  .color-change.visible {
    color: #7B4DDE;
  }
/* =================================== */
.container-сup-of-coffee {
    position: relative;
    width: 80%;
}

.background-image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

@keyframes floating {
    0% {
        transform: translate(-50%, -50%) scale(1.1) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) translateY(-10px);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1) translateY(0);
    }
}

.overlay-image {
    animation: floating 3s ease-in-out infinite;
}

/* ======Адаптив====== */
.font-size-header-text {
    font-size: 4em;
}

.m-button-header {
    margin-right: 8em;
}

.block-cup-of-coffee {
    padding-left:95px;
    padding-right:95px;
}

.title-cup-of-coffee {
    font-size: 3em; 
    text-align: center;
}

.mobile-menu-button {
    display: none;

}

.mobile-menu {
    background-color: #E7EDFA ;
}

.size-logo {
    width: 15em ;
}

.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

.hide-tablet {
    display: block;
}

.show-tablet {
    display: none;
}

.info-plate {
    width: 475px; 
    height: 146px; 
     opacity: 0.90; 
     background: white;
      border-radius: 30px; 
      border: 2px #FFB627 solid
}

.margins-quick-study-card {
    padding: 5em;
}

.padding-cup-of-coffee {
    padding-top: 150px;
}

.zero-out-four-padding {
    padding-top: 10em;
}

.zero-out-four-title {
    font-size: 3em;
}

.lesson-block-title {
    font-size: 3em;
}

.padding-video-block {
    padding-left: 4em;
    padding-right: 4em;
    padding-top: 3em;
    padding-bottom: 3em;
}