/* Base */
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  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;
}

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;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

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

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --def-width: 1280px;
  --def-padding: 15px;
  --font-main: "Onest", Arial, sans-serif;
  --page-bg: #fff;
  --text-color: #18181B;
  --text-color-grey: #71717A;
  --text-color-error: #EE4443;
  --bg-color-grey: #F3F4F6;
  --link-color: #1E40AF;
  --link-color-hover: #4d6bcf;
}

* {
  box-sizing: border-box !important;
  background-repeat: no-repeat !important;
  word-break: break-word !important;
  color: var(--text-color);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: var(--font-main);
}
body * {
  font-family: Onest;
  font-weight: 500;
  font-style: Medium;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--text-color);
}

h1 {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 70px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

h2 {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

h3,
h4,
h5,
h6 {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

@media (max-width: 500px) {
  body * {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0%;
  }
  h1 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 30px;
    line-height: 130%;
    letter-spacing: 0%;
    font-style: Regular;
  }
  h2 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0%;
    font-style: Regular;
  }
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0%;
    font-style: Regular;
  }
}
a {
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}

a:hover {
  transition: 0.5s;
  color: var(--link-color);
}

main {
  padding: 0;
  margin: 0;
  position: relative;
}

.padding {
  padding: 0 var(--def-padding);
}

.margin_bot {
  margin-bottom: 60px;
}

@media (max-width: 720px) {
  .margin_bot {
    margin-bottom: 30px;
  }
}
.flex {
  display: flex;
}

.flex-direct {
  flex-direction: column;
}

.def_div {
  width: 100%;
  max-width: var(--def-width);
  margin: 0 auto;
}

.button {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 1.2;
  letter-spacing: 0%;
  text-align: center;
  border-radius: 6px;
  color: #FFFFFF;
  height: 60px;
  width: 100%;
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  background-color: var(--link-color);
}

.button:hover:not([disabled]) {
  background-color: var(--link-color-hover);
  transition: 0.5s;
}

button:disabled {
  opacity: 0.6 !important;
  cursor: default !important;
  background-color: var(--text-color-grey);
  transition: 0.5s;
}

.invise {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}

.default {
  width: 100%;
  max-width: var(--def-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.default a {
  color: var(--link-color);
  text-decoration: underline;
  display: inline-block;
}

.default ul {
  list-style-position: inside;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.default ol {
  list-style-position: inside;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 0;
}

.default ul li {
  list-style: disc;
}

.default ul li::marker {
  color: #0B111F;
}

.default table {
  width: 100%;
}

.default caption {
  border-bottom: none;
  background-color: #908ea3;
}

.default thead th {
  background-color: #908ea3;
}

.default tbody td {
  background-color: #d4d4da;
  text-align: center;
}

[data-href] {
  cursor: pointer;
}

.sw_cont {
  position: relative;
}

.sw-btn {
  transform: rotate(180deg);
  max-width: 70px;
  max-height: 70px;
  min-height: 70px;
  min-width: 70px;
  background-color: #000;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 50%;
  background-image: url("./../img/arrow_1.svg");
  background-position: center;
  background-size: 9px 18px;
}

.before-slider {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #F3F4F6 100%);
  width: 212px;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 39px;
  transition: 0.5s;
  cursor: pointer;
}
.before-slider:hover {
  width: 230px;
}
.before-slider:hover .sw-btn-prev {
  transform: scale(1.1) rotate(180deg);
}
.before-slider:hover .sw-btn-next {
  transform: scale(1.1);
}
.before-slider.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.before-slider.before-next {
  left: auto;
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #F3F4F6 100%);
  padding-left: 0;
  padding-right: 39px;
  justify-content: end;
}

.sw-btn-next {
  transform: none;
}

@media (max-width: 960px) {
  .before-slider {
    width: 113px;
    padding-left: 15px;
    display: none;
  }
  .before-slider.before-next {
    padding-left: 0;
    padding-right: 15px;
  }
}
#load-svg {
  position: fixed;
  transition: 0.5s;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3607843137);
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
}

#load-svg svg {
  max-width: 64px;
  max-height: 64px;
  min-height: 64px;
  min-width: 64px;
}

#load-svg.open {
  visibility: visible;
  opacity: 1;
}

b {
  font-weight: 700 !important;
}

html, body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

/* Blocks */
footer {
  background-color: var(--bg-color-grey);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 60px 0;
}
.footer-container .left,
.footer-container .right {
  width: 50%;
}
.footer-container .left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 20px;
}
.footer-container .left h2 {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.footer-container .left p {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
}

.footer-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #FFF;
  border-radius: 6px;
  padding: 40px;
}
.footer-form .inputs_cont {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.footer-form .inputs_cont .input {
  border: 1px solid #D4D4D8;
  border-radius: 6px;
  width: 100%;
  height: 57px;
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 0 var(--def-padding);
}
.footer-form .inputs_cont textarea.input {
  height: 107px;
  max-height: 107px;
  max-width: 100%;
  padding-top: var(--def-padding);
  padding-bottom: var(--def-padding);
  resize: none;
}
.footer-form .inputs_cont textarea.input:focus-visible {
  outline: none;
}
.footer-form .inputs_cont .name-input {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 10px;
}
.footer-form .inputs_cont .input_cont {
  width: 100%;
  position: relative;
}
.footer-form .inputs_cont .error-span {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--text-color-error);
  display: none;
}
.footer-form .inputs_cont .err .error-span {
  display: block;
}
.footer-form .inputs_cont .err .input {
  border: 1px solid var(--text-color-error);
}
.footer-form .inputs_cont .err .input::placeholder,
.footer-form .inputs_cont .err .input {
  color: var(--text-color-error);
}
.footer-form .button {
  margin-bottom: 20px;
}
.footer-form span,
.footer-form span a {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--text-color-grey);
}
.footer-form span a {
  text-decoration: underline;
}
.footer-form span {
  margin-bottom: 10px;
}

@media (max-width: 970px) {
  .footer-container {
    flex-direction: column;
    padding: 30px 0;
    gap: 40px;
  }
  .footer-container .left,
  .footer-container .right {
    width: 100%;
  }
  .footer-container .left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 0;
  }
  .footer-container .left h2 {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 56px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
  .footer-container .left p {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
  }
}
@media (max-width: 720px) {
  footer {
    padding: 0 !important;
  }
  .footer-container {
    gap: 20px;
    padding-bottom: 0;
  }
  .footer-container .left {
    gap: 0px;
    padding: 0 var(--def-padding);
  }
  .footer-container .left h2 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0%;
    font-style: Regular;
    text-align: center;
  }
  .footer-container .left h2 br {
    display: none;
  }
  .footer-container .left p {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
  }
  .footer-form {
    border-radius: 0;
  }
}
@media (max-width: 500px) {
  .footer-form {
    padding: 15px;
  }
}
header {
  position: relative;
  z-index: 2;
}

.header-container {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.header-about-us {
  font-family: Onest;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 1%;
  text-transform: uppercase;
  color: var(--link-color);
}
.header-about-us:hover {
  color: var(--link-color-hover);
}

.header-logo-link {
  font-family: Onest;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 2%;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .header-about-us, .header-logo-link {
    font-size: 20px;
  }
}
.section-baner {
  position: relative;
}

.baner {
  padding: 140px 0 60px;
}

.baner-img {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 100%;
  max-width: 800px;
  transition: 0.5s;
}

.baner-text {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 70px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.baner-text * {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 70px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.baner-text span {
  color: var(--link-color);
}

@media (max-width: 1660px) {
  .section-baner {
    overflow: hidden;
  }
  .baner-img {
    left: auto;
    transform: translateX(50%);
    z-index: -1;
    max-width: 1000px;
  }
  .baner-text {
    width: 50%;
  }
}
@media (max-width: 1280px) {
  .baner-text {
    width: 65%;
  }
  .baner-text .br-1 {
    display: none;
  }
  .baner {
    padding-bottom: 150px;
  }
}
@media (max-width: 970px) {
  .baner-text {
    width: 100%;
  }
  .baner-img {
    position: static;
    transform: none;
  }
  .baner {
    padding: 100px 0 0;
    overflow: hidden;
  }
}
@media (max-width: 720px) {
  .baner {
    padding-top: 30px;
  }
  .baner-text {
    font-size: 42px;
    text-align: center;
  }
  .baner-text * {
    font-size: 42px;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .baner-text {
    font-size: 36px;
  }
  .baner-text * {
    font-size: 36px;
  }
}
.overlay {
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: 0.5s;
}

.overlay.open {
  visibility: visible;
  opacity: 50%;
  transition: 0.5s;
}

.popupCheck {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: max-content;
  padding: 0 20px;
}

.popupCheck .popup__container {
  display: flex;
  flex-direction: column;
  width: auto;
  position: relative;
  background-color: #F4F6F9;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  padding: 40px 20px 20px;
  max-height: 70vh;
  overflow-y: scroll;
}

.popupCheck .popup__container p {
  font-size: 22px;
  font-weight: 500;
  line-height: 28.8px;
  text-align: left;
  margin-bottom: 15px;
  text-align: center;
}

.popupCheck .popup__container span a {
  text-decoration: underline;
}

.popupCheck .popup__container span {
  margin-bottom: 10px;
}

.popupCheck .popup__container .close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 3;
  cursor: pointer;
  width: 25px;
  height: 25px;
}

.popupCheck .popup__container .close-btn:hover path {
  opacity: 0.5;
}

.popupCheck.open {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}

@media (min-width: 991px) {
  .popupCheck .popup__container {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .popupCheck .popup__container::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.popup-info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: max-content;
  padding: 0 var(--def-padding);
}

.popup-info .popup__container {
  display: flex;
  flex-direction: column;
  width: auto;
  position: relative;
  background-color: #FFF;
  width: 100%;
  max-width: 840px;
  padding: 60px;
  max-height: 90vh;
  overflow-y: scroll;
}

.popup-info .popup__container .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 3;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.popup-info .popup__container .close-btn:hover path {
  opacity: 0.5;
}

.popup-info.open {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}

.popup-info-title {
  font-family: Onest;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.info-1 {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}

.popup-info .default {
  margin-bottom: 40px;
  font-family: Onest;
  font-weight: 400;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  gap: 15px;
}
.popup-info .default * {
  font-family: Onest;
  font-weight: 400;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
}
.popup-info .default:last-child {
  margin-bottom: 0;
}

@media (min-width: 970px) {
  .popup-info .popup__container {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .popup-info .popup__container::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
@media (max-width: 720px) {
  .popup-info .popup__container {
    padding: 20px;
    padding-top: 60px;
  }
  .popup-info .popup__container .close-btn {
    width: 25px;
    height: 25px;
  }
  .popup-info-title {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 26px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .info-1 {
    margin-bottom: 20px;
  }
  .popup-info .default {
    margin-bottom: 20px;
  }
}
.sliders-section {
  background-color: var(--link-color);
}
.slide {
  width: 540px;
  height: auto;
  background-color: var(--link-color);
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.slide * {
  color: #FFF;
}
.slide:last-child {
  border: none;
}
.slide span {
  border-left: 2px solid #FFF;
  border-right: 2px solid #FFF;
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  border-radius: 16px;
  width: 80px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 118px;
}

.slide-img {
  max-width: 100px;
  max-height: 100px;
  min-height: 100px;
  min-width: 100px;
  margin-bottom: 40px;
}

.slide-text {
  font-family: Onest;
  font-weight: 500;
  font-style: Medium;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
}

@media (max-width: 720px) {
  .slide {
    width: 450px;
  }
}
@media (max-width: 500px) {
  .slide span, .slide-img {
    margin-bottom: 20px;
  }
  .slide-text {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 26px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
  }
  .slide {
    width: 300px;
  }
}