@import url(https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,300;0,400;0,700;1,400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Nixie+One&display=swap);
.navigation {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  transform: scale(0.772);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: 0.5s ease;
}
.navigation__body {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
.navigation__body {
    transform: scale(0.8);
}
}
@media (max-height: 999px) {
.navigation__body {
    transform: scale(0.8);
}
}
@media (max-height: 639px) {
.navigation__body {
    transform: scale(0.7);
}
}
@media (max-width: 639px) {
.navigation__body {
    transform: scale(0.6);
}
}
@media (max-height: 459px) {
.navigation__body {
    transform: scale(0.5) translateY(30px);
}
}
.navigation.is-nav-shown {
  transform: scale(1);
}
.navigation.is-nav-shown.is-inner {
  transform: scale(0.1) translateY(20px);
  transform-origin: top;
  -webkit-animation: none;
          animation: none;
  opacity: 0;
}
.navigation.is-nav-shown .navigation__pos.-triangle, .navigation.is-nav-shown .navigation__pos.-bg .navigation__bg, .navigation.is-nav-shown .navigation__pos.-circle, .navigation.is-nav-shown .navigation__pos.-figure {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.navigation.is-nav-shown .navigation__list {
  opacity: 1;
  visibility: visible;
}
.navigation__pos {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation__pos.-triangle {
  opacity: 0.2;
}
.navigation__pos.-triangle {
  -webkit-animation: forwards infinite navigation-triangle ease 3s;
          animation: forwards infinite navigation-triangle ease 3s;
}
@media (max-width: 459px), (max-height: 459px) {
.navigation__pos.-bg {
    opacity: 0.7;
}
}
.navigation__pos.-bg .navigation__bg {
  -webkit-animation: forwards infinite navigation-bg linear 2s;
          animation: forwards infinite navigation-bg linear 2s;
}
.navigation__pos.-circle {
  -webkit-animation: forwards infinite navigation-circle linear 2s;
          animation: forwards infinite navigation-circle linear 2s;
  z-index: 2;
}
.navigation__pos.-figure {
  -webkit-animation: forwards infinite navigation-figure linear 2s;
          animation: forwards infinite navigation-figure linear 2s;
}
.navigation__triangle {
  stroke: #E4E4E4;
  fill: none;
  position: relative;
  top: -75px;
}
.navigation__circle {
  stroke: #fff;
  fill: none;
  position: relative;
}
.navigation__bg {
  width: 370px;
  height: 370px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff no-repeat center url(/img/navigation-bg.png);
  background-size: cover;
  box-shadow: 0 0 20px #F5F5F5;
  opacity: 0.9;
}
.navigation__list {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  line-height: 18px;
  transition: 1s;
  opacity: 0;
  visibility: hidden;
}
.navigation__list .navigation__link-dot:before {
  animation: alternate-reverse infinite navigation-link 1.5s ease-in;
}
.navigation__list .navigation__link-text {
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  transition: 0.5s;
}
@media (max-width: 1024px) {
.navigation__list .navigation__link-text {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
}
}
@media (max-width: 639px) {
.navigation__list .navigation__link-text {
    font-size: 22px;
}
}
.navigation__list .navigation__link-dot:before {
  transition: 1s;
}
.navigation__list:hover .navigation__link-text {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.navigation__list:hover .navigation__link-dot:before {
  opacity: 0.4;
}
.navigation__link {
  position: absolute;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.navigation__link:nth-child(1) {
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: -15.5px;
}
.navigation__link:nth-child(1) .navigation__link-text {
  transform-origin: left center;
}
@media (max-width: 459px), (max-height: 459px) {
.navigation__link:nth-child(1) .navigation__link-text {
    position: absolute;
    right: 100%;
}
}
.navigation__link:nth-child(1) .navigation__link-text-hover {
  left: 50px;
}
.navigation__link:nth-child(1) .navigation__link-dot-hover {
  left: 5px;
}
.navigation__link:nth-child(2) {
  top: 100%;
  transform: translateX(-50%);
  left: 50%;
  flex-direction: column;
  margin-top: -15.5px;
}
.navigation__link:nth-child(2) .navigation__link-text {
  transform-origin: top center;
}
@media (max-width: 459px), (max-height: 459px) {
.navigation__link:nth-child(2) .navigation__link-text {
    position: absolute;
    bottom: 100%;
}
}
.navigation__link:nth-child(2) .navigation__link-text-hover {
  top: 50px;
}
.navigation__link:nth-child(2) .navigation__link-dot-hover {
  top: 5px;
}
.navigation__link:nth-child(3) {
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  flex-direction: row-reverse;
  margin-right: -15.5px;
}
.navigation__link:nth-child(3) .navigation__link-text {
  transform-origin: right center;
}
@media (max-width: 459px), (max-height: 459px) {
.navigation__link:nth-child(3) .navigation__link-text {
    position: absolute;
    left: 100%;
}
}
.navigation__link:nth-child(3) .navigation__link-text-hover {
  right: 50px;
}
.navigation__link:nth-child(3) .navigation__link-dot-hover {
  right: 5px;
}
.navigation__link:nth-child(4) {
  bottom: 100%;
  transform: translateX(-50%);
  left: 50%;
  flex-direction: column-reverse;
  margin-bottom: -15.5px;
}
.navigation__link:nth-child(4) .navigation__link-text {
  transform-origin: bottom center;
}
@media (max-width: 459px), (max-height: 459px) {
.navigation__link:nth-child(4) .navigation__link-text {
    position: absolute;
    top: 100%;
}
}
.navigation__link:nth-child(4) .navigation__link-text-hover {
  bottom: 50px;
}
.navigation__link:nth-child(4) .navigation__link-dot-hover {
  bottom: 5px;
}
.navigation__link:hover .navigation__link-text {
  opacity: 0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
.navigation__link:hover .navigation__link-dot-hover {
  opacity: 1;
  transform: scale(1);
}
.navigation__link:hover .navigation__link-text-hover {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.navigation__link-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #C4C4C4;
  margin: 10px;
  position: relative;
}
.navigation__link-dot:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  background: #C4C4C4;
}
.navigation__link-dot-hover, .navigation__link-text-hover {
  transition: 0.5s;
  position: relative;
}
.navigation__link-dot-hover {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #E0D2BC;
  position: absolute;
  transform: scale(0);
  opacity: 0;
}
.navigation__link-dot-hover:before {
  content: "";
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: -12px;
  right: -12px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.navigation__link-text-hover {
  font-family: "Nixie One", serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
@media (max-height: 767px) {
.navigation__link-text-hover {
    font-size: 22px;
    line-height: 24px;
    font-weight: bold;
    margin: 45px;
    color: #C7AF8A;
}
.navigation__link-text-hover br {
    display: none;
}
}
@media (max-width: 1023px) {
.navigation__link-text-hover {
    font-size: 22px;
    line-height: 24px;
    font-weight: bold;
    margin: 45px;
    color: #C7AF8A;
}
.navigation__link-text-hover br {
    display: none;
}
}
@media (max-width: 639px) {
.navigation__link-text-hover {
    font-size: 18px;
}
}
@media (max-width: 459px), (max-height: 459px) {
.navigation__link-text-hover {
    display: none;
}
}
.navigation__link-text-hover span {
  color: #C7AF8A;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  font-size: 60px;
  line-height: 74px;
}
@media (max-height: 767px) {
.navigation__link-text-hover span {
    display: none;
}
}
@media (max-width: 1023px) {
.navigation__link-text-hover span {
    display: none;
}
}
@-webkit-keyframes navigation-triangle {
0% {
    transform: rotate(0deg);
}
33% {
    transform: rotate(120deg);
    opacity: 0.6;
}
66% {
    transform: rotate(240deg);
}
100% {
    transform: rotate(360deg);
}
}
@keyframes navigation-triangle {
0% {
    transform: rotate(0deg);
}
33% {
    transform: rotate(120deg);
    opacity: 0.6;
}
66% {
    transform: rotate(240deg);
}
100% {
    transform: rotate(360deg);
}
}
@-webkit-keyframes navigation-circle {
0% {
    transform: scale(1);
}
33% {
    transform: scale(0.95);
    -webkit-filter: blur(5px);
            filter: blur(5px);
}
66% {
    transform: scale(1.05);
    -webkit-filter: blur(10px);
            filter: blur(10px);
}
100% {
    transform: scale(1);
}
}
@keyframes navigation-circle {
0% {
    transform: scale(1);
}
33% {
    transform: scale(0.95);
    -webkit-filter: blur(5px);
            filter: blur(5px);
}
66% {
    transform: scale(1.05);
    -webkit-filter: blur(10px);
            filter: blur(10px);
}
100% {
    transform: scale(1);
}
}
@-webkit-keyframes navigation-figure {
0% {
    transform: scale(1);
}
50% {
    opacity: 0.3;
}
66% {
    transform: scale(0.975);
    opacity: 0.8;
}
100% {
    transform: scale(1);
}
}
@keyframes navigation-figure {
0% {
    transform: scale(1);
}
50% {
    opacity: 0.3;
}
66% {
    transform: scale(0.975);
    opacity: 0.8;
}
100% {
    transform: scale(1);
}
}
@-webkit-keyframes navigation-bg {
0% {
    opacity: 0.9;
}
33% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 110px rgba(255, 255, 255, 0.5));
            filter: drop-shadow(0 0 110px rgba(255, 255, 255, 0.5));
}
66% {
    -webkit-filter: drop-shadow(0 0 55px white);
            filter: drop-shadow(0 0 55px white);
}
100% {
    opacity: 0.9;
}
}
@keyframes navigation-bg {
0% {
    opacity: 0.9;
}
33% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 110px rgba(255, 255, 255, 0.5));
            filter: drop-shadow(0 0 110px rgba(255, 255, 255, 0.5));
}
66% {
    -webkit-filter: drop-shadow(0 0 55px white);
            filter: drop-shadow(0 0 55px white);
}
100% {
    opacity: 0.9;
}
}
@-webkit-keyframes navigation-inner-shown {
100% {
    transform: scale(0);
}
}
@keyframes navigation-inner-shown {
100% {
    transform: scale(0);
}
}
@-webkit-keyframes navigation-link {
0% {
    transform: scale(10);
    -webkit-filter: blur(5px);
            filter: blur(5px);
}
100% {
    -webkit-filter: blur(2px);
            filter: blur(2px);
}
}
@keyframes navigation-link {
0% {
    transform: scale(10);
    -webkit-filter: blur(5px);
            filter: blur(5px);
}
100% {
    -webkit-filter: blur(2px);
            filter: blur(2px);
}
}

* {
  box-sizing: border-box;
}

::-moz-selection {
  color: #000;
  background: #fff;
}

::selection {
  color: #000;
  background: #fff;
}

html {
  font-family: "Source Sans Pro", sans-serif;
  cursor: default;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
}

html, body {
  height: 100%;
}

@-webkit-keyframes isLoaded {
  from {
    z-index: 2;
  }
  to {
    z-index: initial;
  }
}

@keyframes isLoaded {
  from {
    z-index: 2;
  }
  to {
    z-index: initial;
  }
}
.app {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1D1D1D;
  color: #F5F5F5;
  -webkit-animation: fade-in 5s ease;
          animation: fade-in 5s ease;
}
.app.is-loaded .app__navigation {
  z-index: initial;
  -webkit-animation: isLoaded 2s;
          animation: isLoaded 2s;
}
.app.is-loaded .navigation-placeholder__bg:after {
  content: "";
  position: absolute;
  top: 33%;
  bottom: 33%;
  left: 33%;
  right: 33%;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: infinite about-nav-item 2s 1s ease-out;
          animation: infinite about-nav-item 2s 1s ease-out;
  animation-direction: alternate-reverse;
  box-shadow: 0 0 30px 15px #fff;
}
.app.is-index .navigation-placeholder, .app.is-index .header__logo, .app:not(.is-loaded) .navigation-placeholder, .app:not(.is-loaded) .header__logo {
  cursor: default;
}
.app.is-index .navigation-placeholder__triangle svg, .app:not(.is-loaded) .navigation-placeholder__triangle svg {
  fill: #C4C4C4;
  transition: 0.2s ease;
}
.app.is-index .navigation-placeholder__bg,
.app.is-index .navigation-placeholder__circle, .app:not(.is-loaded) .navigation-placeholder__bg,
.app:not(.is-loaded) .navigation-placeholder__circle {
  transform: scale(0);
  transition: 0.2s ease;
}
.app.is-loading .footer__left, .app.is-loading .footer__stroke {
  transform: scale(1, 0);
  opacity: 0;
}
.app.is-loading .footer__right {
  transform: scale(0);
  opacity: 0;
}
.app.is-loading .footer__right svg {
  fill: #fff;
  stroke-width: 0.5px;
}
.app.is-loading .footer__text {
  transform: translateX(0);
  opacity: 1;
  position: relative;
  z-index: 3;
}
.app:not(.is-index) .footer__socials {
  padding-top: 0;
  max-height: 0;
}
.app.is-index .footer__title {
  max-width: 0px !important;
}
.app__header, .app__main, .app__footer {
  position: relative;
}
.app__header {
  position: relative;
  z-index: 3;
}
.app__main {
  height: 100%;
}
.app__navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s;
}
.app__navigation.has-overlay {
  background: #1D1D1D;
  z-index: 2;
}
.app__bg {
  background: no-repeat center url("/img/mountaints-bg.png");
  background-size: cover;
  overflow: hidden;
  opacity: 0;
  transition: 1s ease;
  -webkit-animation: infinite 30s ease pulsate-bg;
          animation: infinite 30s ease pulsate-bg;
}
.app__bg.is-visible {
  opacity: 1;
}
.app__bg, .app__bg-wrap {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.app__bg.-home {
  background-image: url("/img/home-bg.jpg");
}
.app__bg.-about {
  background-image: url("/img/about-bg.jpg");
}
.app__bg.-contact {
  background-image: url("/img/contact-bg.jpg");
}
.app__bg.-reading {
  background-image: url("/img/reading-bg.jpg");
}
.app__bg.-ifa-tola {
  background-image: url("/img/ifa-tola-bg.jpg");
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
}
@media (max-width: 459px), (max-height: 459px) {
  .header {
    font-size: 14px;
  }
}
.header__logo, .header__otura {
  width: 120px;
  flex-shrink: 0;
  color: #fff;
  display: flex;
  text-transform: uppercase;
}
@media (max-width: 459px), (max-height: 459px) {
  .header__logo, .header__otura {
    width: 95px;
  }
}
.header__otura {
  text-align: right;
  justify-content: flex-end;
}
.header__navigation-placeholder {
  position: relative;
}
.header__navigation-placeholder svg {
  fill: #C4C4C4;
}

.navigation-placeholder {
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
}
.navigation-placeholder__circle, .navigation-placeholder__bg, .navigation-placeholder__triangle svg {
  transition: 0.6s 0.3s ease;
}
.navigation-placeholder__pos {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-placeholder__pos.-circle svg {
  fill: none;
}
.navigation-placeholder__triangle {
  margin-top: -4px;
}
.navigation-placeholder__triangle svg {
  fill: #404040;
}
.navigation-placeholder__circle svg {
  fill: none;
  stroke: #fff;
}
.navigation-placeholder__bg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff no-repeat center url(/img/navigation-bg.png);
  background-size: cover;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer {
  font-family: "Nixie One", serif;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 20px 45px;
}
.footer__title {
  position: absolute;
  transform: rotate(-90deg) translateX(50%);
  margin-top: -25px;
  white-space: nowrap;
  max-width: 200px;
  opacity: 1;
  transition: 0.6s ease;
  overflow: hidden;
}
@media (max-width: 767px) {
  .footer__title {
    transform: rotate(-90deg) translateX(35%) scale(0.7);
  }
}
.footer__title:before, .footer__title:after {
  content: attr(data-title);
  font-size: 20px;
  line-height: 25px;
  font-style: normal;
  color: #F5F5F5;
}
.footer__title:before {
  font-family: "Libre Baskerville", sans-serif;
  text-transform: none;
  font-weight: bold;
  color: #C7AF8A;
  margin-right: 0.7em;
}
.footer__socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 -5px;
  padding-top: 10px;
  overflow: hidden;
  max-height: 40px;
  transition: 0.5s ease;
  box-sizing: content-box;
}
.footer__socials-link {
  padding: 5px;
}
.footer__socials-link svg {
  fill: #E0D2BC;
  transition: 0.3s;
  stroke: #fff;
  stroke-width: 0;
}
.footer__socials-link:hover svg {
  fill: #fff;
  stroke: #fff;
  stroke-width: 0.5px;
}
.footer__left {
  position: absolute;
  bottom: 15px;
  left: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 1s ease;
  transform-origin: bottom;
  opacity: 1;
  z-index: 3;
}
.footer__stroke {
  width: 1px;
  height: 345px;
  background: #C4C4C4;
}
@media (max-width: 459px), (max-height: 459px) {
  .footer__stroke {
    height: 20px;
  }
}
.footer__text {
  transform: translateY(100px);
  opacity: 0;
  transition: 1s ease;
  animation: infinite alternate-reverse flickering 1s;
}
.footer__right {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: 1s ease;
  transform: scale(1);
  opacity: 1;
  cursor: pointer;
  z-index: 3;
}
.footer__right:hover svg {
  fill: #fff;
  stroke: #fff;
  stroke-width: 0.5px;
}
.footer__right svg {
  fill: #F5F5F5;
  stroke: #fff;
  stroke-width: 0;
  transition: 0.5s;
}

@-webkit-keyframes flickering {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

@keyframes flickering {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes pulsate-bg {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes pulsate-bg {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.page {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 105px;
  box-sizing: border-box;
}
.page.-contact {
  -webkit-animation: 1s ease contact-page;
          animation: 1s ease contact-page;
}
.page.-reading {
  -webkit-animation: 1s ease reading-page;
          animation: 1s ease reading-page;
}
.page.-ifa-tola {
  -webkit-animation: 1s ease ifa-tola-page;
          animation: 1s ease ifa-tola-page;
}
@media (max-width: 767px) {
  .page {
    padding: 0 55px;
  }
}
.page__body {
  position: relative;
  z-index: 2;
}

/* CONTACT */
@-webkit-keyframes contact-page {
  from {
    transform: translateX(-50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes contact-page {
  from {
    transform: translateX(-50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes reading-page {
  from {
    transform: translateY(33%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes reading-page {
  from {
    transform: translateY(33%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
.contact, .reading {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.reading {
  height: 100%;
  overflow: hidden;
}

.reading .form-steps {
  height: 100%;
}
.reading .form-steps .form-steps__step {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.reading .form-steps .form-steps__step-inner {
  width: 100%;
}
.reading .form-steps .form-steps__button {
  position: static;
  margin: 50px auto 0;
  width: 30px;
  transform: rotate(90deg);
}

.form-steps {
  position: relative;
}
.form-steps__title {
  font-family: "Nixie One", serif;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 34px;
  color: #E0D2BC;
  opacity: 1;
  transition: 0.6s ease;
  transform: scale(1);
  margin: 0 0 35px;
  text-align: center;
  width: 100%;
}
@media (max-width: 1023px) {
  .form-steps__title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .form-steps__title {
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;
  }
}
.form-steps__title.is-hidden {
  transform: scale(0);
  opacity: 0;
}
.form-steps__text {
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #A8A8A8;
  margin-top: -15px;
}
.form-steps__step {
  position: absolute;
  transition: 0.6s ease;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 60px;
  opacity: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  transform-origin: bottom;
}
.form-steps__step.-title {
  padding: 0;
  animation: infinite alternate-reverse flickering 1s;
}
@media (max-width: 767px) {
  .form-steps__step {
    padding: 0;
  }
}
.form-steps__step.-thanks {
  transform: translateY(33vh) scale(0);
  transform-origin: center;
}
.form-steps__step.-thanks.is-active {
  transform: translateY(-15px) scale(1);
}
@media (max-width: 767px) {
  .form-steps__step.-thanks.is-active {
    transform: translateY(-70px) scale(1);
  }
}
.form-steps__step.is-active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.form-steps__button {
  position: absolute;
  top: 85px;
  cursor: pointer;
  -webkit-filter: drop-shadow(0 0 5px);
          filter: drop-shadow(0 0 5px);
  transition: 0.3s ease;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
}
@media (max-width: 767px) {
  .form-steps__button {
    top: -70px;
  }
}
.form-steps__button.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.form-steps__button:hover {
  -webkit-filter: drop-shadow(0px 0px 20px #F5F5F5) drop-shadow(0px 0px 20px #F5F5F5) drop-shadow(0px 0px 20px #F5F5F5);
          filter: drop-shadow(0px 0px 20px #F5F5F5) drop-shadow(0px 0px 20px #F5F5F5) drop-shadow(0px 0px 20px #F5F5F5);
}
.form-steps__button.-prev {
  transform: rotate(180deg);
  left: -70px;
}
@media (max-width: 1023px) {
  .form-steps__button.-prev {
    left: -15px;
  }
}
.form-steps__button.-next {
  right: -70px;
}
@media (max-width: 1023px) {
  .form-steps__button.-next {
    right: -15px;
  }
}
.form-steps__submit {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  padding: 2px 10px;
  border: 1px solid rgba(196, 196, 196, 0.9);
  box-sizing: border-box;
  background: transparent;
  border-radius: 99px;
  position: absolute;
  top: 85px;
  right: -115px;
  height: 30px;
  -webkit-filter: drop-shadow(0px 0px 0px #F5F5F5);
          filter: drop-shadow(0px 0px 0px #F5F5F5);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .form-steps__submit {
    top: -70px;
    right: 0;
  }
}
.form-steps__submit:hover {
  -webkit-filter: drop-shadow(0px 0px 20px #F5F5F5);
          filter: drop-shadow(0px 0px 20px #F5F5F5);
}
.form-steps__submit-inner {
  height: 100%;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: rgba(196, 196, 196, 0.9) center no-repeat url(/img/button-bg.png);
  background-size: cover;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 13px;
  text-transform: uppercase;
  color: #000000;
}

.form-input {
  height: 33px;
  border: none;
  outline: none;
  border-bottom: 3px solid #C7AE8A;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 33px;
  color: #fff;
  transition: 0.4s ease;
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  margin: 0;
}
.form-input:focus {
  border-color: #fff;
}
.form-input::-moz-placeholder {
  opacity: 1;
  font: inherit;
  line-height: inherit;
  padding: 0;
  color: #A8A8A8;
  font-weight: 300;
}
.form-input:-ms-input-placeholder {
  opacity: 1;
  font: inherit;
  line-height: inherit;
  padding: 0;
  color: #A8A8A8;
  font-weight: 300;
}
.form-input::placeholder {
  opacity: 1;
  font: inherit;
  line-height: inherit;
  padding: 0;
  color: #A8A8A8;
  font-weight: 300;
}

.app input:-webkit-autofill,
.app input:-webkit-autofill:hover,
.app input:-webkit-autofill:focus,
.app textarea:-webkit-autofill,
.app textarea:-webkit-autofill:hover,
.app textarea:-webkit-autofill:focus,
.app select:-webkit-autofill,
.app select:-webkit-autofill:hover,
.app select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 200px #000 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.form-steps__input-group {
  display: flex;
  margin: 0 -25px;
}
@media (max-width: 640px) {
  .form-steps__input-group {
    flex-wrap: wrap;
  }
}

.form-steps__input {
  padding: 0 25px;
}
@media (max-width: 640px) {
  .form-steps__input + .form-steps__input {
    margin-top: 20px;
  }
}
.form-steps__input.-half {
  width: 50%;
}
@media (max-width: 640px) {
  .form-steps__input.-half {
    width: 100%;
  }
}
.form-steps__input.-quarter {
  width: 25%;
}
@media (max-width: 640px) {
  .form-steps__input.-quarter {
    width: 50%;
  }
}

.file-input {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 1px solid #C4C4C4;
  position: relative;
  color: #A8A8A8;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
}
.file-input:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
}
.file-input__input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0.01;
}
.file-input__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.file-input__title {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
}
.file-input__preview {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  opacity: 1;
  background: center no-repeat;
  background-size: cover;
}

.input-title {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #A8A8A8;
}

.ifa-tola-index {
  display: flex;
  height: 100%;
}
@media (max-width: 1023px) {
  .ifa-tola-index {
    flex-direction: column;
  }
}
.ifa-tola-index__image {
  width: 53%;
  max-height: 70vh;
  overflow: hidden;
  flex-shrink: 0;
  background: top center no-repeat;
  background-size: cover;
  margin-bottom: auto;
  -webkit-animation: 1s ease ifa-tola-image;
          animation: 1s ease ifa-tola-image;
  position: relative;
}
@media (max-width: 1023px) {
  .ifa-tola-index__image {
    width: 100%;
    margin-bottom: 0;
    -webkit-animation: 1s ease ifa-tola-image-2;
            animation: 1s ease ifa-tola-image-2;
  }
}
.ifa-tola-index__image:before {
  content: "";
  display: block;
  padding-bottom: 87%;
}
.ifa-tola-index__content {
  width: 100%;
  margin-top: auto;
  padding-left: 60px;
  -webkit-animation: 1s ease ifa-tola-content;
          animation: 1s ease ifa-tola-content;
  position: relative;
}
@media (max-width: 1023px) {
  .ifa-tola-index__content {
    margin-top: 0;
    padding: 40px 0 0 0;
    -webkit-animation: 1s ease ifa-tola-content-2;
            animation: 1s ease ifa-tola-content-2;
  }
}
.ifa-tola-index__bg {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 0;
  right: 20%;
  margin: 0 auto;
}
.ifa-tola-index__bg svg {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-animation: fade-in 3s ease;
          animation: fade-in 3s ease;
}
.ifa-tola-index__bg path {
  animation: infinite alternate-reverse flickering 2s;
}
.ifa-tola-index__bg path + path {
  animation: infinite alternate-reverse reading-page 2s 2s;
}

.ifa-tola-history {
  display: flex;
  height: 100%;
}
@media (max-width: 1023px) {
  .ifa-tola-history {
    flex-direction: column;
  }
}
.ifa-tola-history__bg {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 25%;
  right: 0;
  margin: 0 auto;
}
.ifa-tola-history__bg svg {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-animation: fade-in 3s ease;
          animation: fade-in 3s ease;
}
.ifa-tola-history__bg path {
  animation: infinite alternate-reverse flickering 2s;
}
.ifa-tola-history__image {
  flex-shrink: 0;
  background: top center no-repeat;
  background-size: cover;
  width: 40%;
  -webkit-animation: 1s ease ifa-tola-image-2;
          animation: 1s ease ifa-tola-image-2;
  position: relative;
}
@media (max-width: 1023px) {
  .ifa-tola-history__image {
    width: 100%;
  }
  .ifa-tola-history__image:before {
    content: "";
    display: block;
    padding-bottom: 87%;
  }
}
.ifa-tola-history__content {
  width: 100%;
  margin-top: auto;
  padding-left: 45px;
  -webkit-animation: 1s ease ifa-tola-content-2;
          animation: 1s ease ifa-tola-content-2;
  position: relative;
}
@media (max-width: 1023px) {
  .ifa-tola-history__content {
    padding: 40px 0 0 0;
  }
}

.ifa-tola {
  height: 100%;
  padding: 50px 0;
}
.ifa-tola__title {
  margin: 0;
  font-family: "Libre Baskerville", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  line-height: 74px;
  color: #C7AF8A;
}
@media (max-width: 767px) {
  .ifa-tola__title {
    font-size: 40px;
    line-height: 46px;
  }
}
.ifa-tola__title span {
  font-family: "Nixie One", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 45px;
  text-transform: uppercase;
  color: #F5F5F5;
}
@media (max-width: 767px) {
  .ifa-tola__title span {
    font-size: 30px;
    line-height: 36px;
  }
}
.ifa-tola__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 50px;
}
.ifa-tola__controls .form-steps__button {
  position: static;
}
.ifa-tola__controls .form-steps__button.-next {
  margin-left: 50px;
}
.ifa-tola p {
  text-align: justify;
}

@-webkit-keyframes ifa-tola-page {}

@keyframes ifa-tola-page {}
@-webkit-keyframes ifa-tola-image {
  from {
    transform: translateY(-50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes ifa-tola-image {
  from {
    transform: translateY(-50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes ifa-tola-content {
  from {
    transform: translateY(50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes ifa-tola-content {
  from {
    transform: translateY(50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes ifa-tola-image-2 {
  from {
    transform: translateX(-50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes ifa-tola-image-2 {
  from {
    transform: translateX(-50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes ifa-tola-content-2 {
  from {
    transform: translateX(50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes ifa-tola-content-2 {
  from {
    transform: translateX(50%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@media (max-width: 1023px) {
  .page.-ifa-tola {
    padding-right: 0;
    display: block;
  }

  .ifa-tola {
    padding: 0;
    display: block;
  }

  .ifa-tola-index,
.ifa-tola-history {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 50px 50px 50px 0;
    display: block;
  }
  .ifa-tola-index::-webkit-scrollbar,
.ifa-tola-history::-webkit-scrollbar {
    width: 4px;
  }
  .ifa-tola-index::-webkit-scrollbar-track,
.ifa-tola-history::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .ifa-tola-index::-webkit-scrollbar-thumb,
.ifa-tola-history::-webkit-scrollbar-thumb {
    background: #888;
  }
  .ifa-tola-index::-webkit-scrollbar-thumb:hover,
.ifa-tola-history::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .ifa-tola-index .ifa-tola__controls,
.ifa-tola-history .ifa-tola__controls {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .app__main {
    max-height: calc(100% - 130px);
  }
}
@-webkit-keyframes about-page {
  from {
    transform: translateY(-33%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes about-page {
  from {
    transform: translateY(-33%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
.page.-about {
  -webkit-animation: 1s ease about-page;
          animation: 1s ease about-page;
}

.about {
  width: 100%;
  height: 100%;
}

.about-nav {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: 1s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .about-nav {
    transform: scale(0.4);
  }
}
.about-nav:not(.is-clickable) {
  pointer-events: none;
}
.about-nav.is-loaded {
  transform: translateY(50%) translateY(35px) scale(0.18);
}
.about-nav.is-loaded .about-nav__item.is-loaded .about-nav__item-bg,
.about-nav.is-loaded .about-nav__item.is-loaded .about-nav__item-bg:before,
.about-nav.is-loaded .about-nav__item.is-loaded .about-nav__item-triangle, .about-nav.is-loaded .about-nav__item.is-loaded .about-nav__item-bg,
.about-nav.is-loaded .about-nav__item.is-loaded .about-nav__item-bg:before,
.about-nav.is-loaded .about-nav__item.is-loaded .about-nav__item-triangle {
  -webkit-animation: none;
          animation: none;
}
.about-nav.is-loaded .about-nav__item,
.about-nav.is-loaded .about-nav__item-bg,
.about-nav.is-loaded .about-nav__item-bg:before,
.about-nav.is-loaded .about-nav__item-triangle {
  transition: 1s;
}
.about-nav.is-loaded .about-nav__item.is-active .about-nav__item-bg {
  transition: none;
}
.about-nav.is-loaded .about-nav__item.is-active .about-nav__item-bg:after, .about-nav.is-loaded .about-nav__item.is-active .about-nav__item-triangle {
  opacity: 0;
  box-shadow: none;
  transition: 0s;
}
.about-nav.is-loaded .about-nav__item.is-active .about-nav__item-bg:after {
  width: 0;
  height: 0;
}
.about-nav.is-loaded .about-nav__item-bg {
  box-shadow: 0 0 50px 10px #F5F5F5;
  cursor: pointer;
}
.about-nav.is-loaded .about-nav__item-bg:before {
  border-width: 3px;
  opacity: 1;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
}
.about-nav.is-loaded .about-nav__item-bg:after {
  content: "";
  position: absolute;
  background: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: infinite about-nav-item 2s 1s ease-out;
          animation: infinite about-nav-item 2s 1s ease-out;
  animation-direction: alternate-reverse;
  box-shadow: 0 0 75px 25px #fff;
}
.about-nav.is-loaded .about-nav__item-triangle {
  opacity: 1;
  stroke-width: 3px;
}
.about-nav__item {
  padding: 20px 45px;
  position: relative;
  transform: rotate(59deg);
}
.about-nav__item:nth-child(2) {
  transform: translateY(6%) rotate(0);
}
.about-nav__item-triangle {
  -webkit-animation: infinite rotate-about-triangle 3s ease;
          animation: infinite rotate-about-triangle 3s ease;
  opacity: 0.5;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}
.about-nav__item-circle {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-nav__item-bg {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff no-repeat center url(/img/navigation-bg.png);
  background-size: cover;
  opacity: 0.9;
  transform: rotate(90deg);
  position: relative;
  -webkit-animation: infinite pulsate-bg 1.5s ease;
          animation: infinite pulsate-bg 1.5s ease;
  animation-direction: alternate-reverse;
  box-shadow: 0 0 20px #F5F5F5;
}
.about-nav__item-bg:before {
  content: "";
  border: 0.5px solid #fff;
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-animation: infinite pulsate-bg 1.5s ease;
          animation: infinite pulsate-bg 1.5s ease;
  animation-direction: alternate-reverse;
}

@-webkit-keyframes rotate-about-triangle {
  0% {
    transform: rotate(60deg) translate(8%, -8%);
  }
  16.66% {
    transform: rotate(120deg) translate(10%, -16%);
  }
  33.33% {
    transform: rotate(180deg) translate(0, -20%);
  }
  50% {
    transform: rotate(240deg) translate(-8%, -16%);
  }
  66.66% {
    transform: rotate(300deg) translate(-8%, -6%);
  }
  83.33% {
    transform: rotate(360deg) translate(0%, 0%);
  }
  100% {
    transform: rotate(420deg) translate(8%, -8%);
  }
}

@keyframes rotate-about-triangle {
  0% {
    transform: rotate(60deg) translate(8%, -8%);
  }
  16.66% {
    transform: rotate(120deg) translate(10%, -16%);
  }
  33.33% {
    transform: rotate(180deg) translate(0, -20%);
  }
  50% {
    transform: rotate(240deg) translate(-8%, -16%);
  }
  66.66% {
    transform: rotate(300deg) translate(-8%, -6%);
  }
  83.33% {
    transform: rotate(360deg) translate(0%, 0%);
  }
  100% {
    transform: rotate(420deg) translate(8%, -8%);
  }
}
@-webkit-keyframes about-nav-item {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes about-nav-item {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
@-webkit-keyframes about-page-inner {
  from {
    transform: translateX(-100px);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes about-page-inner {
  from {
    transform: translateX(-100px);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes about-page-content {
  from {
    transform: translateX(100px);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes about-page-content {
  from {
    transform: translateX(100px);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
.about-page .about-slider {
  -webkit-animation: 1s ease about-page-inner;
          animation: 1s ease about-page-inner;
}
.about-page .ifa-tola-history__content {
  padding-left: 0;
  padding-top: 20px;
  -webkit-animation: 1s ease about-page-content;
          animation: 1s ease about-page-content;
  text-align: justify;
}

.about-slider {
  overflow: hidden;
  position: relative;
}
.about-slider__list {
  height: 100%;
}
.about-slider__item {
  background: no-repeat center;
  background-size: cover;
  width: 100%;
  max-height: 500px;
  min-height: 250px;
}
.about-slider__item:before {
  content: "";
  display: block;
  padding-bottom: 42%;
}
.about-slider__buttons {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.about-slider__button {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: no-repeat center #C7AF8A url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.99883 9.99756C5.11885 9.99778 5.21633 9.90064 5.21655 9.78061C5.21665 9.72274 5.19367 9.66722 5.1527 9.62635L0.524823 4.99891L5.1527 0.37148C5.23768 0.286497 5.23768 0.148721 5.1527 0.0637378C5.06771 -0.0212459 4.92994 -0.0212459 4.84495 0.0637378L0.0636373 4.84505C-0.021204 4.92992 -0.021204 5.06749 0.0636373 5.15237L4.84495 9.93367C4.88573 9.97456 4.94108 9.99756 4.99883 9.99756Z' fill='%230E0E0E'/%3E%3C/svg%3E%0A");
  transition: 0.3s;
  cursor: pointer;
}
.about-slider__button.-next {
  transform: scaleX(-1);
}
.about-slider__button:hover {
  background-color: #fff;
}

.page.-about {
  display: block;
  padding: 0;
}
.page.-about::-webkit-scrollbar {
  width: 4px;
}
.page.-about::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.page.-about::-webkit-scrollbar-thumb {
  background: #888;
}
.page.-about::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.about {
  display: block;
}

.about-page__inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 50px 105px;
}
.about-page__inner::-webkit-scrollbar {
  width: 4px;
}
.about-page__inner::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.about-page__inner::-webkit-scrollbar-thumb {
  background: #888;
}
.about-page__inner::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@media (max-width: 767px) {
  .about-page__inner {
    padding: 50px 55px;
  }
}

.app__main {
  max-height: calc(100% - 120px);
}
