@charset "UTF-8";

@font-face {
  font-family: "Involve";
  font-weight: 400;
  src: url(./../fonts/Involve/Involve-Regular.ttf);
}

@font-face {
  font-family: "Involve";
  font-weight: 500;
  src: url(./../fonts/Involve/Involve-Medium.ttf);
}

@font-face {
  font-family: "Involve";
  font-weight: 600;
  src: url(./../fonts/Involve/Involve-SemiBold.ttf);
}

@font-face {
  font-family: "Involve";
  font-weight: 700;
  src: url(./../fonts/Involve/Involve-Bold.ttf);
}

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

::selection {
  text-shadow: none;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --white: #fff;
  --main-col: #099BA8;
  --main-dark: #0C6B73;
  --main-darker: #00063f;
  --main-mostDark: #282c4b;
  --orange: #f8ae08;
  --yellow: #fce67e;
  --brown: #523e25;
}

::-webkit-scrollbar {
  width: 10px;
  height: 4px;
  background-color: #00aaff33;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(86.06deg, #f7e79b -9.29%, #f5c365 42.38%, #f8a504 89.75%, #fcfde9 113.74%);
}

@keyframes ani {
  0% {
    --deg: 90deg;
  }

  100% {
    --deg: 360deg;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(245, 195, 101, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
}

body {
  margin: 0px;
  line-height: 1.25;
  font-family: "Involve", sans-serif;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 140%;
  color: #384243;
  font-weight: 400;
  font-variant-numeric: lining-nums proportional-nums;
  font-display: block;
  overflow-x: hidden;


}

hr {
  margin: 1rem 0px;
  color: inherit;
  border: 0px;
  opacity: 0.25;
}

p {
  margin: 0px;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 0rem;
}

dl,
ol,
ul {
  margin: 0px;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0px;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0px;
}

blockquote {
  margin: 0px 0px 1rem;
}

b,
strong {
  font-weight: bolder;
}

.small,
small {
  font-size: 0.875em;
}

.mark,
mark {
  padding: 0.1875em;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0px;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Involve", serif;
  margin-block-start: 0em;
  margin-block-end: 0em;
}

a>code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0px;
  font-size: 1em;
}

figure {
  margin: 0px 0px 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}

th {
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0px;
}

label {
  display: inline-block;
}

button {
  border-radius: 0px;
  line-height: 1;
}

:focus-visible {
  outline: 0px;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  line-height: 28px;
  font-size: 16px;
  text-align: center;
  border-radius: 12px;
  padding: 12px 32px;
  background: #00aaff1a;
}

/* Стиль для кнопки "Программа" */
.program-btn {
  display: none !important; /* По умолчанию кнопка скрыта */
}

@media (max-width: 767px) {
  .program-btn {
    display: block !important; /* Показываем кнопку на мобильных устройствах */
    margin: 44px auto 0;
    border-radius: 38px;
    font-size: 16px;
    font-weight: 500;
    color: var(--brown);
    /* background: linear-gradient(86.06deg, #f7e79b -9.29%, #f5c365 42.38%, #f8a504 89.75%, #fcfde9 113.74%); */
    /* border: 1px solid #ffca79; */
    cursor: pointer;
    min-width: fit-content;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    height: 54px;
  }

  .progDays_tabs {
    display: block!important; 
  }

  .proDays_tabs-item {
    margin: 10px 0!important; 
  }

}


button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  overflow-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0px;
  padding: 0px;
  margin: 0px;
  border: 0px;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0px;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  appearance: textfield;
}

::-webkit-search-decoration {
  appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0px;
}

::-webkit-file-upload-button {
  font: inherit;
  appearance: button;
}

::file-selector-button {
  font: inherit;
  appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0px;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

section {
  scroll-margin-top: 80px;
  /* max-width: 1440px; */
  margin: 0 auto;
}

.container {
  margin: 0px auto;
  max-width: 1280px;
  width: 100%;
  padding: 0px 2.5rem;
  position: relative;
  z-index: 1;
}

.container.full {
  padding: 0;
}

svg {
  min-width: fit-content;
  max-width: 100%;
  display: block;
}

svg:not(:root) {
  overflow: hidden;
}

pre {
  overflow: auto;
}

img {
  max-width: 100%;
}

a,
a>* {
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.title-main {
  font-size: clamp(24px, calc((50px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 50px);;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--main-col);
  line-height: 1;
}

.title_center {
  margin: 0 auto;
  display: block;
  text-align: center;
}

.title_size_big {
  text-transform: uppercase;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-bottom: 42px;
}

.left {
  text-align: left;
}

.text-32 {
  font-size: 32px;
}

.text-46 {
  font-size: 46px;
}

.text-24 {
  font-size: 24px;
}

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

.text-18 {
  font-size: 18px;
}

.text-16 {
  font-size: 16px;
}

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

.text-10 {
  font-size: 10px;
}

.text-12 {
  font-size: 12px;
}

.w-900 {
  font-weight: 900;
}

.w-700 {
  font-weight: 700;
}

.w-400 {
  font-weight: 400;
}

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

.none {
  display: none;
}

button {
  cursor: pointer;
  border-radius: 38px;
  min-width: fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

button.pY-15 {
  padding: 15px 24px;
  font-size: 16px;
  line-height: 20px;
  height: 54px;
}

button.pY-8 {
  height: 40px;
  padding: 8px 24px;
  font-size: 16px;
  line-height: 20px;
}

@keyframes glowBorder {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(245, 195, 101, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(245, 195, 101, 0.7);
  }
}

@keyframes rotateGradient {
  0% {
    --gradient-angle: 86.06deg;
  }

  100% {
    --gradient-angle: 446.06deg;
    /* Полный круг (360 + начальный угол) */
  }
}

.main-btn {
  border-radius: 38px;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-col);
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  transition: all 0.3s ease;
}

.main-btn:hover {
  /* --gradient: linear-gradient(var(--gradient-angle),
      #ffeb3b -9.29%,
      #ff9800 42.38%,
      #f57c00 89.75%,
      #fff176 113.74%); */
      background: linear-gradient(197.83deg, #F8B1E0 10.49%, #82F1FA 88.1%);

  /* animation: rotateGradient 2s linear infinite; */
  /* animation: rotateGradient 2s linear infinite, glowBorder 1.5s ease-in-out infinite; */
  /* box-shadow: 0 0 15px rgba(245, 195, 101, 0.5), 0 0 5px rgba(245, 195, 101, 0.3) inset; */
  color: #fff;
}

.main-btn-simple {
  border-radius: 38px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: var(--main-col);
}

.main-btn-simple:hover {
  background: var(--main-dark) ;
  /* animation: rotateGradient 2s linear infinite; */
  /* animation: rotateGradient 2s linear infinite, glowBorder 1.5s ease-in-out infinite; */
  /* box-shadow: 0 0 15px rgba(245, 195, 101, 0.5), 0 0 5px rgba(245, 195, 101, 0.3) inset; */
  /* color: #fff; */
}

.border-btn {
  border: 2px solid var(--main-col);
  border-radius: 58px;
  background: transparent;
  color: var(--main-col);
}

.border-btn:hover {
  border: 2px solid var(--main-dark);
  color: var(--main-dark);
}
.border-btn-grad {
  box-sizing: border-box;
  border-radius: 58px;
  background: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 10px 24px;
  /* Убираем стандартную рамку */
  border: none;
}

.border-btn-grad::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 58px;
  padding: 2px; /* толщина рамки = 1px */
  background: linear-gradient(197.83deg, rgba(242, 192, 225, 0.533333) 10.49%, #D2E6F8 39.97%, #17D8E9 88.1%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.border-btn-grad:hover {
  background: linear-gradient(197.83deg, rgba(242, 192, 225, 0.533333) 10.49%, #D2E6F8 39.97%, #17D8E9 88.1%);
}


.border-btn-grad:hover {
  
}

.dotted {
  position: relative;
}

.dotted::after {
  transition: all 0.3s ease-in-out;
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  border-bottom: 4px dotted var(--main-col);
}

.dotted:hover::after {
  width: 1%;
}

.bread {
  display: flex;
  align-items: center;
  overflow-x: auto;
  margin-top: 40px;
  margin-bottom: 20px;
}

.bread a {
  min-width: fit-content;
  
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0%;
  color: var(--main-col);
}

.bread span {
  min-width: fit-content;
  
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #384243;
  opacity: 0.3;
}

.mx-right {
  margin: 0px 0px 0px auto;
}

.mx-auto {
  margin: 0 auto;
}

.mx-left {
  margin: 0px auto 0px 0px;
}

.mb-100 {
  margin-bottom: 100px;
}

.pb-78 {
  padding: 0 0 78px 0;
}

.p-56 {
  padding: 56px;
}

.p-42 {
  padding: 42px 0;
}

.p-36 {
  padding: 36px 0;
}

.p-32 {
  padding: 32px;
}

.p-40 {
  padding: 40px;
}

.p-54 {
  padding: 54px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-100 {
  padding-top: 144px;
}

.pt-46 {
  padding-top: 46px;
}

.block {
  margin-bottom: 60px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-54 {
  margin-bottom: 54px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-42 {
  margin-bottom: 42px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-56 {
  margin-bottom: 56px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-62 {
  margin-bottom: 62px;
}

.mySwiper-1 .swiper-pagination-bullets .swiper-pagination-bullet,
.mySwiper-1 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  opacity: 1;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='4.5' stroke='%23099BA8' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
}

.mySwiper-1 .swiper-pagination-bullet-active {
  background-color: transparent !important;
  /* Сбрасываем стандартный фон */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23099BA8'/%3E%3C/svg%3E") no-repeat center / contain !important;
}
.mySwiper-1_1 .swiper-pagination-bullets .swiper-pagination-bullet,
.mySwiper-1_1 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  opacity: 1;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='4.5' stroke='%23099BA8' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
}

.mySwiper-1_1 .swiper-pagination-bullet-active {
  background-color: transparent !important;
  /* Сбрасываем стандартный фон */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23099BA8'/%3E%3C/svg%3E") no-repeat center / contain !important;
}
.mySwiper-4_1 .swiper-pagination-bullets .swiper-pagination-bullet,
.mySwiper-4_1 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  opacity: 1;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='4.5' stroke='%23099BA8' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
}

.mySwiper-4_1 .swiper-pagination-bullet-active {
  background-color: transparent !important;
  /* Сбрасываем стандартный фон */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23099BA8'/%3E%3C/svg%3E") no-repeat center / contain !important;
}

.mySwiper-2 .swiper-pagination-bullets .swiper-pagination-bullet,
.mySwiper-2 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  /* Соответствует viewBox SVG */
  height: 10px;
  opacity: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='4.5' stroke='%23099BA8' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
  background-size: contain !important;
  /* Масштабируем SVG */
}

.mySwiper-2 .swiper-pagination-bullet-active {
  background-color: transparent !important;
  /* Сбрасываем стандартный фон */
     background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23099BA8'/%3E%3C/svg%3E") no-repeat center / contain !important;

}

.howWas-inner .swiper-pagination-bullets .swiper-pagination-bullet,
.howWas-inner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  opacity: 1;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='4.5' stroke='%23099BA8' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
}

.howWas-inner .swiper-pagination-bullet-active {
  background-color: transparent !important;
  /* Сбрасываем стандартный фон */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23099BA8'/%3E%3C/svg%3E") no-repeat center / contain !important;
}

.mySwiper-4 .swiper-pagination-bullets .swiper-pagination-bullet,
.mySwiper-4 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  /* Соответствует viewBox SVG */
  height: 10px;
  opacity: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='4.5' stroke='%23099BA8' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;

  background-size: contain !important;
  /* Масштабируем SVG */
}

.mySwiper-4 .swiper-pagination-bullet-active {
  background-color: transparent !important;
  /* Сбрасываем стандартный фон */
   background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23099BA8'/%3E%3C/svg%3E") no-repeat center / contain !important;

}

.mySwiper-5 .swiper-pagination-bullets .swiper-pagination-bullet,
.mySwiper-5 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  /* Соответствует viewBox SVG */
  height: 10px;
  opacity: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='4.5' stroke='%23099BA8' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
  background-size: contain !important;
  /* Масштабируем SVG */
}

.mySwiper-2 {
  max-width: 100%;
}

.mySwiper-5 .swiper-pagination-bullet-active {
  background-color: transparent !important;
  /* Сбрасываем стандартный фон */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23099BA8'/%3E%3C/svg%3E") no-repeat center / contain !important;
}

.howWas-inner {
  max-width: 1440px;
  /* overflow: hidden; */
  margin: 0 auto;
  padding-left: 85px;
}

.mySwiper-5 {
  max-width: 1440px;
  /* overflow: hidden; */
  margin: 0 auto;
  padding-left: 100px;
}

.mySwiper-6 {
  height: fit-content;
  margin-top: 10px !important;
  border-radius: 16px;
  overflow: hidden;
}

.mySwiper-7 {
  border-radius: 16px;
  overflow: hidden;
  height: fit-content;
}

.slider-bullets {
  position: relative !important;
  width: fit-content !important;
  bottom: inherit !important;
}

.swiper-pagination-2 {
  margin-top: 40px;
}

.swiper-pagination-4 {
  margin-top: 40px;
}

.swiper-pagination-5 {
  margin-top: 40px;
}

.swiper-wrapper {
  /* height: fit-content !important; */
}

.swiper-slide {
  height: fit-content !important;
}

.mySwiper-7 .swiper-slide {
  max-height: fit-content;
  /* min-height: 100% !important; */
}

.mySwiper-7 .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px 16px 0 0;
}

.header {
  position: fixed;
  width: 100%;
  margin: 0 auto;
  background-position: 0 150px;
  transition: all 0.1s ease-in-out;
  z-index: 100;
}

.header.active{
  background-color: white;
}

.header.active .logo-url{
  /* display: none; */
  max-width: 0 auto;
  transform: translateY(10px);
  margin: 0 auto;
}

.header.active .main-btn-simple{
  display: none;
}

.header.fixed {
  /* background-image: url(../img/picture/satin-back.png); */
  background-color: white;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.header.inside {
  /* background-image: url(../img/picture/satin-back.png); */
  background: linear-gradient(241.99deg, rgba(242, 192, 225, 0.533333) 16.09%, #D2E6F8 81.41%, #17D8E9 188.09%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.header.fixed.inside{
  background-color: white;

}

.header.fixed::after{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(241.99deg, rgba(242, 192, 225, 0.533333) 16.09%, #D2E6F8 81.41%, #17D8E9 188.09%);

  content: '';
}

.header .header_inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 0 7px 0;
}

.header img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.header nav{
  width: 100%;
}

.header nav ul {
  width: fit-content;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin-left: auto;
  margin-right: clamp(0px, calc((26px - 0px) * (100vw - 992px) / (1440px - 992px) + 0px), 26px) ;
}

.header nav ul li.active a {
  background: linear-gradient(86.06deg, #f7e79b -9.29%, #f5c365 42.38%, #f8a504 89.75%, #fcfde9 113.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header nav ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--main-col);
  word-wrap: pre-line;
  text-decoration: none;
  min-width: fit-content;
  background: transparent;
  transition: all 0.3s ease-in;
}

.header nav ul a:hover {
  color: var(--main-dark);
  /* -webkit-text-fill-color: transparent; */
}

.header .header_btns {
  /* margin-left: auto; */
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .header_btns button {
  font-size: 16px;
  font-weight: 600;
  font-family: Involve, sans-serif;
  white-space: pre;
}

.header .dropbtn {
  position: relative;
  display: inline-block;
}

.header .dropbtn .with-svg {
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.header .dropbtn .with-svg svg {
  transition: transform 0.3s ease;
}

.header .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.header .dropdown-item {
  padding: 10px 15px;
  color: #333;
  font-size: 14px;
  text-align: left;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.header .dropdown-item:nth-child(1) {
  border-radius: 8px 8px 0 0;
}

.header .dropdown-item:last-child {
  border-radius: 8px 8px 8px 8px;
}

.header .dropdown-item:hover {
  background: var(--main-col);
  color: white;
}

.header .dropbtn:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.header .dropbtn:hover .with-svg {
  color: var(--main-dark);
}

.header .dropbtn:hover .with-svg svg {
  transform: rotate(180deg);
}
.header .dropbtn:hover .with-svg svg path{
  fill: var(--main-dark);
}

.header .dropbtn:hover .dropdown {
  opacity: 1;
  visibility: visible;
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  60% {
    opacity: 0.8;
    transform: translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-block {
  position: relative;
}

.main-block img {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: clamp(289px, calc((850px - 289px) * (100vw - 992px) / (1440px - 992px) + 289px), 850px);
  /* width: clamp(289px, calc(84.94vw - 408.12px), 850px); */
  max-width: 850px;
  max-height: 850px;
  height: auto;
  object-fit: contain;
}

.main-block .main-block_inner {
  max-width: 701px;
  margin-left: auto;
  width: 100%;
  padding: 60px 0 62px 0;
}

.main-block .main-block_notes {
  margin-top: 110px;
  display: flex;
  align-items: flex-end;
  gap: 40px;
  justify-content: space-between;
}

.main-block .notes-item {
  display: flex;
  flex-direction: column;
  color: var(--main-col);
}

.main-block .notes-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  min-width: 40px;
  position: relative;
  top: 0;
  left: 0;
}

.main-block .notes-item-title {
  margin-bottom: 6px;
  font-size: clamp(24px, calc((32px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 32px);
  font-weight: 700;
  color: var(--main-col);
}

.main-block .notes-item-text {
  display: flex;
  flex-direction: column;
  opacity: 1;
  max-width: 317px;
  font-size: 14px;
  font-weight: 700;
}

.main-block .notes-item-text span {
  /* opacity: 0.5; */
  font-size: 14px;
  font-weight: 500;
}

.timer-block h2 {
  font-family: "Involve", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--main-col);
  margin-bottom: 20px;
}

.timer-block .timer-block-inner {
  display: flex;
}

.timer-block .timer-line {
  margin-top: 37px;
  max-width: 121px;
  width: 100%;
  height: 1px;
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  /* background-color: var(--main-col); */
}

.timer-block .timer-block-clock {
  justify-content: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  max-width: 550px;
  gap: 18px;
  pointer-events: none;
}

.timer-block .timer-block-clock .clock-item {
  max-width: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Involve", sans-serif;
  color: var(--main-col);
}

.timer-block .timer-block-clock .clock-title {
  font-size: 50px;
  font-weight: 600;
  color: var(--main-col);
  font-family:  Involve;
  text-transform: uppercase;
  position: relative;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  overflow: hidden;
}

.timer-block .timer-block-clock svg {
  min-width: fit-content;
  margin-bottom: 10px;
}

.timer-block .timer-digit {
  position: absolute;
  width: 100%;
  text-align: center;
  transition: transform 0.5s ease-in, opacity 0.5s ease;
}

.timer-block .timer-digit.old {
  transform: translateY(0);
  opacity: 1;
}

.timer-block .timer-digit.old.animate {
  transform: translateY(-100%);
  opacity: 0;
}

.timer-block .timer-digit.new {
  transform: translateY(100%);
  opacity: 0;
}

.timer-block .timer-digit.new.animate {
  transform: translateY(0);
  opacity: 1;
}

.timer-block button {
  margin: 20px auto 0;
  margin-top: 20px;
  display: block;
}

.speakers-block {
  color: white;
}

.speakers-block .container {
  padding: 0;
}

.speakers-block .speakers-block_inner {
  padding: 90px 0;
  gap: 0 10px;
  display: grid;
  grid-template-areas: "gallery title" "gallery text";
}

.speakers-block h2 {
  
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  grid-area: title;
}

.speakers-block .speakers-gallery {
  grid-area: gallery;
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  gap: 28px;
  max-width: 420px;
  align-items: flex-start;
  justify-content: center;
  
}

.speakers-block .speakers-gallery .speakers-item {
  flex: 1 0 27%;
  max-width: 176px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.speakers-block .speakers-gallery .speakers-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto;
  margin-bottom: 13px;
}

.speakers-block .speakers-gallery .speakers-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
}

.speakers-block .speakers-gallery .speakers-position {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  opacity: 0.5;
}

.speakers-block svg {
  min-width: fit-content;
  margin-bottom: 20px;
  margin-top: 60px;
}

.speakers-block .speakers-text {
  grid-area: text;
  max-width: 790px;
}

.speakers-block .speakers-text p {
  
  font-weight: 400;
  font-size: clamp(16px, calc(0.42vw + 12.14px), 18px);
  line-height: 28px;
}

.speakers-block .speakers-text .speakers-text-par {
  font-family:  Involve;
  font-weight: 600;
  font-size: clamp(32px, calc(1.67vw + 16.57px), 40px);
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.big-container {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.iComing-block {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.iComing-block .iComing-img {
  position: absolute;
  bottom: 0;
  left: -110px;
}

.iComing-block .iComing-text-img{
  transform: translateX(-75px);
 width: clamp(343px, calc((503px - 343px) * (100vw - 992px) / (1440px - 992px) + 343px), 503px);
 margin-bottom: clamp(20px, calc((40px - 20px) * (100vw - 992px) / (1440px - 992px) + 20px), 40px);
}

.iComing-block .iComing-text {
  padding: 80px 0 92px 0;
  display: flex;
  max-width: clamp(335px, calc(38.7vw - 21.84px), 520px);
  margin-left: auto;
  flex-direction: column;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.iComing-block .iComing-text h2 {
  font-family:  Involve;
  font-weight: 400;
  font-size: clamp(56px, calc(8.37vw - 37.15px), 80px);
  line-height: 1;
  color: var(--main-col);
  margin-bottom: 25px;
}

.iComing-block .main-btn {
  margin-top: 40px;
}

.iComing-block .iComing-img-back {
  /* transform: scaleX(-1); */
  position: absolute;
  max-width: 780;
  object-fit: contain;
  right: 0px;
  top: 0;
  bottom: 0px;
}

@media (max-width:1200px) {
  .iComing-block .iComing-text-img{
    transform: none;
  }
}

.theatre-block {
  overflow: hidden;
  background: linear-gradient(123.64deg, rgba(242, 192, 225, 0.533333) 5.52%, #D2E6F8 52.13%, #17D8E9 110.75%);
  max-width: 100%;
  position: relative;
}

.theatre-block .container {
  padding: 100px 0;
  display: flex;
  gap: 20px;
}

.theatre-block .container::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -210px;
  background: linear-gradient(270deg, rgba(1, 39, 150, 0) 53.87%, var(--main-col) 90.89%);
  filter: blur(5px);
  width: 65px;
  height: 110%;
}

.theatre-block .theatre_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* padding: 100px 0; */
  /* color: white; */
  max-width: 480px;
  margin-right: auto;
  position: relative;
}

.theatre-block .theatre-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.theatre-block h2 {
  font-family:  Involve;
  font-weight: 600;
  font-size: clamp(32px, calc((50px - 32px) * (100vw - 992px) / (1440px - 992px) + 32px), 50px);
  line-height: 1.2;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.theatre-block p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.theatre-block .theatre-img {
  /* position: absolute;
  top: 0; */
  /* height: 100%; */
  position: relative;
  z-index: 2;
  width: clamp(343px, calc((702px - 343px) * (100vw - 992px) / (1440px - 992px) + 343px), 702px);
  /* right: -50px; */
  /* background: linear-gradient(270deg, rgba(1, 39, 150, 0) 53.87%, var(--main-col) 90.89%), url(./../img/picture/theatre1.png); */
  /* background: url(./../img/picture/1-ushakova.jpg); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.theatre-block .theatre-img img{
  width: clamp(343px, calc((702px - 343px) * (100vw - 992px) / (1440px - 992px) + 343px), 702px);

}

.theatre-back{
  position: absolute;
  right: -110px;
  bottom: 0;
  top: 0;
}

@media (max-width:1200px) {
  .theatre-back{
    display: none;
  }
}

.partners-block {
  padding: 80px 0;
  background-color: #F9FAFA;
  color: #384243;
  overflow: hidden;
  max-width: 100%;
}

.partners-block .container {
  padding: 0;
}

.partners-block h2 {
  font-family:  Involve;
  font-weight: 600;
  font-size: clamp(32px, calc((50px - 32px) * (100vw - 992px) / (1440px - 992px) + 32px), 50px);
  line-height: 1.32;
  letter-spacing: 0%;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.partners-block .swiper-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
}

.partners-block .partners-item-case {
  display: flex;
  flex-direction: column;
  
  max-width: 220px;
  cursor: pointer;
}

.partners-block .partners-item-case .partners-case-img {
  max-width: 190px;
  width: 100%;
  height: 230px;
  /* background: #e0eeff; */
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  border-radius: 16px;
  overflow: hidden;
  padding: 10px 10px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  transition: all 0.3s ease;
}

.partners-block .partners-item-case .partners-case-img img {
  border-radius: 0 0 16px 16px;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 3;
  transition: all .3s ease;
}

.partners-block .partners-item-case .partners-case-img::after {
  position: absolute;
  border-radius: 100%;
  width: 156px;
  height: 179px;
  content: "";
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  filter: blur(50px);
  transform: rotate(90deg);
}

.partners-block .partners-item-case .partners-case-img::before {
  position: absolute;
  z-index: 2;
  border-radius: 100%;
  width: 0px;
  height: 0px;
  content: "";
  bottom: -100px;
  right: -100px;
  background-color: var(--main-col);
  transition: all 0.7s ease;
}

/* .partners-block .partners-item-case:hover .partners-case-img {
  background: var(--main-col);
} */

.partners-block .partners-item-case:hover .partners-case-img::before {
  width: 200%;
  height: 200%;
}

.partners-block .partners-item-case:hover .partners-case-img img {
  transform: scale(1.1);
}

.partners-block .partners-name {
  font-weight: 500;
  color: var(--main-col);
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
  margin-top: 20px;
}

.partners-block .partners-position {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  word-spacing: 3px;
  /* opacity: 0.5; */
  color: #384243;
  margin-bottom: 4px;
}

.partners-block .partners-city {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: #384243;

  /* opacity: 0.5; */
}

.partners-block.inside {
  color: #384243;
  padding: 0 0 80px 0;
  display: flex;
  gap: 40px 25px;
  flex-wrap: wrap;
}

.partners-block.inside.hide {
  display: none;
}

.partners-block.inside.show {
  display: flex;
  animation: fadeInUp 0.7s ease forwards;
}

.partners-block-org{
  background: linear-gradient(123.64deg, rgba(242, 192, 225, 0.533333) 5.52%, #D2E6F8 52.13%, #17D8E9 110.75%);

}

.partners-block-org h2{
  font-weight: 700;
   font-size: clamp(20px, calc((24px - 20px) * (100vw - 992px) / (1440px - 992px) + 20px), 24px);
}

.partners-block-org .partners-position{
  font-size: 12px;
  font-weight: 500;
  color: var(--main-col);
}

.partners-block-org .partners-item-case .partners-case-img::before{
  display: none;
}

.partners-block-org .partners-item-case .partners-case-img::after{
  display: none;

}

.partners-block-org .partners-name{
  margin-top: 13px;
  margin-bottom: 0;
  font-size: 16px; 
  font-weight: 700;
}

.partners-block-org .partners-item-case .partners-case-img{
  border: 2px solid #FFFFFF;
}

@media (max-width:1200px) {
  .partners-block{
    padding: 40px 0;
  }
  .partners-block .container{
    padding: 0 16px;
  }
  .partners-block .partners-item-case .partners-case-img{
    height: 200px;
  }
  .partners-block .swiper-bottom{
    margin-bottom: 20px;
  }
}

.programm-inner-title {
  margin-bottom: 60px;
  display: flex;
  gap: 32px;
}

.programm-inner-title h2 {
  font-family:  Involve;
  font-weight: 600;
  font-size: clamp(32px, calc((50px - 32px) * (100vw - 992px) / (1440px - 992px) + 32px), 50px);
  line-height: 1;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #384243;
}

.programm-title-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: var(--main-col);
  width: 100%;
  max-width: 495px;

}

.programm-title-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.programm-title-list ul li {
  display: flex;
  text-transform: none;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius:999px;
  background-color: #F9FAFA;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0%;
  color: var(--main-dark);
  max-width: 495px;
  width: 100%;
}

.programm-inner-list {
  border-top: 1px solid #dfe0e6;
  padding: 30px 0;
  display: flex;
}

.programm-inner-list:last-child {
  border-bottom: 1px solid #dfe0e6;
  padding: 30px 0 14px 0;
}

.programm-inner-list .programm-list-num {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 10%;
  text-transform: uppercase;
  color: #9BAAAB;
  /* opacity: 0.2; */
  padding-top: 15px;
  margin-right: 90px;
}

@media (max-width:1200px) {
  .programm-inner-list .programm-list-num{
    margin-right: auto;
  }
}

.programm-inner-list .programm-list-date {
  font-family:  Involve;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -5%;
  text-align: center;
  text-transform: uppercase;
  color: var(--main-col);
}

.programm-inner-list .programm-list-date a {
  color: var(--main-col);
}

.programm-inner-list .programm-list-text {
  
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #384243;
  width: 600px;
  margin-left: auto;
  margin-right: 73px;
  opacity: 0.8;
}

.programm-inner-list .programm-list-button {
  align-self: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin-right: 30px;
}
.fond-block h1{
  font-weight: 600;
  color: var(--main-col);
  font-size: clamp(32px, calc((50px - 32px) * (100vw - 992px) / (1440px - 992px) + 32px), 50px);

}
.fond-block h2 {
  font-family:  Involve;
  font-weight: 700;
  font-size: clamp(24px, calc((32px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 32px);
  line-height: 1.2;
  letter-spacing: 0%;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  text-transform: uppercase;
  /* max-width: 660px; */
}

.fond-block .fond_inner {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.fond-block .fond-item {
  max-width: 302px;
  flex: 1 0 30%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.fond-block .fond-item:nth-child(2) {
  padding-left: 24px;
  border-left: 1px solid #38424310;
}

.fond-block .fond-item:nth-child(3) {
  padding-left: 24px;
  border-left: 1px solid #38424310;
  max-width: 390px;
  position: relative;
  width: 100%;
}

.fond-block .fond-item:nth-child(3) .fond-img-back {
  position: absolute;
  bottom: -20px;
  right: 0;
}

.fond-block .fond-item:nth-child(3) .fond-title {
  max-width: 255px;
}

.fond-block .fond-item:nth-child(3) .fond-text {
  max-width: 255px;
}

.fond-block .fond-item:nth-child(3) .fond-par {
  max-width: 255px;
}

.fond-block .fond-item-img {
  margin-bottom: 28px;
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
  /*filter: grayscale(1) contrast(0.1);*/
}

.fond-block .fond-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 10%;
  text-transform: uppercase;
  color: var(--main-col);
  margin-bottom: 10px;
}

.fond-block .fond-text {
  
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0%;
  margin-bottom: 10px;
  color: #384243;
}

.fond-block .fond-par {
  
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0%;
  opacity: 0.7;
}

.cards-block-item {
  color: white;
  padding: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 24px;
  position: relative;
  border-radius: 20px;
}

.cards-block-item .cards-block-underTitle{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cards-block-item .circle {
  position: absolute;
  background-color: white;
  width: 48px;
  height: 48px;
  border-radius: 100%;
}

.cards-block-item .circle.one {
  top: -24px;
  left: -24px;
}

.cards-block-item .circle.two {
  top: -24px;
  right: -24px;
}

.cards-block-item .circle.three {
  bottom: -24px;
  left: -24px;
}

.cards-block-item .circle.four {
  bottom: -24px;
  right: -24px;
}

.cards-block-item .cards-block-title {
  font-family:  Involve;
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 699px;
  width: 100%;
}

.cards-block-item .cards-block-par {
  
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  max-width: 699px;
  width: 100%;
  margin-bottom: 86px;
}

.cards-block-item .cards-block-bottom {
  max-width: 699px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.cards-block-item .card-blocl-date {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  max-width: 320px;
  font-weight: 400;
}

.cards-block-item .card-blocl-date span {
  text-transform: uppercase;
  font-size: 24px;
}

.cards-block-item:nth-child(odd) {
  color: var(--main-col);
}

.cards-block-item:last-child {
  margin-bottom: 0;
}

.presidentMessage_inner {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  background-color: #F9FAFA;
  border-radius: 20px;
  /* align-items: center; */
}
.presidentMessage_inner .presidentMessage-person {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  max-width: 391px;
  width: 100%;
  align-items: center;
  /* justify-content: center; */

}
.presidentMessage_inner .presidentMessage-img {
  width: 198px;
  height: 198px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
}
.presidentMessage_inner .presidentMessage-img img{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.presidentMessage_inner .presidentMessage-name {
  margin-bottom: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--main-col);
}
.presidentMessage_inner .presidentMessage-position {
  margin-bottom: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}
.presidentMessage_inner .presidentMessage-city {
  text-align: center;
   font-weight: 500;
  font-size: 14px;
}
.presidentMessage_inner .presidentMessage-text {
  display: flex;  
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #384243;
  flex-direction: column;
  max-width: 710px;
}
.presidentMessage_inner .presidentMessage-text h2{
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.presidentMessage_inner .presidentMessage-text span{
  font-size: 12px;
  color: var(--main-col);
  text-transform: uppercase;
}

@media (max-width: 1300px) {
  .presidentMessage_inner .presidentMessage-person{
    max-width: 311px;
  }
}
@media (max-width: 1200px) {
  
  .presidentMessage_inner .presidentMessage-text{
    max-width: 520px;
  }
}
@media (max-width: 1024px){
  .presidentMessage_inner{
    flex-direction: column-reverse;
    padding: 24px 24px 32px 24px;
  }
  
}

.film-block {
  padding: 100px 0 78px 0;
  background: #F9FAFA;
  max-width: 100%;
}

.film-block h2 {
  margin-bottom: 40px;
  font-family:  Involve;
  font-weight: 700;
  max-width: 660px;
  font-size: clamp(24px, calc((50px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 50px);
  color: var(--main-col);
  line-height: 1;
  text-transform: uppercase;
}

.film-block-first {
  padding: 40px 0 ;
  /* background: #F9FAFA; */
  max-width: 100%;
}

.film-block-first h2 {
  margin-bottom: 40px;
  font-family:  Involve;
  font-weight: 700;
  /* max-width: 660px; */
  font-size: clamp(20px, calc((24px - 20px) * (100vw - 992px) / (1440px - 992px) + 20px), 24px);
  color: #384243;
  line-height: 1;
  text-transform: uppercase;
}

.film-block-first .film-block_inner{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(391px,1fr));
  gap: 24px;
}
.film-block-first .film-block_inner .film-block-item {
background: #F9FAFA;
border-radius: 20px;
padding: 32px;
display: flex;
flex-direction: column;
gap: 40px;
align-items: center;
justify-content: center;
position: relative; /* ← важно для absolute-детей */
  overflow: hidden; /* ← чтобы video не вылезал за границы */
}

.film-block-first .film-block_inner .film-item-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.film-block-first .film-block_inner .film-text-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-col);
}
.film-block-first .film-block_inner .film-text-job {
  font-size: 16px;
}
.film-block-first .film-block_inner .film-text-city {
  font-size: 14px;
}

.film-block-first .film-block_inner.film-block .film-item-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 198px; /* минимальная высота для превью */
}

@media (max-width:1024px) {
  .film-block-first .film-block_inner{
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.film-item-media_wrapper{
  position: relative;
  height: 198px;
}

.film-block-first .film-item-media_wrapper .play{
  position: absolute;
  cursor: pointer;
  width: 139px;
  height: 40px;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  border-radius: 38px;
}

.film-block-first .film-item-media_wrapper .play:hover{
  background: linear-gradient(197.83deg, #F8B1E0 10.49%, #82F1FA 88.1%);
}

.film-block-first .film-item-media {
  overflow: hidden;
  position: relative;
  height: 198px;
  width: 198px;
  border-radius: 100px;
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
}

.film-block-first .film-item-media video{
  width: 198px;
  height: 198px;
}


/* ——— ЭФФЕКТ ПРИ ВКЛЮЧЕНИИ ВИДЕО ——— */
.film-block-first .film-block-item.playing {
  padding: 0;
  gap: 0;
}



.film-block-first .film-block-item.playing .film-item-text,
.film-block-first .film-block-item.playing .play {
  display: none;
}

.film-block-first .film-block-item.playing .film-item-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
}
.film-block-first .film-block-item.playing .film-item-media_wrapper{
 width: 100%;
  height: 100%;
}

.film-block-first .film-block-item.playing .film-item-media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* чтобы заполняло без искажений */
  border-radius: 0;
  transform: scale(1)!important;
  z-index: 1;
}
/* ——— ЭФФЕКТ ПРИ ВКЛЮЧЕНИИ ВИДЕО ——— */


.film-block .film-block-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}

.film-block .film-item-media {
  position: relative;
  height: 340px;
  border-radius: 16px;
  background: #7a7b84;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.film-block .film-item-text {
  display: flex;
  justify-content: space-between;
}

.film-block .film-text-data {
  
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0%;
  display: flex;
  flex-direction: column;
  color: #38424350;
}

.film-block .film-text-data span {
  font-weight: 500;
  color: #384243;
  /* font-size: 16px; */
}

.film-block .film-text-link {
  color: var(--main-col);
  font-weight: 400;
  font-size: 18px;
}
.film-block .film-text-link a{
  color: var(--main-col);
  font-weight: 400;
  font-size: 18px;
}

.film-block .film-item-media .title {
  font-size: 20px;
  bottom: 64px;
}

.film-block .film-item-media .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 100%;
}

.film-block .film-block-item.playing .film-item-media .play{
display: none;
}

.film-block .film-item-media .problem {
  font-size: 20px;
  bottom: 38px;
}

.film-block .film-item-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howWas-block {
  max-width: 100%;
  /* background: var(--main-col); */
  padding: 80px 0;
  /* Базовые стили */
}

.howWas-block .container {
  padding: 0;
}

.howWas-block h2 {
  color: #384243;
  font-family:  Involve;
  font-weight: 600;
  font-size: clamp(32px, calc(3.77vw - 2.72px), 50px);
  text-transform: uppercase;
}

.howWas-block .howWas-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.howWas-block .howWas-title-date {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 5px;
}

.howWas-block .howWas-date-item {
  padding: 6px 20px;
  border: 1px solid #099BA8;
  color: #099BA8;
  
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
  border-radius: 100px;
}

.howWas-block .howWas-date-item.active {
  color: white;
  background-color: #099BA8;
}

.howWas-block .howWas-date-item:hover {
  color: white;
  background-color: #099BA8;
}

.howWas-block .howWas-inner {
  opacity: 0;
  transform: translateY(20px);
}

.howWas-block .howWas-inner.hide {
  display: none;
}

.howWas-block .howWas-inner.show {
  display: block;
  animation: fadeInUp 0.7s ease forwards;
}

@media (max-width:1024px) {
  .howWas-block .howWas-bottom{
    gap: 20px;
    margin-top: 20px;
  } 
  .howWas-block{
    padding: 40px 0;
  }
  .howWas-block .howWas-inner a{
    max-width: 100%;
    width: 100%;
  }
  
  .howWas-block .howWas-inner a button{
    max-width: 100%;
    width: 100%;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  60% {
    opacity: 0.7;
    transform: translateY(-1px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.howWas-block .howWas-inner-item {
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  height: 400px;
}

.howWas-block .howWas-inner-item img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
}

.howWas-block .howWas-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  flex: 1 0 100%;
  max-width: 1280px;
}

.tariffs-block {
  background: #F9FAFA;
  padding: 100px 0 40px 0;
  max-width: 100%;
}

.tariffs-social-block{
   background: #F9FAFA;
   max-width: 100%;
   padding-bottom: 80px ;
}

.tariffs-social_inner{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.tariffs-social_inner .tariffs-block_inner{
  max-width: 805px;
  overflow: hidden;
}

.tariffs-social-item{
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #384243;
  max-width: 358px;
}

.tariffs-social_inner h2{
  text-transform: uppercase;
  font-size: clamp(24px, calc((32px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 32px);

}

@media (max-width:1024px) {
  .tariffs-social_inner .tariffs-block_inner{
    overflow: visible;
    max-width: 100%;
  }
  .tariffs-social-block{
    padding-bottom: 40px;
  }
}

.tariffs-block h2 {
      font-family: Involve;
    font-weight: 600;
    font-size: clamp(24px, calc((50px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 50px);
    line-height: 1;
    text-transform: uppercase;
    color: #384243;
    margin-bottom: 40px;
}

.tariffs-block_inner {
  /* overflow: hidden; */
}

.tariffs-item-beforeDate{
  padding: 4px 8px;
  border-radius: 8px;
  background-color: #F7D2EA;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  color: #EF0D73;
  margin-bottom: 8px;
}

.tariffs-item-moreInfo{
  font-size: 12px;  
  font-weight: 500;
  color: var(--main-dark);
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);


}

.tariffs-item-prices{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.tariffs-block_inner .tariffs-block-item.active .tariffs-item-prices .tariffs-item-price-old{ 
  color: #ffffff;
  font-size: 32px;
  opacity: 1;
  position: relative;
  display: block;
}
.tariffs-item-prices .tariffs-item-price-old{ 
  color: #384243;
  font-size: 32px;
  opacity: 1;
  position: relative;
  display: block;
}

.tariffs-item-prices .tariffs-item-price-old span{
  opacity: 0.5;
}

.tariffs-item-prices .tariffs-item-price-old::after{
content:'';
position: absolute;
width: 92.5px;
height: 24.79px;
left: 7px;
top: 7px;
background: url("data:image/svg+xml,%3Csvg width='92.5' height='24.79' viewBox='0 0 92.5 24.79' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.388184 24.79L92.1118 0.388184' stroke='%23FE89D7' stroke-width='3'/%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;

}

.tariffs-block_inner .tariffs-block-item {
  padding: 20px;
  border-radius: 16px;
  color: var(--main-col);
  min-height: 500px;
  letter-spacing: 5%;
  max-width: 410px;
  background-color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto !important;
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-only{
  margin: 8px 0 20px 0;
  font-size: 14px;
  font-weight: 500;
  color: #9BAAAB;
}

.tariffs-block_inner .tariffs-block-item .tariffs-items-anothPrice {
  margin-top: auto;
  margin-bottom: 30px;
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-position {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-price {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #384243;
}
.tariffs-block_inner .tariffs-block-item.active .tariffs-item-price {
  color: white;
}

.tariffs-block_inner.mySwiper-4_1 .tariffs-item-inf{
  font-size: 14px;
  font-weight: 500;
  color: #9BAAAB;
  margin-bottom: 20px;
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-date {
  font-size: 16px;
  opacity: 0.5;
  margin-bottom: 20px;
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin-bottom: 20px;
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 500;
  color: #384243;
}
.tariffs-block_inner .tariffs-block-item.active .tariffs-item-list li{
  color: white;
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-list li svg path {
  fill: var(--main-col);
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-anothPrice {
  border-top: 1px solid #01269620;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-anothPrice :first-child {
  opacity: 0.5;
  max-width: 190px;
}

.tariffs-block_inner .tariffs-block-item .tariffs-item-anothPrice :last-child {
  opacity: 1;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
}

.tariffs-block_inner .tariffs-block-item .main-btn {
  background: var(--main-col);
  width: 100%;
  color: white;
  border: var(--main-col);
}

.tariffs-block_inner .tariffs-block-item.active {
  /* background-image: url(../img/picture/satin-back-1.png); */
  /* background-size: cover; */
  /* background-position: center; */
  /* background-repeat: no-repeat; */
  background-color: var(--main-col);
  color: white;
}

.tariffs-block_inner .tariffs-block-item.active .tariffs-item-anothPrice {
  border-top: 1px solid #f7f8fd20;
  padding-top: 8px;
  padding-bottom: 8px;
}

.tariffs-block_inner .tariffs-block-item.active .tariffs-item-list li svg path {
  fill: white;
}

.tariffs-block_inner .tariffs-block-item a{
  max-width: 100%;
  width: 100%;
}
.tariffs-block_inner .tariffs-block-item a button{
  max-width: 100%;
  width: 100%;
}

.tariffs-block_inner .tariffs-block-item.active .main-btn {
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  width: 100%;
  color: var(--main-col);
  transition: all 0.3s ease;
}
.tariffs-block_inner .tariffs-block-item.active .main-btn:hover{
  background: linear-gradient(197.83deg, #F8B1E0 10.49%, #82F1FA 88.1%);
}

.place-block {
  /* padding: 50px; */
  /* background-color: white; */
  max-width: 100%;
}

.place-block h2 {
  font-family:  Involve;
  font-weight: 700;
  font-size: clamp(20px, calc((32px - 20px) * (100vw - 992px) / (1440px - 992px) + 20px), 32px);
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 40px;
background: linear-gradient(120.12deg, #FE89D7 5.28%, #D2E6F8 32.08%, #17D8E9 65.22%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}

.place-block b{
  margin-bottom: 10px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #384243;
}

.place-block .place_inner {
  display: flex;
  align-items: center;
  gap: 25px;
}

.place-block .place_inner-item {
  max-width: 598px;
}

.place-block .place_inner-item ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin-bottom: 40px;
}

.place-block .place_inner-item ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  color: #384243;
}

.place-block .place_inner-date {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.place-block .place_inner-date p {
  flex-direction: column;
  display: flex;
  gap: 10px;
  font-size: 14px;
  max-width: 335px;
  font-weight: 500;
  color: #384243;

}

.place-block .place_inner-date span {
  font-weight: 500;
  font-size: 14px;
  color: #9BAAAB;
}

.place-block .place_inner-img {
  max-width: 657px;
  width: 100%;
  transform: translateX(110px);
  /* height: 600px; */
}

.place-block .place_inner-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  /* border-radius: 16px; */
}

.reviews-block {
  padding: 80px 0;
  background-color: #F9FAFA;
  max-width: 100%;
}

.reviews-block h2 {
  font-family:  Involve;
  font-weight: 600;
  font-size: clamp(24px, calc((50px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 50px);
  line-height: 1;
  text-transform: uppercase;
  color: #384243;
  margin-bottom: 40px;
}

.reviews-block .reviews-item {
  display: flex;
}

.reviews-block_inner .reviews_inner-item {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* min-height: 560px; */
  max-width: 500px;
}

.reviews-block_inner .reviews_inner-item .reviews-item-media {
  display: flex;
  justify-content: space-between;
}

.reviews-block_inner .reviews_inner-item .reviews-media-box {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 100%;
}

.reviews-block_inner .reviews_inner-item .reviews-media-box img {
  width: 100;
  height: 100%;
  max-height: 80px;
  object-fit: contain;
}

.reviews-block_inner .reviews_inner-item .reviews-item-text {
  max-height: 150px;
  overflow-y: auto;
  font-weight: 500;
  font-size: 16px;
  color: #384243;
  line-height: 1.5;
  letter-spacing: 0%;
  opacity: 0.8;
}

.reviews-block_inner .reviews_inner-item .reviews-item-position {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  
  font-size: 16px;
  line-height: 1.2;
  color: #38424350;
  font-weight: 400;
}

.reviews-block_inner .reviews_inner-item .reviews-item-position span {
  font-weight: 500;
  color: var(--main-col);
}

@media (max-width:1024px) {
  .reviews-block_inner .reviews_inner-item{
    min-height: auto;
  }
  .reviews-block{
    padding: 40px 0;
  }
  .reviews-block_inner .reviews_inner-item .reviews-item-position{
    margin-top: 0px;
  }
  .reviews-block_inner .reviews_inner-item .reviews-item-text{
    font-size: 14px;
    font-weight: 500;
  }
}

.contacts-block {
  padding: 100px 0;
  /* background-color: var(--main-col); */
  position: relative;
  overflow: hidden;

}
/* .contacts-block::after{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background-color: var(--main-col);
} */

.contacts-block .container {
  padding: 0 1.6rem;
}

.contacts-block .contacts_inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contacts-back{
  position: absolute;
  bottom: -10px;
  left: 0;
  mix-blend-mode: overlay;
}

.col-back{
  background-color: var(--main-col);
}

.contacts-block .contacts_inner-item {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contacts-block .contacts_inner-item h2 {
  font-family:  Involve;
  font-weight: 400;
  font-size: clamp(24px, calc((52px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 52px);;
  line-height: 1;
  text-transform: uppercase;
  max-width: 497px;
}

.contacts-block .contacts_inner-item p {
  margin-top: auto;
  max-width: 250px;
  
  font-weight: 400;
  font-size: 14px;
  opacity: 0.5;
}

.contacts-block .contacts-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.contacts-block .contacts-link a {
  font-family:  Involve;
  font-weight: 400;
  font-size: clamp(24px, calc((50px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 50px);
  /* text-transform: uppercase; */
  line-height: 1;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  color: white;
}

.contacts-block .underline-link {
  text-decoration: underline;
}

.contacts-block .contacts-item-btns {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 20px;
}

.progDays-block h1 {
  font-family:  Involve;
  font-weight: 700;
  font-size: clamp(32px, calc((50px - 32px) * (100vw - 992px) / (1440px - 992px) + 32px), 50px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--main-col);
  margin-bottom: 13px;
}

.progDays-top {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid #dfe0e6; */
  margin-bottom: 40px;
  position: relative;
}

.progDays-top::after{
  content: '';
width: 100%;
height: 1px;
position: absolute;
left: 0;
bottom: 0;
background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
transform: matrix(1, 0, 0, -1, 0, 0);
}

.progDays-top .progDays_tabs {
  display: flex;
  align-items: center;
  gap: 40px;
}

.progDays-top .proDays_tabs-item {
  
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 10%;
  text-transform: uppercase;
  color: #384243;
  opacity: 0.4;
  transition: all 0.3s ease;
  cursor: pointer;
}

.progDays-top .proDays_tabs-item.active {
  opacity: 1;
  color: var(--main-col);
}

.progDays-top .proDays_tabs-item:hover {
  opacity: 1;
  color: var(--main-col);
}

.progDays-block .progDays-inner .progDays-bottom {
  /* display: flex; */
  flex-direction: column;
  gap: 28px;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 350px;
  max-width: 350px;
  font-weight: 700;
  font-size: clamp(18px, calc(2.93vw - 9px), 32px);
  line-height: 1.2;
  color: var(--main-col);
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-title h6 {
    margin: clamp(8px, 2vw, 15px) 0;
    color: #099BA8;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-title p {
  font-weight: 400;
  font-size: 13px;
  color: #384243;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-list {
  max-width: 807px;
  width: 100%;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-list.main .list-item {
  border-left: 3px solid var(--main-col);
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-list.main .list-item.break {
  border: none;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-list.main .list-item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-list.red .list-item {
  border-left: 3px solid #80d1ff;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-list.red .list-item.break {
  border: none;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-list.red .list-item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  border-left: 3px solid #FFA3E0;
  padding-left: 20px;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item .list-item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 0 15px 0px;
  
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item .list-item-text .item-text-time {
  display: flex;
  align-items: center;
  font-family:  Involve;
  font-weight: 500;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  font-size: clamp(24px, calc(1.67vw + 8.57px), 32px);
  color: var(--main-col);
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item .list-item-text .item-text-title {
  
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #384243;
  display: flex;
  flex-direction: column;
  max-width: 497px;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item .list-item-text .item-text-title p {
  font-size: 16px;
  font-weight: 400;
  color: #7a7b84;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item .list-item-text .item-text-par {
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #5a7a7c;
  font-style: italic;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item .list-item-img {
  margin-top: 30px;
  display: flex;
  padding: 5px 10px 5px 10px;
  background-color: #d0dfe7;
  color: white;
  
  font-weight: 400;
  font-size: 11px;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  max-width: 300px;
  width: 100%;
}

.list-item-img-img {
  width: 35%;
  filter: grayscale(1);
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.with-sponsor .list-item-text {
  max-width: 510px;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.break {
  background-color: #F9FAFA;
  border-radius: 8px;
  position: relative;
  border: none;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.break .list-item-text {
  border-left: none;
  padding: 28px 20px;
  gap: 0;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.break .list-item-text .item-text-time {
  color: #384243;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.break .list-item-img {
  margin: 0;
  padding: 0;
  background: transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.break .list-item-img img {
  mix-blend-mode: darken;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.full .item-text-title {
  max-width: 100%;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item.main .bottom-item-title {
  font-family:  Involve;
  font-weight: 400;
  font-size: clamp(32px, calc(3.77vw - 2.72px), 50px);
  line-height: 1;
  letter-spacing: -5%;
  color: var(--main-col);
  text-transform: uppercase;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
}

.progDays-bottom.hide {
  display: none;
}

.progDays-bottom.show {
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.7s ease forwards;
}

/* Новые стили для вкладки "Все дни" */
.all-days-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}

.day-column {
  width: calc(35% - 20px);
  /* Учитываем gap */
}

.day-bottom-item {
  display: block;
  margin-bottom: 20px;
}

.day-bottom-item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--main-col);
    margin-bottom: 10px;
    margin-top: 30px;
    text-transform: uppercase;
}

.day-bottom-item-title h5 {
    margin: 10px 0;
    font-size: 24px;
    font-weight: 500;
}

.day-bottom-item-title h6 {
    margin: clamp(8px, 2vw, 15px) 0;
    color: #099BA8;
}

.day-bottom-item-list {
  width: 100%;
}

.day-list-item {
  display: block;
  border-left: 3px solid #82F1FA;
  padding-left: 20px;
  margin-bottom: 20px;
}

.day-list-item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 0;
}

.day-item-text-time {
  font-family:  Involve;
  font-weight: 700;
  font-size: 20px;
  color: #384243;
  display: flex;
  align-items: center;
}

.day-item-text-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #384243;
}

.day-item-text-par {
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #5a7a7c; 
  font-style: italic;
}

.day-list-item-img {
  margin-top: 10px;
  display: flex;
  padding: 5px 10px;
  background-color: #d0dfe742;
  color: #384243;
  font-weight: 400;
  font-size: 14px;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  /* max-width: 180px; */
  min-height: 60px;
  width: 100%;
}

.day-list-item-img-img {
  width: 25%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(1);
}

.day-break {
  background-color: #F9FAFA;
  border-radius: 8px;
  position: relative;
  border: none;
}

.day-bottom-item-list.day-main .day-break.day-event {
  min-height: 430px;
  display: flex;
    align-items: flex-end;
    background-color: var(--main-dark);
    overflow: hidden;
    padding-right: 20px;
}

.day-bottom-item-list.day-main .day-break.day-event .day-item-text-par{
  font-size: 16px;
  font-weight: 500;
  color: #384243;
}

.day-bottom-item-list.day-main .day-break.day-event .day-list-item-img{
  bottom: inherit;
  top: 0;
  pointer-events: none;
  min-height: 210px;
  max-height:210px;
	left: 0;
}

.day-bottom-item-list.day-main .day-break.day-event a{
  width: 101px;
  height: 48px;
  border-radius: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;  
  font-weight: 600;
  background-color: var(--main-col);
  color: white;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.day-bottom-item-list.day-main .day-break.day-event a:hover{
  background-color: white;
  color:  var(--main-col);
}

.day-bottom-item-list.day-main .day-break.day-event .day-list-item-img img{
  mix-blend-mode: normal;
  object-fit: cover;
    width: 100%;
    height: 210px;
}

.day-bottom-item-list.day-main .day-break.day-event .day-list-item-text{
  padding: 0 0 16px 0;
}

@media (max-width:1050px) {
  .day-bottom-item-list.day-main .day-break.day-event{
    min-height: 450px;
  }
}

.day-break .day-list-item-text {
  border-left: none;
  /* padding: 15px 20px; */
  gap: 0;
  /* min-height: 256px; */
}

.day-break .day-item-text-time {
  color: #384243;
  font-size: 32px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.day-break .day-item-text-par {
  color:#9BAAAB;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.day-break .day-list-item-img {
  margin: 0;
  padding: 0;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 30%;
}

.day-break .day-list-item-img img {
  mix-blend-mode: darken;
	width: 70%;
}

.day-main .day-bottom-item-title {
  font-family:  Involve;
  font-weight: 600;
  font-size: clamp(32px, calc(3.77vw - 2.72px), 50px);
  line-height: 1;
  letter-spacing: -5%;
  color: #384243;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 0;
}

.day-bottom-item-list.day-main .day-list-item {
  border-left: 3px solid var(--main-col);
}

.day-bottom-item-list.day-main .day-break {
  border: none;
  min-height: 150px;
}

.day-bottom-item-list.day-red .day-list-item {
  border-left: 3px solid #FFA3E0;
}

.day-bottom-item-list.day-red .day-break {
  border: none;
}

#day-1-content .day-list-item.day-break.day-event,
  #day-3-content .day-list-item.day-break.day-event,
    #day-2-content .day-list-item.day-break.day-event{
      min-height: 210px;
      overflow: hidden;
    background-color: var(--main-dark);
}
  

#day-1-content .day-list-item.day-break.day-event .day-list-item-img img,
#day-2-content .day-list-item.day-break.day-event .day-list-item-img img,
#day-3-content .day-list-item.day-break.day-event .day-list-item-img img{
  mix-blend-mode: normal;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
  position: absolute;
}


#day-1-content .day-list-item.day-break.day-event .day-list-item-text,
#day-2-content .day-list-item.day-break.day-event .day-list-item-text,
#day-3-content .day-list-item.day-break.day-event .day-list-item-text
{
  max-width: 420px;
}

#day-1-content .day-list-item.day-break.day-event a,
#day-2-content .day-list-item.day-break.day-event a,
#day-3-content .day-list-item.day-break.day-event a
{
  width: 101px;
    height: 48px;
    border-radius: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--main-col);
    color: white;
    transition: all 0.3s ease;
    margin-top: 8px;
}

#day-1-content .day-list-item.day-break.day-event .day-list-item-img,
#day-2-content .day-list-item.day-break.day-event .day-list-item-img,
#day-3-content .day-list-item.day-break.day-event .day-list-item-img

{
  /*max-width: 282px;*/
  min-height: 100%;
  max-height: 100%;
}

#day-1-content .day-list-item.day-break.day-event .day-item-text-par,
#day-2-content .day-list-item.day-break.day-event .day-item-text-par,
#day-3-content .day-list-item.day-break.day-event .day-item-text-par
{
  color: #384243;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width:1024px) {
  #day-1-content .day-list-item.day-break.day-event .day-list-item-img,
#day-2-content .day-list-item.day-break.day-event .day-list-item-img,
#day-3-content .day-list-item.day-break.day-event .day-list-item-img

{
  bottom: initial;
  max-width: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: initial;
}
#day-1-content .day-list-item.day-break.day-event,
  #day-3-content .day-list-item.day-break.day-event,
    #day-2-content .day-list-item.day-break.day-event{
      min-height: 450px;
      display: flex;
    align-items: flex-end;
}
#day-1-content .day-list-item.day-break.day-event .day-list-item-img img, 
#day-2-content .day-list-item.day-break.day-event .day-list-item-img img, 
#day-3-content .day-list-item.day-break.day-event .day-list-item-img img{
  width: 100%;
}
}

/* Адаптивные стили */
@media (max-width: 768px) {
  .all-days-container {
    flex-direction: column;
  }

  .day-column {
    width: 100%;
  }

  .day-bottom-item {
    margin-bottom: 15px;
  }

  .day-list-item {
    padding-left: 15px;
  }

  .day-item-text-time {
    font-size: 20px;
  }

  .day-item-text-title {
    font-size: 16px;
  }

  .day-item-text-par {
    font-size: 14px;
  }
}

.page-3 .satin-back {
  position: relative;
  z-index: 5;
}

.org-block {
  position: relative;
  max-width: 100%;
}

.org-block .org-img-left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.org-block .org-img-right {
  bottom: -190px;
  position: absolute;
  right: -800px;
  z-index: -1;
}

.org-block h1 {
  font-family:  Involve;
  font-weight: 600;
  font-size: clamp(32px, calc((56px - 32px) * (100vw - 992px) / (1440px - 992px) + 32px), 56px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--main-col);
  margin-bottom: 40px;
}

.org-block .org-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 200px;
}

.org-block .org-inner .org-item {
  padding: 0;
}

.org-block .org-inner .contacts-profile {
  display: flex;
  color: #384243;
  font-size: 16px;
  font-weight: 700;
}

.org-block .org-inner .org-item-text {
  margin-bottom: 20px;
  max-width: 500px;
  font-family:  Involve;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(20px, calc((24px - 20px) * (100vw - 992px) / (1440px - 992px) + 20px), 24px);
  line-height: 1;
  letter-spacing: 0%;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
}

.org-block .org-inner .org-item-par {
  max-width: 500px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #384243;
}

.org-block .org-inner .contacts_inner-item .contacts-link {
  color: #7a7b84;
  font-weight: 400;
}

.org-block .org-inner .contacts_inner-item .contacts-link a {
  text-transform: none;
  color: var(--main-col);
}

.org-block .org-inner .contacts_inner-item .contacts-link a.dark {
  color: #384243;
}

.org-block .org-inner .contacts_inner-item .contacts-profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.org-block .org-inner .contacts_inner-item .contacts-profile p {
  margin: 0;
  opacity: 1;
  color: #384243;
  font-size: 16px;
  font-weight: 700;
}

.org-block .org-inner .contacts_inner-item .contacts-profile p span {
  color: #7a7b84;
  font-weight: 400;
}

.org-block .org-inner.white {
  padding: 80px 77px;
  background-color: white;
  border-radius: 16px;
}

.org-block .org-inner.white .org-item-text {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  color: #384243;
  max-width: 420px;
  text-transform: none;
}

.org-block .org-inner.white .org-item-text:last-child {
  margin-bottom: 0;
}

.dop-text h2 {
  font-family:  Involve;
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.dop-text p {
  
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  margin-bottom: 40px;
}


.place_bot {
  display: flex;
  flex-direction: column;
}

.place_bot .place_bot-item {
  padding: 40px 0;
  display: flex;
  border-top: 1px solid #dfe0e6;
  justify-content: space-between;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
}

.place_bot .place_bot-item:nth-child(1) {
  border: none;
  padding: 0 0 40px 0;
}

.place_bot .bot-item-map {
  width: 100%;
  max-width: 495px;
}

.place_bot .bot-item-map .item-map-title {
  font-size: clamp(24px, calc((32px - 24px) * (100vw - 992px) / (1440px - 992px) + 24px), 32px);
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-family:  Involve;
  font-weight: 700;
  line-height: 1;
  color: #384243;
  margin-bottom: 24px;
}

.place_bot .bot-item-map .item-map-title span {
  color: #7a7b84;
  text-transform: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  font-size: 18px;
}

.place_bot .bot-item-map .item-map-title span span {
  color: #0052f1;
}

.place_bot .bot-item-map .item-map-par {
  
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #384243;
  margin-bottom: 20px;
}

.place_bot .bot-item-map .item-map-yan {
  max-width: 494px;
  width: 100%;
  height: 284px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.place_bot .bot-item-map .item-map-btns {
  display: flex;
  gap: 10px;
}

.place_bot .bot-item-map .item-map-btns button {
  background-color: white;
  border: 1px solid var(--main-col);
  color: var(--main-col);
  transition: all 0.3s ease;
}

.place_bot .bot-item-map .item-map-btns button:hover {
  background-color: var(--main-col);
  color: white;
}

.place_bot .bot-item-img {
  max-width: 680px;
  width: clamp(335px, calc(72.18vw - 330.46px), 680px);
  border-radius: 16px;
}

.place_bot .bot-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.place_bot.hide {
  display: none;
}

.place_bot.show {
  display: flex;
  animation: fadeInUp 0.7s ease forwards;
}

.org-block-info {
  margin: 40px 0 60px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.org-block-info p {
  font-family:  Involve;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  max-width: 494px;
}

.org-block-info p:nth-child(2) {
  max-width: 560px;
  
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #384243;
}

.org-block-info p:nth-child(2) a:nth-child(1) {
  color: var(--main-col);
  text-decoration: underline;
}

.org-block-info p:nth-child(2) a:nth-child(2) {
  font-weight: 700;
  color: #384243;
}

.stated-inner {
  color: #384243;
  margin-bottom: 40px;
  flex-direction: column;
  display: flex;
  /* gap: 20px; */
  justify-content: space-between;
}

.stated-inner .stated-inner-img{
  max-height: 686px;
  margin-bottom: 40px;
}

.stated-inner .stated-inner-text{
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
} 

.stated-inner-textBox{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-end;
}

.stated-inner .stated-inner-subtitle {
  font-weight: 500;
  font-size: clamp(18px, calc((24px - 18px) * (100vw - 992px) / (1440px - 992px) + 18px), 24px);
  line-height: 1.2;
  color: var(--main-col);
  margin-bottom: 40px;
  max-width:1013px;
}

.stated-inner .stated-inner-attention{
  font-size: 24px;
  font-weight: 500;
  color: var(--main-col);
  max-width: 494px;
}

.stated-inner .stated-inner-par {
  font-weight: 500;
  font-size: clamp(14px, calc((18px - 14px) * (100vw - 992px) / (1440px - 992px) + 14px), 18px);
  line-height: 1.5;
  max-width:906px;
  margin-bottom: 20px;
}

.stated-inner .stated-inner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.stated-inner .stated-inner-slider {
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: 16px;
}

.stated-inner .stated-inner-text {
  align-items: start;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.stated-inner .stated-inner-text b{
  font-size: 18px;
  font-weight: 700;
}

.stated-inner .stated-inner-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.stated-inner .stated-inner-text.with-svg ul li{
  display: flex;
  gap: 10px;
}
.stated-inner .stated-inner-text ul li svg{ 
  min-width: 15px;
}

.stated-inner .stated-inner-text a {
  color: var(--main-col);
  text-decoration: underline;
}

.stated-inner .stated-inner-text:last-child {
  margin-bottom: 0;
}

.iComing-box {
  display: grid;
  grid-template-areas: "frame loader loader" "text loader loader";
  justify-content: space-between;
  justify-items: flex-end;
}

.iComing-box .iComing-box-frames {
  grid-area: frame;
  display: flex;
  gap: 13px;
  margin-bottom: 40px;
  overflow: auto;
  justify-self: flex-start;
}

.iComing-box .iComing-box-frames .iComing-box-frame {
  width: clamp(80px, calc(16.74vw - 74.31px), 160px);
  height: clamp(100px, calc(20.08vw - 85.17px), 196px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding: 8px;
}

.iComing-box .iComing-box-frames .iComing-box-frame img {
  width: clamp(64px, calc(16.74vw - 90.31px), 144px);
  height: clamp(84px, calc(20.08vw - 101.17px), 180px);
  object-fit: cover;
  border-radius: 16px;
  z-index: 2;
  padding: 5px;
}

.iComing-box .iComing-box-frames .iComing-box-frame::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(70px, calc(16.74vw - 84.31px), 150px);
  height: clamp(90px, calc(20.08vw - 95.17px), 186px);
  background-color: white;
  border-radius: 16px;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .iComing-box .iComing-box-frames .iComing-box-frame::before {
    max-width: 125px;
  }
}

.iComing-box .iComing-box-frames .iComing-box-frame.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(51.12deg, #FFA3E0 5.88%, #57D3EB 58.48%, #D2E6F8 99.75%);
  border-radius: 16px;
  z-index: -1;
}

.iComing-box .box-text-inner {
  grid-area: text;
  max-width: 680px;
  
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #384243;
}

.iComing-box .box-text-inner ol {
  margin-bottom: 40px;
  padding-left: 2rem;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.iComing-box .box-text-inner ol li {
  
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #384243;
}

.iComing-box .box-text-inner p {
  
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.iComing-box .iComing-box-text {
  font-family:  Involve;
  font-weight: 500;
  color: var(--main-col);
  font-size: clamp(18px, calc((24px - 18px) * (100vw - 992px) / (1440px - 992px) + 18px), 24px);
  line-height: 1.5;
  margin: 40px 0 0 0 ;
}

.iComing-box .iComing-box-hash {
  font-family:  Involve;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  margin-top: 10px;
  color: var(--main-col);
}

.iComing-box .iComing-box-loader {
  grid-area: loader;
  max-width: 494px;
  width: clamp(335px, calc(33.26vw + 28.31px), 494px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.iComing-box .iComing-box-loader button {
  width: 100%;
}

.iComing-box .iComing-box-downloaded {
  width: 100%;
  height: 618px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-direction: column;
  border: 3px solid #bdcbd3;
  border-radius: 16px;
  margin-bottom: 20px;
  border-style: dashed;
}

.partners-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 100px;
}

.partners-box .partners-box-item .partners-box-title {
  font-family: Involve;
  font-weight: 700;
  font-size: clamp(20px, calc((32px - 20px) * (100vw - 992px) / (1440px - 992px) + 20px), 32px);
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 20px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.partners-box .partners-box-item .partners-box-title img{
  bottom: 0;
  right: 0;
  position: absolute;
  height: 80px;
  mix-blend-mode: overlay;
}

.partners-box .partners-box-item .partners-box-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.partners-box .partners-box-item .box-inner-image {
  width: clamp(100px, calc(31.38vw - 189.33px), 250px);
  height: clamp(100px, calc(31.38vw - 189.33px), 250px);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.partners-box .partners-box-item .box-inner-image a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.partners-box .partners-box-item .box-inner-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  border-radius: 8px;
}

.partners-box .partners-box-item.general .partners-box-title {
  background: linear-gradient(85.59deg, #FDEEF8 0%, #82F1FA 92.85%);
  color: var(--main-dark);
}

.partners-box .partners-box-item.platinum .partners-box-title {
  background: linear-gradient(90deg, #EFF5F7 0.66%, #F7F9F9 44.47%, #E3E6E9 99.71%);
  color: #384243;
}

.partners-box .partners-box-item.gold .partners-box-title {
  background: linear-gradient(90deg, #F7E79B 0%, #F5C365 47.92%);
  color: #523E25;
}

.partners-box .partners-box-item.member .partners-box-title {
  background: #A2E1E7;
  color: white;
}

.partners-box .partners-box-item.partner .partners-box-title {
  background: #F7D2EA;
  color: white;
}

.partners-box .partners-box-item.welcome .partners-box-title {
  background: linear-gradient(270deg, #F3C9E5 0.41%, #CBDEEF 49.86%, #B7EEF4 99.26%);
  color: var(--main-dark);
}

.partners-box .partners-box-item.gala .partners-box-title {
  background: linear-gradient(262.44deg, #099BA8 34.69%, #0C6B73 84.25%);
  color: #ffffff;
}

.options-inner h3 {
  font-size: clamp(32px, calc(3.77vw - 2.72px), 50px);
  color: var(--main-col);
  margin-bottom: 60px;
}

.options-inner .options-inner-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.options-inner .options-inner-cards .options-inner-card {
  background-color: white;
  border-radius: 16px;
  color: #384243;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  width: clamp(350px, calc(6.28vw + 292.13px), 380px);
}

.options-inner .options-inner-cards .options-card-title {
  font-family:  Involve;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #384243;
}

.options-inner .options-inner-cards .options-card-attention{
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  padding: 12px;
  color: var(--main-dark);
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
}

.options-inner .options-inner-cards .options-card-subTitle {
  color: #384243;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}

.options-inner .options-inner-cards .options-card-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding-left: 27px;
  margin: 20px 0;
  position: relative;
}
.options-inner .options-inner-cards .options-card-text::after{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 15px;
  height: 15px;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgNy4wNzEwNEw0Ljc4NTUzIDQuNzg1NTFMNy4wNzEwNyAtMi4yNzc5N2UtMDVMOS4zNTY2IDQuNzg1NTFMMTQuMTQyMSA3LjA3MTA0TDkuMzU2NiA5LjM1NjU4TDcuMDcxMDcgMTQuMTQyMUw0Ljc4NTUzIDkuMzU2NThMMCA3LjA3MTA0WiIgZmlsbD0iIzA5OUJBOCIvPgo8L3N2Zz4K');
}

.options-inner .options-inner-cards .options-card-par {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  padding-left: 27px;
}

.options-inner .options-inner-cards .options-card-button {
  margin-top: auto;
  background-color: white;
  color: var(--main-col);
  border: 1px solid var(--main-col);
  border-radius: 58px;
  padding: 10px 24px;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.options-inner .options-inner-cards .options-card-button:hover {
  background-color: var(--main-col);
  color: white;
}

.overlay {
  z-index: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #1f201f;
  transition: all 0.5s ease;
}

.overlay.active {
  pointer-events: all;
  opacity: 0.6;
  z-index: 100;
}

.popups {
  transform: translate(-50%, -1000%);
  overflow: hidden;
  background-color: white;
  border-radius: 16px;
  z-index: 0;
  position: fixed;
  top: 20%;
  left: 50%;
  height: fit-content;
  max-height:600px;
  overflow: auto;
  transition: all 0.5s ease;
  padding: 20px;
  max-width: 600px;
  overflow-y: auto;
  width: 100%;
}

.popups.active {
  z-index: 101;
  transform: translate(-50%, 0);
}

.popups .modal-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popups .modal-inner-top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.popups .modal-top-img {
  max-width: 190px;
  width: 100%;
  height: 230px;
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  border-radius: 17px;
  overflow: hidden;
  padding: 10px 10px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  transition: all 0.3s ease;
}

.popups .modal-top-img img {
  border-radius: 0 0 16px 16px;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
}

.popups .modal-top-img::after {
  position: absolute;
  border-radius: 100%;
  width: 156px;
  height: 179px;
  content: "";
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(0deg, #80d1ff, #80d1ff), #d9d9d9;
  filter: blur(50px);
  transform: rotate(90deg);
}

.popups .modal-top-about {
  min-width: 310px;
  max-width: 320px;
}

.popups .modal-top-about .modal-top-name {
  font-family:  Involve;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--main-col);
  margin-bottom: 10px;
}

.popups .modal-top-about .modal-top-pos {
  
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #7a7b84;
  margin-bottom: 4px;
}

.popups .modal-top-about .modal-top-city {
  
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #384243;
}

.popups .modal-bot-text {
  
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popups .modal-bot-text span {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--main-col);
}

.popups .modal-bot-text ol {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.popups .modal-bot-text ol li {
  
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #384243;
}

.popups .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.popups.modalOption {
  padding: 60px 40px;
  height: 80vh;
}

.popups.modalOption .modal-bot-text {
  gap: 20px;
}

.popups.modalOption .how-case-title {
  font-family:  Involve;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0%;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  color: var(--main-col);
}

.popups.modalOption .how-case-text {
  
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popups.modalOption .how-case-text a {
  text-decoration: underline;
  color: var(--main-col);
}

.popups.modalOption .how-case-text ol {
  padding-left: 2rem;
}

.popups.modalOption .how-case-text span {
  
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--main-col);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line {
  fill: none;
  stroke: var(--main-col);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1), transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line-top {
  stroke-dasharray: 19 19;
}

.hamburger .line-middle {
  stroke-dasharray: 19 19;
}

.hamburger .line-bottom {
  stroke-dasharray: 12 12;
}

.hamburger.active svg {
  transform: rotate(0deg);
}

.hamburger.active svg .line-top {
  transform: translate(0px, -5px) rotate(45deg);
  stroke-dasharray: 10 19;
  stroke-dashoffset: 0;
}

.hamburger.active svg .line-middle {
  stroke-dasharray: 10 19;
  stroke-dashoffset: -19;
}

.hamburger.active svg .line-bottom {
  transform: translate(-4px, 3px) rotate(-45deg);
  stroke-dasharray: 10 19;
  stroke-dashoffset: 0;
}

.menu {
  padding: 20px 0;
  position: fixed;
  bottom: -1000%;
  height: calc(100% - 62px);
  width: 100%;
  z-index: 99;
  background-color: white;
  transition: all 1s ease-in-out;
}

.menu.active {
  bottom: 0;
}

.menu .menu__title {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(31, 32, 31, 0.3);
  margin-bottom: 13px;
}

.menu .m-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.menu .whatsapp-block {
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.menu .whatsapp-block .main-btn {
  padding: 8px 18px;
}

.menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  /* align-items: center; */
}

.menu ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--main-col);
  padding: 16px 0;
  border-bottom: 1px solid #F9FAFA;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu ul li a {
  font-size: 18px;
  font-weight: 500;
  color: var(--main-col);
}

.menu button{
  width: 100%;
  max-width: 100%;
}

.menu .menu-dropdown {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* justify-content: center; */
  /* gap: 20px 3px; */
}

.menu .menu-dropdown .burger-menu {
  display: none;
  margin: 16px 0 0 20px;
  flex: 1 0 100%;
  flex-wrap: wrap;
}
.menu-dropdown svg{
  transition: all 0.3s ease;
}
.menu-dropdown.open svg{
  transform: rotate(180deg);
}
.menu .menu-dropdown .burger-menu ul{
display: flex;
  align-content: center;
  justify-content: flex-start;
  text-align: center;
  gap: 10px;

}

.menu .menu-dropdown .burger-menu a{
  font-size: 16px;
  font-weight: 500;
  color: #384243;
}

.phone_block {
  z-index: 10;
  width: 100%;
  position: fixed;
  bottom: 70px;
}

.overlay_phone {
  animation: pulse 2s infinite ease-in-out;
  transform: translateX(120px);
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* right: -90%; */
  
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
}

.overlay_phone .back-one {
  position: absolute;
  background: transparent;
  border-radius: 100%;
  content: "";
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
  z-index: 3;
  width: 108px;
  height: 108px;
  background: linear-gradient(225.02deg, #FFB5E6 17.36%, #00E4F8 89.35%);

  /* background: linear-gradient(176.06deg, #f7e79b -7.09%, #f5c365 44.58%, #f8a504 91.95%, #fcfde9 115.94%); */
}

.overlay_phone .back-two {
  z-index: 2;
  position: absolute;
  background: transparent;
  border-radius: 100%;
  content: "";
  width: 120px;
  height: 120px;
  background: linear-gradient(197.83deg, #FDEEF8 10.49%, #82F1FA 88.1%);
  box-shadow: 4px 4px 16px 0px #39B5C04D;

  /* background: linear-gradient(86.06deg, #f7e79b -9.29%, #f5c365 42.38%, #f8a504 89.75%, #fcfde9 113.74%); */
  /* box-shadow: 0px 4px 16px 0px var(--main-col)1a; */
}

.overlay_phone .text {
  z-index: 5;
  position: relative;
  font-size: 18px;
}

.with-svg {
  display: flex;
  align-items: center;
}

.with-svg svg {
  min-width: fit-content;
}

.underline {
  text-decoration: underline;
}

.underline:hover {
  text-decoration: none;
}

/* .satin-back {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
} */

.satin-back {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}

.satin-back .satin-back-img{
  position: absolute;
  top: 0;
  height: 710px;
  width: 830px;
  /* right: 0; */
  /* width: 100%; */
  /* height: 100%; */
  object-fit: cover;
  z-index: 1;
}

@media (max-width:1024px) {
  .satin-back .satin-back-img{
    left: 110px;
    object-position: left;
  }
}

.newSatin-back{
  /* overflow: hidden; */
  background: linear-gradient(213deg, rgba(242, 192, 225, 0.533333) 5.52%, #D2E6F8 52.13%, #17D8E9 110.75%);
}  


.satin-back video {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.m-none {
  display: block;
}

.m-flex-none {
  display: flex;
}

.pc-none {
  display: none;
}

.pc-flex-none {
  display: none;
}

footer .container {
  padding: 40px 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .container p {
  max-width: 640px;
  
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  /* opacity: 0.5; */
  color: #9BAAAB;
}

footer .container .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .container .footer-links a {
  
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  /* opacity: 0.5; */
  color: #9BAAAB;
}

@media (max-width: 992px) {
  footer .container {
    padding: 40px 2rem;
    flex-direction: column-reverse;
  }

}

@media (max-width: 1400px) {
  .main-block .main-block_inner {
    max-width: 650px;
  }

  .theatre-block .theatre_inner {
    margin-right: 0;
    padding: 60px 2rem;
  }

  .theatre-block .container::after {
    display: none;
  }

  /* .theatre-block .theatre-img {
    height: auto;
    position: relative;
  } */

  .howWas-block .container {
     padding: 0 1.6rem;
  }

  .howWas-block .howWas-inner {
     padding: 0 1.6rem;
  }

  .howWas-block .howWas-inner-item {
    max-width: 100%;
  }

  .mySwiper-5 {
     padding: 0 1.6rem;
  }

  .mySwiper-5 .reviews_inner-item {
    max-width: 100%;
  }

  .phone_block {
    right: 0;
    width: 120px;
    bottom: 50px;
    top: inherit;
  }

  .phone_block .container {
    padding: 0;
  }

  .phone_block .overlay_phone {
    transform: translateX(-30px);
    right: 30px;
  }

  .reviews-block_inner .iComing-box {
    display: grid;
    grid-template-areas: "frame loader loader loader loader loader loader" "text loader loader loader loader loader loader";
    justify-content: space-between;
    justify-items: flex-end;
  }

  .reviews-block_inner .iComing-box .iComing-box-frames {
    max-width: 580px;
  }

  .reviews-block_inner .iComing-box .box-text-inner {
    grid-area: text;
    max-width: 580px;
    justify-self: flex-start;
  }

  .reviews-block_inner .iComing-box html {
    overflow-x: hidden;
  }
}

@media (max-width: 1300px) {
  .theatre-block .theatre_inner {
    margin-right: 0;
    gap: 20px;
    max-width: 420px;
  }

  .theatre-block .theatre_inner .container::after {
    display: none;
  }

  .theatre-block p {
    font-size: 16px;
  }

}

@media (max-width: 1200px) {
  .header img {
    width: 50px;
    height: 50px;
  }

  .header .header_inner {
    gap: 12px;
  }

  .header nav ul {
    gap: 12px;
  }

  .speakers-block svg {
    margin: 0 0 20px 0;
  }

  .iComing-block .iComing-img-back {
    display: none;
  }

  .org-img-left {
    display: none;
  }

  .tariffs-block_inner .tariffs-block-item {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1050px) {
  .header .header_btns button {
    font-size: 13px;
    padding: 8px 16px;
    height: 34px;
  }

  .speakers-block .speakers-gallery {
    align-items: start;
  }

  .iComing-block {
    overflow: hidden;
  }

  .theatre-block .container {
    flex-direction: column;
    padding: 40px 16px;
  }

  .theatre-block .theatre_inner {
    margin: 0 ;
    padding: 0;
  }

  .theatre-block .theatre-img {
    /* right: 0; */
    align-self: flex-end;
    /* height: 430px; */
    /* object-fit: cover; */
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    /* background-image: url(./../img/picture/theatre1.png);
    background-image: url('./../img/picture/1-ushakova.jpg'); */
    width: 100%;
  }

  .theatre-block .theatre-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fond-block .fond_inner {
    margin: 20px 0 40px 0;
    justify-content: center;
    gap: 40px;
  }
  .fond-block a{
    max-width: 100%;
    width: 100%;
  }
  .fond-block a button{
    max-width: 100%;
    width: 100%;
  }

  .fond-block .fond_inner .fond-item {
    width: fit-content;
  }

  .fond-block .fond_inner .fond-item .fond-item-img {
    margin-bottom: 28px;
  }

  .fond-block .fond_inner .fond-item .fond-text {
    font-size: 16px;
  }

  .fond-block .fond_inner .fond-item:nth-child(2) {
    padding: 0;
    border: none;
  }

  .fond-block .fond_inner .fond-item:nth-child(3) {
    padding: 0;
    border: none;
  }
}



@media (max-width: 992px) {
  .container {
     padding: 0 1.6rem;
  }

  .pt-100 {
    padding-top: 70px;
  }

  .bread {
    display: flex;
    align-items: center;
    overflow-x: auto;
    margin-top: 10px;
    margin-bottom: 28px;
  }

  .header .header_inner {
    padding: 10px 0;
  }

  .header img {
    margin-left: auto;
  }

  .header .header_btns {
    margin-left: 27px;
  }

  .main-block {
    display: flex;
    flex-direction: column-reverse;
  }

  .main-block .main-block_inner {
    max-width: 650px;
    padding: 40px 0 244px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: flex-start;
  }

  .main-block .main-block_inner .title-main{
    text-align: left;
  }
  .main-block .notes-item{
    align-items: start;
  }
  .main-block .notes-item{
    align-items: start;
  }

  .main-block img {
    /* position: relative; */
    /* margin: 0 auto; */
    left: -9px;
    bottom: 0px;
    /* left: inherit; */
  }

  .main-block .main-block_notes {
    margin-top: 28px;
    flex-direction: column;
    align-items: start;
  }

  .main-block .main-block_notes .notes-item-title {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .main-block .main-block_notes .notes-item-text {
    font-size: 13px;
    text-align: left;
  }

  .main-block .main-block_notes .notes-item-text span {
    font-size: 13px;
    max-width: 270px;
  }

  .timer-block h2 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .timer-block .timer-line {
    display: none;
  }

  .timer-block .timer-block-clock {
    gap: 0;
  }

  .timer-block .timer-block-clock svg {
    min-width: 14px;
    width: 14px;
    height: 14px;
  }

  .timer-block .timer-block-clock .clock-title {
    font-size: 32px;
    height: 43px;
    width: 70px;
  }

  .timer-block button {
    margin: 20px auto 0;
  }

  .speakers-block .speakers-text {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .speakers-block h2 {
    padding-left: 2rem;
  }

  .speakers-block .speakers-block_inner {
    padding: 60px 0;
    grid-template-areas: "title" "gallery" "text";
  }

  .speakers-block .speakers-gallery {
    flex-wrap: nowrap;
    gap: 4px;
    overflow: auto;
    max-width: 100%;
    justify-content: start;
    margin: 40px 0 46px 0;
  }

  .speakers-block .speakers-gallery::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .speakers-block .speakers-gallery .speakers-item {
    flex: 1 0 45%;
    max-width: 165px;
  }

  .speakers-block .speakers-gallery .speakers-position {
    max-width: 170px;
  }

  .speakers-block .speakers-gallery .speakers-name {
    font-size: 13px;
  }

  .iComing-block .container {
    display: flex;
    flex-direction: column-reverse;
  }

  .iComing-block .iComing-text {
    padding: 0px 0 0 0;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
  }
  .iComing-block .iComing-text p{
    font-size: 14px;
  }
  .iComing-block .main-btn{
    margin-top: 20px;
  }
  

  .iComing-block .iComing-img {
    position: relative;
    min-width: 650px;
    transform: translate(-50%, 0%);
    left: 50%;
    /* margin-top: -70px; */
  }

  .theatre-block .theatre-btns {
    /* margin-top: 20px; */
  }

  .programm-inner {
    padding-top: 60px;
  }

  .programm-inner .programm-inner-title {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .programm-inner .programm-inner-title .programm-title-list {
    gap: 20px;
    font-size: 13px;
  }

  .programm-inner .programm-inner-title .programm-title-list ul li {
    gap: 5px;
    font-size: 16px;
    align-items: flex-start;
    text-transform: none;
  }

  .programm-inner .programm-inner-list {
    align-items: flex-start;
    padding: 20px 0;
    flex-direction: column;
    gap: 10px;
  }

  .programm-inner .programm-inner-list .programm-list-text {
    width: 100%;
    margin: 0;
  }

  .programm-inner .programm-inner-list .programm-list-button {
    margin: 0 0 0 auto;
  }

  .film-block {
    padding: 60px 0;
  }

  .film-block h2 {
    margin-bottom: 20px;
  }

  .film-block .film-block-item {
    width: 100%;
    max-width: 100%;
  }

  .film-block .film-block-item .film-item-media {
    width: 100%;
    max-width: 100%;
    height: 240px;
  }

  .film-block .film-block-item .film-item-text {
    max-width: 335px;
  }

  .partners-block.inside {
    justify-content: center;
  }

  .partners-block.inside .partners-item-case {
    max-width: 335px;
    align-items: center;
    text-align: center;
  }

  .swiper-pagination-2,
  .swiper-pagination-4,
  .swiper-pagination-5 {
    margin-top: 20px;
    max-width: 100% !important;
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .howWas-block .howWas-inner {
     padding: 0 1.6rem;
  }

  .howWas-block .howWas-bottom {
    flex-direction: column;
    gap: 40px;
  }

  .howWas-block .howWas-title-box {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-bottom: 20px;
  }

  .tariffs-block {
    background: #F9FAFA;
    padding: 40px 0;
    max-width: 100%;
  }

  .tariffs-block h2 {
    margin-bottom: 20px;
  }

  .tariffs-block_inner .tariffs-block-item {
    padding: 20px;
  }

  .tariffs-block_inner .tariffs-block-item .tariffs-items-anothPrice {
    margin-top: auto;
    margin-bottom: 24px;
  }

  .tariffs-block_inner .tariffs-block-item .tariffs-item-position {
    font-size: 12px;
  }

  .tariffs-block_inner .tariffs-block-item .tariffs-item-price {
    font-size: 40px;
    margin-bottom: 8px;
  }

  .tariffs-block_inner .tariffs-block-item .tariffs-item-date {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .tariffs-block_inner .tariffs-block-item .tariffs-item-list li {
    font-size: 16px;
  }

  .reviews-block h2 {
    margin-bottom: 20px;
  }

  .reviews-block .reviews-block_inner {
    padding: 0 1.6rem;
  }

  .reviews-block .reviews-block_inner .reviews_inner-item {
    padding: 20px 16px;
  }

  .contacts-block {
    padding: 60px 0 200px 0;
  }

  .contacts-block .container {
     padding: 0 1.6rem;
  }

  .contacts-block .contacts-link {
    font-size: 13px;
  }

  .contacts-block .contacts_inner {
    flex-direction: column;
    gap: 40px;
  }

  .contacts-block .contacts_inner .contacts_inner-item {
    gap: 20px;
  }

  .contacts-block .contacts_inner .contacts_inner-item:nth-child(2) {
    display: grid;
    grid-template-areas: "text btns" "text btns" "text btns";
    justify-content: space-between;
  }

  .contacts-block .contacts_inner .contacts_inner-item .contacts-item-text {
    grid-area: text;
    font-size: 16px;
  }

  .contacts-block .contacts_inner .contacts_inner-item .contacts-item-btns {
    justify-items: flex-end;
    grid-area: btns;
    max-width: 300px;
  }

  .contacts-block .contacts-item-btns button {
    width: 100%;
    max-width: 100%;
  }

  .progDays-top {
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .progDays-top .progDays_tabs {
    gap: 20px;
    overflow: auto;
  }

  .progDays-top .progDays_tabs::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .progDays-top .proDays_tabs-item {
    font-size: 14px;
    min-width: fit-content;
    letter-spacing: 0.5px;
  }

  .progDays-block .progDays-inner .progDays-bottom {
    gap: 40px;
  }

  .progDays-block .progDays-inner .progDays-bottom .bottom-item {
    flex-direction: column;
  }

  .progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item {
    flex-wrap: wrap;
  }

  .progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item .list-item-text .item-text-title {
    font-size: 16px;
  }

  .progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item .list-item-text .item-text-title p {
    font-size: 13px;
  }

  .progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item .list-item-text .item-text-par {
    font-size: 13px;
  }

  .progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.with-sponsor {
    padding: 15px 0 15px 20px;
  }

  .progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.with-sponsor .list-item-text {
    padding: 0;
    max-width: 460px;
  }

  .progDays-block .progDays-inner .progDays-bottom .bottom-item .list-item.with-sponsor .list-item-img {
    margin-top: 0;
  }

  .progDays-block .progDays-inner .progDays-bottom .bottom-item.main .bottom-item-title {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contacts-profile img {
    width: 50px;
    height: 50px;
  }

  .org-block .org-inner {
    padding-bottom: 100px;
  }

  .org-block .org-img-right {
    min-width: 900px;
    right: -450px;
  }

  .place_bot .place_bot-item {}

  .dop-text h2 {
    font-size: 24px;
  }

  .dop-text p {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .place_bot .bot-item-map {
    max-width: 495px;
  }

  .place_bot .bot-item-map .item-map-title {
    margin-bottom: 20px;
  }

  .place_bot .bot-item-map .item-map-title span {
    font-size: 16px;
  }

  .place_bot .bot-item-map .item-map-par {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .place_bot .bot-item-map .item-map-yan {
    margin-bottom: 10px;
  }

  .place_bot .bot-item-map .item-map-yan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .place_bot .bot-item-map .item-map-btns {
    flex-wrap: wrap;
    width: 100%;
  }

  .place_bot .bot-item-map .item-map-btns a {
    max-width: 100%;
    width: 100%;
  }
  .place_bot .bot-item-map .item-map-btns button {
    max-width: 100%;
    width: 100%;
    background-color: white;
    border: 1px solid var(--main-col);
    color: var(--main-col);
    transition: all 0.3s ease;
  }

  .place_bot .bot-item-map .item-map-btns button:hover {
    background-color: var(--main-col);
    color: white;
  }

  .place_bot .bot-item-img {
    max-width: 680px;
    /* width: clamp(335px, calc(72.18vw - 330.46px), 680px); */
    border-radius: 16px;
    width: 100%;
    margin: 0 auto;
  }

  .place_bot .bot-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }

  .org-block-info p:nth-child(2) {
    font-size: 16px;
  }

  .stated-inner .stated-inner-subtitle {
    margin-bottom: 20px;
  }

  .stated-inner .stated-inner-par {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .stated-inner .stated-inner-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
  }

  .stated-inner .stated-inner-btns button {
    width: 100%;
    max-width: 100%;
  }

  .stated-inner .stated-inner-slider {
    margin-bottom: 40px;
  }

  .stated-inner .stated-inner-text {
    font-size: 16px;
  }

  .iComing-box {
    display: grid;
    grid-template-areas: "frame " "loader" "text";
    justify-content: space-between;
    justify-items: center;
  }

  .iComing-box .iComing-box-frames {
    max-width: 100%;
    justify-self: flex-start;
    margin-bottom: 28px;
    gap: 5px;
  }

  .iComing-box .iComing-box-frames .iComing-box-frame {
    width: 80px;
    height: 100px;
  }

  .iComing-box .iComing-box-frames .iComing-box-frame img {
    width: 64px;
    height: 84px;
  }

  .iComing-box .box-text-inner {
    grid-area: text;
    max-width: 100%;
    justify-self: flex-start;
  }

  .iComing-box .iComing-box-loader {
    margin-bottom: 20px;
  }

  .iComing-box .iComing-box-loader .iComing-box-downloaded {
    height: 418px;
  }

  .iComing-box .box-text-inner {
    font-size: 16px;
  }

  .iComing-box .box-text-inner ol {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .iComing-box .box-text-inner ol li {
    font-size: 16px;
  }

  .iComing-box .box-text-inner p {
    font-size: 18px;
  }

  .partners-box-item .partners-box-inner {
    gap: 16px;
  }

  .org-block .org-inner.white {
    padding: 0;
    background-color: transparent;
  }

  .none {
    display: none !important;
  }

  .m-none {
    display: none !important;
  }

  .m-flex-none {
    display: none !important;
  }

  .pc-none {
    display: flex !important;
  }

  .pc-flex-none {
    display: flex !important;
  }
}

@media (max-width: 819px) {
  .popups {
    border-radius: 0;
    top: 70px;
    bottom: 0;
    overflow-y: auto;
  }

  .popups .modal-inner-top {
    gap: 13px;
  }

  .popups .modal-top-about .modal-top-name {
    font-size: 24px;
  }

  .popups .modal-bot-text {
    font-size: 13px;
  }

  .popups.modalOption {
    width: 100vw;
    max-width: 100vw;
    height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    padding: 40px 30px;
  }
}

@media (max-width: 650px) {
  .list-item.break {
    min-height: 150px;
  }

  .list-item.break .list-item-img {}

  .theatre-block .theatre-img {
    right: 0;
    /* min-width: 750px; */
    /* height: 230px; */
    object-fit: contain;
    /* transform: translateX(100px); */
  }

  .fond-block .fond_inner {
    justify-content: start;
  }

  .fond-img-back {
    /* display: none; */
  }

  .contacts-block .contacts_inner .contacts_inner-item:nth-child(2) {
    display: grid;
    grid-template-areas: "text" "text" "text" " btns";
    justify-content: space-between;
  }

  .contacts-block .contacts_inner .contacts_inner-item .contacts-item-text {
    grid-area: text;
    font-size: 16px;
  }

  .contacts-block .contacts_inner .contacts_inner-item .contacts-item-btns {
    grid-area: btns;
    max-width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */


.hamburger.active svg .line-top {
  transform: translate(5px, -5px) rotate(45deg);
  stroke-dasharray: 10 11;
  stroke-dashoffset: -1;
}

.hamburger.active svg .line-middle {
  stroke-dasharray: 10 19;
  stroke-dashoffset: -19;
}

.hamburger.active svg .line-bottom {
  transform: translate(24px, 17px) rotate(134deg);
  stroke-dasharray: 18 20;
  stroke-dashoffset: -3;
}







/* New style (stepan) */
.iComing-box-downloaded canvas {
  max-width: 100%;
  height: 100%;
}

.iComing-box .iComing-box-downloaded {
  overflow: hidden;
}

/* .noActive.tariffs-block-item {
  opacity: .6;
  background-color: rgb(220, 220, 220);
}

.noActive.tariffs-block-item button {
  pointer-events: none;
  opacity: .4;
} */

.noActivePrice {
  opacity: .7;
  color: silver;
}

.underline-link:hover {
  text-decoration: none;
}

@media (max-width: 1050px) {
  .contacts-item-btns a {
    width: 100%;
  }
}

.howWas-inner-item,
.howWas-block .howWas-inner-item img {
  max-height: 370px;
}

.progDays-block .progDays-inner .progDays-bottom .bottom-item .bottom-item-title p {
  color: #7a7b84;
}

.speakers-block .speakers-gallery .speakers-photo img {
  border-radius: 20px;
  width: 120px;
  height: 140px;
  object-fit: cover;
  background: white;
}

/* главный контейнер программы */
.programm-inner {
    max-width: 1280px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem 1.5rem;
}

.programm-inner-title h2 {
    max-width: fit-content;
}

.programm-inner-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.themes-group {
    margin-top: 3rem;
}

.themes-subtitle {
    font-size: 3rem;
    font-weight: 500;
    color: #099ba8;
    margin: 1rem 0 1rem 0;
    letter-spacing: -0.2px;
    display: inline-block;
    padding-right: 1rem;
}

.themes-group:first-of-type .themes-subtitle {
    margin-top: 0.5rem;
}

.themes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

.theme-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 200px;
    background: linear-gradient(204deg, #FDEEF8 10.49%, #82f1fa7a 88.1%);
    border-radius: 20px;
    padding: 1.2rem 1.2rem 1.2rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.theme-card:hover {
    border-color: #cbdbe0;
    box-shadow: 0 8px 18px rgba(9, 155, 168, 0.08);
    transform: translateY(-2px);
}

.theme-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 2px;
}

.theme-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.theme-text {
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 400;
    color: #1e293b;
    letter-spacing: -0.2px;
    flex: 1;
}

/* Планшеты (от 769px до 880px) */
@media (max-width: 880px) and (min-width: 769px) {
    .theme-card {
        flex: 1 1 calc(50% - 16px);
    }
    
    .themes-subtitle {
        font-size: 2.5rem;
    }
    
    .theme-text {
        font-size: 1.5rem;
    }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    .programm-inner {
        padding: 1.5rem;
    }
    
    .themes-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .theme-card {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .themes-subtitle {
        font-size: 2rem;
        margin: 1.2rem 0 0.75rem 0;
    }
    
    .theme-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .theme-icon {
        width: 24px;
        height: 24px;
    }
}

/* Очень маленькие мобильные (до 480px) */
@media (max-width: 480px) {
    .programm-inner {
        padding: 1rem;
    }
    
    .themes-subtitle {
        font-size: 1.5rem;
    }
    
    .theme-text {
        font-size: 1rem;
    }
    
    .theme-card {
        padding: 1rem;
        gap: 10px;
    }
    
    .theme-icon {
        width: 20px;
        height: 20px;
    }
    
    .themes-grid {
        gap: 12px;
    }
}

/* Для сохранения совместимости со старым классом (если нужен) */
.box-theme_important {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .box-theme_important {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 992px) {
  .logo-url {
    margin: 0 35px 0 auto;
  }
}

.pusle {
  position: fixed;
  z-index: 5;
  bottom: -100px;
  transition: all .3s ease;
  cursor: pointer;
}

.overlay_phone {
  cursor: pointer;
}

@media (max-width: 768px) {
  .overlay_phone .back-two {
    width: 80px;
    height: 80px;
  }

  .overlay_phone .back-one {
    width: 70px;
    height: 70px;
  }

  .overlay_phone {
    width: 80px;
    height: 80px;
  }

  .overlay_phone .text {
    font-size: 14px;
  }

  .fond-block .fond-item {
    max-width: fit-content;
  }

  .partners-box .partners-box-item .partners-box-title {
    /* padding: 10px 20px; */
    /* font-size: 26px; */
  }
}


.link_zindex {
  position: relative;
  z-index: 5;
}

@media (max-width: 992px) {
  .place-block {
    padding: 0;
  }

  .place-block .place_inner {
    flex-direction: column-reverse;
  }

  .place-block .container {
    padding-left: 0;
    padding-right: 0;
  }

  .place-block .place_inner-img {
    max-width: initial;
    max-height: 375px;
  }

  .place-block .place_inner-img img {
    border-radius: 0;
  }

  .place-block .place_inner-item {
    padding: 0 16px 40px 16px;
  }

  .place-block .place_inner-item a{
    width: 100%;
    max-width: 100%;
  }
  .place-block .place_inner-item a button{
    width: 100%;
    max-width: 100%;
  }

  .place-block .place_inner-item h2{
    margin-bottom: 20px;
  }
  .place-block .place_inner-img{
    transform: none;
  }
  .place-block .place_inner-img img{
    max-height: 375px;
  }

  .place-block .place_inner-date {
    gap: 10px;
    margin-bottom: 20px;
  }
}










@media (min-width: 992px) {
  .mob-vers {
    display: none;
  }
}

@media (max-width: 992px) {
  .mob-item {
    /* background-color: rgba(1, 39, 150, 1); */
    padding: 0;
  }

  .mob-vers .cards-block-item {
    margin-bottom: 20px;
  }

  .mob-item.blue .content {
    background-color: rgba(1, 39, 150, 1);
    padding: 20px 20px 26px 20px;
  }

  .mob-item.gold .content {
    background-color: rgba(251, 248, 229, 1);
    padding: 20px 20px 26px 20px;
  }

  .mob-item .img {
    height: 220px;
    position: relative;
    top: 1px;
  }

  .mob-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cards-block-item.mob-item .cards-block-bottom {
    flex-direction: column-reverse;
  }

  .mob-item button.pY-15 {
    width: 100%;
    margin-top: 20px;
  }

  .cards-block-item.mob-item .card-blocl-date {
    font-size: 14px;
  }

  .cards-block-item.mob-item .card-blocl-date span {
    font-size: 18px;
  }

  .cards-block-item.mob-item .circle.three {
    bottom: -16px;
    left: -16px;
  }

  .cards-block-item.mob-item .circle {
    width: 32px;
    height: 32px;
  }

  .cards-block-item.mob-item .circle.four {
    bottom: -16px;
    right: -16px;
  }

  .cards-block-item.mob-item .circle.one {
    top: -16px;
    left: -16px;
  }

  .cards-block-item.mob-item .circle.two {
    top: -16px;
    right: -16px;
  }

  .cards-block-item.mob-item .cards-block-par {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }

  .cards-block-item .cards-block-title {
    font-family:  Involve;
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-variant-numeric-figure: lining-nums;
    font-variant-numeric-spacing: proportional-nums;
  }
}


#page-tarif .tariffs-block-item {
  height: 560px;
}

#page-tarif .tariffs-block_inner {
  /* display: grid; */
  /* gap: 24px; */
  /* grid-template-columns: repeat(3, 1fr); */
}

@media (max-width: 992px) {
  #page-tarif .tariffs-block_inner {
    /* grid-template-columns: repeat(2, 1fr); */
  }
}

@media (max-width: 768px) {
  #page-tarif .tariffs-block_inner {
    /* grid-template-columns: repeat(1, 1fr); */
  }
}

.theatre-block .container {
  display: flex;
}

.theatre-img {
  display: flex;
  align-items: center;
  /* padding-left: 60px; */
}

@media (max-width: 1050px) {
  .theatre-img {
    padding-left: 0;
  }
}


.partners-block.inside.show {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
  .partners-block.inside.show {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .partners-block.inside.show {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .partners-block.inside.show {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 450px) {
  .partners-block.inside.show {
    grid-template-columns: repeat(1, 1fr);
  }
}



@media (min-width: 992px) {
	.film-block .mySwiper-2_1 .film-item-media {
	  height: 500px;
	}
}

@media (max-width: 992px) {
	.mySwiper-2_1 {
		width: 100%
	}
	
	.film-block .mySwiper-2_1 .film-block-item .film-item-media {
		height: fit-content
	}
}