@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #b4d5e7;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 25px;
}

.hidden {
  display: none !important;
}

.block {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu_mobile_service {
  display: none;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 10s ease;
  transition: 10s ease;
}
header nav {
  width: 100%;
  border-radius: 40px;
  padding: 15px 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  color: #000;
  margin-bottom: 25px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transition: background-color 0.5s ease-in-out, -webkit-box-shadow 0.5s ease;
  transition: background-color 0.5s ease-in-out, -webkit-box-shadow 0.5s ease;
  transition: background-color 0.5s ease-in-out, box-shadow 0.5s ease;
  transition: background-color 0.5s ease-in-out, box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
  /* Збільшили тривалість переходу */
}
header nav .nav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header nav .nav_inner a {
  color: #00222f;
}
header nav .nav_inner .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav .nav_inner .logo img {
  width: 80px;
  height: 80px;
  border-radius: 25px;
  margin-right: 20px;
}
header nav .nav_inner .logo .logo_text span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 35px;
  padding: 0;
  margin: 0;
  color: #00222f;
}
header nav .nav_inner .logo .logo_text p {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 0;
  margin: 0;
  color: #00222f;
}
header nav .nav_inner .logo:hover {
  cursor: pointer;
}
header nav .nav_inner .nav_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
header nav .nav_inner .nav_links .change_lang {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  color: #00222f;
}
header nav .nav_inner .nav_links .change_lang:hover {
  color: #7fcaf3;
}
header nav .nav_inner .nav_links .burger_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
  gap: 7px;
}
header nav .nav_inner .nav_links .burger_menu span {
  height: 4px;
  width: 40px;
  background-color: #00222f;
  border-radius: 3px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
header nav .nav_inner .nav_links .burger_menu span:nth-child(2) {
  width: 45px;
}
header nav .nav_inner .nav_links .burger_menu span:last-child {
  width: 30px;
}
@media (hover: hover) and (pointer: fine) {
  header nav .nav_inner .nav_links .burger_menu:hover {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  header nav .nav_inner .nav_links .burger_menu:hover span:nth-child(1) {
    width: 45px;
  }
  header nav .nav_inner .nav_links .burger_menu:hover span:nth-child(2) {
    width: 45px;
  }
  header nav .nav_inner .nav_links .burger_menu:hover span:nth-child(3) {
    width: 45px;
  }
}
header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(9px, 6px);
          transform: rotate(45deg) translate(9px, 6px);
}
header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(2) {
  opacity: 0;
}
header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(3) {
  width: 40px;
  -webkit-transform: rotate(-45deg) translate(9px, -6px);
          transform: rotate(-45deg) translate(9px, -6px);
}
header .drop_burger_links {
  display: none;
  width: 0;
}
header .drop_burger_links.active_drop_burger_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
  margin-bottom: 25px;
  gap: 10px;
}
header .drop_burger_links.active_drop_burger_links .drop_burger {
  text-decoration: none;
  color: #00222f;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.3);
}
header .drop_burger_links.active_drop_burger_links .drop_burger:hover {
  background-color: #ffffff;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.scrolled {
  margin-top: -25px;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
  position: fixed;
  width: 100%;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 80px;
  margin: 0;
  color: #00222f;
}
h1 span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 100px;
  color: #00222f;
}

a {
  text-decoration: none;
}

a .home_link {
  position: relative;
  padding-left: 15px;
  margin-bottom: 70px;
  margin-top: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 30px;
  opacity: 0.48;
  width: 130px;
  color: #00222f;
}

.home_link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #000;
  /* або будь-який інший колір */
  border-radius: 2px;
}

.home_link:hover {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.slider_news {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slider_news .glide__track {
  width: 100%;
}
.slider_news .glide__slides {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.slider_news .glide__slide {
  width: 100%;
  height: auto;
  border: 3px solid rgba(0, 34, 47, 0.5);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  padding: 10px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 auto;
  gap: 25px;
  margin-bottom: 25px;
}
.slider_news .glide__slide .slider_news_img {
  border-radius: 30px;
  height: 130px;
  width: auto;
}
.slider_news .glide__slide .slider_news_info {
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  padding: 15px 20px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
}
.slider_news .glide__slide .slider_news_info .slider_news_title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: #00222f;
}
.slider_news .glide__slide .slider_news_info .slider_news_description {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: 20px;
  cursor: pointer;
  text-decoration: underline;
}
.slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more a {
  color: #00222f;
}
.slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#main_event_date {
  background-color: #7fcaf3;
  border-radius: 80px;
  padding: 10px 20px 10px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#main_event_time {
  background-color: #7fcaf3;
  border-radius: 80px;
  padding: 10px 20px 10px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#slider_news_date {
  background-color: #7fcaf3;
  border-radius: 80px;
  padding: 10px 20px 10px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#slider_news_time {
  background-color: #B2DFDB;
  border-radius: 80px;
  padding: 10px 20px 10px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#news {
  background-color: #B2DFDB;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 40px 10px 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  border-radius: 50px;
}

#event {
  background-color: #F75E61;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 40px 10px 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  border-radius: 50px;
  width: auto;
}

.event_slider {
  margin-top: 200px;
  z-index: 2;
  position: relative;
  width: 370px;
  height: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.55);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event_slider span {
  display: inline-block;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background-color: #00222f;
  opacity: 0.4;
}
.event_slider .glide__bullet--active {
  width: 120px;
  opacity: 1;
  background-color: #7fcaf3;
}

.record {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 125px;
  margin-bottom: 200px;
  margin-top: 200px;
}
.record .record_dot {
  width: 10%;
  text-align: end;
  margin-left: 50px;
}
.record .record_dot .record_point {
  width: 170px;
  height: 170px;
  background-color: #00222f;
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translate(-50%, 300px);
          transform: translate(-50%, 300px);
}
.record .record_dot .lined_dot_record {
  position: relative;
  width: 3px;
  height: 1200px;
  background-color: #000;
}
.record .record_dot .lined_dot_record::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background-color: #00222f;
  border-radius: 50%;
}
.record .record_dot .lined_dot_record::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background-color: #00222f;
  border-radius: 50%;
}
.record .record_form {
  width: auto;
  height: 850px;
  background-color: rgba(255, 255, 255, 0.55);
  border: 5px solid rgba(0, 34, 47, 0.48);
  border-radius: 80px;
  padding: 90px 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
.record .record_form .record_form_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.record .record_form .record_form_text .record_form_txt {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 35px;
  color: #00222f;
}
.record .record_form .record_form_text .record_form_title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #00222f;
}
.record .record_form .record_form_text .record_form_title span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #00222f;
}
.record .record_form .send_btn {
  background-color: #00222f;
  border: none;
  padding: 25px 140px;
  border-radius: 50px;
  color: #ffffff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 35px;
  margin-left: 175px;
}
.record .record_form .send_btn:hover {
  border: 3px solid #00222f;
  background-color: #ffffff;
  color: #00222f;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.record .record_form .record_form_inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.record .record_form .record_form_inputs .main_input {
  width: 100%;
  height: 100px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(0, 34, 47, 0.48);
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.record .record_form .record_form_inputs .main_input .problem_input {
  background-color: none;
  background: none;
  border: none;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 25px;
}
.record .record_form .record_form_inputs .main_input .problem_input:focus {
  outline: rgb(0, 0, 0);
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 30;
  font-size: 14px;
  -webkit-transition: 1s;
  transition: 1s;
}
.record .record_form .record_form_inputs .main_input img {
  width: 42px;
  height: 43px;
  opacity: 0.48;
}
.record .record_form .record_form_inputs form#contactForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.record .record_form .record_form_inputs .information_inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  margin-bottom: 50px;
}
.record .record_form .record_form_inputs .information_inputs .information_input {
  width: 100%;
  height: 100px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(0, 34, 47, 0.48);
  padding: 15px 30px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 25px;
}
.record .record_form .record_form_inputs .information_inputs .information_input:focus {
  outline: rgb(0, 0, 0);
  height: 100px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  -webkit-transition: 1s;
  transition: 1s;
}
.record .record_form .record_form_inputs .information_inputs .information_input:last-child {
  width: 100%;
  height: 100px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(0, 34, 47, 0.48);
  padding: 15px 30px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 20px;
}
.record .record_form .record_form_inputs .information_inputs .information_input:last-child:focus {
  background-color: none;
  outline: rgb(0, 0, 0);
  height: 100px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  -webkit-transition: 1s;
  transition: 1s;
}
.record .record_form_sesuccess {
  width: 100%;
  height: 950px;
  background-color: rgb(0, 0, 0);
  border: 5px solid rgba(0, 0, 0, 0.48);
  border-radius: 80px;
  padding: 90px 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
.record .record_form_sesuccess .record_form_text {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  gap: 30px;
}
.record .record_form_sesuccess .record_form_text .record_form_txt {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 40px;
}
.record .record_form_sesuccess .success_logo {
  margin-bottom: 100px;
}
.record .record_form_sesuccess .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.record .record_form_sesuccess .contacts .phone_contact {
  background-color: #ffffff;
  border-radius: 60px;
  padding: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  gap: 10px;
}
.record .record_form_sesuccess .contacts .phone_contact:hover {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #000;
}
.record .record_form_sesuccess .contacts .phone_contact:hover svg path {
  stroke: #ffffff;
}
.record .record_form_sesuccess .contacts .social {
  width: auto;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 20px;
}
.record .record_form_sesuccess .contacts .social:hover {
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: 1px solid #ffffff;
  background-color: #000;
}
.record .record_form_sesuccess .contacts .social:hover svg {
  fill: #ffffff;
}
.record .record_form_sesuccess .contacts .social:hover .telega_record {
  fill: #ffffff;
}

footer {
  width: 100%;
  margin-bottom: 100px;
  width: 100%;
  border-radius: 40px;
  padding: 15px 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  color: #00222f;
  background-color: rgba(255, 255, 255, 0.2);
}
footer a {
  text-decoration: none;
}
footer .nav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .nav_inner .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .nav_inner .logo img {
  width: 80px;
  height: 80px;
  border-radius: 25px;
  margin-right: 20px;
}
footer .nav_inner .logo .logo_text span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 35px;
  padding: 0;
  margin: 0;
}
footer .nav_inner .logo .logo_text p {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 0;
  margin: 0;
}
footer .nav_inner .logo svg:nth-child(3) {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
footer .nav_inner .nav_links svg:hover {
  fill: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
footer .nav_inner .nav_links #telegram_svg path:hover {
  fill: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1440px) {
  .container {
    width: 100%;
    max-width: 1220px;
    overflow: hidden;
  }
}
@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }
  .decor,
  .decor1,
  .decor2,
  .decor3,
  .decor4,
  .decor5 {
    display: none;
  }
  body {
    background-color: #b4d5e7;
  }
  .container {
    width: 100%;
    max-width: 1024px;
    margin-top: 25px;
    overflow: hidden;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 70px;
    margin-top: 25px;
    margin-left: 10px;
    margin-bottom: 30px;
  }
  h1 span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 80px;
  }
  h3 {
    margin-left: 10px;
  }
  .slider_news {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .slider_news .glide__track {
    width: 100%;
  }
  .slider_news .glide__slides {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .slider_news .glide__slide {
    width: 100%;
    height: auto;
    border: 3px solid rgba(0, 34, 47, 0.5);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 10px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
    gap: 25px;
    margin-bottom: 25px;
  }
  .slider_news .glide__slide .slider_news_img {
    border-radius: 30px;
    height: 130px;
    width: auto;
  }
  .slider_news .glide__slide .slider_news_info {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    padding: 15px 20px 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .slider_news .glide__slide .slider_news_info .slider_news_title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #00222f;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 20px;
    cursor: pointer;
    text-decoration: underline;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more a {
    color: #00222f;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .record {
    margin-left: auto;
  }
  .record .record_dot {
    display: none;
  }
  .record .record_form {
    margin: 0 auto;
    width: calc(100% - 20px);
  }
  .record .record_form_sesuccess {
    margin: 0 auto;
    width: calc(100% - 20px);
  }
}
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
  body {
    background-color: #b4d5e7;
  }
  .container {
    width: 100%;
    max-width: 768px;
    margin-top: 25px;
    overflow: hidden;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer {
    display: none;
  }
  header {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    z-index: 1000;
    position: relative;
  }
  header nav {
    width: 100%;
    border-radius: 20px;
    padding: 5px 10px;
  }
  header nav .nav_inner .logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 0;
  }
  header nav .nav_inner .logo .logo_text {
    display: none;
  }
  header nav .nav_inner .nav_links {
    gap: 20px;
  }
  header nav .nav_inner .nav_links .change_lang {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
  }
  header nav .nav_inner .nav_links .burger_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 20px;
    width: 25px;
    cursor: pointer;
  }
  header nav .nav_inner .nav_links .burger_menu span {
    display: block;
    height: 2px;
    background: #00222f;
    border-radius: 20px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  header nav .nav_inner .nav_links .burger_menu span:nth-child(1) {
    width: 25px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  header nav .nav_inner .nav_links .burger_menu span:nth-child(2) {
    width: 30px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  header nav .nav_inner .nav_links .burger_menu span:nth-child(3) {
    width: 20px;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
    width: 25px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(2) {
    opacity: 0;
  }
  header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
            transform: rotate(-45deg) translate(8px, -8px);
    width: 25px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  header .drop_burger_links.active_drop_burger_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 250px;
    height: 300px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #b4d5e7;
    padding: 20px;
    border-radius: 20px;
    height: auto;
    -webkit-box-shadow: 5px 16px 25px rgba(0, 0, 0, 0.65);
            box-shadow: 5px 16px 25px rgba(0, 0, 0, 0.65);
    z-index: 1000;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .drop_burger_links.active_drop_burger_links .drop_burger {
    width: auto;
    height: auto;
    text-align: center;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 15px;
    padding: 10px 30px 10px 30px;
  }
  header .drop_burger_links.active_drop_burger_links #about_us_scroll {
    display: none;
  }
  header .drop_burger_links.active_drop_burger_links #contact_burger_btn {
    display: none;
  }
  header .drop_burger_links.active_drop_burger_links #contact_burger_btn_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 60px;
    margin-top: 25px;
    margin-left: 10px;
    margin-bottom: 30px;
  }
  h1 span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 75px;
  }
  h3 {
    display: none;
  }
  .main_event {
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 15px;
    width: calc(100% - 10px);
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    gap: 10px;
    margin-bottom: 15px;
  }
  .main_event .main_event_img {
    border-radius: 15px;
    height: 300px;
    width: 100%;
  }
  .main_event .main_event_info {
    border-radius: 20px;
    padding: 10px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .main_event .main_event_info .main_event_title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
  }
  .main_event .main_event_info .main_event_description {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main_event .main_event_info .main_event_description .main_event_more {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 18px;
    cursor: pointer;
    text-decoration: underline;
    color: #000;
  }
  .main_event .main_event_info .main_event_description .main_event_tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .slider_news {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .slider_news .glide__track {
    width: 100%;
  }
  .slider_news .glide__slides {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .slider_news .glide__slide {
    width: 100%;
    height: auto;
    border: 3px solid rgba(0, 34, 47, 0.5);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 10px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
    gap: 25px;
    margin-bottom: 25px;
  }
  .slider_news .glide__slide .slider_news_img {
    border-radius: 30px;
    height: 130px;
    width: auto;
  }
  .slider_news .glide__slide .slider_news_info {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    padding: 15px 20px 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .slider_news .glide__slide .slider_news_info .slider_news_title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #00222f;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 20px;
    cursor: pointer;
    text-decoration: underline;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more a {
    color: #00222f;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
  }
  #main_event_date {
    background-color: #7fcaf3;
    border-radius: 80px;
    padding: 5px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #main_event_time {
    background-color: #7fcaf3;
    border-radius: 80px;
    padding: 5px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #slider_news_date {
    background-color: #7fcaf3;
    border-radius: 80px;
    padding: 5px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #slider_news_time {
    background-color: #B2DFDB;
    border-radius: 80px;
    padding: 5px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #news {
    background-color: #B2DFDB;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 50px;
  }
  #event {
    background-color: #F75E61;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 50px;
  }
  .record {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .record .record_dot {
    display: none;
  }
  .record .record_form {
    width: calc(100% - 60px);
    height: 400px;
    background-color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 34, 47, 0.48);
    border-radius: 20px;
    padding: 25px 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .record .record_form #contactForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 450px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .record .record_form .record_form_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  .record .record_form .record_form_text .record_form_txt {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #00222f;
  }
  .record .record_form .record_form_text .record_form_title {
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #00222f;
  }
  .record .record_form .record_form_text .record_form_title span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #00222f;
  }
  .record .record_form .send_btn {
    background-color: #00222f;
    border: none;
    width: 300px;
    padding: 15px 55px;
    border-radius: 50px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-left: 0;
  }
  .record .record_form .send_btn:hover {
    border: 1px solid #00222f;
    background-color: #ffffff;
    color: #00222f;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .record .record_form .record_form_inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .record .record_form .record_form_inputs .main_input {
    width: 100%;
    height: 50px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 34, 47, 0.48);
    padding: 7px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .record .record_form .record_form_inputs .main_input .problem_input {
    background-color: none;
    background: none;
    border: none;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
  }
  .record .record_form .record_form_inputs .main_input .problem_input:focus {
    background: none;
    outline: rgb(0, 0, 0);
    height: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 18px;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .record .record_form .record_form_inputs .main_input img {
    width: 25px;
    height: 25px;
    opacity: 0.48;
  }
  .record .record_form .record_form_inputs .information_inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input {
    width: 210px;
    height: 50px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 34, 47, 0.48);
    padding: 10px 30px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input:focus {
    outline: rgb(0, 0, 0);
    height: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 18px;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input:last-child {
    width: 100%;
    height: 50px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 34, 47, 0.48);
    padding: 10px 30px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input:last-child:focus {
    background-color: none;
    outline: rgb(0, 0, 0);
    height: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 18px;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .record .record_form_sesuccess {
    width: calc(100% - 60px);
    height: 450px;
    background-color: rgb(0, 0, 0);
    border: 5px solid rgba(0, 0, 0, 0.48);
    border-radius: 20px;
    padding: 25px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-align: center;
  }
  .record .record_form_sesuccess .record_form_text {
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    gap: 10px;
  }
  .record .record_form_sesuccess .record_form_text .record_form_txt {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 25px;
  }
  .record .record_form_sesuccess .success_logo {
    margin-bottom: 20px;
    width: 200px;
    height: 200px;
  }
  .record .record_form_sesuccess .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .record .record_form_sesuccess .contacts .phone_contact {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    gap: 10px;
    width: auto;
  }
  .record .record_form_sesuccess .contacts .phone_contact svg {
    width: 30px;
    height: 30px;
  }
  .record .record_form_sesuccess .contacts .phone_contact p {
    display: none;
  }
  .record .record_form_sesuccess .contacts .phone_contact:hover {
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #000;
  }
  .record .record_form_sesuccess .contacts .phone_contact:hover svg path {
    stroke: #ffffff;
  }
  .record .record_form_sesuccess .contacts .social {
    width: auto;
    height: auto;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .record .record_form_sesuccess .contacts .social svg {
    width: 30px;
    height: 30px;
  }
  .record .record_form_sesuccess .contacts .social:hover {
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: 1px solid #ffffff;
    background-color: #000;
  }
  .record .record_form_sesuccess .contacts .social:hover svg {
    fill: #ffffff;
  }
  .record .record_form_sesuccess .contacts .social:hover .telega_record {
    fill: #ffffff;
  }
  .menu_mobile_service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu_mobile_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 100px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    background-color: #b4d5e7;
    padding-top: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-box-shadow: inset 1px 0px 4px rgba(0, 0, 0, 0.1), 0px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: inset 1px 0px 4px rgba(0, 0, 0, 0.1), 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .menu_mobile_nav .menu_mobile_wraper_nav {
    width: 100%;
    overflow: hidden;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav a {
    color: #00222f;
    text-decoration: none;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav #home {
    width: 75px;
    height: 50px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #00222f;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav .menu_mobile_item {
    width: 177px;
    height: auto;
    border: 2px solid #7fcaf3;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 5px 20px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav #back_consul {
    width: 75px;
    height: 50px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #00222f;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav #back_consul svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .active_btn_consule_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 340px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: calc(460px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .active_btn_consule_mobile .consul_inner_mobile {
    width: 360px;
    margin: 0 auto;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_title_mobile {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    width: 200px;
    padding: 5px 30px 5px 30px;
    background-color: #00222f;
    border-radius: 50px;
    color: #ffffff;
    text-align: center;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info {
    background-color: #ffffff;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 20px;
    padding: 13px 19px 13px 19px;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_text_mobile {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    text-align: center;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_connect_info_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_connect_info_mobile .go_to_form_btn_mobile {
    width: 260px;
    background-color: #00222f;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_connect_info_mobile .consul_inner_img_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    border: 1px solid #00222f;
    padding: 10px;
    background-color: #ffffff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
  }
  .active_btn_contact_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: calc(480px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile .contact_inner_mobile {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile .contact_inner_mobile .contact_location_img_mobile {
    border-radius: 10px;
    height: 250px;
    width: 340px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile .contact_inner_title_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    border-radius: 50px;
    padding: 5px 30px;
    color: #ffffff;
    background-color: #00222f;
  }
  .active_btn_contact_mobile .contacts_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .active_btn_contact_mobile .contacts_mobile .phone_contact_mobile {
    background-color: #00222f;
    border-radius: 20px;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    height: auto;
    gap: 10px;
    color: #ffffff;
  }
  .active_btn_contact_mobile .contacts_mobile .phone_contact_mobile a {
    color: #ffffff;
    text-decoration: none;
  }
  .active_btn_contact_mobile .contacts_mobile .social_mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #00222f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_contact_mobile .contacts_mobile .social_mobile #location_mobile_contact {
    width: 25px;
    height: 25px;
  }
  .active_btn_study_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: calc(500px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_study_mobile .study_action_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    width: 360px;
    margin: 0 auto;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_title_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    border-radius: 50px;
    padding: 5px 30px;
    color: #ffffff;
    background-color: #00222f;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_text_mobile {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    font-size: 18px;
    padding: 10px;
    background-color: #ffffff;
    text-align: center;
    margin: 0;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    align-items: center;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile .go_to_form_btn {
    width: 260px;
    background-color: #00222f;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile .study_inner_img_mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #00222f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile .study_inner_img_mobile svg {
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .active_btn_key_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: calc(530px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_key_mobile .key_more_slider_mobile {
    width: 100%;
    max-width: 375px;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile {
    width: 100%;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile {
    width: 100%;
    height: 390px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding: 5px;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_title_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    border-radius: 50px;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #00222f;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 5px;
    height: 390px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_text_mobile {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    font-size: 20px;
    padding: 15px 20px;
    background-color: #ffffff;
    border-radius: 20px;
    text-align: center;
    margin: 0;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile .go_to_form_btn {
    width: 260px;
    background-color: #00222f;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile .key_inner_img_mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #00222f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile .key_inner_img_mobile svg {
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_slider_mobile {
    width: 320px;
    height: 30px;
    position: relative;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_slider_mobile span {
    display: inline-block;
    width: 60px;
    height: 15px;
    border-radius: 10px;
    background-color: #00222f;
    opacity: 0.4;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_slider_mobile .glide__bullet--active {
    background-color: #7fcaf3;
    opacity: 1;
  }
}
@media (max-width: 544px) {
  .slider_news .glide__slide .slider_news_img {
    height: 100px;
    width: 150px;
  }
}
@media (max-width: 425px) {
  html,
  body {
    overflow-x: hidden;
  }
  body {
    background-color: #b4d5e7;
  }
  .container {
    width: 100%;
    max-width: 425px;
    margin-top: 25px;
    overflow: hidden;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    z-index: 1000;
    position: relative;
  }
  header nav {
    width: 100%;
    border-radius: 20px;
    padding: 5px 10px;
  }
  header nav .nav_inner .logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 0;
  }
  header nav .nav_inner .logo .logo_text {
    display: none;
  }
  header nav .nav_inner .nav_links {
    gap: 20px;
  }
  header nav .nav_inner .nav_links .change_lang {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 10px;
  }
  header nav .nav_inner .nav_links .burger_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 20px;
    width: 25px;
    cursor: pointer;
  }
  header nav .nav_inner .nav_links .burger_menu span {
    display: block;
    height: 2px;
    background: #00222f;
    border-radius: 20px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  header nav .nav_inner .nav_links .burger_menu span:nth-child(1) {
    width: 20px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  header nav .nav_inner .nav_links .burger_menu span:nth-child(2) {
    width: 25px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  header nav .nav_inner .nav_links .burger_menu span:nth-child(3) {
    width: 15px;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
    width: 25px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(2) {
    opacity: 0;
  }
  header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
            transform: rotate(-45deg) translate(8px, -8px);
    width: 25px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  header .drop_burger_links.active_drop_burger_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 250px;
    height: 300px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: absolute;
    top: 70px;
    background-color: #b4d5e7;
    padding: 20px;
    border-radius: 20px;
    height: auto;
    -webkit-box-shadow: 5px 16px 25px rgba(0, 0, 0, 0.65);
            box-shadow: 5px 16px 25px rgba(0, 0, 0, 0.65);
    z-index: 1000;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    right: 10px;
  }
  header .drop_burger_links.active_drop_burger_links .drop_burger {
    width: auto;
    height: auto;
    text-align: center;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 15px;
    padding: 10px 30px 10px 30px;
  }
  header .drop_burger_links.active_drop_burger_links #about_us_scroll {
    display: none;
  }
  header .drop_burger_links.active_drop_burger_links #contact_burger_btn {
    display: none;
  }
  header .drop_burger_links.active_drop_burger_links #contact_burger_btn_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  h1 {
    margin-left: 10px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 15px;
  }
  h1 span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 35px;
  }
  h3 {
    display: none;
  }
  .slider_news {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .slider_news .glide__track {
    width: 100%;
  }
  .slider_news .glide__slides {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .slider_news .glide__slide {
    width: 100%;
    height: auto;
    border: 1px solid rgba(0, 34, 47, 0.5);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 10px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
    gap: 25px;
    margin-bottom: 15px;
  }
  .slider_news .glide__slide .slider_news_img {
    border-radius: 10px;
    height: 80px;
    width: 100px;
  }
  .slider_news .glide__slide .slider_news_info {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    padding: 5px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .slider_news .glide__slide .slider_news_info .slider_news_title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #00222f;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 15px;
    cursor: pointer;
    text-decoration: underline;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more a {
    color: #00222f;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
  }
  #main_event_date {
    background-color: #7fcaf3;
    border-radius: 80px;
    padding: 5px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #main_event_time {
    background-color: #7fcaf3;
    border-radius: 80px;
    padding: 5px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #slider_news_date {
    background-color: #7fcaf3;
    border-radius: 80px;
    padding: 5px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #slider_news_time {
    background-color: #B2DFDB;
    border-radius: 80px;
    padding: 5px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #news {
    background-color: #B2DFDB;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 50px;
  }
  #event {
    background-color: #F75E61;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 50px;
  }
  .record {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .record .record_dot {
    width: 100%;
    text-align: end;
    margin-left: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .record .record_dot .record_point {
    width: 70px;
    height: 70px;
    -webkit-transform: translate(-50%, 300px);
            transform: translate(-50%, 300px);
    background-color: #000;
    border-radius: 50%;
    -webkit-box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
            box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .record .record_dot .lined_dot_record {
    position: relative;
    width: 340px;
    height: 2px;
    background-color: #000;
    -webkit-box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
            box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
  }
  .record .record_dot .lined_dot_record::after {
    content: "";
    position: absolute;
    bottom: -300%;
    left: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background-color: #000;
    border-radius: 50%;
  }
  .record .record_dot .lined_dot_record::before {
    display: none;
  }
  .record .record_dot .lined_dot_record img {
    width: 30px;
    height: 30px;
  }
  .record .record_form {
    margin-right: 10px;
    margin-left: 10px;
    width: auto;
    height: 370px;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    padding: 25px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .record .record_form #contactForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 290px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .record .record_form .record_form_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  .record .record_form .record_form_text .record_form_txt {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
  }
  .record .record_form .record_form_text .record_form_title {
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
  }
  .record .record_form .record_form_text .record_form_title span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
  }
  .record .record_form .send_btn {
    border: none;
    width: 190px;
    padding: 10px 50px;
    border-radius: 50px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin-left: 0;
  }
  .record .record_form .send_btn:hover {
    background-color: #ffffff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .record .record_form .record_form_inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .record .record_form .record_form_inputs .main_input {
    width: 300px;
    height: 40px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 7px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .record .record_form .record_form_inputs .main_input .problem_input {
    background-color: none;
    background: none;
    border: none;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 11px;
  }
  .record .record_form .record_form_inputs .main_input .problem_input:focus {
    background: none;
    outline: rgb(0, 0, 0);
    height: 35px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .record .record_form .record_form_inputs .main_input img {
    width: 25px;
    height: 25px;
    opacity: 0.48;
  }
  .record .record_form .record_form_inputs .information_inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input {
    width: 140px;
    height: 40px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 10px 30px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input:focus {
    outline: rgb(0, 0, 0);
    height: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input:last-child {
    width: 300px;
    height: 40px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 10px 30px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input:last-child:focus {
    background-color: none;
    outline: rgb(0, 0, 0);
    height: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 14px;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .record .record_form_sesuccess {
    width: 355px;
    height: auto;
    background-color: rgb(0, 0, 0);
    border: 5px solid rgba(0, 0, 0, 0.48);
    border-radius: 20px;
    padding: 25px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-align: center;
  }
  .record .record_form_sesuccess .record_form_text {
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    gap: 10px;
  }
  .record .record_form_sesuccess .record_form_text .record_form_txt {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
  }
  .record .record_form_sesuccess .success_logo {
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
  }
  .record .record_form_sesuccess .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .record .record_form_sesuccess .contacts .phone_contact {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    gap: 10px;
    width: auto;
  }
  .record .record_form_sesuccess .contacts .phone_contact svg {
    width: 25px;
    height: 25px;
  }
  .record .record_form_sesuccess .contacts .phone_contact p {
    display: none;
  }
  .record .record_form_sesuccess .contacts .phone_contact:hover {
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #000;
  }
  .record .record_form_sesuccess .contacts .phone_contact:hover svg path {
    stroke: #ffffff;
  }
  .record .record_form_sesuccess .contacts .social {
    width: auto;
    height: auto;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .record .record_form_sesuccess .contacts .social svg {
    width: 25px;
    height: 25px;
  }
  .record .record_form_sesuccess .contacts .social:hover {
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: 1px solid #ffffff;
    background-color: #000;
  }
  .record .record_form_sesuccess .contacts .social:hover svg {
    fill: #ffffff;
  }
  .record .record_form_sesuccess .contacts .social:hover .telega_record {
    fill: #ffffff;
  }
  footer {
    display: none;
  }
  .menu_mobile_service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .menu_mobile_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 100px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    padding-top: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-box-shadow: inset 1px 0px 4px rgba(0, 0, 0, 0.1), 0px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: inset 1px 0px 4px rgba(0, 0, 0, 0.1), 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .menu_mobile_nav .menu_mobile_wraper_nav {
    width: 100%;
    overflow: hidden;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav a {
    text-decoration: none;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav #home {
    width: 75px;
    height: 50px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav .menu_mobile_item {
    width: 177px;
    height: auto;
    border: 2px solid #7fcaf3;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 5px 20px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav #back_consul {
    width: 75px;
    height: 50px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav #back_consul svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .active_btn_consule_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 340px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: calc(460px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .active_btn_consule_mobile .consul_inner_mobile {
    width: 360px;
    margin: 0 auto;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_title_mobile {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    width: 200px;
    padding: 5px 30px 5px 30px;
    background-color: #00222f;
    border-radius: 50px;
    color: #ffffff;
    text-align: center;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info {
    background-color: #ffffff;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 20px;
    padding: 13px 19px 13px 19px;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_text_mobile {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    text-align: center;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_connect_info_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_connect_info_mobile .go_to_form_btn_mobile {
    width: 260px;
    background-color: #00222f;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_connect_info_mobile .consul_inner_img_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    border: 1px solid #00222f;
    padding: 10px;
    background-color: #ffffff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
  }
  .active_btn_contact_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: calc(480px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile .contact_inner_mobile {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile .contact_inner_mobile .contact_location_img_mobile {
    border-radius: 10px;
    height: 250px;
    width: 340px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile .contact_inner_title_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    border-radius: 50px;
    padding: 5px 30px;
    color: #ffffff;
    background-color: #00222f;
  }
  .active_btn_contact_mobile .contacts_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .active_btn_contact_mobile .contacts_mobile .phone_contact_mobile {
    background-color: #00222f;
    border-radius: 20px;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    height: auto;
    gap: 10px;
    color: #ffffff;
  }
  .active_btn_contact_mobile .contacts_mobile .phone_contact_mobile a {
    color: #ffffff;
    text-decoration: none;
  }
  .active_btn_contact_mobile .contacts_mobile .social_mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #00222f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_contact_mobile .contacts_mobile .social_mobile #location_mobile_contact {
    width: 25px;
    height: 25px;
  }
  .active_btn_study_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: calc(500px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_study_mobile .study_action_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    width: 360px;
    margin: 0 auto;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_title_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    border-radius: 50px;
    padding: 5px 30px;
    color: #ffffff;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_text_mobile {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    font-size: 18px;
    padding: 10px;
    background-color: #ffffff;
    text-align: center;
    margin: 0;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    align-items: center;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile .go_to_form_btn {
    width: 260px;
    background-color: #00222f;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile .study_inner_img_mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #00222f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile .study_inner_img_mobile svg {
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .active_btn_key_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: calc(530px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_key_mobile .key_more_slider_mobile {
    width: 100%;
    max-width: 375px;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile {
    width: 100%;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile {
    width: 100%;
    height: 390px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding: 5px;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_title_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    border-radius: 50px;
    padding: 10px 15px;
    color: #ffffff;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 5px;
    height: 390px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_text_mobile {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    font-size: 20px;
    padding: 15px 20px;
    background-color: #ffffff;
    border-radius: 20px;
    text-align: center;
    margin: 0;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile .go_to_form_btn {
    width: 260px;
    background-color: #00222f;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile .key_inner_img_mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #00222f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile .key_inner_img_mobile svg {
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_slider_mobile {
    width: 320px;
    height: 30px;
    position: relative;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_slider_mobile span {
    display: inline-block;
    width: 60px;
    height: 15px;
    border-radius: 10px;
    opacity: 0.4;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_slider_mobile .glide__bullet--active {
    opacity: 1;
  }
}
@media (max-width: 375px) {
  html, body {
    overflow-x: hidden;
  }
  body {
    background-color: #b4d5e7;
  }
  .container {
    width: 100%;
    max-width: 375px;
    margin-top: 25px;
    overflow: hidden;
    height: auto;
  }
  header {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    z-index: 1000;
    position: relative;
  }
  header nav {
    width: 100%;
    border-radius: 20px;
    padding: 5px 10px;
  }
  header nav .nav_inner .logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 0;
  }
  header nav .nav_inner .logo .logo_text {
    display: none;
  }
  header nav .nav_inner .nav_links {
    gap: 20px;
  }
  header nav .nav_inner .nav_links .change_lang {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 10px;
  }
  header nav .nav_inner .nav_links .burger_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 20px;
    width: 25px;
    cursor: pointer;
  }
  header nav .nav_inner .nav_links .burger_menu span {
    display: block;
    height: 2px;
    background: #00222f;
    border-radius: 20px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  header nav .nav_inner .nav_links .burger_menu span:nth-child(1) {
    width: 20px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  header nav .nav_inner .nav_links .burger_menu span:nth-child(2) {
    width: 25px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  header nav .nav_inner .nav_links .burger_menu span:nth-child(3) {
    width: 15px;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
    width: 25px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(2) {
    opacity: 0;
  }
  header nav .nav_inner .nav_links .burger_menu.active_burger span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
            transform: rotate(-45deg) translate(8px, -8px);
    width: 25px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  header .drop_burger_links.active_drop_burger_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 250px;
    height: 300px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: absolute;
    top: 70px;
    background-color: #b4d5e7;
    padding: 20px;
    border-radius: 20px;
    height: auto;
    -webkit-box-shadow: 5px 16px 25px rgba(0, 0, 0, 0.65);
            box-shadow: 5px 16px 25px rgba(0, 0, 0, 0.65);
    z-index: 1000;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .drop_burger_links.active_drop_burger_links .drop_burger {
    width: auto;
    height: auto;
    text-align: center;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 15px;
    padding: 10px 30px 10px 30px;
  }
  header .drop_burger_links.active_drop_burger_links #about_us_scroll {
    display: none;
  }
  header .drop_burger_links.active_drop_burger_links #contact_burger_btn {
    display: none;
  }
  header .drop_burger_links.active_drop_burger_links #contact_burger_btn_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  h1 {
    margin-left: 10px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
  }
  h1 span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 35px;
  }
  h3 {
    display: none;
  }
  .slider_news {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .slider_news .glide__track {
    width: 100%;
  }
  .slider_news .glide__slides {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .slider_news .glide__slide {
    width: 100%;
    height: auto;
    border: 1px solid rgba(0, 34, 47, 0.5);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 10px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
    gap: 25px;
    margin-bottom: 15px;
  }
  .slider_news .glide__slide .slider_news_img {
    border-radius: 10px;
    height: 80px;
    width: 100px;
  }
  .slider_news .glide__slide .slider_news_info {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    padding: 5px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .slider_news .glide__slide .slider_news_info .slider_news_title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #00222f;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_more a {
    color: #00222f;
  }
  .slider_news .glide__slide .slider_news_info .slider_news_description .slider_news_tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
  }
  .event_slider {
    z-index: 2;
    position: relative;
    width: 250px;
    height: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.55);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .event_slider span {
    display: inline-block;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background-color: #000;
    opacity: 0.4;
  }
  .event_slider .glide__bullet--active {
    width: 100px;
    opacity: 1;
  }
  #main_event_date {
    background-color: #7fcaf3;
    border-radius: 80px;
    padding: 5px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #main_event_time {
    background-color: #7fcaf3;
    border-radius: 80px;
    padding: 5px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #slider_news_date {
    background-color: #7fcaf3;
    border-radius: 80px;
    padding: 5px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #slider_news_time {
    background-color: #B2DFDB;
    border-radius: 80px;
    padding: 5px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #news {
    background-color: #B2DFDB;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 12px;
    border-radius: 50px;
  }
  #event {
    background-color: #F75E61;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 12px;
    border-radius: 50px;
  }
  .record {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .record .record_dot {
    width: 100%;
    text-align: end;
    margin-left: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .record .record_dot .record_point {
    width: 70px;
    height: 70px;
    -webkit-transform: translate(-50%, 300px);
            transform: translate(-50%, 300px);
    background-color: #000;
    border-radius: 50%;
    -webkit-box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
            box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .record .record_dot .lined_dot_record {
    position: relative;
    width: 340px;
    height: 2px;
    background-color: #000;
    -webkit-box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
            box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.3);
  }
  .record .record_dot .lined_dot_record::after {
    content: "";
    position: absolute;
    bottom: -300%;
    left: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background-color: #000;
    border-radius: 50%;
  }
  .record .record_dot .lined_dot_record::before {
    display: none;
  }
  .record .record_dot .lined_dot_record img {
    width: 30px;
    height: 30px;
  }
  .record .record_form {
    margin-right: 10px;
    margin-left: 10px;
    width: auto;
    height: 370px;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    padding: 25px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .record .record_form #contactForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 290px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .record .record_form .record_form_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  .record .record_form .record_form_text .record_form_txt {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
  }
  .record .record_form .record_form_text .record_form_title {
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
  }
  .record .record_form .record_form_text .record_form_title span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
  }
  .record .record_form .send_btn {
    border: none;
    width: 190px;
    padding: 10px 50px;
    border-radius: 50px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin-left: 0;
  }
  .record .record_form .send_btn:hover {
    background-color: #ffffff;
    color: #000;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .record .record_form .record_form_inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .record .record_form .record_form_inputs .main_input {
    width: 300px;
    height: 40px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 7px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .record .record_form .record_form_inputs .main_input .problem_input {
    background-color: none;
    background: none;
    border: none;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 11px;
  }
  .record .record_form .record_form_inputs .main_input .problem_input:focus {
    background: none;
    outline: rgb(0, 0, 0);
    height: 35px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .record .record_form .record_form_inputs .main_input img {
    width: 25px;
    height: 25px;
    opacity: 0.48;
  }
  .record .record_form .record_form_inputs .information_inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input {
    width: 140px;
    height: 40px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 10px 30px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input:focus {
    outline: rgb(0, 0, 0);
    height: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input:last-child {
    width: 300px;
    height: 40px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 10px 30px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
  }
  .record .record_form .record_form_inputs .information_inputs .information_input:last-child:focus {
    background-color: none;
    outline: rgb(0, 0, 0);
    height: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 14px;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .record .record_form_sesuccess {
    width: 355px;
    height: auto;
    background-color: rgb(0, 0, 0);
    border: 5px solid rgba(0, 0, 0, 0.48);
    border-radius: 20px;
    padding: 25px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-align: center;
  }
  .record .record_form_sesuccess .record_form_text {
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    gap: 10px;
  }
  .record .record_form_sesuccess .record_form_text .record_form_txt {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
  }
  .record .record_form_sesuccess .success_logo {
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
  }
  .record .record_form_sesuccess .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .record .record_form_sesuccess .contacts .phone_contact {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    gap: 10px;
    width: auto;
  }
  .record .record_form_sesuccess .contacts .phone_contact svg {
    width: 25px;
    height: 25px;
  }
  .record .record_form_sesuccess .contacts .phone_contact p {
    display: none;
  }
  .record .record_form_sesuccess .contacts .phone_contact:hover {
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #000;
  }
  .record .record_form_sesuccess .contacts .phone_contact:hover svg path {
    stroke: #ffffff;
  }
  .record .record_form_sesuccess .contacts .social {
    width: auto;
    height: auto;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .record .record_form_sesuccess .contacts .social svg {
    width: 25px;
    height: 25px;
  }
  .record .record_form_sesuccess .contacts .social:hover {
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: 1px solid #ffffff;
    background-color: #000;
  }
  .record .record_form_sesuccess .contacts .social:hover svg {
    fill: #ffffff;
  }
  .record .record_form_sesuccess .contacts .social:hover .telega_record {
    fill: #ffffff;
  }
  footer {
    display: none;
  }
  .menu_mobile_service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu_mobile_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 100px;
    max-width: 375px;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    padding-top: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-box-shadow: inset 1px 0px 4px rgba(0, 0, 0, 0.1), 0px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: inset 1px 0px 4px rgba(0, 0, 0, 0.1), 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .menu_mobile_nav .menu_mobile_wraper_nav {
    width: 100%;
    overflow: hidden;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav a {
    text-decoration: none;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav #home {
    width: 75px;
    height: 50px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav .menu_mobile_item {
    width: 177px;
    height: auto;
    border: 2px solid #7fcaf3;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 5px 20px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav #back_consul {
    width: 75px;
    height: 50px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
  }
  .menu_mobile_nav .menu_mobile_wraper_nav .menu_mobile_items_nav #back_consul svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .active_btn_consule_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 340px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: calc(460px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .active_btn_consule_mobile .consul_inner_mobile {
    width: 360px;
    margin: 0 auto;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_title_mobile {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    width: 200px;
    padding: 5px 30px 5px 30px;
    background-color: #00222f;
    border-radius: 50px;
    color: #ffffff;
    text-align: center;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info {
    background-color: #ffffff;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 20px;
    padding: 13px 19px 13px 19px;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_text_mobile {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    text-align: center;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_connect_info_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_connect_info_mobile .go_to_form_btn_mobile {
    width: 260px;
    background-color: #00222f;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
  .active_btn_consule_mobile .consul_inner_mobile .consul_inner_mobile .consul_inner_info .consul_inner_connect_info_mobile .consul_inner_img_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    border: 1px solid #00222f;
    padding: 10px;
    background-color: #ffffff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
  }
  .active_btn_contact_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: calc(480px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile .contact_inner_mobile {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile .contact_inner_mobile .contact_location_img_mobile {
    border-radius: 10px;
    height: 250px;
    width: 340px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .active_btn_contact_mobile .active_btn_contact_inner_mobile .contact_inner_title_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    border-radius: 50px;
    padding: 5px 30px;
    color: #ffffff;
    background-color: #00222f;
  }
  .active_btn_contact_mobile .contacts_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .active_btn_contact_mobile .contacts_mobile .phone_contact_mobile {
    background-color: #00222f;
    border-radius: 20px;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    height: auto;
    gap: 10px;
    color: #ffffff;
  }
  .active_btn_contact_mobile .contacts_mobile .phone_contact_mobile a {
    color: #ffffff;
    text-decoration: none;
  }
  .active_btn_contact_mobile .contacts_mobile .social_mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #00222f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_contact_mobile .contacts_mobile .social_mobile #location_mobile_contact {
    width: 25px;
    height: 25px;
  }
  .active_btn_study_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: calc(500px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_study_mobile .study_action_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    width: 360px;
    margin: 0 auto;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_title_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    border-radius: 50px;
    padding: 5px 30px;
    color: #ffffff;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_text_mobile {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    font-size: 18px;
    padding: 10px;
    background-color: #ffffff;
    text-align: center;
    margin: 0;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    align-items: center;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile .go_to_form_btn {
    width: 260px;
    background-color: #00222f;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile .study_inner_img_mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #00222f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_study_mobile .study_action_inner_mobile .study_inner_mobile .study_inner_connect_info_mobile .study_inner_img_mobile svg {
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .active_btn_key_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: calc(530px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_key_mobile .key_more_slider_mobile {
    width: 100%;
    max-width: 375px;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile {
    width: 100%;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile {
    width: 100%;
    height: 390px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding: 5px;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_title_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    border-radius: 50px;
    padding: 10px 15px;
    color: #ffffff;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 5px;
    height: 390px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_text_mobile {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    font-size: 20px;
    padding: 15px 20px;
    background-color: #ffffff;
    border-radius: 20px;
    text-align: center;
    margin: 0;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile .go_to_form_btn {
    width: 260px;
    background-color: #00222f;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile .key_inner_img_mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #00222f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_more_slides_mobile .key_more_slide_mobile .key_action_inner_mobile .key_inner_mobile .key_inner_connect_info_mobile .key_inner_img_mobile svg {
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_slider_mobile {
    width: 320px;
    height: 30px;
    position: relative;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.55);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_slider_mobile span {
    display: inline-block;
    width: 60px;
    height: 15px;
    border-radius: 10px;
    opacity: 0.4;
  }
  .active_btn_key_mobile .key_more_slider_mobile .key_more_inner_mobile .key_slider_mobile .glide__bullet--active {
    opacity: 1;
  }
}