@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --beige: #F0E7DC;
  --red: #C43D30;
  --green: #335D37;
  --ochre: #CB9448;
  --dark-blue: #1B4157;
  --haki: #CCC7A4;
}

html,
body {
  height: 100%;
  font-family: 'Monrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #010610;
  font-size: 16px;
  font-weight: 400;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body::-webkit-scrollbar {
  width: 12px;
  /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--beige);
  /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--haki);
  /* цвет плашки */
  border-radius: 20px;
  /* закругления плашки */
  border: 3px solid var(--beige);
  /* padding вокруг плашки */
}

h2 {
  font-size: 60px;
  text-transform: uppercase;
}

.section {
  overflow: hidden;
}

.section0 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  background-image: url('img/home-bg.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding: 40px;
  height: 100vh;
}

.symbols-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100vw - 40%);
  height: calc(100vh - 25%);
  position: relative;
}

.symbols-wrapper .logo-symbol {
  height: 100%;
  z-index: 10;
}

.symbols-wrapper .logo-symbol.first {
  -ms-transform: translateX(27%);
  transform: translateX(27%);
  -webkit-transform: translateX(27%);
  -moz-transform: translateX(27%);
  -o-transform: translateX(27%);
}

.symbols-wrapper .logo-symbol.second {
  -ms-transform: translateX(9%);
  transform: translateX(9%);
  -webkit-transform: translateX(9%);
  -moz-transform: translateX(9%);
  -o-transform: translateX(9%);
}

.symbols-wrapper .logo-symbol.third {
  -ms-transform: translateX(-9%);
  transform: translateX(-9%);
  -webkit-transform: translateX(-9%);
  -moz-transform: translateX(-9%);
  -o-transform: translateX(-9%);
}

.symbols-wrapper .logo-symbol.fourth {
  -ms-transform: translateX(-27%);
  transform: translateX(-27%);
  -webkit-transform: translateX(-27%);
  -moz-transform: translateX(-27%);
  -o-transform: translateX(-27%);
}

.btn__action {
  position: relative;
  outline: none;
  border: none;
  background-color: var(--red);
  padding: 20px;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
}

.section1 {
  background-color: var(--beige);
  display: flex;
  justify-content: center;
  padding: 40px;
  height: 100vh;
}

.video_pre-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.video_wrapper {
  width: calc(((var(--vh, 1vh) * 100) - 80px) * (1.778));
  max-width: calc(100vw - 300px - 12px - 80px);
  position: relative;
  height: calc((0.562) * (100vw - 300px - 12px - 80px));
  max-height: calc((var(--vh, 1vh) * 100) - 80px);
  min-height: 160px;
}

.video_wrapper>div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video__wrapp {
  display: flex;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.video_menu-wrapper {
  width: 250px;
  min-height: 596px;
  max-height: calc((var(--vh, 1vh) * 100) - 80px);
}

.video_menu-wrapper .swiper {
  width: 100%;
  height: 100%;
}

.video_menu-wrapper .swiper-slide {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border: 1px solid var(--haki);
  cursor: pointer;
  background-color: #fff;
}

.video_menu-wrapper .swiper-slide.active {
  border-color: var(--red);
}

.video_menu-wrapper .swiper-slide>span {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.section2 {
  background-color: var(--beige);
  padding: 40px;
  height: 100vh;
  text-align: center;
}

.section2 h2 {
  margin-bottom: 1rem;
}

.welcome-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.welcome-wrapper .swiper {
  max-width: 100%;
  max-height: 100%;
}

.welcome-wrapper .swiper-slide {
  text-align: center;
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  background-color: var(--beige);
  overflow: hidden;
}

.welcome-wrapper .swiper-slide .subtitle {
  max-width: 60%;
  margin: 0 auto;
}

.welcome-wrapper .swiper-slide p {
  font-size: 18px;
}

.welcome-wrapper .swiper-slide img {
  display: block;
  width: calc((100vh - 150px) / 0.446);
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

#about {
  position: relative;
  padding-bottom: 40px;
  overflow: hidden;
}

#about .moved-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

#about .moved-lines .line {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

#about .moved-lines .line.line-1 {
  height: 12.5%;
  background-color: rgba(139, 89, 84, 0.5);
  transform: skew(-7deg) translateX(-100%);
}

#about .moved-lines.animation .line-1 {
  animation-delay: .4s;
  animation-name: move_line_to_right;
  animation-duration: .6s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-2 {
  height: 8.4%;
  background-color: rgba(117, 151, 203, 0.5);
  transform: skew(-7deg) translateX(100%);
}

#about .moved-lines.animation .line-2 {
  animation-delay: .6s;
  animation-name: move_line_to_left;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-3 {
  height: 4.2%;
  background-color: rgba(1, 6, 1, 0.5);
  transform: skew(-7deg) translateX(100%);
}

#about .moved-lines.animation .line-3 {
  animation-delay: .5s;
  animation-name: move_line_to_left;
  animation-duration: .6s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-4 {
  height: 13%;
  background-color: rgba(203, 148, 72, 0.5);
  transform: skew(-7deg) translateX(-100%);
}

#about .moved-lines.animation .line-4 {
  animation-delay: .6s;
  animation-name: move_line_to_right;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-5 {
  height: 8%;
  background-color: rgba(149, 64, 25, 0.5);
  transform: skew(-7deg) translateX(100%);
}

#about .moved-lines.animation .line-5 {
  animation-delay: .7s;
  animation-name: move_line_to_left;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-6 {
  height: 4.3%;
  background-color: rgba(236, 209, 137, 0.5);
  transform: skew(-7deg) translateX(-100%);
}

#about .moved-lines.animation .line-6 {
  animation-delay: .4s;
  animation-name: move_line_to_right;
  animation-duration: .6s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-7 {
  height: 12.5%;
  background-color: rgba(27, 65, 87, 0.5);
  transform: skew(-7deg) translateX(-100%);
}

#about .moved-lines.animation .line-7 {
  animation-delay: .6s;
  animation-name: move_line_to_right;
  animation-duration: .7s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-8 {
  height: 4.5%;
  background-color: rgba(105, 21, 6, 0.5);
  transform: skew(-7deg) translateX(100%);
}

#about .moved-lines.animation .line-8 {
  animation-delay: .5s;
  animation-name: move_line_to_left;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-9 {
  height: 8.4%;
  background-color: rgba(187, 73, 26, 0.5);
  transform: skew(-7deg) translateX(100%);
}

#about .moved-lines.animation .line-9 {
  animation-delay: .6s;
  animation-name: move_line_to_left;
  animation-duration: .6s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-10 {
  height: 12.3%;
  background-color: rgba(51, 93, 55, 0.5);
  transform: skew(-7deg) translateX(-100%);
}

#about .moved-lines.animation .line-10 {
  animation-delay: .7s;
  animation-name: move_line_to_right;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-11 {
  height: 8.5%;
  background-color: rgba(146, 147, 72, 0.5);
  transform: skew(-7deg) translateX(100%);
}

#about .moved-lines.animation .line-11 {
  animation-delay: .6s;
  animation-name: move_line_to_left;
  animation-duration: .4s;
  animation-fill-mode: forwards;
}

#about .moved-lines .line.line-12 {
  height: 3.6%;
  background-color: rgba(16, 36, 38, 0.5);
  transform: skew(-7deg) translateX(-100%);
}

#about .moved-lines.animation .line-12 {
  animation-delay: .4s;
  animation-name: move_line_to_right;
  animation-duration: .7s;
  animation-fill-mode: forwards;
}

@keyframes move_line_to_right {
  0% {
    transform: skew(-7deg) translateX(-100%);
  }

  99% {
    transform: skew(-7deg) translateX(1%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes move_line_to_left {
  0% {
    transform: skew(-7deg) translateX(100%);
  }

  99% {
    transform: skew(-7deg) translateX(1%);
  }

  100% {
    transform: translateX(0%);
  }
}

#about .sec_container {
  width: 90%;
  margin: 0 auto;
}

.about-wrapper {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  position: relative;
  z-index: 10;
}

.about-wrapper h2 {
  color: #fff;
  text-shadow: 0 0 1px #010610;
  text-align: center;
}

.about-wrapper .features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
}

.about-wrapper .features>div {
  background-color: var(--beige);
  padding: 30px;
  color: #010610;
  font-size: 24px;
  backdrop-filter: blur(25px);
}

.about-wrapper .features>div h3 {
  color: #010610;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
}

.about-wrapper .features>div p {
  font-size: 24px;
  font-weight: 400;
  text-align: justify;
  margin-top: 1rem;
}

.section4 {
  background-color: var(--beige);
  display: flex;
  padding: 40px 0;
}

.section4 .sec_container {
  width: 1024px;
  margin: auto;
  display: flex;
  align-items: flex-end;
}

.section4 .sec_container {
  width: 90%;
}

.contact-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.section4 .mobile {
  width: 400px;
  height: 614px;
  background-image: url('img/mobile_fara.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}

.section4 .mobile .share_feedback {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70%;
  border: 1px solid var(--red);
  background-color: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .25);
  overflow: hidden;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.section4 .mobile .share_feedback::before {
  position: absolute;
  z-index: 2;
  top: -50%;
  right: -100%;
  bottom: -50%;
  left: -100%;
  content: "";
  animation: sheens 3.5s infinite;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 80%);
}

@keyframes sheens {

  0%,
  79% {
    transform: rotateZ(120deg) translate(-5em, 7.5em);
    opacity: 0;
  }

  80% {
    transform: rotateZ(120deg) translate(-5em, 7.5em);
    opacity: 1;
  }

  95% {
    transform: rotateZ(120deg) translate(1em, -11em);
    opacity: 1;
  }

  100% {
    transform: rotateZ(120deg) translate(1em, -9em);
    opacity: 0;
  }
}

.contact-wrapper .contact__block {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
}

.contact-wrapper .contact__block.contact__block_left {
  padding-top: 20px;
}

.contact__block .h4 {
  text-align: left;
  font-size: 46px;
  font-weight: 600;
}

.contact__block p {
  text-align: left;
  font-size: 20px;
  margin: 0;
  line-height: 1.4;
}

.contact__block a {
  color: #010610;
  line-height: 1.4;
}


@media (max-width: 1620px) {
  .welcome-wrapper .swiper-slide img {
    width: calc((100vh - 150px) / 0.5);
  }
}

@media (max-width: 1440px) {
  .video_menu-wrapper {
    width: 240px;
  }

  .video_wrapper {
    max-width: calc(100vw - 240px - 12px - 80px);
    height: calc((0.562) * (100vw - 240px - 12px - 80px));
  }

  .about-wrapper .features>div {
    font-size: 18px;
  }

  .about-wrapper .features>div h3 {
    font-size: 24px;
  }

  .about-wrapper .features>div p {
    font-size: 20px;
  }

  .contact-wrapper .mobile img {
    width: 200px;
  }
}

@media (max-width: 1060px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-1%);
  }
}

@media (max-width: 1024px) {
  .symbols-wrapper {
    width: calc(100vw - 0%);
    height: calc(100vh - 50%);
  }

  .section1,
  .section2,
  .section3,
  .section4 {
    height: auto;
  }

  .section1 {
    padding: 30px;
  }

  .video_wrapper {
    width: calc(((var(--vh, 1vh) * 100) - 170px) * (1.778));
    max-width: calc(100vw - 60px);
    height: calc((.5625)*(100vw - 180px));
    max-height: calc((var(--vh, 1vh) * 100) - 170px);
  }

  .video_pre-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .video_menu-wrapper .swiper {
    height: 120px;
  }

  .video_menu-wrapper {
    margin-left: 0;
    margin-top: 12px;
    min-height: unset;
    max-height: unset;
    width: 100%;
    height: 120px;
  }

  .contact-wrapper .mobile img {
    width: 140px;
  }

  .contact__block .h4 {
    font-size: 30px;
  }

  .welcome-wrapper .swiper-slide .subtitle {
    max-width: 80%;
  }

}


@media (max-width: 992px) {
  h2 {
    font-size: 40px;
  }

  .about-wrapper {
    padding: 20px 0;
    row-gap: 15px;
  }

  .about-wrapper .features {
    grid-template-columns: 1fr;
    column-gap: unset;
    row-gap: 20px;
  }

  .about-wrapper .features>div {
    padding: 10px 20px;
  }
}

@media(max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    row-gap: 40px;
  }

  .contact-wrapper .contact__block {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .video_menu-wrapper .swiper {
    height: 150px;
  }

  .video_menu-wrapper .swiper-slide {
    height: 120px;
  }

  .video_menu-wrapper .swiper {
    padding: 0;
  }

  .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 0px);
  }

  .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 0px);
  }

  .swiper-button-prev_1,
  .swiper-button-next_1 {
    top: 42%;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px;
  }

  .welcome-wrapper .swiper-slide img {
    width: calc((100vh - 150px) / 0.55);
  }

  .welcome-wrapper .swiper-slide img {
    transform: translateX(-4%);
  }

}

@media (max-width: 850px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-5%);
  }
}

@media (max-width: 800px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-9%);
  }
}

@media (max-width: 720px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-15%);
  }
}

@media (max-width: 650px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-18%);
  }
}

@media (max-width: 650px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-20%);
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 26px;
  }

  .btn__action {
    padding: 15px;
    font-size: 16px;
  }

  .video_wrapper {
    width: calc(((var(--vh, 1vh)* 100) - 140px)*(1.778));
    max-width: calc(100vw - 30px);
    height: calc((0.562)*(100vw - 30px));
    max-height: calc((var(--vh, 1vh)* 100) - 140px);
    min-height: unset;
  }

  .section1 {
    padding: 30px 10px;
  }

  .about-wrapper .features>div h3 {
    font-size: 20px;
  }

  .about-wrapper .features>div p {
    font-size: 16px;
  }

  .section2 {
    padding: 40px 20px;
  }

  .swiper-button-prev_1,
  .swiper-button-next_1 {
    top: 39%;
  }

  .welcome-wrapper .swiper-slide img {
    width: calc(100vh / 0.79);
  }

  .welcome-wrapper .swiper-slide .subtitle {
    max-width: 100%;
  }

  .welcome-wrapper .swiper-slide p {
    font-size: 16px;
  }

  .section4 .mobile {
    max-width: 340px;
    height: 523px;
  }

  .section4 .mobile .share_feedback {
    font-size: 18px;
  }

  .video_menu-wrapper .swiper {
    height: 130px;
  }

  .video_menu-wrapper .swiper-slide {
    height: 100px;
  }

  .video_menu-wrapper .swiper-slide>span {
    font-size: 14px;
  }

}

@media (max-width: 550px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-22%);
  }
}

@media (max-width: 510px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-24%);
  }
}

@media (max-width: 475px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-26%);
  }
}

@media(max-width: 430px) {
  .video_menu-wrapper .swiper {
    height: 120px;
  }

  .video_menu-wrapper .swiper-slide {
    height: 90px;
  }

  .welcome-wrapper .swiper-slide img {
    width: calc(100vh / 0.82);
    transform: translateX(-27%);
  }
}

@media(max-width: 400px) {
  .welcome-wrapper .swiper-slide img {
    width: calc(100vh / 0.99);
    transform: translateX(-24%);
  }
}

@media(max-width: 390px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-25%);
  }
}

@media(max-width: 380px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-26%);
  }
}

@media(max-width: 360px) {
  .welcome-wrapper .swiper-slide img {
    transform: translateX(-27.5%);
  }
}