/*-----------------------------
Reset
-----------------------------*/
*:where(:not(html, iframe, canvas, img, svg, video):not(svg *, symbol *):not(div.f_checkbox)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.005);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a, button {
  cursor: revert;
}

ol, ul, menu {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

svg {
  display: block;
  fill: currentColor;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

/*-----------------------------
Fonts
-----------------------------*/
@font-face {
  font-family: "LozungCaps";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/LozungCaps-Regular.woff") format("woff"), url("../fonts/LozungCaps-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Onest-Regular.woff") format("woff"), url("../fonts/Onest-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Onest-Medium.woff") format("woff"), url("../fonts/Onest-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Onest-SemiBold.woff") format("woff"), url("../fonts/Onest-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Onest-Bold.woff") format("woff"), url("../fonts/Onest-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Onest-Black.woff") format("woff"), url("../fonts/Onest-Black.woff2") format("woff2");
}
/*-----------------------------
Variables
-----------------------------*/
:root {
  --font: "Onest", sans-serif;
  --font-brand: "LozungCaps", sans-serif;
  --transition: all 150ms ease-in-out;
  --font-size:15px;
  --c-black: #222;
  --c-gray: #F3F4F9;
  --c-primary: #CA322B;
  --c-primary-dark: #AC2821;
  --c-secondary: #2453B1;
}

/*-----------------------------
Global
-----------------------------*/
html {
  font-family: var(--font);
  font-weight: 400;
  color: var(--c-black);
  font-size: var(--font-size);
  line-height: 1.6;
  min-width: 375px;
  min-height: 100vh;
}

body {
  background: white;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

.main {
  flex-grow: 1;
  position: relative;
}

/*-----------------------------
Components
-----------------------------*/
/*-----------------------------
Army section
-----------------------------*/
.army {
  width: 100%;
  background: url("../images/pattern.jpg") repeat;
}
.army__container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px;
}
@media (max-width: 1024px) {
  .army__container {
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .army__container {
    padding: 40px 16px;
  }
}
.army__title {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 46px;
  width: 100%;
}
@media (max-width: 1024px) {
  .army__title {
    margin-bottom: 26px;
  }
}
.army__title > .arrow {
  display: none;
}
@media (max-width: 1280px) {
  .army__title > .arrow {
    display: flex;
  }
}
.army__grid {
  width: 100%;
}
.army__grid > div {
  display: flex;
}
.army__grid > div > div {
  display: flex;
}
.army__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  padding: 16px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .army__item {
    padding: 12px;
  }
}
.army__text {
  margin-top: 24px;
}
.army__actions {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}
@media (max-width: 1024px) {
  .army__actions {
    margin-top: 26px;
  }
}
.army__image {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100%;
}
.army__image > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.arrow {
  color: #aaa;
  padding: 0 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.arrow:hover {
  color: #777;
}
.arrow_prev {
  transform: scaleX(-1);
}

/*-----------------------------
Contacts section
-----------------------------*/
.contacts__container {
  max-width: 1440px;
  padding: 60px 24px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .contacts__container {
    grid-gap: 40px;
  }
}
@media (max-width: 1024px) {
  .contacts__container {
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .contacts__container {
    padding: 40px 16px;
    grid-template-columns: 1fr;
  }
}

.contacts__title {
  margin-bottom: 24px;
}
.contacts__grid {
  max-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 80px;
}
@media (max-width: 1280px) {
  .contacts__grid {
    grid-gap: 30px;
  }
}
@media (max-width: 520px) {
  .contacts__grid {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}
.contacts__item .heading-3 {
  margin-bottom: 16px;
}
.contacts__address {
  margin-top: 8px;
  display: block;
}

/*-----------------------------
Footer
-----------------------------*/
.footer {
  background: #222;
  color: white;
}
.footer__nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 1440px;
  padding: 30px 8px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__nav {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .footer__nav {
    flex-direction: column;
  }
}
.footer__nav-item {
  white-space: nowrap;
  text-decoration: none;
  padding: 8px 16px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.footer__nav-item:hover {
  color: var(--c-primary);
}
.footer__phone {
  max-width: 1440px;
  padding: 30px 24px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 480px) {
  .footer__phone {
    justify-content: flex-start;
  }
}
.footer__phone > a {
  font-size: 24px;
  line-height: 32px;
  color: white;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}
.footer__phone > a:hover {
  color: var(--c-primary);
}

/*-----------------------------
Forms
-----------------------------*/
.btn {
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: white;
  padding: 15px 32px 13px 32px;
  background: var(--c-primary);
  display: inline-flex;
  z-index: 3;
  position: relative;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  cursor: pointer;
}
.btn:hover {
  background: var(--c-primary-dark);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
}

input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], input:not([type]), textarea {
  background: white;
  padding: 11px 16px;
  width: 100%;
  display: block;
  color: #222;
  font-weight: 500;
}
input[type=color]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=datetime]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=time]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input:not([type])::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
  font-weight: 400;
}

input[type=color]:-webkit-input-placeholder, input[type=date]:-webkit-input-placeholder, input[type=datetime]:-webkit-input-placeholder, input[type=datetime-local]:-webkit-input-placeholder, input[type=email]:-webkit-input-placeholder, input[type=month]:-webkit-input-placeholder, input[type=number]:-webkit-input-placeholder, input[type=password]:-webkit-input-placeholder, input[type=search]:-webkit-input-placeholder, input[type=tel]:-webkit-input-placeholder, input[type=text]:-webkit-input-placeholder, input[type=time]:-webkit-input-placeholder, input[type=url]:-webkit-input-placeholder, input[type=week]:-webkit-input-placeholder, input:not([type]):-webkit-input-placeholder, textarea:-webkit-input-placeholder {
  color: #999;
  font-weight: 400;
}

input[type=color]:-moz-placeholder, input[type=date]:-moz-placeholder, input[type=datetime]:-moz-placeholder, input[type=datetime-local]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=month]:-moz-placeholder, input[type=number]:-moz-placeholder, input[type=password]:-moz-placeholder, input[type=search]:-moz-placeholder, input[type=tel]:-moz-placeholder, input[type=text]:-moz-placeholder, input[type=time]:-moz-placeholder, input[type=url]:-moz-placeholder, input[type=week]:-moz-placeholder, input:not([type]):-moz-placeholder, textarea:-moz-placeholder {
  color: #999;
  font-weight: 400;
}

input[type=color]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=week]::-moz-placeholder, input:not([type])::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
  font-weight: 400;
}

input[type=color]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=datetime]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input:not([type]):-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
  font-weight: 400;
}

/*-----------------------------
Gallery section
-----------------------------*/
.gallery {
  width: 100%;
  margin-bottom: 40px;
}
.gallery__container {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}
.gallery__arrows {
  display: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
}
.gallery__arrows > .arrow {
  padding: 12px 16px;
  color: white;
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  pointer-events: all;
}
.gallery__arrows > .arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 640px) {
  .gallery__arrows {
    left: 8%;
    width: 84%;
  }
}
.gallery__grid {
  width: 100%;
}
.gallery__grid > div {
  display: flex;
}
.gallery__grid > div > div {
  display: flex;
}
.gallery__item {
  padding: 8px;
  width: 100%;
}
.gallery__image {
  width: 100%;
}
.gallery__image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*-----------------------------
Header
-----------------------------*/
.header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  animation: fadeIn 1000ms ease-in-out forwards;
  animation-direction: alternate;
  animation-delay: 1200ms;
  transform: translateY(-50px);
  opacity: 0;
}
.header__container {
  max-width: 1440px;
  padding: 30px 24px;
  margin: 0 auto;
  display: grid;
  grid-gap: 24px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  position: relative;
}
@media (max-width: 640px) {
  .header__container {
    grid-template-columns: auto 1fr auto;
    padding: 24px 16px;
    grid-gap: 16px;
  }
}
.header__logo {
  display: flex;
}
@media (max-width: 640px) {
  .header__logo {
    justify-content: center;
  }
}
.header__logo > a {
  display: inline-block;
  text-decoration: none;
  outline: none;
}
@media (max-width: 640px) {
  .header__logo > a {
    max-width: 160px;
  }
}
.header__logo > a > svg {
  width: 100%;
}
.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 640px) {
  .header__contacts {
    display: none;
  }
}
.header__phone {
  font-size: 24px;
  line-height: 32px;
  color: white;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}
.header__phone:hover {
  color: var(--c-primary);
}
.header__callback {
  white-space: nowrap;
  line-height: 22px;
  color: white;
  cursor: pointer;
  font-size: 13px;
  background: linear-gradient(to right, white 33%, transparent 0%) repeat-x 0% 90%/3px 1px;
  transition: var(--transition);
}
.header__callback:hover {
  color: var(--c-primary);
  background: linear-gradient(to right, transparent 33%, transparent 0%) repeat-x 0% 90%/3px 1px;
}

/*-----------------------------
Header nav
-----------------------------*/
.nav {
  z-index: 20;
  position: absolute;
  top: 90%;
  right: 24px;
  background: white;
  padding: 16px;
}
@media (max-width: 640px) {
  .nav {
    right: 16px;
  }
}
.nav:after {
  bottom: 99%;
  right: 9px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 12px;
  margin-left: -12px;
}
.nav__container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.nav__item {
  white-space: nowrap;
  margin-right: 24px;
  text-decoration: none;
  padding: 8px 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.nav__item:hover {
  color: var(--c-primary);
}
.nav__icon {
  display: flex;
  align-items: center;
  margin-right: 0;
  padding: 8px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}
.nav__icon:hover {
  color: var(--c-primary);
}
.nav__icon_phone {
  display: none;
}
@media (max-width: 640px) {
  .nav__icon_phone {
    display: flex;
  }
}

/*-----------------------------
Help section
-----------------------------*/
.help {
  width: 100%;
  /* background: linear-gradient(180deg, rgba(243, 244, 249, 0) 0%, #F3F4F9 100%); */
}
.help__container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* gap: 250px; */
}
@media (max-width: 1024px) {
  .help__container {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .help__container {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.help__content {
  width: 60%;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .help__content {
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .help__content {
    padding: 40px 16px;
    width: 100%;
    align-items: center;
  }
}
.help__title {
  display: flex;
  margin-bottom: 24px;
}
.help__text {
  line-height: 26px;
}
.help__actions {
  margin-top: 30px;
}
.help__image {
  height: 100%;
  padding-top: 40px;
  flex-shrink: 0;
}
.help__image--mobile {
  display: none;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .help__image {
    display: none;
  }
  .help__image--mobile {
    display: block;
  }
}
.help__image > img {
  max-width: 320px;
  mix-blend-mode: multiply;
  filter: brightness(105%);
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}
@media (max-width: 1280px) {
  .help__image > img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*-----------------------------
Hero section
-----------------------------*/
:root {
  --hero-title-size: 52px;
}
@media (max-width: 768px) {
  :root {
    --hero-title-size: 42px;
  }
}
@media (max-width: 640px) {
  :root {
    --hero-title-size: 32px;
  }
}
@media (max-width: 480px) {
  :root {
    --hero-title-size: 24px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 60px;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  max-width: 1024px;
  margin: 40px auto;
  padding: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 16px;
  }
}
.hero__title {
  font-size: var(--hero-title-size);
  line-height: 130%;
  font-family: var(--font-brand);
  animation: fadeIn 1000ms ease-in-out forwards;
  animation-direction: alternate;
  animation-delay: 500ms;
  transform: translateY(-50px);
  opacity: 0;
}
.hero__desc {
  max-width: 600px;
  margin: 24px auto 32px auto;
  line-height: 26px;
  animation: fadeIn 1000ms ease-in-out forwards;
  animation-direction: alternate;
  animation-delay: 700ms;
  transform: translateY(-50px);
  opacity: 0;
}
.hero__actions {
  animation: fadeIn 1000ms ease-in-out forwards;
  animation-direction: alternate;
  animation-delay: 900ms;
  transform: translateY(-50px);
  opacity: 0;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero__bg:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(11, 26, 58, 0.6);
  animation: blurOut 1000ms ease-out forwards;
  animation-delay: 1000ms;
  -webkit-backdrop-filter: blur(60px);
          backdrop-filter: blur(60px);
}
.hero__bg > video {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@keyframes blurOut {
  from {
    -webkit-backdrop-filter: blur(60px);
            backdrop-filter: blur(60px);
  }
  to {
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
  }
}
@keyframes fadeIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/*-----------------------------
Howto section
-----------------------------*/
.howto {
  width: 100%;
  background: linear-gradient(180deg, rgba(243, 244, 249, 0) 0%, #F3F4F9 100%);
}
.howto__container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-gap: 5%;
  grid-template-columns: 45% 50%;
}
@media (max-width: 1024px) {
  .howto__container {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .howto__container {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.howto__content {
  padding: 60px 24px;
  justify-self: end;
  width: 100%;
}
@media (max-width: 1024px) {
  .howto__content {
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .howto__content {
    padding: 40px 16px;
  }
}
.howto__title {
  display: flex;
  margin-bottom: 24px;
}
.howto__grid {
  display: grid;
  grid-gap: 24px 40px;
  grid-template-columns: 1fr 1fr;
  margin: 40px 0;
}
@media (max-width: 1024px) {
  .howto__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .howto__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .howto__grid {
    grid-template-columns: 1fr;
  }
}
.howto__item {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: auto 1fr;
  align-items: start;
}
.howto__icon {
  color: #889099;
  padding-top: 6px;
}
.howto__text {
  font-weight: 600;
  line-height: 24px;
}
.howto__text > span {
  display: block;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: #797979;
}
.howto__actions {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .howto__image {
    display: none;
  }
}
.howto__image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}
@media (max-width: 1280px) {
  .howto__image > img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*-----------------------------
Join section
-----------------------------*/
.join {
  width: 100%;
  background: #201712;
}
.join__container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-gap: 0;
  grid-template-columns: 1fr 1fr;
  color: white;
}
@media (max-width: 640px) {
  .join__container {
    grid-template-columns: 1fr;
  }
}
.join__content {
  padding: 60px 24px;
  padding-left: calc((100vw - 1392px) / 2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1440px) {
  .join__content {
    padding-left: 24px;
  }
}
@media (max-width: 1024px) {
  .join__content {
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .join__content {
    padding: 40px 16px;
  }
}
.join__title {
  display: flex;
  margin-bottom: 16px;
}
.join__text {
  max-width: 400px;
  margin-bottom: 30px;
}
.join__form {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 640px) {
  .join__form {
    max-width: 100%;
  }
}
.join__form-row {
  margin-bottom: 24px;
}
.join__image {
  height: 100%;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.join__image:after {
  content: "";
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: linear-gradient(90deg, #201712 0%, rgba(32, 23, 18, 0) 100%);
}
@media (max-width: 640px) {
  .join__image {
    display: none;
  }
}
.join__image > video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*-----------------------------
Payments section
-----------------------------*/
.payments {
  position: relative;
  width: 100%;
}
.payments__container {
  max-width: 1440px;
  width: 100%;
  padding: 60px 24px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .payments__container {
    padding: 40px 0;
  }
}
.payments__title {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 46px;
}
@media (max-width: 1024px) {
  .payments__title {
    margin-bottom: 26px;
  }
}
.payments__title > .arrow {
  display: none;
}
@media (max-width: 1024px) {
  .payments__title > .arrow {
    display: flex;
  }
}
.payments__grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}
.payments__grid > div {
  display: flex;
}
.payments__grid > div > div {
  display: flex;
}
.payments__actions {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}
@media (max-width: 1024px) {
  .payments__actions {
    margin-top: 26px;
  }
}

.payment {
  background: var(--c-gray);
  display: flex;
  flex-direction: column;
  padding: 30px;
  height: 100%;
}
@media (max-width: 768px) {
  .payment {
    padding: 20px;
  }
}
.payment > *:not(:last-child) {
  margin-bottom: 20px;
}
.payment__wrapper {
  padding: 15px;
  display: flex;
}
@media (max-width: 1024px) {
  .payment__wrapper {
    padding: 10px;
  }
}

/*-----------------------------
Requirements section
-----------------------------*/
.requirements {
  width: 100%;
  background: linear-gradient(180deg, rgba(243, 244, 249, 0) 0%, #F3F4F9 100%);
}
.requirements__container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr auto;
}
@media (max-width: 1024px) {
  .requirements__container {
    overflow-x: hidden;
    display: flex;
  }
}
.requirements__content {
  padding: 60px 24px;
}
@media (max-width: 1024px) {
  .requirements__content {
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .requirements__content {
    padding: 40px 16px;
  }
}
.requirements__content p {
  margin-bottom: 8px;
}
.requirements__content .heading-3 {
  margin-bottom: 20px;
}
.requirements__title {
  display: flex;
  margin-bottom: 24px;
}
.requirements__params {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: 1fr 1fr;
  max-width: 840px;
  margin: 40px 0;
}
@media (max-width: 1024px) {
  .requirements__params {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    max-width: 80%;
  }
}
@media (max-width: 640px) {
  .requirements__params {
    max-width: 100%;
  }
}
.requirements__actions {
  margin-top: 24px;
}
.requirements__image {
  max-width: 640px;
  margin-top: -60px;
}
@media (max-width: 1280px) {
  .requirements__image {
    max-width: 540px;
  }
}
@media (max-width: 1024px) {
  .requirements__image {
    max-width: 640px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: -30%;
  }
}
@media (max-width: 768px) {
  .requirements__image {
    max-width: 600px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: -50%;
  }
}
@media (max-width: 640px) {
  .requirements__image {
    display: none;
  }
}
.requirements__image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

/*-----------------------------
Steps section
-----------------------------*/
.steps {
  width: 100%;
}
.steps__container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px;
}
@media (max-width: 1024px) {
  .steps__container {
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .steps__container {
    padding: 40px 16px;
  }
}
.steps__title {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  max-width: 580px;
  align-self: flex-start;
}
.steps__grid {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .steps__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .steps__grid {
    grid-gap: 16px;
  }
}
@media (max-width: 520px) {
  .steps__grid {
    grid-template-columns: 1fr;
  }
}
.steps__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--c-secondary);
  color: white;
  padding: 24px 30px;
}
@media (max-width: 768px) {
  .steps__item {
    padding: 24px;
  }
}
@media (max-width: 640px) {
  .steps__item {
    flex-direction: row;
  }
}
.steps__number {
  font-size: 64px;
  line-height: 130%;
  font-weight: 700;
  opacity: 0.2;
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .steps__number {
    font-size: 48px;
    line-height: 100%;
    margin-bottom: 0;
  }
}
.steps__text {
  font-weight: 600;
  line-height: 24px;
}
@media (max-width: 640px) {
  .steps__text {
    padding-top: 4px;
    padding-left: 16px;
  }
}

/*-----------------------------
Support section
-----------------------------*/
.support {
  width: 100%;
  background: url("../images/flag.jpg") no-repeat center/cover;
}
.support__container {
  max-width: 1440px;
  width: 100%;
  padding: 60px 24px;
  margin: 0 auto;
  color: white;
}
@media (max-width: 1024px) {
  .support__container {
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .support__container {
    padding: 40px 16px;
  }
}
.support__title {
  color: white;
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .support__title {
    margin-bottom: 40px;
  }
}
.support__grid {
  display: grid;
  grid-gap: 50px 30px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .support__grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
}
@media (max-width: 640px) {
  .support__grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.support__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 16px;
  align-items: start;
}
.support__icon {
  padding: 14px 11px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.support__text {
  font-weight: 600;
}

/*-----------------------------
Typography
-----------------------------*/
.heading-1 {
  font-size: 42px;
  line-height: 130%;
  text-transform: uppercase;
  color: inherit;
  font-weight: 900;
}
@media (max-width: 1024px) {
  .heading-1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .heading-1 {
    font-size: 32px;
  }
}

.heading-2 {
  font-size: 32px;
  line-height: 130%;
  color: inherit;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .heading-2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .heading-2 {
    font-size: 20px;
  }
}

.heading-3 {
  font-size: 20px;
  line-height: 130%;
  color: inherit;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .heading-3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .heading-3 {
    font-size: 16px;
  }
}

ul {
  list-style: none;
}
ul li {
  padding-left: 14px;
  position: relative;
}
ul li:not(:last-child) {
  margin-bottom: 20px;
}
ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c-secondary);
  position: absolute;
  top: 8px;
  left: 0;
}

hr {
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background: #D9D9D9;
  border: 0;
}

.text_gray {
  color: #6E6E6E;
}

p {
  margin-bottom: 16px;
}

/*-----------------------------
Libraries
-----------------------------*/
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: 0;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe, .gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gclose, .gnext, .gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gclose svg, .gnext svg, .gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
  opacity: 0.1;
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  animation: gzoomOut 0.5s ease;
}
@keyframes lightboxLoader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}