@import url('https://fonts.cdnfonts.com/css/gotham-pro');
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

:root {
  --main-light-color: #ffffff;
  --main-black-color: #292929;
  --main-blue-color: #3066c2;
  --main-yellow-color: #f1bd06;
  --main-gray-color: #32373a;
}

*,
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}

.loader_centered_logo img{
  width: 320px;
}
.bottom_marque_string_container img{
  height: 50px;
  float: left;
  margin-left: 30px;
}
.bottom_marque_string_overflow {
  bottom: -20px;
}

body {
  font-family: 'SF Pro Display', sans-serif;
  font-style: normal;
  margin: 0;
  overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

h2 {
  font-family: 'Gotham Pro', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style-type: none;
}

.container,
.biography__container {
  width: 100%;
  max-width: 1200px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}

img {
  display: block;
  max-width: 100%;
}

.fp-watermark {
  display: none;
}

.fp-is-overflow .fp-overflow.fp-auto-height-responsive,
.fp-is-overflow .fp-overflow.fp-auto-height,
.fp-is-overflow > .fp-overflow {
  /* overflow-y: inherit; */
}

.slick-prev,
.slick-next {
  display: none !important;
}

header,
footer {
  width: 100%;
  position: fixed;
}

.header__inner,
.footer__inner {
  background: rgba(225, 236, 255, 0.8);
}

header {
  top: 0;
  z-index: 50;
}

.loader_container_inner{
  opacity:0;
}

.corners {
  position: relative;
  pointer-events: none;
}

.corner {
  background: radial-gradient(circle at 100% 36%,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(225, 236, 255, 0.8) 50%,
      rgba(225, 236, 255, 0.8) 100%);
  background-size: 100% 200%;
  height: 85px;
  width: 57px;
  position: absolute;
  left: 0;
  z-index: -1;
}

.top-right {
  left: auto;
  right: 0;
  transform: scale(-1, 1);
}

.bottom-left {
  top: auto;
  left: 0;
  bottom: 0;
  transform: scale(1, -1);
}

.bottom-right {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.header__container {
   padding-top: 20px;
  padding-bottom: 16px;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
}

.logo {
  display: block;
  width: 172px;
  height: 22px;
}

.sub__menu {
  display: none;
}

.menu {
  display: none;
  font-weight: 400;
  font-size: 22px;
  color: #3066c2;
}

.menu__item:hover,
.menu__item:focus {
  font-weight: 700;
}

/* .menu .menu__item:hover > a::after,
.menu .menu__item:focus > a::after {
  content: '';
  display: block;
  width: 104px;
  height: 4px;
  background: #f1bd06;
} */

.open {
  display: none;
}

.open svg,
.close svg {
  fill: #3066c2;
}

.close {
  font-weight: 800;
  font-size: 12px;
  color: #3066c2;
  text-transform: uppercase;
}

.close svg {
  margin-right: 11px;
}

.mobile__menu-btn.active .close {
  display: none;
}

.mobile__menu-btn.active .open {
  display: block;
}

.mobile__menu-container {
  display: block;
  overflow: hidden;
  position: absolute;
  transition:all 0.7s ease;
  width: 100%;
  top:0;
  left:0;
  z-index: -20;
/*  animation: closeMenu 700ms cubic-bezier(0.4, 0, 0, 1) normal forwards;*/
/*animation-delay: 400ms;*/
}

.mobile__menu-container.active {
  background: #e2edff;
  overflow-y: scroll;
  padding: 125px 40px 60px 40px;
  height:100vh;
/*  animation: openMenu 700ms cubic-bezier(0.4, 0, 0, 1) normal forwards;*/
}

.mobile__menu-container.closed {
  height: 0;
  transition-delay: 400ms;
}

.header__inner.closed, .footer__inner.closed {
    transition:all 0s ease;
}

.corners.closed .corner{
    transition:all 0s ease;
}

.mobile__menu-container.closed .menu__list > .menu__item  {
  transition:all 0.6s ease;
  opacity: 0;
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
    transition-delay: 400ms;
}

.mobile__menu-container.active .menu__list > .menu__item {
  transition:all 0.2s ease;
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition-delay: 300ms;
}

.mobile__menu-container .menu__left-part .menu__list > .menu__item:nth-of-type(1) {
  transition-delay: 0ms;
}

.mobile__menu-container .menu__left-part .menu__list > .menu__item:nth-of-type(2) {
  transition-delay: 100ms;
}

.mobile__menu-container .menu__left-part .menu__list > .menu__item:nth-of-type(3) {
  transition-delay: 200ms;
}

.mobile__menu-container .menu__right-part .menu__list > .menu__item:nth-of-type(1) {
  transition-delay: 300ms;
}

.mobile__menu-container .menu__right-part .menu__list > .menu__item:nth-of-type(2) {
  transition-delay: 400ms;
}

.mobile__menu-container .menu__right-part .menu__list > .menu__item:nth-of-type(3) {
  transition-delay: 500ms;
}



@keyframes openMenu {
  to {
    height: 100vh; } }

@keyframes closeMenu {
  to {
    height: 0; } }

.mobile__menu-container .menu {
  display: block;
  position: relative;
}

.mobile__menu-container .menu__item {
  position: relative;
  margin-bottom: 40px;
}

.mobile__menu-container .menu__item .icon__arrow {
  width: 15px;
  height: 16px;
  position: absolute;
  top: 5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin:0 auto;
  transition: transform 0.3s ease;
}

/* .mobile__menu-container .menu__item:hover .icon__arrow, */
.mobile__menu-container .menu__item:focus.icon__arrow {
  stroke: var(--main-yellow-color);
  transform: rotate(91deg);
  top: 10px;
  bottom: unset;
}

.mobile__menu-container .sub__menu li:first-child {
  margin-top: 36px;
}

.mobile__menu-container .sub__menu li {
  margin-bottom: 22px;
}

.mobile__menu-container .sub__menu li:last-child {
  margin-bottom: 0;
}

.mobile__menu-container .sub__menu.active {
  display: block;
  font-weight: 400;
}

.mobile__menu-container .sub__menu {
  font-weight: 400;
}

.mobile__menu-container .letters,
.home .letters {
  display: block;
  position: absolute;
  right: -85px;
  width: 300px;
  height: 300px;
}

.mobile__menu-container .letters {
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.home .letters {
  top: 12vh;
}

.letters__position {
  position: relative;
  backface-visibility: hidden;
}

.letters .img__m {
  position: absolute;
  top: 0;
  right: 30px;
  width: 158px;
  height: auto;
  backface-visibility: hidden;
}

.letters .img__p {
  position: absolute;
  top: 115px;
  right: 8px;
  width: 190px;
  height: auto;
  backface-visibility: hidden;
}

.header__inner.active,
.footer__inner.active {
  background-color: #f6f8fc;
}

.corners.active .corner {
  background: radial-gradient(circle at 100% 36%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgb(246, 248, 252) 50%, rgb(246, 248, 252) 100%);
  background-size: 100% 200%;
}

.person {
  background-position:top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-id-15 .person {
  background-position:67% 0;
}

.page-id-5 .person {
  background-position:63% 100%;
}

.page-id-7 .person {
  background-position:58% 0;
}

.title {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 45px;
  background: linear-gradient(90deg, #0075ff 0%, rgba(48, 136, 49, 0) 120.32%);
  border-radius: 20px;
  width: fit-content;
  padding: 14px 60px 10px 20px;
  color: var(--main-light-color);
  z-index: -2;
  margin-bottom: 16px;
}

.title__label {
  position: relative;
  font-weight: 700;
  font-size: 22px;
  padding: 9px 18px 9px 18px;
  background: #ffffff;
  border-radius: 27px;
  width: 276px;
  height: 40px;
  color: var(--main-blue-color);
  left: 52px;
  top: 14px;
}

.title__label::after {
  content: '';
  display: block;
  position: absolute;
  right: -2px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  border-radius: 27px;
  z-index: -1;
}

.person__container {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.person__container-inner {
  position: absolute;
  bottom: 120px;
  z-index: 1;
}

.person .title__label::after {
  background-color: #ff5871;
}

.btn__main-screen {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--main-light-color);
}

.btn__main-screen .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main-light-color);
  margin-right: 19px;
}

.btn__main-screen .text {
  display: block;
}

.btn__main-screen:hover .circle,
.btn__main-screen:focus .circle {
  box-shadow: 0px 0px 20px 1px rgba(255, 255, 255, 0.7);
}

.btn__main-screen:hover .text,
.btn__main-screen:focus .text {
  /* text-shadow: rgba(255, 255, 255, 0.9) 2px 0 5px; */
}

.icon__arrow-btn-bottom {
  stroke: var(--main-black-color);
}

.biography.fp-table {
  display: block;
}

.biography__left-part-inner {
  padding-left: 20px;
  padding-right: 20px;
}

.secondary__title-label {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--main-yellow-color);
  margin-bottom: 7px;
  text-align: right;
  margin-top:25px;
}

.figures__container .secondary__title-label,
.figures__container .secondary__title,
.reward__container .secondary__title,
.reward__container .secondary__title-label,
.books .secondary__title,
.books .secondary__title-label,
.figures__wrap .secondary__title,
.figures__wrap .secondary__title-label,
.section.clip .secondary__title-label,
.section.concerts .secondary__title-label,
.section.movies .secondary__title-label
{
  text-align: left;
}

.secondary__title {
  text-align: right;
  font-weight: 700;
  font-size: 33px;
  line-height: 90%;
  color: var(--main-blue-color);
  margin-bottom: 18px;
}

.base__text {
  height: 26vh;
  /* overflow-y: scroll; */
  overflow-y: auto;
  overflow-x: hidden;
}

.history__right-part .base__text{
  width: 100%;
}

.biography__left-part .base__text {
    height: 29vh;
    height: 29svh;
    width: 100%;
}

.base__text p {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  color: var(--main-gray-color);
  text-align: right;
  padding-right: 18px;
}

.base__text::-webkit-scrollbar,
.project__article-left-part::-webkit-scrollbar,
.restaurant-chain__inner::-webkit-scrollbar {
  width: 3px;
  /* ширина для вертикального скролла */
  background-color: #dadada;
}

/* ползунок скроллбара */
.base__text::-webkit-scrollbar-thumb,
.project__article-left-part::-webkit-scrollbar-thumb,
.restaurant-chain__inner::-webkit-scrollbar-thumb {
  background-color: var(--main-blue-color);
  display: block;
}

.btn__main-arrow {
  width: fit-content;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--main-blue-color);
  margin-top: 25px;
}

.btn__main-arrow span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--main-blue-color);
  margin-right: 9px;
}

.btn__main-arrow:hover span,
.btn__main-arrow:focus span {
  background-color: var(--main-blue-color);
}

.btn__main-arrow:hover .icon__arrow,
.btn__main-arrow:focus .icon__arrow {
  stroke: var(--main-light-color);
}

.icon__arrow {
  stroke: var(--main-blue-color);
  transform: rotate(-89deg);
}

.arrow__big-right .icon__arrow {
  transform: rotate(181deg);
}

.biography__left-part-inner .btn__main-arrow,
.history__right-part .btn__main-arrow {
  flex-direction: row-reverse;
  float: right;
}

.biography__left-part-inner .btn__main-arrow span,
.history__right-part .btn__main-arrow span {
  margin-right: 0;
  margin-left: 9px;
}

.biography__right-part .slick-slide img {
  height: 40vh;
  object-fit: cover;
  object-position:top;
  width: 100%;
}

.slick-dots {
  bottom: 25px;
}

.slick-dots li {
  width: 18px;
  height: 18px;
  margin-right: 9px;
}

.slick-dots li button {
  width: 0;
  height: 0;
  padding: 0;
}

.slick-dots li button:before {
  content: '';
  font-size: 0;
  line-height: 0;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #DADADA;
  border-radius: 50%;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  width: 8px;
  height: 8px;
  background-color: var(--main-blue-color);
  border: 5px solid var(--main-yellow-color);
}

.history__right-part .secondary__title-label,
.history__right-part .secondary__title {
  display: flex;
  flex-direction: row-reverse;
}

.history__right-part .base__text p {
  padding-right: 18px;
  text-align: right;
}

.history__wrap{
  width:100%;
}

.history__left-part {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  width:100%;
}

.history__left-part_slider{
  width:100%;
}

.history__left-part a {
  width: 48%;
}

.history__left-part img {
  width:100%;
  max-width: 492px;
  max-height: 282px;
  border-radius: 10px;
}

.history__left-part_slider .history__left-part_item{
  display: flex;
  justify-content: space-between;
}

.history__left-part_slider .slick-dots{
  position: static;
}

.letters {
  display: none;
}

.btn__arrow-list .btn__main-arrow {
  margin-top: 0;
}

.btn__arrow-list .btn__main-arrow span {
  margin-right: 0;
}

.btn__arrow-list {
  display: flex;
  justify-content: end;
  margin-bottom: 43px;
}

#clip__container--2 .btn__arrow-list,
.photo-gallery .btn__arrow-list {
  margin-bottom: 30px;
}

.btn__arrow-list li:first-child {
  margin-right: 4px;
}

.btn__arrow-list li:first-child svg {
  transform: rotate(1deg);
}

.btn__arrow-list li:last-child svg {
  transform: rotate( 181deg);
}

.btn__arrow-list li:hover span,
.btn__arrow-list li:focus span {
  background-color: var(--main-blue-color);
}

.btn__arrow-list li:hover .icon__arrow,
.btn__arrow-list li:focus .icon__arrow {
  stroke: var(--main-light-color);
}

.figures__slider-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.figures__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.11;
  color: var(--main-blue-color);
  margin-right: 10px;
}

.figures__slider-item {
  width: 100%;
  max-width: 684px;
  margin-right: 23px;
}

.figures__slider-item a{
  width: 100%;
  max-width: 684px;
  margin-right: 23px;
}

.figures__slider-item .figures__slider-wrap a.btn__main-arrow{
  width: auto;
  flex-shrink: 0;
}

.figures__slider-item > a{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  height:auto;
  padding-bottom: 66.55%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.figures__slider-item > a img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: auto;
}

.figures__slider .slick-slide {
  margin: 0 12px;
}

.figures__slider .slick-slide .slick-active:nth-child(3) {
  margin-right: -200px;
}

.figures__slider {

}

.figures__slider .slick-list {
  overflow: visible;
}

.figures__slider-wrap .btn__main-arrow {
  margin: 0;
}

.figures__container {
  clip-path: inset(-100vw -100vw -100vw 0);
}

.figures__slider-wrap .btn__main-arrow span {
  background-color: var(--main-yellow-color);
  border: 1px solid var(--main-yellow-color);
  border-radius: 50%;
  margin: 0;
}

.figures__slider-wrap .icon__arrow {
  transform: rotate(181deg);
}

footer {
  bottom: 0;
  z-index: 50;
}

.footer__container {
  padding-top: 17px;
  padding-bottom: 15px;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
}

.footer__right-part{
  max-width:40%;
}

.footer__left-part{
  position: relative;
}

.footer__left-part .ccopyright{
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  font-size: 6px;
  color: rgb(48 102 194 / 70%);
  white-space: nowrap;
}

.footer__left-part .ccopyright a{
  color: rgb(48 102 194 / 70%);
}

.footer__left-part p,
.footer__right-part p {
  display: none;
}

.footer__left-part ul {
  display: flex;
}

.footer__left-part li {
  margin-right: 11px;
}

.footer__left-part li:last-child {
  margin-right: 0;
}

.footer__left-part li:hover,
.footer__left-part li:focus,
.footer__right-part .footer__icons:hover {
  background-color: var(--main-light-color);
  border-radius: 50%;
}

.footer__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #3066c2;
  flex-shrink: 0;
}

.footer__icons svg {
  fill: #3066c2;
}

.reward__top-part {
  border-bottom: 1px solid #dadada;
}

.reward__slider-item {
  position: relative;
}

.reward__slider-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 1px;
  height: 102px;
  background-color: #dadada;
}

.reward__slider-item p {
  font-weight: 700;
  font-size: 20px;
  color: var(--main-blue-color);
  margin-bottom: 15px;
}

.reward__slider-item span {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  color: var(--main-gray-color);
}

.reward .letters {
  display: none;
}

.history__rector .secondary__title {
  letter-spacing: -0.03em;
}

.university {
  position: relative;
}

.university__container .secondary__title {
  margin-bottom: 0;
}

.university__wrap {
  margin-top: 60px;
}

.btn__img {
  display: block;
  margin-bottom: 60px;
}

.img__kuk {
  width: auto;
  height: 33px;
  max-width:100%;
}

.img__knukim {
  width: 279px;
  height: 26px;
}

.university__btn {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--main-black-color);
  margin-bottom: 60px;
}

.university__btn.book_btn{
  margin-bottom:0;
  margin-top:auto;
}

.university__btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: var(--main-yellow-color);
  margin-left: 9px;
}

.university__btn .icon__arrow {
  transform: rotate(181deg);
  stroke: var(--main-light-color);
}

.university__btn:hover span,
.university__btn:focus span {
  background-color: unset;
  border: 1px solid var(--main-yellow-color);
}

.university__btn:hover .icon__arrow,
.university__btn:focus .icon__arrow {
  stroke: var(--main-yellow-color);
}

.books {
  position: relative;
}

.books__container .secondary__title,
.books__container .secondary__title-label {
  text-align:end;
}

.university__container .secondary__title,
.university__container .secondary__title-label {
  text-align:left;
}

.arrow__big-left,
.arrow__big-right {
  display: none!important;
}

.books__slider-item img {
  width: auto;
  height: auto;
  margin: 0 auto 13px auto;
  max-height:360px;
  max-width:100%;
}

.books__slider .slick-list{
  overflow: visible;
}

.books__slider .slick-slide{
  margin-right:20px;
}

.books__slider .slick-slide .books__slider-item{
  height:433px;
  display: flex!important;
  flex-direction: column;
}

.arrow__big-right.books_right,
.arrow__big-left.books_left{
  display:none!important;
}

.books__slider-item .university__btn {
  justify-content: center;
}

.project__article-left-part:not(.project__article-left-part-custom) {
  overflow-y: scroll;
  padding-right: 30px;
  height: 24vh;
}

.project__article-left-part.project__article-left-part-custom .project__article-left-part_content{
    overflow-y: auto;
    padding-right: 30px;
    height: 28vh;
}

.base__text-color {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-blue-color);
}

.project__article-left-part .base__text {
  overflow-y: hidden;
  height: fit-content;
}

.project__article-left-part .base__text p {
  padding: 0;
  text-align: start;
}

.project__article-right-part {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project__article-right-part .project__article-slider  {
  width: 100%;
}

.project__article-item img {
  width: 100%;
  height: 187px;
  object-fit: contain;
  border-radius: 20px;
  object-position: center;
}

.project__article-two .base__text {
  overflow-y: hidden;
  height: fit-content;
}

.project__article-two .base__text p {
  padding: 0;
  text-align: start;
}

.project__article-item.slick-slide {
  padding: 0 5px;
}

.project__article-slider-big .project__article-item img {
  height: 70vh;
}

.project__article-slider-big .project__article-item .slick-slide {
  height: 70vh;
}

.project__article-slider-big .slick-dots {
  bottom: -30px;
}

.project__article .letters,
.project__article-two .letters {
  display: none;
}

.section__project-article-right-bg {
  -webkit-clip-path: polygon(180% 0, 100% 0%, 100% 100%, 55% 100%);
  clip-path: polygon(180% 0, 100% 0%, 100% 100%, 55% 100%);
  background-color: var(--main-yellow-color);
  position: absolute;
  width: 45vw;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: -1;
}

.home {
  position: relative;
}

.home__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 90%;
  color: var(--main-blue-color);
  margin-bottom: 25px;
}

.section.home{
  overflow: hidden;
}

.clip.row-index-3 .fp-overflow,
.concerts.row-index-4 .fp-overflow,
.movies.row-index-5 .fp-overflow,
.movies.row-index-6 .fp-overflow,
.section.home.fp-section .fp-overflow,
.section.biography .fp-overflow
{
  overflow-x: hidden;
}


.section.home .letters{
  z-index:1;
}

.btn__home {
  display: flex;
  align-items: center;
}

.btn__home .text {
  font-weight: 700;
  font-size: 22px;
  color: var(--main-black-color);
  margin-right: 11px;
}

.btn__home .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: #658EE2;
}

.btn__home .icon__arrow {
  transform: rotate(181deg);
  stroke: var(--main-light-color);
}

.btn__home:hover .text,
.btn__home:focus .text {
  color: var(--main-blue-color);
}

.btn__home:hover .circle,
.btn__home:focus .circle {
  background-color: var(--main-light-color);
}

.btn__home:hover .icon__arrow,
.btn__home:focus .icon__arrow {
  stroke: var(--main-blue-color);
}

.home__container {
  padding-top: 121px;
  height: 100vh;
}

.section__home-bg {
  -webkit-clip-path: polygon(50% 0, 100% 0%, 50% 100%, 0% 100%);
  clip-path: polygon(50% 0, 100% 0%, 50% 100%, 0% 100%);
  background: #668FE2;
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: -1px;
  right: -165px;
  z-index: -1;
}

.home__right-part img {
  width: 100%;
  max-width: 450px;
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index:2;
}



.figures__wrap-position .secondary__title {
  margin-bottom: 55px;
}

.figures__wrap-position .btn__arrow-list {
  justify-content: start;
}

.photo-gallery_custom .fp-overflow{
  overflow-x:hidden;
}

.photo-gallery_custom .secondary__title-label{
  text-align:left;
}

.clip {
  background-color: var(--main-yellow-color);
}

.clip .secondary__title-label {
  color: var(--main-light-color);
}

.clip__slider-item {
  padding: 0 4px;
}

.video {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1031px;
  height: auto;
  padding-bottom: 55%;
  overflow:hidden;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video_gallery_custom .video {
    padding-bottom: 105%;
  }

.photo-gallery_custom .photo-gallery__container{
  padding-top:50px;
}

.photo-gallery_custom .photo-gallery__container .next_screen_btn{
  margin-top:25px;
}

.photo-gallery_custom{
  background: #fff;
}

.photo-gallery_custom .figures__wrap{
  top:0;
}
.photo-gallery_custom .clip__slider-title{
  white-space: normal;
}


.video img {
  width: 100%;
  max-width: 1031px;
  height: auto;
}

.video span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--main-blue-color);
  cursor: pointer;
}

.video span svg {
  fill: var(--main-yellow-color);
}

.video:hover span,
.video:focus span {
  background-color: var(--main-yellow-color);
}

.video:hover span svg,
.video:focus span svg {
  fill: var(--main-blue-color);
}

.clip__slider-title {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: var(--main-blue-color);
  margin-bottom: 18px;
  overflow:hidden;
  width:100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  position:relative;
  padding:30px 0 30px 20px!important;
}

.clip__slider-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 28px;
  background-color: var(--main-blue-color);
  margin-right: 0px;
  float:left;
  position:absolute;
  left:0;
  top:30px;
}

.concerts {
  background-color: #658EE2;
}

.concerts .secondary__title {
  color: var(--main-light-color);
}

.concerts .btn__main-arrow span {
  border-color: var(--main-light-color);
}

.concerts .icon__arrow {
  stroke: var(--main-light-color);
}

.concerts .btn__arrow-list li:hover span,
.concerts .btn__arrow-list li:focus span,
.concerts .btn__main-arrow:hover span,
.concerts .btn__main-arrow:focus span {
  background-color: var(--main-yellow-color);
  border-color: var(--main-yellow-color);
}

.concerts .btn__arrow-list li:hover .icon__arrow,
.concerts .btn__arrow-list li:focus .icon__arrow,
.concerts .btn__main-arrow:hover .icon__arrow,
.concerts .btn__main-arrow:focus .icon__arrow {
  stroke: var(--main-blue-color);
}

.concerts .clip__slider-title {
  color: var(--main-light-color);
}

.concerts .clip__slider-title::before {
  background-color: var(--main-yellow-color);
}

.concerts .btn__main-arrow {
  color: var(--main-light-color);
}

.movies .clip__slider-title {
  color: #313233;
}

.photo-gallery {
  position: relative;
}

.photo-gallery .figures__wrap {

  margin-bottom: 30px;
}

.photo-gallery .clip__slider-title {
  margin-bottom: 0;
}

.photo-gallery__slider .project__article-item img {
  height: 55vh;
}

.photo-gallery .clip__slider-title {
  color: #313233;
}

.restaurant-chain__inner {
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  height: 55vh;
  padding-right: 30px;
}

.restaurant-chain__part {
  margin-bottom: 27px;
}

.restaurant__logo img {
  width: 120px;
  height: auto;
  margin-bottom: 7px;
}

.restaurant__title {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--main-blue-color);
  text-decoration: underline;
  margin-bottom: 25px;
}

.restaurant-chain__part-text p {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: var(--main-gray-color);
}

.btn__map {
  display: block;
  width: fit-content;
  font-weight: 700;
  font-size: 18px;
  color: var(--main-blue-color);
  margin-top: 17px;
}

.btn__map img {
  width: 35px;
  height: 35px;
  margin: 0 auto 13px auto;
}

.biography__wrap .next_screen_btn{
  display: none;
}

/*
.clip__slider .slick-slide{
  transition: all 200ms ease;
  transition-delay: 300ms;
 -webkit-backface-visibility: hidden;
}
.slick-initialized .slick-slide {
visibility: visible;
display: block;
  opacity:1;
}

.clip__slider .slick-slide:not(.slick-current){
  opacity:0;
}

.clip__slider .slick-slide.slick-current + .slick-slide{
  opacity:1;
}*/

.pgs_button{
  position:absolute;
  top:50%;
  transform:translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--main-blue-color);
  background:rgba(255,255,255,0.8);
  cursor:pointer;
  z-index: 10;
}

.pgs_button:hover{
  background:var(--main-blue-color);
}

.pgs_button:hover svg *{
  stroke: #fff;
}

.pgs_button.pgs_prev{
  left:10px;
}

.pgs_button.pgs_prev svg{
  transform: rotate(0deg);
}

.pgs_button.pgs_next{
  right:10px;
}

.pgs_button.pgs_next svg{
  transform: rotate(180deg);
}

.photo-gallery__slider_holder{
  position: relative;
}

.clip__slider .slick-slide,.photo-galleries .slick-slide{
  width: 85vw;
  margin-right: 17px;
}

.photo-galleries .slick-slide{
  margin-right: 20px;
}

.project__article-two-container{
  max-height:calc(100vh - 150px);
}

.icon_itunes{
  width: 18px;
  height: 18px;
}

.project__article-wrap.fp-normal-scroll{
  overflow-y: auto;
  height:60vh;
  height:60svh;
}

.history__left-part_item{
  display: flex;
}

@media screen and (min-width:1200px) {
  .title__label {
    font-size: 46px;
  }
}

@media screen and (min-width:768px) {
  #clip__container--2 .btn__arrow-list,
  .photo-gallery .btn__arrow-list {
    margin-bottom: 0px;
  }
  .project__article-left-part.project__article-left-part-custom .project__article-left-part_content{
      height: 38vh;
  }

  .project__article-left-part-custom .secondary__title{
    font-size: 53px;
  }

  .photo-gallery_custom .secondary__title,
  #clip__container--2 .secondary__title{
    font-size: 52px;
  }
  .clip__slider .slick-slide,.photo-galleries .slick-slide{
    width: 70vw;
    margin-right:30px;
  }

  .university__container .secondary__title,
  .university__container .secondary__title-label {
    text-align:left;
  }

  .bottom_marque_string_container img {
      height: auto;
  }
.bottom_marque_string_container img {
  height: 100px;

}
.video {
  padding-bottom: 57%;
}
.video_gallery_custom .video {
    padding-bottom: 45%;
  }
  .container {
    padding-left: 55px;
    padding-right: 55px;
  }
  .history__right-part .secondary__title-label,
  .history__right-part .secondary__title {
    padding-right: 52px;
  }
.reward__slider {
  width:100%;
}
.biography__wrap .next_screen_btn{
  display: flex;
}
.secondary__title-label {
  text-align: left;
  margin-top:0px;
}

.secondary__title {
  text-align: left;
}
  .letters {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: -85px;
    width: 300px;
    height: 400px;
    pointer-events: none;
  }

  .letters__position {
    position: relative;
  }

  .letters .img__m {
    right: 12px;
    width: 205px;
    height: auto;
  }

  .letters .img__p {
    right: -28px;
    width: 255px;
    height: auto;
  }

  .title {
    font-size: 94px;
    padding: 26px 42px 18px 36px;
    margin-bottom: 75px;
  }

  .title__label {
    font-size: 42px;
    width: 594px;
    height: 75px;
    color: var(--main-blue-color);
    left: 98px;
    top: 26px;
  }

  .title__label::after {
    content: '';
    display: block;
    position: absolute;
    right: -2px;
    bottom: -5px;
    width: 100%;
    height: 100%;
    border-radius: 27px;
    z-index: -1;
  }

  .secondary__title-label {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .secondary__title {
    font-size: 76px;
    margin-bottom: 50px;
  }

  .base__text p {
    text-align: start;
    font-size: 22px;
    letter-spacing: -0.02em;
    padding-left: 70px;
  }

  .biography__right-part {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
  }

  .biography__left-part-inner {
    margin-top: -25px;
  }

  .biography .base__text {
    transform: scaleX(-1);
  }

  .biography .base__text p {
    transform: scaleX(-1);
    text-align: start;
    padding-left: 52px;
    padding-right: 0;
  }

  .btn__main-arrow {
    font-size: 18px;
    margin-bottom: 36px;
  }

  .btn__main-arrow span {
    width: 50px;
    height: 50px;
    margin-right: 23px;
  }

  .icon__arrow {
    width: 15px;
    height: 16px;
  }

  .biography__left-part-inner .btn__main-arrow {
    flex-direction: inherit;
    float: left;
  }

  .biography__left-part-inner .btn__main-arrow span {
    margin-right: 23px;
    margin-left: 0;
  }

  .slick-dots {
    bottom: 60px;
  }

  .history__container,
  .biography__left-part-inner {
    padding-left: 55px;
    padding-right: 55px;
  }

  .history__left-part {
    margin-bottom: 85px;
  }

  .history__right-part {
    position: relative;
  }

  .history .letters {
    display: none;
  }

  .history__right-part .btn__main-arrow span {
    margin-right: 0;
    margin-left: 23px;
  }

  .history__right-part .base__text p {
    padding-right: 52px;
    padding-left: 0;
  }

  .btn__arrow-list li:first-child {
    margin-right: 12px;
  }

  .figures__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 21px;
  }

  .clip__container .figures__wrap {
    margin-bottom: 0px;
  }

  .figures__wrap .secondary__title,
  .figures__wrap .btn__arrow-list {
    margin-bottom: 0;
  }

  .figures__title {
    font-size: 24px;
    line-height: 110%;
  }

  .footer__left-part p,
  .footer__right-part p {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #3066c2;
  }

  .footer__left-part,
  .footer__right-part {
    display: flex;
    align-items: center;
  }

  .footer__left-part p {
    margin-right: 27px;
  }

  .footer__right-part p {
    margin-right: 10px;
  }

  .person__container-inner {

    bottom:150px;
  }

  .history__rector .secondary__title {
    zoom: 0.74;
  }

  .img__kuk {
    width: 372px;
    height: 73px;
  }

  .img__knukim {
    width: 617px;
    height: 58px;
  }

  .university__btn {
    font-size: 22px;
  }

  .university__btn span {
    width: 58px;
    height: 58px;
    margin-left: 14px;
  }

  .university__btn .icon__arrow {
    width: 19px;
    height: 18px;
  }

  .books__section-bg {
    -webkit-clip-path: polygon(0 0, 55% 0, 20% 100%, 0 100%);
    clip-path: polygon(0 0, 35% 0, 0% 100%, 0 100%);
    background: #668FE2;
    position: absolute;
    width: 50vw;
    height: 85vh;
    top: -1px;
    z-index: -1;
  }

  .base__text-color {
    font-size: 28px;
  }

  .project__article-left-part {
    overflow-y: hidden;
    padding-right: 0;
    height: fit-content;
  }

  .project__article-right-part .slick-dots {
    bottom: -30px;
  }

  .section__project-article-two-bg {
    -webkit-clip-path: polygon(0 0, 55% 0, 20% 100%, 0 100%);
    clip-path: polygon(0 0, 34% 0, 0% 100%, 0 100%);
    background: #668FE2;
    position: absolute;
    width: 30vw;
    height: 60vh;
    top: -1px;
    z-index: -1;
  }

  .home__title {
    font-size: 78px;
    margin-bottom: 16px;
  }

  .btn__home .text {
    margin-right: 18px;
  }

  .btn__home .circle {
    width: 58px;
    height: 58px;
  }

  .btn__home .icon__arrow {
    width: 19px;
    height: 18px;
  }

  .home__right-part img {
    width: 700px;
    max-width:100%;
    right: 25px;
  }

  .clip__slider-title {
    font-size: 32px;
    margin-bottom: 0px;
  }

  .clip__slider-title::before {
    width: 6px;
    height: 37px;
    margin-right: 25px;
  }

  .video span {
    width: 99px;
    height: 99px;
  }

  .video svg {
    width: 21px;
    height: 24px;
  }

  .books .letters,
  .photo-gallery .letters,
  .restaurant-chain .letters {
    display: none;
  }

  .photo-gallery__slider .project__article-item img {
    width: 100%;
  }

  .restaurant-chain__part {
    display: flex;
    justify-content: space-between;
  }
  .footer__left-part .ccopyright{
    bottom: -12px;
    font-size: 8px;
  }
}


@media screen and (min-width: 958px) {
  .history__rector .secondary__title {
    zoom: 1;
  }
}
.section.figures.fp-section .fp-overflow{
  overflow-x: hidden;
}
.section.restaurant-chain .fp-overflow{
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .footer__left-part .ccopyright{
    bottom: -29px;
    font-size: 11px;
  }

  .single-post .university__container .secondary__title{
        font-size: 50px;
  }
  .reward__slider {
    width:75%;
  }
  .figures__slider-item > a{
    height:455px;
  }
    .figures__wrap {
      margin-bottom: 30px;
    }

  .clip__slider .slick-slide,.photo-galleries .slick-slide{
    width: 39vw;
    margin-right:38px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
    zoom: 0.84;
  }
  .calendar_slider_container .arrow__big-left,
  .calendar_slider_container .arrow__big-right{
    display: flex!important;
  }
  .page-id-15 .person {
    background-position:top center;
  }


  .books__slider .slick-list{
    overflow: hidden;
  }

  .books__slider .slick-slide{
    margin-right:20px;
  }

  .arrow__big-right.books_right,
  .arrow__big-left.books_left{
    display:flex!important;
  }
  .video {
    padding-bottom: 55%;
  }
  .video_gallery_custom .video {
      padding-bottom: 44%;
    }
  .fp-table {
    display: flex;
  }

  .header__container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header__wrap,
  .footer__wrap {
    zoom: 0.8;
  }

  .footer__left-part p {
    margin-right: 45px;
  }

  .footer__right-part p {
    margin-right: 25px;
  }

  .mobile__menu-btn {
    display: none;
  }

  .menu {
    display: block;
  }

  .menu__list {
    display: flex;
    height: 100%;

  }

  .menu__list li {
    font-weight: 400;
  }

  .menu__item {
    margin-right: 70px;
    width: 113px;
    text-align: center;
  }

  .menu__item:last-child {
    margin-right: 0;
  }

  .menu .menu__item:hover > a::after,
  .menu .menu__item:focus > a::after {
    position: absolute;
    bottom: -56px;
    width: 112px;
    margin: 0 auto;
  }

  .menu__item .icon__arrow {
    display: none;
  }

  .person__container-inner {
    bottom: 130px;
    zoom: 1;
  }

  .btn__main-screen .circle {
    width: 56px;
    height: 56px;
    margin-right: 31px;
  }

  .icon__arrow-btn-bottom {
    width: 15px;
    height: 16px;
  }

  .biography__wrap,
  .history__wrap {
    display: flex;
    align-items: center;
  }

  .biography__wrap {
    flex-direction: row-reverse;
  }

  .biography__left-part {
    width: 45%;
    zoom: 0.74;
    margin-right: -90px;
    display: flex;
    justify-content: flex-end;
  }

  .biography__left-part-inner {
    margin-top: 0;
  }

  .base__text {
    height: 36vh
  }

  .biography__right-part {
    width: 55%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
  }

  .biography__right-part .slick-slide img {
    height: 100vh;

  }

  .slick-dots {
    bottom: 170px;
  }

  .history__container,
  .biography__left-part-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section_history_bg {
    -webkit-clip-path: polygon(0 0, 55% 0, 20% 100%, 0 100%);
    clip-path: polygon(0 0, 55% 0, 20% 100%, 0 100%);
    background: #F1BD06;
    position: absolute;
    width: 50vw;
    height: 100vh;
    top: 0;
    z-index: -1;
  }

  .history .letters {
    display: block;
  }

  .history__left-part,
  .history__right-part {
    width: 50%;
    height: 100%;
  }

  .biography__left-part-inner {
    max-width: 610px;
  }

  .history__left-part {
    display: block;
    width: 43%;
    margin-right: 40px;
    margin-bottom: 0;
  }

  .history__left-part a {
    width: 100%;
  }

  .history__left-part a:first-child {
    margin-bottom: 22px;
  }

  .history__left-part_slider .history__left-part_item{
    flex-direction: column;
  }

  .letters {
    zoom: 0.85;
  }

  .figures_section_bg {
    -webkit-clip-path: polygon(0 0, 55% 0, 20% 100%, 0 100%);
    clip-path: polygon(0 0, 34% 0, 0% 100%, 0 100%);
    background: #F1BD06;
    position: absolute;
    width: 30vw;
    height: 60vh;
    top: -1px;
    z-index: -1;
  }

  .figures__title {
    font-size: 45px;
  }

  .figures__slider .slick-slide {
    margin: 0 25px;
  }

  .footer__container {
    padding-top: 33px;
    padding-bottom: 30px;
  }

  .footer__left-part p,
  .footer__right-part p {
    font-size: 22px;
  }

  .footer__left-part p {
    margin-right: 45px;
  }

  .footer__right-part p {
    margin-right: 25px;
  }

  .footer__left-part li {
    margin-right: 17px;
  }

  .footer__icons {
    width: 40px;
    height: 40px;
  }

  .icon-inst {
    width: 16px;
    height: 16px;
  }

  .icon-yt,
  .icon-twitter,
  .icon-tik-tok{
    width: 19px;
    height: 19px;
  }

  .icon_itunes{
    width: 29px;
    height: 29px;
  }

  .icon-fb,
  .icon-headphones {
    width: 18px;
    height: 19px;
  }

  .reward__slider-item::before {
    height: 225px;
  }

  .reward__slider-item p {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .reward__slider-item span {
    font-size: 18px;
    line-height: 140%;
  }

  .reward {
    position: relative;
  }

  .reward .letters {
    display: block;
  }

  .logo {
    width: 313px;
    height: 39px;
    margin-top: 29px;
    margin-bottom: 35px;
  }

  .menu__list li {
    font-weight: 500;
    height: 100%;

  }

  .university__wrap {
    display: flex;
    margin-top: 170px;
  }

  .btn__img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    height: 73px;
    margin-bottom: 65px;
  }

  .university__line {
    width: 1px;
    height: 140px;
    background-color: #668FE2;
    margin-right: 104px;
    margin-left: 104px;
    margin-top: -40px;
  }

  .section__university-bg {
    -webkit-clip-path: polygon(0 0, 55% 0, 20% 100%, 0 100%);
    clip-path: polygon(0 0, 55% 0, 20% 100%, 0 100%);
    background: #668FE2;
    position: absolute;
    width: 50vw;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: -1;
    transform: scale(-1, 1);
  }

  .slider__container {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-around;
  }

  .books__container .books__slider {
    max-width: 75%;
  }

  .arrow__big-left,
  .arrow__big-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99px;
    height: 99px;
    border-radius: 50%;
    border: 1px solid #3066C2;
    margin: auto 0;
  }

  .arrow__big-left .icon__arrow,
  .arrow__big-right .icon__arrow {
    width: 28px;
    height: 27px;
    stroke-width: 0.5;
  }

  .arrow__big-left .icon__arrow {
    transform: rotate(0.5deg);
  }



  .arrow__big-left:hover,
  .arrow__big-right:hover,
  .arrow__big-left:focus,
  .arrow__big-right:focus {
    background-color: var(--main-blue-color);
  }

  .arrow__big-left:hover .icon__arrow,
  .arrow__big-right:hover .icon__arrow,
  .arrow__big-left:focus .icon__arrow,
  .arrow__big-right:focus .icon__arrow {
    stroke: var(--main-light-color);
  }

  .books__slider-item img {
    width: auto;
    height: auto;
    margin-bottom: 7px;
  }

  .project__article,
  .project__article-two {
    position: relative;
  }

  .project__article .letters,
  .project__article-two .letters {
    display: block;
  }

  .project__article-item img {
    width: 665px;
    height: 461px;

  }

  .project__article-wrap {
    display: flex;
    justify-content: space-between;
  }

  .project__article-left-part,
  .project__article-right-part,
  .project__article-two-left-part,
  .project__article-two-right-part {
    width: 45%;
  }

  .project__article-right-part {
    /*margin-top: -120px;*/
  }

  .project__article-slider-big .project__article-item img {
    width: 100%;
  }

  .project__article .fp-overflow {
    overflow-y: auto;
  }

  .section__project-article-right-bg {
    -webkit-clip-path: polygon(80% 0, 100% 0%, 100% 100%, 55% 100%);
    clip-path: polygon(80% 0, 100% 0%, 100% 100%, 55% 100%);
    background-color: var(--main-yellow-color);
    position: absolute;
    width: 30vw;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: -1;
  }

  .menu__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu__item .sub__menu {
    display: block;
    position: absolute;
    top: 103px;
    left: -69px;
    overflow: hidden;
    max-height: 0;

    transition: max-height 0.5s ease-in-out;
  }
  .menu__item:hover .sub__menu {

    max-height: 300px;
    transition: max-height 0.5s ease-in-out;
  }


  .sub__menu-item {
    display: block;
    background-color: #E7F0FF;
    width: 256px;
    border-bottom: 1px solid #ABBFE0;
    padding-top: 16px;
    padding-bottom: 16px
  }

  .sub__menu-item:last-child {
    border-radius: 0px 0px 20px 20px;
  }

  .sub__menu-item:hover {
    color: var(--main-yellow-color);
  }

  .sub__menu-item a {
    display: block;
    width: 256px;
    background-color: #E7F0FF;
  }

  .home__container {
    padding-top: 0;
  }

  .home .letters {
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  .home__title {
    font-size: 96px;
    margin-bottom: 28px;
  }

  .home__right-part img {
    width: 820px;
    right: 100px;
  }

  .section__home-bg {
    width: 60vw;
    right: 0;
  }

  .books .letters,
  .photo-gallery .letters,
  .restaurant-chain .letters {
    display: block;
  }

  .photo-gallery__slider .slick-dots {
    bottom: 60px;
  }

  .restaurant-chain__part {
    margin-bottom: 50px;
  }

  .restaurant__logo img {
    width: 200px;
    height: auto;
    margin-bottom: 0;
  }

  .restaurant__title {
    font-size: 28px;
    margin-bottom: 27px;
  }

  .restaurant-chain__part-text {
    width: 46%;
  }

  .restaurant-chain__part-text p {
    font-size: 22px;
  }

  .btn__map {
    font-size: 28px;
    margin-top: 0;
  }

  .btn__map img {
    width: 57px;
    height: 57px;
    margin: 0 auto 13px auto;
  }


}

@media screen and (min-width: 1200px) {
  .person__container-inner {
    bottom: 184px;
  }

}

@media screen and (min-width: 1370px) {
  .home__container {
    display: flex;
    align-items: center;
  }

  .section__home-bg {
    width: 45vw;
  }

}


@media screen and (min-width: 1440px) {
  .video {
    padding-bottom: 52%;
  }
  .container {
    max-width: 1515px;
    zoom: 0.8;
  }

  .project__article-right-part .project__article-slider .slick-dots {
    position: static;
  }
  .biography__left-part {
    zoom: 0.8;
    margin-right: 0;
  }

  .history__left-part {
    width:492px;
  }

  .letters .img__m {
    top: -100px;
    width: 291px;
    height: auto;
    margin-right: -26px;
  }

  .letters .img__p {
    top: 80px;
    right: -22px;
    width: 349px;
    height: auto;
  }

}

@media screen and (min-width: 1515px) {}

@media screen and (min-width: 1600px) {
  .video {
    padding-bottom: 55%;
  }
  .container,
  .biography__left-part {
    zoom: 0.88;
  }

  .letters {
    zoom: 1;
  }
}

@media screen and (min-width: 1745px) {

  .container,
  .biography__left-part {
    zoom: 1;
  }

  .history__wrap {
    justify-content: space-between;
  }
}

/* .figures .fp-overflow::-webkit-scrollbar {
  display: none;
}
.figures .fp-overflow {
  -ms-overflow-style: none;
  scrollbar-width: none;
} */

.figures__slider .slick-list::-webkit-scrollbar {
  /* display: none; */
  opacity: 0;
}

.figures__slider .slick-list {
  -ms-overflow-style: none;
  scrollbar-width: 0;
}

.figures .fp-overflow::-webkit-scrollbar-thumb {
  background-color: rgb(0 0 0 / 0%) !important;
}

.fp-section {
  z-index: 0;
}

.fp-section:last-of-type .hero_custom_next_screen_btn{
  display:none!important;
}
.bottom_marque_string_container {

  overflow: hidden;
  white-space: nowrap;
}

.bottom_marque_string_container span img{
  float: left;
}



.loader_container .bottom_marque_string_container span {
  display: flex;
  flex-wrap: nowrap;
  margin-right: 20px;
  animation: marquee_loader 20s linear infinite;
  white-space: nowrap;
}
.loader_container .bottom_marque_string_overflow .bottom_marque_string_container span{
  animation-direction:reverse;
}

@keyframes marquee_loader {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}



@keyframes marquee_first {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes marquee_second {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes marquee_third {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.content_marque_string_first span{
  display: flex;
  flex-wrap: nowrap;
  margin-right: 20px;
  animation: marquee_first 20s linear infinite;
}

.content_marque_string_second span{
  display: flex;
  flex-wrap: nowrap;
  margin-right: 20px;
  animation: marquee_second 20s linear infinite;
  animation-direction:reverse;
}

.content_marque_string_third span{
  display: flex;
  flex-wrap: nowrap;
  margin-right: 20px;
  animation: marquee_third 20s linear infinite;
}

.landscape_error{
  display:none;
}

.secondary__title_hidden{
  /*  display:none;*/
}

@media screen and (max-device-height: 600px) and (pointer:none), (pointer:coarse) and (orientation: landscape) {
  .landscape_error {
    position:fixed;
    left:0;
    top:0;
    z-index: 99999999999;
    width:100%;
    height:100%;
    display: none;
    background:var(--main-blue-color);
  }

  .landscape_error_holder{
    display: flex;
    margin:auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color:#fff;
    font-size:20px;
  }

  .landscape_error_icon{
    background:#fff;
    width:120px;
    height:120px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:30px;
  }

  .landscape_error_holder img{
    width:85px;
    height:85px;
    animation: wheel 2s infinite 1s;
    animation-fill-mode: both;
    -webkit-animation: wheel 2s infinite 1s;
    -webkit-animation-fill-mode: both;
  }
    @keyframes wheel {
      from {
        transform: rotate(-90deg);
      }
      to {
        transform:rotate(0deg);
      }
    }
    @-webkit-keyframes wheel {
      from {
        transform:rotate(-90deg);
      }
      to {
        transform:rotate(0deg);
      }
    }
}


body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:1111199992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}
