/* шапка и меню */
.header-container {
    padding: 30px 0;
    background: linear-gradient(180deg, #041A53 0%, #030923 100%);
    color: #ffffff;
}

.hdr-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
}

.logo-img {
    max-height: 80px;
    width: auto;
}

.phone-numbers {
    display: inline-grid;
    gap: 5px;
}

.header-address, .header-work-schedule, .header-email{
    font-size: 18px;
    text-align: center;
}

.phone-number {
    font-size: 18px;
    display: block;
    text-decoration: none;
    color: white;
}

.navbar-toggler {
    border: 1px solid white;
    margin: 15px 0;
    border-radius: 50px;
    padding: 9px 10px;
    width: 100%;
    flex: 0 80%;
}

.collapse {
    justify-content: center;
    align-items: center;
}

.navbar2 {
    background-color: #030923;
    color: #ffffff;
    padding: 3px 0px;
}
.navbar-nav{
    gap: 25px;
}

.col-nav{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Управление видимостью */
.visible-xs {
    display: none; /* По умолчанию скрыто */
}

.hidden-xs {
    display: block; /* По умолчанию видно */
}

@media (max-width: 767px){
    .header-address, .phone-number, .header-email, .header-work-schedule {
        font-size: 15px;
    }
    .logo-img {
        max-height: 65px;
    }
    .visible-xs {
        display: block;
    }
    .hidden-xs {
        display: none;
    }

}


/* Модальное окно */
.text-red{
    color: red;
  }
  
  .text-modal-form{
    display: flex;
    flex-direction: row;
    padding-top: 10px;
  }
  
  .text-footer{
    text-align: center;
    color: gray;
    padding: 0px 20px 20px 20px;
    font-size: 14px;
  }
  
  .btn-css{
    padding: 10px 30px 10px 30px;
    background-color: #030923;
  }
  
  .button-modal{
    display: flex;
    justify-content: center;
    padding-top: 20px;
  }
  
  .button-send{
    width: 100%;
  }

  
/* Баннер */
.banner {
  position: relative;
  max-height: 600px;
  overflow: hidden;
  background: linear-gradient(180deg, #041A53 0%, #030923 100%);
}

.banner-item {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.banner-item img {
  width: 50%;
}

.promotion-overlay {
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.overlay-content {
  margin-left: 10%;
}

.promotion-overlay h1 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* Стили для кнопки */
.button-main {
  border: none;
  outline: none;
  cursor: pointer;
  background: #0059FF;
  color: #FFFFFF;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 89, 255, 0.45);
  transition: 0.25s ease;
}

.button-main:hover {
  background: #FFFFFF;
  color: #0059FF;
  transform: scale(1.06);
}

@media (max-width: 767px) {

  .banner-item {
      position: relative;
      display: flex;
      flex-direction: column-reverse;
  }

  .banner-item img {

      width: 75%;
      max-width: 320px;
      height: auto;
  }
  .promotion-overlay {
      display: flex;
      align-items: flex-end;
      justify-content: center;

      padding: 20px;
      text-align: center;
  }

  .overlay-content {
      width: 100%;
      max-width: 100%;
      margin: 0 0 70px 0;
  }

  .promotion-overlay h1 {
      font-size: 26px;
      line-height: 1.2;
      margin-bottom: 20px;
  }

  .button-main {
      padding: 12px 24px;
      font-size: 14px;
  }
}

/* Скидки */

.benefits-block {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background: #030923;
}

.benefits-card {
  max-width: 850px;
  width: 100%;
  background: linear-gradient(135deg, #041A53 0%, #030923 100%);
  border: 1px solid rgba(0, 89, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 89, 255, 0.15);
}

.benefits-card h2 {
  margin: 0 0 30px;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  background: rgba(0, 89, 255, 0.08);
}

.benefit-item.highlight {
  background: rgba(0, 89, 255, 0.12);
  border: 1px solid rgba(0, 89, 255, 0.35);
}

.icon {
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0059FF;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
}

.benefit-item p {
  margin: 0;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.6;
}

.benefit-item strong {
  color: #0059FF;
}

@media (max-width: 768px) {
  .benefits-card {
      padding: 25px;
  }

  .benefits-card h2 {
      font-size: 26px;
  }

  .benefit-item p {
      font-size: 16px;
  }
}

/* Преимущества */

.advantages {
  padding: 90px 20px;
  background: linear-gradient(180deg, #030923 0%, #041A53 100%);
  color: #FFFFFF;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.advantages-header {
  text-align: center;
  margin-bottom: 60px;
}

.advantages-label {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(0, 89, 255, 0.15);
  border: 1px solid rgba(0, 89, 255, 0.3);
  color: #0059FF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.advantages-header h2 {
  margin: 20px 0;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
}

.advantages-header p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.7;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.adv-card {
  position: relative;
  padding: 35px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: .3s ease;
  overflow: hidden;
}

.adv-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  background: #0059FF;
  opacity: .15;
  border-radius: 50%;
  transition: .3s ease;
}

.adv-card:hover {
  transform: translateY(-8px);
  border-color: #0059FF;
  box-shadow: 0 15px 40px rgba(0,89,255,.25);
}

.adv-card:hover::before {
  transform: scale(1.5);
}

.adv-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0059FF, #041A53);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
}

.adv-card h3 {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 700;
}

.adv-card p {
  margin: 0;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .advantages-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .advantages-header h2 {
      font-size: 36px;
  }
}

@media (max-width: 768px) {
  .advantages-grid {
      grid-template-columns: 1fr;
  }

  .advantages-header h2 {
      font-size: 30px;
  }

  .adv-card {
      padding: 28px;
  }
}

.license-steps {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #041A53 0%, #030923 100%);
  overflow: hidden;
}

.license-steps .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.steps-header {
  text-align: center;
  margin-bottom: 70px;
}

.steps-header span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFFFFF;
  margin-bottom: 20px;
}

.steps-header h3 {
  color: #FFFFFF;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 20px;
}

.steps-header p {
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.steps-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
      to bottom,
      #0059FF,
      rgba(255,255,255,0.3)
  );
}

.step-card {
  position: relative;
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.step-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0059FF;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0,89,255,0.4);
  z-index: 2;
}

.step-content {
  flex: 1;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  transition: .3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.3);
}

.step-content h3 {
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}

.step-content p {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .license-steps {
      padding: 70px 15px;
  }

  .steps-timeline::before {
      left: 25px;
  }

  .step-number {
      width: 50px;
      height: 50px;
      font-size: 20px;
  }

  .step-content {
      padding: 22px;
  }

  .step-content h3 {
      font-size: 20px;
  }
}



/* Стоимость */

.price-ticket {
  background: linear-gradient(180deg, #041A53 0%, #030923 100%);
  padding: 80px 20px;
  color: #FFFFFF;
  overflow: hidden;
}

.price-ticket .title-h1 {
  text-align: center;
  margin-bottom: 45px;
}

.price-ticket .title-h1 h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0;
}

.container-season-ticket {
  max-width: 1180px;
  margin: 0 auto;
}

.container-season-ticket .row {
  justify-content: center;
  gap: 24px;
}

.product-card {
  width: 340px;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 89, 255, 0.45), transparent 45%);
  opacity: 0.9;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 32px 80px rgba(0, 89, 255, 0.35);
}

.product-details {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-name-img h2 {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.description-main {
  list-style: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.description-main li {
  position: relative;
  padding-left: 28px;
}

.description-main li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0059FF;
  background: #FFFFFF;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-bottom-details {
  margin-top: auto;
  align-items: flex-end;
  gap: 18px;
}

.product-price {
  color: #FFFFFF;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
}

.product-price small {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 600;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.button-buy {
  border: none;
  outline: none;
  cursor: pointer;
  background: #0059FF;
  color: #FFFFFF;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 89, 255, 0.45);
  transition: 0.25s ease;
}

.button-buy:hover {
  background: #FFFFFF;
  color: #0059FF;
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .price-ticket {
      padding: 55px 14px;
  }

  .product-card {
      width: 100%;
      max-width: 360px;
  }

  .product-bottom-details {
      flex-direction: column;
      align-items: flex-start;
  }
}

/*Теория*/
.teory {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #030923 0%, #041A53 100%);
  overflow: hidden;
}

.teory-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.teory-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(0,89,255,0.2);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.teory h2 {
  margin: 0 0 20px;
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 500;
}


.teory-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: #0059FF;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 60px;
  font-size: 17px;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: 0 15px 35px rgba(0,89,255,0.4);
}

.teory-btn::after {
  content: "→";
  transition: 0.3s ease;
}

.teory-btn:hover {
  background: #FFFFFF;
  color: #0059FF;
  transform: translateY(-4px);
}

.teory-btn:hover::after {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .teory {
      padding: 70px 15px;
  }

  .teory-content {
      padding: 40px 25px;
  }

  .teory p {
      font-size: 16px;
  }

  .teory-btn {
      width: 100%;
      justify-content: center;
  }
}


/* Контакты - карта */
.contacts {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(180deg, #041A53 0%, #030923 100%);
  overflow: hidden;
}

.contacts .container {
  position: relative;
  z-index: 2;
}

.contacts .row {
  align-items: stretch;
}

.contacts .col-10.col-lg-9 {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 38px 28px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.contacts h3 {
  color: #FFFFFF;
  font-size: 22px;
  margin-bottom: 10px;
}

.contacts p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contacts .lc-block:last-child p {
  margin-bottom: 0;
}

.contacts .ratio {
  height: 100%;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.contacts iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.15) contrast(1.05);
}

@media (max-width: 991px) {
  .contacts {
      padding: 70px 15px;
  }

  .contacts .col-10.col-lg-9 {
      margin-bottom: 24px;
  }

  .contacts .ratio {
      min-height: 320px;
  }
}

/*footer*/
footer {
  padding: 50px;
  background: linear-gradient(180deg, #041A53 0%, #030923 100%);
  color: white;
}

.zbull {
  text-align: center;
  font-size: 14px;
  color: #fff;
  padding: 70px 0 50px;
  line-height: 20px;
  background: #030923;
}

.footmenu1, .network, .col-ftr-cont{
  text-align: center;
}

.icons-footer{
  font-size: 30px;
  margin-top: 10px;
  padding: 0px 5px 0px 5px;
}

@media (min-width: 1600px) {
  :root {
    --wide-side-padding: clamp(20px, 3vw, 160px);
    --wide-section-padding: clamp(80px, 6vw, 220px);
    --wide-card-radius: clamp(24px, 1.5vw, 48px);
    --fs-13: clamp(13px, 0.72vw, 44px);
    --fs-15: clamp(15px, 0.83vw, 50px);
    --fs-16: clamp(16px, 0.89vw, 54px);
    --fs-17: clamp(17px, 0.94vw, 57px);
    --fs-18: clamp(18px, 1vw, 60px);
    --fs-20: clamp(20px, 1.11vw, 67px);
    --fs-22: clamp(22px, 1.22vw, 74px);
    --fs-23: clamp(23px, 1.28vw, 77px);
    --fs-24: clamp(24px, 1.33vw, 80px);
    --fs-28: clamp(28px, 1.56vw, 94px);
    --fs-30: clamp(30px, 1.67vw, 101px);
    --fs-32: clamp(32px, 1.78vw, 107px);
    --fs-35: clamp(35px, 1.94vw, 117px);
    --fs-46: clamp(46px, 2.56vw, 154px);
    --fs-52: clamp(52px, 2.89vw, 174px);
  }

  body {
    font-size: var(--fs-16);
    line-height: 1.5;
  }

  .container,
  .container-season-ticket,
  .license-steps .container {
    max-width: min(88vw, clamp(1280px, 71.11vw, 4288px));
  }

  .license-steps .container {
    max-width: min(88vw, clamp(1100px, 61.11vw, 3685px));
  }

  .container-season-ticket {
    max-width: min(88vw, clamp(1180px, 65.56vw, 3953px));
  }

  .header-container {
    padding: clamp(30px, 1.67vw, 100px) var(--wide-side-padding);
  }

  .hdr-row {
    gap: clamp(15px, 0.83vw, 50px);
  }

  .logo-img {
    max-height: clamp(80px, 4.44vw, 268px);
  }

  .header-address,
  .header-work-schedule,
  .header-email,
  .phone-number,
  .navbar-nav .nav-link {
    font-size: var(--fs-18);
  }

  .navbar2 {
    padding: clamp(3px, 0.17vw, 10px) var(--wide-side-padding);
  }

  .navbar-nav {
    gap: clamp(25px, 1.39vw, 84px);
  }

  .banner {
    max-height: none;
  }

  .banner-item {
    min-height: clamp(600px, 56.25vw, 1800px);
  }

  .promotion-overlay h1 {
    font-size: clamp(40px, 2.22vw, 134px);
    margin-bottom: clamp(30px, 1.67vw, 100px);
  }

  .overlay-content {
    margin-left: clamp(8%, 7vw, 14%);
  }

  .button-main,
  .button-buy {
    padding: clamp(13px, 0.72vw, 44px) clamp(24px, 1.33vw, 80px);
    font-size: var(--fs-15);
    box-shadow: 0 clamp(12px, 0.67vw, 40px) clamp(28px, 1.56vw, 94px) rgba(0, 89, 255, 0.45);
  }

  .benefits-block,
  .advantages,
  .license-steps,
  .price-ticket,
  .teory,
  .contacts {
    padding: var(--wide-section-padding) var(--wide-side-padding);
  }

  .benefits-card {
    max-width: min(78vw, clamp(850px, 47.22vw, 2848px));
    padding: clamp(40px, 2.22vw, 134px);
    border-radius: var(--wide-card-radius);
  }

  .benefits-card h2 {
    font-size: var(--fs-32);
    margin-bottom: clamp(30px, 1.67vw, 100px);
  }

  .benefit-item {
    gap: clamp(16px, 0.89vw, 54px);
    padding: clamp(18px, 1vw, 60px) clamp(20px, 1.11vw, 67px);
    margin-bottom: clamp(16px, 0.89vw, 54px);
  }

  .icon {
    min-width: clamp(42px, 2.33vw, 141px);
    height: clamp(42px, 2.33vw, 141px);
    font-size: var(--fs-20);
  }

  .benefit-item p,
  .advantages-header p,
  .steps-header p {
    font-size: var(--fs-18);
  }

  .advantages-label,
  .steps-header span,
  .teory-badge {
    padding: clamp(8px, 0.44vw, 27px) clamp(18px, 1vw, 60px);
    font-size: var(--fs-13);
    border-radius: var(--wide-card-radius);
  }

  .advantages-header {
    margin-bottom: clamp(60px, 3.33vw, 201px);
  }

  .advantages-header h2 {
    font-size: var(--fs-46);
  }

  .advantages-header p,
  .steps-header p {
    max-width: clamp(700px, 38.89vw, 2345px);
  }

  .advantages-grid {
    gap: clamp(25px, 1.39vw, 84px);
  }

  .adv-card {
    padding: clamp(35px, 1.94vw, 117px);
    border-radius: var(--wide-card-radius);
  }

  .adv-card::before {
    top: clamp(-201px, -3.33vw, -60px);
    right: clamp(-201px, -3.33vw, -60px);
    width: clamp(120px, 6.67vw, 402px);
    height: clamp(120px, 6.67vw, 402px);
  }

  .adv-icon {
    width: clamp(70px, 3.89vw, 235px);
    height: clamp(70px, 3.89vw, 235px);
    border-radius: clamp(18px, 1vw, 60px);
    font-size: var(--fs-30);
    margin-bottom: clamp(25px, 1.39vw, 84px);
  }

  .adv-card h3 {
    font-size: var(--fs-22);
    margin-bottom: clamp(15px, 0.83vw, 50px);
  }

  .adv-card p,
  .step-content p,
  .contacts p {
    font-size: var(--fs-16);
  }

  .steps-header {
    margin-bottom: clamp(70px, 3.89vw, 235px);
  }

  .steps-header h3 {
    font-size: var(--fs-35);
  }

  .steps-timeline {
    max-width: clamp(900px, 50vw, 3015px);
  }

  .steps-timeline::before {
    left: clamp(35px, 1.94vw, 117px);
    width: clamp(3px, 0.17vw, 10px);
  }

  .step-card {
    gap: clamp(25px, 1.39vw, 84px);
    margin-bottom: clamp(30px, 1.67vw, 100px);
  }

  .step-number {
    width: clamp(70px, 3.89vw, 235px);
    height: clamp(70px, 3.89vw, 235px);
    font-size: var(--fs-28);
  }

  .step-content {
    padding: clamp(30px, 1.67vw, 100px);
    border-radius: var(--wide-card-radius);
  }

  .step-content h3 {
    font-size: var(--fs-24);
  }

  .price-ticket .title-h1 {
    margin-bottom: clamp(45px, 2.5vw, 151px);
  }

  .price-ticket .title-h1 h1 {
    font-size: var(--fs-52);
  }

  .container-season-ticket .row {
    gap: clamp(24px, 1.33vw, 80px);
  }

  .product-card {
    width: min(26vw, clamp(340px, 18.89vw, 1139px));
    min-height: clamp(280px, 15.56vw, 938px);
    border-radius: var(--wide-card-radius);
  }

  .product-details {
    padding: clamp(30px, 1.67vw, 100px);
  }

  .product-name-img h2 {
    font-size: var(--fs-28);
    margin-bottom: clamp(22px, 1.22vw, 74px);
  }

  .description-main {
    font-size: var(--fs-16);
  }

  .description-main li {
    padding-left: clamp(28px, 1.56vw, 94px);
  }

  .description-main li::before {
    width: clamp(19px, 1.06vw, 64px);
    height: clamp(19px, 1.06vw, 64px);
    font-size: var(--fs-13);
  }

  .product-price {
    font-size: var(--fs-23);
  }

  .product-price small {
    font-size: var(--fs-15);
  }

  .teory-content {
    max-width: min(75vw, clamp(800px, 44.44vw, 2680px));
    padding: clamp(60px, 3.33vw, 201px) clamp(40px, 2.22vw, 134px);
    border-radius: var(--wide-card-radius);
  }

  .teory h2 {
    font-size: var(--fs-30);
    margin-bottom: clamp(20px, 1.11vw, 67px);
  }

  .teory-btn {
    gap: clamp(10px, 0.56vw, 34px);
    padding: clamp(16px, 0.89vw, 54px) clamp(34px, 1.89vw, 114px);
    font-size: var(--fs-17);
  }

  .contacts .col-10.col-lg-9 {
    padding: clamp(38px, 2.11vw, 127px) clamp(28px, 1.56vw, 94px) !important;
    border-radius: var(--wide-card-radius);
  }

  .contacts h3 {
    font-size: var(--fs-22);
  }

  .contacts .ratio {
    min-height: clamp(420px, 23.33vw, 1407px);
    border-radius: var(--wide-card-radius);
  }

  footer {
    padding: clamp(50px, 2.78vw, 168px);
    font-size: var(--fs-16);
  }

  .icons-footer {
    font-size: var(--fs-30);
  }
}
