* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

video {
  display: block;
  border: none;
  outline: none;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
  display: block;
}

body {
    font-family: "Jost", sans-serif;
  font-weight: 400;
  top: 0;
  left: 0;
  padding: 0;
  background: #fff;
  width: 100%;
  color: #111;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
}

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

main {
  width: 100%;
  flex: 1 0 auto;
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: #035DCB;
  color: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus {
  top: 12px;
}

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

::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
  height: 5px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #035DCB;
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #381608;
  border-radius: 10px;
  background-color: #fff;
}



.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal_overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, .4);
}
.modal_rect {
  width: 545px;
  max-width: calc(100% - 32px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  height: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 51;
  transform: translate(-50%, -50%);
  background: #F5F5F5;
  border-radius: 10px;
}
.modal_rect_content {
  padding: 50px 40px 40px;
  position: relative;
}
.modal_rect_close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all .5s;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 52;
}
.modal_rect_close:hover{
  opacity: .5;
}
.modal_rect_title {
  color: #111;
text-align: center;
font-family: "Jost", sans-serif;
font-size: clamp(26px, 4vw, 40px);
font-style: normal;
font-weight: 800;
line-height: 1.2;
}
.modal_rect_subtitle {
  margin-top: 16px;
  color: #111;
text-align: center;
font-family: "Jost", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}
.modal_form {
  width: 100%;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal_rect_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border-radius: 5px;
}
.modal_rect_block_input {
  color: #111;
font-family: "Jost", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
background: #fff;
outline: none;
padding: 18px 20px;
border: 2px solid transparent;
width: 100%;
border-radius: 5px;
}
.modal_rect_block_input:focus{
  border: 2px solid #035DCB;
}
.modal_rect_block_button {
  margin-top: 16px;
  width: 100%;
  height: auto;
  padding-top: 18px;
  padding-bottom: 18px;
  background: linear-gradient(281deg, rgba(255, 255, 255, 0.00) 13.63%, rgba(237, 92, 30, 0.20) 64.11%), #035DCB;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  outline: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all .5s;
  color: #FFF;
text-align: center;
font-family: "Jost", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 24px;
}
.modal_rect_block_button:hover{
  transform: translateY(-5px);
}
.modal_rect_block_info {
  display: block;
  margin: 0 auto;
  max-width: 291px;
  margin-top: 4px;
  color: rgb(17, 17, 17, .5);
text-align: center;
font-family: "Jost", sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 18px;
}




header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  width: 100%;
  height: auto;
  box-shadow: 0 5px 60px 0 rgba(40, 19, 6, 0.07);
  background: #fff;
}
header .container{
  max-width: 1450px;
}
.header_menu {
  display: contents;
}
.header_nav {
  display: contents;
}
.header_menu_overlay {
  display: none;
}
.header_burger {
  display: none;
}
.header_items {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.header_logo {
  vertical-align: middle;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 46;
}
.header_logo img {
  display: block;
  width: 166px;
  height: 60px;
  max-width: none;
}
.header_navs {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin-left: 30px;
  margin-right: 20px;
}
.header_nav_item {
  display: flex;
  align-items: center;
}
.header_nav_link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-family: "Jost", sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 143%;
text-align: center;
color: #111;
cursor: pointer;
transition: all .5s;
white-space: nowrap;
}
.header_nav_link:hover,
.header_nav_link.is-active {
  color: #035dcb;
}
.header_phones {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}
.header_phone svg{
  vertical-align: middle;
  width: 20px;
}
.header_phone {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: "Jost", sans-serif;
font-weight: 600;
font-size: 14px;
line-height: 150%;
text-align: right;
text-transform: uppercase;
color: #111;
white-space: nowrap;
cursor: pointer;
transition: all .5s;
}
.header_phone:hover{
  color: #035dcb;
}
.header_button {
  margin-left: 30px;
  font-family: "Jost", sans-serif;
font-weight: 700;
font-size: 16px;
line-height: 125%;
text-align: center;
color: #111;
padding: 15px 30px;
border: 2px solid #035dcb;
border-radius: 5px;
background: transparent;
cursor: pointer;
transition: all .5s;
white-space: nowrap;
flex-shrink: 0;
}
.header_button:hover{
  background: #035dcb;
  color: #fff;
}

.container {
 width: 100%;
 max-width: 1286px;
 display: block;
 margin: 0 auto;
 padding: 0 20px;
}



.intro {
  width: 100%;
  height: auto;
  background: url("../img/intro_bg.png") no-repeat center center;
  background-size: cover;
  margin-top: 106px;
  padding-bottom: 10px;
}
.intro_texts {
  display: flex;
  flex-direction: column;
  padding-top: clamp(48px, 11vw, 150px);
}
.intro_title {
  font-family: "Jost", sans-serif;
font-weight: 800;
font-size: clamp(24px, 5vw, 64px);
line-height: 109%;
text-align: center;
text-transform: uppercase;
color: #fff;
text-shadow: 0 10px 30px 0 rgba(17, 17, 17, 0.2);
}
.intro_subtitle {
  margin-top: 20px;
  font-family: "Jost", sans-serif;
font-weight: 300;
font-size: clamp(15px, 2vw, 25px);
line-height: 160%;
text-align: center;
text-transform: uppercase;
color: #fff;
text-shadow: 0 10px 30px 0 rgba(17, 17, 17, 0.2);
}
.intro_subtitle span {
  font-weight: 500;
color: #2371d2;
}
.intro_text {
  margin-top: clamp(24px, 4vw, 50px);
  font-family: "Inter", sans-serif;
font-weight: 300;
font-size: clamp(14px, 1.3vw, 16px);
line-height: 150%;
text-align: center;
color: #fff;
font-size: 20px;
}
.intro_button {
  display: block;
  margin: 0 auto;
  margin-top: clamp(28px, 4vw, 50px);
  font-family: "Jost", sans-serif;
font-weight: 700;
font-size: 18px;
line-height: 133%;
text-align: center;
color: #fff;
padding: 20px 30px;
border-radius: 5px;
background: #035DCB;
background: linear-gradient(120deg,rgba(3, 93, 203, 1) 0%, rgba(2, 58, 125, 1) 100%);
cursor: pointer;
transition: all .5s;
outline: none;
border: none;
margin-bottom: clamp(48px, 16vw, 230px);
}
.intro_button:hover{
  transform: translateY(-5px);
  opacity: .8;
}



.informations {
  width: 100%;
  height: auto;
  background: url(../img/informations_bg.png) top center no-repeat;
  margin-top: -100px;
  position: relative;
  z-index: -1;
}
.informations_sections {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  padding-top: clamp(80px, 14vw, 200px);
  align-items: start;
}
.informations_section {
  width: 100%;
  min-width: 0;
}
.informations_section:first-child{
  position: relative;
}
.informations_section_title {
color: #111;
font-family: "Jost", sans-serif;
font-size: clamp(16px, 1.6vw, 20px);
font-style: normal;
font-weight: 400;
line-height: 1.7;
max-width: 546px;
}
.informations_section_title span{
  font-weight: 600;
}
.informations_section_image {
  margin-top: clamp(24px, 6vw, 77px);
  vertical-align: bottom;
  display: block;
  width: 100%;
  max-width: 546px;
  height: auto;
}
.informations_section_line {
  vertical-align: middle;
  position: absolute;
  left: -310px;
  bottom: 100px;
  z-index: -1;
}
.informations_section_blocks_items {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.8vw, 25px);
  margin-top: 17px;
}
.informations_section_blocks {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  gap: 20px;
}
.informations_section_block {
  width: 100%;
  height: auto;
  border-radius: 10px;
background: #FFF;
box-shadow: 0 30px 60px 0 rgba(40, 19, 6, 0.07);
}
.informations_section_block_content {
  padding: clamp(18px, 2vw, 30px);
  padding-bottom: clamp(24px, 3vw, 45px);
}
.informations_section_block_icon {
  vertical-align: middle;
}
.informations_section_block_text {
  margin-top: 18px;
  color: #111;
font-family: "Jost", sans-serif;
font-size: clamp(14px, 1.25vw, 16px);
font-style: normal;
font-weight: 500;
line-height: 1.4;
}
.informations_section_block_text span{
  color: #1063cb;
font-weight: 700;
letter-spacing: 2.4px;
text-transform: uppercase;
}
.informations_section_bottom {
  margin-top: 44px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.informations_section_bottom_logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-right: 20px;
}
.informations_section_bottom_logo_icon {
  vertical-align: middle;
}
.informations_section_bottom_logo_text {
  color: #035DCB;
font-family: "Jost", sans-serif;
font-size: 26px;
font-style: normal;
font-weight: 800;
line-height: 40px;
letter-spacing: 3.9px;
text-transform: uppercase;
}
.informations_section_bottom_button {
  margin-left: auto;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all .5s;
  display: flex;
  align-items: center;
  color: #FFF;
text-align: center;
font-family: "Jost", sans-serif;
gap: 8px;
padding: 20px 50px;
justify-content: center;
background: #035DCB;
background: linear-gradient(120deg,rgba(3, 93, 203, 1) 0%, rgba(2, 58, 125, 1) 100%);
font-family: "Jost", sans-serif;
font-weight: 700;
border-radius: 5px;
font-size: 18px;
line-height: 133%;
text-align: center;
color: #fff;
}

.informations_section_bottom_button:hover{
  transform: translateY(-5px);
}

.informations_section_blocks:first-child{
  margin-top: clamp(0px, 12vw, 160px);
}

.informations_section_blocks:last-child .informations_section_block:last-child{
  background: #eaf2ff;
}

.informations_section_blocks:nth-child(2){
  margin-top: clamp(0px, 5vw, 60px);
}


.why {
  width: 100%;
  height: auto;
  margin-top: 50px;
}
.why_title {
  font-family: "Jost", sans-serif;
font-weight: 600;
font-size: clamp(22px, 3.2vw, 40px);
line-height: 100%;
text-align: center;
text-transform: uppercase;
color: #2f2f2f;
display: block;
margin: 0 auto;
width: fit-content;
max-width: 100%;
border-bottom: 2px solid #1f64c2;
padding-bottom: 10px;
}
.why_blocks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px) clamp(12px, 2vw, 24px);
  margin-top: 50px;
}
.why_block {
  width: 100%;
  min-width: 0;
  margin: 0;
}
.why_block_image {
  vertical-align: middle;
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 159px;
  object-fit: contain;
}
.why_block_title {
  font-family: "Jost", sans-serif;
font-weight: 500;
font-size: clamp(16px, 1.8vw, 25px);
line-height: 140%;
text-align: center;
text-transform: uppercase;
color: #2f2f2f;
margin-top: 30px;
}
.why_block_text {
  display: block;
  margin: 0 auto;
  margin-top: 10px;

  font-family: "Inter", sans-serif;
font-weight: 500;
font-size: 15px;
line-height: 130%;
text-align: center;
color: #2f2f2f;
max-width: 250px;
}




.products {
  width: 100%;
  height: auto;
  padding-top: 55px;
  background: #f5f5f5;
  margin-top: 50px;
}
.products_title {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #2f2f2f;
  display: block;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  border-bottom: 2px solid #1f64c2;
  padding-bottom: 10px;
}
.products_info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: center;
  margin-top: 50px;
}
.products_info_item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  margin: 0;
}
.products_info_item_icon {
  vertical-align: middle;
  flex-shrink: 0;
}
.products_info_item_title {
  font-family: "Inter", sans-serif;
font-weight: 500;
font-size: clamp(14px, 1.4vw, 18px);
line-height: 125%;
color: #2f2f2f;
}
.products_blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 50px;
}
.products_block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(20px, 4vw, 50px);
}
.products_block_image {
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  justify-self: center;
}
.products_block_info {
  min-width: 0;
}
.products_block_info_title {
  font-family: "Jost", sans-serif;
font-weight: 700;
font-size: clamp(20px, 2.4vw, 30px);
line-height: 117%;
text-align: left;
text-transform: uppercase;
color: #2f2f2f;
}
.products_block_info_subtitle {
  margin-top: 20px;
  font-family: "Inter", sans-serif;
font-weight: 500;
font-size: clamp(16px, 1.6vw, 20px);
line-height: 150%;
color: #035DCB;
}
.products_block_info_text {
  margin-top: 20px;
  font-weight: 400;
font-size: clamp(14px, 1.35vw, 17px);
line-height: 150%;
color: #2f2f2f;
font-family: "Inter", sans-serif;

}
.products_block_button {
  margin-top: clamp(24px, 4vw, 50px);

  font-family: "Jost", sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 133%;
text-align: center;
color: #fff;
padding: 20px 30px;
border-radius: 5px;
background: #035DCB;
background: linear-gradient(120deg,rgba(3, 93, 203, 1) 0%, rgba(2, 58, 125, 1) 100%);
cursor: pointer;
transition: all .5s;
outline: none;
border: none;
width: fit-content;
}

.products_block_button:hover{
  transform: translateY(-5px);
  opacity: .8;
}

.products_image{
  width: 100%;
  position: relative;
 top: 50px;
  margin-top: 100px;
}






.service {
  width: 100%;
  height: auto;
  margin-top: 79px;
  background: url(../img/service_bg.png)center center no-repeat;
  background-position-y: 150px;
  padding-bottom: 75px;
}
.service_title {
  color: #111;
font-family: "Jost", sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 50px;
text-align: center;
}
.service_title span{
  font-weight: 800;
}
.service_main {
  width: 100%;
  margin: 0 auto;
  margin-top: 41px;
  background: url(../img/service_phone.png)top center no-repeat;
  padding-bottom: 100px;
}
.service_main_blocks {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.service_main_block {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.service_main_block_texts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service_main_block_text {
  color: #111;
font-family: "Jost", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px; 
max-width: 350px;
padding: 27px 32px;
padding-right: 38px;
}
.service_main_block_image {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
.service_main_button {
  margin: 0 auto;
  margin-top: 35px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all .5s;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
text-align: center;
font-family: "Jost", sans-serif;
padding: 20px 60px;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 24px; 
border-radius: 5px;
background: #035DCB;
background: linear-gradient(120deg, rgba(3, 93, 203, 1) 0%, rgba(2, 58, 125, 1) 100%);
}

.service_main_button:hover{
  transform: translateY(-5px);
}
.service_main_info {
  margin-top: 26px;
  color: #111;
text-align: center;
font-family: "Jost", sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 18px; 
}

.service_main_block:first-child{
justify-content: flex-end;
}

.service_main_block:first-child .service_main_block_text{
border: 2px solid #111;
background: #fff;
color: #111;
border-radius: 25px;
border-bottom-right-radius: 0px;
}


.service_main_block:last-child .service_main_block_text{
border: 2px solid #111;
background: #111;
color: #fff;
border-radius: 25px;
border-bottom-left-radius: 0px;
}

.service_main_block:last-child{
  margin-top: clamp(-80px, -10vw, -40px);
}

.service_main_block:first-child .service_main_block_texts{
  margin-top: 20px;
}

.service_main_block:last-child .service_main_block_texts{
  margin-top: 70px;
}


.service_title{
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #2f2f2f;
  display: block;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  border-bottom: 2px solid #1f64c2;
  padding-bottom: 10px;
}



footer{
  width: 100%;
  height: auto;
  margin-top: 90px;
}
.footer_up {
  width: 100%;
  height: auto;
  background: #111 url(../img/footer_up_bg.png)left center no-repeat;
  background-position-x: calc(50% - 75px);
}
.footer_up_items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 48px;
  padding-top: clamp(40px, 7vw, 91px);
  padding-bottom: clamp(40px, 7vw, 96px);
}
.footer_up_item {
  min-width: 0;
}
.footer_up_item:nth-child(2) {
  margin-left: 0;
}
.footer_up_item:last-child {
  margin-left: 0;
}
.footer_up_item_logo {
  vertical-align: middle;
}
.footer_up_item_contacts {
  display: flex;
  flex-direction: column;
}
.footer_up_item_contacts_phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
font-family: "Jost", sans-serif;
cursor: pointer;
transition: all .5s;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 26px; 
text-transform: uppercase;
}
.footer_up_item_contacts_phone:hover{
  color: #035DCB;
}
.footer_up_item_contacts_mail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
font-family: "Jost", sans-serif;
cursor: pointer;
transition: all .5s;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 26px; 
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}
.footer_up_item_contacts_mail:hover{
  color: #035DCB;
}
.footer_up_item_contacts_socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
}
.footer_up_item_contacts_social {
  vertical-align: middle;
  cursor: pointer;
  transition: all .5s;
}
.footer_up_item_contacts_social:hover{
  transform: translateY(-5px);
}
.footer_up_item_gps {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #FFF;
font-family: "Jost", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; 
}
.footer_up_item_gps span{
width: 100%;
max-width: 278px;
margin-top: -7px;
}
.footer_up_item_gps svg{
  vertical-align: middle;
}
.footer_bottom {
  width: 100%;
  height: auto;
  padding-top: 30px;
  padding-bottom: 32px;
}
.footer_bottom_items{
  display: flex;
  align-items: center;
}
.footer_bottom_copy {
  color: rgb(17, 17, 17, .5);
font-family: "Jost" ,sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 18px;
}
.footer_bottom_number{
  color: rgb(17, 17, 17, .5);
font-family: "Jost" ,sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 18px;
margin-left: auto;
} 
.footer_bottom_politic {
margin-left: auto;
 color: rgb(17, 17, 17, .5);
font-family: "Jost", sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 18px; 
cursor: pointer;
transition: all .5;
}

.footer_bottom_politic:hover{
  color: #035DCB;
}

.header_burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 48;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.header_burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
body.menu-open .header_burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.menu-open .header_burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .header_burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1280px) {
  .header_phones {
    margin-left: 16px;
  }
  .header_navs {
    margin-left: 16px;
  }
  .header_nav_link {
    font-size: 13px;
  }
  .header_button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 1180px) {
  .header_burger {
    display: flex;
  }
  .header_menu_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, .45);
    z-index: 40;
  }
  body.menu-open .header_menu_overlay {
    display: block;
  }
  .header_menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 86vw);
    height: 100%;
    background: #fff;
    z-index: 46;
    padding: 100px 24px 32px;
    box-shadow: -10px 0 40px rgba(17, 17, 17, .12);
    transform: translateX(110%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  body.menu-open .header_menu {
    transform: translateX(0);
  }
  .header_navs {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    gap: 18px;
  }
  .header_nav_link {
    font-size: 18px;
    text-align: left;
  }
  .header_phones {
    margin-left: 0;
    margin-top: 28px;
    align-items: flex-start;
  }
  .header_phone {
    font-size: 16px;
  }
  .header_button {
    margin-left: 0;
    margin-top: 24px;
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
  }
  .informations {
    margin-top: -40px;
    z-index: 0;
  }
  .informations_sections {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .informations_section_title {
    max-width: 100%;
  }
  .informations_section_image {
    margin-left: auto;
    margin-right: auto;
  }
  .informations_section_line {
    display: none;
  }
  .informations_section_blocks_items {
    margin-top: 0;
  }
  .informations_section_blocks:first-child,
  .informations_section_blocks:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .why_blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }
  .service_main_block:last-child {
    margin-top: -20px;
  }
  .service_main_block:last-child .service_main_block_texts {
    margin-top: 24px;
  }
}

@media (max-width: 900px) {
  .intro {
    margin-top: 90px;
  }
  .informations {
    margin-top: 0;
    background-size: cover;
  }
  .informations_section_title br {
    display: none;
  }
  .products_block {
    grid-template-columns: 1fr;
  }
  .products_block_image {
    order: -1;
    max-width: 640px;
  }
  .products_info {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .products_image {
    margin-top: 40px;
    top: 0;
  }
  .service {
    margin-top: 40px;
    background-position-y: top;
  }
  .service_main {
    background: transparent;
    padding-bottom: 40px;
  }
  .service_main_block {
    flex-direction: column;
    align-items: center;
  }
  .service_main_block:first-child,
  .service_main_block:last-child {
    margin-top: 0;
    justify-content: center;
  }
  .service_main_block:last-child {
    margin-top: 20px;
  }
  .service_main_block:first-child .service_main_block_texts,
  .service_main_block:last-child .service_main_block_texts {
    margin-top: 0;
  }
  .service_main_block_text {
    max-width: 100%;
  }
  .service_main_block_image {
    max-width: 180px;
  }
  footer {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .header_logo img {
    width: 132px;
    height: 48px;
  }
  .header_items {
    padding: 12px 0;
  }
  .intro {
    margin-top: 72px;
  }
  .intro_button {
    width: 100%;
    padding: 16px 20px;
  }
  .modal_rect_content {
    padding: 44px 20px 28px;
  }
  .modal_rect_subtitle {
    font-size: 16px;
  }
  .informations_section_blocks_items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .informations_section_blocks {
    display: contents;
  }
  .informations_section_block {
    height: 100%;
  }
  .informations_section_bottom_button {
    margin-left: 0;
    padding: 16px 24px;
    width: 100%;
  }
  .products_info_item_title br {
    display: none;
  }
  .products_block_button {
    width: 100%;
  }
  .service_main_button {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  .footer_up {
    background-position: center;
  }
  .footer_up_items {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer_bottom_items {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .why_blocks {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .informations_section_blocks_items {
    grid-template-columns: 1fr;
  }
  .informations_section_block_content {
    padding: 22px 20px 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

.page {
  width: 100%;
  margin-top: 106px;
  padding: 0 0 0;
  background: #fff;
}
.page_crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .75);
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 140%;
}
.page_crumbs a {
  display: inline;
  color: rgba(255, 255, 255, .75);
  transition: color .3s;
}
.page_crumbs a:hover {
  color: #fff;
}
.page_crumbs span {
  color: #fff;
}
.page_hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}
.page_hero_image {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.page_hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(17, 17, 17, .78) 100%);
}
.page_hero_inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 40px 0 48px;
}
.page_hero .page_title {
  color: #fff;
  border-bottom-color: #7eb3ff;
}
.page_hero .page_subtitle {
  color: #d6e8ff;
  max-width: 720px;
}
.page_title {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 120%;
  text-transform: uppercase;
  color: #2f2f2f;
  width: fit-content;
  border-bottom: 2px solid #1f64c2;
  padding-bottom: 10px;
}
.page_subtitle {
  margin-top: 16px;
  max-width: 820px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 150%;
  color: #035DCB;
}
.page_text {
  margin-top: 16px;
  max-width: 860px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 150%;
  color: #2f2f2f;
}
.page_section {
  margin-top: 56px;
}
.page_section_title {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 120%;
  text-transform: uppercase;
  color: #2f2f2f;
  width: fit-content;
  border-bottom: 2px solid #1f64c2;
  padding-bottom: 8px;
}
.page_stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 32px;
  margin-top: 32px;
  padding: 22px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.page_stat {
  padding: 0;
}
.page_stat_value {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  color: #035DCB;
}
.page_stat_label {
  margin-top: 6px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 140%;
  color: #444;
}
.page_features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin-top: 8px;
}
.page_feature {
  padding: 22px 0;
  border-bottom: 1px solid #e6e6e6;
}
.page_objects {
  margin-top: 16px;
  max-width: 860px;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  line-height: 155%;
  color: #2f2f2f;
}
.page_faq {
  margin-top: 12px;
}
.page_faq_item {
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6;
}
.page_faq_item h3 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #111;
}
.page_faq_item p {
  margin-top: 8px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #444;
}
.page_feature_title {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #111;
}
.page_feature_text {
  margin-top: 8px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 145%;
  color: #444;
}
.page_steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 32px;
  margin-top: 28px;
}
.page_step {
  padding-top: 14px;
  border-top: 3px solid #035DCB;
}
.page_step_index {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  color: #035DCB;
}
.page_step_title {
  margin-top: 8px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111;
}
.page_step_text {
  margin-top: 8px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 140%;
  color: #555;
}
.page_slider_wrap {
  position: relative;
  margin-top: 28px;
}
.page_slider {
  overflow: hidden;
  padding: 0 0 48px;
}
.page_slide {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
}
.page_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page_slider .swiper-button-next,
.page_slider .swiper-button-prev {
  color: #fff;
  background: #035DCB;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  z-index: 2;
}
.page_slider .swiper-button-next {
  right: 10px;
}
.page_slider .swiper-button-prev {
  left: 10px;
}
.page_slider .swiper-button-next::after,
.page_slider .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}
.page_slider .swiper-pagination-bullet {
  background: #035DCB;
}
.page_hint {
  margin-top: 12px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: rgba(17, 17, 17, .55);
}
.page_related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.page_related_item {
  display: block;
}
.page_related_item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.page_related_item span {
  display: block;
  margin-top: 12px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #111;
  border-bottom: 2px solid #1f64c2;
  width: fit-content;
  padding-bottom: 4px;
}
.page_banner {
  margin-top: 64px;
  background: #035DCB;
  padding: 48px 0;
}
.page_banner_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.page_banner_title {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 120%;
  color: #fff;
}
.page_banner_text {
  margin-top: 10px;
  max-width: 520px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, .85);
}
.page_cta_button {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  color: #035DCB;
  padding: 20px 30px;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: all .5s;
  outline: none;
  border: none;
  white-space: nowrap;
}
.page_cta_button:hover {
  transform: translateY(-5px);
}
a.page_cta_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.form_hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form_status {
  margin-top: 8px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
}
.form_status.is-ok {
  color: #146c2e;
}
.form_status.is-error {
  color: #b42318;
}
.modal_rect_block_button.is-loading {
  opacity: .7;
  pointer-events: none;
}
.contact_cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 32px;
  margin-top: 36px;
  padding: 8px 0 8px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.contact_card {
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  color: inherit;
}
.contact_card_icon {
  display: none;
}
.contact_card_label {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #035DCB;
}
.contact_card_value {
  margin-top: 8px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #111;
  word-break: break-word;
}
.contact_card_hint {
  margin-top: 8px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: rgba(17, 17, 17, .55);
}
.contact_card:hover .contact_card_value {
  color: #035DCB;
}
.contact_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 48px;
  align-items: start;
}
.contact_form_wrap,
.contact_aside_block {
  padding: 0;
}
.contact_form_wrap .page_text {
  margin-bottom: 8px;
}
.contact_aside {
  display: grid;
  gap: 28px;
}
.contact_aside_title {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #111;
  border-bottom: 2px solid #1f64c2;
  width: fit-content;
  padding-bottom: 6px;
}
.contact_hours {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  list-style: none;
  padding: 0;
}
.contact_hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e6e6e6;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: #444;
}
.contact_hours li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact_hours strong {
  color: #035DCB;
  font-family: "Jost", sans-serif;
  white-space: nowrap;
}
.contact_list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  list-style: none;
}
.contact_list li {
  position: relative;
  padding-left: 18px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 145%;
  color: #444;
}
.contact_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #035DCB;
}
.contact_aside_block p {
  margin-top: 12px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 150%;
  color: #444;
}
.contact_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.contact_field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact_field--wide,
.contact_form .modal_rect_block_button,
.contact_form .modal_rect_block_info,
.contact_form .form_status {
  grid-column: 1 / -1;
}
.contact_field span {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #035DCB;
}
.contact_field input,
.contact_field select,
.contact_field textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background: #fff;
  padding: 16px 18px;
  color: #111;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 22px;
  outline: none;
  resize: vertical;
}
.contact_field input:focus,
.contact_field select:focus,
.contact_field textarea:focus {
  border-color: #035DCB;
}
.contact_form .form_status {
  text-align: left;
}
.contact_map {
  margin-top: 24px;
  overflow: hidden;
  min-height: 380px;
  background: #f5f5f5;
}
.contact_map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.contact_related {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.page_hint a {
  color: #035DCB;
}

@media (max-width: 1024px) {
  .page_stats,
  .page_steps,
  .page_related,
  .contact_cards,
  .contact_related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact_layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page {
    margin-top: 72px;
  }
  .page_hero_image {
    height: 340px;
  }
  .page_hero_inner {
    padding: 24px 0 28px;
  }
  .page_features {
    grid-template-columns: 1fr;
  }
  .page_banner {
    padding: 36px 0;
  }
  .page_banner_inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .page_cta_button {
    width: 100%;
  }
  .page_slider .swiper-button-next,
  .page_slider .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 560px) {
  .page_stats,
  .page_steps,
  .page_related,
  .contact_cards,
  .contact_related {
    grid-template-columns: 1fr;
  }
  .page_hero_image {
    height: 280px;
  }
  .contact_form {
    grid-template-columns: 1fr;
  }
}



@media (min-width:1281px) and (max-width: 1439px) {
  .header_navs{
    gap: 15px;
  }
  .header_nav_link{
    font-size: 16px;
  }
}

@media (max-width: 468px) {
  .footer_bottom_copy{
    text-align: left;
  }
  .footer_bottom_number{
    text-align: right;
  }
}

#nprogress {
  display: none !important;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10000;
  pointer-events: none;
}

.page-progress_bar {
  height: 100%;
  width: 0;
  background: #035dcb;
  box-shadow: 0 0 12px rgba(3, 93, 203, 0.85), 0 0 4px rgba(3, 93, 203, 0.7);
  transform-origin: left center;
}

.page-progress.is-running .page-progress_bar {
  width: 78%;
  transition: width 0.85s cubic-bezier(0.08, 0.45, 0.12, 1);
}

.page-progress.is-waiting .page-progress_bar {
  width: 92%;
  transition: width 4s linear;
}

.page-progress.is-done .page-progress_bar {
  width: 100%;
  transition: width 0.18s ease-out;
}

.page-progress.is-leave .page-progress_bar {
  opacity: 0;
  transition: opacity 0.22s ease;
}