/*******************
Reset
*******************/
@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  width: 100%;
  font-size: 100%;
  line-height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100dvh;
  min-width: 320px;
  scroll-behavior: smooth;
}
input,
button,
textarea {
  font-family: inherit;
  resize: none;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited,
a:hover {
  text-decoration: none;
}
a {
  font-size: inherit;
  color: inherit;
  display: inherit;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
cite,
span,
ul,
li {
  font-style: normal;
  font-size: inherit;
  font-weight: inherit;
}

/*******************
Fonts
*******************/
@font-face {
  font-family: "Heliosext";
  src: url("../fonts/Heliosext.otf");
  src:
    local("heliosext_regular"),
    local("heliosext-regular"),
    url("../fonts/Heliosext.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Heliosext";
  src: url("../fonts/Heliosext-Italic.ttf");
  src:
    local("heliosext_italic"),
    local("heliosext-italic"),
    url("../fonts/Heliosext-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Heliosext";
  src: url("../fonts/Heliosext-Bold.otf");
  src:
    local("heliosext_bold"),
    local("heliosext-bold"),
    url("../fonts/Heliosext-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Heliosext";
  src: url("../fonts/Heliosext-BoldItalic.ttf");
  src: url("../fonts/Heliosext-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Regular.otf");
  src:
    local("Mulish_Regular"),
    local("Mulish-Regular"),
    url("../fonts/Mulish-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/*******************
Variables
*******************/
:root {
  /* Цвета */
  --le-color-primary: #00a7aa;
  --le-color-primary-2: #96cfd0;
  --le-color-primary-3: #63d7df;
  --le-color-primary-4: #a2e5ea;
  --le-color-bg: #f0f5f6;
  --le-color-gray: #d6d6d6;
  --le-color-secondary: #f85077;
  --le-color-black: #000;
  --le-color-white: #fff;
  /* Шрифты */
  --ff-heading: "Heliosext", Arial, sans-serif;
  --ff-text: "Mulish", Arial, sans-serif;

  /* Проверить */
  --le-color-primary-hover-bg: #e2f5f6;
  --le-color-primary-hover-text: #00a7aa;
  --le-color-primary-disabled-bg: #80d3d5;
  --le-color-primary-disabled-text: #fff;
  --le-color-secondary-hover-bg: #ffeef2;
  --le-color-secondary-disabled-bg: #ffeef2;
  --color-black-text: #1b1b26;
  --color-bg: #f0f5f6;
  --border: 1px solid var(--color-primary);
  --border-radius: 60px;
  --border-radius-small: 40px;
  --container-width: 1332px;
  /* /Проверить */
}

/*******************
General
*******************/

/*** Grid ***/
.le-container {
  max-width: 1332px;
  margin: 0 auto;
  padding: 0px 16px;
}

/*** Typography ***/
.le-h1 {
  margin-bottom: 32px;
  font-family: var(--ff-heading);
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
}
.le-h2 {
  margin-bottom: 28px;
  font-family: var(--ff-heading);
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}
.le-h3 {
  margin-bottom: 28px;
  font-family: var(--ff-heading);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
.le-h4 {
  margin-bottom: 28px;
  font-family: var(--ff-heading);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

/*** Section ***/
.le-section {
  padding: 50px 0;
}

/*** Buttons ***/

/* Primary button */
.le-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  min-width: 240px;
  min-height: 44px;
  margin: 0;
  padding: 0px 20px;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: normal;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  background-color: var(--le-color-primary);
  border: 1px solid transparent;
  outline: none;
  border-radius: 16px;
  transition: 0.3s;
  overflow: hidden;
}
.le-btn:hover {
  color: var(--le-color-primary);
  background-color: var(--le-color-bg);
  transition: 0.3s;
}
/* Primary button with icon */
.le-btn_icon svg path {
  stroke: #fff;
}
.le-btn_icon svg,
.le-btn_icon svg:hover {
  transition: 0.3s;
}
.le-btn_icon:hover svg path {
  stroke: var(--le-color-primary);
}
.le-btn_icon-right span {
  margin-right: 5px;
}
.le-btn_icon-right:hover svg {
  transform: translateX(5px);
  transition: 0.3s;
}
/* Primary white button */
.le-btn_white {
  color: #000;
  background-color: #fff;
}
.le-btn_white.le-btn_icon svg path {
  stroke: #000;
}
.le-btn_white:hover {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.le-btn_white.le-btn_icon:hover svg path {
  stroke: #fff;
}
/* Primary outline button */
.le-btn_outline {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}
.le-btn_outline:hover {
  color: #000;
  background-color: #fff;
}
/* Primary button group */
.le-buttons {
  display: flex;
  align-items: center;
}
.le-buttons_center {
  justify-content: center;
}
.le-buttons .le-btn:first-child {
  margin-right: 16px;
}

/*******************
Components
*******************/

/*** Popup ***/
.le-main-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  z-index: 1000;
}
.le-main-popup.active {
  opacity: 1;
  visibility: visible;
}
.le-main-popup-window {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1720px;
  max-height: 800px;
  background: linear-gradient(45deg, #009caa 0%, #9fccdb 100%);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.le-main-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  z-index: 3;
}
.le-main-popup-close:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: rotate(90deg) scale(1.1);
}
.le-main-popup-content {
  width: 100%;
  height: 100%;
  padding: 90px 100px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.le-main-popup-hex-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}
.le-main-popup-hex {
  position: absolute;
  width: 100px;
  height: 110px;
  background: linear-gradient(to bottom, #e2f5f6, #00a7aa);
  opacity: 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: var(--delay);
}
@keyframes leHexReveal {
  to {
    opacity: 0;
  }
}
.le-main-popup-hex.is-reveal {
  animation: leHexReveal 1s ease forwards;
  animation-delay: var(--delay);
}
.le-main-popup-hex.is-cover {
  opacity: 0;
  animation: leHexCover 1s ease forwards;
  animation-delay: var(--delay);
}
@keyframes leHexReveal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes leHexCover {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.le-main-popup-content__title {
  max-width: 1000px;
  margin-bottom: 70px;
  color: #fff;
}
.le-main-popup-features-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 620px;
  margin-bottom: 40px;
}
.le-main-popup-features-list__item {
  width: 50%;
}
.le-main-popup-features-list__item:first-child {
  padding-right: 30px;
  padding-bottom: 30px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.le-main-popup-features-list__item:nth-child(2) {
  padding-left: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
.le-main-popup-features-list__item:nth-child(3) {
  padding-top: 20px;
  padding-right: 30px;
  border-right: 1px solid #fff;
}
.le-main-popup-features-list__item:nth-child(4) {
  padding-left: 30px;
  padding-top: 20px;
}
.le-main-popup-features-list__item-title {
  margin-bottom: 5px;
  color: #fff;
}
.le-main-popup-features-list__item-desc {
  font-family: var(--ff-text);
  font-size: 15px;
  color: #fff;
}
.le-main-popup-content__img {
  position: absolute;
  right: -9px;
  bottom: -9px;
  max-width: 800px;
  border: 9px solid #019ba9;
  border-top-left-radius: 60px;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .le-main-popup-window {
    max-width: 1200px;
    max-height: 670px;
  }
  .le-main-popup-content {
    padding: 70px;
  }
  .le-main-popup-content__img {
    max-width: 500px;
  }
}
@media (max-width: 1400px) {
  .le-main-popup-content {
    padding: 50px;
  }
  .le-main-popup-content__img {
    max-width: 540px;
  }
}
@media (max-width: 1200px) {
  .le-main-popup-content {
    padding: 50px;
    overflow-y: auto;
  }
  .le-main-popup-content__img {
    max-width: 500px;
  }
  .le-main-popup-content__title {
    margin-bottom: 50px;
  }
  .le-main-popup-features-list__item:first-child {
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .le-main-popup-features-list__item:nth-child(2) {
    padding-left: 20px;
    padding-bottom: 20px;
  }
  .le-main-popup-features-list__item:nth-child(3) {
    padding-top: 10px;
    padding-right: 20px;
  }
  .le-main-popup-features-list__item:nth-child(4) {
    padding-left: 20px;
    padding-top: 10px;
  }
}
@media (max-width: 1130px) {
  .le-main-popup-content {
    padding: 30px;
  }
  .le-main-popup-features-list {
    max-width: 100%;
  }
  .le-main-popup-content__img {
    max-width: 380px;
  }
}
@media (max-width: 991px) {
  .le-main-popup {
    display: none;
  }
}

/********************
Media
********************/
@media (max-width: 1399px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}
@media (max-width: 399px) {
}
