@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

.container {
  width: 90%;
  max-width: 1312px;
  margin: auto;
}

section {
  padding: 80px 0;
}

h1,
h2 {
  font-size: 44px;
  font-weight: 500;
}

h1 b,
h2 b {
  color: #B89274;
}

h3,
h4,
h5,
h6 {
  font-size: 32px;
  font-weight: 400;
}

p,
li,
span,
div,
a {
  font-size: 16px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 24px;
  border-radius: 12px;
  background: #172B47;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  transition: 0.4s;
}

.btn:hover {
  background: #1d4680;
}

.btn.btn-white {
  background: white;
  color: #172B47;
}

.btn.btn-white svg * {
  fill: #172B47;
}

.btn.btn-white:hover {
  background: #D1E4FF;
}

.anim {
  opacity: 0;
  transition: all 0.4s, opacity 1s 0.3s;
}

.anim.animated {
  opacity: 1;
}

.anim.delay2 {
  transition-delay: 0.5s;
}

.anim.delay3 {
  transition-delay: 0.7s;
}

.anim.delay4 {
  transition-delay: 0.9s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  border-radius: 0;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  color: #172B47;
  line-height: 144%;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off, 'kern' off;
          font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off, 'kern' off;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: white;
}

select,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
}

*:focus {
  outline: transparent;
}

input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

button {
  cursor: pointer;
}

.header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.header.scroll {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.header__logo img {
  display: block;
  height: 40px;
  width: auto;
  transition: 0.4s;
}

.header__menu {
  margin: 0 32px 0 auto;
}

.header__menu ul {
  display: flex;
  gap: 32px;
}

.header__menu a {
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}

.header__menu a:hover {
  border-bottom-color: #172B47;
}

.header__btn {
  display: block;
  text-align: center;
  padding: 8px 20px;
  border-radius: 12px;
  background: #DEEAFB;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
}

.header__btn:hover {
  background: #c0d8fa;
}

.header__mob__btn {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #DEEAFB;
  position: relative;
}

.header__mob__btn.open span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.header__mob__btn.open span:nth-child(2) {
  opacity: 0;
}

.header__mob__btn.open span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.header__mob__btn span {
  background: #121818;
  width: 16px;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: .4s;
}

.header__mob__btn span:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 5px));
          transform: translate(-50%, calc(-50% - 5px));
}

.header__mob__btn span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header__mob__btn span:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% + 5px));
          transform: translate(-50%, calc(-50% + 5px));
}

.header__mob__container {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 120px 0 60px;
  z-index: -1;
}

.header__mob__container .container {
  flex-direction: column;
}

.header__mob__container ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.header__mob__container .header__btn {
  display: block;
  margin: 44px auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.b1 {
  padding: 0;
}

.b1 .container {
  height: 100vh;
  position: relative;
}

.b1 .container > * {
  z-index: 3;
}

.b1 .title {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  background: #172B47;
  -webkit-mask-image: url(../img/hero_title.svg);
          mask-image: url(../img/hero_title.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.b1 h1,
.b1 svg {
  z-index: 2;
  text-align: center;
  font-size: 88px;
  font-weight: 500;
}

.b1__bottom {
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}

.b1__bottom p {
  max-width: 640px;
  font-size: 16px;
  font-weight: 500;
}

.b1 .rect {
  position: absolute;
  border-radius: 36px;
  border: 1px solid #C0CEE1;
  pointer-events: none;
  z-index: 1;
  background: rgba(192, 206, 225, 0.05);
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 190px;
  height: 220px;
  -webkit-animation-duration: 16s;
          animation-duration: 16s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes rect_2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  10% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }

  60% {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }

  90% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes rect_2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  10% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }

  60% {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }

  90% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes rect_3 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  10% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }

  60% {
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }

  90% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes rect_3 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  10% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }

  60% {
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }

  90% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes rect_4 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  10% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }

  60% {
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }

  90% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes rect_4 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  10% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }

  60% {
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }

  90% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes rect_5 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  10% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }

  60% {
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }

  90% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes rect_5 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  10% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }

  60% {
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }

  90% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.b1 .rect-1 {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 540px;
  height: 320px;
  background: transparent;
}

.b1 .rect-2 {
  left: calc(-6% - 95px);
  top: calc(32.5% - 110px);
  -webkit-animation-name: rect_2;
          animation-name: rect_2;
}

.b1 .rect-3 {
  left: calc(33.994% - 95px);
  top: calc(5% - 110px);
  -webkit-animation-name: rect_3;
          animation-name: rect_3;
}

.b1 .rect-4 {
  left: calc(101.829% - 95px);
  top: calc(32.5% - 110px);
  -webkit-animation-name: rect_4;
          animation-name: rect_4;
}

.b1 .rect-5 {
  left: calc(70% - 95px);
  top: calc(97.125% - 110px);
  -webkit-animation-name: rect_5;
          animation-name: rect_5;
}

.b1 .video,
.b1 .wv {
  z-index: 2;
  width: 200px;
  height: 200px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 20px;
  overflow: hidden;
  background: white;
  -webkit-animation-duration: 16s;
          animation-duration: 16s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.b1 .video video,
.b1 .wv video {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes video_1 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  10% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(-50%, calc(-50% - 50px)) scale(1);
            transform: translate(-50%, calc(-50% - 50px)) scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate(-50%, calc(-50% - 50px)) scale(0.7);
            transform: translate(-50%, calc(-50% - 50px)) scale(0.7);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }
}

@keyframes video_1 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  10% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(-50%, calc(-50% - 50px)) scale(1);
            transform: translate(-50%, calc(-50% - 50px)) scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate(-50%, calc(-50% - 50px)) scale(0.7);
            transform: translate(-50%, calc(-50% - 50px)) scale(0.7);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }
}

@-webkit-keyframes video_2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  10% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(calc(-50% - 50px), -50%) scale(1);
            transform: translate(calc(-50% - 50px), -50%) scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate(calc(-50% - 50px), -50%) scale(0.7);
            transform: translate(calc(-50% - 50px), -50%) scale(0.7);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }
}

@keyframes video_2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  10% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(calc(-50% - 50px), -50%) scale(1);
            transform: translate(calc(-50% - 50px), -50%) scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate(calc(-50% - 50px), -50%) scale(0.7);
            transform: translate(calc(-50% - 50px), -50%) scale(0.7);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }
}

@-webkit-keyframes video_3 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  10% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(calc(-50% + 50px), -50%) scale(1);
            transform: translate(calc(-50% + 50px), -50%) scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate(calc(-50% + 50px), -50%) scale(0.7);
            transform: translate(calc(-50% + 50px), -50%) scale(0.7);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }
}

@keyframes video_3 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  10% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(calc(-50% + 50px), -50%) scale(1);
            transform: translate(calc(-50% + 50px), -50%) scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate(calc(-50% + 50px), -50%) scale(0.7);
            transform: translate(calc(-50% + 50px), -50%) scale(0.7);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }
}

@-webkit-keyframes video_4 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  90% {
    -webkit-transform: translate(calc(-50% + 50px), -50%) scale(1);
            transform: translate(calc(-50% + 50px), -50%) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(calc(-50% + 50px), -50%) scale(0.7);
            transform: translate(calc(-50% + 50px), -50%) scale(0.7);
    opacity: 0;
  }
}

@keyframes video_4 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  90% {
    -webkit-transform: translate(calc(-50% + 50px), -50%) scale(1);
            transform: translate(calc(-50% + 50px), -50%) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(calc(-50% + 50px), -50%) scale(0.7);
            transform: translate(calc(-50% + 50px), -50%) scale(0.7);
    opacity: 0;
  }
}

@-webkit-keyframes video_5 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  90% {
    -webkit-transform: translate(-50%, calc(-50% + 50px)) scale(1);
            transform: translate(-50%, calc(-50% + 50px)) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, calc(-50% + 50px)) scale(0.7);
            transform: translate(-50%, calc(-50% + 50px)) scale(0.7);
    opacity: 0;
  }
}

@keyframes video_5 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  90% {
    -webkit-transform: translate(-50%, calc(-50% + 50px)) scale(1);
            transform: translate(-50%, calc(-50% + 50px)) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, calc(-50% + 50px)) scale(0.7);
            transform: translate(-50%, calc(-50% + 50px)) scale(0.7);
    opacity: 0;
  }
}

@-webkit-keyframes video_6 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  90% {
    -webkit-transform: translate(calc(-50% - 50px), -50%) scale(1);
            transform: translate(calc(-50% - 50px), -50%) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(calc(-50% - 50px), -50%) scale(0.7);
            transform: translate(calc(-50% - 50px), -50%) scale(0.7);
    opacity: 0;
  }
}

@keyframes video_6 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) scale(0);
            transform: translate(-50%, -50%) scale(0.7) scale(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  90% {
    -webkit-transform: translate(calc(-50% - 50px), -50%) scale(1);
            transform: translate(calc(-50% - 50px), -50%) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(calc(-50% - 50px), -50%) scale(0.7);
            transform: translate(calc(-50% - 50px), -50%) scale(0.7);
    opacity: 0;
  }
}

.b1 .video-1,
.b1 .wv-1 {
  left: -20px;
  bottom: 160px;
  width: 192px;
  height: 200px;
  -webkit-animation-name: video_1;
          animation-name: video_1;
}

.b1 .video-2,
.b1 .wv-2 {
  width: 230px;
  left: 40%;
  top: 15%;
  -webkit-animation-name: video_2;
          animation-name: video_2;
}

.b1 .video-3,
.b1 .wv-3 {
  height: 270px;
  right: 8%;
  top: 43%;
  -webkit-animation-name: video_3;
          animation-name: video_3;
}

.b1 .video-4,
.b1 .wv-4 {
  left: 780px;
  bottom: -7%;
  -webkit-animation-name: video_4;
          animation-name: video_4;
  width: 250px;
}

.b1 .video-5,
.b1 .wv-5 {
  left: 13%;
  top: 30%;
  -webkit-animation-name: video_5;
          animation-name: video_5;
  height: 300px;
}

.b1 .video-6,
.b1 .wv-6 {
  right: -15%;
  top: 20%;
  -webkit-animation-name: video_6;
          animation-name: video_6;
}

.b2 h2 {
  margin-bottom: 36px;
}

.b2 p {
  font-size: 16px;
}

.b2__text {
  padding: 32px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}

.b2__text .text {
  border-radius: 16px;
  padding: 16px 20px;
}

.b2__text .text:nth-child(1) {
  background: #D1E4FF;
  width: 325px;
}

.b2__text .text:nth-child(2) {
  border: 1px solid white;
  width: 304px;
}

.b2__text .text:nth-child(2) * {
  color: white;
}

.b2__text .btn {
  align-self: flex-end;
  margin-left: 112px;
}

.b3 h2 {
  margin-bottom: 20px;
}

.b3 p {
  margin-bottom: 32px;
}

.b3__item {
  border-bottom: 1px solid #C0CEE1;
}

.b3__item:last-child {
  border-bottom: none;
}

.b3__item .top {
  display: flex;
  align-items: center;
  gap: 144px;
  padding: 32px 0;
  cursor: pointer;
  position: relative;
}

.b3__item .top * {
  pointer-events: none;
}

.b3__item .top.active .hoverImg {
  display: none;
}

.b3__item .top.active .title img,
.b3__item .top.active .title h3 {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.b3__item .top.active .arrow svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.b3__item .top .hoverImg {
  display: block;
  width: 220px;
  height: auto;
  position: fixed;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translate(50px, 50px);
          transform: translate(50px, 50px);
  z-index: 3;
  border-radius: 20px;
}

.b3__item .top .hoverImg.hover {
  opacity: 1;
}

.b3__item .top .num {
  display: block;
  width: 304px;
  font-size: 32px;
}

.b3__item .top .title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: auto;
}

.b3__item .top .title img {
  display: block;
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translate(-68px, 0);
          transform: translate(-68px, 0);
  opacity: 0;
  transition: 0.4s;
}

.b3__item .top .title h3 {
  -webkit-transform: translate(-68px, 0);
          transform: translate(-68px, 0);
  transition: 0.4s;
}

.b3__item .top .arrow svg {
  display: block;
  transition: 0.4s;
}

.b3__item .main {
  display: none;
}

.b3__item .main .flex {
  display: flex;
  align-items: flex-start;
  gap: 144px;
  padding-bottom: 32px;
}

.b3__item .main img {
  display: block;
  width: 304px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.b3__item .main .lists {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.b3__item .main .row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.b3__item .main .row h4 {
  font-size: 14px;
  font-weight: 500;
}

.b3__item .main .row ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.b3__item .main .row li {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f9faff;
  font-size: 12px;
  font-weight: 500;
}

.b4 {
  background: #F7FAFF;
}

.b4__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 64px;
}

.b4__main {
  display: flex;
  gap: 32px;
}

.b4__main .box {
  width: calc(33.333% - 21.34px);
}

.b4__main .box .img {
  display: block;
  width: 100%;
  padding-bottom: 50%;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 20px;
}

.b4__main .box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.b4__main .box span {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 12px;
  background: #DEEAFB;
  margin-top: 24px;
  transition: 0.4s;
}

.b4__main .box span:hover {
  background: #c0d8fa;
}

.footer {
  border-top: 1px solid #C0CEE1;
  padding: 80px 0;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}

.footer h2 {
  width: 100%;
}

.footer__contacts {
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__contacts .box {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  background: #EEF5FF;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  transition: 0.4s;
}

.footer__contacts .box svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.footer__contacts .box:hover {
  background: #c0d8fa;
}

.footer__other {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer__other .logo img {
  display: block;
  height: 40px;
  width: auto;
}

.footer__other p {
  color: #5A687C;
}

.single {
  padding-top: 150px;
}

.single .txt-content {
  max-width: 800px;
}

.txt-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.txt-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.txt-content ul {
  padding-left: 20px;
}

.txt-content ul li {
  list-style: disc;
}

.txt-content ol {
  padding-left: 20px;
}

.txt-content ol li {
  list-style: decimal;
}

.txt-content a {
  text-decoration: underline;
}

.txt-content blockquote {
  padding: 10px 0 10px 20px;
  border-left: 1px solid #172B47;
}

.b5 {
  padding-top: 150px;
}

.b5 .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.b5__row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b5__row1 .text {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 640px;
}

.b5__row1 .img {
  width: 230px;
}

.b5__row1 .img img {
  width: 100%;
  display: block;
  height: auto;
  -webkit-animation-name: stone;
          animation-name: stone;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

@-webkit-keyframes stone {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  25% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }

  75% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes stone {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  25% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }

  75% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes stoneMob {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  25% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }

  75% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes stoneMob {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  25% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }

  75% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.b5__row2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.b5__row2 p {
  max-width: 640px;
}

.b6 h2 {
  margin-bottom: 36px;
}

.b6__window {
  border-radius: 20px;
  padding: 24px 64px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 80px;
  position: relative;
}

.b6__window:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.b6__window .box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 32px;
  border-radius: 16px;
  border: 1.5px solid #FFF;
  width: 304px;
  transition: 0.4s;
  position: relative;
  z-index: 3;
}

.b6__window .box:hover {
  background: #D1E4FF;
}

.b6__window .box:hover p,
.b6__window .box:hover span {
  color: #172B47;
}

.b6__window .box.big p {
  font-size: 64px;
}

.b6__window .box.big span {
  font-size: 24px;
}

.b6__window .box p {
  color: #FFF;
  font-size: 44px;
  font-weight: 500;
  transition: 0.4s;
}

.b6__window .box span {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
}

.b6__window .top {
  display: flex;
  align-items: flex-end;
  gap: 328px;
}

.b6__window > .box:nth-child(2) {
  margin-left: 304px;
}

.b6__window .bottom {
  display: flex;
  align-items: flex-start;
  gap: 272px;
  margin-bottom: -80px;
  margin-left: auto;
}

.b6__window .bottom .parts {
  background-image: url("../img/parts.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 24px 32px;
  width: 304px;
  position: relative;
  z-index: 3;
}

.b6__window .bottom .parts .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b6__window .bottom .parts .item:nth-child(2) {
  text-align: right;
  margin-left: auto;
}

.b6__window .bottom .parts .item p {
  color: #FFF;
  font-size: 32px;
  font-weight: 500;
}

.b6__window .bottom .parts .item span {
  color: #FFF;
  font-size: 20px;
}

.b7 {
  background: #172B47;
}

.b7 h2 {
  margin-bottom: 36px;
  color: white;
  padding-left: calc(64px + 240px + 32px);
}

.b7__window {
  border-radius: 20px;
  padding: 64px;
  display: flex;
  gap: 32px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.b7__window ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 240px;
}

.b7__window ul li {
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
}

.b7__row {
  width: calc(100% - 240px - 32px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}

.b7__row .box {
  border-radius: 16px;
  border: 1.5px solid #FFF;
  background: rgba(5, 11, 19, 0.2);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 12px;
  width: calc(33.333% - 21.34px);
}

.b7__row .box:last-child {
  width: calc(33.333% - 21.34px + 80px);
}

.b7__row .box h3 {
  color: #FFF;
}

.b7__row .box p {
  color: #FFF;
  font-size: 14px;
}

.b8 h2 {
  margin-bottom: 36px;
}

.b8 .container {
  position: relative;
}

.b8 .map {
  display: block;
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
}

.b8 .box {
  border-radius: 16px;
  background: #F7FAFF;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 304px;
  position: absolute;
}

.b8 .box:nth-child(1) {
  left: 112px;
  top: 0;
}

.b8 .box:nth-child(2) {
  left: 30%;
  top: 28%;
}

.b8 .box:nth-child(3) {
  left: 42.6%;
  bottom: 7.5%;
}

.b8 .box:nth-child(4) {
  left: 0;
  bottom: 0;
}

.b8 .box:nth-child(5) {
  top: 100px;
  right: 0;
}

.b8 .box h3 {
  font-size: 20px;
  font-weight: 600;
}

.b8 .box p,
.b8 .box li {
  font-size: 16px;
}

.b8 .box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
}

.b8 .box ul li {
  list-style: decimal;
}

@media screen and (max-width: 1350px) {
  .b7__window {
    flex-direction: column-reverse;
  }

  .b7__row {
    width: 100%;
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media screen and (max-width: 1200px) {
  .b6__window .top {
    justify-content: space-between;
    gap: 24px;
  }

  .b6__window .bottom {
    gap: 24px;
    justify-content: space-between;
    width: 100%;
  }
}

@media screen and (max-width: 1180px) {
  .b1 .title {
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 500px;
  }

  section {
    padding: 48px 0;
  }

  h1,
  h2 {
    font-size: 32px;
  }

  h3,
  h4,
  h5,
  h6 {
    font-size: 24px;
  }

  .btn {
    font-size: 16px;
    gap: 8px;
    padding: 12px 20px;
  }

  .btn svg {
    width: 20px;
    height: 20px;
  }

  .header .container {
    padding: 12px 0;
  }

  .header__logo img {
    height: 32px;
  }

  .header__menu {
    display: none;
  }

  .header__btn {
    display: none;
  }

  .header__mob__btn {
    display: block;
  }

  .b1 {
    overflow: hidden;
  }

  .b1__bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    bottom: 20px;
  }

  .b1__bottom p {
    font-size: 14px;
  }

  .b1 .rect {
    width: 100px;
    height: 110px;
    border-radius: 12px;
  }

  .b1 .rect-1 {
    width: 220px;
    height: 130px;
  }

  .b1 .rect-2 {
    left: calc(-7% - 50px);
  }

  .b1 .rect-3 {
    top: calc(2% - 50px);
    left: calc(40% - 50px);
  }

  .b1 .rect-4 {
    left: calc(107% - 50px);
    top: calc(70% - 50px);
  }

  .b1 .rect-5 {
    left: calc(80% - 50px);
  }

  .b1 .video,
  .b1 .wv {
    border-radius: 12px;
    width: 100px;
    height: 100px;
  }

  .b1 .video-1,
  .b1 .wv-1 {
    left: 0;
  }

  .b1 .video-2,
  .b1 .wv-2 {
    width: 120px;
    top: 20%;
    left: 60%;
  }

  .b1 .video-3,
  .b1 .wv-3 {
    height: 135px;
    right: -1%;
    top: 51%;
  }

  .b1 .video-4,
  .b1 .wv-4 {
    width: 125px;
    left: unset;
    right: 0;
    bottom: 20%;
  }

  .b1 .video-5,
  .b1 .wv-5 {
    height: 150px;
  }

  .b2 h2 {
    margin-bottom: 24px;
  }

  .b2 p {
    font-size: 14px;
  }

  .b2__text {
    flex-direction: column;
    border-radius: 12px;
    gap: 24px;
    padding: 32px 24px;
  }

  .b2__text .text:nth-child(1) {
    width: 100%;
  }

  .b2__text .text:nth-child(2) {
    width: 100%;
  }

  .b2__text .btn {
    width: 100%;
    margin: 0;
    justify-content: center;
  }

  .b3 h2 {
    margin-bottom: 8px;
  }

  .b3 p {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .b3__item .top {
    padding: 24px 0;
    gap: 20px;
  }

  .b3__item .top .hoverImg {
    display: none;
  }

  .b3__item .top .num {
    font-size: 24px;
    width: 70px;
  }

  .b3__item .top .title {
    gap: 12px;
  }

  .b3__item .top .title img {
    width: 24px;
    height: 24px;
    -webkit-transform: translate(-36px, 0);
            transform: translate(-36px, 0);
  }

  .b3__item .top .title h3 {
    -webkit-transform: translate(-36px, 0);
            transform: translate(-36px, 0);
  }

  .b3__item .top .arrow svg {
    width: 24px;
    height: 24px;
  }

  .b3__item .main .flex {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
  }

  .b3__item .main img {
    width: 100%;
    height: 140px;
    border-radius: 12px;
  }

  .b3__item .main .lists {
    gap: 20px;
  }

  .b3__item .main .row {
    gap: 8px;
  }

  .b3__item .main .row ul {
    gap: 8px;
  }

  .b4__top {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .b4__main {
    flex-direction: column;
    gap: 24px;
  }

  .b4__main .box {
    width: 100%;
  }

  .b4__main .box .img {
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .b4__main .box h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .b4__main .box p {
    font-size: 14px;
  }

  .b4__main .box span {
    font-size: 14px;
    margin-top: 16px;
  }

  .footer {
    padding: 48px 0;
  }

  .footer .container {
    gap: 20px;
  }

  .footer__contacts {
    max-width: 100%;
    gap: 16px;
  }

  .footer__contacts .box {
    max-width: 100%;
    font-size: 16px;
  }

  .footer__other {
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    gap: 10px;
    margin-top: 12px;
  }

  .footer__other .logo img {
    height: 30px;
  }

  .footer__other p {
    font-size: 12px;
  }

  .single {
    padding-top: 80px;
  }

  .b5 {
    padding-top: 80px;
  }

  .b5 .container {
    gap: 24px;
  }

  .b5 p {
    font-size: 14px;
  }

  .b5__row1 {
    flex-direction: column;
    gap: 24px;
  }

  .b5__row1 .text {
    gap: 8px;
  }

  .b5__row1 .img {
    width: 150px;
  }

  .b5__row1 .img img {
    -webkit-animation-name: stoneMob;
            animation-name: stoneMob;
  }

  .b5__row2 {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .b6__window {
    border-radius: 12px;
    padding: 32px 24px;
    margin-bottom: 50px;
  }

  .b6__window:before {
    background: rgba(0, 0, 0, 0.5);
  }

  .b6__window .box {
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    gap: 8px;
  }

  .b6__window .box.big p {
    font-size: 42px;
  }

  .b6__window .box.big span {
    font-size: 16px;
  }

  .b6__window .box p {
    font-size: 32px;
  }

  .b6__window .box span {
    font-size: 12px;
  }

  .b6__window .top {
    flex-direction: column;
  }

  .b6__window > .box:nth-child(2) {
    margin: unset;
  }

  .b6__window .bottom {
    flex-direction: column;
  }

  .b6__window .bottom .parts {
    width: 100%;
    padding: 20px;
  }

  .b6__window .bottom .parts .item span {
    font-size: 12px;
  }

  .b7 h2 {
    padding-left: 0;
    margin-bottom: 24px;
  }

  .b7__window {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .b7__window ul {
    padding: 0 20px;
    gap: 12px;
  }

  .b7__row .box {
    width: 100% !important;
    border-radius: 12px;
    padding: 20px;
    gap: 8px;
  }

  .b7__row .box p {
    font-size: 12px;
  }

  .b8 h2 {
    margin-bottom: 24px;
  }

  .b8 .map {
    display: none;
  }

  .b8 .points {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .b8 .box {
    position: static;
    width: 100%;
    gap: 12px;
  }

  .b8 .box h3 {
    font-size: 18px;
  }

  .b8 .box p,
  .b8 .box li {
    font-size: 14px;
  }

  .b8 .box ul {
    padding-left: 16px;
    gap: 8px;
  }
}

@media screen and (max-width: 768px) {
  .txt-content h1,
  .txt-content h2 {
    font-size: 24px;
  }

  .txt-content h3,
  .txt-content h4,
  .txt-content h5,
  .txt-content h6 {
    font-size: 20px;
  }

  .txt-content p,
  .txt-content li,
  .txt-content a,
  .txt-content div,
  .txt-content span,
  .txt-content font,
  .txt-content blockquote {
    font-size: 14px;
  }

  .txt-content img {
    border-radius: 12px;
  }
}