/* Base */

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

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

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular-Italic.woff2") format("woff2"), url("../fonts/Montserrat-Regular-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

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

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

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Links */

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

a:hover {
  text-decoration: none;
}

/* Common */

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

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
textarea:focus,
textarea:active,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

:root {
  --font-family: "Montserrat", sans-serif;
  --container-padding: 20px;
  --container-width: 1128px;
  --black: #000;
  --gray: #505050;
  --white: #fff;
  --accent: #9EC539;
  --page-bg: #16383f;
  --header-index: 110;
  --burger-index: 100;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background-color: var(--page-bg);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #000;
}

.wrapper {
  position: relative;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

section {
  overflow-x: hidden;
}

a {
  color: inherit;
}

.none {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.no-scroll {
  overflow-y: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: calc(var(--container-width) + var(--container-padding) * 2);
  width: 100%;
}

/* Components */

.btn {
  width: 100%;
  height: 72px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #100f00;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: var(--white);
}

.icon {
  fill: transparent;
  stroke: transparent;
  width: 24px;
  height: 24px;
}

.title {
  font-weight: 700;
  font-size: 48px;
  line-height: 108%;
  text-align: center;
  color: #000;
}

.title-box {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.title-box span {
  font-weight: 700;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  text-align: center;
  color: inherit;
}

/* Modules */

.burger-btn {
  --time: 0.1s;
  --width: 40px;
  --height: 40px;
  --overlay-area: -10px;
  --line-height: 2px;
  --spacing: 8px;
  --color: #fff;
  --radius: 2px;
  position: relative;
  /* Fixed height and width */
  width: var(--width);
  height: var(--height);
  /* Dynamic height and width */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.burger-btn::before {
  content: "";
  position: absolute;
  inset: var(--overlay-area);
}

.burger-btn._active .burger-icon {
  background-color: transparent;
}

.burger-btn._active .burger-icon::before,
.burger-btn._active .burger-icon::after {
  top: 0;
  -webkit-transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time), -webkit-transform var(--time) ease-in var(--time);
}

.burger-btn._active .burger-icon::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-btn._active .burger-icon::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger-btn .burger-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.burger-btn .burger-icon::before,
.burger-btn .burger-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  border-radius: var(--radius);
  background-color: var(--color);
  -webkit-transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
}

.burger-btn .burger-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.burger-btn .burger-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.burger-overlay {
  position: fixed;
  inset: 0;
  z-index: calc(var(--burger-index) - 1);
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.burger-overlay._active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.burger-menu {
  width: 100%;
  height: 100%;
  padding: 40px 0;
  padding-top: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: -100%;
  z-index: var(--burger-index);
  background-color: var(--page-bg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.burger-menu._active {
  top: 0;
}

.burger-menu._active .burger-menu__list {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease 0.2s;
  transition: opacity 0.2s ease 0.2s;
}

.burger-menu__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 200%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  overflow-y: auto;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

/* Blocks */

.footer {
  padding: 60px 0 8px;
  color: var(--white);
  background-color: var(--page-bg);
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}

.footer__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.footer__nav {
  max-width: 572px;
  width: 100%;
}

.footer .nav__list {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  letter-spacing: normal;
  color: var(--white);
}

.footer__contacts {
  max-width: 304px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 16px;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}

.footer__info-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.footer__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #dadada;
}

.footer__info-item a:hover {
  text-decoration: underline;
}

.footer__info-title {
  font-weight: 700;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer .logo {
  width: auto;
  height: 130px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer .logo img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}

.footer .phone a {
  font-weight: 500;
  font-size: 32px;
  line-height: 75%;
  color: var(--white);
  white-space: nowrap;
}

.footer .phone span {
  font-weight: 400;
  font-size: 16px;
  line-height: 87%;
  color: #719d00;
}

.footer .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.footer .copyright {
  font-weight: 400;
  font-size: 15px;
  color: #bebebe;
}

.footer .privacy {
  font-weight: 400;
  font-size: 14px;
  line-height: 214%;
  color: #bebebe;
}

.footer .privacy a {
  color: var(--accent);
}

.form {
  max-width: 456px;
  width: 100%;
  height: auto;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.form__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #000;
}

.form__agreement {
  display: block;
  gap: 8px;
}

.form__agreement-text {
  font-weight: 400;
  font-size: 12px;
  color: #000;
}

.form__agreement-text a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

input {
  width: 100%;
  height: auto;
  padding: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #000;
  background-color: var(--white);
  border: 2px solid #e8e8e8;
  border-radius: 8px;
}

input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.32);
}

input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.32);
}

input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.32);
}

input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.32);
}

input::placeholder {
  color: rgba(0, 0, 0, 0.32);
}

.checkbox {
//  width: 24px;
//  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.checkbox:has(input:checked) .checkbox-cstm {
  background-image: url("./../images/icons/checkbox.svg");
}

.checkbox-cstm {
  width: 18px;
  height: 18px;
  display: block;
  border: 1px solid var(--accent);
  border-radius: 4px;
	margin-right: 10px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
    flex-shrink: inherit;
}

.checkbox-cstm.error
{
  border: none;
}

.form__agreement a
{
	color: var(--accent);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--header-index);
  width: 100%;
  padding: 25px 0 8px;
  color: var(--white);
  background: rgba(22, 56, 63, 0.8);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.header__top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.header__top-right .social-link {
  display: none;
}

.header__nav {
  max-width: 588px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header .btn {
  height: 48px;
  padding: 12px 47px;
}

.header .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  text-align: right;
	padding-left: 30px;
}

.header .phone__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 111%;
}

.header .phone img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.social-link {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.social-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.nav-bar {
  padding: 3px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.nav-bar .social-link {
  display: none;
}

.logo img {
  width: auto;
  height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

[class*=ground-pane] {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.nav__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px 20px;
  font-weight: 700;
  font-size: 12px;
  line-height: 200%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__link {
  position: relative;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

/* Elements */

/* Sections */

.contacts {
  padding-top: 60px;
  margin-top: -1px;
  background-color: var(--white);
}

.contacts .container {
  position: relative;
  height: 100%;
  z-index: 1;
}

.contacts__inner {
  position: relative;
  min-height: 700px;
}

.contacts__content {
  height: 100%;
  padding: 100px 0 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

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

.contacts__box {
  max-width: 477px;
  width: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--white);
  border-radius: 15px 0 15px 15px;
}

.contacts__box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

.contacts__box-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts__box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 400;
  font-size: 20px;
  color: #000;
}

.contacts__box-info span,
.contacts__box-info a {
  font-weight: 600;
  font-size: 20px;
  color: #000;
}

.hero {
  position: relative;
  background-color: rgba(51, 98, 109, 0.75);
}

.hero__inner {
  min-height: 894px;
  padding: 280px 0 120px;
}

.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px 24px;
}

.hero__info-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  color: var(--white);
}

.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero__title span {
  font-weight: 800;
  font-size: 64px;
  text-shadow: 0 10px 35px rgba(255, 255, 255, 0.65);
}

.hero__subtitle {
  max-width: 530px;
  width: 100%;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
}

.hero__info-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.hero__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 105%;
  color: var(--white);
}

.hero .video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.hero .icon-box {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
}

.hero .icon-box img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.products {
  padding: 60px 0;
}

.products .title {
  color: var(--white);
}

.products__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.products__item {
  position: relative;
  width: 100%;
  min-height: 300px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: rgba(22, 56, 63, 0.4);
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.products__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#16383f), to(rgba(22, 56, 63, 0.4)));
  background: linear-gradient(90deg, #16383f 0%, rgba(22, 56, 63, 0.4) 100%);
  opacity: 0.8;
}

.products__item:hover {
  background-color: rgba(22, 56, 63, 0.6);
}

.products__item:hover .products__item-title {
  color: var(--accent);
}

.products__item-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.products__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.products__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
}

.products__item-title {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.security {
  padding: 60px 0 120px;
  background-color: var(--accent);
}

.security .title {
  color: var(--white);
}

.security__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.security__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.security__item {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--white);
  border-radius: 8px;
}

.security__item:hover .security__item-title {
  color: var(--accent);
}

.security__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.security__item-img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.security__item-title {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #000;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.security__item-descr {
  padding-left: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.security__form {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.security .form__title,
.security .form__agreement {
  grid-column: span 2;
}

.security .form__title {
  text-align: center;
}

.steps {
  padding: 60px 0 120px;
  background-color: var(--white);
}

.steps__content {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 40px 24px;
}

.steps__stages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.steps__stage {
  display: grid;
  grid-template-columns: 72px auto;
  gap: 24px;
}

.steps__stage:last-child .steps__stage-right {
  padding-bottom: 0;
}

.steps__stage-left {
  position: relative;
  width: 100%;
  height: 100%;
}

.steps__stage-left::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 2px;
  height: 90%;
  background-color: #e9e9e9;
}

.steps__stage-numb {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: var(--accent);
  background-color: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.steps__stage-right {
  padding: 28px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.steps__stage-subtitle {
  font-weight: 700;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: #000;
  opacity: 0.4;
}

.steps__stage-title {
  font-weight: 500;
  font-size: 24px;
  color: #000;
}

.steps__stage-descr {
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.steps__checkings {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  border: 2px dashed #c0c6d4;
  border-radius: 8px;
}

.steps__checking {
  width: 100%;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}

.steps__checking-left {
  width: 36px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.steps__checking-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.steps__checking-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.steps__checking-title {
  font-weight: 500;
  font-size: 21px;
  color: #000;
}

.steps__checking-descr {
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.steps__checking-descr b {
  font-weight: 700;
  white-space: nowrap;
}

.steps__bottom {
  max-width: 856px;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  font-size: 36px;
  line-height: 133%;
  text-align: center;
  color: var(--accent);
}

form .error
{
	background: #faa8;
	border: 2px solid red;
}

.samlink
{
	display: inline;    width: 24px;    height: 24px;    position: absolute;    left: 0px;    top: 0px;
}

@media (max-width: 1400px) {
  .title-box {
    margin-bottom: 40px;
  }

  .footer__inner {
    gap: 40px;
  }

  .footer__nav {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .footer .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer__contacts {
    max-width: unset;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer .logo {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .header {
    padding: 24px 0 0;
  }

  .contacts__content {
    position: relative;
    padding: 40px 0 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .contacts__map {
    position: static;
    height: 600px;
  }

  .contacts__box {
    position: absolute;
    bottom: calc(100% + 50px);
    left: 0;
  }

  .contacts .form {
    max-width: 100%;
    padding: 60px 24px;
  }

  .security {
    padding: 60px 0;
  }

  .steps {
    padding: 60px 0;
  }
}

@media (max-width: 1200px) {
  .hero__inner {
    padding: 214px 0 60px;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 24px 0;
  }

  .hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero__title {
    text-align: center;
  }

  .hero__title br {
    display: none;
  }

  .hero__subtitle {
    max-width: 100%;
    text-align: center;
  }

  .hero .form {
    max-width: 100%;
  }

  .steps__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }

  .title-box {
    margin-bottom: 20px;
  }

  .burger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .form__title {
    font-size: 36px;
  }

  .header__inner {
    gap: 20px;
  }

  .header__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__top-right {
    width: 100%;
  }

  .header__nav {
    display: none;
  }

  .header .btn {
    width: 100%;
  }

  .header .phone {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .nav-bar .social-link {
    display: block;
  }

  .contacts__box {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .hero__inner {
    padding: 290px 0 40px;
  }

  .hero__title {
    font-size: 24px;
    letter-spacing: 0.29em;
  }

  .hero__title span {
    font-size: 48px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .products {
    padding: 40px 0;
  }

  .products__item-title {
    font-size: 22px;
    letter-spacing: 0.09em;
  }

  .security {
    padding: 40px 0;
  }

  .security__item-img {
    width: 24px;
    height: 24px;
  }

  .security__item-title {
    font-size: 20px;
  }

  .security__item-descr {
    padding: 0;
  }

  .security__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .security .form__title {
    font-size: 32px;
  }

  .steps {
    padding: 40px 0;
  }

  .steps__content {
    margin-bottom: 20px;
  }

  .steps__stage {
    grid-template-columns: 48px auto;
  }

  .steps__stage-right {
    padding: 16px 0;
  }

  .steps__checkings {
    padding: 8px 0;
    gap: 0;
  }

  .steps__checking {
    padding: 16px;
    gap: 16px;
  }

  .steps__bottom {
    font-size: 24px;
    line-height: normal;
  }

	.samlink
	{
		display: none;
	}

}

@media (max-width: 720px) {



  .footer {
    padding-top: 40px;
  }

  .footer__inner {
    gap: 20px;
  }

  .footer__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__header {
    gap: 24px;
  }

  .footer__nav {
    max-width: unset;
  }

  .footer .nav__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__contacts {
    max-width: 304px;
  }

  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer__bottom {
    text-align: center;
  }

  .footer .logo {
    height: 100px;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }

  .footer .phone {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .products__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .contacts {
    padding-top: 40px;
  }

  .contacts__content {
    padding: 20px 0 40px;
  }

  .contacts__map {
    height: 460px;
  }

  .contacts__box {
    width: auto;
    right: 0;
    bottom: calc(100% + 40px);
    left: 30px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    padding: 16px;
  }

  .products__item {
    min-height: 200px;
  }

  .products__item-info {
    font-size: 16px;
  }

  .products__item-title {
    font-size: 24px;
  }

  .header .phone span {
    display: none;
  }

}

@media (max-width: 420px) {
  .btn {
    height: auto;
    white-space: wrap;
  }

  .title {
    font-size: 26px;
  }

  .footer__contacts {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer .phone a {
    font-size: 28px;
  }

  .form {
    padding: 16px;
    gap: 16px;
  }

  .form__title {
    font-size: 24px;
  }

  input {
    padding: 15px 20px;
  }

  .header .phone {
    margin-right: auto;
  }

  .header .phone img {
    display: none;
  }


  .social-link {
    width: 38px;
    height: 38px;
  }

  .nav-bar {
    gap: 10px;
  }

  .hero__title {
    font-size: 18px;
  }

  .hero__title span {
    font-size: 38px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__info-item {
    font-size: 16px;
  }

  .products__item-title {
    font-size: 18px;
  }

  .security__item-title {
    font-size: 18px;
  }

  .security .form__title {
    font-size: 24px;
  }

  .steps__stage {
    gap: 16px;
  }

  .steps__stage-right {
    gap: 8px;
  }

  .steps__stage-title {
    font-size: 18px;
  }

  .steps__stage-descr {
    font-size: 16px;
  }

  .steps__checking-title {
    font-size: 18px;
  }

  .steps__bottom {
    font-size: 18px;
  }
	.header .phone__link
	{
		font-size: 15px;
	}

}

@media (min-width: 809px) {
.phone span
{
    letter-spacing: 1px;
    margin-left: -30px;
}
}

