@charset "UTF-8";
@font-face {
  font-family: "AkzidenzGrotesk";
  src: url("../fonts/AkzidenzGrotesk/akzidenzgroteskpro_mdcn.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "AkzidenzGrotesk";
  src: url("../fonts/AkzidenzGrotesk/akzidenzgroteskpro_regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
}
*::after, *::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

img {
  display: block;
}

input {
  border: none;
  padding: 0;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  cursor: pointer;
}
button::-ms-clear, button::-ms-reveal,
input::-ms-clear,
input::-ms-reveal,
textarea::-ms-clear,
textarea::-ms-reveal,
select::-ms-clear,
select::-ms-reveal {
  display: none;
}
button::-moz-focus-inner, button::-moz-focus-outer,
input::-moz-focus-inner,
input::-moz-focus-outer,
textarea::-moz-focus-inner,
textarea::-moz-focus-outer,
select::-moz-focus-inner,
select::-moz-focus-outer {
  border: 0;
}

svg {
  pointer-events: none;
  display: block;
  height: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  outline: 0;
  cursor: pointer;
  color: initial;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@-webkit-keyframes hover-rotation {
  0% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
  20% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
}
@keyframes hover-rotation {
  0% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
  20% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
}
[data-animate] {
  opacity: 0;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  will-change: transform, opacity;
}
[data-animate].animate {
  opacity: 1;
  -webkit-transform: translate(0) scale(1);
  transform: translate(0) scale(1);
}

[data-animate=fade-up] {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

[data-animate=fade-right] {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

[data-animate=fade-left] {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}

[data-animate=zoom-in] {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

:root {
  --app-height: 100%;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  background-color: #f4f4f4;
  position: relative;
  font-family: "Inter", sans-serif, -apple-system;
  color: #363636;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container {
    width: 100%;
    max-width: 688px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (min-width: 1800px) {
  .container {
    width: 100%;
    max-width: 1768px;
    margin: 0 auto;
  }
}

h1,
.h1 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 48px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}
h1 span,
.h1 span {
  font-weight: 400;
}
@media (min-width: 375px) {
  h1,
  .h1 {
    font-size: 48px;
    line-height: 0.9;
  }
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 94px;
    line-height: 0.9;
  }
}
@media (min-width: 1280px) {
  h1,
  .h1 {
    font-size: 140px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  h1,
  .h1 {
    font-size: 200px;
    line-height: 0.9;
  }
}

h2,
.h2 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 33px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}
h2 span,
.h2 span {
  font-weight: 400;
}
h2 span.grey,
.h2 span.grey {
  font-weight: 500;
  color: #b9b9b9;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 48px;
    line-height: 0.9;
  }
}
@media (min-width: 1280px) {
  h2,
  .h2 {
    font-size: 60px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  h2,
  .h2 {
    font-size: 80px;
    line-height: 0.9;
  }
}

.h2-caption {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 33px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}
.h2-caption span {
  font-weight: 400;
}
.h2-caption span.grey {
  font-weight: 500;
  color: #b9b9b9;
}
@media (min-width: 768px) {
  .h2-caption {
    font-size: 42px;
    line-height: 0.9;
  }
}
@media (min-width: 1280px) {
  .h2-caption {
    font-size: 60px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  .h2-caption {
    font-size: 80px;
    line-height: 0.9;
  }
}

.h2-title {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}
.h2-title span {
  font-weight: 400;
}
.h2-title span.grey {
  font-weight: 500;
  color: #b9b9b9;
}
@media (min-width: 768px) {
  .h2-title {
    font-size: 48px;
    line-height: 0.9;
  }
}
@media (min-width: 1280px) {
  .h2-title {
    font-size: 60px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  .h2-title {
    font-size: 80px;
    line-height: 0.9;
  }
}

h3,
.h3 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 28px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
h3 span,
.h3 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  h3,
  .h3 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  h3,
  .h3 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  h3,
  .h3 {
    font-size: 60px;
    line-height: 0.95;
  }
}

.h3-caption {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.h3-caption span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .h3-caption {
    font-size: 48px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .h3-caption {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .h3-caption {
    font-size: 60px;
    line-height: 0.95;
  }
}

.h3-caption-2 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.h3-caption-2 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .h3-caption-2 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .h3-caption-2 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .h3-caption-2 {
    font-size: 40px;
    line-height: 0.95;
  }
}

.h3-caption-3 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.h3-caption-3 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .h3-caption-3 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .h3-caption-3 {
    font-size: 30px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .h3-caption-3 {
    font-size: 40px;
    line-height: 0.95;
  }
}

.h3-caption-4 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.h3-caption-4 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .h3-caption-4 {
    font-size: 48px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .h3-caption-4 {
    font-size: 60px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .h3-caption-4 {
    font-size: 80px;
    line-height: 0.95;
  }
}

.h3-caption-5 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 40px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}
.h3-caption-5 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .h3-caption-5 {
    font-size: 60px;
    line-height: 0.9;
  }
}
@media (min-width: 1280px) {
  .h3-caption-5 {
    font-size: 65px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  .h3-caption-5 {
    font-size: 118px;
    line-height: 0.9;
  }
}

.h3-caption-6 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.h3-caption-6 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .h3-caption-6 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .h3-caption-6 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .h3-caption-6 {
    font-size: 60px;
    line-height: 0.95;
  }
}

.h3-caption-7 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 24px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}
.h3-caption-7 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .h3-caption-7 {
    font-size: 26px;
    line-height: 0.9;
  }
}
@media (min-width: 1280px) {
  .h3-caption-7 {
    font-size: 44px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  .h3-caption-7 {
    font-size: 60px;
    line-height: 0.9;
  }
}

.text {
  font-family: "Inter", sans-serif, -apple-system;
}

.text-main {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  line-height: 104.4%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .text-main {
    font-size: 18px;
    line-height: 104.4%;
  }
}
@media (min-width: 1280px) {
  .text-main {
    font-size: 18px;
    line-height: 104.4%;
  }
}
@media (min-width: 1800px) {
  .text-main {
    font-size: 28px;
    line-height: 104.4%;
  }
}

.text-main-2 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 14px;
  line-height: 110%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .text-main-2 {
    font-size: 24px;
    line-height: 110%;
  }
}
@media (min-width: 1280px) {
  .text-main-2 {
    font-size: 18px;
    line-height: 130%;
  }
}
@media (min-width: 1800px) {
  .text-main-2 {
    font-size: 28px;
    line-height: 130%;
  }
}

.text-caption {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
}
@media (min-width: 768px) {
  .text-caption {
    font-size: 14px;
    line-height: normal;
  }
}
@media (min-width: 1280px) {
  .text-caption {
    font-size: 14px;
    line-height: normal;
  }
}
@media (min-width: 1800px) {
  .text-caption {
    font-size: 18px;
    line-height: normal;
  }
}

.text-caption-2 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 12px;
  line-height: normal;
  font-weight: 500;
}
@media (min-width: 768px) {
  .text-caption-2 {
    font-size: 14px;
    line-height: normal;
  }
}
@media (min-width: 1280px) {
  .text-caption-2 {
    font-size: 14px;
    line-height: normal;
  }
}
@media (min-width: 1800px) {
  .text-caption-2 {
    font-size: 18px;
    line-height: normal;
  }
}

.text-caption-3 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
}
@media (min-width: 768px) {
  .text-caption-3 {
    font-size: 14px;
    line-height: normal;
  }
}
@media (min-width: 1280px) {
  .text-caption-3 {
    font-size: 14px;
    line-height: normal;
  }
}
@media (min-width: 1800px) {
  .text-caption-3 {
    font-size: 18px;
    line-height: normal;
  }
}

.text-caption-4 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 14px;
  line-height: 110%;
  font-weight: 700;
}
@media (min-width: 768px) {
  .text-caption-4 {
    font-size: 16px;
    line-height: 110%;
  }
}
@media (min-width: 1280px) {
  .text-caption-4 {
    font-size: 18px;
    line-height: 110%;
  }
}
@media (min-width: 1800px) {
  .text-caption-4 {
    font-size: 18px;
    line-height: 110%;
  }
}

.text-main-3 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 14px;
  line-height: 130.023%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .text-main-3 {
    font-size: 16px;
    line-height: 130.023%;
  }
}
@media (min-width: 1280px) {
  .text-main-3 {
    font-size: 18px;
    line-height: 130.023%;
  }
}
@media (min-width: 1800px) {
  .text-main-3 {
    font-size: 28px;
    line-height: 130.023%;
  }
}

.text-main-2 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 14px;
  line-height: 130.023%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .text-main-2 {
    font-size: 16px;
    line-height: 130.023%;
  }
}
@media (min-width: 1280px) {
  .text-main-2 {
    font-size: 18px;
    line-height: 130.023%;
  }
}
@media (min-width: 1800px) {
  .text-main-2 {
    font-size: 28px;
    line-height: 130.023%;
  }
}

.text-main-4 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 14px;
  line-height: 130.023%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .text-main-4 {
    font-size: 14px;
    line-height: 130.023%;
  }
}
@media (min-width: 1280px) {
  .text-main-4 {
    font-size: 18px;
    line-height: 130.023%;
  }
}
@media (min-width: 1800px) {
  .text-main-4 {
    font-size: 28px;
    line-height: 130.023%;
  }
}

.text-dop {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  line-height: 110%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .text-dop {
    font-size: 24px;
    line-height: 110%;
  }
}
@media (min-width: 1280px) {
  .text-dop {
    font-size: 30px;
    line-height: 110%;
  }
}
@media (min-width: 1800px) {
  .text-dop {
    font-size: 45px;
    line-height: 110%;
  }
}
.text-dop.bold {
  font-weight: 700;
}
.text-dop.medium {
  font-weight: 500;
}

.link {
  text-decoration: underline;
  color: inherit;
}
@media (min-width: 1280px) {
  .link:hover {
    text-decoration: none;
  }
}

.link-reverse {
  text-decoration: none;
  color: inherit;
}
@media (min-width: 1280px) {
  .link-reverse:hover {
    text-decoration: underline;
  }
}

.bg-clearWhite {
  background-color: #fff;
}

.clearWhite-text {
  color: #fff;
}

.bg-white {
  background-color: #f4f4f4;
}

.white-text {
  color: #f4f4f4;
}

.bg-black {
  background-color: #363636;
}

.black-text {
  color: #363636;
}

.yellow-text {
  color: #ebff00;
}

.bg-yellow {
  background-color: #ebff00;
}

.orange-text {
  color: #ff9d43;
}

.bg-orange {
  background-color: #ff9d43;
}

.pink-text {
  color: #ffa1f6;
}

.bg-pink {
  background-color: #ffa1f6;
}

.light-pink-text {
  color: #f9d1f5;
}

.bg-light-pink {
  background-color: #f9d1f5;
}

.red-text {
  color: #ff5f67;
}

.bg-red {
  background-color: #ff5f67;
}

.bg-grey {
  background-color: #b9b9b9;
}

.hover-rotation:hover {
  -webkit-animation: hover-rotation 700ms;
  animation: hover-rotation 700ms;
}

/**
 * Стилизация для форм
*/
.form .form-group label {
  display: block;
  font-size: 12px;
}
.form .form-group.select {
  position: relative;
}
.form .form-group.select::after {
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 12px;
  height: 10.67px;
  background-image: url(../img/svg/arrow_for_select.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}
@media (min-width: 768px) {
  .form .form-group.select::after {
    top: 17.5px;
    right: 16px;
    width: 13.5px;
    height: 12px;
  }
}
@media (min-width: 1280px) {
  .form .form-group.select::after {
    top: 13px;
    right: 18px;
    width: 12.339px;
    height: 11px;
  }
}
@media (min-width: 1800px) {
  .form .form-group.select::after {
    top: 20px;
    right: 17px;
    width: 18px;
    height: 16px;
  }
}
.form .form-control {
  font-family: "Inter", sans-serif, -apple-system;
  line-height: 1.3;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  color: #363636;
  background-color: #fff;
  padding: 12.5px 16px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .form .form-control {
    font-size: 16px;
    padding: 13.5px 16px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1280px) {
  .form .form-control {
    font-size: 18px;
    padding: 7px 14px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1800px) {
  .form .form-control {
    font-size: 28px;
    padding: 10px 20px;
    margin-bottom: 15px;
  }
}
.form .form-control::-webkit-input-placeholder {
  color: #a7a7a7;
}
.form .form-control::-moz-placeholder {
  color: #a7a7a7;
}
.form .form-control:-ms-input-placeholder {
  color: #a7a7a7;
}
.form .form-control::-ms-input-placeholder {
  color: #a7a7a7;
}
.form .form-control::placeholder {
  color: #a7a7a7;
}
.form textarea.form-control {
  height: 229px;
}
@media (min-width: 768px) {
  .form textarea.form-control {
    height: 252px;
  }
}
@media (min-width: 1280px) {
  .form textarea.form-control {
    height: 167px;
  }
}
@media (min-width: 1800px) {
  .form textarea.form-control {
    height: 287px;
  }
}
.form select.form-control {
  color: #a7a7a7;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.form select.form-control option {
  color: #363636;
}
.form .button {
  width: 100%;
  color: #363636;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 500;
  line-height: 1.3;
  font-size: 18px;
  padding: 6px 20px;
}
@media (min-width: 768px) {
  .form .button {
    font-size: 20px;
    padding: 8px 20px;
  }
}
@media (min-width: 1280px) {
  .form .button {
    font-size: 18px;
    padding: 10px 15px;
  }
}
@media (min-width: 1800px) {
  .form .button {
    font-size: 28px;
    padding: 10px 20px;
  }
}

.text-crossed {
  text-decoration: line-through;
}

.subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .subject {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .subject {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1800px) {
  .subject {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.subject__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 16px;
  gap: 32px;
}
@media (min-width: 768px) {
  .subject__left {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .subject__left {
    padding: 27px;
    gap: 40px;
  }
}
@media (min-width: 1800px) {
  .subject__left {
    padding: 40px;
    gap: 40px;
  }
}
.subject__left--top, .subject__left--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 11px;
  width: auto;
}
@media (min-width: 768px) {
  .subject__left--top, .subject__left--bottom {
    gap: 11px;
  }
}
@media (min-width: 1280px) {
  .subject__left--top, .subject__left--bottom {
    gap: 13px;
  }
}
@media (min-width: 1800px) {
  .subject__left--top, .subject__left--bottom {
    gap: 20px;
  }
}
.subject .kafedry-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .subject .kafedry-form {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 16px;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .subject .kafedry-form {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 1800px) {
  .subject .kafedry-form {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
.subject .kafedry-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .subject .kafedry-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .subject .kafedry-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    gap: 4px;
    width: 100%;
  }
}
@media (min-width: 1800px) {
  .subject .kafedry-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    gap: 4px;
    width: 100%;
  }
}
.subject .kafedry-form .form-group select {
  width: 100%;
  height: 38px;
  color: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(../img/svg/arrow_bottom.svg) calc(100% - 10px) center/18px no-repeat #363636;
  padding-left: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 40px;
}
@media (min-width: 768px) {
  .subject .kafedry-form .form-group select {
    width: 100%;
    height: 41px;
    background-size: 18px;
    padding-left: 16px;
  }
}
@media (min-width: 1280px) {
  .subject .kafedry-form .form-group select {
    width: 100%;
    height: 38px;
    background-size: 18px;
    padding-left: 21px;
  }
}
@media (min-width: 1800px) {
  .subject .kafedry-form .form-group select {
    width: 100%;
    height: 57px;
    background-size: 24px;
    padding-left: 30px;
  }
}
.subject__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  padding: 16px;
  gap: 11px;
}
@media (min-width: 768px) {
  .subject__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 344px;
    flex: 0 0 344px;
    width: 344px;
    padding: 20px;
    gap: 13px;
  }
}
@media (min-width: 1280px) {
  .subject__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 787px;
    flex: 0 0 787px;
    width: 787px;
    padding: 27px;
    gap: 13px;
  }
}
@media (min-width: 1800px) {
  .subject__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1158px;
    flex: 0 0 1158px;
    width: 1158px;
    padding: 40px;
    gap: 20px;
  }
}
.subject__right .tabs ul.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 11px;
}
@media (min-width: 768px) {
  .subject__right .tabs ul.nav {
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .subject__right .tabs ul.nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 27px;
  }
}
@media (min-width: 1800px) {
  .subject__right .tabs ul.nav {
    gap: 40px;
  }
}
.subject__right .tabs ul.nav li {
  position: relative;
  color: #b9b9b9;
}
.subject__right .tabs ul.nav li a {
  color: #b9b9b9;
}
.subject__right .tabs ul.nav li.ui-tabs-active, .subject__right .tabs ul.nav li.ui-state-active {
  color: #363636;
}
.subject__right .tabs ul.nav li.ui-tabs-active a, .subject__right .tabs ul.nav li.ui-state-active a {
  color: #363636;
}
.subject__right .tabs .tab {
  margin-top: 11px;
}
@media (min-width: 768px) {
  .subject__right .tabs .tab {
    margin-top: 13px;
  }
}
@media (min-width: 1280px) {
  .subject__right .tabs .tab {
    margin-top: 13px;
  }
}
@media (min-width: 1800px) {
  .subject__right .tabs .tab {
    margin-top: 20px;
  }
}
.subject__right .tabs .tab .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 11px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .subject__right .tabs .tab .lists {
    gap: 13px;
  }
}
@media (min-width: 1280px) {
  .subject__right .tabs .tab .lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 27px;
  }
}
@media (min-width: 1800px) {
  .subject__right .tabs .tab .lists {
    gap: 40px;
  }
}
.subject__right .tabs .tab .lists .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 11px;
}
@media (min-width: 768px) {
  .subject__right .tabs .tab .lists .list {
    gap: 13px;
  }
}
@media (min-width: 1280px) {
  .subject__right .tabs .tab .lists .list {
    gap: 13px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
}
@media (min-width: 1800px) {
  .subject__right .tabs .tab .lists .list {
    gap: 20px;
  }
}
.subject__right .tabs .tab .lists .list .list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 7px;
}
@media (min-width: 768px) {
  .subject__right .tabs .tab .lists .list .list_item {
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .subject__right .tabs .tab .lists .list .list_item {
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .subject__right .tabs .tab .lists .list .list_item {
    gap: 10px;
  }
}
.subject__right .tabs .tab .lists .list .list_item .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 23px;
  height: 23px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 23px;
  flex: 0 0 23px;
  border-radius: 100%;
}
@media (min-width: 768px) {
  .subject__right .tabs .tab .lists .list .list_item .count {
    width: 23px;
    height: 23px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 23px;
    flex: 0 0 23px;
  }
}
@media (min-width: 1280px) {
  .subject__right .tabs .tab .lists .list .list_item .count {
    width: 19px;
    height: 19px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 19px;
    flex: 0 0 19px;
  }
}
@media (min-width: 1800px) {
  .subject__right .tabs .tab .lists .list .list_item .count {
    width: 28px;
    height: 28px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28px;
    flex: 0 0 28px;
  }
}
.subject__right .tabs .tab_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 24px;
  gap: 8px;
}
@media (min-width: 768px) {
  .subject__right .tabs .tab_images {
    margin-top: 24px;
    gap: 8px;
  }
}
@media (min-width: 1280px) {
  .subject__right .tabs .tab_images {
    margin-top: 27px;
    gap: 14px;
  }
}
@media (min-width: 1800px) {
  .subject__right .tabs .tab_images {
    margin-top: 40px;
    gap: 20px;
  }
}
.subject__right .tabs .tab_images .image {
  height: auto;
  width: calc(33% - 8px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33% - 8px);
  flex: 0 0 calc(33% - 8px);
}
@media (min-width: 768px) {
  .subject__right .tabs .tab_images .image {
    width: 96px;
    height: 123px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 96px;
    flex: 0 0 96px;
  }
}
@media (min-width: 1280px) {
  .subject__right .tabs .tab_images .image {
    width: 117px;
    height: 151px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 117px;
    flex: 0 0 117px;
  }
}
@media (min-width: 1800px) {
  .subject__right .tabs .tab_images .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 172px;
    flex: 0 0 172px;
    width: 172px;
    height: 222px;
  }
}
.subject__right .tabs .tab_images .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.subject__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .subject__items {
    gap: 8px;
  }
}
@media (min-width: 1280px) {
  .subject__items {
    gap: 5px;
  }
}
@media (min-width: 1800px) {
  .subject__items {
    gap: 20px;
  }
}
.subject__items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #f4f4f4;
}
@media (min-width: 768px) {
  .subject__items .item {
    padding: 10px 16px;
  }
}
@media (min-width: 1280px) {
  .subject__items .item {
    padding: 10px;
  }
}
@media (min-width: 1800px) {
  .subject__items .item {
    padding: 20px;
  }
}
.subject__button .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 500;
  background: #363636;
  gap: 12px;
  font-size: 18px;
  line-height: 80%;
  height: 42px;
  padding: 12px 12px;
}
.subject__button .button svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}
@media (min-width: 1280px) {
  .subject__button .button {
    gap: 10px;
    font-size: 18px;
    line-height: 130%;
    height: 42px;
    padding: 10px 10px;
  }
  .subject__button .button svg {
    width: 15px;
    height: 15px;
    fill: #fff;
  }
}
@media (min-width: 1800px) {
  .subject__button .button {
    gap: 10px;
    font-size: 28px;
    line-height: 80%;
    height: 62px;
    padding: 6px 30px;
  }
  .subject__button .button svg {
    width: 22px;
    height: 22px;
    fill: #fff;
  }
}
.subject .h2 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 33px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}
.subject .h2 span {
  font-weight: 400;
}
.subject .h2 span.grey {
  font-weight: 500;
  color: #b9b9b9;
}
@media (min-width: 768px) {
  .subject .h2 {
    font-size: 32px;
    line-height: 0.9;
  }
}
@media (min-width: 1280px) {
  .subject .h2 {
    font-size: 60px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  .subject .h2 {
    font-size: 80px;
    line-height: 0.9;
  }
}
.subject .h3 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.subject .h3 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .subject .h3 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .subject .h3 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .subject .h3 {
    font-size: 60px;
    line-height: 0.95;
  }
}

@media (min-width: 1280px) {
  .dn-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .dn-tablet {
    display: none !important;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .dn-mobile {
    display: none !important;
  }
}

.text-center {
  text-align: center;
}

.form-msg {
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 14px;
}

.form-msg--success {
  background: rgba(40, 167, 69, 0.12);
  border: 1px solid rgba(40, 167, 69, 0.2);
  color: #155724;
}

.form-msg--error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.12);
  color: #721c24;
}

.form-msg--info {
  background: rgba(23, 162, 184, 0.08);
  border: 1px solid rgba(23, 162, 184, 0.12);
  color: #0c5460;
}

.td .text-caption-2 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 12px;
  line-height: normal;
  font-weight: 500;
}
@media (min-width: 768px) {
  .td .text-caption-2 {
    font-size: 14px;
    line-height: normal;
  }
}
@media (min-width: 1280px) {
  .td .text-caption-2 {
    font-size: 12px;
    line-height: normal;
  }
}
@media (min-width: 1800px) {
  .td .text-caption-2 {
    font-size: 18px;
    line-height: normal;
  }
}

/*!
 * Bootstrap Grid v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

/* .container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 1024px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 1280px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1920px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 2560px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
} */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 768px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1024px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1280px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1920px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 2560px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-6 {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

.order-7 {
  -webkit-box-ordinal-group: 8 !important;
  -ms-flex-order: 7 !important;
  order: 7 !important;
}

.order-8 {
  -webkit-box-ordinal-group: 9 !important;
  -ms-flex-order: 8 !important;
  order: 8 !important;
}

.order-9 {
  -webkit-box-ordinal-group: 10 !important;
  -ms-flex-order: 9 !important;
  order: 9 !important;
}

.order-10 {
  -webkit-box-ordinal-group: 11 !important;
  -ms-flex-order: 10 !important;
  order: 10 !important;
}

.order-11 {
  -webkit-box-ordinal-group: 12 !important;
  -ms-flex-order: 11 !important;
  order: 11 !important;
}

.order-last {
  -webkit-box-ordinal-group: 13 !important;
  -ms-flex-order: 12 !important;
  order: 12 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 768px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8 !important;
    -ms-flex-order: 7 !important;
    order: 7 !important;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9 !important;
    -ms-flex-order: 8 !important;
    order: 8 !important;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10 !important;
    -ms-flex-order: 9 !important;
    order: 9 !important;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11 !important;
    -ms-flex-order: 10 !important;
    order: 10 !important;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12 !important;
    -ms-flex-order: 11 !important;
    order: 11 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 13 !important;
    -ms-flex-order: 12 !important;
    order: 12 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1920px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 2560px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

.page-contacts .h1-sticker {
  width: 150px;
  height: 45px;
}
@media (min-width: 768px) {
  .page-contacts .h1-sticker {
    width: 150px;
    height: 45px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .h1-sticker {
    width: 225px;
    height: 67.5px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .h1-sticker {
    width: 300px;
    height: 90px;
  }
}
.page-contacts .block-0 {
  padding-top: 135px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-contacts .block-0 {
    padding-top: 160px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-0 {
    padding-top: 151px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-0 {
    padding-top: 240px;
    margin-bottom: 40px;
  }
}
.page-contacts .block-0 .title {
  position: relative;
}
.page-contacts .block-0 .title .hi-sticker-1 {
  display: inline-block;
  position: absolute;
  -webkit-transform: rotate(25.471deg);
  transform: rotate(25.471deg);
  bottom: -26px;
  left: 279px;
}
@media (min-width: 768px) {
  .page-contacts .block-0 .title .hi-sticker-1 {
    bottom: 0px;
    left: 544px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-0 .title .hi-sticker-1 {
    bottom: 0px;
    left: 1027px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-0 .title .hi-sticker-1 {
    bottom: -20px;
    left: 1347px;
  }
}
.page-contacts .block-0 .title .hi-sticker-2 {
  display: inline-block;
  position: absolute;
  -webkit-transform: rotate(58.906deg);
  transform: rotate(58.906deg);
  bottom: -17px;
  left: 275px;
}
@media (min-width: 768px) {
  .page-contacts .block-0 .title .hi-sticker-2 {
    bottom: 0px;
    left: 540px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-0 .title .hi-sticker-2 {
    bottom: 0px;
    left: 1050px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-0 .title .hi-sticker-2 {
    bottom: -30px;
    left: 1377px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-0 .teachers {
    background-color: #fff;
    margin-top: 40px;
    padding: 40px 0;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-0 .teachers {
    margin-top: 60px;
    padding: 60px 0;
  }
}
.page-contacts .block-0 .teachers .container {
  margin-top: 16px;
  padding: 20px 16px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .page-contacts .block-0 .teachers .container {
    margin-top: 20px;
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-0 .teachers .container {
    margin-top: unset;
    padding: unset;
    background-color: transparent;
  }
}
.page-contacts .block-0 .teachers .teacher {
  position: relative;
}
@media (min-width: 768px) {
  .page-contacts .block-0 .teachers .teacher {
    min-height: 306px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-0 .teachers .teacher {
    min-height: 306px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-0 .teachers .teacher {
    min-height: 542px;
  }
}
.page-contacts .block-0 .teachers .teacher__name {
  margin-bottom: 16px;
  max-width: 311px;
}
@media (min-width: 768px) {
  .page-contacts .block-0 .teachers .teacher__name {
    margin-bottom: 18px;
    max-width: 406px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-0 .teachers .teacher__name {
    margin-bottom: 20px;
    max-width: 406px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-0 .teachers .teacher__name {
    margin-bottom: 20px;
    max-width: 860px;
  }
}
.page-contacts .block-0 .teachers .teacher__position {
  max-width: 296px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-contacts .block-0 .teachers .teacher__position {
    max-width: 277px;
    margin-bottom: unset;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-0 .teachers .teacher__position {
    max-width: 298px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-0 .teachers .teacher__position {
    max-width: 433px;
  }
}
.page-contacts .block-0 .teachers .teacher__image {
  width: 210px;
  height: 210px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .page-contacts .block-0 .teachers .teacher__image {
    width: 248px;
    height: 248px;
    position: absolute;
    right: 0;
    bottom: 0;
    margin-left: unset;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-0 .teachers .teacher__image {
    width: 248px;
    height: 248px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-0 .teachers .teacher__image {
    width: 387px;
    height: 387px;
  }
}
.page-contacts .block-0 .teachers .teacher__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-contacts .block-1 {
  padding: 0 0 40px;
}
@media (min-width: 768px) {
  .page-contacts .block-1 {
    padding: 0 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-1 {
    padding: 0 0 39px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-1 {
    padding: 0 0 74px;
  }
}
.page-contacts .block-1 .title {
  position: relative;
}
.page-contacts .block-1 .title .hi-sticker-1 {
  display: inline-block;
  position: absolute;
  -webkit-transform: rotate(-125.484deg);
  transform: rotate(-125.484deg);
  bottom: 15px;
  left: 175px;
}
@media (min-width: 768px) {
  .page-contacts .block-1 .title .hi-sticker-1 {
    bottom: 63px;
    left: 257px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-1 .title .hi-sticker-1 {
    bottom: 57px;
    left: 396px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-1 .title .hi-sticker-1 {
    bottom: 112px;
    left: 567px;
  }
}
.page-contacts .block-1 .title .hi-sticker-2 {
  display: inline-block;
  position: absolute;
  -webkit-transform: rotate(-25.471deg);
  transform: rotate(-25.471deg);
  bottom: 33px;
  left: 253px;
}
@media (min-width: 768px) {
  .page-contacts .block-1 .title .hi-sticker-2 {
    bottom: 81px;
    left: 335px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-1 .title .hi-sticker-2 {
    bottom: 57px;
    left: 664px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-1 .title .hi-sticker-2 {
    bottom: 110px;
    left: 905px;
  }
}
.page-contacts .block-1 .contacts {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .page-contacts .block-1 .contacts {
    margin-top: 16px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-1 .contacts {
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-1 .contacts {
    margin-top: 20px;
  }
}
.page-contacts .block-1 .contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .page-contacts .block-1 .contacts__info {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-1 .contacts__info {
    gap: 20px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-1 .contacts__info {
    gap: 40px;
  }
}
.page-contacts .block-1 .contacts__info--links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 20px;
  gap: 10px;
}
@media (min-width: 768px) {
  .page-contacts .block-1 .contacts__info--links {
    padding: 10px 20px;
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-1 .contacts__info--links {
    padding: 10px 20px;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-1 .contacts__info--links {
    padding: 10px 40px;
    gap: 10px;
  }
}
.page-contacts .block-1 .contacts__info--links a {
  color: inherit;
}
.page-contacts .block-2 {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .page-contacts .block-2 {
    padding: 60px 0;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-2 {
    padding: 390px 0 39px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-2 {
    padding: 292px 0 74px;
  }
}
.page-contacts .block-2 .title {
  position: relative;
}
.page-contacts .block-2 .title .hi-sticker-1 {
  display: inline-block;
  position: absolute;
  -webkit-transform: rotate(-58.906deg);
  transform: rotate(-58.906deg);
  bottom: -26px;
  left: 179px;
}
@media (min-width: 768px) {
  .page-contacts .block-2 .title .hi-sticker-1 {
    bottom: 21px;
    left: 444px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-2 .title .hi-sticker-1 {
    bottom: 320px;
    left: 827px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-2 .title .hi-sticker-1 {
    bottom: 268px;
    left: 1347px;
  }
}
.page-contacts .block-2 .title .hi-sticker-2 {
  display: inline-block;
  position: absolute;
  -webkit-transform: rotate(-25.471deg);
  transform: rotate(-25.471deg);
  bottom: -17px;
  left: 175px;
}
@media (min-width: 768px) {
  .page-contacts .block-2 .title .hi-sticker-2 {
    bottom: 30px;
    left: 440px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-2 .title .hi-sticker-2 {
    bottom: 350px;
    left: 850px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-2 .title .hi-sticker-2 {
    bottom: 308px;
    left: 1377px;
  }
}
.page-contacts .block-2 .info {
  background-color: #d9d9d9;
  height: 459px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-contacts .block-2 .info {
    height: 512px;
    margin-top: 60px;
  }
}
@media (min-width: 1280px) {
  .page-contacts .block-2 .info {
    height: 682px;
    margin-top: 15px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .block-2 .info {
    height: 1000px;
    margin-top: 60px;
  }
}
.page-contacts .form-footer {
  display: none;
}
@media (min-width: 1280px) {
  .page-contacts .form-footer {
    display: block;
    padding: 20px 0 43px;
  }
}
@media (min-width: 1800px) {
  .page-contacts .form-footer {
    display: block;
    padding: 41px 0 72px;
  }
}

.page-about .block-1 {
  padding: 135px 0 40px;
}
@media (min-width: 768px) {
  .page-about .block-1 {
    padding: 160px 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-1 {
    padding: 150px 0 44px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-1 {
    padding: 240px 0 80px;
  }
}
.page-about .block-1 .title {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .page-about .block-1 .title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-1 .title {
    margin-bottom: 25px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-1 .title {
    margin-bottom: 20px;
  }
}
.page-about .block-1 .info {
  position: relative;
}
.page-about .block-1 .info .h1-sticker {
  display: inline-block;
  position: absolute;
  pointer-events: none;
}
.page-about .block-1 .info .h1-sticker-1 {
  z-index: -1;
  width: 99px;
  height: 29px;
  -webkit-transform: rotate(70deg);
  transform: rotate(70deg);
  top: -70px;
  right: 125px;
}
@media (min-width: 768px) {
  .page-about .block-1 .info .h1-sticker-1 {
    width: 167px;
    height: 50px;
    -webkit-transform: rotate(58deg);
    transform: rotate(58deg);
    top: -60px;
    right: 100px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-1 .info .h1-sticker-1 {
    width: 224px;
    height: 67px;
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
    top: -60px;
    right: 230px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-1 .info .h1-sticker-1 {
    width: 299px;
    height: 89px;
    -webkit-transform: rotate(22deg);
    transform: rotate(22deg);
    top: -60px;
    right: 360px;
  }
}
.page-about .block-1 .info .h1-sticker-2 {
  width: 99px;
  height: 29px;
  -webkit-transform: rotate(23deg);
  transform: rotate(23deg);
  top: -51px;
  right: 42px;
}
@media (min-width: 768px) {
  .page-about .block-1 .info .h1-sticker-2 {
    width: 167px;
    height: 50px;
    -webkit-transform: rotate(104deg);
    transform: rotate(104deg);
    top: 40px;
    right: -30px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-1 .info .h1-sticker-2 {
    width: 224px;
    height: 67px;
    -webkit-transform: rotate(76deg);
    transform: rotate(76deg);
    top: 40px;
    right: 0;
  }
}
@media (min-width: 1800px) {
  .page-about .block-1 .info .h1-sticker-2 {
    width: 299px;
    height: 89px;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    top: 80px;
    right: 80px;
  }
}
.page-about .block-1 .block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 16px;
  gap: 20px;
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
  margin-left: auto;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-about .block-1 .block-list {
    width: 508px;
    padding: 30px;
    gap: 20px;
    margin-top: 27px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-1 .block-list {
    width: 582px;
    padding: 40px;
    gap: 40px;
    margin-top: 78px;
    margin-left: unset;
  }
}
@media (min-width: 1800px) {
  .page-about .block-1 .block-list {
    width: 860px;
    padding: 40px;
    gap: 40px;
    margin-top: 134px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-1 .block-list br {
    display: none;
  }
}
@media (min-width: 1800px) {
  .page-about .block-1 .block-list br {
    display: inline;
  }
}
.page-about .block-1 .block-list .row-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 7px;
}
@media (min-width: 768px) {
  .page-about .block-1 .block-list .row-content {
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-1 .block-list .row-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 30px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-1 .block-list .row-content {
    gap: 40px;
  }
}
.page-about .block-1 .block-list .row-content ul.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  list-style: disc;
}
@media (min-width: 768px) {
  .page-about .block-1 .block-list .row-content ul.list {
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-1 .block-list .row-content ul.list {
    gap: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
}
@media (min-width: 1800px) {
  .page-about .block-1 .block-list .row-content ul.list {
    gap: 20px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.page-about .block-1 .block-list .row-content ul.list li {
  margin-left: 1em;
}
.page-about .block-2 {
  padding: 0 0 40px;
}
@media (min-width: 768px) {
  .page-about .block-2 {
    padding: 0 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 {
    padding: 0 0 44px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-2 {
    padding: 0 0 80px;
  }
}
.page-about .block-2 .title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-about .block-2 .title {
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .title {
    margin-bottom: 60px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-2 .title {
    margin-bottom: 60px;
  }
}
.page-about .block-2 .teacher {
  position: relative;
  height: 100%;
}
.page-about .block-2 .teacher > .row {
  height: 100%;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher > .row {
    min-height: 306px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher > .row {
    min-height: 306px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-2 .teacher > .row {
    min-height: 638px;
  }
}
.page-about .block-2 .teacher .teacher-full-info-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow-y: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  scrollbar-width: thin;
  visibility: hidden;
  opacity: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher .teacher-full-info-overlay {
    padding: 20px 0;
  }
}
.page-about .block-2 .teacher .teacher-full-info-overlay.opened {
  opacity: 1;
  visibility: visible;
}
.page-about .block-2 .teacher .teacher-full-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  z-index: 20;
  width: 100vw;
  min-height: 100vh;
  padding: 20px 16px;
  will-change: transform;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher .teacher-full-info {
    overflow-y: unset;
    min-height: unset;
    width: 688px;
    gap: 40px;
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher .teacher-full-info {
    width: 688px;
    height: auto;
    gap: 40px;
    padding: 40px;
  }
}
.page-about .block-2 .teacher .teacher-full-info .close-button {
  position: absolute;
  width: 20px;
  height: 19px;
  top: 20px;
  right: 16px;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher .teacher-full-info .close-button {
    width: 20px;
    height: 19px;
    top: 30px;
    right: 30px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher .teacher-full-info .close-button {
    width: 37px;
    height: 36px;
    top: 40px;
    right: 40px;
  }
}
.page-about .block-2 .teacher .teacher-full-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher .teacher-full-info__content {
    gap: 20px;
  }
}
.page-about .block-2 .teacher .teacher-full-info__content__title {
  background: #fff;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher .teacher-full-info__content__title {
    padding: 10px 20px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher .teacher-full-info__content__title {
    padding: 10px 20px;
  }
}
.page-about .block-2 .teacher .teacher-full-info__content__list {
  list-style: disc;
}
.page-about .block-2 .teacher .teacher-full-info__content__list li {
  margin-left: 1em;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher .teacher-full-info__content__list li {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher .teacher-full-info__content__list li {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
  }
}
.page-about .block-2 .teacher__name {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher__name {
    margin-bottom: 18px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher__name {
    margin-bottom: 20px;
    max-width: 506px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-2 .teacher__name {
    margin-bottom: 20px;
    max-width: 860px;
  }
}
.page-about .block-2 .teacher__position {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher__position {
    margin-bottom: 18px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher__position {
    margin-bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-2 .teacher__position {
    margin-bottom: 18px;
  }
}
.page-about .block-2 .teacher__info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-about .block-2 .teacher__info-list {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-about .block-2 .teacher__info-list ul {
  list-style: disc;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher__info-list ul {
    margin-bottom: 24px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher__info-list ul {
    margin-bottom: 24px;
  }
}
.page-about .block-2 .teacher__info-list ul li {
  margin-left: 1em;
}
.page-about .block-2 .teacher__image {
  width: 210px;
  height: 210px;
  margin-left: auto;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher__image {
    width: 248px;
    height: 248px;
    margin-bottom: unset;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher__image {
    width: 248px;
    height: 248px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-2 .teacher__image {
    width: 387px;
    height: 387px;
  }
}
.page-about .block-2 .teacher__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-about .block-2 .teacher .button {
  font-family: "Inter", sans-serif, -apple-system;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 6px;
  width: 153px;
  height: 43px;
  font-weight: 500;
  font-size: 18px;
  line-height: 80%;
  margin-top: auto;
}
.page-about .block-2 .teacher .button svg {
  width: 12px;
  height: 12px;
}
@media (min-width: 768px) {
  .page-about .block-2 .teacher .button {
    gap: 6px;
    width: 163px;
    height: 42px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin-top: auto;
  }
  .page-about .block-2 .teacher .button svg {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .teacher .button {
    gap: 6px;
    width: 163px;
    height: 42px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin-top: auto;
  }
  .page-about .block-2 .teacher .button svg {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-2 .teacher .button {
    font-weight: 700;
    font-size: 23px;
    line-height: 110%;
    gap: 4px;
    width: 265px;
    height: 69px;
    margin-top: auto;
  }
  .page-about .block-2 .teacher .button svg {
    width: 17px;
    height: 17px;
  }
}
.page-about .block-2 .h1-sticker {
  display: inline-block;
  position: absolute;
  pointer-events: none;
}
@media (min-width: 1280px) {
  .page-about .block-2 .h1-sticker-1 {
    width: 224px;
    height: 67px;
    -webkit-transform: rotate(-122deg);
    transform: rotate(-122deg);
    top: 200px;
    right: 230px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-2 .h1-sticker-1 {
    width: 299px;
    height: 89px;
    -webkit-transform: rotate(-122deg);
    transform: rotate(-122deg);
    top: 360px;
    right: 320px;
  }
}
@media (min-width: 1280px) {
  .page-about .block-2 .h1-sticker-2 {
    width: 224px;
    height: 67px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
    top: 130px;
    right: 60px;
  }
}
@media (min-width: 1800px) {
  .page-about .block-2 .h1-sticker-2 {
    width: 299px;
    height: 89px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
    top: 220px;
    right: 110px;
  }
}

body.overflow-hidden {
  overflow: hidden;
}

.page-exams h3,
.page-exams .h3 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-exams h3,
  .page-exams .h3 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .page-exams h3,
  .page-exams .h3 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .page-exams h3,
  .page-exams .h3 {
    font-size: 60px;
    line-height: 0.95;
  }
}
.page-exams .text-dop {
  font-weight: 500;
}
.page-exams .title {
  padding-top: 135px;
}
@media (min-width: 768px) {
  .page-exams .title {
    padding-top: 160px;
  }
}
@media (min-width: 1280px) {
  .page-exams .title {
    padding-top: 151px;
  }
}
@media (min-width: 1800px) {
  .page-exams .title {
    padding-top: 240px;
  }
}
.page-exams .kafedry-form {
  margin-top: 13px;
}
@media (min-width: 768px) {
  .page-exams .kafedry-form {
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-exams .kafedry-form {
    margin-top: 41px;
  }
}
@media (min-width: 1800px) {
  .page-exams .kafedry-form {
    margin-top: 14px;
  }
}
.page-exams .kafedry-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: auto;
  -ms-flex-align: auto;
  align-items: auto;
  width: auto;
}
@media (min-width: 768px) {
  .page-exams .kafedry-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 456px;
  }
}
@media (min-width: 1280px) {
  .page-exams .kafedry-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc((100% - 54px) / 3);
  }
}
@media (min-width: 1800px) {
  .page-exams .kafedry-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc((100% - 80px) / 3);
  }
}
.page-exams .kafedry-form .form-group select {
  width: 100%;
  height: 38px;
  color: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(../img/svg/arrow_bottom.svg) calc(100% - 10px) center/18px no-repeat #363636;
  padding-left: 16px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .page-exams .kafedry-form .form-group select {
    width: 343px;
    height: 41px;
    background-size: 18px;
    padding-left: 16px;
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
  .page-exams .kafedry-form .form-group select {
    width: 177px;
    height: 38px;
    background-size: 18px;
    padding-left: 21px;
    margin-top: 0;
  }
}
@media (min-width: 1800px) {
  .page-exams .kafedry-form .form-group select {
    width: 260px;
    height: 57px;
    background-size: 24px;
    padding-left: 30px;
    margin-top: 0;
  }
}
.page-exams .exams {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .page-exams .exams {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 27px;
    margin-top: 41px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
    margin-top: 33px;
  }
}
.page-exams .exams__left, .page-exams .exams__center, .page-exams .exams__right {
  width: 100%;
}
@media (min-width: 768px) {
  .page-exams .exams__left, .page-exams .exams__center, .page-exams .exams__right {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams__left, .page-exams .exams__center, .page-exams .exams__right {
    width: calc((100% - 54px) / 3);
  }
}
@media (min-width: 1800px) {
  .page-exams .exams__left, .page-exams .exams__center, .page-exams .exams__right {
    width: calc((100% - 80px) / 3);
  }
}
.page-exams .exams__left--text, .page-exams .exams__center--text, .page-exams .exams__right--text {
  height: auto;
}
@media (min-width: 768px) {
  .page-exams .exams__left--text, .page-exams .exams__center--text, .page-exams .exams__right--text {
    height: auto;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams__left--text, .page-exams .exams__center--text, .page-exams .exams__right--text {
    height: 216px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams__left--text, .page-exams .exams__center--text, .page-exams .exams__right--text {
    height: 322px;
  }
}
.page-exams .exams__left .exams-scores, .page-exams .exams__center .exams-scores, .page-exams .exams__right .exams-scores {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-exams .exams__left .exams-scores, .page-exams .exams__center .exams-scores, .page-exams .exams__right .exams-scores {
    margin-top: 24px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams__left .exams-scores, .page-exams .exams__center .exams-scores, .page-exams .exams__right .exams-scores {
    margin-top: 27px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams__left .exams-scores, .page-exams .exams__center .exams-scores, .page-exams .exams__right .exams-scores {
    margin-top: 40px;
  }
}
.page-exams .exams__left .exams-list, .page-exams .exams__center .exams-list, .page-exams .exams__right .exams-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-exams .exams__left .exams-list, .page-exams .exams__center .exams-list, .page-exams .exams__right .exams-list {
    gap: 4px;
    margin-top: 18px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams__left .exams-list, .page-exams .exams__center .exams-list, .page-exams .exams__right .exams-list {
    gap: 6.8px;
    margin-top: 27px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams__left .exams-list, .page-exams .exams__center .exams-list, .page-exams .exams__right .exams-list {
    gap: 10px;
    margin-top: 40px;
  }
}
.page-exams .exams__left .exams-list .exams-list-item, .page-exams .exams__center .exams-list .exams-list-item, .page-exams .exams__right .exams-list .exams-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-exams .exams__left .exams-list .exams-list-item, .page-exams .exams__center .exams-list .exams-list-item, .page-exams .exams__right .exams-list .exams-list-item {
    gap: 8px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams__left .exams-list .exams-list-item, .page-exams .exams__center .exams-list .exams-list-item, .page-exams .exams__right .exams-list .exams-list-item {
    gap: 13.63px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams__left .exams-list .exams-list-item, .page-exams .exams__center .exams-list .exams-list-item, .page-exams .exams__right .exams-list .exams-list-item {
    gap: 20px;
  }
}
.page-exams .exams__left .exams-list .exams-list-item .dot, .page-exams .exams__center .exams-list .exams-list-item .dot, .page-exams .exams__right .exams-list .exams-list-item .dot {
  border-radius: 50%;
  background-color: #363636;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  .page-exams .exams__left .exams-list .exams-list-item .dot, .page-exams .exams__center .exams-list .exams-list-item .dot, .page-exams .exams__right .exams-list .exams-list-item .dot {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams__left .exams-list .exams-list-item .dot, .page-exams .exams__center .exams-list .exams-list-item .dot, .page-exams .exams__right .exams-list .exams-list-item .dot {
    width: 13.63px;
    height: 13.63px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams__left .exams-list .exams-list-item .dot, .page-exams .exams__center .exams-list .exams-list-item .dot, .page-exams .exams__right .exams-list .exams-list-item .dot {
    width: 20px;
    height: 20px;
  }
}
.page-exams .exams__left--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .page-exams .exams__left--text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams__left--text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 27px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams__left--text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
  }
}
.page-exams .exams__left--text .exams__text--left,
.page-exams .exams__left--text .exams__text--right {
  width: 100%;
  padding: 10px 16px 20px;
}
@media (min-width: 768px) {
  .page-exams .exams__left--text .exams__text--left,
  .page-exams .exams__left--text .exams__text--right {
    width: calc((100% - 12px) / 2);
    padding: 12px 24px 20px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams__left--text .exams__text--left,
  .page-exams .exams__left--text .exams__text--right {
    width: calc((100% - 27px) / 2);
    padding: 13.63px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams__left--text .exams__text--left,
  .page-exams .exams__left--text .exams__text--right {
    width: calc((100% - 40px) / 2);
    padding: 20px;
  }
}
.page-exams .exams__left--text .exams__text--left {
  color: #fff;
}
.page-exams .exams__left--text .exams__text--left .dot {
  background-color: #fff !important;
}
.page-exams .exams__center--text, .page-exams .exams__right--text {
  padding: 10px 16px 20px;
}
@media (min-width: 768px) {
  .page-exams .exams__center--text, .page-exams .exams__right--text {
    padding: 12px 24px 20px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams__center--text, .page-exams .exams__right--text {
    padding: 13.63px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams__center--text, .page-exams .exams__right--text {
    padding: 20px;
  }
}
.page-exams .exams-slider {
  padding: 16px;
}
@media (min-width: 768px) {
  .page-exams .exams-slider {
    padding: 20px 24px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams-slider {
    padding: 13.63px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams-slider {
    padding: 20px;
  }
}
.page-exams .exams-slider .slide .image {
  width: 100%;
}
.page-exams .exams-slider .slide .image img {
  width: 100%;
  height: auto;
}
.page-exams .exams-slider .swiper-pagination {
  position: relative;
  top: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-exams .exams-slider .swiper-pagination {
    gap: 8px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams-slider .swiper-pagination {
    gap: 6.54px;
    margin-top: 13.63px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams-slider .swiper-pagination {
    gap: 10px;
    margin-top: 20px;
  }
}
.page-exams .exams-slider .swiper-pagination-bullet {
  background-color: #363636;
  opacity: 0.5;
  margin: 0;
  width: 12px;
  height: 12px;
}
@media (min-width: 768px) {
  .page-exams .exams-slider .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1280px) {
  .page-exams .exams-slider .swiper-pagination-bullet {
    width: 6.54px;
    height: 6.54px;
  }
}
@media (min-width: 1800px) {
  .page-exams .exams-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.page-exams .exams-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.page-exams .total-scores {
  color: #fff;
  background-color: #363636;
  padding: 10px 16px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .page-exams .total-scores {
    padding: 24px;
    margin-top: 16px;
  }
}
@media (min-width: 1280px) {
  .page-exams .total-scores {
    padding: 13.63px;
    margin-top: 30px;
  }
}
@media (min-width: 1800px) {
  .page-exams .total-scores {
    padding: 20px;
    margin-top: 40px;
  }
}
.page-exams .more-details {
  background-color: #fff;
  text-transform: uppercase;
  padding: 10px 16px;
  margin: 12px 0 40px;
}
@media (min-width: 768px) {
  .page-exams .more-details {
    text-transform: uppercase;
    padding: 24px;
    margin: 16px 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-exams .more-details {
    text-transform: none;
    padding: 27px;
    margin: 30px 0 32.5px;
  }
}
@media (min-width: 1800px) {
  .page-exams .more-details {
    text-transform: none;
    padding: 40px;
    margin: 40px 0 46px;
  }
}
.page-exams .more-details a {
  color: #ff5f67;
  text-decoration: underline;
}
@media (min-width: 1280px) {
  .page-exams .more-details a:hover {
    text-decoration: none;
  }
}

.page-faq .block-1 {
  padding: 135px 0 40px;
}
@media (min-width: 768px) {
  .page-faq .block-1 {
    padding: 160px 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-faq .block-1 {
    padding: 150px 0 44px;
  }
}
@media (min-width: 1800px) {
  .page-faq .block-1 {
    padding: 240px 0 80px;
  }
}
.page-faq .questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-faq .questions {
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-faq .questions {
    margin-top: 40px;
  }
}
@media (min-width: 1800px) {
  .page-faq .questions {
    margin-top: 60px;
  }
}
.page-faq .questions .accordion {
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  background: #fff;
}
.page-faq .questions .accordion.active {
  background: #ebff00;
}
.page-faq .questions .accordion.active .title {
  color: #363636;
  background: #ebff00;
}
@media (min-width: 768px) {
  .page-faq .questions .accordion.active .title {
    background: url(../img/svg/arrow_bottom_right_bg_fill.svg) calc(100% - 23px) center/46px no-repeat #ebff00;
  }
}
@media (min-width: 1280px) {
  .page-faq .questions .accordion.active .title {
    background: url(../img/svg/arrow_bottom_right_bg_fill.svg) calc(100% - 40px) center/82px no-repeat #ebff00;
  }
}
.page-faq .questions .accordion.active .content {
  background: #ebff00;
}
.page-faq .questions .accordion.active .mobile-arrow svg path.active {
  display: block;
}
.page-faq .questions .accordion.active .mobile-arrow svg path.default {
  display: none;
}
.page-faq .questions .accordion .title {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #fff;
  padding: 10px 25px 10px 10px;
}
@media (min-width: 768px) {
  .page-faq .questions .accordion .title {
    background: url(../img/svg/arrow_bottom_right_bg.svg) calc(100% - 23px) center/46px no-repeat #fff;
    padding: 23px 114px 23px 23px;
  }
}
@media (min-width: 1280px) {
  .page-faq .questions .accordion .title {
    background: url(../img/svg/arrow_bottom_right_bg.svg) calc(100% - 40px) center/82px no-repeat #fff;
    padding: 40px 201px 40px 40px;
  }
}
@media (min-width: 1800px) {
  .page-faq .questions .accordion .title {
    padding: 40px 301px 40px 40px;
  }
}
.page-faq .questions .accordion .title:hover {
  cursor: pointer;
}
.page-faq .questions .accordion .title.h3-caption-2 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}
.page-faq .questions .accordion .title.h3-caption-2 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-faq .questions .accordion .title.h3-caption-2 {
    font-size: 30px;
    line-height: 0.9;
  }
}
@media (min-width: 1280px) {
  .page-faq .questions .accordion .title.h3-caption-2 {
    font-size: 60px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  .page-faq .questions .accordion .title.h3-caption-2 {
    font-size: 60px;
    line-height: 0.9;
  }
}
.page-faq .questions .accordion .mobile-arrow {
  width: 46px;
  height: 43px;
  margin-bottom: 10px;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .page-faq .questions .accordion .mobile-arrow {
    display: none;
  }
}
.page-faq .questions .accordion .mobile-arrow svg path.active {
  display: none;
}
.page-faq .questions .accordion .mobile-arrow svg path.default {
  display: block;
}
.page-faq .questions .accordion .content {
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  display: none;
  color: #363636;
  background: #fff;
  padding: 0 10px 10px;
}
@media (min-width: 768px) {
  .page-faq .questions .accordion .content {
    padding: 0 23px 23px;
  }
}
@media (min-width: 1280px) {
  .page-faq .questions .accordion .content {
    padding: 0 40px 40px;
  }
}
@media (min-width: 1800px) {
  .page-faq .questions .accordion .content {
    padding: 0 40px 40px;
  }
}

.page-main .block-1 .changing-titles .changing-title .h1-sticker-1 {
  -webkit-transform: rotate(-13deg);
  transform: rotate(-13deg);
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-1 {
    -webkit-transform: rotate(-22.65deg);
    transform: rotate(-22.65deg);
  }
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-2 {
  -webkit-transform: rotate(-147.338deg);
  transform: rotate(-147.338deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-3 {
  -webkit-transform: rotate(-44.339deg);
  transform: rotate(-44.339deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-4 {
  -webkit-transform: rotate(11.945deg);
  transform: rotate(11.945deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-5 {
  -webkit-transform: rotate(-22.647deg);
  transform: rotate(-22.647deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-6 {
  -webkit-transform: rotate(16.679deg);
  transform: rotate(16.679deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-7 {
  -webkit-transform: rotate(-45.607deg);
  transform: rotate(-45.607deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-8 {
  -webkit-transform: rotate(-22.647deg);
  transform: rotate(-22.647deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-9 {
  -webkit-transform: rotate(40.638deg);
  transform: rotate(40.638deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-10 {
  -webkit-transform: rotate(18.274deg);
  transform: rotate(18.274deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-11 {
  -webkit-transform: rotate(27.636deg);
  transform: rotate(27.636deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-12 {
  -webkit-transform: rotate(-22.647deg);
  transform: rotate(-22.647deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-13 {
  -webkit-transform: rotate(38.353deg);
  transform: rotate(38.353deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-14 {
  -webkit-transform: rotate(-10.711deg);
  transform: rotate(-10.711deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-15 {
  -webkit-transform: rotate(6.148deg);
  transform: rotate(6.148deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-16 {
  -webkit-transform: rotate(-22.647deg);
  transform: rotate(-22.647deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-17 {
  -webkit-transform: rotate(-11.682deg);
  transform: rotate(-11.682deg);
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker-18 {
  -webkit-transform: rotate(-22.647deg);
  transform: rotate(-22.647deg);
}
.page-main .block-3 .levels-buttons .zero-level-button,
.page-main .block-6 .levels-buttons .zero-level-button {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons .zero-level-button,
  .page-main .block-6 .levels-buttons .zero-level-button {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}
.page-main .block-3 .levels-buttons .first-level-button,
.page-main .block-6 .levels-buttons .first-level-button {
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons .first-level-button,
  .page-main .block-6 .levels-buttons .first-level-button {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}
.page-main .block-3 .levels-buttons .second-level-button,
.page-main .block-6 .levels-buttons .second-level-button {
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons .second-level-button,
  .page-main .block-6 .levels-buttons .second-level-button {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}
.page-main .block-3 .levels-buttons .third-level-button,
.page-main .block-6 .levels-buttons .third-level-button {
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
.page-main .block-5 .reviews .content__right .show-more-reviews {
  -webkit-transform: rotate(-13deg);
  transform: rotate(-13deg);
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews .content__right .show-more-reviews {
    -webkit-transform: rotate(-22.65deg);
    transform: rotate(-22.65deg);
  }
}

.page-main .form-footer .form .button,
.page-programs .form-footer .form .button,
.page-contacts .form-footer .form .button,
.page-schedules .form-footer .form .button {
  -webkit-transform: rotate(-2.5deg);
  transform: rotate(-2.5deg);
}
@media (min-width: 1280px) {
  .page-main .form-footer .form .button,
  .page-programs .form-footer .form .button,
  .page-contacts .form-footer .form .button,
  .page-schedules .form-footer .form .button {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
}

.page-main h1,
.page-main .h1 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 48px;
  line-height: 0.9;
  font-weight: 500;
}
.page-main h1 span,
.page-main .h1 span {
  font-weight: 400;
}
@media (min-width: 375px) {
  .page-main h1,
  .page-main .h1 {
    font-size: 48px;
    line-height: 0.9;
  }
}
@media (min-width: 768px) {
  .page-main h1,
  .page-main .h1 {
    font-size: 94px;
    line-height: 0.9;
  }
}
@media (min-width: 1280px) {
  .page-main h1,
  .page-main .h1 {
    font-size: 140px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  .page-main h1,
  .page-main .h1 {
    font-size: 200px;
    line-height: 0.9;
  }
}
.page-main h2,
.page-main .h2 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 40px;
  line-height: 0.9;
  font-weight: 500;
}
.page-main h2 span,
.page-main .h2 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-main h2,
  .page-main .h2 {
    font-size: 60px;
    line-height: 0.9;
  }
}
@media (min-width: 1800px) {
  .page-main h2,
  .page-main .h2 {
    font-size: 80px;
    line-height: 0.9;
  }
}
.page-main h3,
.page-main .h3 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
}
.page-main h3 span,
.page-main .h3 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-main h3,
  .page-main .h3 {
    font-size: 48px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .page-main h3,
  .page-main .h3 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .page-main h3,
  .page-main .h3 {
    font-size: 60px;
    line-height: 0.95;
  }
}
.page-main .text {
  font-family: "Inter", sans-serif, -apple-system;
}
.page-main .text-main {
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 500;
  line-height: 1.3;
}
.page-main .text-caption {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
}
@media (min-width: 1800px) {
  .page-main .text-caption {
    font-size: 18px;
    line-height: normal;
  }
}
.page-main .text-dop {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
}
@media (min-width: 768px) {
  .page-main .text-dop {
    font-size: 24px;
    line-height: 1.1;
  }
}
@media (min-width: 1280px) {
  .page-main .text-dop {
    font-size: 30px;
    line-height: 1.1;
  }
}
@media (min-width: 1800px) {
  .page-main .text-dop {
    font-size: 45px;
    line-height: 1.1;
  }
}
.page-main .action-sticker {
  color: #363636;
  text-align: center;
  padding: 40px;
  display: inline-block;
}
.page-main .rotate-left-1 {
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}
.page-main .rotate-left-2 {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}
.page-main .rotate-left-3 {
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.page-main .rotate-right-1 {
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
}
.page-main .rotate-right-2 {
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}
.page-main .rotate-right-3 {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}
.page-main .block-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100vh;
  padding: 0 0 20px;
}
@media (min-width: 768px) {
  .page-main .block-1 {
    padding: 0 0 30px;
    min-height: 550px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 {
    padding: 0 0 40px;
    min-height: 700px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 {
    padding: 0 0 67px;
    min-height: 1000px;
  }
}
.page-main .block-1 .changing-titles {
  position: relative;
}
.page-main .block-1 .changing-titles .changing-title {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: opacity 3s;
  transition: opacity 3s;
}
.page-main .block-1 .changing-titles .changing-title.hidden {
  opacity: 0;
}
.page-main .block-1 .changing-titles .changing-title .h1-sticker {
  display: inline-block;
  position: absolute;
  width: 110px;
  height: 48px;
  left: 60%;
  top: -60px;
}
@media (min-width: 768px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker {
    width: 121px;
    height: 54px;
    left: 70%;
    top: -55px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker {
    width: 318px;
    height: 114px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker {
    width: 424px;
    height: 152px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-1 {
    left: 70%;
    top: 180px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-1 {
    left: 70%;
    top: 255px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-2 {
    left: 16%;
    top: -120px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-2 {
    left: 16%;
    top: -160px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-3 {
    left: 35%;
    top: -182px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-3 {
    left: 35%;
    top: -222px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-4 {
    left: 72%;
    top: 120px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-4 {
    left: 72%;
    top: 175px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-5 {
    left: 64%;
    top: -75px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-5 {
    left: 64%;
    top: -108px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-6 {
    left: 27%;
    top: -114px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-6 {
    left: 27%;
    top: -152px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-7 {
    left: 67%;
    top: 148px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-7 {
    left: 67%;
    top: 203px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-8 {
    left: 41%;
    top: 138px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-8 {
    left: 41%;
    top: 192px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-9 {
    left: 60%;
    top: -50px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-9 {
    left: 60%;
    top: -84px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-10 {
    left: 60%;
    top: 200px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-10 {
    left: 60%;
    top: 273px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-11 {
    left: 57%;
    top: 138px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-11 {
    left: 57%;
    top: 192px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-12 {
    left: 45%;
    top: 56px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-12 {
    left: 45%;
    top: 110px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-13 {
    left: 44%;
    top: -50px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-13 {
    left: 44%;
    top: -89px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-14 {
    left: 46%;
    top: 64px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-14 {
    left: 46%;
    top: 118px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-15 {
    left: 58%;
    top: 87px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-15 {
    left: 58%;
    top: 141px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-16 {
    left: 60%;
    top: -114px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-16 {
    left: 60%;
    top: -152px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-17 {
    left: 53%;
    top: -114px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-17 {
    left: 53%;
    top: -152px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-18 {
    left: 61%;
    top: 160px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 .changing-titles .changing-title .h1-sticker-18 {
    left: 61%;
    top: 232px;
  }
}
.page-main .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-main .block-1 p.text-main {
    font-size: 22px;
    max-width: 398px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-1 p.text-main {
    font-size: 18px;
    max-width: 460px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-1 p.text-main {
    font-size: 28px;
    max-width: 720px;
    margin-top: 40px;
  }
}
.page-main .block-2 {
  padding: 20px 0 15px;
}
@media (min-width: 768px) {
  .page-main .block-2 {
    padding: 30px 0 40px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-2 {
    padding: 40px 0 36px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-2 {
    padding: 75px 0 60px;
  }
}
.page-main .block-2 + .block-6 {
  padding: 15px 0 20px;
}
@media (min-width: 768px) {
  .page-main .block-2 + .block-6 {
    padding: 40px 0 30px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-2 + .block-6 {
    padding: 36px 0 65px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-2 + .block-6 {
    padding: 60px 0 110px;
  }
}
.page-main .block-2 .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 32px;
}
@media (min-width: 768px) {
  .page-main .block-2 .buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-2 .buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 25px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-2 .buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 38px;
  }
}
.page-main .block-2 .buttons .action-sticker {
  background-color: #fff;
  text-align: left;
  color: #363636;
  padding: 16px;
}
@media (min-width: 768px) {
  .page-main .block-2 .buttons .action-sticker {
    padding: 16px 24px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-2 .buttons .action-sticker {
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-2 .buttons .action-sticker {
    padding: 40px;
  }
}
.page-main .block-2 .buttons .open-doors-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 250px;
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}
@media (min-width: 375px) {
  .page-main .block-2 .buttons .open-doors-button {
    width: 300px;
  }
}
@media (min-width: 768px) {
  .page-main .block-2 .buttons .open-doors-button {
    width: 310px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-2 .buttons .open-doors-button {
    width: 378px;
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
}
@media (min-width: 1800px) {
  .page-main .block-2 .buttons .open-doors-button {
    width: 560px;
  }
}
.page-main .block-2 .buttons .open-doors-button .text-main {
  margin-top: 10px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-main .block-2 .buttons .open-doors-button .text-main {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-2 .buttons .open-doors-button .text-main {
    font-size: 19px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-2 .buttons .open-doors-button .text-main {
    font-size: 28px;
  }
}
.page-main .block-2 .buttons .youtube-button {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-transform: rotate(-1.71deg);
  transform: rotate(-1.71deg);
}
.page-main .side-notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 20;
  width: 100vw;
  height: 100vh;
  padding: 30px 16px;
  background-color: #ebff00;
  overflow-y: scroll;
  will-change: transform;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
@media (min-width: 768px) {
  .page-main .side-notification {
    width: 100vw;
    gap: 30px;
    padding: 30px;
  }
}
@media (min-width: 1280px) {
  .page-main .side-notification {
    width: 940px;
    gap: 40px;
    padding: 40px;
  }
}
.page-main .side-notification.opened {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.page-main .side-notification .close-button {
  position: absolute;
  width: 20px;
  height: 19px;
  top: 30px;
  right: 16px;
}
@media (min-width: 768px) {
  .page-main .side-notification .close-button {
    width: 20px;
    height: 19px;
    top: 30px;
    right: 30px;
  }
}
@media (min-width: 1280px) {
  .page-main .side-notification .close-button {
    width: 37px;
    height: 36px;
    top: 40px;
    right: 80px;
  }
}
.page-main .side-notification .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.page-main .side-notification .content li.text-main {
  font-size: 18px;
}
@media (min-width: 768px) {
  .page-main .side-notification .content li.text-main {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .page-main .side-notification .content li.text-main {
    font-size: 28px;
  }
}
.page-main .side-notification .content li.text-main span {
  font-weight: 700;
}
.page-main .block-3 {
  padding: 15px 0 20px;
}
@media (min-width: 768px) {
  .page-main .block-3 {
    padding: 40px 0 30px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 {
    padding: 36px 0 65px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 {
    padding: 60px 0 110px;
  }
}
.page-main .block-3 .title {
  position: relative;
}
.page-main .block-3 .title .action-sticker {
  text-transform: none;
  font-size: 14px;
  width: auto;
  padding: 6px 16px;
}
@media (min-width: 768px) {
  .page-main .block-3 .title .action-sticker {
    font-size: 22px;
    width: auto;
    padding: 6px 16px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 .title .action-sticker {
    font-size: 18px;
    width: 287px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .title .action-sticker {
    font-size: 28px;
    width: 424px;
    padding: 40px;
  }
}
.page-main .block-3 .title span.h1-sticker-1 {
  position: absolute;
  right: 15px;
  bottom: 92px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  background-color: #b9b9b9;
}
@media (min-width: 768px) {
  .page-main .block-3 .title span.h1-sticker-1 {
    right: 30px;
    bottom: 170px;
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 .title span.h1-sticker-1 {
    right: 8px;
    bottom: 226px;
    -webkit-transform: rotate(11.35deg);
    transform: rotate(11.35deg);
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .title span.h1-sticker-1 {
    right: 12px;
    bottom: 326px;
    -webkit-transform: rotate(11.35deg);
    transform: rotate(11.35deg);
  }
}
.page-main .block-3 .title span.h1-sticker-2 {
  position: absolute;
  right: 15px;
  bottom: 0px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
@media (min-width: 768px) {
  .page-main .block-3 .title span.h1-sticker-2 {
    right: 126px;
    bottom: 0px;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 .title span.h1-sticker-2 {
    right: 17px;
    bottom: 90px;
    -webkit-transform: rotate(-22.65deg);
    transform: rotate(-22.65deg);
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .title span.h1-sticker-2 {
    right: 27px;
    bottom: 126px;
    -webkit-transform: rotate(-22.65deg);
    transform: rotate(-22.65deg);
  }
}
.page-main .block-3 .title span.h1-sticker-2 a.action-sticker {
  display: block;
}
.page-main .block-3 .levels-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  margin-top: 22px;
}
@media (min-width: 768px) {
  .page-main .block-3 .levels-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 35px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .levels-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
  }
}
.page-main .block-3 .levels-buttons .zero-level-button,
.page-main .block-3 .levels-buttons .first-level-button,
.page-main .block-3 .levels-buttons .second-level-button,
.page-main .block-3 .levels-buttons .third-level-button {
  text-align: left;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding: 19px 16px;
}
@media (min-width: 768px) {
  .page-main .block-3 .levels-buttons .zero-level-button,
  .page-main .block-3 .levels-buttons .first-level-button,
  .page-main .block-3 .levels-buttons .second-level-button,
  .page-main .block-3 .levels-buttons .third-level-button {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 19px 24px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons .zero-level-button,
  .page-main .block-3 .levels-buttons .first-level-button,
  .page-main .block-3 .levels-buttons .second-level-button,
  .page-main .block-3 .levels-buttons .third-level-button {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 30px;
    max-width: 532px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .levels-buttons .zero-level-button,
  .page-main .block-3 .levels-buttons .first-level-button,
  .page-main .block-3 .levels-buttons .second-level-button,
  .page-main .block-3 .levels-buttons .third-level-button {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 45px 40px;
    max-width: 708px;
  }
}
.page-main .block-3 .levels-buttons .zero-level-button.h3,
.page-main .block-3 .levels-buttons .first-level-button.h3,
.page-main .block-3 .levels-buttons .second-level-button.h3,
.page-main .block-3 .levels-buttons .third-level-button.h3 {
  font-size: 26px;
}
@media (min-width: 768px) {
  .page-main .block-3 .levels-buttons .zero-level-button.h3,
  .page-main .block-3 .levels-buttons .first-level-button.h3,
  .page-main .block-3 .levels-buttons .second-level-button.h3,
  .page-main .block-3 .levels-buttons .third-level-button.h3 {
    font-size: 48px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons .zero-level-button.h3,
  .page-main .block-3 .levels-buttons .first-level-button.h3,
  .page-main .block-3 .levels-buttons .second-level-button.h3,
  .page-main .block-3 .levels-buttons .third-level-button.h3 {
    font-size: 60px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .levels-buttons .zero-level-button.h3,
  .page-main .block-3 .levels-buttons .first-level-button.h3,
  .page-main .block-3 .levels-buttons .second-level-button.h3,
  .page-main .block-3 .levels-buttons .third-level-button.h3 {
    font-size: 80px;
  }
}
.page-main .block-3 .levels-buttons .first-level-button,
.page-main .block-3 .levels-buttons .third-level-button {
  z-index: 5;
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons .zero-level-button {
    margin-top: 40px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .levels-buttons .zero-level-button {
    margin-top: 40px;
  }
}
.page-main .block-3 .levels-buttons .first-level-button {
  margin-top: 7px;
}
@media (min-width: 768px) {
  .page-main .block-3 .levels-buttons .first-level-button {
    margin-top: 7px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons .first-level-button {
    margin-left: 49px;
    margin-top: unset;
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .levels-buttons .first-level-button {
    margin-left: 50px;
  }
}
.page-main .block-3 .levels-buttons .second-level-button {
  margin-top: 14px;
}
@media (min-width: 768px) {
  .page-main .block-3 .levels-buttons .second-level-button {
    margin-top: 35px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons .second-level-button {
    margin-top: 0;
    margin-left: 15px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .levels-buttons .second-level-button {
    margin-top: -25px;
    margin-left: 153px;
  }
}
.page-main .block-3 .levels-buttons .third-level-button {
  margin-top: -14px;
}
@media (min-width: 768px) {
  .page-main .block-3 .levels-buttons .third-level-button {
    margin-top: -35px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-3 .levels-buttons .third-level-button {
    margin-top: 0;
    margin-left: 20px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-3 .levels-buttons .third-level-button {
    margin-top: -60px;
    margin-left: 40px;
  }
}
.page-main .block-4 {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .page-main .block-4 {
    padding: 30px 0;
  }
}
@media (min-width: 1280px) {
  .page-main .block-4 {
    padding: 20px 0 45px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-4 {
    padding: 40px 0 97px;
  }
}
.page-main .block-4 .swiper-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-main .block-4 .swiper-control {
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-4 .swiper-control {
    display: none;
  }
}
.page-main .block-4 .swiper-control .swiper-pag {
  width: 75px;
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  background-color: #fff;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .page-main .block-4 .swiper-control .swiper-pag {
    width: 82px;
    font-size: 32px;
  }
}
.page-main .block-4 .swiper-control .swiper-btn-prev,
.page-main .block-4 .swiper-control .swiper-btn-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #363636;
  width: 45px;
  padding: 14px;
}
@media (min-width: 768px) {
  .page-main .block-4 .swiper-control .swiper-btn-prev,
  .page-main .block-4 .swiper-control .swiper-btn-next {
    width: 50px;
    padding: 16px;
  }
}
.page-main .block-4 .swiper-control .swiper-btn-prev.swiper-button-disabled,
.page-main .block-4 .swiper-control .swiper-btn-next.swiper-button-disabled {
  background-color: #b9b9b9;
}
.page-main .block-4 .kafedry-stickers {
  margin-top: 12px;
  overflow: visible;
}
@media (min-width: 768px) {
  .page-main .block-4 .kafedry-stickers {
    margin-top: 16px;
    height: 592px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-4 .kafedry-stickers {
    margin-top: 22px;
    height: auto;
  }
}
@media (min-width: 1800px) {
  .page-main .block-4 .kafedry-stickers {
    margin-top: 38px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-4 .kafedry-stickers .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.page-main .block-4 .kafedry-stickers .swiper-slide {
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
@media (min-width: 768px) {
  .page-main .block-4 .kafedry-stickers .swiper-slide {
    opacity: 0;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
}
@media (min-width: 1280px) {
  .page-main .block-4 .kafedry-stickers .swiper-slide {
    opacity: 1;
  }
}
.page-main .block-4 .kafedry-stickers .swiper-slide.swiper-slide-active {
  opacity: 1;
}
@media (min-width: 768px) {
  .page-main .block-4 .kafedry-stickers .swiper-slide.swiper-slide-active + .swiper-slide {
    opacity: 1;
  }
}
.page-main .block-4 .kafedry-stickers .slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-main .block-4 .kafedry-stickers .slider-item .action-sticker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  will-change: transform;
  width: 100%;
  padding: 20px 16px;
}
@media (min-width: 768px) {
  .page-main .block-4 .kafedry-stickers .slider-item .action-sticker {
    width: 50%;
    padding: 20px 16px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-4 .kafedry-stickers .slider-item .action-sticker {
    width: 25%;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-4 .kafedry-stickers .slider-item .action-sticker {
    width: 25%;
    padding: 40px;
  }
}
.page-main .block-4 .kafedry-stickers .slider-item .action-sticker .text-main {
  margin-top: 10px;
  text-align: left;
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-main .block-4 .kafedry-stickers .slider-item .action-sticker .text-main {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-4 .kafedry-stickers .slider-item .action-sticker .text-main {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-4 .kafedry-stickers .slider-item .action-sticker .text-main {
    font-size: 28px;
  }
}
.page-main .block-5 {
  padding: 20px 0 105px;
}
@media (min-width: 768px) {
  .page-main .block-5 {
    padding: 30px 0 105px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 {
    padding: 20px 0 132px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-5 {
    padding: 44px 0 208px;
  }
}
.page-main .block-5 + .block-3 {
  padding: 90px 0 20px;
}
@media (min-width: 768px) {
  .page-main .block-5 + .block-3 {
    padding: 100px 0 30px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 + .block-3 {
    padding: 50px 0 65px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-5 + .block-3 {
    padding: 44px 0 80px;
  }
}
.page-main .block-5 .reviews {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-main .block-5 .reviews {
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews {
    margin-top: 23px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-5 .reviews {
    margin-top: 40px;
  }
}
.page-main .block-5 .reviews .content__left {
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}
@media (min-width: 768px) {
  .page-main .block-5 .reviews .content__left {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews .content__left {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
}
.page-main .block-5 .reviews .content__right {
  margin-top: 12px;
  position: relative;
}
@media (min-width: 768px) {
  .page-main .block-5 .reviews .content__right {
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews .content__right {
    margin-top: 0;
  }
}
.page-main .block-5 .reviews .content__right .show-more-reviews {
  position: absolute;
  right: 55px;
  bottom: -55px;
  font-size: 14px;
  width: auto;
  padding: 6px 16px;
}
@media (min-width: 768px) {
  .page-main .block-5 .reviews .content__right .show-more-reviews {
    right: 240px;
    bottom: -30px;
    font-size: 16px;
    width: auto;
    padding: 10px 24px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews .content__right .show-more-reviews {
    right: 60px;
    bottom: -90px;
    font-size: 18px;
    width: 287px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-5 .reviews .content__right .show-more-reviews {
    right: 90px;
    bottom: -150px;
    font-size: 28px;
    width: 424px;
    padding: 40px;
  }
}
.page-main .block-5 .reviews .review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px 0;
  padding: 16px;
}
@media (min-width: 768px) {
  .page-main .block-5 .reviews .review {
    gap: 24px 0;
    padding: 20px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews .review {
    gap: 30px 0;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-5 .reviews .review {
    gap: 40px 0;
    padding: 40px;
  }
}
.page-main .block-5 .reviews .review .author-name.h3 {
  font-size: 26px;
}
@media (min-width: 768px) {
  .page-main .block-5 .reviews .review .author-name.h3 {
    font-size: 32px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews .review .author-name.h3 {
    font-size: 40px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-5 .reviews .review .author-name.h3 {
    font-size: 60px;
  }
}
.page-main .block-5 .reviews .review .author-speciality {
  font-size: 14px;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .page-main .block-5 .reviews .review .author-speciality {
    font-size: 16px;
    margin-top: 4px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews .review .author-speciality {
    font-size: 18px;
    margin-top: 7px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-5 .reviews .review .author-speciality {
    font-size: 28px;
    margin-top: 10px;
  }
}
.page-main .block-5 .reviews .review .show-full-review-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 10px;
  background-color: #fff;
  padding: 12px;
}
@media (min-width: 768px) {
  .page-main .block-5 .reviews .review .show-full-review-btn {
    padding: 12px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews .review .show-full-review-btn {
    padding: 15px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-5 .reviews .review .show-full-review-btn {
    padding: 20px;
  }
}
.page-main .block-5 .reviews .review .show-full-review-btn svg {
  width: 11.563px;
  height: 11.563px;
}
@media (min-width: 768px) {
  .page-main .block-5 .reviews .review .show-full-review-btn svg {
    width: 14.951px;
    height: 14.951px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-5 .reviews .review .show-full-review-btn svg {
    width: 22.095px;
    height: 22.095px;
  }
}
.page-main .block-6 {
  padding: 90px 0 20px;
}
@media (min-width: 768px) {
  .page-main .block-6 {
    padding: 100px 0 30px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-6 {
    padding: 50px 0 65px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 {
    padding: 44px 0 80px;
  }
}
.page-main .block-6 .title {
  position: relative;
}
.page-main .block-6 .title span.h1-sticker {
  position: absolute;
  -webkit-transform: rotate(15.68deg);
  transform: rotate(15.68deg);
  z-index: 10;
  left: 205px;
  bottom: 50px;
}
@media (min-width: 768px) {
  .page-main .block-6 .title span.h1-sticker {
    left: 505px;
    bottom: 78px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-6 .title span.h1-sticker {
    left: 906px;
    bottom: 14px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 .title span.h1-sticker {
    left: 1360px;
    bottom: 18px;
  }
}
.page-main .block-6 .title span.h1-sticker a.action-sticker {
  text-transform: none;
  display: block;
  font-size: 14px;
  width: auto;
  padding: 6px 16px;
}
@media (min-width: 768px) {
  .page-main .block-6 .title span.h1-sticker a.action-sticker {
    font-size: 22px;
    width: auto;
    padding: 6px 16px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-6 .title span.h1-sticker a.action-sticker {
    font-size: 18px;
    width: 282px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 .title span.h1-sticker a.action-sticker {
    font-size: 28px;
    width: 424px;
    padding: 40px;
  }
}
.page-main .block-6 .levels-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  margin-top: 22px;
}
@media (min-width: 768px) {
  .page-main .block-6 .levels-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 35px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-6 .levels-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 .levels-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
  }
}
.page-main .block-6 .levels-buttons .zero-level-button,
.page-main .block-6 .levels-buttons .first-level-button,
.page-main .block-6 .levels-buttons .second-level-button,
.page-main .block-6 .levels-buttons .third-level-button {
  text-align: left;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding: 19px 16px;
}
@media (min-width: 768px) {
  .page-main .block-6 .levels-buttons .zero-level-button,
  .page-main .block-6 .levels-buttons .first-level-button,
  .page-main .block-6 .levels-buttons .second-level-button,
  .page-main .block-6 .levels-buttons .third-level-button {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 19px 24px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-6 .levels-buttons .zero-level-button,
  .page-main .block-6 .levels-buttons .first-level-button,
  .page-main .block-6 .levels-buttons .second-level-button,
  .page-main .block-6 .levels-buttons .third-level-button {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 30px;
    max-width: 532px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 .levels-buttons .zero-level-button,
  .page-main .block-6 .levels-buttons .first-level-button,
  .page-main .block-6 .levels-buttons .second-level-button,
  .page-main .block-6 .levels-buttons .third-level-button {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 45px 40px;
    max-width: 708px;
  }
}
.page-main .block-6 .levels-buttons .zero-level-button.h3,
.page-main .block-6 .levels-buttons .first-level-button.h3,
.page-main .block-6 .levels-buttons .second-level-button.h3,
.page-main .block-6 .levels-buttons .third-level-button.h3 {
  font-size: 26px;
}
@media (min-width: 768px) {
  .page-main .block-6 .levels-buttons .zero-level-button.h3,
  .page-main .block-6 .levels-buttons .first-level-button.h3,
  .page-main .block-6 .levels-buttons .second-level-button.h3,
  .page-main .block-6 .levels-buttons .third-level-button.h3 {
    font-size: 48px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-6 .levels-buttons .zero-level-button.h3,
  .page-main .block-6 .levels-buttons .first-level-button.h3,
  .page-main .block-6 .levels-buttons .second-level-button.h3,
  .page-main .block-6 .levels-buttons .third-level-button.h3 {
    font-size: 60px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 .levels-buttons .zero-level-button.h3,
  .page-main .block-6 .levels-buttons .first-level-button.h3,
  .page-main .block-6 .levels-buttons .second-level-button.h3,
  .page-main .block-6 .levels-buttons .third-level-button.h3 {
    font-size: 80px;
  }
}
.page-main .block-6 .levels-buttons .first-level-button,
.page-main .block-6 .levels-buttons .third-level-button {
  z-index: 5;
}
@media (min-width: 1280px) {
  .page-main .block-6 .levels-buttons .zero-level-button {
    margin-top: 40px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 .levels-buttons .zero-level-button {
    margin-top: 40px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-6 .levels-buttons .first-level-button {
    margin-left: 49px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 .levels-buttons .first-level-button {
    margin-left: 50px;
  }
}
.page-main .block-6 .levels-buttons .second-level-button {
  margin-top: 14px;
}
@media (min-width: 768px) {
  .page-main .block-6 .levels-buttons .second-level-button {
    margin-top: 35px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-6 .levels-buttons .second-level-button {
    margin-top: 0;
    margin-left: 15px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 .levels-buttons .second-level-button {
    margin-top: -25px;
    margin-left: 153px;
  }
}
.page-main .block-6 .levels-buttons .third-level-button {
  margin-top: -14px;
}
@media (min-width: 768px) {
  .page-main .block-6 .levels-buttons .third-level-button {
    margin-top: -35px;
  }
}
@media (min-width: 1280px) {
  .page-main .block-6 .levels-buttons .third-level-button {
    margin-top: 0;
    margin-left: 20px;
  }
}
@media (min-width: 1800px) {
  .page-main .block-6 .levels-buttons .third-level-button {
    margin-top: -60px;
    margin-left: 40px;
  }
}
.page-main .form-footer {
  padding: 20px 0 40px;
}
@media (min-width: 768px) {
  .page-main .form-footer {
    padding: 30px 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-main .form-footer {
    padding: 20px 0 43px;
  }
}
@media (min-width: 1800px) {
  .page-main .form-footer {
    padding: 41px 0 72px;
  }
}
.page-main .form-footer .form {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-main .form-footer .form {
    margin-top: 0;
  }
}

.page-gallery .title {
  padding: 135px 0 18px;
}
@media (min-width: 768px) {
  .page-gallery .title {
    padding: 160px 0 28px;
  }
}
@media (min-width: 1280px) {
  .page-gallery .title {
    padding: 151px 0 23px;
  }
}
@media (min-width: 1800px) {
  .page-gallery .title {
    padding: 240px 0 43px;
  }
}
.page-gallery .sidebar-menu a,
.page-gallery .sidebar-menu span {
  display: inline-block;
  color: #363636;
  width: 100%;
  padding: 19px 16px;
}
@media (min-width: 768px) {
  .page-gallery .sidebar-menu a,
  .page-gallery .sidebar-menu span {
    width: 100%;
    padding: 19px 24px;
  }
}
@media (min-width: 1280px) {
  .page-gallery .sidebar-menu a,
  .page-gallery .sidebar-menu span {
    width: 384px;
    padding: 27.43px;
  }
}
@media (min-width: 1800px) {
  .page-gallery .sidebar-menu a,
  .page-gallery .sidebar-menu span {
    width: 560px;
    padding: 40px;
  }
}
.page-gallery .sidebar-menu a.works,
.page-gallery .sidebar-menu span.works {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}
.page-gallery .sidebar-menu a.learning,
.page-gallery .sidebar-menu span.learning {
  display: inline-block;
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-gallery .sidebar-menu a.learning,
  .page-gallery .sidebar-menu span.learning {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
    margin-top: 35px;
  }
}
@media (min-width: 1280px) {
  .page-gallery .sidebar-menu a.learning,
  .page-gallery .sidebar-menu span.learning {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
    margin-top: 27.43px;
  }
}
@media (min-width: 1800px) {
  .page-gallery .sidebar-menu a.learning,
  .page-gallery .sidebar-menu span.learning {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
    margin-top: 40px;
  }
}
.page-gallery .sidebar-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
@media (min-width: 768px) {
  .page-gallery .sidebar-tags {
    gap: 12px;
    margin-top: 24px;
  }
}
@media (min-width: 1280px) {
  .page-gallery .sidebar-tags {
    gap: 10px;
    margin-top: 26.5px;
  }
}
@media (min-width: 1800px) {
  .page-gallery .sidebar-tags {
    gap: 20px;
    margin-top: 20.5px;
  }
}
.page-gallery .sidebar-tags button {
  display: inline-block;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 14px;
  line-height: 130.023%;
  font-weight: 500;
  color: #363636;
  background-color: #fff;
  padding: 6px 20px;
}
@media (min-width: 768px) {
  .page-gallery .sidebar-tags button {
    font-size: 16px;
    line-height: 130.023%;
    padding: 8px 20px;
  }
}
@media (min-width: 1280px) {
  .page-gallery .sidebar-tags button {
    font-size: 18px;
    line-height: 130.023%;
    padding: 13.46px;
  }
}
@media (min-width: 1800px) {
  .page-gallery .sidebar-tags button {
    font-size: 28px;
    line-height: 130.023%;
    padding: 20px;
  }
}
.page-gallery .sidebar > a.learning {
  display: inline-block;
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
  color: #363636;
  width: 100%;
  padding: 19px 16px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-gallery .sidebar > a.learning {
    display: inline-block;
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
    width: 100%;
    padding: 19px 24px;
    margin-top: 15px;
  }
}
@media (min-width: 1280px) {
  .page-gallery .sidebar > a.learning {
    display: none;
  }
}
@media (min-width: 1800px) {
  .page-gallery .sidebar > a.learning {
    display: none;
  }
}
.page-gallery .pictures {
  margin: 40px 0;
}
@media (min-width: 768px) {
  .page-gallery .pictures {
    margin: 19px 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-gallery .pictures {
    margin: 0 0 60px;
  }
}
@media (min-width: 1800px) {
  .page-gallery .pictures {
    margin: 0 0 60px;
  }
}
.page-gallery .pictures .pictures-left,
.page-gallery .pictures .pictures-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .page-gallery .pictures .pictures-left,
  .page-gallery .pictures .pictures-right {
    gap: 24px;
  }
}
@media (min-width: 1280px) {
  .page-gallery .pictures .pictures-left,
  .page-gallery .pictures .pictures-right {
    gap: 28px;
  }
}
@media (min-width: 1800px) {
  .page-gallery .pictures .pictures-left,
  .page-gallery .pictures .pictures-right {
    gap: 40px;
  }
}
.page-gallery .pictures .pictures-left .picture img,
.page-gallery .pictures .pictures-right .picture img {
  width: 100%;
  height: auto;
}
.page-gallery .pictures .pictures-left {
  margin-right: -6px;
}
@media (min-width: 768px) {
  .page-gallery .pictures .pictures-left {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .page-gallery .pictures .pictures-left {
    margin-right: 2px;
  }
}
@media (min-width: 1800px) {
  .page-gallery .pictures .pictures-left {
    margin-right: 8px;
  }
}
.page-gallery .pictures .pictures-right {
  margin-left: -6px;
}
@media (min-width: 768px) {
  .page-gallery .pictures .pictures-right {
    margin-left: 0;
  }
}
@media (min-width: 1280px) {
  .page-gallery .pictures .pictures-right {
    margin-left: 2px;
  }
}
@media (min-width: 1800px) {
  .page-gallery .pictures .pictures-right {
    margin-left: 8px;
  }
}
.page-gallery.page-gallery-works .sidebar-menu a.learning {
  display: none;
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
}
@media (min-width: 768px) {
  .page-gallery.page-gallery-works .sidebar-menu a.learning {
    display: none;
  }
}
@media (min-width: 1280px) {
  .page-gallery.page-gallery-works .sidebar-menu a.learning {
    display: inline-block;
    margin-top: 27.43px;
  }
}
@media (min-width: 1800px) {
  .page-gallery.page-gallery-works .sidebar-menu a.learning {
    display: inline-block;
    margin-top: 40px;
  }
}
.page-gallery.page-gallery-works .pictures {
  margin: 19px 0 40px;
}
@media (min-width: 768px) {
  .page-gallery.page-gallery-works .pictures {
    margin: 19px 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-gallery.page-gallery-works .pictures {
    margin: 0 0 60px;
  }
}
@media (min-width: 1800px) {
  .page-gallery.page-gallery-works .pictures {
    margin: 0 0 60px;
  }
}

.page-kafedry .title {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-weight: 500;
}
.page-kafedry .title span {
  font-weight: 400;
}
.page-kafedry .block-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100vh;
  padding: 0 0 40px;
}
@media (min-width: 768px) {
  .page-kafedry .block-1 {
    padding: 0 0 60px;
    min-height: 550px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-1 {
    padding: 0 0 61px;
    min-height: 700px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-1 {
    padding: 0 0 67px;
    min-height: 1000px;
  }
}
.page-kafedry .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-kafedry .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  width: 77px;
  height: 26px;
  left: 124px;
  bottom: 23px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
}
@media (max-width: 767px) {
  .page-kafedry .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-kafedry .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 238px;
    bottom: 44px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-1 .static-title .h1-sticker-1 {
    width: 117px;
    height: 83px;
    left: 510px;
    bottom: 50px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 152px;
    left: 525px;
    bottom: 16px;
  }
}
.page-kafedry .block-1 .static-title .h1-sticker-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 216px;
  bottom: 27px;
  padding: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
}
@media (min-width: 768px) {
  .page-kafedry .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 440px;
    bottom: 60px;
    padding: 12px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 700px;
    bottom: 101px;
    padding: 20px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 1002px;
    bottom: 114px;
    padding: 40px;
  }
}
.page-kafedry .block-1 .static-title .h1-sticker-3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  width: 122px;
  height: 26px;
  left: 218px;
  bottom: 12px;
  padding: 4px 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .page-kafedry .block-1 .static-title .h1-sticker-3 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-kafedry .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 496px;
    bottom: 12px;
    padding: 8px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-1 .static-title .h1-sticker-3 {
    width: 174px;
    height: 83px;
    left: 880px;
    bottom: 0px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1132px;
    bottom: 0;
    padding: 40px;
  }
}
.page-kafedry .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-kafedry .block-1 p.text-main {
    font-size: 22px;
    max-width: 490px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-1 p.text-main {
    font-size: 18px;
    max-width: 480px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-1 p.text-main {
    font-size: 28px;
    max-width: 755px;
    margin-top: 40px;
  }
}
.page-kafedry .block-2 {
  padding: 0 0 40px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 {
    padding: 0 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 {
    padding: 0 0 25px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 {
    padding: 0 0 25px;
  }
}
.page-kafedry .block-2 .block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .block-list {
    width: 344px;
    padding: 16px 20px;
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .block-list {
    width: 582px;
    padding: 30px;
    gap: 30px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .block-list {
    width: 860px;
    padding: 40px;
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .block-list br {
    display: none;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .block-list br {
    display: inline;
  }
}
.page-kafedry .block-2 .block-list .row-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 7px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .block-list .row-content {
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .block-list .row-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 30px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .block-list .row-content {
    gap: 40px;
  }
}
.page-kafedry .block-2 .block-list .row-content ul.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .block-list .row-content ul.list {
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .block-list .row-content ul.list {
    gap: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .block-list .row-content ul.list {
    gap: 20px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.page-kafedry .block-2 .block-list.profession {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .block-list.profession {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}
.page-kafedry .block-2 .block-list.profession .h3-caption {
  color: #fff;
}
.page-kafedry .block-2 .block-list.profession .row-content ul.list li {
  color: #fff;
}
.page-kafedry .block-2 .contest-counter-top {
  margin-top: 50px;
  margin-left: unset !important;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter-top {
    margin-top: 50px;
    margin-left: unset !important;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-top {
    margin-top: 70px;
    margin-left: auto !important;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-top {
    margin-top: 100px;
    margin-left: auto !important;
  }
}
.page-kafedry .block-2 .contest-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 0;
  padding: 16px;
  max-width: 300px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter {
    margin-top: 0;
    padding: 24px;
    max-width: unset;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 13px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter {
    margin-top: 23px;
    padding: 40px;
  }
}
.page-kafedry .block-2 .contest-counter .items {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter .items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter .items {
    gap: 30px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter .items {
    gap: 40px;
  }
}
.page-kafedry .block-2 .contest-counter .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter .items .item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 8px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter .items .item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter .items .item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px;
  }
}
.page-kafedry .block-2 .contest-counter .h2 {
  letter-spacing: -1.65px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter .h2 {
    letter-spacing: -2.4px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter .h2 {
    letter-spacing: -3px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter .h2 {
    letter-spacing: -4px;
  }
}
.page-kafedry .block-2 .contest-counter-paid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(1.598deg);
  transform: rotate(1.598deg);
  padding: 16px;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: auto;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter-paid {
    max-width: 450px;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px;
    gap: 32px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid {
    max-width: 742px;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 30px;
    gap: 30px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-paid {
    max-width: 1007px;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px;
    gap: 40px;
  }
}
.page-kafedry .block-2 .contest-counter-paid .h2 {
  letter-spacing: -1.65px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter-paid .h2 {
    letter-spacing: -2.4px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid .h2 {
    letter-spacing: -3px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-paid .h2 {
    letter-spacing: -4px;
  }
}
.page-kafedry .block-2 .contest-counter-paid .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter-paid .items {
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid .items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-paid .items {
    gap: 40px;
  }
}
.page-kafedry .block-2 .contest-counter-paid .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter-paid .items .item {
    gap: 8px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid .items .item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-paid .items .item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px;
  }
}
.page-kafedry .block-2 .contest-counter-paid .pays {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter-paid .pays {
    gap: 14px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid .pays {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 54px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-paid .pays {
    gap: 80px;
  }
}
.page-kafedry .block-2 .contest-counter-paid .pays .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .left {
    gap: 8px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .left {
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .left {
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .left .text-caption-3 {
    max-width: 256px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .left .text-caption-3 {
    max-width: 326px;
  }
}
.page-kafedry .block-2 .contest-counter-paid .pays .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .right {
    gap: 8px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .right {
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .right {
    gap: 10px;
  }
}
.page-kafedry .block-2 .contest-counter-paid .pays .right .h2 {
  opacity: 0;
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .right .h2 {
    display: none;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .right .text-caption-3 {
    max-width: 229px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-2 .contest-counter-paid .pays .right .text-caption-3 {
    max-width: 326px;
  }
}
.page-kafedry .block-3 .tabs {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .page-kafedry .block-3 .tabs {
    margin-top: 16px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-3 .tabs {
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-3 .tabs {
    margin-top: 30px;
  }
}
.page-kafedry .block-3 .tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-kafedry .block-3 .tabs ul {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-3 .tabs ul {
    gap: 60px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-3 .tabs ul {
    gap: 89px;
  }
}
.page-kafedry .block-3 .tabs ul li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #b9b9b9;
}
@media (min-width: 768px) {
  .page-kafedry .block-3 .tabs ul li {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-3 .tabs ul li {
    gap: 60px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-3 .tabs ul li {
    gap: 89px;
  }
}
.page-kafedry .block-3 .tabs ul li a {
  color: #b9b9b9;
}
.page-kafedry .block-3 .tabs ul li.ui-tabs-active, .page-kafedry .block-3 .tabs ul li.ui-state-active {
  color: #363636;
}
.page-kafedry .block-3 .tabs ul li.ui-tabs-active a, .page-kafedry .block-3 .tabs ul li.ui-state-active a {
  color: #363636;
}
.page-kafedry .block-3 .tabs ul li.ui-tabs-active::after, .page-kafedry .block-3 .tabs ul li.ui-state-active::after {
  background-color: #363636;
}
.page-kafedry .block-3 .tabs ul li::after {
  content: "";
  background-color: #b9b9b9;
  width: 10px;
  height: 2px;
}
@media (min-width: 768px) {
  .page-kafedry .block-3 .tabs ul li::after {
    width: 60px;
    height: 3px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-3 .tabs ul li::after {
    width: 120px;
    height: 3px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-3 .tabs ul li::after {
    width: 200px;
    height: 5px;
  }
}
.page-kafedry .block-3 .tabs ul li:last-child::after {
  display: none;
}
.page-kafedry .block-3 .col-sm-6 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.page-kafedry .block-3 .slider {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 16px 16px 35px;
  background-color: #fff;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .page-kafedry .block-3 .slider {
    margin-top: 16px;
    padding: 20px 20px 45px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-3 .slider {
    margin-top: 20px;
    padding: 30px 30px 67px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-3 .slider {
    margin-top: 26px;
    padding: 40px 40px 77px;
  }
}
.page-kafedry .block-3 .slider .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 12px;
  gap: 7px;
  position: relative;
  top: unset;
  bottom: unset;
}
@media (min-width: 768px) {
  .page-kafedry .block-3 .slider .swiper-pagination {
    margin-top: 16px;
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-3 .slider .swiper-pagination {
    margin-top: 30px;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-3 .slider .swiper-pagination {
    margin-top: 40px;
    gap: 10px;
  }
}
.page-kafedry .block-3 .slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #363636;
  opacity: 0.5;
  border-radius: 100%;
}
@media (min-width: 768px) {
  .page-kafedry .block-3 .slider .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-3 .slider .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-3 .slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.page-kafedry .block-3 .slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.page-kafedry .block-3 .slider .owl-nav {
  display: none;
}
.page-kafedry .block-3 .slider .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-kafedry .block-3 .slider .slide .text-main {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .page-kafedry .block-3 .slider .slide .text-main {
    margin-bottom: 8px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-3 .slider .slide .text-main {
    margin-bottom: 7px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-3 .slider .slide .text-main {
    margin-bottom: 10px;
  }
}
.page-kafedry .block-3 .slider .slide .image {
  width: 100%;
  height: 192px;
  margin-top: 16px;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .page-kafedry .block-3 .slider .slide .image {
    margin-top: 16px;
    height: 186px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-3 .slider .slide .image {
    margin-top: 30px;
    height: 326px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-3 .slider .slide .image {
    margin-top: 40px;
    height: 482px;
  }
}
.page-kafedry .block-3 .slider .slide .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-kafedry .block-4 {
  margin-top: 40px;
  margin-bottom: 97px;
}
@media (min-width: 768px) {
  .page-kafedry .block-4 {
    margin-top: 60px;
    margin-bottom: 123px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-4 {
    margin-top: 50px;
    margin-bottom: 52px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-4 {
    margin-top: 84px;
    margin-bottom: 130px;
  }
}
@media (min-width: 768px) {
  .page-kafedry .block-4 .h2 br {
    display: none;
  }
}
.page-kafedry .block-4 .row-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 16px;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-kafedry .block-4 .row-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-4 .row-content {
    margin-top: 12px;
    gap: 30px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-4 .row-content {
    margin-top: 24px;
    gap: 40px;
  }
}
.page-kafedry .block-4 .row-content ul.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 16px;
  gap: 16px;
  min-width: 300px;
}
@media (min-width: 768px) {
  .page-kafedry .block-4 .row-content ul.list {
    padding: 24px 20px;
    gap: 20px;
    min-width: unset;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-4 .row-content ul.list {
    padding: 30px;
    gap: 30px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-4 .row-content ul.list {
    padding: 40px;
    gap: 40px;
  }
}
.page-kafedry .block-4 .row-content ul.list.list-2 {
  width: 100%;
  min-width: unset;
}
@media (min-width: 768px) {
  .page-kafedry .block-4 .row-content ul.list.list-2 {
    width: auto;
  }
}
.page-kafedry .block-4 .row-content ul.list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-kafedry .block-4 .row-content ul.list .item {
    gap: 8px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-4 .row-content ul.list .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-4 .row-content ul.list .item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px;
  }
}
.page-kafedry .block-4 .row-content ul.list .button-container {
  position: absolute;
  max-width: 196px;
  right: 3px;
  bottom: -35px;
}
@media (min-width: 768px) {
  .page-kafedry .block-4 .row-content ul.list .button-container {
    max-width: 288px;
    right: 3px;
    bottom: -38px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-4 .row-content ul.list .button-container {
    max-width: 288px;
    right: -196px;
    bottom: 38px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-4 .row-content ul.list .button-container {
    max-width: 424px;
    right: -288px;
    bottom: 0;
  }
}
.page-kafedry .block-4 .row-content ul.list .button-container .button {
  -webkit-transform: rotate(-13deg);
  transform: rotate(-13deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .page-kafedry .block-4 .row-content ul.list .button-container .button {
    padding: 8px 20px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-4 .row-content ul.list .button-container .button {
    padding: 30px;
    -webkit-transform: rotate(-22.647deg);
    transform: rotate(-22.647deg);
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-4 .row-content ul.list .button-container .button {
    padding: 40px;
  }
}
.page-kafedry .form-footer {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-kafedry .form-footer {
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .form-footer {
    margin-bottom: 32px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .form-footer {
    margin-bottom: 115px;
  }
}
.page-kafedry .block-5 {
  padding: 0 0 60px;
}
@media (min-width: 768px) {
  .page-kafedry .block-5 {
    padding: 0 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-5 {
    padding: 80px 0 80px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-5 {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .page-kafedry .block-5 .disciplines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.page-kafedry .block-5 .disciplines__item {
  padding: 16px 70px 16px 16px;
}
@media (min-width: 768px) {
  .page-kafedry .block-5 .disciplines__item {
    padding: 20px 40px 20px 20px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-5 .disciplines__item {
    padding: 20px 40px 20px 20px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-5 .disciplines__item {
    padding: 40px;
  }
}
@media (min-width: 768px) {
  .page-kafedry .block-5 .disciplines__item.bg-black {
    max-width: 405px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-5 .disciplines__item.bg-black {
    max-width: 616px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-5 .disciplines__item.bg-black {
    max-width: 914px;
  }
}
.page-kafedry .block-5 .disciplines__item.bg-clearWhite {
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  position: relative;
  padding: 16px;
}
@media (min-width: 768px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite {
    width: 470px;
    margin-left: -190px;
    margin-top: 70px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite {
    width: 589px;
    margin-left: -80px;
    margin-top: unset;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite {
    width: 832px;
    margin-left: -80px;
  }
}
@media (min-width: 768px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite {
    padding: 20px 20px 20px 20px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite {
    padding: 20px 40px 20px 20px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite {
    padding: 40px;
  }
}
.page-kafedry .block-5 .disciplines__item.bg-clearWhite .h1-sticker {
  display: inline-block;
  position: absolute;
}
.page-kafedry .block-5 .disciplines__item.bg-clearWhite .h1-sticker-1 {
  z-index: -1;
  width: 83px;
  height: 24px;
  -webkit-transform: rotate(51deg);
  transform: rotate(51deg);
  top: 20px;
  left: 210px;
}
@media (min-width: 768px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite .h1-sticker-1 {
    width: 94px;
    height: 34px;
    -webkit-transform: rotate(51deg);
    transform: rotate(51deg);
    top: -40px;
    left: 240px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite .h1-sticker-1 {
    width: 138px;
    height: 50px;
    -webkit-transform: rotate(133deg);
    transform: rotate(133deg);
    top: -40px;
    left: 130px;
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite .h1-sticker-1 {
    width: 174px;
    height: 60px;
    -webkit-transform: rotate(133deg);
    transform: rotate(133deg);
    top: -60px;
    left: 170px;
  }
}
.page-kafedry .block-5 .disciplines__item.bg-clearWhite .h1-sticker-2 {
  width: 104px;
  height: 24px;
  -webkit-transform: rotate(123deg);
  transform: rotate(123deg);
  bottom: 0px;
  right: 0px;
}
@media (min-width: 768px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite .h1-sticker-2 {
    bottom: unset;
    width: 144px;
    height: 34px;
    -webkit-transform: rotate(123deg);
    transform: rotate(123deg);
    top: 120px;
    right: -60px;
  }
}
@media (min-width: 1280px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite .h1-sticker-2 {
    width: 208px;
    top: 0;
    right: -80px;
    height: 49px;
    -webkit-transform: rotate(32deg);
    transform: rotate(32deg);
  }
}
@media (min-width: 1800px) {
  .page-kafedry .block-5 .disciplines__item.bg-clearWhite .h1-sticker-2 {
    width: 255px;
    height: 60px;
    top: 0;
    right: -80px;
  }
}
.page-kafedry .block-5 .disciplines__item.bg-clearWhite .text-caption-3 {
  line-height: 1.6 !important;
}

.page-environmental .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-environmental .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  width: 77px;
  height: 26px;
  left: 124px;
  bottom: 23px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
}
@media (max-width: 767px) {
  .page-environmental .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-environmental .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 238px;
    bottom: 44px;
  }
}
@media (min-width: 1280px) {
  .page-environmental .block-1 .static-title .h1-sticker-1 {
    width: 217px;
    height: 83px;
    left: 370px;
    bottom: 50px;
  }
}
@media (min-width: 1800px) {
  .page-environmental .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 152px;
    left: 525px;
    bottom: 16px;
  }
}
.page-environmental .block-1 .static-title .h1-sticker-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 216px;
  bottom: 35px;
  padding: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
}
@media (min-width: 768px) {
  .page-environmental .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 440px;
    bottom: 60px;
    padding: 12px;
  }
}
@media (min-width: 1280px) {
  .page-environmental .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 614px;
    bottom: 87px;
    padding: 20px;
  }
}
@media (min-width: 1800px) {
  .page-environmental .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 1002px;
    bottom: 114px;
    padding: 40px;
  }
}
.page-environmental .block-1 .static-title .h1-sticker-3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  width: 122px;
  height: 26px;
  left: 193px;
  bottom: 12px;
  padding: 4px 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .page-environmental .block-1 .static-title .h1-sticker-3 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-environmental .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 432px;
    bottom: 37px;
    padding: 8px;
  }
}
@media (min-width: 1280px) {
  .page-environmental .block-1 .static-title .h1-sticker-3 {
    width: 225px;
    height: 83px;
    left: 686px;
    bottom: 32px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-environmental .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1132px;
    bottom: 0;
    padding: 40px;
  }
}
.page-environmental .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-environmental .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-environmental .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-environmental .block-1 p.text-main {
    font-size: 28px;
    max-width: 1160px;
    margin-top: 40px;
  }
}

.page-interior .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 159px;
  bottom: 66px;
}
@media (min-width: 768px) {
  .page-interior .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 319px;
    bottom: 89px;
  }
}
@media (min-width: 1280px) {
  .page-interior .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 510px;
    bottom: 150px;
  }
}
@media (min-width: 1800px) {
  .page-interior .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 758px;
    bottom: 250px;
  }
}
.page-interior .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 144px;
  bottom: 49px;
}
@media (min-width: 768px) {
  .page-interior .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 356px;
    bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .page-interior .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 550px;
    bottom: 13px;
  }
}
@media (min-width: 1800px) {
  .page-interior .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 764px;
    bottom: 20px;
  }
}
.page-interior .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 218px;
  bottom: 50px;
}
@media (min-width: 768px) {
  .page-interior .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 463px;
    bottom: 68px;
  }
}
@media (min-width: 1280px) {
  .page-interior .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    left: 740px;
    bottom: 113px;
  }
}
@media (min-width: 1800px) {
  .page-interior .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1035px;
    bottom: 143px;
  }
}
.page-interior .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-interior .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-interior .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-interior .block-1 p.text-main {
    font-size: 28px;
    max-width: 1460px;
    margin-top: 40px;
  }
}

.page-art-interior .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 264px;
  bottom: 66px;
}
@media (min-width: 768px) {
  .page-art-interior .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 513px;
    bottom: 130px;
  }
}
@media (min-width: 1280px) {
  .page-art-interior .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 800px;
    bottom: 124px;
  }
}
@media (min-width: 1800px) {
  .page-art-interior .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 1182px;
    bottom: 174px;
  }
}
.page-art-interior .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 300px;
  bottom: 116px;
}
@media (min-width: 768px) {
  .page-art-interior .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 408px;
    bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .page-art-interior .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 600px;
    bottom: 13px;
  }
}
@media (min-width: 1800px) {
  .page-art-interior .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 910px;
    bottom: 20px;
  }
}
.page-art-interior .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  bottom: 14px;
}
@media (min-width: 768px) {
  .page-art-interior .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    bottom: 68px;
  }
}
@media (min-width: 1280px) {
  .page-art-interior .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 17px;
  }
}
@media (min-width: 1800px) {
  .page-art-interior .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    bottom: 14px;
  }
}
.page-art-interior .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-art-interior .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-art-interior .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-interior .block-1 p.text-main {
    font-size: 28px;
    max-width: 1460px;
    margin-top: 40px;
  }
}

.page-industrial .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 264px;
  bottom: 10px;
}
@media (min-width: 768px) {
  .page-industrial .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 513px;
    bottom: 48px;
  }
}
@media (min-width: 1280px) {
  .page-industrial .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 820px;
    bottom: 124px;
  }
}
@media (min-width: 1800px) {
  .page-industrial .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 1182px;
    bottom: 174px;
  }
}
.page-industrial .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 131px;
  bottom: 5px;
}
@media (min-width: 768px) {
  .page-industrial .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 255px;
    bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .page-industrial .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 374px;
    bottom: 13px;
  }
}
@media (min-width: 1800px) {
  .page-industrial .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 574px;
    bottom: 20px;
  }
}
.page-industrial .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  bottom: -32px;
}
@media (min-width: 768px) {
  .page-industrial .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    bottom: -12px;
  }
}
@media (min-width: 1280px) {
  .page-industrial .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 17px;
  }
}
@media (min-width: 1800px) {
  .page-industrial .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    bottom: 14px;
  }
}
.page-industrial .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .page-industrial .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-industrial .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-industrial .block-1 p.text-main {
    font-size: 28px;
    max-width: 1160px;
    margin-top: 40px;
  }
}

.page-furniture .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 264px;
  bottom: 58px;
}
@media (min-width: 768px) {
  .page-furniture .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 329px;
    bottom: 96px;
  }
}
@media (min-width: 1280px) {
  .page-furniture .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 620px;
    bottom: 124px;
  }
}
@media (min-width: 1800px) {
  .page-furniture .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 922px;
    bottom: 275px;
  }
}
.page-furniture .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 143px;
  bottom: 48px;
}
@media (min-width: 768px) {
  .page-furniture .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 288px;
    bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .page-furniture .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 442px;
    bottom: 130px;
  }
}
@media (min-width: 1800px) {
  .page-furniture .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 642px;
    bottom: 200px;
  }
}
.page-furniture .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 214px;
  bottom: 15px;
}
@media (min-width: 768px) {
  .page-furniture .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 374px;
    bottom: 51px;
  }
}
@media (min-width: 1280px) {
  .page-furniture .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 50px;
    left: 720px;
  }
}
@media (min-width: 1800px) {
  .page-furniture .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1042px;
    bottom: 141px;
  }
}
.page-furniture .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-furniture .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-furniture .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-furniture .block-1 p.text-main {
    font-size: 28px;
    max-width: 1160px;
    margin-top: 40px;
  }
}

.page-transport .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 208px;
  bottom: 93px;
}
@media (min-width: 768px) {
  .page-transport .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 393px;
    bottom: 142px;
  }
}
@media (min-width: 1280px) {
  .page-transport .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 620px;
    bottom: 124px;
  }
}
@media (min-width: 1800px) {
  .page-transport .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 922px;
    bottom: 275px;
  }
}
.page-transport .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 143px;
  bottom: 58px;
}
@media (min-width: 768px) {
  .page-transport .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 280px;
    bottom: 96px;
  }
}
@media (min-width: 1280px) {
  .page-transport .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 412px;
    bottom: 143px;
  }
}
@media (min-width: 1800px) {
  .page-transport .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 642px;
    bottom: 200px;
  }
}
.page-transport .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 198px;
  bottom: 66px;
}
@media (min-width: 768px) {
  .page-transport .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 430px;
    bottom: 89px;
  }
}
@media (min-width: 1280px) {
  .page-transport .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 50px;
    left: 720px;
  }
}
@media (min-width: 1800px) {
  .page-transport .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1042px;
    bottom: 141px;
  }
}
.page-transport .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-transport .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-transport .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-transport .block-1 p.text-main {
    font-size: 28px;
    max-width: 1460px;
    margin-top: 40px;
  }
}

.page-textile .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 208px;
  bottom: 66px;
}
@media (min-width: 768px) {
  .page-textile .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 393px;
    bottom: 96px;
  }
}
@media (min-width: 1280px) {
  .page-textile .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 620px;
    bottom: 124px;
  }
}
@media (min-width: 1800px) {
  .page-textile .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 922px;
    bottom: 275px;
  }
}
.page-textile .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 135px;
  bottom: 48px;
}
@media (min-width: 768px) {
  .page-textile .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 255px;
    bottom: 96px;
  }
}
@media (min-width: 1280px) {
  .page-textile .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 412px;
    bottom: 143px;
  }
}
@media (min-width: 1800px) {
  .page-textile .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 642px;
    bottom: 200px;
  }
}
.page-textile .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 198px;
  bottom: 31px;
}
@media (min-width: 768px) {
  .page-textile .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 430px;
    bottom: 51px;
  }
}
@media (min-width: 1280px) {
  .page-textile .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 50px;
    left: 720px;
  }
}
@media (min-width: 1800px) {
  .page-textile .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1042px;
    bottom: 141px;
  }
}
.page-textile .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-textile .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-textile .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-textile .block-1 p.text-main {
    font-size: 28px;
    max-width: 1160px;
    margin-top: 40px;
  }
}

.page-art-textile .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 203px;
  bottom: 116px;
}
@media (min-width: 768px) {
  .page-art-textile .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 400px;
    bottom: 230px;
  }
}
@media (min-width: 1280px) {
  .page-art-textile .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 770px;
    bottom: 234px;
  }
}
@media (min-width: 1800px) {
  .page-art-textile .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 1159px;
    bottom: 336px;
  }
}
.page-art-textile .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 179px;
  bottom: 15px;
}
@media (min-width: 768px) {
  .page-art-textile .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 400px;
    bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .page-art-textile .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 512px;
    bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-textile .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 1000px;
    bottom: 20px;
  }
}
.page-art-textile .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 193px;
  bottom: 88px;
}
@media (min-width: 768px) {
  .page-art-textile .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 437px;
    bottom: 178px;
  }
}
@media (min-width: 1280px) {
  .page-art-textile .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 120px;
    left: 860px;
  }
}
@media (min-width: 1800px) {
  .page-art-textile .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1286px;
    bottom: 202px;
  }
}
.page-art-textile .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-art-textile .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-art-textile .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-textile .block-1 p.text-main {
    font-size: 28px;
    max-width: 1040px;
    margin-top: 40px;
  }
}

.page-art-ceramics .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 203px;
  bottom: 116px;
}
@media (min-width: 768px) {
  .page-art-ceramics .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 400px;
    bottom: 230px;
  }
}
@media (min-width: 1280px) {
  .page-art-ceramics .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 770px;
    bottom: 234px;
  }
}
@media (min-width: 1800px) {
  .page-art-ceramics .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 1159px;
    bottom: 336px;
  }
}
.page-art-ceramics .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 179px;
  bottom: 15px;
}
@media (min-width: 768px) {
  .page-art-ceramics .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 400px;
    bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .page-art-ceramics .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 512px;
    bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-ceramics .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 1000px;
    bottom: 20px;
  }
}
.page-art-ceramics .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 193px;
  bottom: 88px;
}
@media (min-width: 768px) {
  .page-art-ceramics .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 437px;
    bottom: 178px;
  }
}
@media (min-width: 1280px) {
  .page-art-ceramics .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 120px;
    left: 860px;
  }
}
@media (min-width: 1800px) {
  .page-art-ceramics .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1286px;
    bottom: 202px;
  }
}
.page-art-ceramics .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-art-ceramics .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-art-ceramics .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-ceramics .block-1 p.text-main {
    font-size: 28px;
    max-width: 1160px;
    margin-top: 40px;
  }
}

.page-art-glass .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 203px;
  bottom: 116px;
}
@media (min-width: 768px) {
  .page-art-glass .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 400px;
    bottom: 230px;
  }
}
@media (min-width: 1280px) {
  .page-art-glass .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 770px;
    bottom: 234px;
  }
}
@media (min-width: 1800px) {
  .page-art-glass .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 1159px;
    bottom: 336px;
  }
}
.page-art-glass .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 179px;
  bottom: 15px;
}
@media (min-width: 768px) {
  .page-art-glass .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 400px;
    bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .page-art-glass .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 512px;
    bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-glass .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 1000px;
    bottom: 20px;
  }
}
.page-art-glass .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 193px;
  bottom: 88px;
}
@media (min-width: 768px) {
  .page-art-glass .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 437px;
    bottom: 178px;
  }
}
@media (min-width: 1280px) {
  .page-art-glass .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 120px;
    left: 860px;
  }
}
@media (min-width: 1800px) {
  .page-art-glass .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1286px;
    bottom: 202px;
  }
}
.page-art-glass .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-art-glass .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-art-glass .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-glass .block-1 p.text-main {
    font-size: 28px;
    max-width: 1460px;
    margin-top: 40px;
  }
}

.page-art-metal .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 217px;
  bottom: 121px;
}
@media (min-width: 768px) {
  .page-art-metal .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 449px;
    bottom: 48px;
  }
}
@media (min-width: 1280px) {
  .page-art-metal .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 770px;
    bottom: 234px;
  }
}
@media (min-width: 1800px) {
  .page-art-metal .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 1159px;
    bottom: 336px;
  }
}
.page-art-metal .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 150px;
  bottom: 5px;
}
@media (min-width: 768px) {
  .page-art-metal .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 313px;
    bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .page-art-metal .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 512px;
    bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-metal .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 1000px;
    bottom: 20px;
  }
}
.page-art-metal .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 218px;
  bottom: 94px;
}
@media (min-width: 768px) {
  .page-art-metal .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 495px;
    bottom: 0px;
  }
}
@media (min-width: 1280px) {
  .page-art-metal .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 120px;
    left: 860px;
  }
}
@media (min-width: 1800px) {
  .page-art-metal .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1286px;
    bottom: 202px;
  }
}
.page-art-metal .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-art-metal .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-art-metal .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-metal .block-1 p.text-main {
    font-size: 28px;
    max-width: 1160px;
    margin-top: 40px;
  }
}

.page-art-rest-metal .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 210px;
  bottom: 115px;
}
@media (min-width: 768px) {
  .page-art-rest-metal .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 393px;
    bottom: 227px;
  }
}
@media (min-width: 1280px) {
  .page-art-rest-metal .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 550px;
    bottom: 348px;
  }
}
@media (min-width: 1800px) {
  .page-art-rest-metal .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 809px;
    bottom: 475px;
  }
}
.page-art-rest-metal .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 162px;
  bottom: 5px;
}
@media (min-width: 768px) {
  .page-art-rest-metal .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 324px;
    bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .page-art-rest-metal .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 512px;
    bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-rest-metal .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 764px;
    bottom: 20px;
  }
}
.page-art-rest-metal .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 218px;
  bottom: 10px;
}
@media (min-width: 768px) {
  .page-art-rest-metal .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 481px;
    bottom: 68px;
  }
}
@media (min-width: 1280px) {
  .page-art-rest-metal .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 90px;
    left: 790px;
  }
}
@media (min-width: 1800px) {
  .page-art-rest-metal .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1057px;
    bottom: 143px;
  }
}
.page-art-rest-metal .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-art-rest-metal .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-art-rest-metal .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-rest-metal .block-1 p.text-main {
    font-size: 28px;
    max-width: 1460px;
    margin-top: 40px;
  }
}

.page-art-rest-furniture .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 219px;
  bottom: 128px;
}
@media (min-width: 768px) {
  .page-art-rest-furniture .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 450px;
    bottom: 245px;
  }
}
@media (min-width: 1280px) {
  .page-art-rest-furniture .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 730px;
    bottom: 348px;
  }
}
@media (min-width: 1800px) {
  .page-art-rest-furniture .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 992px;
    bottom: 484px;
  }
}
.page-art-rest-furniture .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 150px;
  bottom: 5px;
}
@media (min-width: 768px) {
  .page-art-rest-furniture .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 297px;
    bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .page-art-rest-furniture .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 422px;
    bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-rest-furniture .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 625px;
    bottom: 20px;
  }
}
.page-art-rest-furniture .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 218px;
  bottom: 49px;
}
@media (min-width: 768px) {
  .page-art-rest-furniture .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 495px;
    bottom: 128px;
  }
}
@media (min-width: 1280px) {
  .page-art-rest-furniture .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 170px;
    left: 790px;
  }
}
@media (min-width: 1800px) {
  .page-art-rest-furniture .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1237px;
    bottom: 253px;
  }
}
.page-art-rest-furniture .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-art-rest-furniture .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-art-rest-furniture .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-rest-furniture .block-1 p.text-main {
    font-size: 28px;
    max-width: 1460px;
    margin-top: 40px;
  }
}

@media (min-width: 1280px) {
  .page-rest-mon-decor .block-1 .static-title .br-mobile {
    display: none;
  }
}
.page-rest-mon-decor .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 171px;
  bottom: 181px;
}
@media (min-width: 768px) {
  .page-rest-mon-decor .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 450px;
    bottom: 330px;
  }
}
@media (min-width: 1280px) {
  .page-rest-mon-decor .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 540px;
    bottom: 348px;
  }
}
@media (min-width: 1800px) {
  .page-rest-mon-decor .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 809px;
    bottom: 475px;
  }
}
.page-rest-mon-decor .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 182px;
  bottom: 5px;
}
@media (min-width: 768px) {
  .page-rest-mon-decor .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 511px;
    bottom: 95px;
  }
}
@media (min-width: 1280px) {
  .page-rest-mon-decor .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 892px;
    bottom: 144px;
  }
}
@media (min-width: 1800px) {
  .page-rest-mon-decor .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 1522px;
    bottom: 209px;
  }
}
.page-rest-mon-decor .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 215px;
  bottom: 164px;
}
@media (min-width: 768px) {
  .page-rest-mon-decor .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 495px;
    bottom: 273px;
  }
}
@media (min-width: 1280px) {
  .page-rest-mon-decor .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 260px;
    left: 730px;
  }
}
@media (min-width: 1800px) {
  .page-rest-mon-decor .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1049px;
    bottom: 365px;
  }
}
.page-rest-mon-decor .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-rest-mon-decor .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-rest-mon-decor .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-rest-mon-decor .block-1 p.text-main {
    font-size: 28px;
    max-width: 1160px;
    margin-top: 40px;
  }
}

.page-mon-decor .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 195px;
  bottom: 24px;
}
@media (min-width: 768px) {
  .page-mon-decor .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 394px;
    bottom: 53px;
  }
}
@media (min-width: 1280px) {
  .page-mon-decor .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 640px;
    bottom: 178px;
  }
}
@media (min-width: 1800px) {
  .page-mon-decor .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 909px;
    bottom: 257px;
  }
}
.page-mon-decor .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 311px;
  bottom: 96px;
}
@media (min-width: 768px) {
  .page-mon-decor .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 618px;
    bottom: 188px;
  }
}
@media (min-width: 1280px) {
  .page-mon-decor .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 892px;
    bottom: 274px;
  }
}
@media (min-width: 1800px) {
  .page-mon-decor .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 1322px;
    bottom: 380px;
  }
}
.page-mon-decor .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 219px;
  bottom: 9px;
}
@media (min-width: 768px) {
  .page-mon-decor .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 495px;
    bottom: 32px;
  }
}
@media (min-width: 1280px) {
  .page-mon-decor .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 90px;
    left: 810px;
  }
}
@media (min-width: 1800px) {
  .page-mon-decor .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1150px;
    bottom: 147px;
  }
}
.page-mon-decor .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-mon-decor .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-mon-decor .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-mon-decor .block-1 p.text-main {
    font-size: 28px;
    max-width: 1460px;
    margin-top: 40px;
  }
}

.page-mon-decor-sculpture .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 220px;
  bottom: 64px;
}
@media (min-width: 768px) {
  .page-mon-decor-sculpture .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 450px;
    bottom: 126px;
  }
}
@media (min-width: 1280px) {
  .page-mon-decor-sculpture .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 640px;
    bottom: 178px;
  }
}
@media (min-width: 1800px) {
  .page-mon-decor-sculpture .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 909px;
    bottom: 257px;
  }
}
.page-mon-decor-sculpture .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 311px;
  bottom: 96px;
}
@media (min-width: 768px) {
  .page-mon-decor-sculpture .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 649px;
    bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .page-mon-decor-sculpture .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 892px;
    bottom: 274px;
  }
}
@media (min-width: 1800px) {
  .page-mon-decor-sculpture .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 1532px;
    bottom: 32px;
  }
}
.page-mon-decor-sculpture .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 203px;
  bottom: 25px;
}
@media (min-width: 768px) {
  .page-mon-decor-sculpture .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 400px;
    bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-mon-decor-sculpture .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    bottom: 90px;
    left: 810px;
  }
}
@media (min-width: 1800px) {
  .page-mon-decor-sculpture .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 889px;
    bottom: 94px;
  }
}
.page-mon-decor-sculpture .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-mon-decor-sculpture .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-mon-decor-sculpture .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-mon-decor-sculpture .block-1 p.text-main {
    font-size: 28px;
    max-width: 1460px;
    margin-top: 40px;
  }
}

.page-art-graph .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 203px;
  bottom: 95px;
}
@media (min-width: 768px) {
  .page-art-graph .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 394px;
    bottom: 120px;
  }
}
@media (min-width: 1280px) {
  .page-art-graph .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 580px;
    bottom: 150px;
  }
}
@media (min-width: 1800px) {
  .page-art-graph .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 909px;
    bottom: 275px;
  }
}
.page-art-graph .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 187px;
  bottom: 7px;
}
@media (min-width: 768px) {
  .page-art-graph .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 344px;
    bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .page-art-graph .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 470px;
    bottom: 13px;
  }
}
@media (min-width: 1800px) {
  .page-art-graph .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 732px;
    bottom: 20px;
  }
}
.page-art-graph .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 211px;
  bottom: 62px;
}
@media (min-width: 768px) {
  .page-art-graph .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 495px;
    bottom: 100px;
  }
}
@media (min-width: 1280px) {
  .page-art-graph .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    left: 800px;
    bottom: 93px;
  }
}
@media (min-width: 1800px) {
  .page-art-graph .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1150px;
    bottom: 147px;
  }
}
.page-art-graph .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-art-graph .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-art-graph .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-art-graph .block-1 p.text-main {
    font-size: 28px;
    max-width: 1460px;
    margin-top: 40px;
  }
}

.page-multimedia .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 161px;
  bottom: 75px;
}
@media (min-width: 768px) {
  .page-multimedia .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 352px;
    bottom: 96px;
  }
}
@media (min-width: 1280px) {
  .page-multimedia .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 620px;
    bottom: 80px;
  }
}
@media (min-width: 1800px) {
  .page-multimedia .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 782px;
    bottom: 145px;
  }
}
.page-multimedia .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 128px;
  bottom: 48px;
}
@media (min-width: 768px) {
  .page-multimedia .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 254px;
    bottom: 95px;
  }
}
@media (min-width: 1280px) {
  .page-multimedia .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 370px;
    bottom: 144px;
  }
}
@media (min-width: 1800px) {
  .page-multimedia .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 543px;
    bottom: 200px;
  }
}
.page-multimedia .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 219px;
  bottom: 65px;
}
@media (min-width: 768px) {
  .page-multimedia .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 495px;
    bottom: 76px;
  }
}
@media (min-width: 1280px) {
  .page-multimedia .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    left: 800px;
    bottom: 23px;
  }
}
@media (min-width: 1800px) {
  .page-multimedia .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1070px;
    bottom: 36px;
  }
}
.page-multimedia .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-multimedia .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-multimedia .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-multimedia .block-1 p.text-main {
    font-size: 28px;
    max-width: 1390px;
    margin-top: 40px;
  }
}

.page-drive .block-1 .static-title .h1-sticker-1 {
  width: 77px;
  height: 26px;
  left: 161px;
  bottom: 115px;
}
@media (min-width: 768px) {
  .page-drive .block-1 .static-title .h1-sticker-1 {
    width: 190px;
    height: 39px;
    left: 335px;
    bottom: 196px;
  }
}
@media (min-width: 1280px) {
  .page-drive .block-1 .static-title .h1-sticker-1 {
    width: 317px;
    height: 83px;
    left: 860px;
    bottom: 220px;
  }
}
@media (min-width: 1800px) {
  .page-drive .block-1 .static-title .h1-sticker-1 {
    width: 424px;
    height: 116px;
    left: 1230px;
    bottom: 377px;
  }
}
.page-drive .block-1 .static-title .h1-sticker-2 {
  width: 24px;
  height: 24px;
  left: 168px;
  bottom: 3px;
}
@media (min-width: 768px) {
  .page-drive .block-1 .static-title .h1-sticker-2 {
    width: 39px;
    height: 39px;
    left: 324px;
    bottom: 7px;
  }
}
@media (min-width: 1280px) {
  .page-drive .block-1 .static-title .h1-sticker-2 {
    width: 55px;
    height: 55px;
    left: 490px;
    bottom: 11px;
  }
}
@media (min-width: 1800px) {
  .page-drive .block-1 .static-title .h1-sticker-2 {
    width: 120px;
    height: 120px;
    left: 726px;
    bottom: 13px;
  }
}
.page-drive .block-1 .static-title .h1-sticker-3 {
  width: 122px;
  height: 26px;
  left: 208px;
  bottom: 103px;
}
@media (min-width: 768px) {
  .page-drive .block-1 .static-title .h1-sticker-3 {
    width: 190px;
    height: 39px;
    left: 474px;
    bottom: 187px;
  }
}
@media (min-width: 1280px) {
  .page-drive .block-1 .static-title .h1-sticker-3 {
    width: 274px;
    height: 83px;
    left: 950px;
    bottom: 91px;
  }
}
@media (min-width: 1800px) {
  .page-drive .block-1 .static-title .h1-sticker-3 {
    width: 424px;
    height: 116px;
    left: 1340px;
    bottom: 226px;
  }
}
.page-drive .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-drive .block-1 p.text-main {
    font-size: 22px;
    max-width: 550px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-drive .block-1 p.text-main {
    font-size: 18px;
    max-width: 960px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-drive .block-1 p.text-main {
    font-size: 28px;
    max-width: 1390px;
    margin-top: 40px;
  }
}

.page-main-program .block-1 {
  padding: 135px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .page-main-program .block-1 {
    padding: 180px 0 176px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-1 {
    padding: 451px 0 61px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-1 {
    padding: 504px 0 115px;
  }
}
.page-main-program .block-1 .container {
  position: relative;
}
.page-main-program .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-main-program .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  z-index: 1;
  -webkit-transform: rotate(-13deg);
  transform: rotate(-13deg);
  left: 165px;
  bottom: 1px;
  width: 186px;
  padding: 6px 16px;
}
@media (max-width: 767px) {
  .page-main-program .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-main-program .block-1 .static-title .h1-sticker-1 {
    left: 252px;
    bottom: 38px;
    width: 170px;
    padding: 20px 20px;
    -webkit-transform: rotate(-22.343deg);
    transform: rotate(-22.343deg);
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-1 .static-title .h1-sticker-1 {
    left: 517px;
    bottom: 59px;
    width: 154px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-1 .static-title .h1-sticker-1 {
    left: 537px;
    bottom: 115px;
    width: 424px;
    padding: 40px;
  }
}
.page-main-program .block-1 .static-title .h1-sticker-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  left: 132px;
  bottom: 80px;
  width: 196px;
  padding: 6px 16px;
}
@media (max-width: 767px) {
  .page-main-program .block-1 .static-title .h1-sticker-2 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-main-program .block-1 .static-title .h1-sticker-2 {
    -webkit-transform: rotate(17.184deg);
    transform: rotate(17.184deg);
    left: 215px;
    bottom: 181px;
    width: 253px;
    padding: 10px 20px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-1 .static-title .h1-sticker-2 {
    left: 438px;
    bottom: 254px;
    width: 274px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-1 .static-title .h1-sticker-2 {
    left: 610px;
    bottom: 349px;
    width: 424px;
    padding: 40px;
  }
}
.page-main-program .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-main-program .block-1 p.text-main {
    font-size: 22px;
    max-width: 360px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-1 p.text-main {
    font-size: 18px;
    max-width: 480px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-1 p.text-main {
    font-size: 28px;
    max-width: 860px;
    margin-top: 40px;
  }
}
.page-main-program .block-1 .right-content {
  margin-top: 36px;
}
@media (min-width: 768px) {
  .page-main-program .block-1 .right-content {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.page-main-program .block-1 .right-content .images {
  position: relative;
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .page-main-program .block-1 .right-content .images {
    margin-bottom: 0;
  }
}
.page-main-program .block-1 .right-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-main-program .block-1 .right-content .image.image-1 {
  width: 208px;
  height: 301px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  margin-left: -24px;
}
@media (min-width: 768px) {
  .page-main-program .block-1 .right-content .image.image-1 {
    margin-left: 0;
    width: 208px;
    height: 301px;
    top: 15px;
    right: 56px;
    position: absolute;
    -webkit-transform: rotate(16.098deg);
    transform: rotate(16.098deg);
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-1 .right-content .image.image-1 {
    width: 374px;
    height: 540px;
    top: -341px;
    right: 118px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-1 .right-content .image.image-1 {
    width: 508px;
    height: 735px;
    top: -341px;
    right: 160px;
  }
}
.page-main-program .block-1 .right-content .image.image-2 {
  position: absolute;
  z-index: -1;
  bottom: 19px;
  width: 205px;
  margin-right: -80px;
  height: 159px;
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
}
@media (min-width: 768px) {
  .page-main-program .block-1 .right-content .image.image-2 {
    margin-right: 0;
    left: unset;
    right: 0;
    bottom: 66px;
    width: 205px;
    height: 159px;
    -webkit-filter: brightness(1.4);
    filter: brightness(1.4);
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-1 .right-content .image.image-2 {
    right: 0;
    bottom: 202px;
    width: 368px;
    height: 285px;
    -webkit-filter: brightness(1.4);
    filter: brightness(1.4);
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-1 .right-content .image.image-2 {
    right: 0;
    bottom: 212px;
    width: 501px;
    height: 388px;
    -webkit-filter: brightness(1.4);
    filter: brightness(1.4);
  }
}
.page-main-program .block-1 .right-content .image.image-2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 163, 246, 0.7)), to(rgba(255, 163, 246, 0.7)));
  background-image: linear-gradient(0deg, rgba(255, 163, 246, 0.7) 0%, rgba(255, 163, 246, 0.7) 100%);
}
.page-main-program .block-1 .right-content .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-main-program .block-1 .right-content .prices {
    position: absolute;
    right: 0;
    padding: 20px;
    gap: 16px;
    bottom: -137px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-1 .right-content .prices {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 30px;
    gap: 30px;
    bottom: 0;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-1 .right-content .prices {
    gap: 40px;
    padding: 40px;
    bottom: -28px;
  }
}
.page-main-program .block-1 .right-content .prices .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-main-program .block-1 .right-content .prices .item {
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-1 .right-content .prices .item {
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-1 .right-content .prices .item {
    gap: 10px;
  }
}
.page-main-program .block-1 .right-content .prices .item .h2 {
  letter-spacing: -1.65px;
}
@media (min-width: 768px) {
  .page-main-program .block-1 .right-content .prices .item .h2 {
    letter-spacing: -2.4px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-1 .right-content .prices .item .h2 {
    letter-spacing: -3px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-1 .right-content .prices .item .h2 {
    letter-spacing: -4px;
  }
}
.page-main-program .block-2 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-main-program .block-2 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-2 .h2-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-2 .h2-title {
    margin-bottom: 40px;
  }
}
.page-main-program .block-2 .subjects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-main-program .block-2 .subjects {
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-2 .subjects {
    gap: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-2 .subjects {
    gap: 40px;
  }
}
.page-main-program .block-2 .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-main-program .block-2 .title-container {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-2 .title-container {
    margin-bottom: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-2 .title-container {
    margin-bottom: 40px;
  }
}
.page-main-program .block-2 .title-container .h2-title {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .page-main-program .block-2 .title-container .h2-title {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-2 .title-container .h2-title {
    margin-bottom: 0;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-2 .title-container .h2-title {
    margin-bottom: 0;
  }
}
.page-main-program .block-2 .subject-swiper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  gap: 16px;
  height: 18px;
}
@media (min-width: 768px) {
  .page-main-program .block-2 .subject-swiper-nav {
    gap: 40px;
    height: 22px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-2 .subject-swiper-nav {
    gap: 40px;
    height: 22px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-2 .subject-swiper-nav {
    gap: 61px;
    height: 31px;
  }
}
.page-main-program .block-2 .subject-swiper-nav .swiper-button-next,
.page-main-program .block-2 .subject-swiper-nav .swiper-button-prev {
  position: relative;
  width: 18px;
  height: 18px;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  -webkit-transform: unset;
  transform: unset;
  margin-top: unset;
}
@media (min-width: 768px) {
  .page-main-program .block-2 .subject-swiper-nav .swiper-button-next,
  .page-main-program .block-2 .subject-swiper-nav .swiper-button-prev {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-2 .subject-swiper-nav .swiper-button-next,
  .page-main-program .block-2 .subject-swiper-nav .swiper-button-prev {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-2 .subject-swiper-nav .swiper-button-next,
  .page-main-program .block-2 .subject-swiper-nav .swiper-button-prev {
    width: 31px;
    height: 31px;
  }
}
.page-main-program .block-2 .subject-swiper-nav .swiper-button-next::after,
.page-main-program .block-2 .subject-swiper-nav .swiper-button-prev::after {
  display: none;
  content: unset;
}
.page-main-program .block-3 {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-main-program .block-3 {
    margin-top: 60px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 {
    margin-top: 120px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 {
    margin-top: 120px;
  }
}
.page-main-program .block-3 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .h2-title {
    margin-bottom: 27px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .h2-title {
    margin-bottom: 40px;
  }
}
.page-main-program .block-3 .schedule-desktop {
  display: none;
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .schedule-desktop {
    display: block;
  }
}
.page-main-program .block-3 .kafedry-form {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 4px;
  display: none;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .kafedry-form {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 4px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .kafedry-form {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .kafedry-form {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 48px;
  }
}
.page-main-program .block-3 .kafedry-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .kafedry-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    width: auto;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .kafedry-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    width: auto;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .kafedry-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    width: auto;
  }
}
.page-main-program .block-3 .kafedry-form .form-group select {
  width: 100%;
  height: 38px;
  color: #363636;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(../img/svg/arrow_bottom_black.svg) calc(100% - 10px) center/18px no-repeat #fff;
  padding-left: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 40px;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .kafedry-form .form-group select {
    width: 411px;
    height: 41px;
    background-size: 18px;
    padding-left: 16px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .kafedry-form .form-group select {
    width: 454px;
    height: 38px;
    background-size: 18px;
    padding-left: 21px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .kafedry-form .form-group select {
    width: 692px;
    height: 57px;
    background-size: 24px;
    padding-left: 30px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .mobile-schedule {
    display: none;
  }
}
.page-main-program .block-3 .mobile-schedule .kafedry-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .mobile-schedule .kafedry-form {
    display: none;
  }
}
.page-main-program .block-3 .mobile-schedule .level-button {
  position: relative;
  z-index: -1;
  color: #363636;
  padding: 19px 16px;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .mobile-schedule .level-button {
    padding: 19px 24px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .mobile-schedule .level-button {
    padding: 27.07px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .mobile-schedule .level-button {
    padding: 40px;
  }
}
.page-main-program .block-3 .mobile-schedule .level-button-1 {
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}
.page-main-program .block-3 .mobile-schedule .level-button-2 {
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.page-main-program .block-3 .mobile-schedule .level-button-3 {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}
.page-main-program .block-3 .mobile-schedule .mobile-schedule-groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.page-main-program .block-3 .mobile-schedule .groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.page-main-program .block-3 .mobile-schedule .groups .group .title {
  background: url("../img/svg/arrow_bottom_black.svg") calc(100% - 10px) center/18px no-repeat #fff;
  padding: 10px 16px;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .mobile-schedule .groups .group .title {
    padding: 12px 20px;
  }
}
.page-main-program .block-3 .mobile-schedule .groups .group .title.active {
  color: #fff;
  background: url("../img/svg/arrow_top_white.svg") calc(100% - 10px) center/18px no-repeat #363636;
}
.page-main-program .block-3 .mobile-schedule .groups .group .title:hover {
  cursor: pointer;
}
.page-main-program .block-3 .mobile-schedule .groups .group .content {
  display: none;
}
.page-main-program .block-3 .mobile-schedule .groups .group .content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 20px 16px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .mobile-schedule .groups .group .content-item {
    padding: 20px;
    margin-top: 8px;
  }
}
.page-main-program .block-3 .mobile-schedule .groups .group .content-item .day {
  width: 50%;
}
.page-main-program .block-3 .mobile-schedule .groups .group .content-item .subject {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .mobile-schedule .groups .group .content-item .subject {
    gap: 16px;
  }
}
.page-main-program .block-3 .mobile-schedule .groups .group .content-item .subject li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.page-main-program .block-3 .mobile-schedule .groups .group .content-item .subject li::before {
  content: "";
  display: inline-block;
  width: 4.5px;
  height: 4.5px;
  border-radius: 100%;
  background-color: #363636;
}
.page-main-program .block-3 .schedule {
  display: none;
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page-main-program .block-3 .schedule .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 7px;
  position: relative;
  width: 100%;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr {
    gap: 10px;
  }
}
.page-main-program .block-3 .schedule .tr.tr-rows {
  min-height: 65px;
  margin-bottom: 62px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr.tr-rows {
    min-height: 90px;
    margin-bottom: 97px;
  }
}
.page-main-program .block-3 .schedule .tr.tr-rows:last-child {
  margin-bottom: 188.5px;
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .schedule .tr.tr-rows:last-child {
    margin-bottom: 190px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr.tr-rows:last-child {
    margin-bottom: 277px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .schedule .tr.tr-rows:hover {
    background-color: #363636;
  }
  .page-main-program .block-3 .schedule .tr.tr-rows:hover .td:nth-child(1) {
    background-color: #363636;
    color: #fff;
  }
  .page-main-program .block-3 .schedule .tr.tr-rows:hover .td.hover-yellow {
    background-color: #ebff00;
  }
  .page-main-program .block-3 .schedule .tr.tr-rows:hover .td.hover-red {
    background-color: #ff5f67;
  }
  .page-main-program .block-3 .schedule .tr.tr-rows:hover .td.hover-pink {
    background-color: #ffa1f6;
  }
  .page-main-program .block-3 .schedule .tr.tr-rows:hover .td.hover-orange {
    background-color: #ff9d43;
  }
  .page-main-program .block-3 .schedule .tr.tr-rows:hover .td.hidden {
    opacity: 1;
    visibility: visible;
  }
}
.page-main-program .block-3 .schedule .tr .th {
  padding: 12.24px 20.41px;
  width: 100%;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .th {
    padding: 18px 30px;
  }
}
.page-main-program .block-3 .schedule .tr .td,
.page-main-program .block-3 .schedule .tr .th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 136px;
  -webkit-transition: background-color 0.2s, color 0.2s, opacity 0.2s;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td,
  .page-main-program .block-3 .schedule .tr .th {
    min-width: 200px;
  }
}
.page-main-program .block-3 .schedule .tr .td:nth-child(1),
.page-main-program .block-3 .schedule .tr .th:nth-child(1) {
  min-width: 199px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td:nth-child(1),
  .page-main-program .block-3 .schedule .tr .th:nth-child(1) {
    min-width: 298px;
  }
}
.page-main-program .block-3 .schedule .tr .td {
  min-height: 65px;
  padding: 13.61px 0;
  text-align: center;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td {
    min-height: 90px;
    padding: 20px 0;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs {
  position: absolute;
  min-height: 127px;
  top: 0;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs {
    min-height: 187px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-top-1 {
  top: 127px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-top-1 {
    top: 187px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-top-2 {
  top: 254px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-top-2 {
    top: 374px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-top-3 {
  top: 381px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-top-3 {
    top: 561px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-top-4 {
  top: 508px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-top-4 {
    top: 748px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-top-5 {
  top: 635px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-top-5 {
    top: 935px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-top-6 {
  top: 762px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-top-6 {
    top: 1122px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-col-1 {
  left: 206px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-col-1 {
    left: 308px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-col-2 {
  left: 349px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-col-2 {
    left: 518px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-col-3 {
  left: 492px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-col-3 {
    left: 728px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-col-4 {
  left: 635px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-col-4 {
    left: 938px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-col-5 {
  left: 778px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-col-5 {
    left: 1148px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-col-6 {
  left: 921px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-col-6 {
    left: 1358px;
  }
}
.page-main-program .block-3 .schedule .tr .td.abs.abs-col-7 {
  left: 1064px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.abs.abs-col-7 {
    left: 1568px;
  }
}
.page-main-program .block-3 .schedule .tr .td.hidden {
  z-index: 10;
  text-align: left;
  height: auto;
  opacity: 0;
  visibility: hidden;
}
.page-main-program .block-3 .schedule .tr .td.hidden li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.hidden li {
    gap: 12px;
  }
}
.page-main-program .block-3 .schedule .tr .td.hidden li::before {
  content: "";
  display: inline-block;
  width: 4.5px;
  height: 4.5px;
  border-radius: 100%;
  background-color: #363636;
  margin-top: 8px;
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .schedule .tr .td.hidden li::before {
    width: 6px;
    height: 6px;
    margin-top: 10px;
  }
}
.page-main-program .block-3 .materials {
  position: relative;
  width: 100%;
  padding: 16px;
  background-color: #fff;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .materials {
    width: 382px;
    padding: 20px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .materials {
    width: 793px;
    padding: 27px;
    margin-top: -116px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .materials {
    width: 793px;
    padding: 27px;
    margin-top: -66px;
  }
}
.page-main-program .block-3 .materials .button {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 116px;
  height: 44px;
  -webkit-transform: rotate(-22.343deg);
  transform: rotate(-22.343deg);
  padding: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 45px;
  right: 6px;
  background-color: #ebff00;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .page-main-program .block-3 .materials .button {
    width: 140px;
    height: 44px;
    padding: 8px;
    top: 35px;
    right: -89px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
    text-decoration: none;
  }
  .page-main-program .block-3 .materials .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
  }
}
.page-main-program .block-4 {
  margin-top: 98px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-main-program .block-4 {
    margin-top: 102px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-4 {
    margin-top: 110px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-4 {
    margin-top: 110px;
    margin-bottom: 90px;
  }
}
.page-main-program .block-4 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-main-program .block-4 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-4 .h2-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-4 .h2-title {
    margin-bottom: 44px;
  }
}
.page-main-program .block-4 .steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
@media (min-width: 768px) {
  .page-main-program .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-4 .steps .step {
    padding: 14px;
    height: 100%;
    gap: 26px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 20px;
  }
}
.page-main-program .block-4 .steps .step-title {
  width: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
}
@media (min-width: 768px) {
  .page-main-program .block-4 .steps .step-title {
    width: 88px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 88px;
    flex: 0 0 88px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-4 .steps .step-title {
    width: 136px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-4 .steps .step-title {
    width: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.page-main-program .block-4 .steps .step .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ebff00;
  text-decoration: underline;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-main-program .block-4 .steps .step .button {
    padding: 5px 10px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-4 .steps .step .button {
    padding: 5px 10px;
    text-decoration: none;
  }
  .page-main-program .block-4 .steps .step .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-4 .steps .step .button {
    padding: 5px 10px;
    margin-top: 20px;
  }
}
.page-main-program .block-4 .steps .step.step-2, .page-main-program .block-4 .steps .step.step-6 {
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}
.page-main-program .block-4 .steps .step.step-4 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1280px) {
  .page-main-program .block-4 .steps .step.step-4 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-4 .steps .step.step-4 .step-text {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 801px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 801px;
    flex: 0 0 801px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 1177px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1177px;
    flex: 0 0 1177px;
  }
}
.page-main-program .block-4 .steps .step.step-5 {
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
}
.page-main-program .block-4 .steps .step.step-5 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .page-main-program .block-4 .steps .step.step-5 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .block-4 .steps .step.step-5 .step-text {
    gap: 20px;
  }
}
.page-main-program .block-4 .steps .step.step-5 .step-text > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
.page-main-program .form-footer {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-main-program .form-footer {
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-main-program .form-footer {
    margin-bottom: 32px;
  }
}
@media (min-width: 1800px) {
  .page-main-program .form-footer {
    margin-bottom: 115px;
  }
}

.page-main-program-2 .block-1 {
  padding: 135px 0 40px;
}
@media (min-width: 768px) {
  .page-main-program-2 .block-1 {
    padding: 180px 0 176px;
  }
}
@media (min-width: 1280px) {
  .page-main-program-2 .block-1 {
    padding: 321px 0 61px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-2 .block-1 {
    padding: 504px 0 115px;
  }
}
.page-main-program-2 .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-main-program-2 .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  z-index: 1;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
  left: 165px;
  bottom: 1px;
  width: 186px;
  padding: 6px 16px;
}
@media (max-width: 767px) {
  .page-main-program-2 .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-main-program-2 .block-1 .static-title .h1-sticker-1 {
    left: 272px;
    bottom: 38px;
    width: 170px;
    padding: 20px 20px;
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@media (min-width: 1280px) {
  .page-main-program-2 .block-1 .static-title .h1-sticker-1 {
    left: 517px;
    bottom: 75px;
    width: 224px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-2 .block-1 .static-title .h1-sticker-1 {
    left: 615px;
    bottom: 115px;
    width: 424px;
    padding: 40px;
  }
}
.page-main-program-2 .block-1 .static-title .h1-sticker-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
  left: 50px;
  bottom: 96px;
  width: 276px;
  padding: 6px 16px;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-main-program-2 .block-1 .static-title .h1-sticker-2 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-main-program-2 .block-1 .static-title .h1-sticker-2 {
    -webkit-transform: rotate(17.184deg);
    transform: rotate(17.184deg);
    left: 315px;
    bottom: 181px;
    width: 314px;
    padding: 10px 20px;
  }
}
@media (min-width: 1280px) {
  .page-main-program-2 .block-1 .static-title .h1-sticker-2 {
    left: 438px;
    bottom: 284px;
    width: 424px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-2 .block-1 .static-title .h1-sticker-2 {
    left: 734px;
    bottom: 412px;
    width: 584px;
    padding: 40px;
  }
}
.page-main-program-2 .block-1 .right-content .image img {
  width: 100%;
  height: 100%;
}
.page-main-program-2 .block-1 .right-content .image.image-1 {
  width: 327px;
  height: 218px;
  margin-left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
@media (min-width: 768px) {
  .page-main-program-2 .block-1 .right-content .image.image-1 {
    margin-left: 0;
    width: 310px;
    height: 207px;
    top: 120px;
    right: 0px;
    position: absolute;
  }
}
@media (min-width: 1280px) {
  .page-main-program-2 .block-1 .right-content .image.image-1 {
    width: 439px;
    height: 294px;
    top: -88px;
    right: 0px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-2 .block-1 .right-content .image.image-1 {
    width: 549px;
    height: 367px;
    top: -208px;
    right: 0px;
  }
}

.page-main-program-3 .block-1 {
  padding: 135px 0 40px;
}
@media (min-width: 768px) {
  .page-main-program-3 .block-1 {
    padding: 180px 0 176px;
  }
}
@media (min-width: 1280px) {
  .page-main-program-3 .block-1 {
    padding: 321px 0 61px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-3 .block-1 {
    padding: 504px 0 115px;
  }
}
.page-main-program-3 .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-main-program-3 .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  z-index: 1;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  left: 135px;
  bottom: 1px;
  width: 186px;
  padding: 6px 16px;
}
@media (max-width: 767px) {
  .page-main-program-3 .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-main-program-3 .block-1 .static-title .h1-sticker-1 {
    left: 282px;
    bottom: 38px;
    width: 170px;
    padding: 20px 20px;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
}
@media (min-width: 1280px) {
  .page-main-program-3 .block-1 .static-title .h1-sticker-1 {
    left: 417px;
    bottom: 59px;
    width: 154px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-3 .block-1 .static-title .h1-sticker-1 {
    left: 570px;
    bottom: 95px;
    width: 424px;
    padding: 40px;
  }
}
.page-main-program-3 .block-1 .static-title .h1-sticker-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
  left: 50px;
  bottom: 96px;
  width: 276px;
  padding: 6px 16px;
}
@media (max-width: 767px) {
  .page-main-program-3 .block-1 .static-title .h1-sticker-2 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-main-program-3 .block-1 .static-title .h1-sticker-2 {
    -webkit-transform: rotate(-11deg);
    transform: rotate(-11deg);
    left: 33px;
    bottom: 181px;
    width: 314px;
    padding: 10px 20px;
  }
}
@media (min-width: 1280px) {
  .page-main-program-3 .block-1 .static-title .h1-sticker-2 {
    left: 338px;
    bottom: 274px;
    width: 424px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-3 .block-1 .static-title .h1-sticker-2 {
    left: 469px;
    bottom: 359px;
    width: 583px;
    padding: 40px;
  }
}
.page-main-program-3 .block-1 .right-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-main-program-3 .block-1 .right-content .image.image-1 {
  width: 179px;
  height: 319px;
  -webkit-transform: rotate(-16deg);
  transform: rotate(-16deg);
  margin-left: -44px;
}
@media (min-width: 768px) {
  .page-main-program-3 .block-1 .right-content .image.image-1 {
    margin-left: 0;
    width: 153px;
    height: 273px;
    top: 105px;
    right: 89px;
    position: absolute;
    -webkit-transform: rotate(-16deg);
    transform: rotate(-16deg);
  }
}
@media (min-width: 1280px) {
  .page-main-program-3 .block-1 .right-content .image.image-1 {
    width: 260px;
    height: 462px;
    top: -241px;
    right: 98px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-3 .block-1 .right-content .image.image-1 {
    width: 330px;
    height: 588px;
    top: -266px;
    right: 230px;
  }
}
.page-main-program-3 .block-1 .right-content .image.image-2 {
  position: absolute;
  z-index: -1;
  bottom: 130px;
  width: 280px;
  margin-right: -30px;
  height: 187px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
}
@media (min-width: 768px) {
  .page-main-program-3 .block-1 .right-content .image.image-2 {
    margin-right: 0;
    left: unset;
    right: 7px;
    bottom: 163px;
    width: 227px;
    height: 151px;
    -webkit-filter: brightness(1.4);
    filter: brightness(1.4);
  }
}
@media (min-width: 1280px) {
  .page-main-program-3 .block-1 .right-content .image.image-2 {
    right: 0px;
    bottom: 362px;
    width: 365px;
    height: 245px;
    -webkit-filter: brightness(1.4);
    filter: brightness(1.4);
  }
}
@media (min-width: 1800px) {
  .page-main-program-3 .block-1 .right-content .image.image-2 {
    right: 33px;
    bottom: 508px;
    width: 515px;
    height: 344px;
    -webkit-filter: brightness(1.4);
    filter: brightness(1.4);
  }
}
.page-main-program-3 .block-1 .right-content .image.image-2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 95, 103, 0.7)), to(rgba(255, 95, 103, 0.7)));
  background-image: linear-gradient(0deg, rgba(255, 95, 103, 0.7) 0%, rgba(255, 95, 103, 0.7) 100%);
}

.page-main-program-0 .block-1 {
  padding: 135px 0 40px;
}
@media (min-width: 768px) {
  .page-main-program-0 .block-1 {
    padding: 180px 0 176px;
  }
}
@media (min-width: 1280px) {
  .page-main-program-0 .block-1 {
    padding: 321px 0 61px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-0 .block-1 {
    padding: 504px 0 115px;
  }
}
.page-main-program-0 .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-main-program-0 .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  z-index: 1;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
  left: 165px;
  bottom: 1px;
  width: 186px;
  padding: 6px 16px;
}
@media (max-width: 767px) {
  .page-main-program-0 .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-main-program-0 .block-1 .static-title .h1-sticker-1 {
    left: 272px;
    bottom: 38px;
    width: 170px;
    padding: 20px 20px;
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@media (min-width: 1280px) {
  .page-main-program-0 .block-1 .static-title .h1-sticker-1 {
    left: 517px;
    bottom: 75px;
    width: 224px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-0 .block-1 .static-title .h1-sticker-1 {
    left: 615px;
    bottom: 115px;
    width: 424px;
    padding: 40px;
  }
}
.page-main-program-0 .block-1 .static-title .h1-sticker-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
  left: 50px;
  bottom: 96px;
  width: 276px;
  padding: 6px 16px;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-main-program-0 .block-1 .static-title .h1-sticker-2 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-main-program-0 .block-1 .static-title .h1-sticker-2 {
    -webkit-transform: rotate(17.184deg);
    transform: rotate(17.184deg);
    left: 315px;
    bottom: 181px;
    width: 314px;
    padding: 10px 20px;
  }
}
@media (min-width: 1280px) {
  .page-main-program-0 .block-1 .static-title .h1-sticker-2 {
    left: 438px;
    bottom: 284px;
    width: 424px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-0 .block-1 .static-title .h1-sticker-2 {
    left: 734px;
    bottom: 412px;
    width: 584px;
    padding: 40px;
  }
}
.page-main-program-0 .block-1 .right-content .image img {
  width: 100%;
  height: 100%;
}
.page-main-program-0 .block-1 .right-content .image.image-1 {
  width: 327px;
  height: 218px;
  margin-left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
@media (min-width: 768px) {
  .page-main-program-0 .block-1 .right-content .image.image-1 {
    margin-left: 0;
    width: 310px;
    height: 207px;
    top: 120px;
    right: 0px;
    position: absolute;
  }
}
@media (min-width: 1280px) {
  .page-main-program-0 .block-1 .right-content .image.image-1 {
    width: 439px;
    height: 294px;
    top: -88px;
    right: 0px;
  }
}
@media (min-width: 1800px) {
  .page-main-program-0 .block-1 .right-content .image.image-1 {
    width: 549px;
    height: 367px;
    top: -208px;
    right: 0px;
  }
}
.page-main-program-0 .block-4 .steps .step .button {
  background-color: #363636;
  color: #fff;
}

.page-programs .levels {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-programs .levels {
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-programs .levels {
    margin-top: 50px;
  }
}
@media (min-width: 1800px) {
  .page-programs .levels {
    margin-top: 40px;
  }
}
.page-programs .levels .level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 16px 20px;
  height: 100%;
}
@media (min-width: 768px) {
  .page-programs .levels .level {
    gap: 28px;
    padding: 20px 20px 24px;
  }
}
@media (min-width: 1280px) {
  .page-programs .levels .level {
    gap: 30px;
    padding: 15px;
  }
}
@media (min-width: 1800px) {
  .page-programs .levels .level {
    gap: 40px;
    padding: 20px;
  }
}
.page-programs .levels .level-title {
  font-size: 33px;
}
@media (min-width: 768px) {
  .page-programs .levels .level-title {
    font-size: 42px;
  }
}
@media (min-width: 1280px) {
  .page-programs .levels .level-title {
    font-size: 60px;
  }
}
@media (min-width: 1800px) {
  .page-programs .levels .level-title {
    font-size: 80px;
  }
}
.page-programs .levels .level .show-more-btn {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  line-height: 0.8;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 14.5px 17px;
  margin-top: auto;
}
@media (min-width: 768px) {
  .page-programs .levels .level .show-more-btn {
    font-size: 22px;
    gap: 12px;
    padding: 16px 20px;
  }
}
@media (min-width: 1280px) {
  .page-programs .levels .level .show-more-btn {
    font-size: 18px;
    gap: 7px;
    padding: 13.5px 20px;
  }
}
@media (min-width: 1800px) {
  .page-programs .levels .level .show-more-btn {
    font-size: 28px;
    gap: 10px;
    padding: 20px 30px;
  }
}
.page-programs .levels .level .show-more-btn svg {
  width: 12.6px;
  height: 12.6px;
}
@media (min-width: 768px) {
  .page-programs .levels .level .show-more-btn svg {
    width: 14.68px;
    height: 14.68px;
  }
}
@media (min-width: 1280px) {
  .page-programs .levels .level .show-more-btn svg {
    width: 15.08px;
    height: 15.08px;
  }
}
@media (min-width: 1800px) {
  .page-programs .levels .level .show-more-btn svg {
    width: 22.09px;
    height: 22.09px;
  }
}
.page-programs .block-1 {
  padding-top: 135px;
}
@media (min-width: 768px) {
  .page-programs .block-1 {
    padding-top: 160px;
  }
}
@media (min-width: 1280px) {
  .page-programs .block-1 {
    padding-top: 152px;
  }
}
@media (min-width: 1800px) {
  .page-programs .block-1 {
    padding-top: 240px;
  }
}
.page-programs .block-1 .second-level {
  margin-top: 0px;
}
@media (min-width: 1280px) {
  .page-programs .block-1 .second-level {
    margin-top: 0px;
  }
}
@media (min-width: 1800px) {
  .page-programs .block-1 .second-level {
    margin-top: 0px;
  }
}
.page-programs .block-2 {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .page-programs .block-2 {
    padding-top: 60px;
  }
}
@media (min-width: 1280px) {
  .page-programs .block-2 {
    padding-top: 55px;
  }
}
@media (min-width: 1800px) {
  .page-programs .block-2 {
    padding-top: 46px;
  }
}
.page-programs .block-2 .second-level {
  margin-top: 0px;
}
@media (min-width: 1280px) {
  .page-programs .block-2 .second-level {
    margin-top: 0px;
  }
}
@media (min-width: 1800px) {
  .page-programs .block-2 .second-level {
    margin-top: 0px;
  }
}
.page-programs .form-footer {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .page-programs .form-footer {
    padding: 60px 0;
  }
}
@media (min-width: 1280px) {
  .page-programs .form-footer {
    padding: 67px 0 43px;
  }
}
@media (min-width: 1800px) {
  .page-programs .form-footer {
    padding: 100px 0 72px;
  }
}
.page-programs .form-footer .form {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-programs .form-footer .form {
    margin-top: 0;
  }
}

.page-prices .block-1 {
  padding: 135px 0 40px;
}
@media (min-width: 768px) {
  .page-prices .block-1 {
    padding: 160px 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-prices .block-1 {
    padding: 150px 0 44px;
  }
}
@media (min-width: 1800px) {
  .page-prices .block-1 {
    padding: 240px 0 80px;
  }
}
.page-prices .block-2 {
  padding: 0 0 40px;
}
@media (min-width: 768px) {
  .page-prices .block-2 {
    padding: 0 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-prices .block-2 {
    padding: 0 0 44px;
  }
}
@media (min-width: 1800px) {
  .page-prices .block-2 {
    padding: 0 0 80px;
  }
}
.page-prices .block-2 .levels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .page-prices .block-2 .levels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .page-prices .block-2 .levels {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-prices .block-2 .levels {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 42px;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.page-prices .block-2 .levels .level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 1280px) {
  .page-prices .block-2 .levels .level {
    width: calc(50% - 9px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 1800px) {
  .page-prices .block-2 .levels .level {
    width: calc(50% - 21px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
  }
}
.page-prices .block-3 {
  padding: 0 0 40px;
}
@media (min-width: 768px) {
  .page-prices .block-3 {
    padding: 0 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-prices .block-3 {
    padding: 0 0 44px;
  }
}
@media (min-width: 1800px) {
  .page-prices .block-3 {
    padding: 0 0 80px;
  }
}
.page-prices .block-3 .levels .level ul.level_list li {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-prices .block-4 {
  padding: 0 0 40px;
}
@media (min-width: 768px) {
  .page-prices .block-4 {
    padding: 0 0 60px;
  }
}
@media (min-width: 1280px) {
  .page-prices .block-4 {
    padding: 0 0 44px;
  }
}
@media (min-width: 1800px) {
  .page-prices .block-4 {
    padding: 0 0 80px;
  }
}
.page-prices .block-4 .levels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-prices .block-4 .levels {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  }
}
@media (min-width: 1800px) {
  .page-prices .block-4 .levels {
    gap: 43px;
    margin-top: 20px;
  }
}
.page-prices .block-4 .levels .level:nth-child(1) {
  grid-row: span 2;
}
.page-prices .block-4 .levels .level:nth-child(2) {
  grid-row: span 2;
}
.page-prices .block-4 .levels .level:nth-child(2) ul.level_list li {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-prices .block-4 .levels .level:nth-child(3) ul.level_list li {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-prices .block-4 .levels .bottom-container {
  margin-top: 0;
}
.page-prices .bottom-container {
  padding: 16px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .page-prices .bottom-container {
    padding: 24px;
    margin-top: 16px;
  }
}
@media (min-width: 1280px) {
  .page-prices .bottom-container {
    padding: 27px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-prices .bottom-container {
    padding: 40px;
    margin-top: 40px;
  }
}
.page-prices .levels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .page-prices .levels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 18px;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 43px;
    margin-top: 20px;
  }
}
.page-prices .levels .level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 20px;
}
@media (min-width: 768px) {
  .page-prices .levels .level {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    padding: 24px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level.wide {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level.wide {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.page-prices .levels .level_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .page-prices .levels .level_top {
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_top {
    gap: 15px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_top {
    gap: 20px;
  }
}
.page-prices .levels .level_caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 6px 20px;
}
@media (min-width: 768px) {
  .page-prices .levels .level_caption {
    padding: 8px 24px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_caption {
    padding: 6px 27px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_caption {
    padding: 10px 40px;
  }
}
.page-prices .levels .level_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-prices .levels .level_right {
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_right {
    gap: 15px;
    width: 50%;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_right {
    gap: 20px;
  }
}
.page-prices .levels .level ul.level_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .page-prices .levels .level ul.level_list {
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level ul.level_list {
    gap: 13px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level ul.level_list {
    gap: 26px;
  }
}
.page-prices .levels .level ul.level_list li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-prices .levels .level ul.level_list li {
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level ul.level_list li {
    gap: 13px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level ul.level_list li {
    gap: 20px;
  }
}
.page-prices .levels .level ul.level_list li::before {
  content: "";
  width: 28px;
  height: 28px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 28px;
  flex: 0 0 28px;
  border-radius: 100%;
}
@media (min-width: 768px) {
  .page-prices .levels .level ul.level_list li::before {
    width: 28px;
    height: 28px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28px;
    flex: 0 0 28px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level ul.level_list li::before {
    width: 28px;
    height: 28px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28px;
    flex: 0 0 28px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level ul.level_list li::before {
    width: 42px;
    height: 42px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
  }
}
.page-prices .levels .level ul.level_list li.li-yellow::before {
  background-color: #ebff00;
}
.page-prices .levels .level ul.level_list li.li-red::before {
  background-color: #ff5f67;
}
.page-prices .levels .level ul.level_list li.li-orange::before {
  background-color: #ff9d43;
}
.page-prices .levels .level ul.level_list li.li-pink::before {
  background-color: #ffa1f6;
}
.page-prices .levels .level_price-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 16px;
  gap: 24px;
}
@media (min-width: 768px) {
  .page-prices .levels .level_price-container {
    padding: 20px;
    gap: 24px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_price-container {
    padding: 13px;
    gap: 13px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_price-container {
    padding: 20px;
    gap: 20px;
  }
}
.page-prices .levels .level_price-container .row-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 768px) {
  .page-prices .levels .level_price-container .row-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_price-container .row-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 13px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_price-container .row-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
.page-prices .levels .level_price-container .row-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 7px;
}
@media (min-width: 768px) {
  .page-prices .levels .level_price-container .row-content .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_price-container .row-content .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_price-container .row-content .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
.page-prices .levels .level_price-container .row-content .item .h2 {
  letter-spacing: -1.65px;
}
@media (min-width: 768px) {
  .page-prices .levels .level_price-container .row-content .item .h2 {
    letter-spacing: -2.4px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_price-container .row-content .item .h2 {
    font-size: 50px;
    letter-spacing: -2.5px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_price-container .row-content .item .h2 {
    font-size: 80px;
    letter-spacing: -4px;
  }
}
.page-prices .levels .level_price-container .row-content .item .h3-caption-3 {
  letter-spacing: -1.3px;
}
@media (min-width: 768px) {
  .page-prices .levels .level_price-container .row-content .item .h3-caption-3 {
    letter-spacing: -1.6px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_price-container .row-content .item .h3-caption-3 {
    letter-spacing: -1.5px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_price-container .row-content .item .h3-caption-3 {
    letter-spacing: -2px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_price-container .row-content .item.item-big {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.page-prices .levels .level_price-container .row-content .item.item-big .text-caption-2 {
  width: 127px;
}
@media (min-width: 768px) {
  .page-prices .levels .level_price-container .row-content .item.item-big .text-caption-2 {
    width: 157px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_price-container .row-content .item.item-big .text-caption-2 {
    width: 78px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_price-container .row-content .item.item-big .text-caption-2 {
    width: 101px;
  }
}
.page-prices .levels .level_price-container .row-content .item.item-big-text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-prices .levels .level_price-container .row-content .item.item-big-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.page-prices .levels .level_price-container .row-content .item.item-big-text .text-caption-2 {
  width: auto;
}
@media (min-width: 768px) {
  .page-prices .levels .level_price-container .row-content .item.item-big-text .text-caption-2 {
    width: 368px;
  }
}
@media (min-width: 1280px) {
  .page-prices .levels .level_price-container .row-content .item.item-big-text .text-caption-2 {
    width: 208px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_price-container .row-content .item.item-big-text .text-caption-2 {
    width: 268px;
  }
}
.page-prices .levels .level_price-container .row-content .item.item-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .page-prices .levels .level_price-container .row-content .item.item-small {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-prices .levels .level_price-container .row-content .item.item-small {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}

.page-schedules .block-1 {
  padding-top: 143px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 {
    padding-top: 180px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 {
    padding-top: 180px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 {
    padding-top: 285px;
  }
}
.page-schedules .block-1 .h3-caption-2 {
  font-size: 26px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .h3-caption-2 {
    font-size: 32px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .h3-caption-2 {
    font-size: 40px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .h3-caption-2 {
    font-size: 60px;
  }
}
.page-schedules .block-1 .kafedry-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .kafedry-form {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 4px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .kafedry-form {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 27px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .kafedry-form {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 59px;
  }
}
.page-schedules .block-1 .kafedry-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .kafedry-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    width: auto;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .kafedry-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    width: auto;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .kafedry-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    width: auto;
  }
}
.page-schedules .block-1 .kafedry-form .form-group select {
  width: 100%;
  height: 38px;
  color: #363636;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(../img/svg/arrow_bottom_black.svg) calc(100% - 10px) center/18px no-repeat #fff;
  padding-left: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 40px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .kafedry-form .form-group select {
    width: 411px;
    height: 41px;
    background-size: 18px;
    padding-left: 16px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .kafedry-form .form-group select {
    width: 454px;
    height: 38px;
    background-size: 18px;
    padding-left: 21px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .kafedry-form .form-group select {
    width: 692px;
    height: 57px;
    background-size: 24px;
    padding-left: 30px;
  }
}
.page-schedules .block-1 .mobile-schedules {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .mobile-schedules {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .mobile-schedules {
    display: none;
  }
}
.page-schedules .block-1 .mobile-schedule .level-button {
  position: relative;
  z-index: -1;
  color: #363636;
  padding: 19px 16px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .mobile-schedule .level-button {
    padding: 19px 24px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .mobile-schedule .level-button {
    padding: 27.07px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .mobile-schedule .level-button {
    padding: 40px;
  }
}
.page-schedules .block-1 .mobile-schedule .level-button-1 {
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}
.page-schedules .block-1 .mobile-schedule .level-button-2 {
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.page-schedules .block-1 .mobile-schedule .level-button-3 {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}
.page-schedules .block-1 .mobile-schedule .mobile-schedule-groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.page-schedules .block-1 .mobile-schedule .groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.page-schedules .block-1 .mobile-schedule .groups .group .title {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: url(../img/svg/arrow_bottom_black.svg) calc(100% - 10px) center/18px no-repeat #fff;
  padding: 10px 16px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .mobile-schedule .groups .group .title {
    padding: 12px 20px;
  }
}
.page-schedules .block-1 .mobile-schedule .groups .group .title.active {
  color: #fff;
  background: url(../img/svg/arrow_top_white.svg) calc(100% - 10px) center/18px no-repeat #363636;
}
.page-schedules .block-1 .mobile-schedule .groups .group .title:hover {
  cursor: pointer;
}
.page-schedules .block-1 .mobile-schedule .groups .group .content {
  display: none;
}
.page-schedules .block-1 .mobile-schedule .groups .group .content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 20px 16px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .mobile-schedule .groups .group .content-item {
    padding: 20px;
    margin-top: 8px;
  }
}
.page-schedules .block-1 .mobile-schedule .groups .group .content-item .day {
  width: 50%;
}
.page-schedules .block-1 .mobile-schedule .groups .group .content-item .subject {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .mobile-schedule .groups .group .content-item .subject {
    gap: 16px;
  }
}
.page-schedules .block-1 .mobile-schedule .groups .group .content-item .subject li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.page-schedules .block-1 .mobile-schedule .groups .group .content-item .subject li::before {
  content: "";
  display: inline-block;
  width: 4.5px;
  height: 4.5px;
  border-radius: 100%;
  background-color: #363636;
}
.page-schedules .block-1 .tabs-schedules {
  display: none;
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules {
    display: block;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules {
    display: block;
  }
}
.page-schedules .block-1 .tabs-schedules .level-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
.page-schedules .block-1 .tabs-schedules .level-buttons .level-button {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
  }
}
.page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0 {
  background-color: #ebff00;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0 {
    background-color: #ebff00;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0 {
    background-color: #fff;
  }
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0.ui-tabs-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0.ui-state-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0.active {
    background-color: #ebff00;
    -webkit-animation: none;
    animation: none;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0 {
    background-color: #fff;
  }
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0.ui-tabs-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0.ui-state-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-0.active {
    background-color: #ebff00;
    -webkit-animation: none;
    animation: none;
  }
}
.page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1 {
  background-color: #ffa1f6;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1 {
    background-color: #ffa1f6;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1 {
    background-color: #fff;
  }
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1.ui-tabs-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1.ui-state-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1.active {
    background-color: #ffa1f6;
    -webkit-animation: none;
    animation: none;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1 {
    background-color: #fff;
  }
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1.ui-tabs-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1.ui-state-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-1.active {
    background-color: #ffa1f6;
    -webkit-animation: none;
    animation: none;
  }
}
.page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2 {
  background-color: #ff9d43;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2 {
    background-color: #ff9d43;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2 {
    background-color: #fff;
    margin-left: auto;
  }
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2.ui-tabs-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2.ui-state-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2.active {
    background-color: #ff9d43;
    -webkit-animation: none;
    animation: none;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2 {
    background-color: #fff;
  }
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2.ui-tabs-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2.ui-state-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-2.active {
    background-color: #ff9d43;
    -webkit-animation: none;
    animation: none;
  }
}
.page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3 {
  background-color: #ff5f67;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3 {
    background-color: #ff5f67;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3 {
    background-color: #fff;
  }
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3.ui-tabs-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3.ui-state-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3.active {
    background-color: #ff5f67;
    -webkit-animation: none;
    animation: none;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3 {
    background-color: #fff;
  }
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3.ui-tabs-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3.ui-state-active, .page-schedules .block-1 .tabs-schedules .level-buttons .level-button-3.active {
    background-color: #ff5f67;
    -webkit-animation: none;
    animation: none;
  }
}
.page-schedules .block-1 .tabs-schedules .level-buttons .level-button a {
  display: block;
  color: #363636;
  padding: 19px 16px;
}
@media (min-width: 768px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button a {
    padding: 19px 24px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button a {
    padding: 27.07px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .level-buttons .level-button a {
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules #tabs-1,
  .page-schedules .block-1 .tabs-schedules #tabs-2,
  .page-schedules .block-1 .tabs-schedules #tabs-3,
  .page-schedules .block-1 .tabs-schedules #tabs-0 {
    padding-top: 40px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules #tabs-1,
  .page-schedules .block-1 .tabs-schedules #tabs-2,
  .page-schedules .block-1 .tabs-schedules #tabs-3,
  .page-schedules .block-1 .tabs-schedules #tabs-0 {
    padding-top: 40px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules .schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 7px;
  position: relative;
  width: 100%;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr {
    gap: 10px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows {
  min-height: 65px;
  margin-bottom: 62px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows {
    min-height: 90px;
    margin-bottom: 90px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows:last-child {
  margin-bottom: 188.5px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows:last-child {
    margin-bottom: 231px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows:hover {
    background-color: #363636;
  }
  .page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows:hover .td:nth-child(1) {
    background-color: #363636;
    color: #fff;
  }
  .page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows:hover .td.hover-yellow {
    background-color: #ebff00;
  }
  .page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows:hover .td.hover-red {
    background-color: #ff5f67;
  }
  .page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows:hover .td.hover-pink {
    background-color: #ffa1f6;
  }
  .page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows:hover .td.hover-orange {
    background-color: #ff9d43;
  }
  .page-schedules .block-1 .tabs-schedules .schedule .tr.tr-rows:hover .td.hidden {
    opacity: 1;
    visibility: visible;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .th {
  padding: 12.24px 20.41px;
  width: 100%;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .th {
    padding: 18px 30px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td,
.page-schedules .block-1 .tabs-schedules .schedule .tr .th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 136px;
  -webkit-transition: background-color 0.2s, color 0.2s, opacity 0.2s;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td,
  .page-schedules .block-1 .tabs-schedules .schedule .tr .th {
    min-width: 200px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td:nth-child(1),
.page-schedules .block-1 .tabs-schedules .schedule .tr .th:nth-child(1) {
  min-width: 199px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td:nth-child(1),
  .page-schedules .block-1 .tabs-schedules .schedule .tr .th:nth-child(1) {
    min-width: 298px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td {
  min-height: 65px;
  padding: 13.61px 0;
  text-align: center;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td {
    min-height: 90px;
    padding: 20px 0;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs {
  position: absolute;
  min-height: 127px;
  top: 0;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs {
    min-height: 187px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-1 {
  top: 127px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-1 {
    top: 187px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-2 {
  top: 254px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-2 {
    top: 374px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-3 {
  top: 381px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-3 {
    top: 561px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-4 {
  top: 508px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-4 {
    top: 748px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-5 {
  top: 635px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-5 {
    top: 935px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-6 {
  top: 762px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-top-6 {
    top: 1122px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-1 {
  left: 206px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-1 {
    left: 308px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-2 {
  left: 349px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-2 {
    left: 518px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-3 {
  left: 492px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-3 {
    left: 728px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-4 {
  left: 635px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-4 {
    left: 938px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-5 {
  left: 778px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-5 {
    left: 1148px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-6 {
  left: 921px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-6 {
    left: 1358px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-7 {
  left: 1064px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.abs.abs-col-7 {
    left: 1568px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.hidden {
  z-index: 10;
  text-align: left;
  height: auto;
  opacity: 0;
  visibility: hidden;
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.hidden li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.hidden li {
    gap: 12px;
  }
}
.page-schedules .block-1 .tabs-schedules .schedule .tr .td.hidden li::before {
  content: "";
  display: inline-block;
  width: 4.5px;
  height: 4.5px;
  border-radius: 100%;
  background-color: #363636;
  margin-top: 8px;
}
@media (min-width: 1800px) {
  .page-schedules .block-1 .tabs-schedules .schedule .tr .td.hidden li::before {
    width: 6px;
    height: 6px;
    margin-top: 10px;
  }
}
.page-schedules .block-2 .semesters {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 33px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-schedules .block-2 .semesters {
    font-size: 42px;
    margin-top: 32px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-2 .semesters {
    font-size: 40px;
    margin-top: 27.27px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-2 .semesters {
    font-size: 80px;
    margin-top: 40px;
  }
}
.page-schedules .block-2 .semesters .semester {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .page-schedules .block-2 .semesters .semester {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-2 .semesters .semester {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 75px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-2 .semesters .semester {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
  }
}
.page-schedules .block-2 .semesters .semester-2 {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-schedules .block-2 .semesters .semester-2 {
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-2 .semesters .semester-2 {
    margin-top: 26px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-2 .semesters .semester-2 {
    margin-top: 38px;
  }
}
.page-schedules .block-2 .semesters .semester .dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .page-schedules .block-2 .semesters .semester .dates {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 11px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-2 .semesters .semester .dates {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-2 .semesters .semester .dates {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
.page-schedules .block-2 .semesters .semester .dates .begin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-schedules .block-2 .semesters .semester .dates .begin::after {
  content: "";
  background-color: #363636;
  width: 14.5px;
  height: 2.5px;
  margin-left: 8px;
}
@media (min-width: 768px) {
  .page-schedules .block-2 .semesters .semester .dates .begin::after {
    width: 18.5px;
    height: 3px;
    margin-left: 11px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-2 .semesters .semester .dates .begin::after {
    width: 17.5px;
    height: 3.5px;
    margin-left: 10px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-2 .semesters .semester .dates .begin::after {
    width: 35.5px;
    height: 6.5px;
    margin-left: 20px;
  }
}
.page-schedules .block-2 .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .page-schedules .block-2 .details {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px;
    margin-top: 32px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-2 .details {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 27.27px;
    margin-top: 27.27px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-2 .details {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
  }
}
.page-schedules .block-2 .details-left, .page-schedules .block-2 .details-right {
  width: 100%;
  padding: 16px;
}
@media (min-width: 768px) {
  .page-schedules .block-2 .details-left, .page-schedules .block-2 .details-right {
    width: 50%;
    padding: 20px;
  }
}
@media (min-width: 1280px) {
  .page-schedules .block-2 .details-left, .page-schedules .block-2 .details-right {
    width: 50%;
    padding: 13.64px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .block-2 .details-left, .page-schedules .block-2 .details-right {
    width: 50%;
    padding: 20px;
  }
}
.page-schedules .block-2 .details-left {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}
.page-schedules .block-2 .details-right {
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}
.page-schedules .form-footer {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .page-schedules .form-footer {
    padding: 60px 0;
  }
}
@media (min-width: 1280px) {
  .page-schedules .form-footer {
    padding: 49px 0 33px;
  }
}
@media (min-width: 1800px) {
  .page-schedules .form-footer {
    padding: 46px 0 66px;
  }
}
.page-schedules .form-footer .form {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-schedules .form-footer .form {
    margin-top: 0;
  }
}

.page-reviews .title {
  padding: 135px 0 16px;
}
@media (min-width: 768px) {
  .page-reviews .title {
    padding: 180px 0 20px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .title {
    padding: 152px 0 40px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .title {
    padding: 240px 0 74px;
  }
}
.page-reviews .block-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-reviews .block-1 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 38px 12px;
    margin-bottom: -100px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 {
    gap: 60px 20px;
    margin-bottom: unset;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 {
    gap: 60px 70px;
    margin-bottom: 60px;
  }
}
.page-reviews .block-1 .review-text-block {
  padding: 15px 10px;
  position: relative;
}
.page-reviews .block-1 .review-text-block br {
  display: none;
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    padding: 30px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 .review-text-block {
    padding: 40px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block br {
    display: inline;
  }
}
.page-reviews .block-1 .review-text-block-2 {
  width: 212px;
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-2 {
    width: unset;
  }
}
.page-reviews .block-1 .review-text-block-3 {
  z-index: 2;
  width: 100%;
  max-width: 343px;
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-3 {
    width: unset;
    max-width: unset;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block-3 {
    margin-left: 16px;
  }
}
.page-reviews .block-1 .review-text-block-4 {
  z-index: 1;
  margin-top: -16px;
  -webkit-transform: rotate(7deg);
  transform: rotate(7deg);
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-4 {
    margin-top: unset;
  }
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-4 {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
    left: -54px;
    top: -53px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 .review-text-block-4 {
    left: -124px;
    top: -73px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block-4 {
    left: -124px;
    top: -73px;
  }
}
.page-reviews .block-1 .review-text-block-5 {
  z-index: 1;
  margin-top: -15px;
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
  width: 252px;
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-5 {
    width: unset;
    margin-top: unset;
    left: 41px;
    top: -30px;
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 .review-text-block-5 {
    left: 71px;
    top: -30px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block-5 {
    left: 111px;
    top: 7px;
  }
}
.page-reviews .block-1 .review-text-block-6 {
  width: 292px;
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-6 {
    top: -110px;
    width: unset;
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 .review-text-block-6 {
    top: -90px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block-6 {
    top: -70px;
  }
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-7 {
    top: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 568px;
    flex: 0 0 568px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 .review-text-block-7 {
    top: -60px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block-7 {
    top: -20px;
  }
}
.page-reviews .block-1 .review-text-block-8 {
  margin-top: -15px;
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-8 {
    margin-top: unset;
    top: -220px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 489px;
    flex: 0 0 489px;
    margin-left: auto;
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 .review-text-block-8 {
    top: -90px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    -webkit-transform: unset;
    transform: unset;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block-8 {
    top: -70px;
  }
}
.page-reviews .block-1 .review-text-block-9 {
  margin-top: -15px;
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-9 {
    margin-top: -70px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 334px;
    flex: 0 0 334px;
    top: -40px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 .review-text-block-9 {
    margin-top: -70px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    top: unset;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block-9 {
    margin-top: unset;
  }
}
.page-reviews .block-1 .review-text-block-10 {
  margin-top: 0;
  -webkit-transform: rotate(9deg);
  transform: rotate(9deg);
  width: 288px;
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-10 {
    width: unset;
    z-index: 1;
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
    margin-top: unset;
    top: -250px;
    left: 260px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 396px;
    flex: 0 0 396px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 .review-text-block-10 {
    top: -170px;
    left: -85px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    margin-left: unset;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block-10 {
    top: -170px;
    left: -125px;
  }
}
.page-reviews .block-1 .review-text-block-11 {
  width: 263px;
}
@media (min-width: 768px) {
  .page-reviews .block-1 .review-text-block-11 {
    width: unset;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 40px);
    flex: 0 0 calc(50% - 40px);
    margin-left: auto;
    margin-right: 40px;
    margin-top: -260px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .block-1 .review-text-block-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 60px);
    flex: 0 0 calc(50% - 60px);
    margin-left: auto;
    margin-right: 40px;
    margin-top: -230px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .block-1 .review-text-block-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 70px);
    flex: 0 0 calc(50% - 70px);
    margin-left: auto;
    margin-right: 40px;
    margin-top: -170px;
  }
}
.page-reviews .reviews-slider {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider {
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider {
    margin-bottom: 28px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider {
    margin-bottom: 51px;
  }
}
.page-reviews .reviews-slider .swiper-pag-tabs {
  display: none;
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .swiper-pag-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet {
  height: 40px;
  width: calc((100% - 18px) / 5);
  position: relative;
  border-radius: 0;
  margin: 0;
  opacity: 1;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet {
    height: 58px;
  }
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet::after {
  content: "";
  height: 0px;
  position: absolute;
  top: 0;
  right: -18px;
  border-top: solid 40px rgba(255, 255, 255, 0);
  border-left: solid 18px #fff;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet::after {
    border-top: solid 58px transparent;
  }
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(1) {
  z-index: 50;
  background-color: #ebff00;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(1)::after {
  border-left-color: #ebff00;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(2) {
  z-index: 40;
  background-color: #ff9d43;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(2)::after {
  border-left-color: #ff9d43;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(3) {
  z-index: 30;
  background-color: #ffa1f6;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(3)::after {
  border-left-color: #ffa1f6;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(4) {
  z-index: 20;
  background-color: #ebff00;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(4)::after {
  border-left-color: #ebff00;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(5) {
  z-index: 10;
  background-color: #ff5f67;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:nth-child(5)::after {
  border-left-color: #ff5f67;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
  z-index: 100;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  border-left-color: #fff;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:hover {
  background-color: #fff;
}
.page-reviews .reviews-slider .swiper-pag-tabs .swiper-pagination-bullet:hover::after {
  border-left-color: #fff;
}
.page-reviews .reviews-slider .swiper-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .swiper-control {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .swiper-control {
    display: none;
  }
}
.page-reviews .reviews-slider .swiper-control .swiper-pag {
  width: 75px;
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  background-color: #fff;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .swiper-control .swiper-pag {
    width: 82px;
    font-size: 32px;
  }
}
.page-reviews .reviews-slider .swiper-control .swiper-btn-prev,
.page-reviews .reviews-slider .swiper-control .swiper-btn-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #363636;
  width: 45px;
  padding: 14px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .swiper-control .swiper-btn-prev,
  .page-reviews .reviews-slider .swiper-control .swiper-btn-next {
    width: 50px;
    padding: 16px;
  }
}
.page-reviews .reviews-slider .swiper-control .swiper-btn-prev.swiper-button-disabled,
.page-reviews .reviews-slider .swiper-control .swiper-btn-next.swiper-button-disabled {
  background-color: #b9b9b9;
}
.page-reviews .reviews-slider .review {
  background-color: #fff;
  padding: 16px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review {
    padding: 20px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review {
    padding: 27px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review {
    padding: 40px;
  }
}
.page-reviews .reviews-slider .review__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review__header {
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review__header {
    gap: 27px;
    margin-bottom: 27px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review__header {
    gap: 40px;
    margin-bottom: 40px;
  }
}
.page-reviews .reviews-slider .review__header--photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review__header--photo {
    width: 72px;
    height: 72px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review__header--photo {
    width: 80.55px;
    height: 80.55px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review__header--photo {
    width: 118px;
    height: 118px;
  }
}
.page-reviews .reviews-slider .review__header--photo img {
  width: 100%;
  height: auto;
}
.page-reviews .reviews-slider .review__header--author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review__header--author {
    gap: 4px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review__header--author {
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review__header--author {
    gap: 10px;
  }
}
.page-reviews .reviews-slider .review__header--name {
  font-size: 33px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review__header--name {
    font-size: 42px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review__header--name {
    font-size: 60px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review__header--name {
    font-size: 80px;
  }
}
.page-reviews .reviews-slider .review__content--rest {
  display: none;
}
.page-reviews .reviews-slider .review__content p {
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review__content p {
    width: 100%;
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review__content p {
    width: 65%;
    margin-bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review__content p {
    width: 65%;
    margin-bottom: 20px;
  }
}
.page-reviews .reviews-slider .review__content p.color {
  width: 100%;
  padding: 10px 16px;
  margin-left: 0;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review__content p.color {
    width: 100%;
    padding: 16px 20px;
    margin-left: 0;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review__content p.color {
    width: 75%;
    padding: 20px;
    margin-left: 80px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review__content p.color {
    width: 80%;
    padding: 20px;
    margin-left: 80px;
  }
}
.page-reviews .reviews-slider .review .show-full-btn,
.page-reviews .reviews-slider .review .collapse-btn {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  line-height: 0.8;
  font-weight: 500;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 14.5px 17px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review .show-full-btn,
  .page-reviews .reviews-slider .review .collapse-btn {
    font-size: 22px;
    gap: 12px;
    padding: 16px 20px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review .show-full-btn,
  .page-reviews .reviews-slider .review .collapse-btn {
    font-size: 18px;
    gap: 7px;
    padding: 13.5px 20px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review .show-full-btn,
  .page-reviews .reviews-slider .review .collapse-btn {
    font-size: 28px;
    gap: 10px;
    padding: 20px 30px;
  }
}
.page-reviews .reviews-slider .review .show-full-btn svg,
.page-reviews .reviews-slider .review .collapse-btn svg {
  width: 12.6px;
  height: 12.6px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review .show-full-btn svg,
  .page-reviews .reviews-slider .review .collapse-btn svg {
    width: 14.68px;
    height: 14.68px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review .show-full-btn svg,
  .page-reviews .reviews-slider .review .collapse-btn svg {
    width: 15.08px;
    height: 15.08px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review .show-full-btn svg,
  .page-reviews .reviews-slider .review .collapse-btn svg {
    width: 22.09px;
    height: 22.09px;
  }
}
.page-reviews .reviews-slider .review .show-full-btn.visible,
.page-reviews .reviews-slider .review .collapse-btn.visible {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.page-reviews .reviews-slider .review .show-full-btn {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .page-reviews .reviews-slider .review .show-full-btn {
    margin-top: 4px;
  }
}
@media (min-width: 1280px) {
  .page-reviews .reviews-slider .review .show-full-btn {
    margin-top: 35px;
  }
}
@media (min-width: 1800px) {
  .page-reviews .reviews-slider .review .show-full-btn {
    margin-top: 60px;
  }
}

.page-summer-main-program {
  overflow: hidden;
}
.page-summer-main-program .form-footer {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-summer-main-program .form-footer {
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program .form-footer {
    margin-bottom: 32px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program .form-footer {
    margin-bottom: 115px;
  }
}

.page-summer-main-program-0 .block-1 {
  padding: 75px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 {
    padding: 90px 0 174px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 {
    padding: 305px 0 60px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 {
    padding: 324px 0 79px;
  }
}
.page-summer-main-program-0 .block-1 .h3 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.page-summer-main-program-0 .block-1 .h3 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .h3 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .h3 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 .h3 {
    font-size: 60px;
    line-height: 0.95;
  }
}
.page-summer-main-program-0 .block-1 .container {
  position: relative;
}
.page-summer-main-program-0 .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-summer-main-program-0 .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  -webkit-transform: rotate(-22.343deg);
  transform: rotate(-22.343deg);
  left: 157px;
  bottom: 35px;
  width: 187px;
  padding: 6px 16px;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-summer-main-program-0 .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .static-title .h1-sticker-1 {
    left: 251px;
    bottom: 7px;
    width: 201px;
    padding: 20px 20px;
    z-index: 1;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .static-title .h1-sticker-1 {
    left: 525px;
    bottom: 100px;
    width: 221px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 .static-title .h1-sticker-1 {
    left: 700px;
    bottom: 165px;
    width: 424px;
    padding: 40px;
  }
}
.page-summer-main-program-0 .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 p.text-main {
    font-size: 22px;
    max-width: 360px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 p.text-main {
    font-size: 18px;
    max-width: 588px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 p.text-main {
    font-size: 28px;
    max-width: 860px;
    margin-top: 40px;
  }
}
.page-summer-main-program-0 .block-1 .right-content {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .right-content {
    margin: unset;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.page-summer-main-program-0 .block-1 .right-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-summer-main-program-0 .block-1 .right-content .image.image-1 {
  -webkit-transform: rotate(-2.934deg);
  transform: rotate(-2.934deg);
  width: 170px;
  height: 256px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-1 {
    position: absolute;
    width: 170px;
    height: 256px;
    top: 113px;
    left: 417px;
    margin: unset;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-1 {
    width: 283px;
    height: 424px;
    top: -207px;
    left: 791px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-1 {
    width: 347px;
    height: 521px;
    top: -196px;
    left: 1168px;
  }
}
.page-summer-main-program-0 .block-1 .right-content .image.image-1::after {
  content: "";
  position: absolute;
  right: -51px;
  top: 11px;
  width: 139px;
  height: 33px;
  -webkit-transform: rotate(-125.484deg);
  transform: rotate(-125.484deg);
  background: #ebff00;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-1::after {
    width: 144px;
    height: 34px;
    right: -58px;
    top: -17px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-1::after {
    width: 208px;
    height: 50px;
    right: -74px;
    top: 21px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-1::after {
    width: 255px;
    height: 60px;
    right: -94px;
    top: 21px;
  }
}
.page-summer-main-program-0 .block-1 .right-content .image.image-1::before {
  content: "";
  position: absolute;
  right: -103px;
  top: 119px;
  width: 139px;
  height: 33px;
  -webkit-transform: rotate(-25.471deg);
  transform: rotate(-25.471deg);
  background: #363636;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-1::before {
    width: 144px;
    height: 34px;
    right: -102px;
    top: 96px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-1::before {
    width: 208px;
    height: 50px;
    right: -149px;
    top: 247px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-1::before {
    width: 255px;
    height: 60px;
    right: -189px;
    top: 247px;
  }
}
.page-summer-main-program-0 .block-1 .right-content .image.image-2 {
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(20.085deg);
  transform: rotate(20.085deg);
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
  left: calc(50% - 94px);
  top: 129px;
  width: 189px;
  height: 283px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-2 {
    left: 478px;
    top: 211px;
    width: 170px;
    height: 255px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-2 {
    left: 856px;
    top: 11px;
    width: 283px;
    height: 424px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 .right-content .image.image-2 {
    left: 1357px;
    top: 85px;
    width: 347px;
    height: 520px;
  }
}
.page-summer-main-program-0 .block-1 .right-content .image.image-2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(155, 155, 155, 0.7)), to(rgba(155, 155, 155, 0.7)));
  background-image: linear-gradient(0deg, rgba(155, 155, 155, 0.7) 0%, rgba(155, 155, 155, 0.7) 100%);
}
.page-summer-main-program-0 .block-1 .right-content .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px;
  gap: 16px;
  margin-top: 37px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .right-content .prices {
    margin-top: unset;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px;
    gap: 16px;
    bottom: -114px;
    width: 280px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .right-content .prices {
    padding: 30px;
    gap: 20px;
    bottom: 0px;
    width: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 .right-content .prices {
    gap: 40px;
    padding: 40px;
    bottom: 8px;
  }
}
.page-summer-main-program-0 .block-1 .right-content .prices .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .right-content .prices .item {
    gap: 4px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .right-content .prices .item {
    gap: 0;
  }
}
.page-summer-main-program-0 .block-1 .right-content .prices .item_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .right-content .prices .item_bottom {
    gap: 4px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .right-content .prices .item_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 .right-content .prices .item_bottom {
    gap: 10px;
  }
}
.page-summer-main-program-0 .block-1 .right-content .prices .item:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.page-summer-main-program-0 .block-1 .right-content .prices .item:last-child .text-dop {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-1 .right-content .prices .item:last-child {
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-1 .right-content .prices .item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-1 .right-content .prices .item:last-child {
    gap: 10px;
  }
}
.page-summer-main-program-0 .block-2 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-2 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-2 .h2-title {
    margin-bottom: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-2 .h2-title {
    margin-bottom: 40px;
  }
}
.page-summer-main-program-0 .block-2 .subjects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-2 .subjects {
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-2 .subjects {
    gap: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-2 .subjects {
    gap: 40px;
  }
}
.page-summer-main-program-0 .block-3 {
  margin-top: 40px;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 {
    margin-top: 60px;
    margin-bottom: 102px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 {
    margin-top: 60px;
    margin-bottom: 55px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 {
    margin-top: 120px;
    margin-bottom: 95px;
  }
}
.page-summer-main-program-0 .block-3 .container {
  position: relative;
}
.page-summer-main-program-0 .block-3 .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.page-summer-main-program-0 .block-3 .schedule {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule {
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .schedule {
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 70px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .schedule {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 85px;
  }
}
.page-summer-main-program-0 .block-3 .schedule .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule .tr {
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .schedule .tr {
    gap: 40px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .schedule .tr {
    gap: 60px;
  }
}
.page-summer-main-program-0 .block-3 .schedule .th {
  width: calc(14.2857142857% - 5px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(14.2857142857% - 5px);
  flex: 0 0 calc(14.2857142857% - 5px);
  padding: 5px 10px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-summer-main-program-0 .block-3 .schedule .th .pc {
  display: none;
}
.page-summer-main-program-0 .block-3 .schedule .th .mobile {
  display: inline;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule .th {
    width: 90px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    padding: 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .schedule .th {
    width: 136px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
    padding: 12px;
  }
  .page-summer-main-program-0 .block-3 .schedule .th .pc {
    display: inline;
  }
  .page-summer-main-program-0 .block-3 .schedule .th .mobile {
    display: none;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .schedule .th {
    width: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    padding: 18px;
  }
}
.page-summer-main-program-0 .block-3 .schedule .td {
  position: relative;
  width: calc(14.2857142857% - 5px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(14.2857142857% - 5px);
  flex: 0 0 calc(14.2857142857% - 5px);
  padding: 5px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule .td {
    width: 90px;
    height: 111px;
    padding: 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .schedule .td {
    width: 136px;
    height: 136px;
    padding: 6px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .schedule .td {
    width: 200px;
    height: 200px;
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.page-summer-main-program-0 .block-3 .schedule .td .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top {
    gap: 10px;
  }
}
.page-summer-main-program-0 .block-3 .schedule .td .top .date {
  color: #b9b9b9;
  font-weight: 500;
  line-height: normal;
  font-size: 12px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .date {
    font-size: 9px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .date {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .date {
    right: 10px;
    top: 10px;
    font-size: 18px;
  }
}
.page-summer-main-program-0 .block-3 .schedule .td .top .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text {
  font-size: 9px;
  font-weight: 700;
  line-height: normal;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text {
    font-size: 9px;
    word-wrap: normal;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text {
    font-weight: 700;
    font-size: 12px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text {
    font-weight: 700;
    font-size: 18px;
  }
}
.page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text-2 {
  font-weight: 500;
  display: none;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 9px;
    display: inline;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 18px;
  }
}
.page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text-3 {
  font-weight: 500;
  color: #b9b9b9;
  display: none;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 9px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 14px;
    display: inline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 18px;
  }
}
.page-summer-main-program-0 .block-3 .schedule .td .time {
  font-size: 9px;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .schedule .td .time {
    margin-top: unset;
    position: absolute;
    font-size: 9px;
    bottom: 5px;
    left: 5px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .schedule .td .time {
    bottom: 6px;
    left: 6px;
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .schedule .td .time {
    bottom: 10px;
    left: 10px;
    font-size: 18px;
  }
}
.page-summer-main-program-0 .block-3 .materials {
  position: relative;
  width: 100%;
  padding: 16px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .materials {
    width: 382px;
    padding: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .materials {
    width: 793px;
    padding: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .materials {
    width: 793px;
    padding: 27px;
  }
}
.page-summer-main-program-0 .block-3 .materials .button {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 116px;
  height: 44px;
  -webkit-transform: rotate(-22.343deg);
  transform: rotate(-22.343deg);
  padding: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 45px;
  right: 6px;
  background-color: #ebff00;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-3 .materials .button {
    width: 140px;
    height: 44px;
    padding: 8px;
    top: 35px;
    right: -89px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
    text-decoration: none;
  }
  .page-summer-main-program-0 .block-3 .materials .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
  }
}
.page-summer-main-program-0 .block-4 {
  margin-top: 98px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-4 {
    margin-top: 102px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-4 {
    margin-top: 110px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-4 {
    margin-top: 110px;
    margin-bottom: 90px;
  }
}
.page-summer-main-program-0 .block-4 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-4 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-4 .h2-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-4 .h2-title {
    margin-bottom: 44px;
  }
}
.page-summer-main-program-0 .block-4 .steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-4 .steps .step {
    padding: 14px;
    height: 100%;
    gap: 26px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 20px;
  }
}
.page-summer-main-program-0 .block-4 .steps .step-title {
  width: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-4 .steps .step-title {
    width: 88px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 88px;
    flex: 0 0 88px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-4 .steps .step-title {
    width: 136px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-4 .steps .step-title {
    width: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.page-summer-main-program-0 .block-4 .steps .step .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background-color: #363636;
  text-decoration: underline;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-summer-main-program-0 .block-4 .steps .step .button {
    padding: 5px 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-4 .steps .step .button {
    padding: 5px 10px;
    text-decoration: none;
  }
  .page-summer-main-program-0 .block-4 .steps .step .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-4 .steps .step .button {
    padding: 5px 10px;
    margin-top: 20px;
  }
}
.page-summer-main-program-0 .block-4 .steps .step.step-2, .page-summer-main-program-0 .block-4 .steps .step.step-6 {
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}
.page-summer-main-program-0 .block-4 .steps .step.step-4 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-4 .steps .step.step-4 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-4 .steps .step.step-4 .step-text {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 801px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 801px;
    flex: 0 0 801px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 1177px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1177px;
    flex: 0 0 1177px;
  }
}
.page-summer-main-program-0 .block-4 .steps .step.step-5 {
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
}
.page-summer-main-program-0 .block-4 .steps .step.step-5 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .page-summer-main-program-0 .block-4 .steps .step.step-5 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-0 .block-4 .steps .step.step-5 .step-text {
    gap: 20px;
  }
}
.page-summer-main-program-0 .block-4 .steps .step.step-5 .step-text > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.page-summer-main-program-1 .block-1 {
  padding: 75px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 {
    padding: 90px 0 174px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 {
    padding: 305px 0 60px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 {
    padding: 324px 0 79px;
  }
}
.page-summer-main-program-1 .block-1 .h3 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.page-summer-main-program-1 .block-1 .h3 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .h3 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .h3 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 .h3 {
    font-size: 60px;
    line-height: 0.95;
  }
}
.page-summer-main-program-1 .block-1 .container {
  position: relative;
}
.page-summer-main-program-1 .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-summer-main-program-1 .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  -webkit-transform: rotate(-22.343deg);
  transform: rotate(-22.343deg);
  left: 157px;
  bottom: 35px;
  width: 187px;
  padding: 6px 16px;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-summer-main-program-1 .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .static-title .h1-sticker-1 {
    left: 251px;
    bottom: 7px;
    width: 201px;
    padding: 20px 20px;
    z-index: 1;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .static-title .h1-sticker-1 {
    left: 525px;
    bottom: 100px;
    width: 221px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 .static-title .h1-sticker-1 {
    left: 700px;
    bottom: 165px;
    width: 424px;
    padding: 40px;
  }
}
.page-summer-main-program-1 .block-1 p.text-main {
  font-size: 18px;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 p.text-main {
    font-size: 22px;
    max-width: 360px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 p.text-main {
    font-size: 18px;
    max-width: 588px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 p.text-main {
    font-size: 28px;
    max-width: 860px;
    margin-top: 40px;
  }
}
.page-summer-main-program-1 .block-1 .right-content {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .right-content {
    margin: unset;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.page-summer-main-program-1 .block-1 .right-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-summer-main-program-1 .block-1 .right-content .image.image-1 {
  -webkit-transform: rotate(-2.934deg);
  transform: rotate(-2.934deg);
  width: 170px;
  height: 256px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-1 {
    position: absolute;
    width: 170px;
    height: 256px;
    top: 113px;
    left: 417px;
    margin: unset;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-1 {
    width: 283px;
    height: 424px;
    top: -207px;
    left: 791px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-1 {
    width: 347px;
    height: 521px;
    top: -196px;
    left: 1168px;
  }
}
.page-summer-main-program-1 .block-1 .right-content .image.image-1::after {
  content: "";
  position: absolute;
  right: -51px;
  top: 11px;
  width: 139px;
  height: 33px;
  -webkit-transform: rotate(-125.484deg);
  transform: rotate(-125.484deg);
  background: #ffa1f6;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-1::after {
    width: 144px;
    height: 34px;
    right: -58px;
    top: -17px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-1::after {
    width: 208px;
    height: 50px;
    right: -74px;
    top: 21px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-1::after {
    width: 255px;
    height: 60px;
    right: -94px;
    top: 21px;
  }
}
.page-summer-main-program-1 .block-1 .right-content .image.image-1::before {
  content: "";
  position: absolute;
  right: -103px;
  top: 119px;
  width: 139px;
  height: 33px;
  -webkit-transform: rotate(-25.471deg);
  transform: rotate(-25.471deg);
  background: #ebff00;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-1::before {
    width: 144px;
    height: 34px;
    right: -102px;
    top: 96px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-1::before {
    width: 208px;
    height: 50px;
    right: -149px;
    top: 247px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-1::before {
    width: 255px;
    height: 60px;
    right: -189px;
    top: 247px;
  }
}
.page-summer-main-program-1 .block-1 .right-content .image.image-2 {
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(20.085deg);
  transform: rotate(20.085deg);
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
  left: calc(50% - 94px);
  top: 129px;
  width: 189px;
  height: 283px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-2 {
    left: 478px;
    top: 211px;
    width: 170px;
    height: 255px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-2 {
    left: 856px;
    top: 11px;
    width: 283px;
    height: 424px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 .right-content .image.image-2 {
    left: 1357px;
    top: 85px;
    width: 347px;
    height: 520px;
  }
}
.page-summer-main-program-1 .block-1 .right-content .image.image-2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 163, 246, 0.7)), to(rgba(255, 163, 246, 0.7)));
  background-image: linear-gradient(0deg, rgba(255, 163, 246, 0.7) 0%, rgba(255, 163, 246, 0.7) 100%);
}
.page-summer-main-program-1 .block-1 .right-content .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px;
  gap: 16px;
  margin-top: 37px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .right-content .prices {
    margin-top: unset;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px;
    gap: 16px;
    bottom: -114px;
    width: 280px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .right-content .prices {
    padding: 30px;
    gap: 20px;
    bottom: 0px;
    width: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 .right-content .prices {
    gap: 40px;
    padding: 40px;
    bottom: 8px;
  }
}
.page-summer-main-program-1 .block-1 .right-content .prices .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .right-content .prices .item {
    gap: 4px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .right-content .prices .item {
    gap: 0;
  }
}
.page-summer-main-program-1 .block-1 .right-content .prices .item_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .right-content .prices .item_bottom {
    gap: 4px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .right-content .prices .item_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 .right-content .prices .item_bottom {
    gap: 10px;
  }
}
.page-summer-main-program-1 .block-1 .right-content .prices .item:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.page-summer-main-program-1 .block-1 .right-content .prices .item:last-child .text-dop {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-1 .right-content .prices .item:last-child {
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-1 .right-content .prices .item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-1 .right-content .prices .item:last-child {
    gap: 10px;
  }
}
.page-summer-main-program-1 .block-2 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-2 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-2 .h2-title {
    margin-bottom: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-2 .h2-title {
    margin-bottom: 40px;
  }
}
.page-summer-main-program-1 .block-2 .subjects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-2 .subjects {
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-2 .subjects {
    gap: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-2 .subjects {
    gap: 40px;
  }
}
.page-summer-main-program-1 .block-3 {
  margin-top: 40px;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 {
    margin-top: 60px;
    margin-bottom: 102px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 {
    margin-top: 60px;
    margin-bottom: 55px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 {
    margin-top: 120px;
    margin-bottom: 95px;
  }
}
.page-summer-main-program-1 .block-3 .container {
  position: relative;
}
.page-summer-main-program-1 .block-3 .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.page-summer-main-program-1 .block-3 .schedule {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule {
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .schedule {
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 70px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .schedule {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 85px;
  }
}
.page-summer-main-program-1 .block-3 .schedule .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule .tr {
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .schedule .tr {
    gap: 40px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .schedule .tr {
    gap: 60px;
  }
}
.page-summer-main-program-1 .block-3 .schedule .th {
  width: calc(14.2857142857% - 5px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(14.2857142857% - 5px);
  flex: 0 0 calc(14.2857142857% - 5px);
  padding: 5px 10px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-summer-main-program-1 .block-3 .schedule .th .pc {
  display: none;
}
.page-summer-main-program-1 .block-3 .schedule .th .mobile {
  display: inline;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule .th {
    width: 90px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    padding: 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .schedule .th {
    width: 136px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
    padding: 12px;
  }
  .page-summer-main-program-1 .block-3 .schedule .th .pc {
    display: inline;
  }
  .page-summer-main-program-1 .block-3 .schedule .th .mobile {
    display: none;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .schedule .th {
    width: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    padding: 18px;
  }
}
.page-summer-main-program-1 .block-3 .schedule .td {
  position: relative;
  width: calc(14.2857142857% - 5px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(14.2857142857% - 5px);
  flex: 0 0 calc(14.2857142857% - 5px);
  padding: 5px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule .td {
    width: 90px;
    height: 111px;
    padding: 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .schedule .td {
    width: 136px;
    height: 136px;
    padding: 6px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .schedule .td {
    width: 200px;
    height: 200px;
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.page-summer-main-program-1 .block-3 .schedule .td .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top {
    gap: 10px;
  }
}
.page-summer-main-program-1 .block-3 .schedule .td .top .date {
  color: #b9b9b9;
  font-weight: 500;
  line-height: normal;
  font-size: 12px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .date {
    font-size: 9px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .date {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .date {
    right: 10px;
    top: 10px;
    font-size: 18px;
  }
}
.page-summer-main-program-1 .block-3 .schedule .td .top .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text {
  font-size: 9px;
  font-weight: 700;
  line-height: normal;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text {
    font-size: 9px;
    word-wrap: normal;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text {
    font-weight: 700;
    font-size: 12px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text {
    font-weight: 700;
    font-size: 18px;
  }
}
.page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text-2 {
  font-weight: 500;
  display: none;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 9px;
    display: inline;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 18px;
  }
}
.page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text-3 {
  font-weight: 500;
  color: #b9b9b9;
  display: none;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 9px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 14px;
    display: inline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 18px;
  }
}
.page-summer-main-program-1 .block-3 .schedule .td .time {
  font-size: 9px;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .schedule .td .time {
    margin-top: unset;
    position: absolute;
    font-size: 9px;
    bottom: 5px;
    left: 5px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .schedule .td .time {
    bottom: 6px;
    left: 6px;
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .schedule .td .time {
    bottom: 10px;
    left: 10px;
    font-size: 18px;
  }
}
.page-summer-main-program-1 .block-3 .materials {
  position: relative;
  width: 100%;
  padding: 16px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .materials {
    width: 382px;
    padding: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .materials {
    width: 793px;
    padding: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .materials {
    width: 793px;
    padding: 27px;
  }
}
.page-summer-main-program-1 .block-3 .materials .button {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 116px;
  height: 44px;
  -webkit-transform: rotate(-22.343deg);
  transform: rotate(-22.343deg);
  padding: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 45px;
  right: 6px;
  background-color: #ebff00;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-3 .materials .button {
    width: 140px;
    height: 44px;
    padding: 8px;
    top: 35px;
    right: -89px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
    text-decoration: none;
  }
  .page-summer-main-program-1 .block-3 .materials .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
  }
}
.page-summer-main-program-1 .block-4 {
  margin-top: 98px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-4 {
    margin-top: 102px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-4 {
    margin-top: 110px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-4 {
    margin-top: 110px;
    margin-bottom: 90px;
  }
}
.page-summer-main-program-1 .block-4 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-4 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-4 .h2-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-4 .h2-title {
    margin-bottom: 44px;
  }
}
.page-summer-main-program-1 .block-4 .steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-4 .steps .step {
    padding: 14px;
    height: 100%;
    gap: 26px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 20px;
  }
}
.page-summer-main-program-1 .block-4 .steps .step-title {
  width: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-4 .steps .step-title {
    width: 88px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 88px;
    flex: 0 0 88px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-4 .steps .step-title {
    width: 136px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-4 .steps .step-title {
    width: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.page-summer-main-program-1 .block-4 .steps .step .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ebff00;
  text-decoration: underline;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-summer-main-program-1 .block-4 .steps .step .button {
    padding: 5px 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-4 .steps .step .button {
    padding: 5px 10px;
    text-decoration: none;
  }
  .page-summer-main-program-1 .block-4 .steps .step .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-4 .steps .step .button {
    padding: 5px 10px;
    margin-top: 20px;
  }
}
.page-summer-main-program-1 .block-4 .steps .step.step-2, .page-summer-main-program-1 .block-4 .steps .step.step-6 {
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}
.page-summer-main-program-1 .block-4 .steps .step.step-4 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-4 .steps .step.step-4 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-4 .steps .step.step-4 .step-text {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 801px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 801px;
    flex: 0 0 801px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 1177px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1177px;
    flex: 0 0 1177px;
  }
}
.page-summer-main-program-1 .block-4 .steps .step.step-5 {
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
}
.page-summer-main-program-1 .block-4 .steps .step.step-5 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .page-summer-main-program-1 .block-4 .steps .step.step-5 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-1 .block-4 .steps .step.step-5 .step-text {
    gap: 20px;
  }
}
.page-summer-main-program-1 .block-4 .steps .step.step-5 .step-text > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.page-summer-main-program-2 .block-1 {
  padding: 105px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 {
    padding: 150px 0 124px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 {
    padding: 305px 0 60px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 {
    padding: 324px 0 79px;
  }
}
.page-summer-main-program-2 .block-1 .h3 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.page-summer-main-program-2 .block-1 .h3 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .h3 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 .h3 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 .h3 {
    font-size: 60px;
    line-height: 0.95;
  }
}
.page-summer-main-program-2 .block-1 .container {
  position: relative;
}
.page-summer-main-program-2 .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-summer-main-program-2 .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  -webkit-transform: rotate(-22.343deg);
  transform: rotate(-22.343deg);
  left: 157px;
  top: 0;
  width: 187px;
  padding: 6px 16px;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-summer-main-program-2 .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .static-title .h1-sticker-1 {
    left: 189px;
    top: -69px;
    width: 201px;
    padding: 20px 20px;
    z-index: 1;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 .static-title .h1-sticker-1 {
    top: unset;
    left: 525px;
    bottom: 100px;
    width: 221px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 .static-title .h1-sticker-1 {
    left: 700px;
    bottom: 165px;
    width: 424px;
    padding: 40px;
  }
}
.page-summer-main-program-2 .block-1 p.text-main {
  font-size: 18px;
  line-height: 130%;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 p.text-main {
    font-size: 22px;
    max-width: 360px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 p.text-main {
    font-size: 18px;
    max-width: 588px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 p.text-main {
    font-size: 28px;
    max-width: 860px;
    margin-top: 40px;
  }
}
.page-summer-main-program-2 .block-1 .right-content {
  margin-top: 149px;
  position: relative;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .right-content {
    margin: unset;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.page-summer-main-program-2 .block-1 .right-content .image {
  margin: 0 auto;
}
.page-summer-main-program-2 .block-1 .right-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-summer-main-program-2 .block-1 .right-content .image.image-1 {
  -webkit-transform: rotate(-6.682deg);
  transform: rotate(-6.682deg);
  width: 230px;
  height: 154px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .right-content .image.image-1 {
    position: absolute;
    width: 250px;
    height: 167px;
    top: 207px;
    left: 386px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 .right-content .image.image-1 {
    width: 383px;
    height: 255px;
    top: 112px;
    left: 719px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 .right-content .image.image-1 {
    width: 507px;
    height: 338px;
    top: 261px;
    left: 1128px;
  }
}
.page-summer-main-program-2 .block-1 .right-content .image.image-2 {
  margin: 0 auto;
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(8.281deg);
  transform: rotate(8.281deg);
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
  left: calc(50% - 157px);
  top: -167px;
  width: 315px;
  height: 210px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .right-content .image.image-2 {
    left: 295px;
    top: 0px;
    width: 376px;
    height: 251px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 .right-content .image.image-2 {
    left: 656px;
    top: -159px;
    width: 503px;
    height: 325px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 .right-content .image.image-2 {
    left: 984px;
    top: -157px;
    width: 764px;
    height: 509px;
  }
}
.page-summer-main-program-2 .block-1 .right-content .image.image-2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 158, 66, 0.7);
}
.page-summer-main-program-2 .block-1 .right-content .image.image-2::before {
  content: "";
  position: absolute;
  right: -51px;
  top: 11px;
  width: 139px;
  height: 33px;
  -webkit-transform: rotate(-125.484deg);
  transform: rotate(-125.484deg);
  background: #363636;
  z-index: 2;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .right-content .image.image-2::before {
    width: 144px;
    height: 34px;
    right: 33px;
    top: 5px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 .right-content .image.image-2::before {
    width: 208px;
    height: 50px;
    right: 65px;
    top: 9px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 .right-content .image.image-2::before {
    width: 255px;
    height: 60px;
    right: 149px;
    top: 9px;
  }
}
.page-summer-main-program-2 .block-1 .right-content .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px;
  gap: 16px;
  margin-top: 37px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .right-content .prices {
    margin-top: unset;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px;
    gap: 16px;
    bottom: -56px;
    width: 280px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 .right-content .prices {
    padding: 30px;
    gap: 20px;
    bottom: 0px;
    width: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 .right-content .prices {
    gap: 40px;
    padding: 40px;
    bottom: 8px;
  }
}
.page-summer-main-program-2 .block-1 .right-content .prices .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .right-content .prices .item {
    gap: 4px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 .right-content .prices .item {
    gap: 0;
  }
}
.page-summer-main-program-2 .block-1 .right-content .prices .item_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .right-content .prices .item_bottom {
    gap: 4px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 .right-content .prices .item_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 .right-content .prices .item_bottom {
    gap: 10px;
  }
}
.page-summer-main-program-2 .block-1 .right-content .prices .item:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.page-summer-main-program-2 .block-1 .right-content .prices .item:last-child .text-dop {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-1 .right-content .prices .item:last-child {
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-1 .right-content .prices .item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-1 .right-content .prices .item:last-child {
    gap: 10px;
  }
}
.page-summer-main-program-2 .block-2 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-2 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-2 .h2-title {
    margin-bottom: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-2 .h2-title {
    margin-bottom: 40px;
  }
}
.page-summer-main-program-2 .block-2 .subjects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-2 .subjects {
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-2 .subjects {
    gap: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-2 .subjects {
    gap: 40px;
  }
}
.page-summer-main-program-2 .block-3 {
  margin-top: 40px;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 {
    margin-top: 60px;
    margin-bottom: 102px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 {
    margin-top: 60px;
    margin-bottom: 55px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 {
    margin-top: 120px;
    margin-bottom: 95px;
  }
}
.page-summer-main-program-2 .block-3 .container {
  position: relative;
}
.page-summer-main-program-2 .block-3 .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 40px;
}
.page-summer-main-program-2 .block-3 .schedule {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule {
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .schedule {
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 70px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .schedule {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 85px;
  }
}
.page-summer-main-program-2 .block-3 .schedule .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule .tr {
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .schedule .tr {
    gap: 40px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .schedule .tr {
    gap: 60px;
  }
}
.page-summer-main-program-2 .block-3 .schedule .th {
  width: calc(14.2857142857% - 5px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(14.2857142857% - 5px);
  flex: 0 0 calc(14.2857142857% - 5px);
  padding: 5px 10px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-summer-main-program-2 .block-3 .schedule .th .pc {
  display: none;
}
.page-summer-main-program-2 .block-3 .schedule .th .mobile {
  display: inline;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule .th {
    width: 90px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    padding: 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .schedule .th {
    width: 136px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
    padding: 12px;
  }
  .page-summer-main-program-2 .block-3 .schedule .th .pc {
    display: inline;
  }
  .page-summer-main-program-2 .block-3 .schedule .th .mobile {
    display: none;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .schedule .th {
    width: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    padding: 18px;
  }
}
.page-summer-main-program-2 .block-3 .schedule .td {
  position: relative;
  width: calc(14.2857142857% - 5px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(14.2857142857% - 5px);
  flex: 0 0 calc(14.2857142857% - 5px);
  padding: 5px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule .td {
    width: 90px;
    height: 111px;
    padding: 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .schedule .td {
    width: 136px;
    height: 136px;
    padding: 6px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .schedule .td {
    width: 200px;
    height: 200px;
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.page-summer-main-program-2 .block-3 .schedule .td .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top {
    gap: 10px;
  }
}
.page-summer-main-program-2 .block-3 .schedule .td .top .date {
  color: #b9b9b9;
  font-weight: 500;
  line-height: normal;
  font-size: 12px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .date {
    font-size: 9px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .date {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .date {
    right: 10px;
    top: 10px;
    font-size: 18px;
  }
}
.page-summer-main-program-2 .block-3 .schedule .td .top .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text {
  font-size: 9px;
  font-weight: 700;
  line-height: normal;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text {
    font-size: 9px;
    word-wrap: normal;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text {
    font-weight: 700;
    font-size: 12px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text {
    font-weight: 700;
    font-size: 18px;
  }
}
.page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text-2 {
  font-weight: 500;
  display: none;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 9px;
    display: inline;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 18px;
  }
}
.page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text-3 {
  font-weight: 500;
  color: #b9b9b9;
  display: none;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 9px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 14px;
    display: inline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 18px;
  }
}
.page-summer-main-program-2 .block-3 .schedule .td .time {
  font-size: 9px;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .schedule .td .time {
    margin-top: unset;
    position: absolute;
    font-size: 9px;
    bottom: 5px;
    left: 5px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .schedule .td .time {
    bottom: 6px;
    left: 6px;
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .schedule .td .time {
    bottom: 10px;
    left: 10px;
    font-size: 18px;
  }
}
.page-summer-main-program-2 .block-3 .materials {
  position: relative;
  width: 100%;
  padding: 16px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .materials {
    width: 382px;
    padding: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .materials {
    width: 793px;
    padding: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .materials {
    width: 793px;
    padding: 27px;
  }
}
.page-summer-main-program-2 .block-3 .materials .button {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 116px;
  height: 44px;
  -webkit-transform: rotate(-22.343deg);
  transform: rotate(-22.343deg);
  padding: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 45px;
  right: 6px;
  background-color: #ebff00;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-3 .materials .button {
    width: 140px;
    height: 44px;
    padding: 8px;
    top: 35px;
    right: -89px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
    text-decoration: none;
  }
  .page-summer-main-program-2 .block-3 .materials .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
  }
}
.page-summer-main-program-2 .block-4 {
  margin-top: 98px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-4 {
    margin-top: 102px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-4 {
    margin-top: 110px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-4 {
    margin-top: 110px;
    margin-bottom: 90px;
  }
}
.page-summer-main-program-2 .block-4 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-4 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-4 .h2-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-4 .h2-title {
    margin-bottom: 44px;
  }
}
.page-summer-main-program-2 .block-4 .steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-4 .steps .step {
    padding: 14px;
    height: 100%;
    gap: 26px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 20px;
  }
}
.page-summer-main-program-2 .block-4 .steps .step-title {
  width: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-4 .steps .step-title {
    width: 88px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 88px;
    flex: 0 0 88px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-4 .steps .step-title {
    width: 136px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-4 .steps .step-title {
    width: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.page-summer-main-program-2 .block-4 .steps .step .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ebff00;
  text-decoration: underline;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-summer-main-program-2 .block-4 .steps .step .button {
    padding: 5px 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-4 .steps .step .button {
    padding: 5px 10px;
    text-decoration: none;
  }
  .page-summer-main-program-2 .block-4 .steps .step .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-4 .steps .step .button {
    padding: 5px 10px;
    margin-top: 20px;
  }
}
.page-summer-main-program-2 .block-4 .steps .step.step-2, .page-summer-main-program-2 .block-4 .steps .step.step-6 {
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}
.page-summer-main-program-2 .block-4 .steps .step.step-4 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-4 .steps .step.step-4 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-4 .steps .step.step-4 .step-text {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 801px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 801px;
    flex: 0 0 801px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 1177px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1177px;
    flex: 0 0 1177px;
  }
}
.page-summer-main-program-2 .block-4 .steps .step.step-5 {
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
}
.page-summer-main-program-2 .block-4 .steps .step.step-5 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .page-summer-main-program-2 .block-4 .steps .step.step-5 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-2 .block-4 .steps .step.step-5 .step-text {
    gap: 20px;
  }
}
.page-summer-main-program-2 .block-4 .steps .step.step-5 .step-text > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.page-summer-main-program-3 .block-1 {
  padding: 75px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 {
    padding: 130px 0 244px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 {
    padding: 195px 0 60px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-1 {
    padding: 324px 0 79px;
  }
}
.page-summer-main-program-3 .block-1 .h3 {
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.page-summer-main-program-3 .block-1 .h3 span {
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .h3 {
    font-size: 32px;
    line-height: 0.95;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 .h3 {
    font-size: 40px;
    line-height: 0.95;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-1 .h3 {
    font-size: 60px;
    line-height: 0.95;
  }
}
.page-summer-main-program-3 .block-1 .container {
  position: relative;
}
.page-summer-main-program-3 .block-1 .static-title {
  position: relative;
  width: 100%;
}
.page-summer-main-program-3 .block-1 .static-title .h1-sticker-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  color: #2f2f2f;
  text-align: center;
  -webkit-transform: rotate(-22.343deg);
  transform: rotate(-22.343deg);
  left: 157px;
  top: 90px;
  width: 187px;
  padding: 6px 10px;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-summer-main-program-3 .block-1 .static-title .h1-sticker-1 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .static-title .h1-sticker-1 {
    left: 189px;
    top: -69px;
    width: 201px;
    padding: 20px 20px;
    z-index: 1;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 .static-title .h1-sticker-1 {
    top: unset;
    left: 655px;
    bottom: 100px;
    width: 221px;
    padding: 30px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-1 .static-title .h1-sticker-1 {
    left: 1299px;
    bottom: 124px;
    width: 424px;
    padding: 40px;
  }
}
.page-summer-main-program-3 .block-1 p.text-main {
  font-size: 18px;
  line-height: 130%;
  max-width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 p.text-main {
    font-size: 22px;
    max-width: 360px;
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 p.text-main {
    font-size: 18px;
    max-width: 588px;
    margin-top: 20px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-1 p.text-main {
    font-size: 28px;
    max-width: 860px;
    margin-top: 40px;
  }
}
.page-summer-main-program-3 .block-1 .right-content {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .right-content {
    margin: unset;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.page-summer-main-program-3 .block-1 .right-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-summer-main-program-3 .block-1 .right-content .image.image-1 {
  -webkit-transform: rotate(12.34deg);
  transform: rotate(12.34deg);
  width: 187px;
  height: 224px;
  margin: 0 auto -50px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .right-content .image.image-1 {
    margin: unset;
    position: absolute;
    width: 223px;
    height: 336px;
    top: 205px;
    left: 398px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 .right-content .image.image-1 {
    width: 313px;
    height: 406px;
    top: -18px;
    left: 839px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-1 .right-content .image.image-1 {
    width: 450px;
    height: 675px;
    top: -115px;
    left: 1177px;
  }
}
.page-summer-main-program-3 .block-1 .right-content .image.image-1::before {
  content: "";
  position: absolute;
  left: -51px;
  top: 11px;
  width: 139px;
  height: 33px;
  -webkit-transform: rotate(141deg);
  transform: rotate(141deg);
  background: #ff5f67;
  z-index: 2;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .right-content .image.image-1::before {
    width: 144px;
    height: 34px;
    left: -50px;
    top: 0px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 .right-content .image.image-1::before {
    width: 208px;
    height: 50px;
    left: -70px;
    top: 0px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-1 .right-content .image.image-1::before {
    width: 255px;
    height: 60px;
    left: -89px;
    top: 0px;
  }
}
.page-summer-main-program-3 .block-1 .right-content .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px;
  gap: 16px;
  margin-top: 37px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .right-content .prices {
    margin-top: unset;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px;
    gap: 16px;
    bottom: -204px;
    width: 280px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 .right-content .prices {
    padding: 30px;
    gap: 20px;
    bottom: 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 550px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-1 .right-content .prices {
    gap: 40px;
    padding: 40px;
    bottom: 8px;
    width: 775px;
  }
}
.page-summer-main-program-3 .block-1 .right-content .prices .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item {
    gap: 4px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item {
    gap: 0;
  }
}
.page-summer-main-program-3 .block-1 .right-content .prices .item_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item_bottom {
    gap: 4px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item_bottom {
    gap: 10px;
  }
}
.page-summer-main-program-3 .block-1 .right-content .prices .item:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
}
.page-summer-main-program-3 .block-1 .right-content .prices .item:last-child .text-dop {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 7px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item:last-child {
    gap: 10px;
  }
}
.page-summer-main-program-3 .block-1 .right-content .prices .item:last-child .item_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item:last-child .item_top {
    gap: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-1 .right-content .prices .item:last-child .item_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.page-summer-main-program-3 .block-2 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-2 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-2 .h2-title {
    margin-bottom: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-2 .h2-title {
    margin-bottom: 40px;
  }
}
.page-summer-main-program-3 .block-2 .subjects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-2 .subjects {
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-2 .subjects {
    gap: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-2 .subjects {
    gap: 40px;
  }
}
.page-summer-main-program-3 .block-3 {
  margin-top: 40px;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 {
    margin-top: 60px;
    margin-bottom: 102px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 {
    margin-top: 60px;
    margin-bottom: 55px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 {
    margin-top: 120px;
    margin-bottom: 95px;
  }
}
.page-summer-main-program-3 .block-3 .container {
  position: relative;
}
.page-summer-main-program-3 .block-3 .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 40px;
}
.page-summer-main-program-3 .block-3 .schedule {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule {
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .schedule {
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .schedule {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.page-summer-main-program-3 .block-3 .schedule .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule .tr {
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .schedule .tr {
    gap: 40px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .schedule .tr {
    gap: 60px;
  }
}
.page-summer-main-program-3 .block-3 .schedule .th {
  width: calc(14.2857142857% - 5px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(14.2857142857% - 5px);
  flex: 0 0 calc(14.2857142857% - 5px);
  padding: 5px 10px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-summer-main-program-3 .block-3 .schedule .th .pc {
  display: none;
}
.page-summer-main-program-3 .block-3 .schedule .th .mobile {
  display: inline;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule .th {
    width: 90px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    padding: 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .schedule .th {
    width: 136px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
    padding: 12px;
  }
  .page-summer-main-program-3 .block-3 .schedule .th .pc {
    display: inline;
  }
  .page-summer-main-program-3 .block-3 .schedule .th .mobile {
    display: none;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .schedule .th {
    width: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    padding: 18px;
  }
}
.page-summer-main-program-3 .block-3 .schedule .td {
  position: relative;
  width: calc(14.2857142857% - 5px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(14.2857142857% - 5px);
  flex: 0 0 calc(14.2857142857% - 5px);
  padding: 5px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule .td {
    width: 90px;
    height: 111px;
    padding: 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .schedule .td {
    width: 136px;
    height: 136px;
    padding: 6px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .schedule .td {
    width: 200px;
    height: 200px;
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.page-summer-main-program-3 .block-3 .schedule .td.bg-pink .top .date {
  color: #f4f4f4;
}
.page-summer-main-program-3 .block-3 .schedule .td.bg-pink .top .text-container .text-3 {
  color: #f4f4f4;
}
.page-summer-main-program-3 .block-3 .schedule .td .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top {
    gap: 10px;
  }
}
.page-summer-main-program-3 .block-3 .schedule .td .top .date {
  color: #b9b9b9;
  font-weight: 500;
  line-height: normal;
  font-size: 12px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .date {
    font-size: 9px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .date {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .date {
    right: 10px;
    top: 10px;
    font-size: 18px;
  }
}
.page-summer-main-program-3 .block-3 .schedule .td .top .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text {
  font-size: 9px;
  font-weight: 700;
  line-height: normal;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text {
    font-size: 9px;
    word-wrap: normal;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text {
    font-weight: 700;
    font-size: 12px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text {
    font-weight: 700;
    font-size: 18px;
  }
}
.page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text-2 {
  font-weight: 500;
  display: none;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 9px;
    display: inline;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 12px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text-2 {
    font-size: 18px;
  }
}
.page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text-3 {
  font-weight: 500;
  color: #b9b9b9;
  display: none;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 9px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 12px;
    display: inline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .schedule .td .top .text-container .text-3 {
    font-size: 18px;
  }
}
.page-summer-main-program-3 .block-3 .schedule .td .time {
  font-size: 9px;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .schedule .td .time {
    margin-top: unset;
    position: absolute;
    font-size: 9px;
    bottom: 5px;
    left: 5px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .schedule .td .time {
    bottom: 6px;
    left: 6px;
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .schedule .td .time {
    bottom: 10px;
    left: 10px;
    font-size: 18px;
  }
}
.page-summer-main-program-3 .block-3 .description-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-summer-main-program-3 .block-3 .description-container_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .description-container_left {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .description-container_left {
    gap: 40px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .description-container_left {
    gap: 60px;
  }
}
.page-summer-main-program-3 .block-3 .description-container_left .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
  width: calc(50% - 10px);
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .description-container_left .description {
    padding: 16px;
    gap: 16px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .description-container_left .description {
    padding: 10px;
    gap: 16px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 360px;
    flex: 0 0 360px;
    width: 360px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .description-container_left .description {
    padding: 10px;
    gap: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 460px;
    flex: 0 0 460px;
    width: 460px;
  }
}
.page-summer-main-program-3 .block-3 .description-container_left .description li span {
  color: #2f2f2f;
  font-family: "AkzidenzGrotesk", sans-serif, -apple-system;
  font-size: 18px;
  font-weight: 500;
  line-height: 95%; /* 28.5px */
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .description-container_left .description li span {
    font-size: 20px;
    line-height: 95%; /* 28.5px */
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .description-container_left .description li span {
    font-size: 26px;
    line-height: 95%; /* 28.5px */
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .description-container_left .description li span {
    font-size: 30px;
    line-height: 95%; /* 28.5px */
  }
}
.page-summer-main-program-3 .block-3 .description-container_right .bg-clearWhite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  width: 100%;
  margin-top: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .description-container_right .bg-clearWhite {
    padding: 20px;
    width: 100%;
    margin-top: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .description-container_right .bg-clearWhite {
    margin-top: unset;
    padding: 10px;
    width: 360px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .description-container_right .bg-clearWhite {
    padding: 10px;
    width: 460px;
  }
}
.page-summer-main-program-3 .block-3 .materials {
  position: relative;
  width: 100%;
  padding: 16px;
  background-color: #fff;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .materials {
    width: 382px;
    padding: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .materials {
    width: 793px;
    padding: 27px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .materials {
    width: 793px;
    padding: 27px;
  }
}
.page-summer-main-program-3 .block-3 .materials .button {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 116px;
  height: 44px;
  -webkit-transform: rotate(-22.343deg);
  transform: rotate(-22.343deg);
  padding: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 45px;
  right: 6px;
  background-color: #ebff00;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-3 .materials .button {
    width: 140px;
    height: 44px;
    padding: 8px;
    top: 35px;
    right: -89px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
    text-decoration: none;
  }
  .page-summer-main-program-3 .block-3 .materials .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-3 .materials .button {
    width: 189px;
    height: 78px;
    padding: 30px;
    top: 15px;
    right: 73px;
  }
}
.page-summer-main-program-3 .block-4 {
  margin-top: 98px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-4 {
    margin-top: 102px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-4 {
    margin-top: 110px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-4 {
    margin-top: 110px;
    margin-bottom: 90px;
  }
}
.page-summer-main-program-3 .block-4 .h2-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-4 .h2-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-4 .h2-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-4 .h2-title {
    margin-bottom: 44px;
  }
}
.page-summer-main-program-3 .block-4 .steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-4 .steps .step {
    padding: 14px;
    height: 100%;
    gap: 26px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-4 .steps .step {
    padding: 20px;
    height: 100%;
    gap: 20px;
  }
}
.page-summer-main-program-3 .block-4 .steps .step-title {
  width: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-4 .steps .step-title {
    width: 88px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 88px;
    flex: 0 0 88px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-4 .steps .step-title {
    width: 136px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 136px;
    flex: 0 0 136px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-4 .steps .step-title {
    width: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.page-summer-main-program-3 .block-4 .steps .step .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ebff00;
  text-decoration: underline;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-summer-main-program-3 .block-4 .steps .step .button {
    padding: 5px 10px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-4 .steps .step .button {
    padding: 5px 10px;
    text-decoration: none;
  }
  .page-summer-main-program-3 .block-4 .steps .step .button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-4 .steps .step .button {
    padding: 5px 10px;
    margin-top: 20px;
  }
}
.page-summer-main-program-3 .block-4 .steps .step.step-2, .page-summer-main-program-3 .block-4 .steps .step.step-6 {
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}
.page-summer-main-program-3 .block-4 .steps .step.step-4 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-4 .steps .step.step-4 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-4 .steps .step.step-4 .step-text {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 801px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 801px;
    flex: 0 0 801px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-4 .steps .step.step-4 .step-text .text-main-2:nth-child(1) {
    width: 1177px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1177px;
    flex: 0 0 1177px;
  }
}
.page-summer-main-program-3 .block-4 .steps .step.step-5 {
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
}
.page-summer-main-program-3 .block-4 .steps .step.step-5 .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .page-summer-main-program-3 .block-4 .steps .step.step-5 .step-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1800px) {
  .page-summer-main-program-3 .block-4 .steps .step.step-5 .step-text {
    gap: 20px;
  }
}
.page-summer-main-program-3 .block-4 .steps .step.step-5 .step-text > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.footer {
  color: #2f2f2f;
  background-color: #fff;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.46;
}
@media (min-width: 1280px) {
  .footer {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
  }
}
@media (min-width: 1800px) {
  .footer {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.46;
  }
}
.footer a {
  color: #2f2f2f;
}
.footer .container {
  padding-top: 19px;
  padding-bottom: 19px;
}
@media (min-width: 768px) {
  .footer .container {
    padding-top: 38px;
    padding-bottom: 38px;
  }
}
@media (min-width: 1280px) {
  .footer .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1800px) {
  .footer .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 17px;
}
@media (min-width: 768px) {
  .footer__left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.footer__left--soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1280px) {
  .footer__left--soc {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .footer__left--soc {
    gap: 30px;
  }
}
.footer__left--soc .link-icon {
  width: 32px;
  height: 32px;
}
@media (min-width: 1280px) {
  .footer__left--soc .link-icon {
    width: 33.33px;
    height: 33.33px;
  }
}
@media (min-width: 1800px) {
  .footer__left--soc .link-icon {
    width: 50px;
    height: 50px;
  }
}
.footer__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .footer__center {
    gap: 44px;
    margin-top: 36px;
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .footer__center {
    gap: 12.67px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1800px) {
  .footer__center {
    gap: 19px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
}
@media (min-width: 768px) {
  .footer__right {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .footer__right {
    gap: 12.67px;
  }
}
@media (min-width: 1800px) {
  .footer__right {
    gap: 19px;
  }
}
.footer__right--links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1280px) {
  .footer__right--links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 28px;
  }
}
@media (min-width: 1800px) {
  .footer__right--links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 43px;
  }
}

.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  height: 0px;
  width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .header {
    margin-top: 20px;
  }
}
@media (min-width: 1280px) {
  .header {
    margin-top: 19px;
  }
}
@media (min-width: 1800px) {
  .header {
    margin-top: 46px;
  }
}
.header.collapsed .header__logo {
  opacity: 0;
  visibility: hidden;
}
.header.collapsed .header__logo--short {
  opacity: 0;
  visibility: hidden;
}
.header .container {
  position: relative;
  height: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header__logo {
  position: absolute;
  top: 0;
  left: 16px;
  width: 131px;
  height: 32px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media (min-width: 768px) {
  .header__logo {
    top: 0;
    left: 0;
    width: 148px;
    height: 36px;
  }
}
@media (min-width: 1280px) {
  .header__logo {
    top: 0;
    left: 0;
    width: 387px;
    height: 94px;
  }
}
@media (min-width: 1800px) {
  .header__logo {
    top: 0;
    left: 0;
    width: 541px;
    height: 131px;
  }
}
.header__logo--short {
  position: absolute;
  top: 0;
  left: 16px;
  width: 60px;
  height: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media (min-width: 768px) {
  .header__logo--short {
    top: 0;
    left: 0;
    width: 64px;
    height: 34px;
  }
}
@media (min-width: 1280px) {
  .header__logo--short {
    top: 0;
    left: 0;
    width: 108px;
    height: 58px;
  }
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 30px;
  margin-top: 3px;
}
@media (min-width: 768px) {
  .header__right {
    gap: 30px;
    margin-top: 4px;
  }
}
@media (min-width: 1280px) {
  .header__right {
    gap: 40px;
    margin-top: 0;
  }
}
@media (min-width: 1800px) {
  .header__right {
    gap: 40px;
    margin-top: 0;
  }
}
.header__search {
  width: 26px;
  height: 26px;
}
@media (min-width: 768px) {
  .header__search {
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 1280px) {
  .header__search {
    width: 37px;
    height: 37px;
  }
}
@media (min-width: 1800px) {
  .header__search {
    width: 40px;
    height: 40px;
  }
}
.header__burger {
  position: relative;
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .header__burger {
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 1280px) {
  .header__burger {
    width: 37px;
    height: 32px;
  }
}
@media (min-width: 1800px) {
  .header__burger {
    width: 40px;
    height: 38px;
  }
}
.header__burger span {
  width: 100%;
  height: 3px;
  background-color: #363636;
  display: inline-block;
}
@media (min-width: 768px) {
  .header__burger span {
    height: 3px;
  }
}
@media (min-width: 1280px) {
  .header__burger span {
    height: 4px;
  }
}
@media (min-width: 1800px) {
  .header__burger span {
    height: 5px;
  }
}
.header__burger span::after, .header__burger span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #363636;
}
@media (min-width: 768px) {
  .header__burger span::after, .header__burger span::before {
    height: 3px;
  }
}
@media (min-width: 1280px) {
  .header__burger span::after, .header__burger span::before {
    height: 4px;
  }
}
@media (min-width: 1800px) {
  .header__burger span::after, .header__burger span::before {
    height: 5px;
  }
}
.header__burger span::before {
  top: 0;
  left: 0;
  right: 0;
}
.header__burger span::after {
  bottom: 0;
  left: 0;
  right: 0;
}
.header__menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  padding: 25px 16px 20px;
  background-color: #fff;
  overflow-y: scroll;
  will-change: transform;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
@media (min-width: 768px) {
  .header__menu {
    width: 100vw;
    padding: 40px 40px 48px;
  }
}
@media (min-width: 1280px) {
  .header__menu {
    width: 427px;
    padding: 20px 40px 20px 20px;
  }
}
@media (min-width: 1800px) {
  .header__menu {
    width: 640px;
    padding: 40px 40px 80px;
  }
}
.header__menu.opened {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.header__menu--logo {
  display: block;
  width: 60px;
  height: 32px;
  margin-bottom: 33px;
}
@media (min-width: 768px) {
  .header__menu--logo {
    display: block;
    width: 64px;
    height: 34px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .header__menu--logo {
    display: none;
    width: 108px;
    height: 58px;
  }
}
.header__menu--closebtn {
  position: absolute;
  width: 20px;
  height: 19px;
  top: 30px;
  right: 16px;
}
@media (min-width: 768px) {
  .header__menu--closebtn {
    width: 20px;
    height: 19px;
    top: 48px;
    right: 40px;
  }
}
@media (min-width: 1280px) {
  .header__menu--closebtn {
    width: 40px;
    height: 39px;
    top: 20px;
    right: 40px;
  }
}
@media (min-width: 1800px) {
  .header__menu--closebtn {
    width: 37px;
    height: 36px;
    top: 40px;
    right: 80px;
  }
}
.header__menu--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: calc(100% - 65px);
  gap: 10px;
}
@media (min-width: 768px) {
  .header__menu--content {
    height: calc(100% - 74px);
  }
}
@media (min-width: 1280px) {
  .header__menu--content {
    height: 100%;
  }
}
.header__menu--content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 12px;
}
@media (min-width: 768px) {
  .header__menu--content ul {
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .header__menu--content ul {
    gap: 15px;
  }
}
@media (min-width: 1800px) {
  .header__menu--content ul {
    gap: 20px;
  }
}
.header__menu--content ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 6px 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #363636;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .header__menu--content ul li a {
    font-size: 30px;
    padding: 12px 32px;
  }
}
@media (min-width: 1280px) {
  .header__menu--content ul li a {
    font-size: 18px;
    padding: 8px 15px;
  }
}
@media (min-width: 1800px) {
  .header__menu--content ul li a {
    font-size: 28px;
    padding: 10px 20px;
  }
}
.header__menu--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.46;
}
@media (min-width: 768px) {
  .header__menu--bottom {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .header__menu--bottom {
    font-size: 12px;
  }
}
@media (min-width: 1800px) {
  .header__menu--bottom {
    font-size: 15px;
  }
}
.header__menu--bottom a {
  color: #2f2f2f;
}
.header__menu--soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .header__menu--soc {
    gap: 12px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .header__menu--soc {
    gap: 23px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1800px) {
  .header__menu--soc {
    gap: 30px;
    margin-bottom: 19px;
  }
}
.header__menu--soc .link-icon {
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .header__menu--soc .link-icon {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1280px) {
  .header__menu--soc .link-icon {
    width: 38px;
    height: 38px;
  }
}
@media (min-width: 1800px) {
  .header__menu--soc .link-icon {
    width: 50px;
    height: 50px;
  }
}
.header__menu--toplinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .header__menu--toplinks {
    display: none;
  }
}
.header__menu--address {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .header__menu--address {
    margin-bottom: 16px;
  }
}
@media (min-width: 1280px) {
  .header__menu--address {
    margin-bottom: 15px;
  }
}
@media (min-width: 1800px) {
  .header__menu--address {
    margin-bottom: 19px;
  }
}
.header__menu--mail {
  display: inline-block;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .header__menu--mail {
    display: none;
  }
}
.header__menu--bottomlinks {
  display: none;
}
@media (min-width: 768px) {
  .header__menu--bottomlinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .header__menu--bottomlinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1800px) {
  .header__menu--bottomlinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 14px;
    margin-bottom: 42px;
  }
}
.header__menu--bottomlinks a:first-child {
  margin-right: 0;
}
@media (min-width: 1280px) {
  .header__menu--bottomlinks a:first-child {
    margin-right: 150px;
  }
}
@media (min-width: 1800px) {
  .header__menu--bottomlinks a:first-child {
    margin-right: 0;
  }
}
.header__menu--copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .header__menu--copyright {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 143px;
  }
}
@media (min-width: 1280px) {
  .header__menu--copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 1800px) {
  .header__menu--copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 19px;
  }
}