html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.header .container {
  max-width: 1300px;
}
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}
.header__inner {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header {
  position: fixed;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 5;
}

main.main {
    margin-top: 70px;
}

.menu__list {
  display: flex;
  gap: 35px;
}

.menu__list-link {
  color: #1c1c1c;
  padding: 25px 0;
}

.menu__list-link:hover {
  border-bottom: 2px solid #0071dc;
  color: #0071dc;
}

.menu__list-link--active {
  color: #0071dc;
  border-bottom: 2px solid #0071dc;
}

.mainmenubtn {
  cursor: pointer;
}

.mainmenubtn::after {
  content: "";

  background-image: url("../images/chevron.svg");
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 0;
  right: -25px;
}

.mainmenubtn:hover {
  background-color: #fafafa;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-child {
  display: none;

  min-width: 110px;
}
.dropdown-child a {
  text-decoration: none;
  display: block;
  cursor: pointer;
  padding: 8px;
}
.dropdown-child a:hover {
  color: #0071dc;
}


.dropdown-child a.active_uk::after {
  content: "";
  background-image: url("../images/charm_tick.svg");
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 10px;
  right: 20px;
}

.dropdown-child a.active_en::after {
  content: "";
  background-image: url("../images/charm_tick.svg");
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  bottom: 15px;
  right: 20px;
}

.dropdown:hover .dropdown-child {
  display: block;
  position: absolute;
  top: 20px;
  right: -25px;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.menu__btn {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
}

.menu__btn span {
  height: 2px;
  background-color: #000;
  width: 100%;
}
.header__tel {
  display: flex;
  color: #0071dc;
  margin-left: 200px;
}
.header__tel img {
  margin-right: 5px;
}

.order_btn {
  max-width: 250px;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 32px;
  background-color: #0071dc;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

.order_btn:hover {
  opacity: 0.8;
}

.main_section {
}

.main_section .container {
  background-image: url("../images/main_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  background-position-y: -75px;
  max-width: 1300px;
  min-height: 80vh;
}

.main_section h1 span {
  color: #0071dc;
}

.text__inner {
  width: 45%;
  padding: 180px 20px;
}

.text__inner .order_btn{
    padding: 16px 79px;
    
}

.text__inner p {
  padding: 25px 0 45px 0;
}

.img__inner {
  width: 49%;
}

.down_arrow {
  text-align: center;
  cursor: pointer;
}
.down_arrow:hover {
  opacity: 0.8;
}

.about .img_box {
  width: 45%;
}

.about .row {
  align-items: center;
}

.about .text_box {
  width: 40%;
  margin-left: 10%;
}
.about .text_box h2 {
  margin-bottom: 25px;
}
.about .text_box p {
  color: #757575;
  line-height: 24px;
}

ul.about__list {
}

.about__list_items {
  margin: 30px 0;
  padding-left: 32px;
  position: relative;
}

.about__list_items::before {
  content: "";
  background-image: url("../images/material-symbols_check-circle-rounded.svg");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;

  position: absolute;

  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.calc {
  background-image: url("../images/calculator_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 90px;
}

.calc h2 {
  margin-top: 100px;
}

.calc p {
  color: #757575;
  margin: 40px 0 55px 0;
}

.calc__inner {
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
}

.calc_form {
  background: #ffffff;

  box-shadow: 0px 31px 101px rgba(0, 0, 0, 0.05),
    0px 20.0926px 59.1505px rgba(0, 0, 0, 0.037963),
    0px 11.9407px 32.1704px rgba(0, 0, 0, 0.0303704),
    0px 6.2px 16.4125px rgba(0, 0, 0, 0.025),
    0px 2.52593px 8.22963px rgba(0, 0, 0, 0.0196296),
    0px 0.574074px 3.97454px rgba(0, 0, 0, 0.012037);
  border-radius: 8px;
  padding: 32px;

  padding: 32px;
}
.calc_form .row {
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
}

.calc_form label {
  color: #1c1c1c;
}

.calc_form input {
  height: 56px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  padding: 16px;
  color: #a5a5a5;
}
.calc_form input:focus-visible {
  border: 1px solid #d6d6d6;
}

.time_input {
  width: 88px;
  height: 56px;
  position: absolute;
  right: 0;
  top: 0;
  background: #d6d6d6;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc_form .order_btn {
  margin: 42px auto 20px auto;
}

.rezult {
    display: flex;
    flex-direction: column;
    margin: 0 25px;
}

.rezult h3{
    margin: 45px 0 25px 0;
}

.input_error{
   
        border: 2px solid #F55963!important;
    
}

.time_input_error{

    height: 52px!important;

    right: 2px!important;
    top: 2px!important;
}

.input_error_text{
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;   
    color: #F55963;   
    display: none;
    position: absolute;
    right: 0;
    bottom: -20px;
}

.how_work__inner {
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
}

.how_work .row {
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
}

.how_work h2 {
  padding-top: 100px;
}
.how_work p {
  color: #757575;
  margin: 25px auto;
}

.video_box {
  border-radius: 16px;
  max-width: 920px;
}
.plyr__poster {
  background-color: #fff;
  /*opacity: .5;*/
}
.plyr__controls {
  display: none;
}

.characteristics {
  padding-top: 100px;
  background: #fafafa;
}

.characteristics_inner {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  text-align: center;
}

.characteristics h2 {
  margin-bottom: 56px;
}
.characteristics_card {
  padding: 32px;
  background: #ffffff;
  box-shadow: 0px 31px 101px rgba(0, 0, 0, 0.05),
    0px 20.0926px 59.1505px rgba(0, 0, 0, 0.037963),
    0px 11.9407px 32.1704px rgba(0, 0, 0, 0.0303704),
    0px 6.2px 16.4125px rgba(0, 0, 0, 0.025),
    0px 2.52593px 8.22963px rgba(0, 0, 0, 0.0196296),
    0px 0.574074px 3.97454px rgba(0, 0, 0, 0.012037);
  border-radius: 8px;

  min-width: 540px;
}

.table {
    margin: 0 25px;
    text-align: left;
    border-collapse: collapse;
    width: 100%;
    /* padding: 0 15px; */
}
.border{
    border-bottom: 1px solid #D6D6D6;
    
}

.table td {
  padding: 8px 0;
  vertical-align: baseline;
}

.table tr td:first-child {
  width: 65%;
}
.table tr td:last-child {
  vertical-align: baseline;
  padding-left: 25px;
}

.table_content .row_table span {
  width: 50%;
  float: left;
  text-align: left;
}

.table_content .row_table span:after {
  content: "";
  display: table;
  clear: both;
}
.benefits {
  padding: 100px 0;
}
.benefits p {
  color: #757575;

  padding: 30px 0 50px 0;
}

.benefits_inner {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
}
.counter_inner {
  display: flex;
  justify-content: space-between;
}

.counter_box {
  max-width: 22%;
}

.w35 {
  max-width: 35%;
}
.w35 p {
  max-width: 70%;
  /* text-align: center; */
  margin: 0 auto;
}

.counter_box p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #1c1c1c;
}

.counter {
  /* border: 2px dashed #0071DC; */

  position: relative;
  /* max-width: 200px; */
  height: 102px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter figure::before {
  content: "";
  width: 95%;
  height: 100px;
  position: absolute;
  display: block;
  top: 0px;
  border: 2px dashed #0071dc;
  border-radius: 200px;
  left: -4%;
  right: 0;
  bottom: 0;
}

.counter::before {
  content: "";
  width: 98%;
  height: 100px;
  position: absolute;
  display: block;
  top: 0;
  border: 2px dashed #0071dc;
  border-radius: 200px;
  left: 0%;
  right: 0;
  bottom: 0;
}
.counter::after {
  content: "";
  width: 91%;
  height: 100px;
  position: absolute;
  display: block;
  top: 0;
  border: 2px dashed #0071dc;
  border-radius: 200px;
  left: 4%;
  right: 0;
  bottom: 0;
}

.counter span {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  padding: 10px;
}

.star-rating {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
}

.c-star {
  width: var(--size, 16px);
  height: var(--size, 16px);
  fill: lightgrey;
}
.c-star.active {
  fill: #ffae36;
}

.shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ececec;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}
#testimonials-list .shadow-effect h3 {
  padding: 0 0 15px 0;
  text-align: left;
}
#testimonials-list .shadow-effect p {
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin: 0 0 17px 0;

  text-align: left;
}
.testimonial-name a {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #393939;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

.testimonial-name a:hover {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #f3be81;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #393939;
  text-decoration: none;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}
#testimonials-list .item {
  text-align: center;
  padding: 50px;
  margin-bottom: 80px;
  opacity: 0.2;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
}
#testimonials-list .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  max-width: 90px;
  border-radius: 50%;
  margin: 0 auto 17px;
}
#testimonials-list.owl-carousel .owl-dots .owl-dot.active span,
#testimonials-list.owl-carousel .owl-dots .owl-dot:hover span {
  background: #0071dc;
  -webkit-transform: translate3d(0px, -50%, 0px) scale(0.7);
  transform: translate3d(0px, -50%, 0px) scale(0.7);
  width: 34px;
  height: 18px;
  border-radius: 24px;
}
#testimonials-list.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#testimonials-list.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
#testimonials-list.owl-carousel .owl-dots .owl-dot span {
  display: inline-block;

  margin: 0 2px 5px;
  -webkit-transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;

  width: 18px;
  height: 18px;
  border-radius: 24px;
  background-color: #d6d6d6;
}

.owl-carousel .owl-item img {
  width: 56px !important;
}
.user_block {
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.user_block img {
  width: 56px;
  height: 56px;
}

span.user_name {
  text-align: left;
}

.testimonials h2 {
  padding: 60px 0 60px 0;
  margin: 0 auto;
}

.testimonials {
  padding: 0 0 100px 0;
}
.support_list {
  display: flex;
  width: 100%;
  /* flex-wrap: nowrap; */
  /* flex-direction: row; */
  justify-content: space-between;
}

.contact_form h3 span {
  color: #0071dc;
}

.days,
.hours,
.minutes {
  width: 48px;
  height: 48px;
  background: #0071dc;
  border-radius: 4px;
  margin-left: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
}


.days::after,
.hours::after {
  content: ":";
  color: black;
  width: 13px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: -20px;
  font-weight: bold;
  font-size: 34px;
  line-height: 120%;
}


.timer {
  display: flex;
}

.timer_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown {
  font-family: sans-serif;
  color: #fff;
  display: inline-block;
  font-weight: 100;
  text-align: center;
  font-size: 30px;
}

.countdown-number {
}

.countdown-time {
  width: 48px;
  height: 48px;
  background: #0071dc;
  border-radius: 4px;
  margin-left: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
}

.countdown-text {
  display: block;
  padding-top: 5px;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  padding-left: 20px;
}

.timer_inner p {
  font-family: "Arial";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

.contact_form {
  padding-bottom: 45px;
  background: #fafafa;
  padding-top: 85px;
}

.form_inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.img_box {
  width: 45%;
}

.img_box h3 {
  padding: 0 50px;
  text-align: center;
}

.form_box h2 {
  text-align: center;
  margin: 25px 0;
}

.form_box {
  width: 45%;
  background: #ffffff;
  box-shadow: 0px 31px 101px rgba(0, 0, 0, 0.05),
    0px 20.0926px 59.1505px rgba(0, 0, 0, 0.037963),
    0px 11.9407px 32.1704px rgba(0, 0, 0, 0.0303704),
    0px 6.2px 16.4125px rgba(0, 0, 0, 0.025),
    0px 2.52593px 8.22963px rgba(0, 0, 0, 0.0196296),
    0px 0.574074px 3.97454px rgba(0, 0, 0, 0.012037);
  border-radius: 8px;
  padding: 32px;
}

.form_box input {
  height: 56px;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  color: #a5a5a5;
  padding: 16px;
}

.form_contacts {
  display: flex;
  flex-direction: column;
}
.form_contacts label {
  margin: 15px 0 5px 0;
  font-family: "Arial";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}

.form_contacts button {
  width: 100%;
  max-width: 100%;
  margin: 35px 0;
  border: none;
}

footer {
  background: #000b16;
  padding: 85px 0 0 0;
  color: #fff;
}

.first_colum,
.second_colum {
  width: 25%;
}

.footer_inner {
  width: 100%;
  display: flex;
  /* flex-direction: row; */
  justify-content: space-between;
  /* align-content: flex-start; */
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  padding-bottom: 55px;
}

ul.footer_social {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  margin: 25px 0;
}
ul.footer_social li {
  margin-right: 18px;
}

.footer_contacts li {
  display: flex;
  margin-top: 16px;
}
.footer_contacts li img {
  margin-right: 10px;
}

.second_colum h3 {
  margin-bottom: 35px;
}

.footer_menu li {
  margin-bottom: 20px;
}

.third_colum {
  /* width: 35%;*/
}

.third_colum h3 {
  margin-bottom: 35px;
}
.third_colum input {
  height: 48px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  padding: 16px;
  color: #a5a5a5;
}

.third_colum form {
  /* min-height: 36px; */
  display: flex;
  align-items: center;
}

.third_colum button {
  border: none;
  /* height: 100%; */
  margin-left: -10px;
  /* margin-top: 5px; */
  height: 50px;
  /* border: none; */
}

.copy {
  padding: 25px;
  text-align: center;
  margin: 0 auto;
  opacity: 0.2;
}

.img__inner img,
.img_box img,
.characteristics_img img,
.img_box img {
  width: 100%;
}

.mob_lang,
.mobile_social,
.order_btn_mobile,
.nav-icon1 {
  display: none;
}

@media (max-width: 1180px) {
}

@media (max-width: 1040px) {
  .header__tel {
    margin-left: 0%;
    z-index: 10;
  }
}

@media (max-width: 860px) {
  .container {
    max-width: 100%;
  }

  .order3 {
    order: 3;
  }
  h1 {
    font-size: 40px;
    line-height: 120%;
  }

  h2 {
    font-family: "Myriad Pro";
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    text-align: center;
  }

  .row {
    margin: 0 5px;
  }

  .text__inner p {
    padding: 25px 0 0 0;
    font-family: "Arial";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #757575;
  }

  .text__inner {
    width: 100%;
    padding: 40px 0 0 0;
  }

  .text__inner .order_btn {
    display: none;
  }

  .img__inner {
    width: 100%;
  }
  .img__inner img {
    width: 85%;
    margin: 0 auto;
    display: block;
  }

  .main_section .order_btn_mobile {
    display: flex;
    width: 100%;
    margin-bottom: 25px;
    margin-top: -20px;

    justify-content: center;
  }

  .main_section .container {
    background-image: url("../images/mob_main_bg.webp");
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: top;
    background-position-y: 300px;
    
  }

  .order_btn {
    max-width: 100%;
  }

  .characteristics_card {
    max-width: 100%;
    padding: 2px;
  }

  .table tr td:first-child {
    width: 55%;
  }

  .characteristics_inner {
    flex-direction: column;
  }

  .counter span {
    font-size: 40px;
    line-height: 120%;
  }

  .about .text_box,
  .about .img_box {
    width: 100%;
    margin: 0 10px;
  }

  .about .text_box {
    order: 1;
  }
  .about .img_box {
    order: 2;
  }





  .calc_form label {
    font-family: "Arial";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #1c1c1c;
  }
  .calc_form .row {
    flex-direction: column;
    align-items: flex-start;
  }
  .rezult {
    margin: 0 -20px;
  }
    .rezult .row {
    
    align-items: center!important; 
    gap: 8px;
    margin-bottom: 16px;
   }


   .rezult h3{
    font-family: 'Myriad Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    text-align: center;  
    color: #1C1C1C;
   }

   .rezult .text{

  color: #1C1C1C
   }

   .rezult .body_bold{
   font-family: 'Arial';
   font-style: normal;
   font-weight: 700;
   font-size: 24px;
   line-height: 150%;
   /* identical to box height, or 36px */
   
   text-align: center;
   
   /* dark */
   
   color: #1C1C1C;
   }


  .time_input {
    width: 110px;
    top: auto;
    bottom: 0;
  }

  .calc_form input {

    width: 100%;
}

  .counter_inner {
    align-items: center;

    flex-direction: column;
  }
  .counter_box {
    max-width: 100%;
  }
  
  .counter::before {

    width: 96%;

    left: 0%;
  
  }
  .counter::after {
    
    width: 94%;

    left: 8%;

  }
  .counter figure::before {
   
    width: 95%;
    
    left: 4%;
    
  }


  #testimonials-list .item {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .nav-icon1 {
    width: 24px;
    height: 24px;
    position: relative;
    display: block;

    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 10;
  }
  .nav-icon1 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #212121;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    z-index: 10;
  }
  .nav-icon1 span:nth-child(1) {
    top: 0px;
  }
  .nav-icon1 span:nth-child(2) {
    top: 8px;
  }
  .nav-icon1 span:nth-child(3) {
    top: 16px;
  }
  .nav-icon1.open span:nth-child(1) {
    top: 18px;
    transform: rotate(135deg);
    z-index: 10;
  }
  .nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  .nav-icon1.open span:nth-child(3) {
    top: 18px;
    transform: rotate(-135deg);
  }

  .header .dropdown,
  .header .order_btn {
    display: none;
  }
  .header .order_btn_mobile {
    display: block;
  }
  .header__inner {
    justify-content: space-around;
  }
  .logo__img {
    height: 48px;
  }

  .menu__btn {
    display: flex;
  }
  .menu__btn,
  .logo {
    position: relative;
    z-index: 10;
  }
  .menu__list {
    position: absolute;
    z-index: 5;
    color: #1c1c1c;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 90px;
    height: 100vh;
    transform: translateY(-150%);
    transition: transform 0.6s ease;
  }
  .menu__list.menu__list--active {
    transform: translateY(0%);
  }

  .menu__list-link {
    padding: 25px 0;
    font-family: "Arial";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }

  .mob_lang,
  .mobile_social {
    display: flex;
    z-index: 10;
  }

  ul.mob_lang {
    margin: 35px 0;
  }

  .menu__list-item--lang .active {
    color: #0071dc;
  }

  .menu__list-item--lang:first-child {
    margin-right: 35px;
  }

  li.mobile_social_item {
    margin: 0 25px;
}
  li.mobile_social_item img {
    width: 48px;
  }

  .order_btn_mobile {
    display: flex;
    width: 90%;
    /* margin: 0 62px; */
    padding: 0 3;
    /* text-align: center; */
    justify-content: center;
  }

  .support_list {
    display: grid;
    width: 100%;

    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .support_list img {
    margin: 25px;
  }

  .form_inner {
    flex-direction: column;
  }
  .img_box,
  .form_box {
    width: 100%;
  }

  .footer_inner {
    flex-direction: column;

    align-items: center;
  }

  .first_colum,
  .second_colum,
  .third_colum {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  ul.footer_social {
    justify-content: center;
  }

  .footer_contacts li {
    justify-content: center;
  }

  .second_colum,
  .third_colum {
    margin-top: 50px;
  }

  .third_colum form {
    width: 100%;
    flex-direction: column;
  }

  .third_colum input,
  .third_colum button {
    width: 100%;
    margin-top: 25px;
    margin-left: 0;
  }
  .characteristics_card{
    min-width: 100%;
  }

  
}

@media (max-width: 768px) {
}

@media (max-width: 650px) {
}

@media (max-width: 540px) {

    .table{
        margin: 5px;
        font-size: 14px;
        
    }
}
