@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Lora:wght@400;500&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

.header {
  position: relative;
}
.header__body {
  display: flex;
  padding: 1.5rem 0;
  align-items: center;
  position: relative;
}
@media (max-width: 767.98px) {
  .header__body {
    justify-content: space-between;
  }
}
.header__logo {
  flex: 0 0 33.33%;
  z-index: 3;
}
@media (max-width: 767.98px) {
  .header__logo {
    width: 25%;
  }
}
.header__menu {
  flex-grow: 1;
  display: flex;
}
.header__m {
  display: flex;
}
.header__send {
  display: inline-flex;
  background-color: #1182A4;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 120%;
  transition: 0.3s all ease;
  z-index: 3;
}
@media (max-width: 767.98px) {
  .header__send {
    font-size: 0.5rem;
  }
}
.header__send:hover {
  background-color: #00618D;
}
@media (max-width: 767.98px) {
  .menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background-color: #fff;
    transition: all 0.3s ease;
    z-index: 2;
  }
}
.menu._active {
  top: 0;
}
@media (max-width: 767.98px) {
  .menu__body {
    width: 100%;
  }
}
.menu__list {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}
@media (max-width: 767.98px) {
  .menu__list {
    flex-direction: column;
    align-items: center;
    padding: 8rem 1rem;
  }
}
.menu__link {
  font-size: 0.75rem;
  font-weight: 500;
  color: #1C1D1D;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.menu__link:hover {
  color: #1182A4;
}
@media (max-width: 767.98px) {
  .menu__link {
    font-size: 36px;
    line-height: 140%;
    text-align: center;
  }
}

.burger {
  display: none;
}
@media (max-width: 767.98px) {
  .burger {
    position: relative;
    display: block;
    justify-self: flex-end;
    flex: 0 0 34px;
    height: 34px;
    background-color: #1182A4;
    border-radius: 4px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
  }
  .burger:hover {
    background-color: #00618D;
  }
  .burger span {
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 6px;
    position: absolute;
    width: 67%;
    height: 2px;
    background-color: #EFF3F9;
  }
  .burger span:first-child {
    top: 10px;
    left: 6px;
  }
  .burger span:last-child {
    top: auto;
    bottom: 10px;
  }
  .burger._active span {
    transform: scale(0);
  }
  .burger._active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .burger._active span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

.footer_t {
  margin-top: 1rem;
}
.footer__body {
  background-color: #1A1B1B;
  color: #EFF3F9;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
.footer__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem 16.66%;
}
@media (max-width: 767.98px) {
  .footer__block {
    grid-template-columns: 1fr;
  }
}
.footer__info {
  padding: 0 2.5rem;
}
@media (max-width: 767.98px) {
  .footer__info {
    padding: 1rem 0;
  }
}
.footer__name {
  color: #1182A4;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.footer__text {
  padding: 0.5rem 0 1rem 0;
  line-height: 140%;
}
.footer__link {
  font-size: 1.5rem;
  line-height: 120%;
  color: #EFF3F9;
  transition: all 0.3s ease;
}
.footer__link:hover {
  color: #1182A4;
}
.footer__b {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  display: flex;
}
@media (max-width: 767.98px) {
  .footer__b {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.footer__b a {
  color: #EFF3F9;
  transition: all 0.3s ease;
}
.footer__b a:hover {
  color: #1182A4;
}
.footer__copy {
  flex-grow: 1;
}
.footer__s {
  margin-left: 2rem;
}
@media (max-width: 767.98px) {
  .footer__s {
    margin-left: 0;
  }
}

html {
  font-family: "Inter";
  font-size: clamp(18px, 18px + 4 * (100vw - 1440px) / 440, 22px);
  font-weight: 300;
  line-height: 140%;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

body {
  min-height: 100%;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  background-color: #EDEEF3;
  color: #000000;
}
body._lock {
  overflow: hidden;
}

.main {
  flex-grow: 1;
}

h1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
    text-align: center;
  }
}

h2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 120%;
}

h5 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 140%;
}

h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  h3 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  h6 {
    font-size: 1rem;
  }
}

._container {
  max-width: 1880px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  ._container {
    padding: 0 1rem;
  }
}

.hero {
  background-image: url("/img/hero_bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  margin-bottom: 1rem;
}
.hero__body {
  display: flex;
  padding: 2rem 0;
}
@media (max-width: 767.98px) {
  .hero__body {
    flex-direction: column;
  }
}
.hero__text {
  padding-right: 8rem;
  line-height: 140%;
  font-size: 1.25rem;
}
@media (max-width: 767.98px) {
  .hero__text {
    text-align: center;
    padding-right: 0;
    margin-bottom: 2rem;
  }
}
.hero__texts {
  flex: 0 0 50%;
  margin-top: 4rem;
  padding-right: 4rem;
}
@media (max-width: 767.98px) {
  .hero__texts {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
.hero__title {
  margin-bottom: 2rem;
}
.hero__title span {
  color: #1182A4;
  background: linear-gradient(225deg, rgb(47, 167, 180) 7%, rgb(11, 114, 150), rgb(0, 64, 101));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero__image {
  flex: 0 0 50%;
  position: relative;
}
.hero__image img {
  width: 100%;
}
.hero__items {
  position: absolute;
  padding: 0.5rem 1rem;
  border-radius: 0.33rem;
}
.hero__items:nth-child(1) {
  background-color: #1182A4;
  top: -3%;
  left: 50%;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
  -webkit-box-shadow: 0px 9px 8px -5px rgba(8, 68, 114, 0.59);
  -moz-box-shadow: 0px 9px 8px -5px rgba(8, 68, 114, 0.59);
  box-shadow: 0px 9px 8px -5px rgba(8, 68, 114, 0.59);
}
.hero__items:nth-child(2) {
  background-color: #2FA7B4;
  bottom: 30%;
  left: 2%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  -webkit-box-shadow: 0px 9px 8px -5px rgba(11, 122, 173, 0.59);
  -moz-box-shadow: 0px 9px 8px -5px rgba(8, 68, 114, 0.59);
  box-shadow: 0px 9px 8px -5px rgba(8, 68, 114, 0.59);
}
.hero__items:nth-child(3) {
  background-color: #00618D;
  top: 50%;
  right: 5%;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 400;
  -webkit-box-shadow: 0px 9px 8px -5px rgba(8, 68, 114, 0.59);
  -moz-box-shadow: 0px 9px 8px -5px rgba(8, 68, 114, 0.59);
  box-shadow: 0px 9px 8px -5px rgba(8, 68, 114, 0.59);
}

.system {
  margin-bottom: 6rem;
}
.system__block {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .system__block {
    flex-direction: column;
  }
}
.system__block-one {
  flex: 0 0 50%;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  padding: 3rem 2rem;
  border: 3px solid #C7CAD9;
  border-right: none;
}
@media (max-width: 767.98px) {
  .system__block-one {
    border-right: 3px solid #C7CAD9;
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
  }
}
.system__one {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #DB4D4D;
  margin-bottom: 2rem;
}
.system__item {
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  margin: 0 2rem 1rem 0;
  padding-left: 2rem;
  position: relative;
}
@media (max-width: 767.98px) {
  .system__item {
    margin: 0 0 1rem 0;
  }
}
.system__block-two {
  flex: 0 0 50%;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
@media (max-width: 767.98px) {
  .system__block-two {
    padding: 1rem;
  }
}
.system__two {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #1182A4;
  margin-bottom: 2rem;
}

.top {
  padding: 0 25%;
  margin-bottom: 4rem;
}
@media (max-width: 767.98px) {
  .top {
    padding: 0 1rem;
  }
}

.title {
  text-align: center;
  padding: 0 20%;
}
@media (max-width: 767.98px) {
  .title {
    padding: 0 2rem;
  }
}

.info {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  .info {
    font-size: 1.25rem;
  }
}

.one::before {
  content: "";
  position: absolute;
  top: 0.185rem;
  left: 0;
  color: #1182A4;
  background-image: url("/img/bad.svg");
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.two::before {
  content: "";
  position: absolute;
  top: 0.185rem;
  left: 0;
  color: #1182A4;
  background-image: url("/img/check.svg");
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.functions {
  background-image: url("/img/fbg.png");
  margin-bottom: 6rem;
}
.functions__block {
  padding: 0 10%;
}
@media (max-width: 767.98px) {
  .functions__block {
    padding: 0;
  }
}
.functions__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .functions__list {
    grid-template-columns: 1fr;
  }
}
.functions__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
}
@media (max-width: 767.98px) {
  .functions__item {
    height: 30vh;
    padding: 1rem;
  }
}
.functions__item:first-child {
  background-color: rgba(17, 130, 164, 0.7254901961);
  aspect-ratio: 1/1;
  color: #fff;
}
.functions__item:nth-child(3) {
  background-color: rgba(255, 255, 255, 0.7254901961);
  aspect-ratio: 1/1;
  color: #1C1D1D;
}
.functions__item:nth-child(4) {
  background-color: rgba(255, 255, 255, 0.7254901961);
  aspect-ratio: 1/1;
  color: #1C1D1D;
}
.functions__item:nth-child(5) {
  background-color: rgba(0, 96, 141, 0.7529411765);
  aspect-ratio: 1/1;
  color: #fff;
}
.functions__item:nth-child(2) {
  grid-row: span 2;
  background-image: url("/img/fun2.jpg");
  background-position: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
@media (max-width: 767.98px) {
  .functions__item:nth-child(2) {
    grid-row: span 1;
  }
}
.functions__item:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: inherit;
  z-index: -1;
}
.functions__text {
  font-size: 0.85rem;
  line-height: 120%;
  font-weight: 400;
  padding-right: 1rem;
}
.functions__label {
  margin-bottom: 0.5rem;
}

.feat {
  margin-bottom: 6rem;
}
.feat__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .feat__list {
    grid-template-columns: 1fr;
  }
}
.feat__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
}
.feat__text {
  font-size: 1.25rem;
  font-weight: 500;
  padding-right: 2rem;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  .feat__text {
    font-size: 1rem;
  }
}

.faq {
  margin-bottom: 6rem;
}
.faq__info {
  margin-bottom: 1rem;
}
.faq__spoiler {
  padding: 0 16.67%;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .faq__spoiler {
    padding: 0 1rem;
  }
}
.faq__text {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.spoiler__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.spoiler__item {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
}
@media (max-width: 767.98px) {
  .spoiler__item {
    padding: 1rem;
  }
}
.spoiler__item._active .spoiler__title::after {
  content: "−"; /* меняем плюс на минус */
  transform: rotate(180deg);
}
.spoiler__title {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #1C1D1D;
  width: 100%;
}
.spoiler__title::after {
  content: "+"; /* плюс по умолчанию */
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease, content 0.15s;
  margin-left: 1rem;
}
.spoiler__text {
  font-size: 0.85rem;
  line-height: 140%;
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s ease;
}
.spoiler__text span {
  display: block;
  margin-top: 1rem;
}
.spoiler__block {
  text-align: center;
}/*# sourceMappingURL=style.css.map */