.menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.menu ul li {
  list-style: none;
}

/* gamburger menu */
.hamburger,
.hamburger-2 {
  background: #B40001;
  border-radius: 5px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  border: 0;
  margin: 0;
  overflow: visible;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  position: relative;
  top: 0;
  right: 0;
  margin-left: 16px;
}

@media (max-width: 650px) {
  .hamburger,
  .hamburger-2 {
    position: absolute;
    top: 13px;
    right: 15px;
    margin-left: 0;
    width: 30px;
    height: 30px;
  }
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #FFFFFF;
}

.hamburger--collapse.is-active {
  z-index: 10;
  padding: 0;
  top: 0;
}

.hamburger-box {
  width: 20px;
  height: 14px;
  display: inline-block;
  position: relative;
}

@media (max-width: 650px) {
  .hamburger-box {
    width: 18px;
  }
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: 0;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: #FFFFFF;
  position: absolute;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

@media (max-width: 650px) {
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 18px;
  }
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: 6.5px;
}

.hamburger--collapse .hamburger-inner {
  width: 20px;
  top: 0;
  bottom: auto;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

@media (max-width: 650px) {
  .hamburger--collapse .hamburger-inner {
    width: 18px;
  }
}

.hamburger--collapse .hamburger-inner::after {
  top: 12.5px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner {
  width: 20px;
  top: 17px;
  left: 0;
}

@media (max-width: 650px) {
  .hamburger--collapse.is-active .hamburger-inner {
    width: 18px;
  }
}

html {
  background-color: #F6E8D7;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Exo 2.0', sans-serif;
  background: #F6E8D7;
}

@media (min-width: 992px) {
  body {
    background-color: #F6E8D7;
    /*background: url(../img/img-zanaves-1.png) no-repeat top left fixed, 
        url(../img/img-zanaves-2.png) no-repeat top right fixed;
        background-size: cover;*/
  }
}

a {
  color: #B40001;
  text-decoration: none;
}

a:hover {
  color: #740001;
  transition: 0.5s;
}

a:active, a:focus, a.active {
  color: #740001;
  transition: 0.5s;
}

p {
  color: #000000;
  line-height: 130%;
  margin-top: 0;
  margin-bottom: 10px;
}

strong {
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
}

div {
  box-sizing: border-box;
  color: #000000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

@media (max-width: 1442px) {
  .container {
    max-width: 1070px;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 992px;
  }
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.form-control {
  display: block;
  width: 100%;
  line-height: 1.5;
  appearance: none;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

textarea {
  resize: vertical;
}

.font_white {
  color: #FFFFFF;
}

.font_accent {
  color: #D3EF92;
}

.font_accent2 {
  color: #FEAD42;
}

.font_gray {
  color: #CAC9CD;
}

.font_black {
  color: #737EB3;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: 'Flow Ext';
  color: #B40001;
  font-weight: 400;
}

h1 {
  font-size: 32px;
  line-height: 120%;
  color: #B40001;
}

@media (min-width: 992px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 44px;
  line-height: 48px;
}

h3 {
  font-size: 32px;
  line-height: 40px;
}

.title-mid {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 24px;
  color: #737EB3;
}

@media (min-width: 992px) {
  .title-mid {
    font-size: 28px;
    line-height: 40px;
  }
}

.title-block {
  font-family: 'Flow Ext';
  color: #000000;
  font-weight: normal;
  font-size: 22px;
  line-height: 120%;
}

@media (min-width: 992px) {
  .title-block {
    font-size: 36px;
    line-height: 120%;
  }
}

.title-block.color-accent {
  color: #D3EF92;
}

.title-block.color-accent-2 {
  color: #FEAD42;
}

.subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #858585;
}

/* btns */
.btn {
  display: inline-block;
  height: 44px;
  border: 0;
  padding: 12px 28px;
  outline: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 130%;
  color: #737EB3;
  text-decoration: none;
  background: transparent;
  text-align: center;
  user-select: none;
  cursor: pointer;
}

.btn:hover, .btn:focus {
  border: 0;
}

.art-button {
  border-radius: 20px;
  background: #B40001;
  color: #FFFFFF;
  width: 220px;
  height: 55px;
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  padding: 15px 22px;
}

@media (min-width: 650px) {
  .art-button {
    width: 251px;
    height: 70px;
    font-size: 22px;
    line-height: 29px;
    padding: 20px 28px;
  }
}

.art-button img {
  margin-left: 20px;
  position: relative;
  top: 2px;
}

@media (min-width: 650px) {
  .art-button img {
    top: 0;
  }
}

.art-button:hover, .art-button:focus, .art-button:active {
  background: #740001;
  color: #FFFFFF;
  transition: all 0.5s;
}

.art-button:disabled, .art-button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.art-button-2 {
  color: #B40001;
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

@media (min-width: 650px) {
  .art-button-2 {
    font-size: 22px;
    line-height: 29px;
  }
}

.art-button-2 svg {
  margin-left: 8px;
  position: relative;
  top: -1px;
  width: 21px;
  height: auto;
}

@media (min-width: 650px) {
  .art-button-2 svg {
    width: 39px;
    top: 0;
    margin-left: 15px;
  }
}

.art-button-2 svg path {
  fill: #B40001;
}

.art-button-2:hover, .art-button-2:focus, .art-button-2:active {
  color: #740001;
  transition: all 0.5s;
}

.art-button-2:hover svg path, .art-button-2:focus svg path, .art-button-2:active svg path {
  fill: #740001;
  transition: 0.5s;
}

.art-button-2:disabled, .art-button-2.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.art-hover-1 {
  border: 0 solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  animation: shadow 1.5s infinite;
  transition: transform 0.5s;
}

.art-hover-1:hover {
  animation: none 1.5s infinite;
  transform: translateY(-5px);
  transition: transform 0.5s;
}

.art-hover-1:active,
.art-hover-1:focus {
  animation: shadow 1.5s;
  transform: translateY(-5px);
}

@keyframes shadow {
  0% {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline-color: rgba(255, 255, 255, 0.5);
    outline-offset: 0px;
  }
  100% {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
  }
}

.line-white,
.line-accent,
.line-gray {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.line-white::before,
.line-accent::before,
.line-gray::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  display: block;
  bottom: 2px;
  left: 0;
  opacity: 1;
  transition: 0.5s;
}

.line-white:hover:before,
.line-accent:hover:before,
.line-gray:hover:before {
  opacity: 0;
  transition: 0.5s;
}

.line-white::before {
  background: #FFFFFF;
}

.line-accent::before {
  background: #D3EF92;
}

.line-gray::before {
  background: #D9D9D9;
}

/* end btns */
/* to top */
.to-top {
  position: fixed;
  bottom: -100px;
  right: 20px;
  cursor: pointer;
  z-index: 100;
  visibility: hidden;
  transition: all ease-out 1s;
  width: 74px;
  height: 74px;
  background: rgba(180, 0, 1, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .to-top {
    width: 35px;
    height: 35px;
    right: 8px;
  }
}

.to-top:hover {
  background: #b40001;
  transition: 0.5s;
}

/* end to top */
.phone {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  color: #000000;
}

@media (min-width: 992px) {
  .phone {
    font-size: 20px;
    line-height: 24px;
  }
}

.phone:hover {
  color: #000000;
  transition: 0.5s;
}

.phone span {
  font-weight: bold;
}

@media (max-width: 650px) {
  .header-lines .phone {
    position: relative;
    padding-left: 40px;
  }
  .header-lines .phone::before {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    top: -6px;
    left: 0;
    background: url(../img/icons/phone-icon.svg) top center no-repeat;
    display: block;
  }
}

.email {
  color: #858585;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.email:hover {
  color: #B40001;
  transition: color 0.5s;
}

.sotial-link {
  display: flex;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #FFFFFF;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  transition: 0.5s;
  /*&:first-child {
        background:$accent;
    }*/
}

@media (min-width: 768px) {
  .sotial-link {
    width: 40px;
    height: 40px;
    margin: 0 6px;
  }
}

.sotial-link:last-child {
  margin-right: 0;
}

.sotial-link:first-child {
  margin-left: 0;
}

.sotial-link svg {
  transform: scale(0.7);
}

@media (min-width: 768px) {
  .sotial-link svg {
    transform: scale(0.8);
  }
}

.sotial-link svg path {
  fill: #B40001;
  transition: 0.5s;
}

.sotial-link:hover {
  background: #B40001;
  opacity: 1;
}

.sotial-link:hover svg path {
  fill: #FFFFFF;
  transition: 0.5s;
}

.sotials {
  display: flex;
}

@media (max-width: 767px) {
  .sotials {
    justify-content: center;
    margin-bottom: 0;
  }
}

.vds {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 650px) {
  .vds {
    margin-right: 40px;
  }
}

.vds__icon {
  width: 40px;
  height: 40px;
  background: #FFCE96;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.vds__icon img {
  width: 23px;
  position: relative;
  left: 1px;
}

@media (max-width: 650px) {
  .vds__icon img {
    width: 16px;
    left: 0;
  }
}

@media (max-width: 650px) {
  .vds__icon {
    width: 30px;
    height: 30px;
  }
}

.vds__text {
  max-width: calc(100% - 58px);
  margin-left: 13px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

@media (max-width: 650px) {
  .vds__text {
    display: none;
  }
}

.vds:hover .vds__icon,
.vds.active .vds__icon {
  background: #FFFFFF;
}

/*header*/
.header-organization {
  max-width: 260px;
  color: #B40001;
  font-family: 'Flow Ext';
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

@media (max-width: 991px) {
  .header-organization {
    display: none;
  }
}

.logos-mobile {
  position: relative;
  z-index: 2;
}

@media (min-width: 720px) {
  .logos-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .not-front .logos-mobile {
    max-width: 783px;
    margin: 0 auto;
  }
}

.logos-mobile-wrap {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 22px 0;
}

@media (max-width: 650px) {
  .logos-mobile-wrap {
    max-width: 320px;
    width: 100%;
    justify-content: space-between;
  }
}

.logos-mobile-wrap img {
  margin: 0 20px;
}

@media (max-width: 650px) {
  .logos-mobile-wrap img {
    margin: 0;
  }
}

.logos-mobile-wrap img:first-child {
  width: 90px;
}

@media (max-width: 650px) {
  .logos-mobile-wrap img:first-child {
    width: 71px;
  }
}

@media (max-width: 650px) {
  .logos-mobile-wrap img:nth-child(2) {
    width: 59px;
  }
}

@media (max-width: 650px) {
  .logos-mobile-wrap img:nth-child(3) {
    width: 112px;
  }
}

.header {
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  .header {
    background: #F6E8D7;
  }
}

.header-wrap {
  justify-content: space-between;
  padding: 5px 0;
  align-items: center;
}

@media (min-width: 651px) {
  .header-wrap {
    padding: 24px 0;
  }
}

.header-logo {
  width: 40px;
}

@media (min-width: 721px) {
  .header-logo {
    width: 94px;
  }
}

@media (min-width: 1200px) {
  .header-logo {
    width: 115px;
  }
}

.header-lines {
  width: calc(100% - 50px);
}

@media (min-width: 335px) {
  .header-lines {
    width: calc(100% - 60px);
  }
}

@media (min-width: 720px) {
  .header-lines {
    width: calc(100% - 118px);
  }
}

@media (min-width: 767px) {
  .header-lines {
    width: calc(100% - 170px);
  }
}

@media (min-width: 992px) {
  .header-lines {
    width: calc(100% - 118px);
  }
}

@media (min-width: 1200px) {
  .header-lines {
    width: calc(100% - 145px);
  }
}

@media (min-width: 1443px) {
  .header-lines {
    width: calc(100% - 154px);
  }
}

@media (max-width: 650px) {
  .header-lines .sotials {
    display: none;
  }
  .header-lines .email {
    display: none;
  }
}

.header-line-top {
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .header-line-top {
    margin-bottom: 34px;
  }
}

.header-logos {
  display: flex;
  max-width: 200px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  /*@media (max-width: 1199px) {
        max-width: 228px;
    }*/
}

@media (max-width: 991px) {
  .header-logos {
    display: none;
  }
}

@media (min-width: 992px) {
  .header-logos img {
    width: auto;
    height: 66px;
  }
}

.header-info {
  max-width: 398px;
  align-items: center;
}

.header-contacts {
  max-width: 160px;
}

@media (min-width: 651px) {
  .header-contacts {
    margin-left: 24px;
  }
}

.header-vds {
  max-width: 204px;
}

@media (min-width: 992px) {
  .header .hamburger {
    display: none;
  }
}

/*end header*/
/* menu blocks */
.menu-block {
  height: 100%;
  display: flex;
  max-width: 100%;
  flex-grow: 2;
}

@media (max-width: 991px) {
  .menu-block {
    display: none;
    border-right: 0;
    border-left: 0;
    max-width: 100%;
    margin-bottom: 40px;
  }
}

.menu-block ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu-block ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-block ul li a.menu-link {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  text-decoration: none;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .menu-block ul li a.menu-link {
    font-size: 18px;
  }
}

.menu-block ul li a.menu-link:hover {
  color: #B40001;
  transition: 0.5s;
}

.menu-block ul li a.menu-link:active, .menu-block ul li a.menu-link:focus, .menu-block ul li a.menu-link.active {
  color: #B40001;
  transition: 0.5s;
}

.menu-block ul li.dropdown-menu {
  position: relative;
}

@media (min-width: 992px) {
  .submenu {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: -1;
    transform: translateX(-100px);
    height: 0;
    overflow: hidden;
    opacity: 1;
    background: #FFFFFF;
    transition: all 0.6s ease;
    overflow: hidden;
    border-radius: 20px;
    /*box-shadow: 0 0 20px rgba(115,126,179, 0.6);*/
  }
  .submenu .submenu-wrap {
    padding-top: 12px;
  }
  .dropdown-menu.active .submenu {
    z-index: 30;
    height: auto;
    transform: translateX(0px);
    transition: all 0.6s ease;
  }
  .submenu-xl {
    max-width: 620px;
    width: 620px;
  }
  .submenu-xl .submenu-wrap {
    column-count: 2;
  }
  .submenu-lg {
    max-width: 200px;
    width: 200px;
  }
  .menu-block > ul > li:nth-child(5) .submenu-lg {
    max-width: 158px;
    width: 158px;
  }
  .menu-block > ul > li:nth-child(2) .submenu-lg {
    max-width: 100%;
    width: 100%;
  }
  .submenu-sm {
    max-width: 214px;
    width: 214px;
  }
  .submenu-wrap {
    max-width: 1276px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .submenu-label {
    margin-bottom: 20px;
  }
  .submenu-block {
    width: 220px;
    margin-bottom: 46px;
  }
  .submenu-block .submenu-label {
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
  }
  .submenu-block .submenu-links {
    margin-top: 19px;
  }
  .submenu-block .submenu-links a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #000000;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }
  .submenu-block .submenu-links a:hover {
    color: #D3EF92;
    transition: 0.5s;
  }
  .submenu-wrap > a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }
  .submenu-wrap > a:hover {
    color: #B40001;
    transition: 0.5s;
  }
  .menu-link.dropdown svg {
    position: relative;
    transform: rotateX(0deg);
    top: -2px;
    margin-left: 4px;
    transition: 0.5s;
  }
  .dropdown-menu.active .menu-link.dropdown svg {
    transform: rotateX(180deg);
  }
}

/* end menu blocks */
/* mobile section */
.mobile-menu {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  background: #F6E8D7;
  top: 0;
  right: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 54px;
}

.mobile-menu.active {
  z-index: 500;
  opacity: 1;
  overflow: auto;
}

body.mobile {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.mobile .header {
  z-index: 101;
}

body.mobile .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.hamburger-menu-close {
  position: absolute;
  top: 5px !important;
  right: 10px;
}

.menu-mobile {
  overflow: auto;
  height: 100%;
}

.menu-mobile .menu-block {
  display: block;
}

.menu-mobile .menu-block > ul {
  display: block;
  padding: 0;
}

.menu-mobile .menu-block > ul > li {
  padding: 15px 0;
}

.menu-mobile .menu-block > ul > li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-mobile .menu-block > ul > li a svg {
  top: 0;
}

@media (max-width: 991px) {
  .mobile-menu .header-contacts {
    margin-left: 6px;
  }
  .mobile-menu .sotials {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 11px;
  }
  .mobile-menu .header-info {
    flex-wrap: wrap;
  }
  .menu-mobile .menu-block > ul > li a svg {
    display: none;
  }
  .menu-mobile .menu-block > ul {
    display: block;
    padding: 0;
  }
  .menu-mobile .menu-block > ul > li {
    padding: 8px 0;
  }
  .menu-mobile .menu-block > ul > li > a {
    font-family: 'Flow Ext';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    display: inline-block;
  }
  .submenu {
    position: relative;
    top: 0;
    left: 0;
    z-index: -1;
    height: 0;
    overflow: hidden;
    opacity: 1;
  }
  .submenu .submenu-wrap {
    border-radius: 0;
    padding: 8px 0;
  }
  .dropdown-menu.active .submenu {
    position: relative;
    z-index: 5;
    height: auto;
  }
  .submenu-block {
    margin-bottom: 24px;
  }
  .submenu-block:last-child {
    margin-bottom: 0;
  }
  .submenu-block .submenu-label {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    color: #737EB3;
    margin-bottom: 4px;
  }
  .submenu-block .submenu-links a {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 32px;
    display: block;
    margin-bottom: 0;
    color: #737EB3;
    padding-left: 12px;
    position: relative;
  }
  .submenu-block .submenu-links a::before {
    content: '.';
    font-size: 15px;
    position: absolute;
    top: -4px;
    left: 0;
  }
  .submenu-block .submenu-links a:last-child {
    margin-bottom: 0;
  }
  .menu-block {
    border-bottom: 1px solid #31384B;
    padding-bottom: 28px;
  }
  .submenu-wrap > a {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    display: block;
    margin-bottom: 8px;
    color: #858585;
    padding-left: 20px;
  }
  .submenu-wrap > a:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-info {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 100px;
  }
  .mobile-menu-info .header-group {
    display: block;
  }
  .mobile-menu-info .city-group__values {
    top: -129px;
    height: 125px;
    overflow: auto;
  }
}

@media (max-width: 500px) {
  .mobile-menu-info {
    display: block;
  }
  .mobile-menu-info .header-group {
    margin-bottom: 20px;
  }
}

/* end mobile section */
.fslightbox-slide-number-container span,
.fslightbox-slide-number-container div {
  color: #FFFFFF;
}

/* content main */
.topper {
  height: auto;
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.topper-images {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  transform: translate3d(0, calc(var(--scrollTop) / 3), 0);
  transition: transform 0.75s cubic-bezier(0.075, 0.5, 0, 1);
  user-select: none;
  pointer-events: none;
}

@media (min-width: 500px) {
  .topper-images {
    transform: translate3d(0, calc(var(--scrollTop) / 2), 0);
  }
}

.topper-images img {
  position: absolute;
}

.topper-images .img-1 {
  width: 315px;
  top: 53%;
  left: 50%;
  margin-left: -962px;
}

@media (max-width: 1620px) {
  .topper-images .img-1 {
    margin-left: -862px;
  }
}

@media (max-width: 1442px) {
  .topper-images .img-1 {
    margin-left: -760px;
    width: 252px;
    top: 48%;
  }
}

@media (max-width: 992px) {
  .topper-images .img-1 {
    width: 180px;
    top: 35%;
    margin-left: -500px;
  }
}

@media (max-width: 651px) {
  .topper-images .img-1 {
    width: 160px;
    margin-left: -370px;
    top: 45%;
  }
}

@media (max-width: 450px) {
  .topper-images .img-1 {
    width: 100px;
    margin-left: -260px;
  }
}

.topper-images .img-2 {
  width: 342px;
  top: 121px;
  right: 50%;
  margin-right: -1113px;
}

@media (max-width: 1620px) {
  .topper-images .img-2 {
    margin-right: -1010px;
  }
}

@media (max-width: 1442px) {
  .topper-images .img-2 {
    margin-right: -850px;
    width: 264px;
  }
}

@media (max-width: 992px) {
  .topper-images .img-2 {
    margin-right: -400px;
    width: 200px;
    top: 50px;
  }
}

@media (max-width: 651px) {
  .topper-images .img-2 {
    width: 180px;
    margin-right: -300px;
  }
}

@media (max-width: 450px) {
  .topper-images .img-2 {
    width: 90px;
    margin-right: -180px;
  }
}

.topper-images .dots-2 {
  width: 89px;
  top: 47px;
  right: 50%;
  margin-right: -838px;
}

@media (max-width: 1620px) {
  .topper-images .dots-2 {
    margin-right: -738px;
  }
}

@media (max-width: 1442px) {
  .topper-images .dots-2 {
    margin-right: -638px;
  }
}

@media (max-width: 992px) {
  .topper-images .dots-2 {
    margin-right: -500px;
    top: 90px;
  }
}

@media (max-width: 651px) {
  .topper-images .dots-2 {
    margin-right: -300px;
  }
}

.topper-images .star-1 {
  width: 116px;
  top: 228px;
  left: 50%;
  margin-left: -868px;
}

@media (max-width: 1620px) {
  .topper-images .star-1 {
    margin-left: -768px;
  }
}

@media (max-width: 1442px) {
  .topper-images .star-1 {
    margin-left: -700px;
    width: 90px;
  }
}

@media (max-width: 992px) {
  .topper-images .star-1 {
    display: none;
  }
}

.topper-images .star-2 {
  width: 40px;
  top: 37%;
  right: 50%;
  margin-right: -704px;
  animation: move2 7s ease-in-out reverse infinite;
}

@media (max-width: 1620px) {
  .topper-images .star-2 {
    margin-right: -644px;
  }
}

@media (max-width: 1442px) {
  .topper-images .star-2 {
    margin-right: -544px;
  }
}

@media (max-width: 992px) {
  .topper-images .star-2 {
    margin-right: -400px;
  }
}

@media (max-width: 651px) {
  .topper-images .star-2 {
    margin-right: -280px;
    width: 30px;
  }
}

@media (max-width: 450px) {
  .topper-images .star-2 {
    width: 20px;
    margin-right: -190px;
  }
}

.topper-images .star-3 {
  width: 58px;
  top: 89%;
  right: 50%;
  margin-right: -890px;
}

@media (max-width: 1620px) {
  .topper-images .star-3 {
    margin-right: -790px;
  }
}

@media (max-width: 1442px) {
  .topper-images .star-3 {
    margin-right: -690px;
  }
}

@media (max-width: 992px) {
  .topper-images .star-3 {
    margin-right: -450px;
  }
}

@media (max-width: 651px) {
  .topper-images .star-3 {
    margin-right: -350px;
    width: 45px;
  }
}

@media (max-width: 450px) {
  .topper-images .star-3 {
    width: 35px;
    margin-right: -220px;
  }
}

.topper-images .dots-4 {
  width: 122px;
  top: 44%;
  right: 50%;
  margin-right: -919px;
  animation: move2 5s ease-in-out infinite;
}

@media (max-width: 1620px) {
  .topper-images .dots-4 {
    margin-right: -820px;
  }
}

@media (max-width: 1442px) {
  .topper-images .dots-4 {
    margin-right: -720px;
  }
}

@media (max-width: 992px) {
  .topper-images .dots-4 {
    margin-right: -380px;
  }
}

@media (max-width: 651px) {
  .topper-images .dots-4 {
    width: 90px;
    margin-right: -320px;
  }
}

@media (max-width: 450px) {
  .topper-images .dots-4 {
    width: 70px;
    margin-right: -180px;
  }
}

.topper-images .dots-5 {
  width: 196px;
  top: 65%;
  right: 50%;
  margin-right: -838px;
  animation: move3 7s ease-in-out infinite;
}

@media (max-width: 1620px) {
  .topper-images .dots-5 {
    margin-right: -738px;
  }
}

@media (max-width: 1442px) {
  .topper-images .dots-5 {
    margin-right: -438px;
  }
}

@media (max-width: 651px) {
  .topper-images .dots-5 {
    width: 150px;
    margin-right: -360px;
  }
}

@media (max-width: 450px) {
  .topper-images .dots-5 {
    width: 130px;
    margin-right: -260px;
  }
}

.topper-images .dots-1 {
  width: 87px;
  top: 31px;
  left: 50%;
  margin-left: -918px;
}

@media (max-width: 1620px) {
  .topper-images .dots-1 {
    margin-left: -818px;
  }
}

@media (max-width: 1442px) {
  .topper-images .dots-1 {
    margin-left: -618px;
    top: 5%;
  }
}

@media (max-width: 992px) {
  .topper-images .dots-1 {
    margin-left: -118px;
    top: 8%;
  }
}

@media (max-width: 450px) {
  .topper-images .dots-1 {
    width: 60px;
  }
}

.topper-images .dots-3 {
  width: 194px;
  top: 36%;
  left: 50%;
  margin-left: -871px;
  animation: move2 5s ease-in-out infinite;
}

@media (max-width: 1620px) {
  .topper-images .dots-3 {
    margin-left: -770px;
  }
}

@media (max-width: 1442px) {
  .topper-images .dots-3 {
    margin-left: -270px;
  }
}

@media (max-width: 651px) {
  .topper-images .dots-3 {
    width: 160px;
    margin-left: -250px;
  }
}

@media (max-width: 450px) {
  .topper-images .dots-3 {
    width: 125px;
  }
}

@keyframes move2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes move3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}

.topper .container {
  position: relative;
  z-index: 1;
}

/* slider start */
.slider-top {
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 0;
}

@media (min-width: 720px) {
  .slider-top {
    padding-top: 38px;
  }
}

@media (min-width: 992px) {
  .slider-top {
    justify-content: space-between;
    padding-top: 0;
  }
}

.slider-info {
  max-width: 330px;
  max-width: 100%;
  width: 100%;
  position: relative;
  order: 1;
  margin-top: 20px;
}

@media (min-width: 500px) {
  .slider-info {
    max-width: 450px;
  }
}

@media (min-width: 650px) {
  .slider-info {
    max-width: 680px;
  }
}

@media (min-width: 992px) {
  .slider-info {
    max-width: 409px;
    order: 0;
    margin-top: 18px;
  }
}

.swiper-elements {
  width: 100%;
  position: relative;
}

.swiper-elements .swiper-pagination {
  right: 15px;
  left: auto;
  width: auto;
  margin-right: 0;
  bottom: 0;
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #858585;
}

@media (min-width: 650px) {
  .swiper-elements .swiper-pagination {
    font-size: 20px;
    line-height: 27px;
    bottom: 0;
    margin-right: -176px;
    right: 50%;
  }
}

.swiper-elements .swiper-pagination-current {
  font-weight: 400;
  font-size: 32px;
  line-height: 43px;
  color: #000000;
}

@media (min-width: 650px) {
  .swiper-elements .swiper-pagination-current {
    font-size: 42px;
    line-height: 56px;
  }
}

.swiper-arrows .swiper-button-next,
.swiper-arrows .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 50%;
  user-select: none;
}

@media (max-width: 650px) {
  .swiper-arrows .swiper-button-next,
  .swiper-arrows .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .swiper-arrows .swiper-button-next svg,
  .swiper-arrows .swiper-button-next img,
  .swiper-arrows .swiper-button-prev svg,
  .swiper-arrows .swiper-button-prev img {
    width: 5.5px;
    height: auto;
  }
}

.swiper-arrows .swiper-button-next:hover,
.swiper-arrows .swiper-button-prev:hover {
  background: #FFCE96;
  transition: 0.5s;
}

.swiper-arrows-light .swiper-button-next,
.swiper-arrows-light .swiper-button-prev {
  background: #B40001;
}

.swiper-arrows-light .swiper-button-next:hover,
.swiper-arrows-light .swiper-button-prev:hover {
  background: #B40001;
}

.swiper-arrows .swiper-button-next img {
  position: relative;
  left: 2px;
}

@media (max-width: 650px) {
  .swiper-arrows .swiper-button-next img {
    left: 0;
  }
}

.swiper-arrows .swiper-button-prev img {
  position: relative;
  left: -2px;
}

@media (max-width: 650px) {
  .swiper-arrows .swiper-button-prev img {
    left: 0;
  }
}

.swiper-pagination.swiper-pagination-bullets {
  width: 100%;
  position: absolute;
  bottom: -25px;
  right: 0;
  left: 0;
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 13px;
  height: 15px;
  background: url(../img/icons/bullet.svg) center center no-repeat;
  margin: 0 3px;
  opacity: 1;
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../img/icons/bullet-active.svg) center center no-repeat;
}

.slider-photos {
  width: 100%;
  max-width: 330px;
  position: relative;
  margin-top: 0;
}

@media (min-width: 500px) {
  .slider-photos {
    max-width: 450px;
  }
}

@media (min-width: 650px) {
  .slider-photos {
    max-width: 680px;
    margin-top: -36px;
  }
}

@media (min-width: 992px) {
  .slider-photos {
    width: calc(100% - 480px);
    max-width: 100%;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .slider-info-item {
    height: 355px !important;
    display: flex;
    flex-direction: column;
  }
}

.slider-info-item__title {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 8px;
}

@media (min-width: 650px) {
  .slider-info-item__title {
    font-size: 40px;
    margin-bottom: 12px;
  }
}

.slider-info-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  flex-grow: 2;
  margin-bottom: 33px;
  color: #858585;
}

@media (min-width: 650px) {
  .slider-info-item__text {
    /*min-height: 100px;*/
    margin-bottom: 0;
    font-size: 18px;
  }
}

.slider-photo {
  display: flex;
  justify-content: center;
  position: relative;
}

.slider-photo::before, .slider-photo::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
}

.slider-photo::before {
  width: 90%;
  height: 28.5%;
  top: -0.5%;
  background: url(../img/slider/slide-top-decor.svg) top center no-repeat;
  background-size: 100%;
  left: 3.5%;
}

.slider-photo::after {
  width: 37.2%;
  height: 19.6%;
  bottom: -9%;
  background: url(../img/slider/slide-bottom-decor.svg) top center no-repeat;
  background-size: 100%;
  right: 2%;
}

.slider-photo-wrap {
  width: 98%;
  height: 100%;
  -webkit-mask-box-image: url(../img/mask.svg);
  -webkit-mask-size: 100% 100%;
  display: block;
}

@-moz-document url-prefix() {
  /* firefox */
  .slider-photo-wrap {
    border-radius: 168px;
    overflow: hidden;
  }
  .slider-photo::before {
    display: none;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* IE10 IE11 */
  .slider-photo-wrap {
    border-radius: 168px;
    overflow: hidden;
  }
  .slider-photo::before {
    display: none;
  }
}

/* slider end */
.news {
  position: relative;
  margin-top: 75px;
  margin-bottom: 50px;
  /*background: $white;*/
  border-radius: 50px;
  /*padding: 15px;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 651px) {
  .news {
    margin-top: 85px;
    /*padding: 14px 30px;*/
    margin-bottom: 100px;
  }
}

@media (min-width: 651px) {
  .news .swiper-arrows {
    position: relative;
    width: 112px;
    display: flex;
    justify-content: space-between;
  }
}

.news .label-block {
  position: absolute;
  top: -22px;
  z-index: 2;
  width: 138px;
  left: 50%;
  margin-left: -69px;
}

@media (min-width: 651px) {
  .news .label-block {
    width: 165px;
    top: -40px;
    left: 40px;
    margin-left: 0;
  }
}

.news .swiper-arrows .swiper-button-next,
.news .swiper-arrows .swiper-button-prev {
  top: 124px;
  background: #B40001;
}

@media (min-width: 651px) {
  .news .swiper-arrows .swiper-button-next,
  .news .swiper-arrows .swiper-button-prev {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
  }
}

.label-block {
  font-family: 'Flow Ext';
  font-size: 18px;
  line-height: 24px;
  background: url(../img/label-bg.svg) top center no-repeat;
  background-size: 100%;
  text-align: center;
  color: #000000;
  padding: 11px 0;
}

@media (min-width: 651px) {
  .label-block {
    font-size: 20px;
    line-height: 27px;
    padding: 14px 0;
  }
}

.news-wrap {
  width: 100%;
  /*max-width: 925px;
    @media (max-width: 1442px) {
        max-width: 100%;
        width: calc(100% - 152px);
    }
    @media (max-width: 650px) {
        width: 100%;
    }*/
}

.news-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 9px;
}

@media (min-width: 651px) {
  .news-date {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.news-title {
  display: block;
  color: #B40001;
  margin-bottom: 3px;
  font-size: 18px;
  line-height: 24px;
}

@media (min-width: 651px) {
  .news-title {
    margin-bottom: 9px;
    font-size: 20px;
    line-height: 27px;
  }
}

.news-text {
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 25px;
}

@media (min-width: 651px) {
  .news-text {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.news-photo-wrap {
  width: 100%;
  height: 100%;
  -webkit-mask-box-image: url(../img/mask-sm.svg);
  -webkit-mask-size: 100% 100%;
  display: block;
}

.news-photo-wrap img {
  opacity: 1;
  /*border-radius: 60px;*/
}

.news-photo-wrap img:hover {
  opacity: 0.8;
  transition: 0.5s;
}

@-moz-document url-prefix() {
  /* firefox */
  .news-photo-wrap {
    border-radius: 60px;
    overflow: hidden;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* IE10 IE11 */
  .news-photo-wrap {
    border-radius: 60px;
    overflow: hidden;
  }
}

.news-item {
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 10px;
  padding: 10px 18px;
}

@media (min-width: 651px) {
  .news-item {
    justify-content: space-between;
  }
}

@media (min-width: 991px) {
  .news-item {
    /*height: 180px!important;*/
    border-radius: 50px;
    margin-bottom: 30px;
    padding: 14px 30px;
  }
}

.news-photo {
  width: 180px;
  margin-top: 0;
}

@media (min-width: 651px) {
  .news-photo {
    margin-top: 0;
  }
}

.news-info {
  width: 100%;
  margin-top: 10px;
}

@media (min-width: 651px) {
  .news-info {
    width: calc(100% - 216px);
    margin-top: 0;
  }
}

/* tabs start */
.tabs {
  position: relative;
  overflow: hidden;
}

.page-wrapper .tabs {
  overflow: visible;
}

.tabs .tab.active {
  position: relative;
  opacity: 1;
  z-index: 2;
  transition: 0.5s;
}

.tabs .tab {
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: -1;
}

.programms {
  padding-bottom: 50px;
  width: 100%;
  position: relative;
}

@media (min-width: 651px) {
  .programms {
    padding-bottom: 132px;
  }
}

.programms .title-block {
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

@media (min-width: 500px) {
  .programms .title-block {
    margin-bottom: 27px;
  }
}

.programms .title-block .tab {
  margin: 0 5px;
}

@media (max-width: 500px) {
  .programms .title-block .tab {
    margin: 0 8px;
  }
}

.programms .title-block > span {
  margin-right: 75px;
}

@media (max-width: 650px) {
  .programms .title-block > span {
    margin-right: 0;
    margin-bottom: 22px;
    width: 100%;
  }
}

.programms .container {
  position: relative;
  z-index: 1;
}

.programms__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  /*overflow: hidden;*/
  top: 0;
}

.programm-tabs {
  align-items: flex-start;
  margin-bottom: 32px;
}

@media (min-width: 651px) {
  .programm-tabs {
    margin-bottom: 48px;
  }
}

@media (max-width: 767px) {
  .programm-tabs {
    width: calc(100% + 30px);
    position: relative;
    left: -15px;
    overflow: hidden;
    padding-left: 15px;
  }
}

.programm-tabs .swiper-container {
  overflow: visible;
}

.programm-tabs a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  text-align: center;
  padding: 9px 0;
  margin: 0;
  width: 128px;
  height: 42px;
}

@media (min-width: 651px) {
  .programm-tabs a {
    width: 153px;
    height: 50px;
    padding: 12px 0;
  }
}

.programm-tabs a:first-child {
  margin-left: 0;
}

.programm-tabs a:last-child {
  margin-right: 0;
}

.programm-tabs a.active span {
  color: #FFFFFF;
  transition: 0.5s;
}

.programm-tabs a.active svg path {
  fill: #B40001;
  transition: 0.5s;
}

.programm-tabs a:hover span {
  color: #FFFFFF;
  transition: 0.5s;
}

.programm-tabs a:hover svg path {
  fill: #B40001;
  transition: 0.5s;
}

.programm-tabs a span {
  position: relative;
  z-index: 1;
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

@media (min-width: 651px) {
  .programm-tabs a span {
    font-size: 20px;
    line-height: 27px;
  }
}

.programm-tabs a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 128px;
  height: 42px;
}

@media (min-width: 651px) {
  .programm-tabs a svg {
    width: 153px;
    height: 50px;
  }
}

.programm-tabs a svg path {
  fill: #FFCE96;
}

.tabs .tab .tab-item {
  position: relative;
  margin-top: 12px;
}

@media (max-width: 650px) {
  .tabs .tab .tab-item {
    margin-top: 0;
    justify-content: space-between;
  }
}

.tabs .tab .time {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 29px;
  color: #FFFFFF;
  text-align: left;
  letter-spacing: 1.5px;
}

@media (min-width: 651px) {
  .tabs .tab .time {
    width: 174px;
    margin-top: 22px;
    font-size: 22px;
    line-height: 32px;
    text-align: left;
    padding: 0 23px;
  }
}

.tabs .tab .time-desc {
  display: none;
}

@media (min-width: 651px) {
  .tabs .tab .time-desc {
    display: block;
  }
}

@media (min-width: 651px) {
  .tabs .tab .time-mobile {
    display: none;
  }
}

.tabs .tab .block {
  width: calc(100% - 68px);
  padding-bottom: 26px;
  margin-top: 2px;
}

@media (min-width: 651px) {
  .tabs .tab .block {
    width: calc(100% - 168px);
    padding-bottom: 30px;
    margin-top: 20px;
  }
}

.tabs .tab .title {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

@media (min-width: 651px) {
  .tabs .tab .title {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 4px;
  }
}

.tabs .tab .title a {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

@media (min-width: 651px) {
  .tabs .tab .title a {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 4px;
  }
}

.tabs .tab .title a:hover {
  color: #FFBC67;
}

.tabs .tab .text,
.tabs .tab .text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #737EB3;
}

@media (min-width: 651px) {
  .tabs .tab .text,
  .tabs .tab .text p {
    font-size: 16px;
  }
}

.tabs .tab .text p:last-child {
  margin-bottom: 0;
}

.tabs .tab .planet {
  height: auto;
  width: 50px;
}

@media (min-width: 651px) {
  .tabs .tab .planet {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
  }
}

@media (min-width: 651px) {
  .tabs .tab .planet .planet-img {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }
}

.tabs .tab .planet .planet-line {
  display: none;
}

@media (min-width: 651px) {
  .tabs .tab .planet .planet-line {
    display: block;
    flex-grow: 2;
    width: 13px;
    background: url(../img/programms/line.svg) top center repeat-y;
  }
}

.tabs .tab .tab-item:last-child .planet .planet-line {
  background: none;
}

.tabs .tab .art-button {
  margin-top: 10px;
  height: 50px;
  padding: 11px 20px;
  font-size: 18px;
  width: auto;
}

.tabs .tab .tab-item.tab-item-sm {
  margin-top: 0;
}

.tab-item.tab-item-sm .planet-img {
  display: none;
}

.tab-item.tab-item-sm .time,
.tab-item.tab-item-sm .type {
  font-size: 16px;
  margin-top: 0;
}

.tab-item.tab-item-sm .time {
  padding: 0 36px;
  line-height: 150%;
}

@media (max-width: 650px) {
  .tab-item.tab-item-sm .time {
    padding: 0;
  }
}

.tab-item.tab-item-sm .block {
  margin-top: 0;
}

.tab-item-top {
  margin-bottom: 13px;
  display: block;
  margin-top: -2px;
}

@media (min-width: 651px) {
  .tab-item-top {
    margin-top: 0;
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}

.tab-item-top .type {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #D3EF92;
}

@media (min-width: 651px) {
  .tab-item-top .type {
    font-size: 20px;
  }
}

.tab-item-top .group {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #737EB3;
}

@media (min-width: 651px) {
  .tab-item-top .group {
    font-size: 16px;
    margin-left: 18px;
  }
}

.programms__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  transform: translate3d(0, calc(var(--scrollTop) / 3), 0);
  transition: transform 0.75s cubic-bezier(0.075, 0.5, 0, 1);
  user-select: none;
  pointer-events: none;
}

@media (min-width: 500px) {
  .programms__bg {
    transform: translate3d(0, calc(var(--scrollTop) / 2), 0);
  }
}

.programms__bg img {
  position: absolute;
}

.programms__bg .star-2 {
  width: 40px;
  top: 13%;
  right: 50%;
  margin-right: -704px;
  animation: move2 7s ease-in-out reverse infinite;
}

@media (max-width: 1620px) {
  .programms__bg .star-2 {
    margin-right: -644px;
  }
}

@media (max-width: 1442px) {
  .programms__bg .star-2 {
    margin-right: -544px;
  }
}

@media (max-width: 992px) {
  .programms__bg .star-2 {
    margin-right: -400px;
  }
}

@media (max-width: 651px) {
  .programms__bg .star-2 {
    margin-right: -280px;
    width: 30px;
  }
}

@media (max-width: 450px) {
  .programms__bg .star-2 {
    width: 20px;
    margin-right: -190px;
  }
}

.programms__bg .figure-1 {
  width: 122px;
  top: 25%;
  right: 50%;
  margin-right: -1000px;
  /*animation: move2 5s ease-in-out infinite;*/
}

@media (max-width: 1620px) {
  .programms__bg .figure-1 {
    margin-right: -820px;
  }
}

@media (max-width: 1442px) {
  .programms__bg .figure-1 {
    margin-right: -720px;
  }
}

@media (max-width: 992px) {
  .programms__bg .figure-1 {
    margin-right: -380px;
  }
}

@media (max-width: 651px) {
  .programms__bg .figure-1 {
    width: 90px;
    margin-right: -320px;
  }
}

@media (max-width: 450px) {
  .programms__bg .figure-1 {
    width: 70px;
    margin-right: -180px;
  }
}

.programms__bg .dots-6 {
  width: 194px;
  top: 1%;
  left: 50%;
  margin-left: -871px;
  animation: move2 5s ease-in-out infinite;
}

@media (max-width: 1620px) {
  .programms__bg .dots-6 {
    margin-left: -770px;
  }
}

@media (max-width: 1442px) {
  .programms__bg .dots-6 {
    margin-left: -270px;
  }
}

@media (max-width: 651px) {
  .programms__bg .dots-6 {
    width: 160px;
    margin-left: -250px;
  }
}

@media (max-width: 450px) {
  .programms__bg .dots-6 {
    width: 125px;
  }
}

.programms__bg .dots-7 {
  width: 196px;
  top: 4%;
  right: 50%;
  margin-right: -838px;
  animation: move2 5s ease-in-out infinite;
}

@media (max-width: 1620px) {
  .programms__bg .dots-7 {
    margin-right: -738px;
  }
}

@media (max-width: 1442px) {
  .programms__bg .dots-7 {
    margin-right: -438px;
  }
}

@media (max-width: 651px) {
  .programms__bg .dots-7 {
    width: 150px;
    margin-right: -360px;
  }
}

@media (max-width: 450px) {
  .programms__bg .dots-7 {
    width: 130px;
    margin-right: -260px;
  }
}

.programms__bg-stat {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: -80px;
  transform: translate3d(0, calc(var(--scrollTop) / 9), 0);
  transition: transform 0.75s cubic-bezier(0.075, 0.5, 0, 1);
  user-select: none;
  pointer-events: none;
}

@media (max-width: 991px) {
  .programms__bg-stat {
    display: none;
  }
}

.programms__bg-stat .star-4 {
  position: absolute;
  width: 168px;
  top: 12px;
  right: 50%;
  margin-right: -472px;
}

/* tabs end */
/* media */
.media {
  position: relative;
  margin-bottom: 25px;
}

@media (min-width: 651px) {
  .media {
    margin-bottom: 38px;
  }
}

.media .container {
  position: relative;
  z-index: 1;
}

.media-top {
  margin-bottom: 21px;
  align-items: center;
}

@media (min-width: 651px) {
  .media-top {
    margin-bottom: 41px;
  }
}

.media-top .title-line {
  display: block;
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #B40001;
  margin-left: 13px;
  margin-right: 11px;
}

@media (min-width: 651px) {
  .media-top .title-line {
    font-size: 22px;
    line-height: 29px;
    margin-left: 19px;
    margin-right: 15px;
  }
}

.media-top .title-link {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #B40001;
  text-decoration: none;
}

@media (min-width: 651px) {
  .media-top .title-link {
    font-size: 22px;
    line-height: 29px;
  }
}

.media-top .title-link svg path {
  fill: #B40001;
  transition: 0.5s;
}

.media-top .title-link:hover {
  color: #740001;
  transition: 0.5s;
}

.media-top .title-link:hover svg path {
  fill: #740001;
  transition: 0.5s;
}

@media (max-width: 650px) {
  .media-top .title-link svg {
    width: 21px;
    height: auto;
  }
}

.media-photos {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 822px;
}

@media (min-width: 992px) {
  .media-photos {
    width: calc(100% - 481px);
  }
}

.media-photo {
  border-radius: 26px;
  display: block;
  width: 31.3%;
  overflow: hidden;
  margin-bottom: 16px;
  max-width: 220px;
}

@media (min-width: 992px) {
  .media-photo {
    border-radius: 50px;
  }
}

.media-photo img {
  transform: scale(1);
  transition: 2s;
}

.media-photo:hover img {
  transform: scale(1.2);
}

.media-wrap {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .media-wrap {
    justify-content: space-between;
  }
}

.media-video {
  width: 100%;
  max-width: 461px;
  position: relative;
}

.media-video .video-block {
  height: 316px;
}

@media (min-width: 1200px) {
  .media-video .video-block {
    height: 365px;
  }
}

@media (min-width: 1443px) {
  .media-video .video-block {
    height: 448px;
  }
}

.video-block {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  margin: 0 auto;
  overflow: hidden;
}

.video-block__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play {
  width: 70px;
  height: 70px;
  background: #B40001;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -35px;
  margin-left: -35px;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.3s;
}

@media (min-width: 992px) {
  .play {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
  }
}

.play svg {
  position: relative;
  width: 19px;
  height: auto;
  left: 2px;
}

@media (min-width: 992px) {
  .play svg {
    width: 27px;
  }
}

.play svg path {
  fill: #FFFFFF;
}

.play:hover {
  background: #740001;
  transition: 0.3s;
}

.video-label {
  position: absolute;
  top: 15px;
  left: 16px;
  z-index: 2;
  width: 84px;
  height: 40px;
  text-align: center;
}

@media (min-width: 992px) {
  .video-label {
    width: 122px;
    height: 58px;
    top: 13px;
    left: 10px;
  }
}

.video-label span {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  position: relative;
  color: #FFFFFF;
  z-index: 1;
  padding: 10px 0;
  display: block;
}

@media (min-width: 992px) {
  .video-label span {
    font-size: 26px;
    padding: 13px 0;
  }
}

.video-label svg {
  width: 84px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 992px) {
  .video-label svg {
    width: 122px;
    height: 58px;
  }
}

.media__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  transform: translate3d(0, calc(var(--scrollTop) / 10), 0);
  transition: transform 0.75s cubic-bezier(0.075, 0.5, 0, 1);
  user-select: none;
  pointer-events: none;
}

@media (min-width: 500px) {
  .media__bg {
    /*transform: translate3d(0, calc(var(--scrollTop) / 2), 0);*/
    height: 1000px;
    top: -297px;
  }
}

.media__bg img {
  position: absolute;
}

.media__bg .star-5 {
  width: 58px;
  top: 36%;
  left: 50%;
  margin-left: -871px;
  animation: move2 5s ease-in-out infinite;
}

@media (max-width: 1620px) {
  .media__bg .star-5 {
    margin-left: -770px;
  }
}

@media (max-width: 1442px) {
  .media__bg .star-5 {
    margin-left: -270px;
  }
}

@media (max-width: 651px) {
  .media__bg .star-5 {
    margin-left: -250px;
  }
}

@media (max-width: 450px) {
  .media__bg .star-5 {
    width: 48px;
  }
}

.media__bg .boy {
  width: 627px;
  right: 50%;
  margin-right: -889px;
}

@media (max-width: 1620px) {
  .media__bg .boy {
    margin-right: -799px;
  }
}

@media (max-width: 1442px) {
  .media__bg .boy {
    margin-right: -712px;
    width: 502px;
  }
}

@media (max-width: 1199px) {
  .media__bg .boy {
    display: none;
  }
}

.media__bg .moon {
  width: 334px;
  top: 53%;
  left: 50%;
  margin-left: -962px;
}

@media (max-width: 1620px) {
  .media__bg .moon {
    margin-left: -862px;
  }
}

@media (max-width: 1442px) {
  .media__bg .moon {
    margin-left: -760px;
    width: 252px;
    top: 48%;
  }
}

@media (max-width: 992px) {
  .media__bg .moon {
    width: 180px;
    top: 35%;
    margin-left: -500px;
  }
}

@media (max-width: 651px) {
  .media__bg .moon {
    width: 160px;
    margin-left: -370px;
    top: 45%;
  }
}

@media (max-width: 450px) {
  .media__bg .moon {
    width: 100px;
    margin-left: -260px;
  }
}

/* media end */
.reading {
  margin-bottom: 51px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .reading {
    margin-bottom: 90px;
  }
}

@media (min-width: 992px) {
  .reading {
    margin-bottom: 130px;
  }
}

.reading .title-block {
  margin-bottom: 32px;
  position: relative;
  display: block;
  text-align: center;
}

@media (min-width: 768px) {
  .reading .title-block {
    margin-bottom: 48px;
    text-align: left;
    display: inline-block;
  }
}

.reading .title-block::before {
  content: '';
  width: 123px;
  height: 46px;
  display: block;
  position: absolute;
  background: url(../img/img-lines.svg) top center no-repeat;
  right: -157px;
  top: -3px;
}

@media (max-width: 991px) {
  .reading .title-block::before {
    display: none;
  }
}

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

@media (min-width: 1200px) {
  .reading-bottom a.reading-btn-link {
    position: absolute;
    top: 11px;
    right: 16px;
  }
}

.reading-wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
}

.reading-colomn {
  width: 100%;
  position: relative;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 55px 6px 24px 15px;
  margin-bottom: 42px;
}

@media (min-width: 768px) {
  .reading-colomn {
    width: 49%;
    margin-bottom: 0;
    padding: 80px 14px 34px 40px;
  }
}

.reading-colomn:last-child {
  margin-bottom: 0;
}

.reading-label {
  position: absolute;
  width: 205px;
  height: 50px;
  left: 40px;
  top: -12px;
  text-align: center;
  z-index: 2;
  padding: 12px 0;
}

@media (min-width: 992px) {
  .reading-label {
    width: 252px;
    height: 61px;
    padding: 15px 0;
  }
}

.reading-label span {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .reading-label span {
    font-size: 26px;
  }
}

.reading-label svg {
  width: 205px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 992px) {
  .reading-label svg {
    width: 252px;
    height: 61px;
  }
}

.not-front .reading-label {
  width: 152px;
  height: 50px;
  background: url(../img/label-bg.svg) top center no-repeat;
  background-size: 100%;
}

@media (min-width: 992px) {
  .not-front .reading-label {
    width: 170px;
    height: 56px;
    padding: 15px 0;
  }
}

.reading-wrap {
  /*height: 335px;*/
  height: 270px;
  position: relative;
}

@media (min-width: 768px) {
  .reading-wrap {
    height: 535px;
  }
}

.reading-wrap .swiper-container {
  width: 100%;
  height: 100%;
}

.not-front .reading-wrap {
  height: auto;
}

.reading-item {
  height: auto;
  padding-bottom: 21px;
  margin-bottom: 11px;
  position: relative;
  max-width: 96%;
}

@media (min-width: 768px) {
  .reading-item {
    padding-bottom: 29px;
    margin-bottom: 12px;
  }
}

.reading-item:before {
  content: '';
  width: 100%;
  height: 13px;
  background: url(../img/line-bottom.svg) top center repeat-x;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.reading-item:last-child::before {
  display: none;
}

.swiper-container-vertical > .swiper-scrollbar {
  width: 5px;
}

.swiper-scrollbar-drag {
  height: 8px;
  background: #0F1629;
}

.reading-item-icon {
  width: 60px;
  margin-right: 14px;
  position: relative;
  height: 50px;
}

@media (min-width: 768px) {
  .reading-item-icon {
    width: 85px;
    height: auto;
    margin-right: 18px;
  }
}

.reading-item-icon-check {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 767px) {
  .reading-item-icon-check {
    width: 25px;
  }
}

.reading-item-info {
  width: calc(100% - 74px);
}

@media (min-width: 768px) {
  .reading-item-info {
    width: calc(100% - 103px);
  }
}

.reading-item-title {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #B40001;
  margin-top: 4px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .reading-item-title {
    font-size: 20px;
    line-height: 27px;
    margin-top: 10px;
    margin-bottom: 4px;
  }
}

.reading-item-author {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #858585;
  margin-top: -2px;
}

@media (min-width: 768px) {
  .reading-item-author {
    margin-top: 0;
    font-size: 16px;
  }
}

.partners {
  position: relative;
  margin-bottom: 80px;
  z-index: 1;
}

@media (min-width: 768px) {
  .partners {
    margin-bottom: 120px;
  }
}

@media (min-width: 992px) {
  .partners {
    margin-bottom: 190px;
  }
}

.partners-top {
  margin-bottom: 22px;
  justify-content: space-between;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .partners-top {
    margin-bottom: 40px;
  }
}

.partners-top .title-block {
  position: relative;
}

.partners-top .title-block::before {
  content: '';
  width: 87.01px;
  height: 67.61px;
  position: absolute;
  display: block;
  background: url(../img/img-star.svg) top center no-repeat;
  bottom: 0;
  right: -115px;
}

@media (max-width: 991px) {
  .partners-top .title-block::before {
    display: none;
  }
}

.partners-top .swiper-arrows {
  position: relative;
  width: 70px;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 651px) {
  .partners-top .swiper-arrows {
    width: 112px;
  }
}

.partners-top .swiper-arrows .swiper-button-next,
.partners-top .swiper-arrows .swiper-button-prev {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
}

.partner-item {
  background: #FFFFFF;
  display: flex;
  border-radius: 50px;
  width: 275px;
  height: 146px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1440px) {
  .partner-item img {
    max-width: 90%;
    height: 78%;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .partner-item img {
    max-width: 83%;
    height: 87%;
  }
}

@media (max-width: 767px) {
  .partner-item {
    height: 76px;
    border-radius: 30px;
  }
}

.partners-wrap {
  position: relative;
}

.partners-wrap:before, .partners-wrap:after {
  content: '';
  display: block;
  position: absolute;
}

.partners-wrap::before {
  width: 50px;
  height: 38px;
  background: url(../img/round-corner-1.svg) top center no-repeat;
  top: -16px;
  left: -17px;
}

@media (max-width: 768px) {
  .partners-wrap::before {
    width: 23px;
    height: 17px;
    background-size: 100%;
    top: -7px;
    left: -7px;
  }
}

.partners-wrap:after {
  width: 45px;
  height: 45px;
  background: url(../img/round-corner-2.svg) top center no-repeat;
  bottom: -25px;
  right: -7px;
}

@media (max-width: 768px) {
  .partners-wrap:after {
    width: 24px;
    height: 24px;
    background-size: 100%;
    bottom: -11px;
    right: -4px;
  }
}

.partners-page {
  margin-top: 48px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .partners-page {
    margin-top: 30px;
  }
}

.partners-page .partners-wrap {
  flex-wrap: wrap;
}

.partners-page .partners-wrap:after, .partners-page .partners-wrap:before {
  display: none;
}

.partners-page .partners-wrap .partner-item {
  border-radius: 35px;
  width: 32%;
  margin: 0 0.5%;
}

@media (max-width: 650px) {
  .partners-page .partners-wrap .partner-item {
    width: 48%;
    margin: 0 1%;
    border-radius: 20px;
  }
}

.main-bottom {
  position: relative;
}

.main-bottom__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: -300px;
  left: 0;
  transform: translate3d(0, calc(var(--scrollTop) / 7), 0);
  transition: transform 0.75s cubic-bezier(0.075, 0.5, 0, 1);
  user-select: none;
  pointer-events: none;
}

.main-bottom__bg img {
  position: absolute;
}

.main-bottom__bg .moon-2 {
  width: 203px;
  top: 121px;
  right: 50%;
  margin-right: -854px;
}

@media (max-width: 1442px) {
  .main-bottom__bg .moon-2 {
    margin-right: -695px;
    width: 180px;
  }
}

@media (max-width: 992px) {
  .main-bottom__bg .moon-2 {
    margin-right: -400px;
    width: 160px;
    top: 50px;
  }
}

@media (max-width: 651px) {
  .main-bottom__bg .moon-2 {
    width: 120px;
    margin-right: -300px;
  }
}

@media (max-width: 450px) {
  .main-bottom__bg .moon-2 {
    width: 70px;
    margin-right: -180px;
    top: 24%;
  }
}

.main-bottom__bg .dots-2 {
  width: 304px;
  top: 300px;
  right: 50%;
  margin-right: -838px;
}

@media (max-width: 1620px) {
  .main-bottom__bg .dots-2 {
    margin-right: -738px;
  }
}

@media (max-width: 1442px) {
  .main-bottom__bg .dots-2 {
    margin-right: -638px;
  }
}

@media (max-width: 992px) {
  .main-bottom__bg .dots-2 {
    margin-right: -500px;
    width: 200px;
  }
}

@media (max-width: 651px) {
  .main-bottom__bg .dots-2 {
    margin-right: -300px;
  }
}

.main-bottom__bg .star-1 {
  width: 116px;
  top: 228px;
  left: 50%;
  margin-left: -868px;
}

@media (max-width: 1620px) {
  .main-bottom__bg .star-1 {
    margin-left: -768px;
  }
}

@media (max-width: 1442px) {
  .main-bottom__bg .star-1 {
    margin-left: -700px;
    width: 90px;
  }
}

@media (max-width: 992px) {
  .main-bottom__bg .star-1 {
    display: none;
  }
}

.main-bottom__bg .star-7 {
  width: 40px;
  top: 37%;
  right: 50%;
  margin-right: -704px;
  animation: move2 7s ease-in-out reverse infinite;
}

@media (max-width: 1620px) {
  .main-bottom__bg .star-7 {
    margin-right: -644px;
  }
}

@media (max-width: 1442px) {
  .main-bottom__bg .star-7 {
    margin-right: -544px;
  }
}

@media (max-width: 992px) {
  .main-bottom__bg .star-7 {
    margin-right: -400px;
  }
}

@media (max-width: 651px) {
  .main-bottom__bg .star-7 {
    margin-right: -280px;
    width: 30px;
  }
}

@media (max-width: 450px) {
  .main-bottom__bg .star-7 {
    width: 20px;
    margin-right: -190px;
  }
}

.main-bottom__bg .star-8 {
  width: 58px;
  top: 46%;
  left: 50%;
  margin-left: -890px;
}

@media (max-width: 1620px) {
  .main-bottom__bg .star-8 {
    margin-left: -790px;
  }
}

@media (max-width: 1442px) {
  .main-bottom__bg .star-8 {
    margin-left: -690px;
  }
}

@media (max-width: 992px) {
  .main-bottom__bg .star-8 {
    margin-left: -450px;
  }
}

@media (max-width: 651px) {
  .main-bottom__bg .star-8 {
    margin-left: -350px;
    width: 45px;
    top: 73%;
  }
}

@media (max-width: 450px) {
  .main-bottom__bg .star-8 {
    width: 35px;
    margin-left: -220px;
  }
}

.main-bottom__bg .dots-4 {
  width: 122px;
  top: 44%;
  right: 50%;
  margin-right: -919px;
  animation: move2 5s ease-in-out infinite;
}

@media (max-width: 1620px) {
  .main-bottom__bg .dots-4 {
    margin-right: -820px;
  }
}

@media (max-width: 1442px) {
  .main-bottom__bg .dots-4 {
    margin-right: -720px;
  }
}

@media (max-width: 992px) {
  .main-bottom__bg .dots-4 {
    margin-right: -380px;
  }
}

@media (max-width: 651px) {
  .main-bottom__bg .dots-4 {
    width: 90px;
    margin-right: -320px;
  }
}

@media (max-width: 450px) {
  .main-bottom__bg .dots-4 {
    width: 70px;
    margin-right: -180px;
  }
}

.main-bottom__bg .dots-5 {
  width: 196px;
  top: 65%;
  right: 50%;
  margin-right: -838px;
  animation: move3 7s ease-in-out infinite;
}

@media (max-width: 1620px) {
  .main-bottom__bg .dots-5 {
    margin-right: -738px;
  }
}

@media (max-width: 1442px) {
  .main-bottom__bg .dots-5 {
    margin-right: -438px;
  }
}

@media (max-width: 651px) {
  .main-bottom__bg .dots-5 {
    width: 150px;
    margin-right: -360px;
  }
}

@media (max-width: 450px) {
  .main-bottom__bg .dots-5 {
    width: 130px;
    margin-right: -260px;
  }
}

.main-bottom__bg .dots-1 {
  width: 87px;
  top: 31px;
  left: 50%;
  margin-left: -918px;
}

@media (max-width: 1620px) {
  .main-bottom__bg .dots-1 {
    margin-left: -818px;
  }
}

@media (max-width: 1442px) {
  .main-bottom__bg .dots-1 {
    margin-left: -618px;
    top: 5%;
  }
}

@media (max-width: 992px) {
  .main-bottom__bg .dots-1 {
    margin-left: -118px;
    top: 8%;
  }
}

@media (max-width: 450px) {
  .main-bottom__bg .dots-1 {
    width: 60px;
  }
}

.main-bottom__bg .dots-3 {
  width: 194px;
  top: 36%;
  left: 50%;
  margin-left: -871px;
  animation: move2 5s ease-in-out infinite;
}

@media (max-width: 1620px) {
  .main-bottom__bg .dots-3 {
    margin-left: -770px;
  }
}

@media (max-width: 1442px) {
  .main-bottom__bg .dots-3 {
    margin-left: -270px;
  }
}

@media (max-width: 651px) {
  .main-bottom__bg .dots-3 {
    width: 160px;
    margin-left: -250px;
    top: 64%;
  }
}

@media (max-width: 450px) {
  .main-bottom__bg .dots-3 {
    width: 125px;
  }
}

/* footer */
.footer {
  position: relative;
  padding-top: 36px;
  padding-bottom: 28px;
}

@media (min-width: 992px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 53px;
  }
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: -127px;
  /*top: -414px;*/
  left: 0;
  /*transform: translate3d(0, calc(var(--scrollTop) / 50), 0);
    transition: transform .75s cubic-bezier(.075, .5, 0, 1);*/
  user-select: none;
  pointer-events: none;
}

.footer__bg .img-footer {
  position: absolute;
  width: 228px;
  top: 0;
  right: 50%;
  margin-right: -600px;
}

@media (max-width: 1199px) {
  .footer__bg .img-footer {
    margin-right: -474px;
  }
}

@media (max-width: 991px) {
  .footer__bg .img-footer {
    display: none;
  }
}

.footer__bg-stat {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: -120px;
  left: 0;
  user-select: none;
  pointer-events: none;
}

.footer__bg-stat .footer-line {
  position: absolute;
  width: 1920px;
  max-width: 1920px;
  top: 72px;
  left: 50%;
  margin-left: -960px;
}

.footer-contacts {
  max-width: 160px;
  margin-left: 24px;
}

@media (max-width: 991px) {
  .footer-contacts {
    margin-left: 0;
    margin-top: 10px;
    max-width: 100%;
    text-align: center;
  }
  .footer-contacts a {
    display: block;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .footer-info {
    display: block;
  }
}

.footer-info .sotials {
  justify-content: center;
}

.footer-wrap {
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 34px;
  margin-bottom: 38px;
  border-bottom: 1px solid #31384B;
}

@media (min-width: 651px) {
  .footer-wrap {
    padding-bottom: 42px;
    margin-bottom: 48px;
  }
}

@media (min-width: 992px) {
  .footer-wrap {
    justify-content: space-between;
  }
}

.footer-logo {
  width: 88px;
}

@media (min-width: 651px) {
  .footer-logo {
    width: 115px;
  }
}

.footer-links {
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (min-width: 992px) {
  .footer-links {
    margin-top: 0;
    width: calc(100% - 160px);
  }
}

@media (min-width: 1200px) {
  .footer-links {
    width: calc(100% - 260px);
  }
}

.footer-links-block:nth-child(1),
.footer-links-block:nth-child(2) {
  width: 48%;
}

@media (min-width: 651px) {
  .footer-links-block:nth-child(1),
  .footer-links-block:nth-child(2) {
    width: 134px;
  }
}

.footer-links-block:nth-child(1) {
  margin-bottom: 0;
}

@media (min-width: 651px) {
  .footer-links-block:nth-child(1) {
    margin-bottom: 0;
  }
}

.footer-links-block:nth-child(3) {
  width: 48%;
}

@media (min-width: 651px) {
  .footer-links-block:nth-child(3) {
    width: 185px;
  }
}

.footer-links-block:nth-child(4) {
  max-width: 48%;
  width: 100%;
}

@media (min-width: 651px) {
  .footer-links-block:nth-child(4) {
    max-width: 230px;
  }
}

.footer-link {
  display: block;
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 10px;
}

@media (min-width: 651px) {
  .footer-link {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 13px;
  }
}

.footer-link:hover {
  color: #B40001;
}

.footer-block a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  display: block;
  color: #858585;
  margin-bottom: 6px;
}

@media (min-width: 651px) {
  .footer-block a {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.footer-block a:hover {
  color: #B40001;
  transition: 0.5s;
}

.footer-bottom {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .footer-bottom {
    justify-content: space-between;
  }
}

.footer-text {
  max-width: 100%;
  width: 100%;
  text-align: center;
  order: 1;
  margin: 30px 0;
}

@media (min-width: 992px) {
  .footer-text {
    margin: 0;
    max-width: 210px;
    width: 100%;
    text-align: left;
    order: 0;
  }
}

.footer-text p {
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #858585;
}

.footer-text a {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-decoration: underline;
  color: #858585;
}

.footer-text a:hover {
  text-decoration: none;
  transition: 0.5s;
}

.footer-dev {
  max-width: 100%;
  width: 100%;
  text-align: center;
  order: 2;
}

@media (min-width: 992px) {
  .footer-dev {
    max-width: 210px;
    width: 100%;
    text-align: right;
  }
}

.footer-dev a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

/* footer end */
/* pages */
.not-front .footer__bg {
  top: -122px;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 992px) {
  .not-front .topper {
    height: auto;
    min-height: 500px;
  }
}

.not-front .topper-images {
  max-height: 1044px;
}

ul.breadcrumb {
  margin-top: 30px;
  display: flex;
  margin-bottom: 22px;
  padding: 0;
  font-size: 16px;
  color: #858585;
  width: 100%;
  overflow: auto;
}

@media (max-width: 991px) {
  ul.breadcrumb {
    max-width: 700px;
    margin: 0 auto 20px;
  }
}

@media (max-width: 600px) {
  ul.breadcrumb {
    font-size: 15px;
    margin-bottom: 5px;
    padding-bottom: 10px;
  }
}

ul.breadcrumb li {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 600px) {
  ul.breadcrumb li {
    white-space: nowrap;
  }
}

ul.breadcrumb li.active {
  color: #858585;
}

@media (max-width: 991px) {
  ul.breadcrumb li.active {
    display: none;
  }
}

ul.breadcrumb li .a:hover {
  color: #B40001;
}

ul.breadcrumb span {
  padding: 0 10px;
}

@media (max-width: 600px) {
  ul.breadcrumb span {
    padding: 0 7px;
  }
}

.collective {
  margin-bottom: 180px;
}

@media (max-width: 600px) {
  .collective {
    margin-bottom: 130px;
  }
}

.collective .title-block {
  margin-bottom: 38px;
  font-size: 26px;
}

@media (min-width: 992px) {
  .collective .title-block {
    font-size: 40px;
    line-height: 120%;
  }
}

@media (max-width: 991px) {
  .collective .title-block {
    max-width: 700px;
    margin: 0 auto 31px;
  }
}

.page-cols {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .page-cols {
    justify-content: center;
  }
}

.page-main-col {
  width: 64.2%;
}

@media (max-width: 1442px) {
  .page-main-col {
    width: calc(100% - 390px);
  }
}

@media (max-width: 991px) {
  .page-main-col {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 650px) {
  .page-main-col {
    max-width: 450px;
  }
}

@media (max-width: 500px) {
  .page-main-col {
    max-width: 360px;
  }
}

.page-media-col {
  width: 316px;
  position: relative;
}

.page-media-col:before {
  content: '';
  width: 13px;
  height: 100%;
  background: url(../img/programms/line.svg) top center repeat-y;
  display: block;
  position: absolute;
  left: -48px;
  top: 0;
}

@media (max-width: 991px) {
  .page-media-col {
    margin-top: 50px;
  }
  .page-media-col::before {
    display: none;
  }
}

.page-main-top {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .page-main-top {
    justify-content: center;
    margin-bottom: 30px;
  }
}

.page-main-photo {
  max-width: 316px;
  height: auto;
}

.page-main-photo a {
  display: block;
}

.page-main-photo a img {
  border-radius: 50px;
}

.collective-info {
  width: calc(100% - 362px);
}

@media (max-width: 1199px) {
  .collective-info {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .collective-info {
    margin-top: 26px;
  }
}

.collective-info h1 {
  font-size: 26px;
  line-height: 35px;
  margin-bottom: 12px;
  color: #B40001;
}

@media (max-width: 600px) {
  .collective-info h1 {
    font-size: 22px;
    line-height: 29px;
    margin-bottom: 9px;
  }
}

.collective-info .events-wrap {
  margin-top: 30px;
}

.collective-info .events-wrap .show-title {
  width: 100%;
  color: #B40001;
}

.collective-info .events-wrap .events-item {
  padding-bottom: 40px;
}

.collective-info-text p,
.text-block p,
.blocks-wrap .item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #000000;
}

@media (max-width: 1442px) {
  .collective-info-text p,
  .text-block p,
  .blocks-wrap .item p {
    font-size: 16px;
  }
}

.collective-info-text p strong,
.text-block p strong,
.blocks-wrap .item p strong {
  font-weight: 700;
}

.collective-info-text ol,
.collective-info-text ul,
.show-content ol,
.show-content ul,
.blocks-wrap .item ol,
.blocks-wrap .item ul {
  margin: 0;
  padding: 0;
}

.collective-info-text li,
.show-content li,
.blocks-wrap .item li {
  list-style: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #000000;
}

@media (max-width: 1442px) {
  .collective-info-text li,
  .show-content li,
  .blocks-wrap .item li {
    font-size: 16px;
  }
}

.collective-info-text ol,
.show-content ol,
.blocks-wrap .item ol {
  list-style-type: none;
  counter-reset: mylist;
}

.collective-info-text ol li,
.show-content ol li,
.blocks-wrap .item ol li {
  counter-increment: mylist;
  position: relative;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.collective-info-text ol li::before,
.show-content ol li::before,
.blocks-wrap .item ol li::before {
  font-family: 'Flow Ext';
  visibility: visible;
  font-size: 100%;
  position: absolute;
  left: 0;
  margin-right: 0.8rem;
  font-weight: bold;
  content: counter(mylist) ". ";
  color: #FFF;
  line-height: 180%;
}

.collective-info-text ol.column,
.show-content ol.column,
.blocks-wrap .item ol.column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 524px;
  margin: 25px 0;
}

@media (max-width: 991px) {
  .collective-info-text ol.column,
  .show-content ol.column,
  .blocks-wrap .item ol.column {
    height: auto;
    flex-direction: row;
    margin: 15px 0;
  }
}

.collective-info-text ol.column li,
.show-content ol.column li,
.blocks-wrap .item ol.column li {
  width: 30%;
}

@media (max-width: 991px) {
  .collective-info-text ol.column li,
  .show-content ol.column li,
  .blocks-wrap .item ol.column li {
    width: 100%;
  }
}

.collective-info-text ul li,
.show-content ul li,
.blocks-wrap .item ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.collective-info-text ul li::before,
.show-content ul li::before,
.blocks-wrap .item ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  background: url(../img/icons/check.svg) top center no-repeat;
  background-size: 100%;
}

.blocks-wrap blockquote {
  background: #FFFFFF;
  border-radius: 50px;
  padding: 22px 24px;
  margin: 10px 0;
}

@media (min-width: 768px) {
  .blocks-wrap blockquote {
    padding: 33px 37px;
    margin: 15px 0;
  }
}

.show-title {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .show-title {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 12px;
  }
}

.show-title span {
  color: #B40001;
}

.events-wrap {
  margin-bottom: 41px;
}

@media (max-width: 600px) {
  .events-wrap {
    margin-bottom: 36px;
  }
}

.events-item {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 26px 35px;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .events-item {
    padding: 21px 15px;
    border-radius: 30px;
  }
}

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

.events-item__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #737EB3;
  margin-bottom: 3px;
}

@media (max-width: 600px) {
  .events-item__label {
    font-size: 12px;
    margin-bottom: 0;
    width: 80px;
    margin-right: 12px;
  }
}

.events-item__value1 {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .events-item__value1 {
    font-size: 14px;
    line-height: 120%;
  }
}

.events-item__value2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #D3EF92;
}

@media (max-width: 600px) {
  .events-item__value2 {
    font-size: 14px;
  }
}

.events-item .art-button {
  width: 170px;
  height: 60px;
  font-size: 18px;
  padding: 16px 28px;
  margin-top: 7px;
}

@media (max-width: 600px) {
  .events-item .art-button {
    margin-top: 23px;
    width: 100%;
    max-width: 280px;
    height: 55px;
    padding: 14px 28px;
  }
}

.events-item__btn {
  width: 170px;
}

@media (max-width: 600px) {
  .events-item__btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .events-item__place, .events-item__date, .events-item__direction {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
  }
}

.events-item__direction {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .events-item__block {
    width: calc(100% - 92px);
  }
}

.show-info-blocks {
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.show-info-block {
  max-width: 236px;
  margin-right: 50px;
  align-items: center;
}

@media (max-width: 600px) {
  .show-info-block {
    margin-right: 0;
    margin-bottom: 14px;
    max-width: 100%;
    width: 100%;
  }
}

.show-info-block:last-child {
  margin-right: 0;
}

.show-info-block__info-bl {
  width: calc(100% - 60px);
  margin-left: 10px;
}

.show-info-block__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

@media (max-width: 600px) {
  .show-info-block__label {
    font-size: 12px;
  }
}

.show-info-block__value {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  margin-top: -3px;
}

@media (max-width: 600px) {
  .show-info-block__value {
    font-size: 14px;
    margin-top: 0;
  }
}

.show-content {
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .show-content {
    margin-bottom: 28px;
  }
}

.show-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .show-content p {
    margin-bottom: 28px;
  }
}

.show-content p:last-child {
  font-size: 16px;
}

.show-content p strong {
  color: #FFFFFF;
}

.show-content h2,
.show-content h3,
.show-content h4,
.show-content h5,
.show-content h6 {
  margin-bottom: 20px;
}

.p-group-item {
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .p-group-item {
    flex-wrap: wrap;
    margin-bottom: 11px;
  }
}

.p-group-item__label {
  width: 100%;
  margin-right: 0;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  color: #B40001;
}

@media (max-width: 600px) {
  .p-group-item__label {
    width: 100%;
    font-size: 12px;
    margin-right: 0;
  }
}

.p-group-item__value {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
}

@media (max-width: 600px) {
  .p-group-item__value {
    font-size: 14px;
    width: 100%;
  }
}

.show-gallery,
.show-gallery-2 {
  position: relative;
  height: 350px;
  margin-bottom: 80px;
}

.show-gallery .swiper-container,
.show-gallery-2 .swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}

.show-gallery .swiper-container.swiper-container-initialized,
.show-gallery-2 .swiper-container.swiper-container-initialized {
  opacity: 1;
}

.show-gallery .media-photo,
.show-gallery-2 .media-photo {
  height: 152px;
}

.show-gallery .swiper-pagination.swiper-pagination-bullets,
.show-gallery-2 .swiper-pagination.swiper-pagination-bullets {
  bottom: -5px;
}

.show-gallery .media-photo,
.show-gallery-2 .media-photo {
  margin-bottom: 12px;
}

@media (min-width: 1200px) {
  .page-media-col .media-video .video-block {
    height: 312px;
  }
}

@media (min-width: 1443px) {
  .page-media-col .media-video .video-block {
    height: 310px;
  }
}

.page-media-col .swiper-arrows {
  display: none;
}

@media (min-width: 992px) {
  .page-media-col .video-label svg {
    width: 108px;
    height: 51px;
  }
}

@media (min-width: 992px) {
  .page-media-col .video-label {
    width: 108px;
    height: 51px;
  }
}

@media (min-width: 992px) {
  .page-media-col .video-label span {
    font-size: 22px;
  }
}

@media (min-width: 992px) {
  .page-media-col .play {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
  }
}

@media (min-width: 992px) {
  .page-media-col .play svg {
    width: 20px;
  }
}

.show-content .art-button {
  width: auto;
}

.collect-item {
  padding-bottom: 29px;
  position: relative;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .collect-item {
    padding-bottom: 18px;
    flex-wrap: wrap;
  }
}

.collect-item .image {
  width: 316px;
  border-radius: 25px;
  max-height: 360px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .collect-item .image {
    width: 120px;
  }
}

.collect-item .image img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.collect-item .image a {
  margin-bottom: 0;
  line-height: 1;
  font-size: 0;
}

.collect-item .block {
  width: calc(100% - 340px);
  margin-left: 30px;
}

@media (max-width: 600px) {
  .collect-item .block {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .collect-item .text {
    font-size: 14px;
  }
}

.collect-item a {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 29px;
  color: #B40001;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .collect-item a {
    font-size: 20px;
    line-height: 130%;
  }
}

@media (max-width: 600px) {
  .collect-item a {
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 5px;
  }
}

.collect-item a:hover {
  color: #740001;
}

.collective-info-text {
  height: 260px;
  position: relative;
}

.collective-info-text .swiper-container {
  width: 100%;
  height: 100%;
}

.collective-info-text .swiper-slide {
  height: auto;
  padding-right: 22px;
}

/*.page-one-col .collective-info-text {
    height: auto;
}*/
.swiper-container-vertical > .swiper-scrollbar {
  width: 8px;
  background: #FFCE96;
}

.swiper-scrollbar-drag {
  width: 6px;
  left: 1px;
  background: #B40001;
}

.collectives-list {
  /*background: $white;
    border-radius: 50px;
    padding: 50px 35px 26px;*/
  margin-bottom: 200px;
}

@media (max-width: 991px) {
  .collectives-list {
    max-width: 700px;
    margin: 0 auto;
    /*padding: 25px 15px 20px;
        border-radius: 30px;
        margin-bottom: 100px*/
    margin-bottom: 0;
  }
}

.reading-item-award {
  position: relative;
  width: 45px;
  margin: 0 5px;
}

@media (max-width: 767px) {
  .reading-item-award {
    width: 35px;
    height: auto;
  }
}

.reading-item-award svg {
  cursor: pointer;
}

@media (max-width: 767px) {
  .reading-item-award svg {
    width: 35px;
    height: 35px;
  }
}

.reading-item-award .award-text {
  position: absolute;
  width: 200px;
  top: 62px;
  left: 50%;
  margin-left: -100px;
  background: #FFFFFF;
  border-radius: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  z-index: 2;
  padding: 16px 14px;
  opacity: 0;
}

@media (max-width: 767px) {
  .reading-item-award .award-text {
    top: 50px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .reading-item-award .award-text {
    left: auto;
    margin-left: 0;
    right: 0;
  }
}

.reading-item-award .award-text:before {
  content: '';
  display: block;
  position: absolute;
  top: -13px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #FFFFFF;
}

@media (max-width: 360px) {
  .reading-item-award .award-text:before {
    left: auto;
    margin-left: 0;
    right: 10px;
  }
}

.reading-item-award svg:hover + .award-text {
  opacity: 1;
  transition: 0.5s;
}

.reading-item-award svg:hover path {
  fill: #FFBC67;
  transition: 0.5s;
}

.reading-page-wrap {
  position: relative;
  padding-top: 29px;
}

.reading-page-wrap:before, .reading-page-wrap:after {
  content: '';
  width: 100%;
  height: 13px;
  background: url(../img/line-bottom.svg) top center repeat-x;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.reading-page-wrap:after {
  bottom: 0;
  top: auto;
}

.reading-page-wrap .reading-item {
  align-items: center;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 991px) {
  .reading-page-wrap .reading-item {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .reading-page-wrap .reading-item {
    padding-bottom: 30px;
    align-items: flex-start;
  }
}

.reading-page-wrap .reading-item-info {
  width: calc(100% - 353px);
}

@media (max-width: 991px) {
  .reading-page-wrap .reading-item-info {
    width: calc(100% - 103px);
    margin-bottom: 20px;
  }
}

.reading-page-wrap .reading-item-awards {
  width: 136px;
}

@media (max-width: 991px) {
  .reading-page-wrap .reading-item-awards {
    width: auto;
    order: 3;
  }
}

.reading-page-wrap .reading-item-files {
  width: 112px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .reading-page-wrap .reading-item-files {
    order: 2;
    margin-left: 103px;
    margin-right: 15px;
    width: auto;
  }
}

@media (max-width: 767px) {
  .reading-page-wrap .reading-item-files {
    margin-left: 66px;
  }
}

.reading-item-file {
  display: block;
  width: 45px;
  height: 45px;
  margin: 0 5px;
  position: relative;
}

.reading-item-file:nth-child(n + 3) {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .reading-item-file:nth-child(n + 3) {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .reading-item-file {
    width: 35px;
    height: 35px;
  }
  .reading-item-file svg {
    width: 35px;
    height: 35px;
  }
}

.reading-item-file span {
  width: 21px;
  height: 21px;
  display: block;
  background: #FFCE96;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  text-align: center;
  position: absolute;
  bottom: -6px;
  right: -4px;
}

@media (max-width: 767px) {
  .reading-item-file span {
    width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 15px;
  }
}

.reading-item-file svg path {
  fill: #B40001;
}

.reading-item-file:hover path {
  fill: #740001;
  transition: 0.5s;
}

.page-wrapper h1.title-block {
  margin-bottom: 0;
}

.page-wrapper .subtitle {
  margin-bottom: 22px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .page-wrapper .subtitle {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.template-7 .page-wrapper,
.template-8 .page-wrapper,
.template-5 .page-wrapper,
.template-23 .page-wrapper,
.template-13 .page-wrapper,
.template-14 .page-wrapper,
.template-22 .page-wrapper,
.template-24 .page-wrapper {
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .template-7 .page-wrapper,
  .template-8 .page-wrapper,
  .template-5 .page-wrapper,
  .template-23 .page-wrapper,
  .template-13 .page-wrapper,
  .template-14 .page-wrapper,
  .template-22 .page-wrapper,
  .template-24 .page-wrapper {
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  .template-7 .page-wrapper,
  .template-8 .page-wrapper,
  .template-5 .page-wrapper,
  .template-23 .page-wrapper,
  .template-13 .page-wrapper,
  .template-14 .page-wrapper,
  .template-22 .page-wrapper,
  .template-24 .page-wrapper {
    padding-bottom: 20px;
  }
}

.template-5 .subtitle,
.template-23 .subtitle {
  text-align: center;
}

.page-18 .programm-tabs a {
  width: 180px;
}

.page-18 .programm-tabs a svg {
  width: 180px;
  height: auto;
}

.reading-btn {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .reading-btn {
    margin-top: 35px;
  }
}

.date-news-top {
  text-align: center;
  padding-bottom: 30px;
  font-size: 20px;
  color: #000000;
  max-width: 90%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .date-news-top {
    padding-bottom: 20px;
    font-size: 16px;
  }
}

.date-news-top span {
  font-size: 16px;
  color: #B40001;
}

@media (max-width: 991px) {
  .date-news-top span {
    font-size: 14px;
  }
}

.blocks-wrap {
  position: relative;
  padding-bottom: 29px;
  padding-top: 30px;
  border-top: 1px solid #000000;
}

.blocks-wrap .item {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .blocks-wrap .item {
    margin-bottom: 18px;
  }
}

.blocks-wrap .item h3 {
  color: #B40001;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .blocks-wrap .item h3 {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .blocks-wrap .item h3 {
    font-size: 26px;
    margin-bottom: 0;
  }
}

.blocks-wrap .video-block {
  max-width: 760px;
}

.template-12 .blocks-wrap {
  padding-top: 0;
  padding-bottom: 200px;
}

@media (max-width: 991px) {
  .template-12 .blocks-wrap {
    padding-bottom: 100px;
  }
}

.template-12 .blocks-wrap::before, .template-12 .blocks-wrap::after {
  display: none;
}

.content-wrap .image img {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 30px;
}

.content-wrap .big-image img {
  max-width: 70%;
  display: block;
}

@media (max-width: 600px) {
  .content-wrap .big-image img {
    max-width: 100%;
  }
}

.content-wrap .two-column {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.content-wrap .two-column .image {
  width: 45%;
}

@media (max-width: 991px) {
  .content-wrap .two-column .image {
    width: 100%;
    margin-bottom: 20px;
  }
}

.content-wrap .two-column .text-block {
  width: 50%;
}

@media (max-width: 991px) {
  .content-wrap .two-column .text-block {
    width: 100%;
  }
}

.content-wrap .media-photos {
  width: 100%;
  max-width: 100%;
  position: relative;
  justify-content: flex-start;
}

.content-wrap .media-photos::before, .content-wrap .media-photos::after {
  display: none;
}

.content-wrap .media-photos .media-photo {
  margin: 0 6px 16px;
}

@media (max-width: 600px) {
  .content-wrap .media-photos .media-photo {
    width: 48%;
    margin: 0 1% 16px;
  }
}

.audio-file.d-flex {
  justify-content: flex-start;
  align-items: center;
  max-width: 620px;
  margin: 24px auto 50px;
}

.audio-name {
  font-size: 20px;
  max-width: 300px;
  margin-right: 20px;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .audio-name {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  .audio-file.d-flex {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.blocks-wrap .news-item {
  height: auto;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  background: #FFFFFF;
  border-radius: 50px;
}

@media (min-width: 768px) {
  .blocks-wrap .news-item {
    margin-bottom: 30px;
    padding: 14px 30px;
  }
}

.page-pagination {
  margin: 30px 0;
}

.page-pagination ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.page-pagination ul li.page-item {
  list-style: none;
  color: #000000;
  margin: 0 7px;
  font-size: 16px;
}

.page-pagination ul li.page-item a {
  color: #B40001;
}

.page-pagination ul li.page-item a:hover {
  color: #740001;
  transition: 0.5s;
}

.page-pagination ul li.disabled a {
  color: #858585;
  pointer-events: none;
}

@media (max-width: 767px) {
  .blocks-wrap.folder-news {
    padding-top: 16px;
    padding-bottom: 0;
  }
}

.delim {
  margin-top: 100px;
}

@media (max-width: 991px) {
  .delim {
    margin-top: 50px;
  }
}

.contacts-wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .contacts-wrap {
    justify-content: center;
  }
}

.contacts-left {
  width: 100%;
  max-width: 398px;
}

.contacts-right {
  width: calc(100% - 500px);
}

@media (max-width: 991px) {
  .contacts-right {
    width: 100%;
  }
}

#map-main {
  width: 100%;
  height: 480px;
  border-radius: 60px;
  overflow: hidden;
}

@media (max-width: 991px) {
  #map-main {
    height: 240px;
  }
}

@media (max-width: 500px) {
  #map-main {
    height: 200px;
  }
}

.map-main {
  border-radius: 60px;
  overflow: hidden;
  position: relative;
  margin-bottom: 66px;
}

@media (max-width: 500px) {
  .map-main {
    margin-bottom: 15px;
  }
}

.map-main .loader {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #000000;
  transition: opacity .7s ease;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.map-main .loader:after,
.map-main .loader:before {
  box-sizing: border-box;
}

.map-main .loader.is-active {
  top: 0;
  opacity: 1;
  z-index: 15;
}

.map-main .loader-default:after {
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  content: '';
  animation: rotation 1s linear infinite;
  border: solid 8px #ffffff;
  border-left-color: transparent;
  border-radius: 50%;
}

@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}

@keyframes blink {
  from {
    opacity: .5;
  }
  to {
    opacity: 1;
  }
}

.contacts-items {
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 767px) {
  .contacts-items {
    max-width: 288px;
    margin: 0 auto 20px;
  }
}

.contacts-item {
  max-width: 174px;
  text-align: center;
  margin: 0 5px 46px;
  width: 100%;
}

@media (max-width: 767px) {
  .contacts-item {
    max-width: 120px;
    margin-bottom: 20px;
  }
}

.contacts-item:last-child {
  max-width: 100%;
}

.contacts-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  text-align: center;
  color: #000000;
  font-family: 'Flow Ext';
}

@media (max-width: 767px) {
  .contacts-item p {
    font-size: 14px;
    line-height: 130%;
  }
}

.contacts-item:nth-child(2) img, .contacts-item:nth-child(3) img, .contacts-item:nth-child(4) img {
  position: relative;
  left: 5px;
}

@media (max-width: 767px) {
  .contacts-item:nth-child(2) img, .contacts-item:nth-child(3) img, .contacts-item:nth-child(4) img {
    left: 2px;
  }
}

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

@media (max-width: 767px) {
  .contacts-item img {
    width: 30px;
    height: 30px;
  }
}

.contacts-item-icon {
  width: 110px;
  height: 95px;
  background: url(../img/contacts/icon-bg.svg) top center no-repeat;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
}

@media (max-width: 767px) {
  .contacts-item-icon {
    width: 80px;
    height: 68px;
    margin: 0 auto 10px;
  }
}

@media (max-width: 767px) {
  .page-39 .blocks-wrap {
    padding-top: 20px;
  }
}

.speakers-list {
  margin-bottom: 120px;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .speakers-list {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .speakers-list {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 100px;
  }
}

@media (max-width: 600px) {
  .speakers-list {
    justify-content: space-between;
  }
}

.speakers-list:after, .speakers-list:before {
  content: '';
  width: 260px;
  height: 0;
  order: 1;
}

@media (max-width: 1442px) {
  .speakers-list:after, .speakers-list:before {
    width: 246px;
  }
}

@media (max-width: 1199px) {
  .speakers-list:after, .speakers-list:before {
    width: 260px;
  }
}

.speaker-item {
  background: #FFFFFF;
  border-radius: 50px;
  width: 260px;
  display: block;
  margin-bottom: 30px;
}

@media (max-width: 1442px) {
  .speaker-item {
    width: 246px;
  }
}

@media (max-width: 1199px) {
  .speaker-item {
    width: 260px;
    margin: 0 15px 25px 15px;
  }
}

@media (max-width: 600px) {
  .speaker-item {
    width: 49%;
    margin: 10px 0;
    border-radius: 15px;
  }
}

.speaker-item img {
  border-radius: 50px 50px 0 0;
  width: 100%;
}

@media (max-width: 600px) {
  .speaker-item img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.speaker-item .name {
  display: block;
  padding: 0 20px;
  color: #FFFFFF;
  margin: 10px 0;
  font-family: 'Flow Ext';
  font-size: 20px;
}

@media (max-width: 991px) {
  .speaker-item .name {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .speaker-item .name {
    padding: 0 6px;
    margin: 6px 0;
  }
}

.speaker-item .position {
  padding: 0 20px;
  display: block;
  font-size: 14px;
  margin-bottom: 30px;
  color: #737EB3;
}

@media (max-width: 600px) {
  .speaker-item .position {
    padding: 0 6px;
    height: 120px;
    text-overflow: ellipsis;
    overflow: auto;
  }
}

.speaker-item:hover img {
  opacity: 0.8;
  transition: 0.5s;
}

.speaker-item:hover .name {
  color: #D3EF92;
  transition: 0.5s;
}

.speaker-item-news {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.speaker-item-news img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0.5;
}

.speaker-item-news .name {
  position: relative;
  font-size: 22px;
}

.speaker-item-news .position {
  position: relative;
  font-size: 16px;
}

.speaker-item-news:hover img {
  opacity: 0.5;
}

.page-one-col {
  margin-bottom: 200px;
}

@media (max-width: 991px) {
  .page-one-col {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 100px;
  }
}

.page-one-col .page-main-col,
.page-one-col .page-media-col {
  width: 100%;
}

.speakers .media-top {
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .speakers .media-top {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .speakers .media-top .title-line {
    display: none;
  }
}

@media (max-width: 767px) {
  .speakers .media-top .title-block {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .speakers .speakers-list {
    margin-bottom: 80px;
  }
}

.template-5 .page-wrapper h1.title-block,
.template-23 .page-wrapper h1.title-block {
  text-align: center;
}

.template-5 ul.breadcrumb,
.template-23 ul.breadcrumb {
  justify-content: center;
}

.count-wrap {
  width: 391px;
  height: 88px;
  margin-bottom: 56px;
  background: url(../img/wrap-line.svg) top center no-repeat;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 35px;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .count-wrap {
    width: 280px;
    height: 64px;
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 26px;
  }
}

.count-wrap span {
  color: #D3EF92;
  margin-left: 12px;
}

.count-wrap img {
  margin-right: 15px;
  position: relative;
  top: -5px;
}

@media (max-width: 767px) {
  .count-wrap img {
    margin-right: 11px;
    position: relative;
    top: -4px;
    width: 35px;
    height: auto;
  }
}

/* pages end */
/* form */
.form-wrapper {
  position: relative;
  background: #FFFFFF;
  border-radius: 50px;
  max-width: 870px;
  padding: 70px;
}

@media (max-width: 767px) {
  .form-wrapper {
    padding: 40px 20px;
  }
}

.form-mark {
  width: 105px;
  height: 87px;
  position: absolute;
  right: 77px;
  top: -45px;
}

@media (max-width: 767px) {
  .form-mark {
    width: 86px;
    height: 59px;
    right: 42px;
    top: -32px;
  }
}

.form-mark svg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.form-mark span {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  color: #11152A;
  display: block;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 23px 0;
}

@media (max-width: 767px) {
  .form-mark span {
    padding: 20px 0 0;
    font-size: 32px;
  }
}

.form-group.hidden {
  display: none;
}

.form-group {
  position: relative;
  margin-bottom: 16px;
}

.form-group input {
  background: transparent;
  border: 0;
  height: 48px;
  width: 100%;
  padding: 10px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #737EB3;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .form-group input {
    font-size: 16px;
  }
}

.form-group.has_value input {
  border-bottom: 1px solid #FFFFFF;
}

.form-group input.error {
  border-bottom: 1px solid #c93737;
}

.form-group label {
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 6px;
  display: block;
}

@media (max-width: 767px) {
  .form-group label {
    font-size: 16px;
  }
}

.form-group label span {
  color: #737EB3;
}

.ajax_form .error {
  color: #c93737;
}

.form-group textarea {
  background: transparent;
  height: 150px;
  width: 100%;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #737EB3;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .form-group textarea {
    font-size: 16px;
  }
}

::placeholder {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 140%;
}

@media (max-width: 767px) {
  ::placeholder {
    font-size: 16px;
  }
}

.two-cols {
  justify-content: space-between;
  flex-wrap: wrap;
}

.two-cols > div {
  width: 48%;
}

@media (max-width: 991px) {
  .two-cols > div {
    width: 100%;
  }
}

.two-cols .error_files {
  width: 100%;
}

.two-cols .error_files .error {
  display: block;
  margin-top: 14px;
}

.files-wrap {
  margin-top: 36px;
  margin-bottom: 46px;
}

.form-file {
  position: relative;
  cursor: pointer;
}

.form-file input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}

.form-file .clip {
  float: left;
  margin-right: 21px;
}

@media (max-width: 767px) {
  .form-file .clip {
    width: 60px;
    margin-right: 15px;
  }
}

.form-file .file-upload {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 3px;
  display: block;
  padding-top: 10px;
}

@media (max-width: 767px) {
  .form-file .file-upload {
    font-size: 16px;
    padding-top: 6px;
    margin-bottom: 1px;
  }
}

.form-file .file-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-decoration-line: underline;
  color: #737EB3;
}

@media (max-width: 767px) {
  .form-file .file-link {
    font-size: 16px;
  }
}

.form-file span.filename {
  display: block;
  margin-top: 28px;
  position: relative;
}

.form-check {
  margin: 24px 0;
}

.checkbox-group.form-checkbox {
  margin-bottom: 40px;
}

.checkbox-group {
  position: relative;
}

.checkbox-group input {
  display: none;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #737EB3;
  padding-left: 40px;
  cursor: pointer;
  user-select: none;
  max-width: 427px;
  display: block;
}

@media (max-width: 767px) {
  .checkbox-group label {
    font-size: 14px;
  }
}

.checkbox-group label:before {
  content: '';
  width: 23px;
  height: 23px;
  background: transparent;
  border: 1px solid #737EB2;
  border-radius: 5px;
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
}

.checkbox-group label:after {
  content: '';
  width: 15px;
  height: 11px;
  background: url(../img/icons/check-white-icon.svg) top center no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 12px;
  left: 5px;
  opacity: 0;
}

.checkbox-group input:checked + label {
  color: #737EB3;
  transition: 0.5s;
}

.checkbox-group input:checked + label::before {
  background: #737EB3;
  border: 1px solid #737EB3;
  transition: 0.5s;
}

.checkbox-group input:checked + label:after {
  opacity: 1;
  transition: 0.5s;
}

.form-file.form-group {
  margin-bottom: 0;
}

.success {
  text-align: center;
}

.success .thanks {
  font-size: 22px;
  color: #FFFFFF;
  margin-top: 20px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .success .thanks {
    font-size: 18px;
  }
}

.table-wrap {
  /*background: $dark;*/
}

.table-wrap table th {
  color: #D3EF92;
  border-bottom: 1px solid #aab5ea;
  padding: 12px 17px;
}

.table-wrap table td {
  color: #CAD4D6;
  border-bottom: 1px solid #aab5ea;
  border-right: 1px solid #aab5ea;
  padding: 7px 17px;
  vertical-align: top;
}

.table-wrap table tr:last-child td {
  border-bottom: none;
}

.table-wrap table td:last-child {
  border-right: none;
}

.table-wrap {
  width: 100%;
  overflow: auto;
}

.table-wrap table td:first-child {
  width: 150px;
}

.table-wrap table td:nth-child(2) {
  width: 150px;
}

.table-wrap table td:last-child {
  word-break: break-all;
}

.table-wrap a img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 30px;
}

/* form end */
/* page master classes */
.masters-items-wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
}

.masters-item-wrap {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.masters-item {
  background: #1D254F;
  border-radius: 50px;
  padding: 30px 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  width: 48%;
}

@media (max-width: 991px) {
  .masters-item {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .masters-item {
    padding: 16px 30px 30px;
    margin-bottom: 20px;
    justify-content: center;
  }
}

.masters-item .show-info-block__info-bl {
  width: auto;
  text-align: left;
  margin-top: -4px;
}

.masters-item .show-info-block {
  /*max-width: 50%;
        width: 50%;
        margin-right: 0;
        align-items: flex-start;*/
  max-width: 100%;
  width: 100%;
  margin-bottom: 12px;
  margin-right: 0;
}

@media (max-width: 991px) {
  .masters-item .show-info-block {
    max-width: 100%;
    width: 100%;
    margin-bottom: 12px;
    margin-right: 0;
  }
  .masters-item .show-info-block:last-child {
    margin-bottom: 0;
  }
}

.masters-item .show-info-blocks {
  /*justify-content: center;
        align-items: flex-start;
        height: 57px;*/
}

@media (max-width: 991px) {
  .masters-item .show-info-blocks {
    height: auto;
  }
}

.masters-item-right {
  width: 190px;
}

@media (max-width: 650px) {
  .masters-item-right {
    margin-bottom: 16px;
    display: none;
  }
}

.masters-item-right a {
  display: block;
}

.masters-item-right a img {
  border-radius: 50px;
  opacity: 1;
  transition: opacity 0.5s;
}

.masters-item-right a:hover img {
  opacity: 0.7;
}

.masters-item-left {
  /*width: calc(100% - 230px);*/
  width: 100%;
}

@media (max-width: 650px) {
  .masters-item-left {
    width: 100%;
    order: 1;
  }
}

.masters-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #D3EF92;
  margin-bottom: 11px;
}

@media (max-width: 650px) {
  .masters-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}

.masters-title span {
  display: block;
}

.masters-item-speaker {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 8px;
}

@media (max-width: 650px) {
  .masters-item-speaker {
    font-size: 18px;
    margin-bottom: 4px;
    text-align: center;
  }
}

.masters-item-speaker a {
  text-transform: uppercase;
  color: #FFFFFF;
  display: block;
}

.masters-item-speaker a:hover {
  color: #FFBC67;
}

.masters-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 650px) {
  .masters-item-text {
    font-size: 12px;
  }
}

.masters-item-photo {
  margin-bottom: 15px;
}

@media (max-width: 650px) {
  .masters-item-photo {
    display: block;
    width: 190px;
    margin: 0 auto 15px;
  }
}

.masters-item-photo a {
  display: block;
}

.masters-item-photo a img {
  border-radius: 50px;
  opacity: 1;
  transition: opacity 0.5s;
}

.masters-item-photo a:hover img {
  opacity: 0.7;
}

.masters-item-sp {
  max-width: 50%;
  width: 100%;
  text-align: center;
}

@media (max-width: 650px) {
  .masters-item-sp {
    max-width: 100%;
    margin-bottom: 12px;
  }
}

/* page master classes end */
.doc-item {
  height: auto;
  padding-bottom: 21px;
  margin-bottom: 0;
  position: relative;
  max-width: 100%;
  /*&:before {
        content:'';
        width: 100%;
        height: 13px;
        background: url(../img/line-bottom.svg) top center repeat-x;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    &:last-child {
        margin-bottom: 0;
        &::before {
            display: none;
        }
    }*/
}

@media (min-width: 768px) {
  .doc-item {
    padding-bottom: 29px;
    margin-bottom: 0;
    align-items: center;
  }
}

.doc-item-icon {
  width: 60px;
  margin-right: 14px;
  position: relative;
  height: 50px;
}

@media (min-width: 768px) {
  .doc-item-icon {
    width: 85px;
    height: auto;
    margin-right: 18px;
  }
}

.file-name {
  width: calc(100% - 74px);
}

@media (min-width: 768px) {
  .file-name {
    width: calc(100% - 103px);
  }
}

.file-name a {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #B40001;
  margin-top: 0;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .file-name a {
    font-size: 20px;
    line-height: 27px;
  }
}

.file-name a:hover {
  color: #740001;
  transition: 0.5s;
}

.file-name .type {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #858585;
  margin-top: -2px;
}

@media (min-width: 768px) {
  .file-name .type {
    margin-top: 0;
    font-size: 16px;
  }
}

.team-wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 650px) {
  .team-wrapper {
    margin-top: -30px;
  }
}

.team-item {
  background: #FFFFFF;
  border-radius: 50px;
  padding: 30px 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  width: 48%;
  align-items: center;
}

@media (max-width: 991px) {
  .team-item {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .team-item {
    padding: 16px 30px 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
  .team-item .image {
    width: 100%;
    text-align: center;
  }
}

.team-item .image img {
  border-radius: 50px;
  opacity: 1;
  transition: opacity 0.5s;
}

@media (max-width: 500px) {
  .team-item .image img {
    border-radius: 30px;
    width: 100px;
  }
}

.team-item .image img:hover {
  opacity: 0.8;
}

.team-item .person-info {
  width: calc(100% - 200px);
  text-align: left;
}

@media (max-width: 500px) {
  .team-item .person-info {
    width: 100%;
    margin-top: 10px;
  }
}

.team-item .name,
.team-item .position {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #B40001;
  margin-bottom: 11px;
}

@media (max-width: 650px) {
  .team-item .name,
  .team-item .position {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

@media (max-width: 500px) {
  .team-item .name,
  .team-item .position {
    text-align: center;
  }
}

.team-item .name {
  font-family: 'Flow Ext';
}

.team-item .position {
  font-size: 16px;
  color: #000000;
  margin-bottom: 0;
}

@media (max-width: 650px) {
  .team-item .position {
    font-size: 14px;
  }
}

.team-item .position span {
  display: block;
  color: #aab5ea;
}

.team-item .position-2 {
  color: #858585;
  font-size: 14px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .team-item .position-2 {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

@media (max-width: 500px) {
  .team-item .position-2 {
    text-align: center;
  }
}

.page-3 .breadcrumb,
.page-3 h1,
.page-3 .blocks-wrap:before,
.page-3 .blocks-wrap:after {
  display: none;
}

.page-404-wrap {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .page-404-wrap {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .page-404-wrap {
    margin-top: -64px;
  }
}

.page-404-image {
  max-width: 650px;
  width: 100%;
}

@media (max-width: 1199px) {
  .page-404-image {
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  .page-404-image {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .page-404-image {
    max-width: 60%;
  }
}

.page-404-block {
  width: calc(100% - 725px);
}

@media (max-width: 1199px) {
  .page-404-block {
    width: calc(100% - 560px);
  }
}

@media (max-width: 991px) {
  .page-404-block {
    max-width: 100%;
    width: 100%;
    order: 1;
    margin-top: 30px;
  }
}

.page-404-block .title-block {
  margin-bottom: 22px;
}

@media (max-width: 991px) {
  .page-404-block .title-block {
    margin-bottom: 15px;
  }
}

.page-404-block p {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .page-404-block p {
    margin-bottom: 30px;
  }
}

.photo-page-wrapper,
.video-page-wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
}

.photo-page-wrapper::before, .photo-page-wrapper::after,
.video-page-wrapper::before,
.video-page-wrapper::after {
  content: '';
  width: 32%;
  height: 0;
  order: 1;
}

@media (max-width: 600px) {
  .photo-page-wrapper::before, .photo-page-wrapper::after,
  .video-page-wrapper::before,
  .video-page-wrapper::after {
    width: 100%;
  }
}

.video-block-wrap {
  width: 48%;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .video-block-wrap {
    width: 100%;
  }
}

.video-block-wrap .video-block {
  height: auto;
}

.video-block-title {
  text-align: center;
  font-family: 'Flow Ext';
  color: #000000;
  font-weight: normal;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 22px;
  margin-top: 15px;
}

@media (max-width: 600px) {
  .video-block-title {
    font-size: 16px;
    margin-bottom: 18px;
    margin-top: 10px;
  }
}

.template-19 .breadcrumb {
  display: none;
}

.template-19 .blocks-wrap:before, .template-19 .blocks-wrap:after {
  display: none;
}

.template-19 .blocks-wrap {
  padding-top: 0;
}

.template-19 .content-wrap p {
  color: #FFFFFF;
  font-size: 18px;
}

.template-19 .count-wrap {
  margin-top: 34px;
}

.albom-wrapper {
  /*display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 5vw);
    grid-gap: 1.5rem; */
  margin-bottom: 30px;
}

.albom-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.gallery__item {
  margin: 0 1.5rem 1.5rem 0;
  display: inline-block;
  width: 31%;
}

@media (max-width: 500px) {
  .gallery__item {
    margin: 10px 15px;
    display: inline-block;
    width: 41%;
  }
}

@media (max-width: 360px) {
  .gallery__item {
    width: 100%;
    margin: 10px 0;
  }
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(0px);
  transition: filter 0.3s ease-in;
}

.gallery__item:hover img {
  filter: blur(2px);
}

/*
.gallery__item:nth-child(1n),
.gallery__item:nth-child(n + 6) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
  
.gallery__item:nth-child(2n),
.gallery__item:nth-child(2n + 6) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}

.gallery__item:nth-child(3n),
.gallery__item:nth-child(3n + 6) {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
}
   
.gallery__item:nth-child(4n),
.gallery__item:nth-child(4n + 6) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 6;
}
 
.gallery__item:nth-child(5n),
.gallery__item:nth-child(5n + 6) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 9;
}
   
.gallery__item:nth-child(6n),
.gallery__item:nth-child(6n + 6) {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 9;
}

*/
.photo-block-wrap {
  width: 32%;
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .photo-block-wrap {
    width: 48%;
  }
}

@media (max-width: 360px) {
  .photo-block-wrap {
    width: 100%;
  }
}

.photo-block-wrap .video-block {
  height: auto;
}

.photo-block-wrap {
  position: relative;
}

.photo-block-wrap .photo-block {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.photo-block-wrap .photo-block-title {
  position: absolute;
  color: #FFFFFF;
  padding: 15px 10px;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  text-align: center;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#000000',GradientType=0 );
  transition: 0.5s;
}

.photo-block-wrap .photo-block-title span {
  font-family: 'Flow Ext';
  font-size: 22px;
}

@media (max-width: 600px) {
  .photo-block-wrap .photo-block-title span {
    font-size: 15px;
  }
}

.photo-block-wrap img {
  filter: blur(0px);
  transition: filter 0.3s ease-in;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-block-wrap:hover img {
  filter: blur(2px);
}

.photo-block-wrap:hover .photo-block-title {
  padding-bottom: 30px;
  transition: 0.5s;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .albom-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .gallery__item {
    width: 32%;
  }
}

.guests-items-wrapper .masters-item {
  width: 100%;
}

.guests-items-wrapper .masters-item .show-info-blocks {
  max-width: 530px;
  margin: 0 auto 26px;
  justify-content: center;
}

.guests-items-wrapper .masters-item .show-info-block {
  width: 48%;
}

@media (max-width: 400px) {
  .guests-items-wrapper .masters-item .show-info-block {
    width: 100%;
  }
}

.guests-items-wrapper .masters-item-wrap {
  display: block;
}

.guests-items-wrapper .masters-item-sp {
  width: 100%;
  max-width: 100%;
  clear: both;
  text-align: left;
  margin-bottom: 30px;
}

.guests-items-wrapper .masters-item-sp:last-child {
  margin-bottom: 0;
}

.guests-items-wrapper .masters-item-photo {
  width: 180px;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  float: left;
  margin-right: 20px;
}

@media (max-width: 650px) {
  .guests-items-wrapper .masters-item-photo {
    float: none;
    margin: 0 auto 10px;
  }
}

.guests-items-wrapper .masters-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guests-items-wrapper .masters-item-position {
  text-align: left;
  color: #D3EF92;
  margin-bottom: 10px;
  font-size: 16px;
}

@media (max-width: 650px) {
  .guests-items-wrapper .masters-item-position {
    font-size: 14px;
    text-align: center;
    margin-bottom: 2px;
  }
}

.guests-items-wrapper .masters-item-bottom {
  clear: both;
}

.guests-items-wrapper .masters-item-text {
  font-size: 17px;
}

@media (max-width: 650px) {
  .guests-items-wrapper .masters-item-text {
    font-size: 14px;
  }
}

.newsmore {
  margin-bottom: 100px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .newsmore {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}

.newsmore .title-block {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .newsmore .title-block {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .fancybox-slide--video .fancybox-content {
    width: 100% !important;
  }
  .fancybox-slide.fancybox-slide--video.fancybox-slide--current.fancybox-slide--complete {
    padding: 0;
  }
}

.front .photo-page-wrapper {
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .front .photo-page-wrapper {
    margin-bottom: 40px;
  }
}

.template-24 .blocks-wrap {
  padding: 0;
}

.template-24 .blocks-wrap:before,
.template-24 .blocks-wrap:after {
  display: none;
}

.bg-blue {
  background: #FFFFFF;
  border-radius: 50px;
  padding: 34px 30px;
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .bg-blue {
    padding: 24px 18px;
    border-radius: 30px;
  }
}

.page-200 .show-info-block {
  max-width: 100%;
}

.page-200 .show-info-blocks {
  display: block;
}

.review-item {
  width: 49%;
  position: relative;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 34px 30px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .review-item {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .review-item {
    padding: 24px 18px;
    border-radius: 30px;
  }
}

.review-item:hover .review-item-title {
  color: #D3EF92;
  transition: 0.5s;
}

.review-item > svg {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

@media (max-width: 600px) {
  .review-item > svg {
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: auto;
  }
}

.review-item:hover > svg path {
  fill: #D3EF92;
  transition: 0.5s;
}

.review-item-left {
  width: 60px;
  margin-right: 14px;
  position: relative;
  height: 50px;
}

@media (min-width: 768px) {
  .review-item-left {
    width: 85px;
    height: auto;
    margin-right: 18px;
  }
}

.review-item-right {
  width: calc(100% - 74px);
}

@media (min-width: 768px) {
  .review-item-right {
    width: calc(100% - 103px);
  }
}

.review-item-title {
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 4px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .review-item-title {
    font-size: 20px;
    line-height: 27px;
    margin-top: 10px;
    margin-bottom: 4px;
  }
}

.review-item-subtitle,
.review-item-author {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #737EB3;
  margin-top: -2px;
}

@media (min-width: 768px) {
  .review-item-subtitle,
  .review-item-author {
    margin-top: 0;
    font-size: 16px;
  }
}

.review-content-wrap {
  position: relative;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 34px 30px;
}

@media (max-width: 600px) {
  .review-content-wrap {
    padding: 24px 18px;
    border-radius: 30px;
  }
}

.review-content-wrap h3 {
  color: #FFF;
  margin-bottom: 20px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .review-content-wrap h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 12px;
  }
}

.review-content-wrap p {
  font-size: 16px;
  color: #f0f2ff;
}

@media (max-width: 600px) {
  .review-content-wrap p {
    font-size: 14px;
  }
}

.review-content-author {
  margin-top: 20px;
  text-align: right;
  color: #FFFFFF;
  font-family: 'Flow Ext';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

@media (max-width: 600px) {
  .review-content-author {
    font-size: 16px;
    line-height: 130%;
  }
}

.review-content-author span {
  color: #D3EF92;
}

.title-md,
.blocks-wrap .item .title-md {
  font-family: 'Flow Ext';
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #D3EF92;
  margin-bottom: 11px;
}

@media (max-width: 650px) {
  .title-md,
  .blocks-wrap .item .title-md {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.title-md span,
.blocks-wrap .item .title-md span {
  display: block;
}

.font-white,
.blocks-wrap .item .font-white {
  color: #FFFFFF !important;
}

.font-white em,
.blocks-wrap .item .font-white em {
  font-style: normal;
}

.blocks-wrap .item .font-md {
  font-size: 20px;
}

@media (max-width: 991px) {
  .blocks-wrap .item .font-md {
    font-size: 16px;
  }
}

.wrapper-gsap {
  width: 100%;
  overflow-x: hidden;
}

.bg-zanaves {
  position: fixed;
  top: 0;
  width: 322px;
  height: auto;
}

@media (max-width: 1650px) {
  .bg-zanaves {
    width: 280px;
  }
}

@media (max-width: 1442px) {
  .bg-zanaves {
    width: 240px;
  }
}

@media (max-width: 1200px) {
  .bg-zanaves {
    width: 200px;
  }
}

.bg-zanaves-left {
  left: 50%;
  margin-left: -950px;
}

@media (min-width: 1921px) {
  .bg-zanaves-left {
    left: 0;
    margin-left: 0;
  }
}

@media (max-width: 1650px) {
  .bg-zanaves-left {
    margin-left: -878px;
  }
}

@media (max-width: 1442px) {
  .bg-zanaves-left {
    margin-left: -768px;
  }
}

@media (max-width: 1200px) {
  .bg-zanaves-left {
    margin-left: -690px;
  }
}

.bg-zanaves-right {
  right: 50%;
  margin-right: -950px;
}

@media (min-width: 1921px) {
  .bg-zanaves-right {
    right: 0;
    margin-right: 0;
  }
}

@media (max-width: 1650px) {
  .bg-zanaves-right {
    margin-right: -878px;
  }
}

@media (max-width: 1442px) {
  .bg-zanaves-right {
    margin-right: -768px;
  }
}

@media (max-width: 1200px) {
  .bg-zanaves-right {
    margin-right: -690px;
  }
}

.team-wrapper h3 {
  margin-bottom: 20px;
  color: #000000;
}

.team-wrap.d-flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

.page-225 .date-news-top,
.page-225 .newsmore {
  display: none;
}

@media (max-width: 991px) {
  .news-wrap .swiper-wrapper {
    height: auto;
  }
  .news-wrap .swiper-slide {
    height: auto;
  }
}
/*# sourceMappingURL=style.css.map */