@charset "UTF-8";
@import "../fonts/stylesheet.css";
@import "../fonts/inter.css";
* {
  box-sizing: border-box;
}

section {
  scroll-margin-top: 60px; /* <<< Ключевое */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", serif;
  background: rgb(243, 245, 250);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Halvar Breitschrift", sans-serif;
}

section {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background: rgb(243, 245, 250);
}

@media (min-width: 1350px) {
  .container {
    max-width: 1296px;
  }
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}

.black {
  height: 1000px;
  width: 100%;
  background: rgb(14, 16, 17);
}

.header {
  height: 100px;
  padding-top: 32px;
  padding-bottom: 32px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  /* Для мобильных устройств */
}
.header-container {
  display: flex;
  justify-content: space-between;
}
.header .lang-selector {
  position: relative;
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header .current-lang {
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.header .other-langs {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.header .lang-selector:hover .other-langs,
.header .lang-selector:focus-within .other-langs {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
}
.header .lang-option {
  display: flex;
  align-items: center;
  padding: 10px 6px;
  width: 36px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease;
  border-radius: 8px;
}
.header .lang-option:hover {
  background: #f8f9fa;
}
.header .lang-option img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.header .current-lang img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header .lang-selector {
    padding: 6px;
  }
  .header .lang-option {
    padding: 10px 14px;
  }
}
.header .menu a {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  margin-right: 36px;
  color: rgb(255, 255, 255);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

video.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-mask-image: url(#);
  mask-image: none;
}

.mask h1 {
  font-size: 15vw;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: black;
  mix-blend-mode: destination-out;
}

.mask-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.mask-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: black;
  mix-blend-mode: destination-out;
  z-index: 2;
}

.mask-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.text {
  width: 100%;
}

.text-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about {
  padding-top: 100px;
}
.about h2 {
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 44px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: rgb(0, 40, 85);
}
.about .description {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: rgb(90, 110, 133);
}

.digits {
  margin-top: 32px;
  margin-bottom: 24px;
  padding: 24px;
  background: rgb(255, 255, 255);
  position: relative;
}
.digits:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  border-top: 2px solid rgb(68, 130, 239);
  border-right: 2px solid rgb(68, 130, 239);
}
.digits:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid rgb(68, 130, 239);
  border-left: 2px solid rgb(68, 130, 239);
}
.digits h3 {
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 65px;
  color: rgb(0, 40, 85);
}
.digits p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: bottom;
  color: rgb(90, 110, 133);
}

.whatsapp {
  background: white;
  position: relative;
}
.whatsapp:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  border-top: 2px solid rgb(68, 130, 239);
  border-right: 2px solid rgb(68, 130, 239);
}
.whatsapp:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid rgb(68, 130, 239);
  border-left: 2px solid rgb(68, 130, 239);
}
.whatsapp h2 {
  margin-top: 120px;
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 44px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: bottom;
  text-transform: uppercase;
  color: rgb(0, 40, 85);
}
.whatsapp p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: rgb(90, 110, 133);
  margin-top: 8px;
  margin-bottom: 35px;
}
.whatsapp .whats-btn {
  padding: 14px 32px;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: rgb(255, 255, 255);
  margin-bottom: 120px;
  background: rgb(68, 130, 239);
}
.whatsapp img {
  width: 100%;
}
.whatsapp .left-text {
  padding-left: 120px;
}

.title {
  margin-top: 120px;
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 44px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: bottom;
  text-transform: uppercase;
  color: rgb(0, 40, 85);
  margin-bottom: 50px;
}

.folder-dark {
  background: rgb(0, 40, 85);
  padding: 120px 64px;
  display: flex;
  position: relative;
}
.folder-dark .rectangle {
  top: -36px;
  position: absolute;
  right: 0;
}
.folder-dark .icons {
  position: absolute;
  top: 222px;
  left: 64px;
}
.folder-dark .icons svg {
  display: block;
  margin-bottom: 20px;
}
.folder-dark img {
  max-width: 432px;
}
.folder-dark .text-container {
  padding-left: 128px;
}
.folder-dark .text-container h2 {
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-top: 117px;
}
.folder-dark .text-container p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.6);
}

.folder-white {
  margin-top: 120px;
  background: white;
  padding: 120px 64px;
  display: flex;
  position: relative;
}
.folder-white .rectangle {
  top: -36px;
  position: absolute;
  left: 0;
  transform: scaleX(-1);
}
.folder-white .icons {
  position: absolute;
  top: 222px;
  left: 64px;
}
.folder-white .icons svg {
  display: block;
  margin-bottom: 20px;
}
.folder-white img {
  max-width: 432px;
}
.folder-white .text-container {
  padding-left: 128px;
}
.folder-white .text-container h2 {
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(0, 40, 85);
  margin-top: 117px;
}
.folder-white .text-container p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: rgb(90, 110, 133);
}

.folder-black {
  background: black !important;
  margin-top: 120px;
}

.advs {
  padding-top: 100px;
  padding-bottom: 100px;
}
.advs h2 {
  margin-top: 120px;
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 44px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: bottom;
  text-transform: uppercase;
  color: rgb(0, 40, 85);
  margin-bottom: 20px;
}
.advs .adv-container {
  height: 100%;
  background: white;
}
.advs .adv-container .text-container {
  padding: 24px;
}
.advs .adv-container img {
  width: 100%;
}
.advs .adv-container h3 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgb(0, 40, 85);
}
.advs .adv-container p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  color: rgb(90, 110, 133);
}

.itis {
  background-color: rgb(0, 40, 85);
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.itis:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: url("../img/itis-bg.png");
}
.itis h2 {
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 44px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: bottom;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 2;
}
.itis p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: rgb(255, 255, 255);
  margin-bottom: 170px;
  position: relative;
  z-index: 2;
}
.itis p.last {
  margin-bottom: 0;
}
.itis .hr {
  width: 100%;
  height: 1px;
  opacity: 0.1;
  background: rgb(255, 255, 255);
  margin-top: 36px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.itis .text-itis {
  position: relative;
}
.itis .text-itis img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.itis .text-itis p {
  max-width: 416px;
}
.itis .right p {
  margin-left: auto;
  text-align: right;
}
.itis .right p.last-absolute {
  position: absolute;
  right: 0;
  bottom: 30px;
  margin-bottom: 0;
  padding-right: 30px;
}

.partners h2 {
  margin-top: 20px;
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 44px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: bottom;
  text-transform: uppercase;
  color: rgb(0, 40, 85);
  margin-bottom: 20px;
}
.partners .partners-container {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 10px;
  position: relative;
}
.partners .partners-container img {
  width: 80%;
}

footer {
  padding-top: 100px;
}
footer .container {
  position: relative;
}
footer .container .contacts-container {
  max-width: 416px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 32px;
  background: #fff;
}
footer .container .contacts-container:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  border-top: 2px solid rgb(68, 130, 239);
  border-right: 2px solid rgb(68, 130, 239);
}
footer .container .contacts-container:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid rgb(68, 130, 239);
  border-left: 2px solid rgb(68, 130, 239);
}
footer .container .contacts-container h2 {
  font-family: Halvar Breitschrift;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: rgb(0, 40, 85);
}
footer .container .contacts-container h4 {
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgb(90, 110, 133);
  margin-top: 24px;
}
footer .container .contacts-container p {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgb(0, 40, 85);
}

/*# sourceMappingURL=style.css.map */
