/* styles.css */

* {
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #002060;
  background: #f7f9fc;
  scroll-behavior: smooth;
}

.top-bar {
  background: #4F81FF;
  background: -o-linear-gradient(275deg, rgba(79, 129, 255, 1) 0%, rgba(49, 104, 244, 1) 33%, rgba(44, 74, 152, 1) 91%);
  background: linear-gradient(175deg, rgba(79, 129, 255, 1) 0%, rgba(49, 104, 244, 1) 33%, rgba(44, 74, 152, 1) 91%);
  color: white;
  padding: 15px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 103px;
  border-radius: 100px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 4px 15px 0 rgba(44, 74, 152, 0.35);
          box-shadow: 0 4px 15px 0 rgba(44, 74, 152, 0.35);
  z-index: 99;
  position: relative;
  max-width: 1387px;
  gap: 40px;
}

.burger svg {
  width: 32px;
    height: auto;
}

.logo {
  background: #fff;
  border-radius: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 33px;
}

.main-screen {
  padding-top: 28px;
  background-image: url(../img/bg.png);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.main-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(350deg, rgba(255, 255, 255, 100%) 0%, rgba(255, 255, 255, 15%) 100%);
  background: linear-gradient(100deg, rgba(255, 255, 255, 100%) 0%, rgba(255, 255, 255, 15%) 100%);
  z-index: 1;
}

.main-bg-light {
  position: absolute;
  top: 70px;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 105%;
  height: 1000px;
  rotate: -1deg;
}

.main-screen-after {
  position: relative;
  height: 1px;
  z-index: 10;
}

.main-screen-wrapper {
  overflow: hidden;
}



.hero {
  text-align: center;
  padding: 40px 69px;
  min-height: 869px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  z-index: 2;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1525px;
  margin: 0 auto;
}



.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-content-right, 
.hero-content-left {
  width: 50%;
}

.hero-content-left {
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  z-index: 10;
}

.subtitle {
  font-size: 40px;
  font-weight: bold;
  margin: 0;
  color: #2C4A98;
  text-transform: uppercase;
  text-align: left;
  line-height: 36px;
}

.title {
  font-size: 95px;
  font-weight: 800;
  margin: 0;
  text-align: left;
  letter-spacing: -1px;
  line-height: 80px;
  background: -o-linear-gradient(335deg, #3168F4, #2C4A98);
  background: linear-gradient(115deg, #3168F4, #2C4A98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  z-index: 20;
  position: relative;
}



.desc {
  max-width: 600px;
  font-size: 22.5px;
  color: #2C4A98;
  text-align: left;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.product-box {
  width: 120px;
  height: 80px;
  background: #e3e9f3;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  z-index: 3;
  position: relative;
}

.product-box img {
  z-index: 2;
}

.product-box .product-box-col {
  position: absolute;
  top: 76px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
  opacity: 0.85;
  mix-blend-mode: luminosity;
}

.product-box.first {
  -webkit-transform: translateY(74px) translateX(-40px);
      -ms-transform: translateY(74px) translateX(-40px);
          transform: translateY(74px) translateX(-40px);
}

.product-box.secondary {
  z-index: 2;
}

.product-box.third {
  z-index: 1;
  -webkit-transform: translateY(-79px) translateX(51px);
      -ms-transform: translateY(-79px) translateX(51px);
          transform: translateY(-79px) translateX(51px);
}

.info {
  text-align: center;
  z-index: 15;
  position: relative;
  padding: 50px 20px;
}



.bgrect-wrapper {
  background: url(../img/bgrect.webp);
  background-position-y: 1000px;
  background-size: 100%;
  overflow: hidden;
}

.bgrect-circle {
  position: absolute;
  top: 0;
  left: 30px;
  -webkit-transform: translateY(-65%);
      -ms-transform: translateY(-65%);
          transform: translateY(-65%);
  max-width: 100%;
  width: 1680px;
  min-width: 1680px;
  mix-blend-mode: screen;
}

.bgrect {
  position: absolute;
  top: 1000px;
  left: 0;
  width: 100%;
}

.bgrect.two {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

.bgrect.three {
  -webkit-transform: translateY(200%);
      -ms-transform: translateY(200%);
          transform: translateY(200%);
}

.main-bg-blur {
  mix-blend-mode: soft-light;
  position: absolute;
  top: -401px;
}

.main-bg-splash {
  mix-blend-mode: screen;
  position: absolute;
  right: 40%;
  opacity: 1;
  top: 6px;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

.main-bg-appolon {
  position: absolute;
  right: 390px;
  top: -75px;
  z-index: 5;
  mix-blend-mode: luminosity;
}

.main-title {
  text-align: center;
    font-size: 80px;
    line-height: 75%;
}

.main-title span {
  font-size: 48px;
  text-transform: uppercase;
}

.sub-desc {
  font-size: 36px;
  color: #2C4A98;
  font-weight: 500;
  margin: 20px 0;
  margin-bottom: 35px;
}

.sub-desc sup {
  font-size: 24px;
  font-weight: 600;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  max-width: 1270px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.card {
  background: white;
    border-radius: 18px;
    padding: 20px;
    -webkit-box-shadow: 0 4.77px 11.93px rgba(133, 186, 255, 0.5);
            box-shadow: 0 4.77px 11.93px rgba(133, 186, 255, 0.5);
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    color: #2C4A98;
    font-size: 24px;
    width: calc(33.3333% - 33.3333px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.card p {
  margin: 0;
}

.card sup {
  font-size: 14px;
}

.check {
  color: #1b65d3;
  font-weight: bold;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}


/* Общие заголовки */
.title.main-title.section-title {
  margin-top: 100px;
  margin-bottom: 87px;
  line-height: 100%;
}

.leaders .title.main-title.section-title {
	padding-top: 37px;
}

.title.main-title.ref {
  line-height: 70%;
  margin-bottom: 87px;
}

.title.main-title.ref span br {
  display: none;
}

.section-title span {
  font-size: 18px;
  font-weight: normal;
  display: block;
  color: #222;
}

/* Лидеры проекта */
.leaders-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  max-width: 1270px;
  margin: 0 auto;
}

.leaders {
  position: relative;
}

.title.main-title.section-title {
  padding-top: 87px;
  margin-top: 0;
}

.leader-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #DDECFF;
  border-radius: 27px;
  padding: 10px;
  padding-top: 140px;
  -webkit-box-shadow: 0 7.02px 17.55px rgba(49,104,244,0.5);
          box-shadow: 0 7.02px 17.55px rgba(49,104,244,0.5);
  text-align: center;
  max-width: 279px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.leader-card .photo {
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.leader-card .fadeev {
  top: -38px;
}

.leader-card .ezhov {
  top: -38px;
}

.leader-card .galstyan {  
  top: -27px;
}

.leader-card h3 {
  font-size: 24px;
  margin: 0px;
  color: #2C4A98;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #4F81FF;
  margin-bottom: 15px;
}

.leader-card h3 span {
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
}

.leader-card p {
  font-size: 18px;
  color: #4F81FF;
  text-align: left;
  line-height: 100%;
  margin: 0;
}

.leader-info {
  background: #fff;
  padding: 20px 15px;
  border-radius: 18px;
  z-index: 3;
  position: relative;
}

/* Видео */
.videos-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 1270px;
  margin: 0 auto;
  margin-top: -37px;
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 20px;
}

.videos {
  margin-bottom: 160px;
}

.video-box {
  width: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: bold;
  -webkit-box-shadow: 0 7.41px 18.53px rgba(49, 104, 244, 0.5);
          box-shadow: 0 7.41px 18.53px rgba(49, 104, 244, 0.5);
  text-align: center;
  aspect-ratio: 1280 / 760;
}

.video-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* Слайдер (Видео) */
.videos-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: transform;
  gap: 50px;
}

.videos-track .video-box {
  width: calc(50% - 25px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 25px);
          flex: 0 0 calc(50% - 25px);
}

.videos-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: -5px;
}

.videos-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #D9D9D9;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.videos-dot.active {
  background: -o-radial-gradient(center, circle, rgba(255,255,255,0.8) 0%, rgba(200,224,255,0.8) 100%);
  background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, rgba(200,224,255,0.8) 100%);
  -webkit-box-shadow: 0 0 0 6px #3066F0;
          box-shadow: 0 0 0 6px #3066F0;
  border: none;
  width: 14px;
  height: 14px;
}

.videos-dot:focus-visible {
  outline: 2px solid #1D3D8E;
  outline-offset: 2px;
}

/* Материалы */
.materials {
  max-width: 1100px;
  margin: 0 auto;
}

.materials .btn {
    padding: 0 30px;
    white-space: nowrap;
    font-size: 18px;
    gap: 15px;
}

.materials-wrapper {
  background: #fff;
  position: relative;
  padding: 85px 140px;
  -webkit-box-shadow: 0 14.14px 35.36px rgba(200, 224, 255, 0.70);
          box-shadow: 0 14.14px 35.36px rgba(200, 224, 255, 0.70);
  min-height: 832px;
}

.col2-left {
  position: absolute;
  top: -65px;
  left: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-filter: drop-shadow(0 14.14px 35.36px rgba(200, 224, 255, 0.70));
          filter: drop-shadow(0 14.14px 35.36px rgba(200, 224, 255, 0.70));
}

.col2-right {
  position: absolute;
  top: -65px;
  right: 0;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-filter: drop-shadow(0 14.14px 35.36px rgba(200, 224, 255, 0.70));
          filter: drop-shadow(0 14.14px 35.36px rgba(200, 224, 255, 0.70));
}

.material-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: white;
  border-radius: 12px;
}

.material-item.first {
  margin-top: 55px;
  margin-bottom: 127px;
}

.material-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}

.material-info strong {
  display: block;
  color: #2C4A98;
  font-size: 36px;
}

.material-item p {
  font-size: 24px;
  color: #4F81FF;
  font-weight: 600;
  margin: 0;
  line-height: 100%;
  max-width: 460px;
}

.material-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.dot {
  width: 53px;
  height: 53px;
  min-width: 53px;
  min-height: 53px;
  background: -o-linear-gradient(335deg, #3168F4, #2C4A98);
  background: linear-gradient(115deg, #3168F4, #2C4A98);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dot-inner {
  width: 30px;
  height: 30px;
  background: -o-radial-gradient(center, circle, #FFFFFF 0%, #C8E0FF 100%);
  background: radial-gradient(circle at center, #FFFFFF 0%, #C8E0FF 100%);
  border-radius: 50%;
  display: block;
}

.btn {
  background: -webkit-gradient(linear, left top, right top, from(#1b65d3), to(#0044cc));
  background: -o-linear-gradient(left, #1b65d3, #0044cc);
  background: linear-gradient(90deg, #1b65d3, #0044cc);
  border-radius: 100px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  width: 280px;
  height: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  font-size: 24px;
  font-weight: 600;
  -webkit-box-shadow: 0 14.14px 53.04px rgba(44, 74, 152, 0.35);
          box-shadow: 0 14.14px 53.04px rgba(44, 74, 152, 0.35);
  position: relative;
  top: 7px;
}

.btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#0044cc), to(#1b65d3));
  background: -o-linear-gradient(left, #0044cc, #1b65d3);
  background: linear-gradient(90deg, #0044cc, #1b65d3);
}

/* Преимущества */
.features {
  padding: 0px 20px;
}

.features .title.main-title.section-title {
  margin-top: 0;
  margin-bottom: 87px;
}

.feature-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1270px;
  margin: 0 auto;
  z-index: 5;
  position: relative;
}

.feature-text-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 30px;
  text-align: left;
}

.feature-card {
  background: #ffffff;
  border-radius: 38px;
  padding: 25px;
  -webkit-box-shadow: 0 9.95px 24.88px rgba(49, 104, 244, 0.5);
          box-shadow: 0 9.95px 24.88px rgba(49, 104, 244, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.feature-icon {
  color: #1b65d3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 94px;
}

.feature-text {
  margin: 0;
  color: #2C4A98;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
}

.feature-text sup {
  font-size: 14px;
  line-height: 100%;
}



.masked {
  width: 400px;
  height: 250px;
  background: -o-linear-gradient(315deg, #ff512f, #dd2476);
  background: linear-gradient(135deg, #ff512f, #dd2476); /* фон */
  
  /* маска */
  -webkit-mask-image: url('https://upload.wikimedia.org/wikipedia/commons/3/3f/Mask_example.png');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url('https://upload.wikimedia.org/wikipedia/commons/3/3f/Mask_example.png');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}












/* Адаптивность */
@media (max-width: 1024px) {
  .feature-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .feature-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .section-title {
    margin: 30px 0 20px;
  }
}

/* Проверить наличие и цены */
.availability {
  padding: 10px 20px 80px;
  z-index: 3;
    position: relative;
}

.section-title--xl {
  font-size: 40px;
  line-height: 1.1;
}

.qr-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 10px auto 75px;
}

.qr-card {
  background: #ffffff;
  border-radius: 28px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 68, 204, 0.15);
          box-shadow: 0 10px 30px rgba(0, 68, 204, 0.15);
  padding: 30px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 257px;
  max-width: 257px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.qr-brand {
  font-weight: 700;
  color: #17305a;
}

.qr-card-tg {
  padding: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
}


.qr-pointer {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e6eefc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1b65d3;
}

.qr-pointer.small { width: 28px; height: 28px; }

.telegram-banner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(200, 224, 255, 0.5);
  -webkit-box-shadow: 0 2px 10px rgba(49, 104, 244, 0.6);
          box-shadow: 0 2px 10px rgba(49, 104, 244, 0.6);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
  padding-bottom: 30px;
  gap: 15px;
}

.qr-card-wrapepr {
  position: relative;
  max-width: 257px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.qr-poiner-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qr-card-wrapepr.tg .qr-poiner-icon {
  width: 28.5px;
  height: 28.5px;
}

/* QR-card circular hole mask driven by `.qr-pointer.masked` or `.masked` */
.qr-card { position: relative; overflow: visible; }

/* Apply mask only when marker exists */
.qr-card:has(.qr-pointer),
.qr-card:has(.masked) {
  /* radius controls both mask and marker size */
  --hole-r: 32px; /* 64x64 hole */
  -webkit-mask-image: radial-gradient(
    circle var(--hole-r) at 50% 100%,
    transparent calc(var(--hole-r) - 0.5px),
    #000 var(--hole-r)
  );
  mask-image: radial-gradient(
    circle var(--hole-r) at 50% 100%,
    transparent calc(var(--hole-r) - 0.5px),
    #000 var(--hole-r)
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.qr-card-tg:has(.qr-pointer),
.qr-card-tg:has(.masked) {
  /* radius controls both mask and marker size */
  --hole-r: 18px; /* 64x64 hole */
  -webkit-mask-image: radial-gradient(
    circle var(--hole-r) at 50% 100%,
    transparent calc(var(--hole-r) - 0.5px),
    #000 var(--hole-r)
  );
  mask-image: radial-gradient(
    circle var(--hole-r) at 50% 100%,
    transparent calc(var(--hole-r) - 0.5px),
    #000 var(--hole-r)
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.qr-card-tg .qr-pointer,
.qr-card-tg .masked {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: calc(var(--hole-r) * 2);
  height: calc(var(--hole-r) * 2);
  border-radius: 50%;
  background: transparent !important;
  color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
}

/* Marker element: keep in DOM for :has(), but invisible and positioned */
.qr-card .qr-pointer,
.qr-card .masked {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: calc(var(--hole-r) * 2);
  height: calc(var(--hole-r) * 2);
  border-radius: 50%;
  background: transparent !important;
  color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
}

.telegram-left { 
  display: -webkit-box; 
  display: -ms-flexbox; 
  display: flex; 
  -webkit-box-align: center; 
      -ms-flex-align: center; 
          align-items: center; 
  gap: 15px; 
  margin-top: 15px;
}

.tg-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: -o-linear-gradient(315deg, #1b65d3, #0044cc);
  background: linear-gradient(135deg, #1b65d3, #0044cc);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tg-text span { 
  display: -webkit-box; 
  display: -ms-flexbox; 
  display: flex; 
  -webkit-box-orient: vertical; 
  -webkit-box-direction: normal; 
      -ms-flex-direction: column; 
          flex-direction: column; 
  min-width: 500px;
  font-size: 24px;
  color: #2C4A98;
  line-height: 100%;
  font-weight: 500;
}

.tg-text strong { color: #17305a; }

.telegram-right { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 10px; }


.blur-bg {
  width: 450px;
  height: 415px;
  background: #ffffff;
  -webkit-filter: blur(44px);
          filter: blur(44px);
  position: absolute;
  bottom: 133px;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}


@media (max-width: 960px) {
  .qr-cards { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; }
}



/* References & Legal */
.references {
  padding: 40px 20px 80px;
  z-index: 4;
  position: relative;
}

.footer-appalon {
  position: absolute;
  right: 0;
  z-index: 1;
  bottom: 0;
}

.refs-wrapper {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 10px rgba(133, 186, 255, 0.5);
          box-shadow: 0 4px 10px rgba(133, 186, 255, 0.5);
  padding: 50px 90px 70px 50px;
  max-width: 1270px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 100px;
  z-index: 5;
  position: relative;
}

.refs-top {
  margin: 0 auto 43px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.abbr-list,
.notes-list {
  margin: 0;
  padding-left: 18px;
  color: #2C4A98;
  font-size: 20px;
  list-style: none;
  padding: 0;
}

.refs-list {
  max-width: 1270px;
  margin: 0 auto 24px;
  color: #2C4A98;
  font-size: 20px;
  line-height: 100%;
  padding-left: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

/* ссылки в списке литературы как обычный текст + перенос длинных урлов */
.refs-link {
  color: inherit;
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.btn-desc { 
  display: -webkit-box; 
  display: -ms-flexbox; 
  display: flex;
}

.btn-mob {
  display: none;
}

.feature-text-sub div:first-child {
  min-width: 134px;
  max-width: 144px;
}

.feature-text-sub div:last-child {
  min-width: 139px;
  max-width: 164px;
}


.footer {
  background: #4F81FF;
  background: -webkit-gradient(linear, left top, right top, from(rgba(79, 129, 255, 1)), color-stop(33%, rgba(49, 104, 244, 1)), to(rgba(44, 74, 152, 1)));
  background: -o-linear-gradient(left, rgba(79, 129, 255, 1) 0%, rgba(49, 104, 244, 1) 33%, rgba(44, 74, 152, 1) 100%);
  background: linear-gradient(90deg, rgba(79, 129, 255, 1) 0%, rgba(49, 104, 244, 1) 33%, rgba(44, 74, 152, 1) 100%);
  padding: 50px 20px;
  z-index: 4;
  position: relative;
}

.sub-desc br {
  display: none;
}

.legal-boxes {
  max-width: 1270px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 20px 3fr;
  grid-template-columns: 2fr 3fr;
  gap: 20px;
}

.org-info, .rx-warning {
  color: #fff;
  font-size: 20px;
  max-width: 408px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.teve-logo {
  max-width: 302px;
  pointer-events: none;
}

.rx-warning {
  max-width: 100%;
  margin-left: auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.org-info p, .rx-warning p {
  margin: 0;
}

.org-info a {
  text-decoration: none;
  color: #fff;
}

.top-bar-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.top-bar-links a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
}

/* Mobile menu trigger */
.burger {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  box-sizing: border-box;
}

/* Fullscreen mobile menu overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-105%);
      -ms-transform: translateY(-105%);
          transform: translateY(-105%);
  width: 100vw;
  height: 100vh;
  background: #DFECFA;
  z-index: 999;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.mobile-menu__close {
  position: absolute;
  right: 24px;
  top: 20px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu__nav {
  position: absolute;
  left: 40px;
  top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.mobile-menu__nav a {
  color: rgba(32, 80, 202, 1);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

body.no-scroll { overflow: hidden; }

/* Switch to mobile header under 1330px */
@media (max-width: 1330px) {
  .top-bar-links { display: none; }
  .burger { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; justify-content: center; align-items: center;}
}

@media (max-width: 960px) {
  .refs-top { -ms-grid-columns: 1fr; grid-template-columns: 1fr; }
}

@media (min-width: 1700px) {
  .bgrect-circle {
    left: auto;
    right: -40px;
}
}

@media (max-width: 1440px){
  .top-bar {
    margin: 0 20px;
  }

  .hero-content-left {
    padding: 0;
    min-width: 686px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .hero {
    padding: 40px 20px;
  }

  .feature-card {
    min-width: 390px;
    max-width: 390px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .feature-grid {
    -ms-grid-columns: (390px)[2];
    grid-template-columns: repeat(2, 390px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

}

@media (max-width: 1310px){
  .main-bg-appolon {
    right: 281px;
}

.products {
  position: relative;
  right: 8%;
}

.card {
  width: calc(50% - 25px);
}

.leaders-grid {
  padding: 0 20px;
}

.materials {
  padding: 0 90px;
}

.material-item {
  gap: 20px;
}



}

@media (max-width: 1250px){
  .hero-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 175px;
}

.main-bg-appolon {
  left: -396px;
  right: auto;
  z-index: 1;
}

.hero-content-left {
  margin-top: 60px;
}

.hero {
  min-height: 920px;
}

.leaders-grid {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 600px;
  gap: 30px;
  row-gap: 50px;
}

.leader-card {
  min-width: 279px;
}

.materials-wrapper {
  padding: 85px;

}

.title.main-title.ref span {
  line-height: 20px;
}

.title.main-title.ref span br {
  display: block;
}

}

@media (max-width: 1100px){
.materials .main-title {
  font-size: 60px;
  line-height: 69%;
}

.materials .main-title span {
  font-size: 35px;
}
}

@media (max-width: 1000px){
  .top-bar {
    padding: 10px;
    height: 50px;
}

 .btn {
    padding: 0 15px;
        font-size: 18px;
        white-space: nowrap;
}

.materials .btn {
    padding: 0 15px;
}


.logo {
  padding: 0 11px;
}

.logo img {
  width: 33px;
}

.hero-content-left {
  margin-top: 200px;
}

.hero {
  min-height: 1020px;
}

.products {
  right: auto;
}

.card {
  width: 100%;
}

.cards {
  gap: 25px;
}

.title.main-title.section-title {
  padding-left: 20px;
  padding-right: 20px;
}

.videos-track .video-box {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.btn {
  width: 100%;
  gap: 10px;
  height: 50px;
  padding: 0 25px;
  font-size: 18px;
}

.material-item p {
  font-size: 18px;
}

.dot {
  width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
}

.dot-inner {
  width: 20px;
  height: 20px;
}

.material-info {
  gap: 15px;
}

.material-info strong {
  font-size: 20px;
}

.feature-grid {
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-card {
  min-width: 0px;
  max-width: 100%;
}

.feature-text-sub div:first-child {
  min-width: 134px;
  max-width: 144px;
}

.feature-text-sub div:last-child {
  min-width: 139px;
  max-width: 164px;
}

.availability .title {
  font-size: 50px;
}

.qr-cards {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.title.main-title.ref {
  font-size: 70px;
  line-height: 62%;
  padding: 10px 0;
}

.title.main-title.ref span {
  font-size: 40px;
}

.org-info, .rx-warning {
  font-size: 18px;
}

.org-info p {
  min-width: 323px;
}

.burger {
  padding: 5px;
}

}

@media (max-width: 840px) {
  .materials .main-title span {
    font-size: 29px;
  }

  .materials .main-title {
    font-size: 57px;
    line-height: 69%;
  }

  .feature-text {
    font-size: 20px;
  }

  .feature-text-sub div:first-child {
    min-width: 129px;
    max-width: 60px;
}

.feature-text-sub div:last-child {
  min-width: 132px;
  max-width: 139px;
}

.tg-text span {
  min-width: 0;
}

.tg-text span br {
  display: none;
} 

.title.main-title.ref {
  font-size: 60px;
  line-height: 58%;
}

.title.main-title.ref span {
  font-size: 30px;
}

.title.main-title.ref span {
  line-height: 0;
}

.org-info, .rx-warning {
  font-size: 15px;
}

.legal-boxes {
  gap: 15px;
}

}


@media (max-width: 750px) {
  .subtitle {
    font-size: 35px;
    text-align: center;
  }

  .hero-content-left {
    min-width: 0;
    width: 100%;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .desc {
    font-size: 20px;
    text-align: center;
  }

  .title {
    font-size: 80px;
    text-align: center;
    }

  .product-box img {
    width: 180px;
  }

  .product-box .product-box-col {
    width: 200px;
  }

  .product-box {
    width: 40px;
  }

  .product-box {
    height: 100px;
    background: none;
  }

  .product-box.first {
    -webkit-transform: translateY(45px) translateX(-40px);
        -ms-transform: translateY(45px) translateX(-40px);
            transform: translateY(45px) translateX(-40px);
}

.product-box.third {
  z-index: 1;
  -webkit-transform: translateY(-47px) translateX(51px);
      -ms-transform: translateY(-47px) translateX(51px);
          transform: translateY(-47px) translateX(51px);
}

.hero {
  min-height: 950px;
}

.leader-card {
  min-width: 0;
  max-width: calc(50% - 15px);
}

.col2-left, .col2-right {
  width: 145px;
}

.materials {
  padding: 0 60px;
}

.materials-wrapper {
  min-height: 520px;
  padding: 85px 60px;
}

.feature-text {
  font-size: 15px;
}

.feature-text-sub div:first-child {
  min-width: 95px;
  max-width: 101px;
}

.feature-text-sub div:last-child {
  min-width: 106px;
  max-width: 106px;
}

.title.main-title.ref span {
  font-size: 27px;
}

.title.main-title.ref {
  font-size: 50px;
  line-height: 58%;
}

.org-info, .rx-warning {
  font-size: 12px;
}

.org-info p {
  min-width: 223px;
}

}

@media (max-width: 650px) {
  .col2-left, .col2-right {
    width: 120px;
    top: -41px;
}

.materials {
  padding: 0 45px;
}

.materials-wrapper {
  min-height: 500px;
  padding: 50px 48px;
}


.material-item.first {
  margin-bottom: 70px;
}

}



@media (max-width: 600px) {
	
 .btn {
    padding: 0 15px;
        font-size: 14px;
        white-space: nowrap;
}

  .top-bar {
    height: 40px;
    padding: 4px 10px;
    margin: 0 15px;
    align-items: center;
  }

.logo {
	max-height: 22px;
    height: 22px;
    width: 55px;
    max-width: 55px;
    box-sizing: border-box;
}

  .main-screen {
    padding-top: 10px;
  }

  .burger svg {
	width: 18px;
    height: 16px;
    scale: 1.15;
}

  .main-bg-appolon {
    width: 438px;
    left: -174px;
    top: 0;
}

  .hero-content {
    gap: 50px;
  }

  .subtitle {
    font-size: 19px;
    text-align: left;
    line-height: 20px;
  }

  .title {
    font-size: 46px;
    line-height: 45px;
  }

  .desc {
    font-size: 14px;
    text-align: left;
  }

  .hero-content-left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 130px;
  }

  .product-box .product-box-col {
    width: 170px;
}

.product-box img {
  width: 150px;
}

.product-box {
  width: 22px;
}

.product-box.first {
  -webkit-transform: translateY(40px) translateX(-40px);
      -ms-transform: translateY(40px) translateX(-40px);
          transform: translateY(40px) translateX(-40px);
}

.product-box.third {
  -webkit-transform: translateY(-39px) translateX(51px);
      -ms-transform: translateY(-39px) translateX(51px);
          transform: translateY(-39px) translateX(51px);
}

.hero {
  min-height: 668px;
}


.sub-desc {
  font-size: 14px;
  line-height: 10px;
  margin-top: 10px;
}

.sub-desc sup {
  font-size: 9px;
  
}

.title.main-title {
  font-size: 28px;
  line-height: 30px;
}

.title.main-title span {
  font-size: 28px;
  line-height: 23px;
}

.info {
  padding-top: 20px;
  margin-top: -100px;
  
}

.sub-desc br {
  display: block;
}

.card {
  font-size: 14px;
  padding: 10px;
  gap: 10px;
}

.cards {
  gap: 10px;
}

.card sup {
  font-size: 8px;
}

.check svg {
  width: 21px;
  height: 21px;
}

.leader-card {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
}


.leader-card h3, .leader-card h3 span {
  font-size: 12px;
}

.leader-card h3 {
  line-height: 15px;
  border-bottom: 1px solid #4F81FF;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.leader-card p {
  font-size: 10px;
}

.leader-info {
  padding: 10px;
  padding-bottom: 20px;
}

.leaders-grid {
  gap: 15px;
  row-gap: 25px;
  margin-bottom: 50px;
}

.leader-card {
  min-width: 0;
  max-width: calc(50% - 7.5px);
  padding-top: 80px;
}

.leader-card .photo {
  width: 120px;
  top: -12px;
}

.leader-card .ezhov {
  top: -20px;
}

.leader-card .fadeev {
  top: -28px;
}

.leader-card .galstyan {
  top: -23px;
}

.title.main-title.section-title {
  margin-top: 0px;
  margin-bottom: 40px;
  padding-top: 20px;
}

.videos-dot {
  width: 10px;
  height: 10px;
}

.videos-dot.active {
  width: 8px;
  height: 8px;
  -webkit-box-shadow: 0 0 0 4px #3066F0;
          box-shadow: 0 0 0 4px #3066F0;
}

.videos-dots {
  gap: 6px;
}

.videos-grid {
  padding-top: 20px;
}

.materials-wrapper {
  padding: 25px 30px;
  min-height: 250px;
  padding-bottom: 30px;
}

.materials .main-title {
  font-size: 28px;
  line-height: 25px;
}

.materials .main-title span {
  font-size: 20px;
}

.dot {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
}

.dot-inner {
  width: 9px;
  height: 9px;
}

.material-info strong {
  font-size: 14px;
}

.material-item p {
  font-size: 12px;
}

.material-info {
  gap: 10px;
}

.material-content {
  gap: 10px;
}

.btn {
  width: 100%;
  gap: 10px;
  height: 27px;
  padding: 0 12px;
  font-size: 12px;
  -webkit-box-shadow: 0 4px 15px rgba(44, 74, 152, 0.35);
          box-shadow: 0 4px 15px rgba(44, 74, 152, 0.35);
  top: 0;
}

.btn-desc {
  display: none;
}

.btn-mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.material-item.first {
  margin-bottom: 21px;
  margin-top: 30px;
}

.col2-left, .col2-right {
  width: 60px;
  top: -17px;
}

.videos {
  margin-bottom: 62px;
}

.materials {
  padding: 0 18px;
  margin-bottom: 20px
}

.feature-grid {
  row-gap: 10px;
}

.feature-card {
  padding: 15px;
  gap: 0;
  border-radius: 15px;
}

.feature-text-sub {
  margin-top: 15px;
  gap: 10px;
}

.feature-text {
  font-size: 13px;
}

.feature-text sup {
  font-size: 9px;
}

.feature-text-sub div:first-child {
  min-width: 0;
  max-width: 85px;
}

.feature-text-sub div:last-child {
  min-width: 0;
  max-width: 95px;
}

.features .title.main-title.section-title {
  margin-bottom: 20px;
}

.telegram-left svg {
  min-width: 35px;
  height: 35px;
  max-width: 35px;
}

.tg-text span {
  font-size: 14px;
}

.telegram-banner .qr-image svg {
  width: 70px;
  height: auto;
}

.qr-card-tg {
  padding: 10px;
}

.qr-card-tg:has(.qr-pointer), .qr-card-tg:has(.masked) {
  --hole-r: 10px;
}

.qr-card-wrapepr.tg .qr-poiner-icon {
  width: 16px;
  height: 16px;
}

.telegram-banner .qr-poiner-icon svg {
  width: 8px;
}

.telegram-banner {
  padding: 10px;
  padding-left: 15px;
  gap: 10px;
}

.qr-brand svg {
  width: 100%;
}

.availability .title.section-title {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;

}

.refs-wrapper {
  padding: 21px;
  margin-bottom: 0;
}

.abbr-list, .notes-list, .refs-list {
  font-size: 12px;
}

.title.main-title.ref {
  font-size: 28px;
  line-height: 80%;
}

.title.main-title.ref span {
  font-size: 20px;
}

.refs-list {
  gap: 15px;
  padding-left: 14px;
}

.refs-top {
  margin-bottom: 25px;
  gap: 25px;
}

.title.main-title.ref {
  margin-bottom: 20px;
}

.references {
  padding-top: 0;
  padding-bottom: 40px;
}

.org-info, .rx-warning {
  font-size: 10px;
  gap: 10px;
}

.teve-logo {
  max-width: 253px;
}

.org-info p {
  max-width: 185px;
  min-width: 185px;
} 

.legal-boxes {
  gap: 10px;
}

.footer {
  padding: 15px;
}

.footer-appalon {
  position: absolute;
  z-index: 1;
  bottom: 0;
  height: 90%;
}

.features {
  position: relative;
}

.bgrect-circle {
  position: absolute;
  top: 100%;
  right: -254px;
  -webkit-transform: translateY(-30%);
      -ms-transform: translateY(-30%);
          transform: translateY(-30%);
  max-width: 100%;
  width: 1680px;
  min-width: 1680px;
  left: auto;
  mix-blend-mode: screen;
}

.burger {
  padding: 3px 6px;
}

.mobile-menu__nav a {
  font-size: 18px;
}


.materials .btn {
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
    gap: 7px;
}

}

@media (max-width: 500px) {
  .feature-text {
    font-size: 10px;
}

.feature-card {
  padding: 10px 8px;
  gap: 5px;
}

.feature-text-sub {
  gap: 5px;
  margin-top: 9px;
}

.feature-text-sub div:first-child {
  max-width: 65px;
}

.feature-text-sub div:last-child {
  max-width: 67px;
}

.feature-text sup {
  font-size: 7px;
}

.feature-icon {
  width: 30px;
  height: 30px;
  min-height: 0;;
}

.org-info p {
  max-width: 146px;
  min-width: 146px;
} 

.org-info, .rx-warning {
  font-size: 8px;
  gap: 10px;
}

.teve-logo {
  max-width: 200px;
}

.mobile-menu__nav {
  gap: 15px;
}


}


@media (max-width: 400px) {
.leader-card h3 {
  letter-spacing: -0.8px;
}

.leader-info {
  padding: 8px;
  padding-bottom: 15px;
}

.materials .main-title span {
  font-size: 18px;
}

.materials .main-title {
  line-height: 21px;
}

.feature-text-sub div:first-child {
  max-width: 61px;
}

.feature-grid {
  gap: 10px;
}

.feature-text-sub div:last-child {
  font-size: 9px;
  max-width: 60px;
}

.org-info, .rx-warning {
  font-size: 7px;
}

.teve-logo {
  max-width: 160px;
}

.footer-appalon {
  position: absolute;
  z-index: 1;
  bottom: 0;
  height: 90%;
  left: -137%;
}

.col2-left, .col2-right {
    width: 63px;
    top: -17px;
}

}