@charset "UTF-8";
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Mulish-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/Mulish-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Mulish-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/Mulish-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Mulish-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/Mulish-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Mulish-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/Mulish-SemiBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Mulish-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/Mulish-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Mulish-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/Mulish-ExtraBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Mulish-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/Mulish-BlackItalic.woff2") format("woff2");
}
:root {
  --accent-color: #20E148;
  --alt-color: rgba(46, 50, 62, 0.60);
  --gray-color: #F3F5F7;
  --border-color: #E6E9EE;
  --h-height: 142px;
  --decor-height: 62px;
  --container: 1430px;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

*:focus {
  outline: none;
}

*:invalid {
  box-shadow: none;
}

body {
  margin: 0;
  padding: calc(var(--h-height) + 60px) 0 0;
  display: flex;
  flex-direction: column;
  min-width: 360px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font: normal normal 18px/1.44 Mulish, sans-serif, sans-serif;
  color: #131313;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1em 0;
  text-wrap: balance;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.17;
  margin: 0 0 0.55em;
}

h2 {
  font-size: 40px;
  line-height: 1.17;
}

h3 {
  font-size: 32px;
  margin: 0 0 0.45em;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0 0 1em;
}

p {
  margin: 0 0 1em;
  color: rgba(19, 19, 19, 0.6);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  transition: all 0.25s ease-out;
  text-decoration: none;
  background-color: transparent;
}

em {
  color: #FC070C;
}

.accent-text {
  color: var(--accent-color);
}

.red-text {
  color: #FC070C;
}

.gray-text {
  color: #b8babd;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

img,
iframe,
video {
  max-width: 100%;
  user-select: none;
}

.mask-icon {
  display: inline-block;
  vertical-align: middle;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
}

.decor-element {
  position: absolute;
  opacity: 1;
  pointer-events: none;
  animation: float-animation 6s ease-in-out infinite alternate;
}

.decor-element:nth-child(1) {
  width: 46px;
  height: 46px;
  left: calc(50% - (var(--container) + 350px) / 2);
  top: 22%;
  animation-duration: 5s;
  animation-delay: 0s;
}

.decor-element:nth-child(2) {
  width: 40px;
  height: 40px;
  left: calc(50% - (var(--container) + 290px) / 2);
  top: 50%;
  animation-duration: 8s;
  animation-delay: -2s;
}

.decor-element:nth-child(3) {
  width: 42px;
  height: 42px;
  left: calc(50% - (var(--container) + 370px) / 2);
  bottom: 19%;
  transform: rotate(15deg);
  animation-duration: 7s;
  animation-delay: -4s;
}

.decor-element:nth-child(4) {
  width: 44px;
  height: 44px;
  left: calc(50% + (var(--container) + 200px) / 2);
  top: 21%;
  transform: rotate(-10deg);
  animation-duration: 6.5s;
  animation-delay: -1s;
}

.decor-element:nth-child(5) {
  width: 35px;
  height: 35px;
  left: calc(50% + (var(--container) + 300px) / 2);
  top: 48%;
  animation-duration: 5.5s;
  animation-delay: -3s;
}

.decor-element:nth-child(6) {
  width: 48px;
  height: 48px;
  left: calc(50% + (var(--container) + 190px) / 2);
  bottom: 22%;
  transform: rotate(45deg);
  animation-duration: 7.5s;
  animation-delay: -5s;
}

input, textarea, button, select {
  font: inherit;
  color: inherit;
}

input, textarea {
  outline: none;
}

input {
  width: 100%;
}

legend {
  font-size: 1.1em;
  font-weight: 600;
  margin: 0 0 0.8em;
}

fieldset {
  margin: 0 0 24px;
}

[type=search] {
  appearance: textfield;
}
[type=search]::-webkit-search-decoration, [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-results-button, [type=search]::-webkit-search-results-decoration {
  display: none;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 18px;
}

.row:last-child {
  margin: 0;
}

.field {
  margin: 0 0 18px;
}

.field:last-child {
  margin: 0;
}

.field-half {
  width: calc((100% - 20px) / 2);
  margin: 0;
}

.field-name {
  font-size: 0.88em;
  display: block;
  margin: 0 0 10px;
}

.field-input {
  appearance: none;
  width: 100%;
  background: transparent;
  transition: border-color 0.25s ease-out;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  height: 56px;
  padding: 0 16px;
  font-size: 0.88em;
}

.field-input:focus {
  border-color: #20E148;
}

.radio-tabs {
  display: flex;
  border-bottom: 1px solid #E3E3E3;
}

.radio-tab {
  display: none;
}

.radio-tab:checked + .radio-tab-name {
  color: #131313;
}

.radio-tab:checked + .radio-tab-name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #E1DE0C, #20E148);
  border-radius: 2px;
}

.radio-tab-name {
  font-size: 22px;
  font-weight: 600;
  color: rgba(19, 19, 19, 0.6);
  flex: 1 1 auto;
  position: relative;
  line-height: 2.2;
}

.input-file {
  display: none;
  opacity: 0;
  position: absolute;
}

textarea {
  resize: none;
  overflow: auto;
}

select::-ms-expand {
  display: none;
}

.field-select {
  appearance: none;
  width: 100%;
  background: transparent;
  transition: border-color 0.25s ease-out;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  height: 56px;
  padding: 0 16px;
  font-size: 0.88em;
  background: url("/img/svg-icons/angle-bottom.svg") no-repeat center right 25px/14px auto;
}

.field-select:focus {
  background-image: url("/img/svg-icons/angle-top.svg");
  border: 1px solid #20E148;
}

.field-input.is-invalid,
.field-select.is-invalid {
  border-color: #ff3b30;
  background-color: #fff9f9;
}

/* Сообщение об ошибке (создается динамически через JS) */
.error-message {
  color: #ff3b30;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

label {
  user-select: none;
}

button {
  cursor: pointer;
  background: 0;
  border: 0;
  box-shadow: none;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  appearance: none;
  cursor: pointer;
  max-width: 100%;
  user-select: none;
  border-radius: 100px;
  background: #FFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  padding: 4px;
  line-height: 1;
  position: relative;
  font-weight: 500;
}

.btn-inner {
  padding: 12px 24px 12px 14px;
  border-radius: 100px;
  border: 1px solid transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  width: 100%;
}

.btn-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  pointer-events: none;
}

.btn-gradient {
  color: #fff;
  box-shadow: none;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to right, #E1DE0C, #20E148);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-gradient .btn-inner::before {
  background: linear-gradient(to right, #E1DE0C, #20E148);
}

.btn-white .btn-inner::before {
  background: linear-gradient(to right, #E1DE0C, #20E148);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.btn-icon {
  position: relative;
  z-index: 1;
  font-size: 1.56em;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-block {
  width: 100%;
}

table {
  width: 100%;
}

th {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  padding: 40px 50px;
}

td {
  padding: 28px 50px;
  width: 33.3333333333%;
}

tbody tr:last-child td {
  padding-bottom: 50px;
}

/*~ header ~*/
.header {
  font-weight: 500;
  padding: 40px 0;
  line-height: 1;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.header > .container {
  display: flex;
  gap: 20px;
}

.logo {
  padding: 8px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 auto;
}

.header-logo {
  background-color: var(--gray-color);
  max-height: 60px;
}

.logo img {
  max-height: 100%;
}

.header-menu {
  margin: 0;
  padding: 0 28px;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: var(--gray-color);
  border-radius: 100px;
  line-height: 1;
}

.header-menu li a {
  line-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-lang {
  margin: 0 0 0 auto;
  position: relative;
  display: flex;
}

.header-lang-output {
  text-align: center;
  background-color: var(--gray-color);
  border-radius: 100px;
  padding: 8px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-lang-open .header-lang-output {
  background-color: #E9EBED;
}

.header-lang-list {
  opacity: 0;
  padding: 6px;
  margin: 0;
  list-style-type: none;
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  background-color: #fff;
  box-shadow: 0 4px 16px 0 rgba(34, 37, 40, 0.08);
  border-radius: 24px;
  line-height: 1;
  width: max-content;
  text-align: center;
  font-size: 16px;
}

.header-lang-list a {
  display: block;
  padding: 14px 22px;
}

.header-lang-list .active {
  background-color: var(--gray-color);
  border-radius: 100px;
}

.header-lang-open .header-lang-list {
  opacity: 1;
  pointer-events: auto;
}

/*~ containers ~*/
.container {
  max-width: var(--container);
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.buttons-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section {
  padding: 70px 0;
  overflow: hidden;
}

.section:first-child {
  padding-top: 0;
}

.section-head {
  text-align: center;
  text-wrap: balance;
  margin: 0 0 60px;
  font-size: 24px;
}

.section-head h2 {
  margin: 0 0 0.4em;
}

.section-head:last-child {
  margin: 0;
}

.section-head h2:last-child {
  margin: 0;
}

.section-footer {
  padding: 60px 0 0;
  text-align: center;
}

.section-footer-buttons {
  justify-content: center;
}

.intro-section {
  position: relative;
}

.intro {
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 1;
}

.intro-content {
  max-width: 680px;
  width: 100%;
  padding-bottom: 10px;
  flex: 0 0 auto;
}

.intro-text {
  font-size: 22px;
  line-height: 1.54;
  margin: 0 0 32px;
}

.intro-text:last-child {
  margin: 0;
}

.intro-video-wrapper {
  max-width: 620px;
  width: 100%;
}

.intro-decor-elements .decor-element:nth-child(1) {
  width: 30px;
  left: calc(50% - (var(--container) + 220px) / 2);
  top: 3%;
}

.intro-decor-elements .decor-element:nth-child(2) {
  left: calc(50% - (var(--container) + 380px) / 2);
  top: 34%;
}

.intro-decor-elements .decor-element:nth-child(3) {
  left: calc(50% - (var(--container) + 260px) / 2);
  bottom: 28%;
}

.intro-decor-elements .decor-element:nth-child(4) {
  left: calc(50% + (var(--container) + 200px) / 2);
  top: 4%;
}

.intro-decor-elements .decor-element:nth-child(5) {
  left: calc(50% + (var(--container) + 330px) / 2);
  top: 32%;
}

.intro-decor-elements .decor-element:nth-child(6) {
  left: calc(50% + (var(--container) + 120px) / 2);
  bottom: 30%;
}

.about-section {
  padding: 0 0 110px;
}

.about {
  display: flex;
  align-items: flex-start;
}

.about-item {
  padding: 0 60px;
  border-left: 2px solid var(--gray-color);
  font-size: 20px;
  line-height: 1.4;
  text-wrap: balance;
  width: 25%;
  flex: 1 1 auto;
}

.about-item:first-child {
  border: 0;
  padding-left: 0;
  width: calc(25% - 60px);
}

.about-item:last-child {
  padding-right: 0;
  width: calc(25% - 60px);
}

.about-item strong {
  font-size: 40px;
  line-height: 1;
  display: block;
  position: relative;
  margin: 0 0 0.8em;
}

.about-item strong::after {
  content: "";
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #E1DE0C 0%, #20E148 100%);
  position: absolute;
  left: 0;
  bottom: -0.5em;
}

.industries-swiper {
  overflow: visible;
}

.industries-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.industry {
  width: 520px;
  border: 10px solid var(--gray-color);
  border-radius: 48px;
  padding: 10px;
}

.industry-text {
  padding: 20px;
  margin: 0 0 16px;
  text-align: center;
  user-select: none;
}

.industry-text:last-child {
  margin: 0;
}

.industry-text h4 {
  margin: 0 0 0.5em;
}

.industry-image {
  border: 20px solid var(--gray-color);
  border-radius: 40px;
}

.industry-image img {
  border-radius: 32px;
  width: 100%;
  height: auto;
  max-height: 100%;
  box-shadow: 0 40px 40px 0 rgba(19, 19, 19, 0.04);
  object-fit: cover;
  object-position: center;
}

.advantages-section {
  position: relative;
}

.advantage {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc((100% - 40px) / 2);
  border: 10px solid #F4F5F7;
  border-radius: 48px;
  padding: 32px 40px;
  background-color: #fff;
}

.advantage-text {
  max-width: 320px;
  width: 100%;
  flex: 0 0 auto;
}

.advantage-text h4 {
  line-height: 1.28;
  margin: 0 0 0.5em;
}

.decor-ring {
  width: 445px;
  height: 445px;
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, transparent 78%, black 79%);
  mask: radial-gradient(farthest-side, transparent 78%, black 79%);
  z-index: -1;
}

.decor-ring::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #E1DE0C, #20E148, #E1DE0C);
  animation: spinRing 6s linear infinite;
}

.decor-ring:nth-child(1) {
  left: calc(50% + (var(--container) - 500px) / 2);
  top: 17.5%;
}

.decor-ring:nth-child(2) {
  left: calc(50% - (var(--container) + 350px) / 2);
  bottom: 9.5%;
}

.decor-ring:nth-child(2)::before {
  animation-delay: -2s;
}

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

.capability-content {
  max-width: 915px;
  flex: 0 0 auto;
  width: 100%;
}

.capability-section-head {
  text-align: left;
}

.capability-image {
  max-width: 480px;
}

.capability-items {
  margin: 0 0 58px;
}

.capability-item {
  width: calc((100% - 40px) / 2);
}

.capability-item h4 {
  position: relative;
}

.capability-item h4::after {
  content: "";
  width: 25%;
  height: 2px;
  background: linear-gradient(90deg, #E1DE0C 0%, #20E148 100%);
  position: absolute;
  left: 0;
  bottom: -0.5em;
}

.capability-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.capability-image img {
  max-width: 100%;
  height: auto;
}

.capability-image::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: var(--decor-height);
  background: url("/img/zigzag.svg") repeat 0 0/auto 100%;
  pointer-events: none;
  animation: moveZigZag 7s linear infinite;
}

.variants-table {
  border: 10px solid #F4F5F7;
  border-radius: 48px;
}

.variants-table h4 {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding: 0 0 0 55px;
}

.variants-table h4::before {
  content: "";
  width: 38px;
  height: 38px;
  background: url("/img/triangle.svg") no-repeat left center/auto;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.safety-section {
  position: relative;
}

.safety {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 512px 1fr;
  background-color: #F4F5F7;
}

.safety::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 48px;
  padding: 1px;
  background: linear-gradient(to right, #E1DE0C, #20E148);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.safety-item {
  padding: 40px;
  border-bottom: 1px solid #F4F5F7;
  flex: 1 1 auto;
  background-color: #fff;
  align-content: center;
}

.safety-item h4 {
  margin: 0 0 0.5em;
}

.safety-image {
  padding: 20px 0 0;
  background-color: #fff;
  grid-row: span 2;
  height: 100%;
  align-content: flex-end;
  align-self: flex-end;
}

.safety-image img {
  max-height: 100%;
}

.safety-column-big {
  align-self: flex-end;
}

.steps-section {
  padding: 70px 0 120px;
  position: relative;
}

.steps {
  display: flex;
  position: relative;
  margin: 0 0 10px;
}

.steps:last-child {
  margin: 0;
}

.steps::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #E1DE0C 0%, #20E148 100%);
}

.step {
  padding: 0 40px 60px;
  border-right: 1px solid #F4F5F7;
  position: relative;
  width: 25%;
  z-index: 2;
}

.step::after {
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  background-color: #20E148;
  right: -0.6em;
  bottom: -0.6em;
  z-index: 1;
}

.step:last-child {
  border-color: transparent;
}

.step:last-child::after {
  display: none;
}

.step-number {
  font-size: 24px;
  font-weight: 600;
  color: rgba(19, 19, 19, 0.6);
  margin: 0 0 16px;
  line-height: 1;
}

.step-text h4 {
  margin: 0 0 0.3em;
}

.step-text strong {
  font-size: 20px;
  font-weight: 400;
  display: block;
  margin: 0 0 0.75em;
}

.glow-spot {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 100%;
  height: 350px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(225, 222, 12, 0.5) 0%, rgba(32, 225, 72, 0.2) 50%, rgba(255, 255, 255, 0) 70%);
  filter: blur(300px);
  animation: breathe-glow 5s ease-in-out infinite alternate;
}

/*~ footer ~*/
.footer {
  margin-top: auto;
  padding: 60px 0 80px;
  background-color: #131313;
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer p {
  color: #fff;
}

.footer-top {
  margin: 0 0 40px;
  line-height: 1;
}

.footer-top > .container {
  display: flex;
  gap: 20px;
}

.footer-logo {
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  max-height: 72px;
}

.footer-slogan {
  margin: 0 auto;
  padding: 8px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-link {
  padding: 8px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}

.footer-bottom {
  font-size: 16px;
}

.footer-text {
  margin: 0 0 40px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveZigZag {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: calc(var(--decor-height) / 62 * 468) 0;
  }
}
@keyframes float-animation {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) translateX(8px) rotate(3deg);
  }
  100% {
    transform: translateY(-30px) translateX(-4px) rotate(-5deg);
  }
}
@keyframes breathe-glow {
  0% {
    opacity: 0.4;
    transform: translateX(-50%) scale(0.95);
  }
  100% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.05);
  }
}
.modal {
  max-width: 640px;
  width: 100%;
  border: 10px solid #F3F5F7;
  border-radius: 48px;
  padding: 30px;
  display: none;
}

.modal-head {
  text-align: center;
  margin: 0 0 24px;
}

.modal-head:last-child {
  margin: 0;
}

.modal-head h3 {
  font-weight: 800;
}

.modal-text {
  text-align: center;
  line-height: 1.3;
}

.swiper-pagination-static {
  position: static;
  padding: 30px 0 0;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 2.5px;
  background: var(--gray-color);
  border-radius: 0;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #E1DE0C 0%, #20E148 100%);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.25;
}

.fancybox-container.fancybox-is-open {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.fancybox-container {
  -webkit-backface-visibility: visible;
}

@media (hover: hover) {
  .header-lang-output:hover {
    background-color: #E9EBED;
  }
  .btn:hover {
    transform: scale(1.05);
  }
}
@media (max-width: 1599px) {
  :root {
    --container: 1130px;
  }
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 36px;
  }
  h4 {
    font-size: 26px;
  }
  th {
    padding: 20px 30px;
    font-size: 22px;
  }
  td {
    padding: 20px 30px;
  }
  .box {
    gap: 30px;
  }
  .section-head {
    font-size: 20px;
  }
  .header-menu li a {
    line-height: 59px;
  }
  .header-logo {
    max-height: 59px;
  }
  .intro {
    gap: 60px;
  }
  .intro-text {
    font-size: 18px;
  }
  .intro-video-wrapper {
    max-width: 500px;
  }
  .intro-decor-elements .decor-element:nth-child(1) {
    left: 2.5%;
    top: 5%;
  }
  .intro-decor-elements .decor-element:nth-child(2) {
    left: 52%;
  }
  .intro-decor-elements .decor-element:nth-child(3) {
    left: 5%;
    bottom: 10%;
  }
  .intro-decor-elements .decor-element:nth-child(4) {
    left: auto;
    right: 6%;
    top: 6%;
  }
  .intro-decor-elements .decor-element:nth-child(5) {
    left: auto;
    right: -0.5%;
    top: 45%;
  }
  .intro-decor-elements .decor-element:nth-child(6) {
    left: auto;
    bottom: 8%;
    right: 1%;
  }
  .intro-content {
    max-width: 535px;
  }
  .about-section {
    padding: 0 0 70px;
  }
  .about-item {
    padding: 0 40px;
    font-size: 18px;
  }
  .about-item:first-child,
  .about-item:last-child {
    width: calc(25% - 40px);
  }
  .about-item strong {
    font-size: 30px;
  }
  .industry {
    width: 440px;
  }
  .industry-image {
    border-width: 15px;
  }
  .industry-text {
    padding: 15px;
  }
  .advantage {
    width: calc((100% - 30px) / 2);
    padding: 20px;
  }
  .advantage-text {
    max-width: 255px;
  }
  .advantage-text h4 {
    font-size: 24px;
  }
  .decor-ring {
    width: 280px;
    height: 280px;
  }
  .decor-ring:nth-child(1) {
    left: calc(50% + (var(--container) - 405px) / 2);
    top: 18.5%;
  }
  .decor-ring:nth-child(2) {
    left: calc(50% - (var(--container) + 160px) / 2);
    bottom: 15.5%;
  }
  .capability {
    gap: 20px;
  }
  .capability-item {
    width: calc((100% - 30px) / 2);
  }
  .capability-content {
    max-width: 730px;
    width: 100%;
  }
  .variants-table h4 {
    font-size: 20px;
  }
  .safety {
    grid-template-columns: 1fr 345px 1fr;
  }
  .safety-item {
    padding: 30px;
  }
  .step {
    padding: 0 20px 40px;
  }
  .step-number {
    font-size: 22px;
  }
  .step-text strong {
    font-size: 18px;
  }
  .footer-logo {
    max-height: 66px;
  }
}
@media (max-width: 1279px) {
  :root {
    --container: 960px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  h4 {
    font-size: 24px;
  }
  th {
    padding: 20px 20px 0;
    font-size: 20px;
  }
  td {
    padding: 20px;
  }
  tbody tr:last-child td {
    padding-bottom: 35px;
  }
  .section {
    padding: 60px 0;
  }
  .section-head {
    font-size: 18px;
    margin: 0 0 45px;
  }
  .header {
    padding: 20px 0;
  }
  .header-menu {
    display: none;
  }
  .logo {
    padding: 8px 0;
  }
  .about-section {
    padding: 0 0 60px;
  }
  .intro-content {
    max-width: 435px;
  }
  .about-item {
    padding: 0 20px;
    font-size: 16px;
  }
  .about-item:first-child,
  .about-item:last-child {
    width: calc(25% - 20px);
  }
  .about-item strong {
    font-size: 28px;
  }
  .advantages {
    justify-content: center;
  }
  .advantage {
    flex-wrap: wrap;
    max-width: 380px;
    padding: 30px 20px;
    gap: 30px;
  }
  .advantage-image {
    order: -1;
    max-width: 250px;
    margin: 0 auto;
  }
  .advantage-text {
    max-width: 100%;
  }
  .advantage-text h4 {
    font-size: 22px;
  }
  .capability-content {
    max-width: 580px;
  }
  .variants-table h4 {
    font-size: 18px;
  }
  .safety {
    display: flex;
    flex-wrap: wrap;
    margin-top: 320px;
  }
  .safety-image {
    position: absolute;
    top: -300px;
    width: 100%;
    height: auto;
    z-index: -1;
    text-align: center;
  }
  .safety-image img {
    width: 430px;
  }
  .safety-item {
    width: calc((100% - 30px) / 2);
    align-content: flex-start;
  }
  .step:first-child {
    padding-left: 0;
  }
  .step:last-child {
    padding-right: 0;
  }
}
@media (max-width: 1023px) {
  :root {
    --container: 100%;
    --decor-height: 40px;
  }
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
  h4 {
    font-size: 22px;
    line-height: 1.1;
  }
  .box {
    gap: 20px;
  }
  .section {
    padding: 40px 0;
  }
  .decor-elements {
    opacity: 0.2;
  }
  .header-buttons {
    display: none;
  }
  .header > .container {
    align-items: center;
  }
  .header-lang-list {
    right: 0;
    left: auto;
    transform: none;
  }
  .intro {
    flex-wrap: wrap;
    gap: 0;
  }
  .intro-content {
    margin: 0 auto;
    max-width: 600px;
  }
  .intro-text {
    text-align: center;
  }
  .intro-buttons {
    justify-content: center;
  }
  .intro-video-wrapper {
    order: -1;
    max-width: 450px;
    margin: 0 auto;
  }
  .btn-inner {
    width: 100%;
  }
  .about {
    gap: 40px 20px;
    flex-wrap: wrap;
  }
  .about-item:first-child,
  .about-item:last-child {
    width: calc((100% - 20px) / 2);
  }
  .about-item:first-child {
    padding-left: 40px;
  }
  .about-item {
    width: calc((100% - 20px) / 2);
    padding: 0 40px;
    border: 0;
    font-size: 18px;
  }
  .about-item strong {
    font-size: 28px;
  }
  .about-item br {
    display: none;
  }
  .industry {
    border-width: 5px;
    border-radius: 30px;
  }
  .industry-image {
    border-width: 10px;
    border-radius: 30px;
  }
  .industry-text {
    padding: 5px;
    text-align: left;
  }
  .advantage {
    border-radius: 30px;
    border-width: 5px;
    padding: 20px;
  }
  .capability {
    flex-wrap: wrap;
  }
  .capability-image {
    order: -1;
    margin: 0 -15px;
    width: calc(100% + 30px);
    text-align: center;
    max-width: none;
  }
  .capability-image img {
    max-height: 400px;
  }
  .capability-buttons {
    justify-content: center;
  }
  .decor-ring:nth-child(1) {
    left: auto;
    top: 23.5%;
    right: -20%;
  }
  .decor-ring:nth-child(2) {
    bottom: 20.5%;
  }
  .capability-items {
    gap: 40px 20px;
  }
  .capability-content {
    max-width: 100%;
  }
  .advantage-image {
    order: 2;
  }
  .variants-table th {
    display: none;
  }
  .variants-table td {
    display: block;
    width: 100%;
    padding: 20px 20px 0;
  }
  tbody tr:last-child td {
    padding-bottom: 0;
  }
  .variants-table td:nth-child(3) {
    padding-bottom: 20px;
  }
  .variants-table h4 {
    font-size: 20px;
    padding: 0 0 0 45px;
  }
  .variants-table h4::before {
    left: 0;
  }
  .variants-table tbody tr:last-child td:nth-child(3) {
    padding-bottom: 30px;
  }
  .variants-table tbody tr:first-child td:nth-child(1) {
    padding-top: 30px;
  }
  .steps-section {
    padding-bottom: 80px;
  }
  .steps {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
  .steps::after {
    height: 100%;
    width: 3px;
    left: 0.6em;
  }
  .step {
    width: 100%;
    padding: 0 40px 40px;
    border: 0;
  }
  .step::after {
    right: auto;
    left: 0.1em;
    bottom: -1.2em;
  }
  .step:first-child {
    padding-left: 40px;
  }
  .step:last-child {
    padding-bottom: 0;
  }
  .step:first-child::after {
    display: block;
  }
  .footer {
    padding: 40px 0;
  }
  .footer-columns {
    flex-wrap: wrap;
  }
  .footer-column {
    width: 100%;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 17px;
  }
  h1 {
    font-size: 32px;
  }
  .intro-text {
    font-size: 17px;
  }
  .btn {
    font-size: 18px;
  }
  .about-item {
    font-size: 17px;
  }
  .about-item strong {
    font-size: 26px;
  }
  .advantage {
    align-items: flex-start;
  }
  .footer-top > .container {
    flex-wrap: wrap;
  }
  .footer-logo {
    max-height: 59px;
  }
  .footer-links {
    margin: 0 0 0 auto;
  }
  .footer-slogan {
    order: 2;
    min-height: 59px;
  }
}
@media (max-width: 575px) {
  body {
    padding: calc(var(--h-height) + 40px) 0 0;
    font-size: 16px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
    line-height: 1.1;
  }
  .field-input,
  .field-select {
    height: 50px;
  }
  .field-half {
    width: 100%;
  }
  .row {
    gap: 18px;
  }
  .radio-tab-name {
    font-size: 15px;
  }
  .container {
    padding: 0 10px;
  }
  .box {
    gap: 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-head {
    font-size: 16px;
    text-align: left;
  }
  .section-footer {
    padding-top: 40px;
  }
  .decor-elements {
    opacity: 0.2;
  }
  .intro-text {
    font-size: 16px;
  }
  .btn {
    width: 100%;
    font-size: 17px;
  }
  .btn-inner {
    width: 100%;
  }
  .about-section {
    padding: 20px 0 40px;
  }
  .about {
    gap: 40px 20px;
    flex-wrap: wrap;
  }
  .about-item:first-child,
  .about-item:last-child {
    width: calc((100% - 20px) / 2);
  }
  .about-item {
    width: calc((100% - 20px) / 2);
    padding: 0;
    border: 0;
    font-size: 16px;
  }
  .about-item:first-child {
    padding-left: 0;
  }
  .about-item strong {
    font-size: 24px;
  }
  .industry {
    width: 100%;
    border-width: 5px;
    border-radius: 30px;
  }
  .industry-image {
    border-width: 10px;
    border-radius: 30px;
  }
  .industry-text {
    padding: 5px;
    text-align: left;
  }
  .advantage {
    width: 100%;
    border-radius: 30px;
    border-width: 5px;
    padding: 20px;
  }
  .capability {
    flex-wrap: wrap;
  }
  .capability-image {
    order: -1;
    margin: 0 -10px;
    width: calc(100% + 20px);
    text-align: center;
  }
  .capability-items {
    gap: 40px 20px;
  }
  .capability-item {
    width: 100%;
  }
  .safety {
    border-radius: 30px;
  }
  .safety-item {
    width: 100%;
    padding: 20px;
  }
  .safety-item:first-child {
    border-radius: 30px 30px 0 0;
    padding-top: 30px;
  }
  .safety::before {
    border-radius: 30px;
  }
  .safety-item:last-child {
    padding-bottom: 30px;
    border-radius: 0 0 30px 30px;
  }
  .steps-section {
    padding-bottom: 60px;
  }
  .step-number {
    font-size: 20px;
  }
  .footer-top > .container {
    gap: 20px 10px;
  }
  .footer-logo {
    width: 100%;
    max-width: 155px;
    padding: 6px 0;
  }
  .footer-slogan {
    order: 0;
    width: 100%;
    order: 2;
  }
  .footer-links {
    flex: 1 1 auto;
  }
  .footer-link {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
    min-height: 59px;
    padding: 6px 14px;
  }
  .footer-bottom {
    font-size: 14px;
  }
  .modal {
    border-width: 5px;
    border-radius: 30px;
    padding: 20px;
  }
}