/*
0-600px:     Phone
600-900px:   Tablet Portrait
900-1200px:   Tablet Landscape
[1200-1800] is where our normal styles apply
1800px + :    Big desktop
*/

/*
$breakpoint argument choises:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography / general layout + grid / page layout / components 
1em - 16px;
*/

:root.en {
  --color-primary: #2100ff;
  --color-secondary: #ff0000;
  --color-light-1: #fff;
  --color-bg-primary: #2100ff;
  --color-bg-secondary: #ff0000;
  --border-primary: 3px solid #2100ff;
  --border-secondary: 3px solid #ff0000;
  --border-transparent: 3px solid #fff;
}

:root.ka {
  --color-primary: #ff0000;
  --color-secondary: #2100ff;
  --color-light-1: #fff;
  --color-bg-primary: #ff0000;
  --color-bg-secondary: #2100ff;
  --border-primary: 3px solid #ff0000;
  --border-secondary: 3px solid #2100ff;
  --border-transparent: 3px solid #fff;
}

@-webkit-keyframes loader {
  0% {
    background-size: 0%;
  }

  100% {
    background-size: 200%;
  }
}

@keyframes loader {
  0% {
    background-size: 0%;
  }

  100% {
    background-size: 200%;
  }
}

@-webkit-keyframes loader2 {
  0% {
    background-size: 0%;
  }

  100% {
    background-size: 120%;
  }
}

@keyframes loader2 {
  0% {
    background-size: 0%;
  }

  100% {
    background-size: 120%;
  }
}

@-webkit-keyframes loader3 {
  0% {
    background-size: 120%;
  }

  100% {
    background-size: 200%;
  }
}

@keyframes loader3 {
  0% {
    background-size: 120%;
  }

  100% {
    background-size: 200%;
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}

@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 37.5em) {
  html {
    font-size: 62.5%;
  }
}

body {
  box-sizing: border-box;
  margin: 0 !important;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
  /* Standard syntax */
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
label,
a,
li {
  -moz-user-select: text !important;
  -webkit-user-select: text !important;
  -ms-user-select: text !important;
      user-select: text !important;
  /* Standard syntax */
}

div.tutorial__item span {
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
      user-select: none !important;
  /* Standard syntax */
}

img {
  width: 100%;
}

#app {
  min-height: 100vh;
}

.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  /*height: 100vh;*/
  /*overflow: hidden;*/
}

.loader__progress {
  height: 15px;
  width: 80%;
  margin: auto;
  margin-top: 30px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-repeat: no-repeat;
  border: 2px solid #000;
  background-image: linear-gradient(90deg, #000, #000 70%, #000 70%, transparent 70%);
  -webkit-animation: loader2 15s ease-in-out;
          animation: loader2 15s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.loader__progress-second {
  background-image: linear-gradient(90deg, #000, #000 100%, #000 100%, transparent 100%);
  -webkit-animation: loader3 7s ease-in-out;
          animation: loader3 7s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.loader__progress-white {
  height: 15px;
  width: 80%;
  margin: auto;
  margin-top: 30px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  background-image: linear-gradient(90deg, #fff, #fff 50%, #fff 50%, transparent 50%);
  -webkit-animation: loader2 3s ease-in-out;
          animation: loader2 3s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.loader__img {
  width: 140px;
}

.loader__img.hidden {
  visibility: hidden;
}

@media (max-width: 37.5em) {
  .loader__img.hidden {
    visibility: visible;
  }
}

.webgl-content {
  z-index: 5;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
      user-select: none !important;
  /* Standard syntax */
}

.content {
  max-width: 0px;
  max-height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
  background: #fff;
  display: none;
  box-sizing: border-box;
}

.content-part {
  position: relative;
  z-index: 9;
  background: #fff;
}

.content.active {
  max-width: 48vw;
  opacity: 1;
  display: block;
}

@media (max-width: 56.25em) {
  .content.active {
    max-width: 100vw;
  }

  .content {
    padding-top: 12rem;
  }
}

@media (max-width: 37.5em) {
  .content {
    padding: 0;
    padding-top: 8rem;
  }
}

.content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 3px solid;
  position: relative;
}

@media (max-width: 56.25em) {
  .content__header {
    display: none;
  }
}

.content__title {
  flex-grow: 2;
}

.content__langs {
  font-size: 2rem;
}

.content__langs_ka {
  color: #ff0000;
}

.content__langs_en {
  color: #2100ff;
}

.content__langs_ua {
  color: #0e9530;
}

.content__lang {
  text-decoration: none;
  padding: 0px 3px;
}

.content__lang.active {
  display: none;
}

.content__close {
  width: 25px;
  height: 25px;
  display: block;
  cursor: pointer;
}

.content__close span {
  display: inline-block;
  height: 2px;
  width: 100%;
  position: relative;
}

.content__close span::before,
.content__close span::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 2px;
  background: var(--color-primary);
}

.content__close span::before {
  transform: rotate(135deg);
}

.content__close span:after {
  transform: rotate(-135deg);
}

.content__wrapper {
  padding: 0 5rem;
  height: 100vh;
  padding-top: 2rem;
  max-height: 100%;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  /* width */
  /* Track */
  /* Handle */
  padding-bottom: 10rem;
}

.content__wrapper::-webkit-scrollbar {
  width: 7px;
}

.content__wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

.content__wrapper::-webkit-scrollbar-button:horizontal:decrement:hover {
  /* Select the down or left scroll button when it's being hovered by the mouse */
}

.content__wrapper::-webkit-scrollbar-track {
  background: #fff;
}

.content__wrapper::-webkit-scrollbar-thumb {
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.content__wrapper:hover {
  /* Handle */
}

.content__wrapper:hover::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

@media (max-width: 1366px) {
  .content__wrapper {
    padding: 3rem;
  }
}

@media (max-width: 56.25em) {
  .content__wrapper {
    padding: 2rem 5rem;
  }
}

@media (max-width: 37.5em) {
  .content__wrapper {
    padding: 3rem;
    padding-top: 0rem;
  }
}

@media (max-width: 37.5em) {
  .content__wrapper.post {
    padding-left: 0;
    padding-right: 0;
  }
}

.content__item {
  position: absolute;
  top: 0;
  display: none;
  visibility: hidden;
}

.content__item.active {
  display: block;
  visibility: visible;
}

.content__item img {
  width: 100%;
}

@media (max-width: 56.25em) {
  .content__item {
    padding-bottom: 17rem;
  }
}

.text {
  padding-bottom: 5rem;
}

.text__h2 {
  font-size: 2rem;
  border-bottom: 3px solid;
  padding-bottom: 4px;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.text__h3 {
  font-size: 2.4rem;
  font-weight: 100;
}

.text__p {
  font-size: 2rem;
  padding-bottom: 2rem;
  margin-right: 2rem;
}

.text ol {
  font-size: 2rem;
  padding-bottom: 2rem;
  margin-left: 3rem;
}

.ka .page__title {
  font-size: 10rem;
}

@media (max-width: 1400px) {
  .ka .page__title {
    font-size: 8rem;
  }
}

@media (max-width: 37.5em) {
  .ka .page__title {
    font-size: 5rem;
  }
}

.page__title {
  font-family: "SharpGrotesk";
  font-size: 16rem;
  line-height: 16rem;
  font-weight: 100;
  text-transform: lowercase;
  font-family: "Noto Sans Light";
  transition: font-size 0.3s;
}

.page__title-block {
  border-bottom: 3px solid;
}

.page__title-xs {
  font-size: 11rem;
  line-height: 12rem;
}

@media (max-width: 1400px) {
  .page__title {
    font-size: 10rem;
    line-height: initial;
  }
}

@media (max-width: 1366px) {
  .page__title {
    font-size: 8rem;
  }
}

@media (max-width: 75em) {
  .page__title {
    font-size: 7rem;
  }
}

@media (max-width: 37.5em) {
  .page__title {
    font-size: 5rem;
  }
}

.floor__number {
  min-width: 3rem;
  max-width: 3rem;
  min-height: 3rem;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-light-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor__link {
  text-decoration: none;
  color: currentColor;
}

.read-more {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 900;
}

iframe {
  width: 100%;
}

.space-beetwen {
  justify-content: space-between !important;
}

.call-data {
  cursor: pointer;
}

.building__navigation--zoom {
  position: fixed;
  display: inline-block;
  top: 5rem;
  left: 5rem;
  z-index: 9;
}

@media (max-width: 37.5em) {
  .building__navigation--zoom {
    top: 3rem;
    left: 3rem;
    z-index: 15;
  }
}

.building__navigation--rotate {
  position: fixed;
  display: inline-block;
  bottom: 5rem;
  left: 5rem;
  z-index: 9;
}

@media (max-width: 37.5em) {
  .building__navigation--rotate {
    bottom: 3rem;
    left: 3rem;
  }
}

.building__navigation--floor-switcher {
  position: fixed;
  display: inline-block;
  bottom: 5rem;
  right: 5rem;
  z-index: 9;
}

@media (max-width: 37.5em) {
  .building__navigation--floor-switcher {
    bottom: 3rem;
    right: 3rem;
  }
}

.building__navigation--icon {
  width: 3rem;
  cursor: pointer;
  -webkit-user-select: none;
}

.building__nav--icon {
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
      user-select: none !important;
  /* Standard syntax */
}

.building__nav--icon.top-layer {
  z-index: 9999999;
}

.bottom-clearfix {
  margin-bottom: 5rem;
}

@media (max-width: 56.25em) {
  .bottom-clearfix {
    margin-bottom: 10rem;
  }
}

.webgl {
  position: fixed;
  bottom: 0;
  height: 20px;
  width: 50px;
  border: 3px solid red;
  left: 50vw;
  z-index: 99999;
}

.content__loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--color-primary);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  display: none;
}

.content__loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.content__loader.active {
  z-index: 99999;
  display: flex;
}

.swiper-container {
  width: 100%;
  height: 600px;
}

@media (max-width: 37.5em) {
  .swiper-container {
    height: 300px;
  }
}

.swiper-slide {
  text-align: center;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-button-prev {
  background: url(/assets/img/svg/arrow-prev.svg), #fff;
  background-repeat: no-repeat;
  top: 101% !important;
  width: 50% !important;
  height: 20px !important;
  left: 0 !important;
}

.swiper-button-prev:after {
  font-size: 0 !important;
}

.swiper-button-next {
  background: url(/assets/img/svg/arrow-next.svg), #fff;
  background-repeat: no-repeat;
  top: 101% !important;
  width: 50% !important;
  height: 20px !important;
  right: 0 !important;
  background-position: right !important;
}

.swiper-button-next:after {
  font-size: 0 !important;
}

.ka .page__title {
  font-weight: 800;
}

.mobile_lang {
  padding: 1rem 3rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 12;
  background: #fff;
}

@media (max-width: 37.5em) {
  .mobile_lang {
    display: block;
  }
}

@font-face {
  font-family: "Noto Sans Regular";
  src: url(/fonts/NotoSans-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Noto Sans Light";
  src: url(/fonts/NotoSans-Light.ttf) format("truetype");
}

@font-face {
  font-family: "Noto Sans Bold";
  src: url(/fonts/NotoSans-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "HelveticaNeue";
  src: url(/fonts/HelveticaNeue.ttc) format("truetype");
}

@font-face {
  font-family: "HelveticaNeueLight";
  src: url(/fonts/HelveticaNeueLight.ttf) format("truetype");
}

@font-face {
  font-family: "HelveticaNeueLt";
  src: url(/fonts/HelveticaNeueLt.ttf) format("truetype");
}

@font-face {
  font-family: "SharpGrotesk";
  src: url("/fonts/SharpGrotesk-Light20.ttf") format("truetype"), url("/fonts/SharpGrotesk-Light20.otf") format("OpenType");
}

body {
  font-family: "HelveticaNeue";
  font-size: 1.6rem;
}

.en body {
  font-family: "HelveticaNeue";
}

.ka body {
  font-family: "Noto Sans Regular";
}

p {
  font-size: 1.6rem;
  color: inherit;
  font-family: inherit !important;
}

p a {
  color: inherit;
}

.heading-plain {
  font-size: 1.6rem;
  font-weight: 100;
  color: currentColor;
}

.heading-underlined {
  text-decoration: underline;
}

.heading-uc {
  text-transform: capitalize;
}

.pt__0 {
  padding-top: 0;
}

.pt__1 {
  padding-top: 1rem;
}

.pt__2 {
  padding-top: 2rem;
}

.pt__3 {
  padding-top: 3rem;
}

.pt__4 {
  padding-top: 4rem;
}

.pt__5 {
  padding-top: 5rem;
}

.pb__0 {
  padding-bottom: 0;
}

.pb__1 {
  padding-bottom: 1rem;
}

.pb__2 {
  padding-bottom: 2rem;
}

.pb__3 {
  padding-bottom: 3rem;
}

.pb__4 {
  padding-bottom: 4rem;
}

.pb__5 {
  padding-bottom: 5rem;
}

.pl__0 {
  padding-left: 0;
}

.pl__1 {
  padding-left: 1rem;
}

.pl__2 {
  padding-left: 2rem;
}

.pl__3 {
  padding-left: 3rem;
}

.pl__4 {
  padding-left: 4rem;
}

.pl__5 {
  padding-left: 5rem;
}

.pr__0 {
  padding-right: 0;
}

.pr__1 {
  padding-right: 1rem;
}

.pr__2 {
  padding-right: 2rem;
}

.pr__3 {
  padding-right: 3rem;
}

.pr__4 {
  padding-right: 4rem;
}

.pr__5 {
  padding-right: 5rem;
}

.mt__0 {
  margin-top: 0;
}

.mt__1 {
  margin-top: 1rem;
}

.mt__2 {
  margin-top: 2rem;
}

.mt__3 {
  margin-top: 3rem;
}

.mt__4 {
  margin-top: 4rem;
}

.mt__5 {
  margin-top: 5rem;
}

.mb__0 {
  margin-bottom: 0;
}

.mb__0-5 {
  margin-bottom: 0.5rem;
}

.mb__1 {
  margin-bottom: 1rem;
}

.mb__2 {
  margin-bottom: 2rem;
}

.mb__3 {
  margin-bottom: 3rem;
}

.mb__4 {
  margin-bottom: 4rem;
}

.mb__5 {
  margin-bottom: 5rem;
}

.ml__0 {
  margin-left: 0;
}

.ml__1 {
  margin-left: 1rem;
}

.ml__2 {
  margin-left: 2rem;
}

.ml__3 {
  margin-left: 3rem;
}

.ml__4 {
  margin-left: 4rem;
}

.ml__5 {
  margin-left: 5rem;
}

.mr__0 {
  margin-right: 0;
}

.mr__1 {
  margin-right: 1rem;
}

.mr__2 {
  margin-right: 2rem;
}

.mr__3 {
  margin-right: 3rem;
}

.mr__4 {
  margin-right: 4rem;
}

.mr__5 {
  margin-right: 5rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.bb__1 {
  border-bottom: 1px solid currentColor;
}

.bb__2 {
  border-bottom: 2px solid currentColor;
}

.bb__3 {
  border-bottom: 3px solid currentColor;
}

.bb__4 {
  border-bottom: 4px solid currentColor;
}

.bb__5 {
  border-bottom: 5px solid currentColor;
}

.bb__1-transparent {
  border-bottom: 1px solid #fff;
}

.bb__2-transparent {
  border-bottom: 2px solid #fff;
}

.bb__3-transparent {
  border-bottom: 3px solid #fff;
}

.bb__4-transparent {
  border-bottom: 4px solid #fff;
}

.bb__5-transparent {
  border-bottom: 5px solid #fff;
}

.bt__1 {
  border-top: 1px solid currentColor;
}

.bt__2 {
  border-top: 2px solid currentColor;
}

.bt__3 {
  border-top: 3px solid currentColor;
}

.bt__4 {
  border-top: 4px solid currentColor;
}

.bt__5 {
  border-top: 5px solid currentColor;
}

.box__5 {
  width: 5rem !important;
  min-width: 5rem;
}

.box__20 {
  width: 20rem !important;
  min-width: 20rem;
}

.box__25 {
  width: 25rem !important;
  min-width: 25rem;
}

.plain-ul {
  list-style: none;
}

.plain-a {
  text-decoration: none;
}

body {
  color: var(--color-primary);
}

body .content__close_span::before {
  background: var(--color-primary);
}

body .content__close_span::after {
  background: var(--color-primary);
}

.tutorial {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
  /* Standard syntax */
}

.tutorial .ka,
.tutorial .en {
  display: none;
}

.tutorial.top-layer {
  opacity: 1;
  z-index: 8;
  background: #fff;
}

.tutorial__item {
  max-width: 12vw;
  min-width: 8rem;
  position: absolute;
}

@media (max-width: 37.5em) {
  .tutorial__item {
    max-width: 30vw;
  }
}

.tutorial__switcher {
  position: fixed;
  width: 120px;
  height: calc(100vh - 30rem);
  top: 15rem;
  bottom: 15rem;
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: center;
  color: gray;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
}

@media (max-width: 37.5em) {
  .tutorial__switcher {
    width: 80px;
    right: 0px;
  }
}

.tutorial__btn {
  transform: rotate(-90deg);
  cursor: pointer;
  min-width: 300%;
  text-align: center;
}

@media (max-width: 37.5em) {
  .tutorial__btn {
    transform: rotate(90deg);
  }
}

.tutorial__btn:hover {
  color: var(--color-primary);
}

.tutorial__btn.active::after {
  content: "X";
  padding-left: 25px;
}

.top-left {
  top: 5rem;
  left: 11rem;
}

@media (max-width: 37.5em) {
  .top-left {
    left: 3rem;
    top: 9rem;
  }
}

.top-right {
  top: 5rem;
  right: 30rem;
}

@media (max-width: 37.5em) {
  .top-right {
    right: 3rem;
    top: 9rem;
  }
}

.bottom-left {
  bottom: 5rem;
  left: 11rem;
}

@media (max-width: 37.5em) {
  .bottom-left {
    left: 3rem;
    bottom: 10rem;
  }
}

.bottom-right {
  bottom: 5rem;
  right: 11rem;
}

@media (max-width: 37.5em) {
  .bottom-right {
    right: 3rem;
    bottom: 10rem;
  }
}

.center {
  max-width: 20vw !important;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  height: 400px;
  margin: auto;
}

@media (max-width: 56.25em) {
  .center {
    display: none;
  }
}

.center__item-left {
  max-width: 12rem;
  position: absolute;
  top: 31%;
  left: -80px;
}

.center__item-top {
  position: absolute;
  max-width: 12rem;
  top: -5%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.center__item-right {
  max-width: 12rem;
  position: absolute;
  top: 31%;
  right: -80px;
}

.center-top {
  bottom: 35.5%;
  width: initial;
  max-width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.en .center-top.en {
  visibility: visible;
}

.en .tutorial .en {
  display: block;
}

.ka .center-top.ka {
  visibility: visible;
}

.ka .tutorial .ka {
  display: block;
}

.ka .tutorial__item {
  max-width: 16vw;
}

@media (max-width: 37.5em) {
  .ka .tutorial__item {
    max-width: 30vw;
    font-size: 1.4rem;
  }
}

.ka .center__item-left {
  left: -120px;
}

.center-bottom {
  top: 57%;
  position: absolute;
}

.en #zoom-in {
  background-image: url("/assets/img/navigations/zoom-in.svg");
  height: 30px;
}

.en #zoom-out {
  background-image: url("/assets/img/navigations/zoom-out.svg");
  height: 30px;
}

.en #rotate-down {
  background-image: url("/assets/img/navigations/rotate-down.svg");
  height: 30px;
  background-repeat: no-repeat;
  position: relative;
  left: -5px;
}

.en #rotate-up {
  background-image: url("/assets/img/navigations/rotate-up.svg");
  height: 30px;
  background-repeat: no-repeat;
}

.en #floor-up {
  background-image: url("/assets/img/navigations/floor-up.svg");
  height: 30px;
  background-repeat: no-repeat;
}

.en #floor-down {
  background-image: url("/assets/img/navigations/floor-down.svg");
  height: 30px;
  background-repeat: no-repeat;
}

.ka #zoom-in {
  background-image: url("/assets/img/navigations/zoom-in_ka.svg");
  height: 30px;
}

.ka #zoom-out {
  background-image: url("/assets/img/navigations/zoom-out_ka.svg");
  height: 30px;
}

.ka #rotate-down {
  background-image: url("/assets/img/navigations/rotate-down_ka.svg");
  height: 30px;
  background-repeat: no-repeat;
  position: relative;
  left: -5px;
}

.ka #rotate-up {
  background-image: url("/assets/img/navigations/rotate-up_ka.svg");
  height: 30px;
  background-repeat: no-repeat;
}

.ka #floor-up {
  background-image: url("/assets/img/navigations/floor-up_ka.svg");
  height: 30px;
  background-repeat: no-repeat;
}

.ka #floor-down {
  background-image: url("/assets/img/navigations/floor-down_ka.svg");
  height: 30px;
  background-repeat: no-repeat;
}

.btn {
  text-decoration: none;
  text-transform: uppercase;
}

.btn-simple {
  color: inherit;
  font-size: 3rem;
  display: inline-block;
}

.btn__close {
  width: 25px;
  height: 25px;
  display: block;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 3rem;
  cursor: pointer;
  color: inherit;
  display: none;
}

.btn__close span {
  display: inline-block;
  height: 2px;
  width: 100%;
  position: relative;
}

.btn__close span::before,
.btn__close span::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 2px;
  background: var(--color-primary);
}

.btn__close span::before {
  transform: rotate(135deg);
}

.btn__close span:after {
  transform: rotate(-135deg);
}

@media (max-width: 56.25em) {
  .nav__close.active .btn__close {
    display: inline-block;
  }
}

.back__block {
  display: flex;
  font-size: 1.6rem;
}

@media (max-width: 37.5em) {
  .back__block {
    flex-wrap: wrap;
  }

  .back__block > *:not(.back__link) {
    padding-left: 5rem;
    max-width: 100%;
    padding-top: 2rem;
  }
}

.back__icon {
  height: 2.8rem;
  width: auto;
}

.back__link {
  display: flex;
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}

.tab__label {
  text-transform: capitalize;
  font-size: 1.6rem;
}

.tab__label-container {
  display: flex;
  justify-content: space-between;
}

.tab__label-container.flex-start {
  justify-content: flex-start;
}

@media (max-width: 56.25em) {
  .tab__label-container {
    display: none;
  }
}

.tab__label.active {
  text-decoration: underline;
}

.tab__link {
  text-decoration: none;
  color: currentColor;
}

.tab__content {
  font-size: 1.6rem;
  display: none;
  position: relative;
}

@media (max-width: 56.25em) {
  .tab__content {
    display: block;
  }
}

.tab__content.active {
  display: block;
}

.tab__content-heading {
  display: none;
  text-decoration: underline;
  font-weight: 100;
}

@media (max-width: 56.25em) {
  .tab__content-heading {
    display: block;
  }
}

.ka .tab__label-container {
  flex-wrap: wrap;
}

table,
th,
td {
  border-collapse: collapse;
}

.table {
  margin-left: -2rem;
  margin-right: -2rem;
  min-width: 100%;
}

@media (max-width: 56.25em) {
  .table {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.thead {
  font-size: 1.6rem;
}

.thead__th {
  text-align: left;
  padding: 1.5rem;
  border-bottom: var(--border-primary);
}

.thead__th:first-child {
  padding: 0 !important;
  min-width: 2rem;
  max-width: 2rem;
  border-bottom: 3px solid transparent;
}

@media (max-width: 56.25em) {
  .thead__th:first-child {
    min-width: 1rem;
    max-width: 1rem;
  }
}

.thead__th:last-child {
  padding: 0 !important;
  min-width: 2rem;
  max-width: 2rem;
  border-bottom: 3px solid transparent;
}

@media (max-width: 56.25em) {
  .thead__th:last-child {
    min-width: 1rem;
    max-width: 1rem;
  }
}

.thead__th:nth-child(7n + 2) {
  padding-left: 0;
}

.thead__th:nth-child(7n + 7) {
  padding-right: 0;
}

@media (max-width: 1400px) {
  .thead__th {
    padding: 1.1rem;
  }

  .thead__t .thead__th:nth-child(7n + 3) {
    max-width: 12rem;
  }
}

@media (max-width: 75em) {
  .thead__th:nth-child(7n + 5) {
    display: none;
  }

  .thead__th:nth-child(7n + 6) {
    display: none;
  }
}

@media (max-width: 56.25em) {
  .thead__th:nth-child(7n + 5) {
    display: table-cell;
  }

  .thead__th:nth-child(7n + 6) {
    display: table-cell;
  }
}

@media (max-width: 37.5em) {
  .thead__th:nth-child(7n + 4) {
    display: none;
  }

  .thead__th:nth-child(7n + 5) {
    display: none;
  }

  .thead__th:nth-child(7n + 6) {
    display: none;
  }
}

.ka .tbody {
  font-size: 1.3rem;
}

.tbody {
  font-size: 1.6rem;
}

.tbody__tr {
  vertical-align: top;
  position: relative;
}

.tbody__tr:hover + .tbody__tr .tbody__td {
  border-top: var(--border-transparent);
}

.tbody__tr:hover .floor__number {
  background: var(--color-light-1);
  color: var(--color-primary);
}

.tbody__tr:after {
  content: "";
  display: block;
  width: 1rem;
  background: red;
  position: absolute;
}

.tbody__tr:hover .tbody__td {
  background: var(--color-bg-primary);
  color: var(--color-light-1);
  border-top: var(--border-transparent);
}

.tbody__tr:hover .tbody__td .row-start {
  background: var(--color-bg-primary);
}

.tbody__tr:hover .tbody__td .row-end {
  background: var(--color-bg-primary);
}

.tbody__td {
  padding: 1rem;
  border-top: var(--border-primary);
  height: 1px;
}

.tbody__td:nth-child(7n + 2) {
  padding-left: 0;
}

.tbody__td:nth-child(7n + 7) {
  padding-right: 0;
}

.tbody__td:nth-child(7n + 4) {
  min-width: 20rem;
}

@media (max-width: 1400px) {
  .tbody__td:nth-child(7n + 4) {
    min-width: 10rem;
  }
}

@media (max-width: 1400px) {
  .tbody__td {
    padding: 1.1rem;
  }

  .tbody__t .tbody__td:nth-child(7n + 3) {
    max-width: 12rem;
  }
}

@media (max-width: 75em) {
  .tbody__td:nth-child(7n + 5) {
    display: none;
  }

  .tbody__td:nth-child(7n + 6) {
    display: none;
  }
}

@media (max-width: 56.25em) {
  .tbody__td:nth-child(7n + 5) {
    display: table-cell;
  }

  .tbody__td:nth-child(7n + 6) {
    display: table-cell;
  }
}

@media (max-width: 37.5em) {
  .tbody__td:nth-child(7n + 4) {
    display: none;
  }

  .tbody__td:nth-child(7n + 5) {
    display: none;
  }

  .tbody__td:nth-child(7n + 6) {
    display: none;
  }
}

.tbody__td:first-child {
  padding-left: 0;
  padding: 0 !important;
  min-width: 2rem;
  max-width: 2rem;
  border-top: 3px solid transparent;
  background: transparent !important;
}

@media (max-width: 56.25em) {
  .tbody__td:first-child {
    min-width: 1rem;
    max-width: 1rem;
  }
}

.tbody__td:last-child {
  padding-right: 0;
  padding: 0 !important;
  min-width: 2rem;
  max-width: 2rem;
  border-top: 3px solid transparent;
  background: transparent !important;
}

@media (max-width: 56.25em) {
  .tbody__td:last-child {
    min-width: 1rem;
    max-width: 1rem;
  }
}

.tbody__ul {
  list-style: none;
}

.tbody__link {
  text-decoration: none;
  color: currentColor;
}

.row-start {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  height: 100%;
}

.row-end {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  height: 100%;
}

.ka .tbody__td {
  padding: 1rem 0rem;
}

.ka .thead__th {
  font-size: 1.2rem;
}

.ul {
  list-style: none;
  font-size: 1.6rem;
}

.li__link {
  color: currentColor;
}

.li__underlined {
  text-decoration: underline;
}

.filter {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 75em) {
  .filter {
    flex-wrap: wrap;
  }
}

.filter__ul {
  /* width */
  /* Track */
  /* Handle */
}

.filter__ul:not(:last-child) {
  overflow: auto;
}

.filter__ul::-webkit-scrollbar {
  width: 7px;
}

.filter__ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

.filter__ul::-webkit-scrollbar-button:horizontal:decrement:hover {
  /* Select the down or left scroll button when it's being hovered by the mouse */
}

.filter__ul::-webkit-scrollbar-track {
  background: #fff;
}

.filter__ul::-webkit-scrollbar-thumb {
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.filter__ul:hover {
  /* Handle */
}

.filter__ul:hover::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

.filter__item,
.filter__item-result {
  max-height: 4rem;
  overflow: hidden;
  transition: all 0.2s;
  min-width: 30%;
  max-width: 30%;
}

.filter__item.active,
.filter__item-result.active {
  max-height: 16rem;
}

@media (max-width: 37.5em) {
  .filter__item,
  .filter__item-result {
    min-width: 32%;
    max-width: 32%;
  }
}

.filter__inp {
  min-width: 100%;
}

.filter__inp input {
  font-size: 1.6rem;
}

.filter__inp input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  font-size: 1.6rem;
}

.filter__inp input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-size: 1.6rem;
}

.filter__inp input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-size: 1.6rem;
}

.filter__inp input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 1.6rem;
}

.filter__item-result {
  padding-left: 15px;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.filter__item-result.active {
  visibility: visible;
  opacity: 1;
}

.filter__item-result:not(:last-child)::before {
  content: "";
  display: block;
  height: 2px;
  width: 12px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 7px;
  transform: rotate(-45deg);
}

.filter__item-result:not(:last-child)::after {
  content: "";
  display: block;
  height: 2px;
  width: 12px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 7px;
  transform: rotate(45deg);
}

.filter__item-result-container {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 75em) {
  .filter__item-result-container {
    flex-wrap: wrap;
  }
}

.filter__item.active .filter__select:after {
  transform: rotate(180deg);
}

.filter__select {
  background: var(--color-bg-primary);
  color: var(--color-light-1);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  padding-right: 3rem;
  position: relative;
  cursor: pointer;
}

.filter__select:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #fff;
  position: absolute;
  right: 10px;
  top: 12px;
  transition: all 0.15s;
}

@media (max-width: 37.5em) {
  .filter__select:after {
    top: 15px;
  }
}

.filter__ul {
  list-style: none;
  max-height: 9rem;
}

.filter__link {
  text-decoration: none;
  color: currentColor;
  text-transform: capitalize;
}

.filter__li:hover .filter__link {
  text-decoration: underline;
}

.filter__input {
  height: 3rem;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  background: url(/images/search.svg?0e65c5ef89dfb2e2fe3e8d0637419d63), var(--color-bg-primary);
  color: var(--color-light-1);
  border: 0;
  max-width: 100%;
  min-width: 100%;
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 16px;
}

.calendar__table {
  width: 100%;
}

.calendar__td {
  text-align: center;
  cursor: context-menu;
  font-weight: 900;
}

.calendar__td:not(:last-child) {
  border-right: 2px solid;
}

.calendar__td:not(:last-child) {
  padding-bottom: 5px;
}

.calendar__td.disabled-td {
  color: #cccccc;
}

.calendar__td.active .calendar__day,
.calendar__td:focus .calendar__day,
.calendar__td:hover .calendar__day {
  color: var(--color-secondary);
}

.calendar__switcher {
  display: flex;
  justify-content: space-between;
}

.calendar__switcher-text {
  color: var(--color-secondary);
}

.tooltip {
  background: var(--color-bg-primary);
  color: var(--color-light-1);
  border-radius: 15px;
  padding: 10px;
  min-height: 3rem;
  overflow: auto;
}

.tooltip__container {
  position: fixed;
  max-width: 320px;
  min-width: 30rem;
  opacity: 0;
  transition: all 0.3s;
  z-index: 0;
  display: none;
}

@media (max-width: 56.25em) {
  .tooltip__container {
    position: fixed;
    top: 7rem !important;
    left: 0 !important;
    right: 0;
    bottom: 0;
    max-width: 100%;
    padding: 2rem;
  }
}

.tooltip__container:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 88px solid var(--color-primary);
  border-bottom: 20px solid transparent;
  transform: rotate(-38deg);
  margin-left: -20px;
  z-index: -1;
  position: absolute;
}

@media (max-width: 56.25em) {
  .tooltip__container:after {
    display: none;
  }
}

.tooltip__container.active {
  opacity: 1;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.82);
  display: block;
}

.tooltip__header {
  display: flex;
  justify-content: space-between;
}

.tooltip__list {
  list-style: none;
}

.tooltip__scroll {
  max-height: 45vh;
  overflow: auto;
  padding: 2px;
  /* Track */
  /* Handle */
}

@media (max-width: 56.25em) {
  .tooltip__scroll {
    max-height: 80vh;
  }
}

.tooltip__scroll::-webkit-scrollbar {
  width: 7px;
}

.tooltip__scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

.tooltip__scroll::-webkit-scrollbar-button:horizontal:decrement:hover {
  /* Select the down or left scroll button when it's being hovered by the mouse */
}

.tooltip__scroll::-webkit-scrollbar-track {
  background: var(--color-primary);
}

.tooltip__scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.tooltip__scroll:hover {
  /* Handle */
}

.tooltip__scroll:hover::-webkit-scrollbar-thumb {
  background: #fff;
}

.tooltip__item:not(:last-child) {
  padding-bottom: 1.3rem;
  border-bottom: 2px solid;
  margin-bottom: 1.3rem;
}

.tooltip__level {
  min-width: 10rem;
  text-align: right;
}

.tooltip__close {
  display: none;
}

.tooltip__close-btn {
  width: 25px;
  height: 25px;
  display: block;
  cursor: pointer;
}

.tooltip__close-btn_span {
  display: inline-block;
  height: 2px;
  width: 100%;
  position: relative;
}

.tooltip__close-btn_span::before,
.tooltip__close-btn_span::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 2px;
}

.tooltip__close-btn_span::before {
  transform: rotate(135deg);
}

.tooltip__close-btn_span:after {
  transform: rotate(-135deg);
}

@media (max-width: 56.25em) {
  .tooltip__container.active .tooltip__close {
    display: block;
    position: absolute;
    top: -30px;
  }

  .tooltip__container.active .tooltip__close .btn__close {
    display: inline-block;
  }
}

.pagination {
  display: flex;
  position: absolute;
  bottom: 0px;
  left: -5rem;
  right: -5rem;
  padding: 1.5rem 5rem;
  justify-content: space-between;
  align-items: center;
  background: var(--color-light-1);
  z-index: 1;
  bottom: -10rem;
}

@media (max-width: 37.5em) {
  .pagination {
    padding: 1.5rem 3rem;
    transform: translateY(-108%);
    box-sizing: content-box;
    bottom: 40px;
  }
}

.pagination-item {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.pagination-item.hidden {
  visibility: hidden;
}

.nav {
  min-width: 22.4rem;
  max-height: 120px;
  position: absolute;
  top: 4rem;
  right: 5rem;
  color: var(--color-primary);
  z-index: 11;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
      user-select: none !important;
  /* Standard syntax */
}

.nav__tutorial {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
}

.nav__tutorial-span::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--color-primary);
  flex: 1;
  transform: rotate(45deg);
  transition: all 0.3s;
  position: relative;
  top: 12px;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
      user-select: none !important;
  /* Standard syntax */
}

.nav__tutorial-span::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--color-primary);
  flex: 1;
  transform: rotate(-225deg);
  transition: all 0.3s;
  position: relative;
  top: 9px;
}

@media (max-width: 56.25em) {
  .nav__tutorial {
    top: 20px;
    right: 30px;
  }
}

@media (max-width: 37.5em) {
  .nav__tutorial {
    top: 80px;
    right: 28px;
  }
}

.nav.top-layer {
  z-index: 9999999;
}

@media (max-width: 56.25em) {
  .nav {
    width: 100vw;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    position: fixed;
  }
}

@media (max-width: 37.5em) {
  .nav {
    max-height: 10rem;
  }

  .nav.active {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
}

.nav__header {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 56.25em) {
  .nav__header {
    padding: 3rem 5rem;
  }
}

@media (max-width: 37.5em) {
  .nav__header {
    padding: 3rem;
  }
}

.nav__close {
  display: none;
}

@media (max-width: 56.25em) {
  .nav__close {
    display: block;
  }
}

.nav__logo-ka,
.nav__logo-en {
  display: none;
}

.nav__logo-ka,
.nav__logo-en {
  position: relative;
  min-height: 35px;
}

.nav__logo_img {
  width: 22.4rem;
}

@media (max-width: 37.5em) {
  .nav__logo_img {
    max-height: 0;
    opacity: 0;
  }
}

@media (max-width: 56.25em) {
  .nav__logo {
    text-align: right;
  }
}

.nav__burger {
  position: absolute;
  display: block;
  height: 3px;
  width: 50px;
  background: var(--color-primary);
  right: 0;
  top: 0px;
  display: none;
}

@media (max-width: 37.5em) {
  .nav__burger {
    display: block;
  }
}

.nav__burger::before {
  content: "";
  display: block;
  height: 3px;
  width: 50px;
  background: var(--color-primary);
  right: 0;
  position: absolute;
  top: 15px;
}

.nav__burger::after {
  content: "";
  display: block;
  height: 3px;
  width: 50px;
  background: var(--color-primary);
  right: 0;
  position: absolute;
  top: 30px;
}

.nav__nav_container {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

@media (max-width: 56.25em) {
  .nav__nav_container {
    height: calc(100vh - 100px);
    padding: 5rem;
    padding-top: 0;
  }
}

@media (max-width: 37.5em) {
  .nav__nav_container {
    padding: 3rem;
    padding-top: 0;
  }
}

.nav__list-ka {
  display: none;
}

.nav__list-en {
  display: none;
}

.nav__item {
  list-style: none;
  line-height: 4.5rem;
  font-size: 3rem;
  border-bottom: var(--border-primary);
}

.nav__item:first-child {
  border-top: var(--border-primary);
}

@media (max-width: 56.25em) {
  .nav__item {
    line-height: 5.5rem;
  }
}

.nav__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: flex-end;
}

.nav__link:active,
.nav__link:focus {
  color: var(--color-secondary);
}

@media (hover: hover) {
  .nav:hover .nav__nav_container {
    opacity: 1;
    visibility: visible;
  }
}

@media (hover: hover) and (max-width: 56.25em) {
  .nav:hover .nav__nav_container {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 56.25em) {
  .nav.active {
    max-height: initial;
    background: #fff;
  }
}

.nav.active .nav__nav_container {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 37.5em) {
  .nav.active .nav__burger {
    display: none;
  }
}

@media (max-width: 37.5em) {
  .nav.active .nav__logo_img {
    max-height: 200px;
    opacity: 1;
  }
}

.nav.active ~ .building__navigation--zoom {
  z-index: 9;
}

.content.active ~ .building__navigation--zoom {
  z-index: 9;
}

.en .nav__logo-en {
  display: block;
}

.en .nav__list-en {
  display: block;
}

.ka .nav__logo-ka {
  display: block;
}

.ka .nav__list-ka {
  display: block;
}

.ka .nav__link {
  font-weight: 800;
  font-size: 2.4rem;
}

.sponsor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sponsor__link {
  display: block;
  width: 20%;
  padding: 1.5rem;
}

.sponsor__link:nth-child(5n + 1) {
  padding-left: 0;
  width: calc(20% - 1.5rem);
}

.sponsor__link:nth-child(5n + 5) {
  padding-right: 0;
  width: calc(20% - 1.5rem);
}

@media (max-width: 37.5em) {
  .sponsor__link:nth-child(5n + 5) {
    width: 33.3%;
    padding-right: 1.5rem;
  }
}

@media (max-width: 37.5em) {
  .sponsor__link {
    padding: 1.5rem;
    width: 33.3%;
  }

  .sponsor__link:nth-child(3n + 1) {
    padding-left: 0;
    width: calc(33.3% - 1.5rem);
  }

  .sponsor__link:nth-child(3n + 3) {
    padding-right: 0;
    width: calc(33.3% - 1.5rem);
    padding-left: 1.5rem;
  }
}

.identity {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 37.5em) {
  .identity {
    flex-wrap: wrap;
  }
}

@media (max-width: 37.5em) {
  .identity > *:nth-child(3n + 3) {
    padding-left: 5rem;
    max-width: 100%;
    padding-top: 2rem;
  }
}

.identity__title {
  max-width: 50%;
}

.identity__title-h1 {
  font-size: 1.6rem;
  font-weight: 100;
}

.project__location {
  display: flex;
  align-items: flex-start;
  font-size: 1.6rem;
}

@media (max-width: 37.5em) {
  .project__location {
    flex-wrap: wrap;
  }
}

@media (max-width: 37.5em) {
  .project__location p {
    padding-left: 5rem;
    width: 100%;
    padding-top: 1rem;
  }
}

.project__location a {
  display: block;
}

@media (max-width: 37.5em) {
  .project__location a {
    padding-left: 5rem;
    width: 100%;
    padding-top: 1rem;
  }
}

@media (max-width: 37.5em) {
  .project__content {
    margin-left: 0;
    padding-bottom: 6rem !important;
  }
}

.project__content-text img {
  width: 100% !important;
}

.project__content-text iframe {
  width: 100% !important;
}

.project__pagination {
  display: flex;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 1.5rem 5rem;
  justify-content: space-between;
  align-items: center;
  background: var(--color-light-1);
  z-index: 1;
}

@media (max-width: 37.5em) {
  .project__pagination {
    padding: 1.5rem 3rem;
    transform: translateY(-108%);
    box-sizing: content-box;
    bottom: 40px;
  }
}

.project__pagination-item {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.artist {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 37.5em) {
  .artist {
    flex-wrap: wrap;
    margin-left: 0;
  }
}

.artist__img {
  max-width: 40%;
  min-width: 40%;
  position: relative;
}

@media (max-width: 37.5em) {
  .artist__img {
    max-width: 100%;
    min-width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}

.artist__img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.post__title {
  display: flex;
}

.post__content-container {
  padding: 0 5rem;
  margin: 0 -5rem;
  background: var(--color-bg-primary);
  color: var(--color-light-1);
}

@media (max-width: 1366px) {
  .post__content-container {
    padding: 0 3rem;
    margin: 0 -3rem;
  }
}

@media (max-width: 56.25em) {
  .post__content-container {
    padding: 0 2rem;
    margin: 0 -2rem;
  }
}

@media (max-width: 37.5em) {
  .post__content-container {
    padding: 0 3rem;
  }
}

@media (max-width: 37.5em) {
  .post__content {
    margin-left: 0;
  }
}

.post__content p {
  color: inherit !important;
}

@media (max-width: 37.5em) {
  .post .back {
    padding: 2rem 3rem;
  }
}

@media (max-width: 37.5em) {
  iframe {
    max-height: initial;
    height: 230px;
  }
}

.en-us div.scrollbar-thumb {
  background: #2100ff;
}

.ka div.scrollbar-thumb {
  background: #ff0000;
}

.ua div.scrollbar-thumb {
  background: #0e9530;
}

div.scrollbar-track {
  background-color: transparent;
}

div.scroll-content {
  position: relative;
}

