.fsplashscreen {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  z-index: 100;
  -webkit-transition: opacity 0.4s 0.4s;
  transition: opacity 0.4s 0.4s;
}
.fsplashscreen--is-hidden {
  opacity: 0;
}
.fsplashscreen--is-hidden .preloader {
  opacity: 0;
}
.fpreloader {
  position: relative;
  width: 200px;
  height: 150px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.fpreloader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 45px;
  bottom: 0;
  border: 10px solid rgba(3, 83, 3, 0.23);
  -webkit-animation: fadeInOut 1.6s linear infinite;
  animation: fadeInOut 1.6s linear infinite;
}
.fpreloader__text {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 10px 0;
  color: #585858;
  font-size: 32px;
  font-weight: 800;
  background-color: #fff;
}

.fintroduction {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fintroduction::before {
  content: "CM";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 40vw;
  font-weight: 800;
  opacity: 0.05;
}
.fintroduction__content {
  color: rgba(255, 165, 0, 0.23);
  font-size: 16px;
  font-weight: 800;
}
.fintroduction__content-el {
  display: block;
}
.fintroduction__content-el--name {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  opacity: 0;
}
.fintroduction__content-el--description {
  -webkit-transform: matrix(1.0110731102, 0, 0, 1.0110731102, 0, 0);
  transform: matrix(1.0110731102, 0, 0, 1.0110731102, 0, 0);
  margin: 10px 0;
  color: #fff;
  font-size: 16vw;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 10px 18px 35px rgba(255, 165, 0, 0.23);
}
.fintroduction__content-el--job {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  text-align: right;
  opacity: 0;
}
.fintroduction__arrow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-12px, 0px);
  transform: translate(-12px, 0px);
  width: 24px;
  fill: rgba(255, 165, 0, 0.23);
  -webkit-animation: scrollDown 1.6s infinite;
  animation: scrollDown 1.6s infinite;
}
@media (min-width: 1440px) {
  .fintroduction::before {
    font-size: 576px;
  }
  .fintroduction__content-el--description {
    font-size: 230px;
  }
}
@media (max-height: 540px) {
  .fintroduction__arrow {
    -webkit-animation: none;
    animation: none;
  }
}