/* template@basic.less */
@font-face {
  font-family: 'Montserrat';
  font-display: auto;
  src: url(/storage/fonts/Montserrat-Bold.ttf);
  font-weight: 800;
}
@font-face {
  font-family: 'Montserrat';
  font-display: auto;
  src: url(/storage/fonts/Montserrat-Medium.ttf);
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  font-display: auto;
  src: url(/storage/fonts/Montserrat-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: 'Pragmatica';
  font-display: auto;
  src: url(/storage/fonts/Pragmatica.otf);
  font-weight: 600;
}
@font-face {
  font-family: 'Rubik One';
  font-display: auto;
  src: url(/storage/fonts/RubikOne-Regular.ttf);
  font-weight: 600;
}
/*BASIC__STYLE*/
/*МАСКА КАРТИНКИ*/
/*МАСКА КАРТИНКИ*/
/*БОКС ДЛЯ ФОТО*/
/*БОКС ДЛЯ ФОТО*/
/*ЦВЕТОВОЙ ГРАДИЕНТ*/
/*ЦВЕТОВОЙ ГРАДИЕНТ*/
/*ЗАДНИЙ ФОН*/
/*ЗАДНИЙ ФОН*/
/*ЗАКРЫТИЕ*/
.closer__btn {
  cursor: pointer;
  width: 3vw;
  height: 3vw;
  position: absolute;
  right: 1vw;
  top: 0.5vw;
  background: url(/public/img/close.png), #121f27;
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10000;
}
@media screen and (max-width: 800px) {
  .closer__btn {
    width: 10vw;
    height: 10vw;
    right: 5vw;
  }
}
.closer__btn:hover {
  background-color: red;
}
/*ЗАКРЫТИЕ*/
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
strong {
  font-weight: 600;
}
body {
  max-width: 100vw;
  overflow: hidden;
  overflow-y: auto;
  background: url(/public/img/body.webp), #13222b;
  background-size: 40% 20%;
  background-position: center;
}
@media screen and (max-width: 800px) {
  body {
    padding-bottom: 8vw;
    background: url(/public/img/body.webp), #13222b;
    background-size: 50vw 60vh;
    background-position: center;
  }
}
a {
  text-decoration: none;
  color: inherit;
  width: auto;
  height: auto;
}
table {
  border: none;
  border-collapse: collapse;
}
div {
  display: block;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: 'Montserrat';
}
img {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}
span {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}
p {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}
ul {
  margin-top: 0.3vw;
  margin-left: 1%;
}
ul,
li {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}
nav {
  display: flex;
  justify-content: center;
}
/*BASIC__STYLE*/
.btn_effect1::after {
  content: '';
  width: 4vw;
  height: 150%;
  position: absolute;
  transform: rotate(25deg);
  background-color: #fff8;
  left: -10vw;
  top: -20%;
  filter: blur(10px);
}
.btn_effect1:hover::after {
  left: 120%;
  transition: 0.3s;
}
input::-webkit-input-placeholder {
  color: #13222b;
}
input::-moz-placeholder {
  color: #13222b;
  opacity: 1;
  /* Убирает прозрачность в Firefox */
}
input:-ms-input-placeholder {
  color: #13222b;
}
input::placeholder {
  color: #13222b;
}
textarea::-webkit-input-placeholder {
  color: #13222b;
}
textarea::-moz-placeholder {
  color: #13222b;
  opacity: 1;
  /* Убирает прозрачность в Firefox */
}
textarea:-ms-input-placeholder {
  color: #13222b;
}
textarea::placeholder {
  color: #13222b;
}
.textarea_type1 {
  background-color: rgba(255, 255, 255, 0.4);
}
.btn_animation1 {
  position: relative;
  overflow: hidden;
}
.btn_animation1::after {
  content: '';
  display: block;
  position: absolute;
  width: 10%;
  height: 140%;
  left: -30%;
  top: -20%;
  transform: rotate(-30deg);
  background-color: rgba(255, 255, 255, 0.3);
  filter: blur(6px);
  transition: 0.5s;
  opacity: 0;
}
.btn_animation1:hover::after {
  transition: 1s;
  left: 120%;
  opacity: 1;
}
.h2_block {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  font-size: 1.98vw;
  font-family: 'Montserrat';
  font-weight: 800;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .h2_block {
    font-size: 6.84vw;
  }
}
@media screen and (max-width: 800px) {
  .h2_block {
    align-items: center;
    margin-bottom: 3vw;
    margin-top: 4vw;
  }
}
h2 {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  margin-bottom: 0.3vw;
}
@media screen and (max-width: 800px) {
  h2 {
    align-items: center;
    font-size: 4.5vw;
    text-align: center;
    width: 100%;
    margin: 2vw auto;
  }
}
.h2_block h2::after {
  content: '';
  width: 10vw;
  height: 4px;
  background-color: #fff;
  margin: 0.2vw 0;
  margin-top: 0.4vw;
}
@media screen and (max-width: 800px) {
  .h2_block h2::after {
    width: 20vw;
    margin-top: 2vw;
  }
}
.h2_block > .h2_sub {
  font-weight: 400;
  font-family: 'Arial';
  text-transform: uppercase;
  font-size: 80%;
}
@media screen and (max-width: 800px) {
  .h2_block > .h2_sub {
    font-size: 3.5vw;
  }
}
.center_h2 {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .center_h2 {
    width: 100%;
    margin: 5vw auto;
  }
}
.center_h2 h2::after {
  content: '';
  width: 5vw;
  height: 3px;
  background-color: #fff;
  margin: 0.2vw auto;
}
@media screen and (max-width: 800px) {
  .center_h2 h2::after {
    width: 20vw;
    margin-top: 2vw;
  }
}
/* template@header.less */
header {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  min-height: 70vh;
  background: linear-gradient(to right, rgba(16, 16, 16, 0.905), rgba(33, 68, 92, 0.999)), url(/public/img/header_fon.webp);
  background-repeat: no-repeat;
  background-size: auto 150%;
  background-position: center right;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  border-bottom: 8px solid #c9972d;
}
@media screen and (max-width: 800px) {
  header {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  header {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  header {
    background: linear-gradient(to bottom, rgba(19, 34, 43, 0.905), rgba(33, 68, 92, 0.999)), url(/public/img/header_fon.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
  }
}
.header_line {
  width: 97%;
  height: auto;
  padding-left: 1.5%;
  padding-right: 1.5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 1vw 1.5%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
@media screen and (max-width: 800px) {
  .header_line {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .header_line {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .header_line {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 1vw;
    padding-bottom: 1vw;
    width: 92%;
    padding: 1vw 3%;
    margin-left: 1%;
    position: fixed;
    top: 0.7vw;
    left: 0;
    background-color: rgba(19, 34, 43, 0.8);
    z-index: 888;
  }
}
.logo_block {
  width: 47%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .logo_block {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .logo_block {
    flex-direction: column;
    align-items: center;
  }
}
.logo_block > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .logo_block > a {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .logo_block {
    width: 41%;
    align-items: flex-start;
  }
}
.logo_img_cover {
  width: 16vw;
  height: 6vw;
  outline: unset;
  outline-offset: -2px;
}
.logo_img_cover img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .logo_img_cover {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.logo_img_cover img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .logo_img_cover {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .logo_img_cover {
    transform: scale(1.1);
    width: 100%;
    height: auto;
    display: none;
  }
}
.logo_img_cover_mobile {
  display: none;
  width: 6vw;
  height: 6vw;
  outline: unset;
  outline-offset: -2px;
}
.logo_img_cover_mobile img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .logo_img_cover_mobile {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.logo_img_cover_mobile img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .logo_img_cover_mobile {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .logo_img_cover_mobile {
    display: flex;
    width: 16vw;
    height: 9vw;
  }
}
.logo_text_cover {
  font-size: 2.2vw;
  font-family: 'Arial';
  font-weight: 600;
  color: #13222b;
  padding-left: 2vw;
  background: linear-gradient(0deg, #13222b, #121f27);
  /* напрям градієнта */
  -webkit-background-clip: text;
  /* вирізати фон тільки по тексту */
  -webkit-text-fill-color: transparent;
  /* зробити текст прозорим */
  transition: 2s;
}
@media screen and (max-width: 800px) {
  .logo_text_cover {
    font-size: 7.6vw;
  }
}
@media screen and (max-width: 800px) {
  .logo_text_cover {
    margin-top: 0vw;
    display: none;
  }
}
.header_line_right_side {
  width: 53%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5vw;
}
@media screen and (max-width: 800px) {
  .header_line_right_side {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .header_line_right_side {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .header_line_right_side {
    width: 90%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15%;
  }
}
.menuBox {
  cursor: pointer;
  width: 22%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.6vw;
  padding-bottom: 0.5vw;
  background: rgba(255, 255, 255, 0.2);
  outline: 2px solid rgba(255, 255, 255, 0.4);
  margin-left: 10%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-top: 0.4vw;
}
@media screen and (max-width: 800px) {
  .menuBox {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
.menuBox:hover {
  background: linear-gradient(0deg, #13222b, #08151d);
  outline: 2px solid #0e1d26;
  animation: scalePulse 3s infinite linear;
}
@media screen and (max-width: 800px) {
  .menuBox {
    width: 22%;
    background: #c49228;
    outline: 2px solid #ce9c32;
    animation: unset !important;
    order: 2;
  }
}
.btn_effect1::after {
  content: '';
  width: 4vw;
  height: 150%;
  position: absolute;
  transform: rotate(25deg);
  background-color: #fff8;
  left: -10vw;
  top: -20%;
  filter: blur(10px);
}
.btn_effect1:hover::after {
  left: 120%;
  transition: 0.3s;
}
.menuButton {
  font-size: 1.32vw;
  font-family: 'Arial';
  font-weight: 600;
  color: #ffffff;
  padding-left: 34%;
  padding-right: 5%;
  background: url(/public/img/menu.png);
  background-position: 8% 60%;
  background-size: 2vw;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .menuButton {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .menuButton {
    width: 60%;
    padding-top: 4vw;
    padding-bottom: 4vw;
    font-size: 4vw;
    background: url(/public/img/menu.png);
    background-position: center center;
    background-size: 8vw;
    background-repeat: no-repeat;
    background-color: unset;
    outline: unset;
    z-index: 3;
    content: '';
  }
  .menuButton .menu_text {
    display: none;
  }
}
.language-switcher {
  position: relative;
  width: 14%;
  user-select: none;
  cursor: pointer;
  margin-left: 1vw;
  margin-top: 0.5vw;
}
@media screen and (max-width: 800px) {
  .language-switcher {
    width: 60%;
    margin-left: 0;
    order: 1;
  }
}
.selected-language {
  padding: 0.5vw 0.6vw;
  padding-right: 0.4vw;
  font-size: 1.65vw;
  font-family: 'Arial';
  font-weight: 800;
  color: #ffffff;
  background-image: url('/public/img/triangl.png');
  background-position: 60% 50%;
  background-size: 1vw 1vw;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .selected-language {
    font-size: 5.7vw;
  }
}
@media screen and (max-width: 800px) {
  .selected-language {
    display: none;
  }
}
.language-options {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  background-color: #13222b;
  border: 1px solid #c9972d;
  border-radius: 6px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: none;
  z-index: 10;
  box-shadow: 0 4px 10px #27363f;
  z-index: 100;
}
@media screen and (max-width: 800px) {
  .language-options {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 1vw;
    margin-bottom: 1vw;
  }
}
.language-options li {
  padding: 8px 12px;
  transition: background-color 0.2s ease;
  font-size: 1.54vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  transition: 0.5s;
  border-radius: 10px;
}
@media screen and (max-width: 800px) {
  .language-options li {
    font-size: 5.32vw;
  }
}
.language-options li:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .language-options li {
    font-size: 4vw;
  }
}
.active_lang {
  background-color: #121f27;
  color: #13222b;
  transform: scale(1.1);
}
.language-options li:hover {
  background-color: #f5f5f5;
  color: #13222b;
}
.language-switcher:hover .language-options {
  display: block;
}
@media screen and (max-width: 800px) {
  .language-switcher:hover .language-options {
    display: flex;
  }
}
.header_contacts_block {
  width: 40%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .header_contacts_block {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .header_contacts_block {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .header_contacts_block {
    align-items: center;
    gap: 3vw 2vw;
    display: none;
  }
}
.header_contacts_cover {
  font-size: 1.43vw;
  font-family: 'Montserrat';
  font-weight: 200;
  color: #ffffff;
  padding-left: 1.5vw;
}
@media screen and (max-width: 800px) {
  .header_contacts_cover {
    font-size: 4.94vw;
  }
}
@media screen and (max-width: 800px) {
  .header_contacts_cover {
    padding-left: 8vw;
  }
}
.header_phone_box {
  background-image: url(/public/img/phone.png);
  background-size: 0.8vw 0.9vw;
  background-position: 1% center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .header_phone_box {
    background-size: 5.1vw 5vw;
  }
}
.header_email_box {
  font-size: 0.99vw;
  font-family: 'Arial';
  font-weight: 200;
  color: #ffffff;
  background-image: url(/public/img/mail.png);
  background-size: 0.9vw 0.9vw;
  background-position: 1% 60%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .header_email_box {
    font-size: 3.42vw;
  }
}
@media screen and (max-width: 800px) {
  .header_email_box {
    background-size: 5.1vw 5vw;
  }
}
.header_contacts_button {
  width: 3vw;
  height: 3vw;
  outline: 2px solid #c49228;
  border-radius: 10px;
  cursor: pointer;
  position: absolute;
  overflow: hidden;
  right: 1vw;
  top: 20%;
  background: url('/public/img/triangl_white.png'), linear-gradient(0deg, #13222b, #3a474f);
  background-position: center center;
  background-size: 1.5vw 1.5vw, 100% 100%;
  background-repeat: no-repeat;
}
.header_contacts_button:hover {
  animation: scalePulse 3s infinite linear;
}
@media screen and (max-width: 800px) {
  .header_contacts_button {
    width: 12vw;
    height: 12vw;
    border-radius: 30px;
    background: url('/public/img/triangl_white.png'), linear-gradient(0deg, #13222b, #3a474f);
    background-position: center center;
    background-size: 4.5vw 4.5vw, 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 1vw;
    margin-bottom: 4vw;
  }
}
.header_contacts_hidden {
  width: 90%;
  height: 6vw;
  outline: 2px solid #c49228;
  border-radius: 10px;
  position: absolute;
  left: 0vw;
  top: 110%;
  background: linear-gradient(154deg, #13222b, #3a474f);
  display: none;
  z-index: 100;
  padding-left: 3%;
  padding-right: 3%;
  padding-top: 1vw;
  padding-bottom: 1vw;
}
@media screen and (max-width: 800px) {
  .header_contacts_hidden {
    height: auto;
    padding: 5vw 5%;
    top: 100%;
  }
}
.white_phone {
  background: url(/public/img/phone.png);
  background-size: 1.2vw 1.2vw;
  background-position: 1% center;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 1.2vw;
}
@media screen and (max-width: 800px) {
  .white_phone {
    font-size: 4vw;
    background-size: 4.8vw 4.9vw;
  }
}
.white_adres {
  background: url(/public/img/adress_white.png);
  background-size: 1.7vw 1.6vw;
  background-position: 0% center;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 1vw;
  margin-top: 1vw;
}
@media screen and (max-width: 800px) {
  .white_adres {
    font-size: 4vw;
    background-size: 5.1vw 4.4vw;
  }
}
/* header_content */
.header_content {
  width: 96%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 800px) {
  .header_content {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .header_content {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .header_content {
    width: 96%;
    padding: 6vw 2%;
  }
}
.header_content_left {
  width: 50%;
  height: 80vh;
  outline: unset;
  outline-offset: -2px;
  position: relative;
  background-color: #101010;
  border-right: 2px solid #242424;
}
.header_content_left img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header_content_left {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.header_content_left img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header_content_left {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .header_content_left {
    height: 40vh;
    margin-top: 12vw;
  }
}
.header_content_left video,
.header_content_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}
.header_content_left_mini {
  width: 50%;
  height: 60vh;
  outline: unset;
  outline-offset: -2px;
  position: relative;
  background-color: #101010;
  border-right: 2px solid #242424;
}
.header_content_left_mini img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header_content_left_mini {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.header_content_left_mini img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header_content_left_mini {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .header_content_left_mini {
    height: 40vh;
    margin-top: 12vw;
  }
}
.header_content_left_mini video,
.header_content_left_mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}
.header_content_right {
  width: 46%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
  margin-top: 10vw;
  min-height: 50vh;
}
@media screen and (max-width: 800px) {
  .header_content_right {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .header_content_right {
    margin-top: 4vw;
  }
}
.text_typing {
  animation: typing 2s steps(14, end);
  white-space: nowrap;
  overflow: hidden;
}
.header_content h1 {
  overflow: hidden;
  font-size: 1.76vw;
  font-family: 'Montserrat';
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  line-height: 120%;
  padding-top: 0.2vw;
  padding-bottom: 0.2vw;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .header_content h1 {
    font-size: 6.08vw;
  }
}
@media screen and (max-width: 800px) {
  .header_content h1 {
    font-size: 5vw;
    line-height: 1.3em;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}
/* Анімація друку */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* Анімація курсору */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #121f27;
  }
}
.h1_sub {
  font-size: 1.32vw;
  font-family: 'Arial';
  font-weight: 400;
  color: #ffffff;
  width: 95%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  margin-top: 2vw;
  margin-bottom: 3vw;
  padding: 1.5vw 1vw;
  line-height: 1.2em;
  background-color: rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(201, 151, 45, 0.2);
  border-bottom: 2px solid rgba(201, 151, 45, 0.2);
}
@media screen and (max-width: 800px) {
  .h1_sub {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .h1_sub {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .h1_sub {
    width: 94%;
    padding: 5vw 3%;
    font-size: 3.3vw;
    text-align: left;
    color: #fff;
    text-align: center;
  }
}
.header_center_contact_block {
  margin-top: 2vw;
  width: 80%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .header_center_contact_block {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .header_center_contact_block {
    flex-direction: column;
    align-items: center;
  }
}
.header_consultation_btn {
  font-size: 0.99vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  background-color: #c9972d;
  padding: 0.9vw 2vw;
  cursor: pointer;
  transition: 0.4s;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  text-transform: uppercase;
  box-shadow: 3px 3px 0px 0px rgba(201, 151, 45, 0.49);
  -webkit-box-shadow: 3px 3x 0px 0px rgba(201, 151, 45, 0.49);
  -moz-box-shadow: 3px 3px 0px 0px rgba(201, 151, 45, 0.49);
}
@media screen and (max-width: 800px) {
  .header_consultation_btn {
    font-size: 3.42vw;
  }
}
.header_consultation_btn:hover {
  background-color: #13222b;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .header_consultation_btn {
    padding: 3vw 2vw;
    font-size: 4vw;
  }
}
.header_center_contact_phone_block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 1vw;
  gap: 1vw;
}
@media screen and (max-width: 800px) {
  .header_center_contact_phone_block {
    flex-direction: column;
    align-items: center;
  }
}
.header_center_contact_icon {
  width: 1.4vw;
  height: 1.3vw;
  outline: unset;
  outline-offset: -2px;
  background-color: #c9972d;
  padding: 0.8vw 0.8vw;
  border-radius: 15px;
  box-shadow: 3px 3px 0px 0px rgba(201, 151, 45, 0.49);
  -webkit-box-shadow: 3px 3x 0px 0px rgba(201, 151, 45, 0.49);
  -moz-box-shadow: 3px 3px 0px 0px rgba(201, 151, 45, 0.49);
}
.header_center_contact_icon img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header_center_contact_icon {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.header_center_contact_icon img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header_center_contact_icon {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .header_center_contact_icon {
    width: 6vw;
    height: 6vw;
    margin-top: 4vw;
    padding: 1vw 1vw;
    display: none;
  }
}
.header_center_contact_phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .header_center_contact_phone {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .header_center_contact_phone {
    margin-top: 4vw;
  }
}
.header_center_contact_phone .phone_title {
  font-size: 0.88vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .header_center_contact_phone .phone_title {
    font-size: 3.04vw;
  }
}
@media screen and (max-width: 800px) {
  .header_center_contact_phone .phone_title {
    font-size: 6vw;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2vw;
  }
}
.header_center_contact_phone .phone_num {
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .header_center_contact_phone .phone_num {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .header_center_contact_phone .phone_num {
    font-size: 5vw;
    font-family: 'Montserrat';
    font-weight: 400;
  }
}
.mobile_header_num {
  display: none;
}
@media screen and (max-width: 800px) {
  .mobile_header_num {
    display: block;
  }
}
.sticky .header_line_mask {
  display: none;
}
.sticky {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-top: 0.3vw;
  padding-bottom: 0.3vw;
  margin-top: 0;
}
.sticky .logo_img_cover {
  width: 100%;
  height: 4.5vw;
}
.sticky .header_contacts_cover {
  font-size: 1.1vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .sticky .header_contacts_cover {
    font-size: 3.8vw;
  }
}
.sticky .header_line_mask {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sticky + .header_center {
  margin-top: 10vw;
}
.header_mini {
  min-height: unset;
}
.header_mini .header_content_right {
  margin-top: 4vw;
  min-height: unset;
}
/* template@palets_offers.less */
.palets_offers_body {
  width: 96%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .palets_offers_body {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .palets_offers_body {
    flex-direction: column;
    align-items: center;
  }
}
.palets_offers_sidebar {
  width: 23%;
  height: auto;
  padding-left: 1%;
  padding-right: 1%;
  padding: 1.8vw 1%;
  outline: 7px solid #c9972d;
  outline-offset: -4px;
  border-bottom: 8px solid #c9972d;
}
@media screen and (max-width: 800px) {
  .palets_offers_sidebar {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .palets_offers_sidebar {
    width: 90%;
    padding: 5vw 5%;
    margin-top: 7vw;
    margin-bottom: 5vw;
    border-bottom: unset;
    outline: unset;
  }
}
.palets_offers_sidebar_text {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  margin: 1.1vw 0;
  font-size: 1.045vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .palets_offers_sidebar_text {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .palets_offers_sidebar_text {
    font-size: 3.61vw;
  }
}
.palets_offers_catalog {
  width: 73%;
  height: auto;
  padding-left: 1%;
  padding-right: 1%;
  padding: 0 1%;
  padding-top: 2vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .palets_offers_catalog {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .palets_offers_catalog {
    flex-direction: column;
    align-items: center;
  }
}
.palets_offer_item {
  width: 25%;
  height: 14vw;
  outline: unset;
  outline-offset: -2px;
  position: relative;
}
.palets_offer_item img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .palets_offer_item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.palets_offer_item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .palets_offer_item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .palets_offer_item {
    height: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 2px solid rgba(0, 0, 0, 0.6);
  }
}
.palets_offer_item_title {
  width: 96%;
  height: 90%;
  padding: 5% 2%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  font-size: 1.21vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  outline: 4px solid rgba(0, 0, 0, 0.6);
  outline-offset: -5px;
}
@media screen and (max-width: 800px) {
  .palets_offer_item_title {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .palets_offer_item_title {
    font-size: 4.18vw;
  }
}
@media screen and (max-width: 800px) {
  .palets_offer_item_title {
    justify-content: center;
    height: 46%;
    width: 80%;
    top: unset;
    left: unset;
    background-color: rgba(0, 0, 0, 0.7);
  }
}
.palets_offers_sidebar_button {
  width: 70%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  padding: 0.6vw 5%;
  padding-right: 10%;
  margin: 0 auto;
  margin-top: 3vw;
  background-image: url(/public/img/arrow.png);
  background-position: 80% 53%;
  background-size: 1.5vw 1vw;
  background-repeat: no-repeat;
  transition: .6s;
  cursor: pointer;
  overflow: hidden;
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #ffffff;
  border-radius: 12px;
  outline: 3px solid #fff;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .palets_offers_sidebar_button {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .palets_offers_sidebar_button {
    color: #ffffff;
    border-radius: 12px;
    outline: 8px solid #fff;
    background-color: rgba(201, 151, 45, 0.3);
    padding: 3vw 5%;
    padding-right: 8%;
    width: 85%;
    background-size: 6vw 4vw;
    margin-top: 6vw;
  }
}
.palets_offers_sidebar_button:hover {
  color: #ffffff;
  border-radius: 12px;
  outline: 4px solid #fff;
  background-color: rgba(18, 31, 39, 0.9);
}
/* template@page_text_block.less */
.page_text_block_box {
  width: 96%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  padding: 2vw 2%;
}
@media screen and (max-width: 800px) {
  .page_text_block_box {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .page_text_block_box {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .page_text_block_box {
    margin-top: 4vw;
  }
}
.img_cover {
  width: 45%;
  height: auto;
  outline: unset;
  outline-offset: -2px;
  border-radius: 20px;
  outline: 4px solid #c9972d;
  overflow: hidden;
  max-height: 90vh;
}
.img_cover img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .img_cover {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.img_cover img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .img_cover {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .img_cover {
    height: 30vh;
    width: 96%;
  }
}
.text_cover {
  width: 50%;
  height: auto;
  padding-left: 2.5%;
  padding-right: 2.5%;
  font-size: 1.155vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .text_cover {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .text_cover {
    font-size: 3.99vw;
  }
}
@media screen and (max-width: 800px) {
  .text_cover {
    width: 90%;
    padding: 4vw 5%;
  }
}
.page_block {
  border-top: unset;
  border-bottom: unset;
}
.page_block .accordion_block_content_item_text {
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #13222b;
}
@media screen and (max-width: 800px) {
  .page_block .accordion_block_content_item_text {
    font-size: 4.56vw;
  }
}
.accordion_block .other_offers_body {
  padding: 0 2%;
}
.reverse {
  flex-direction: row-reverse;
}
/* template@other_offers.less */
.other_offers_body {
  width: 96%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
  background: linear-gradient(to right, rgba(19, 34, 43, 0.95), rgba(19, 34, 43, 0.96)), url(/public/img/other_offers_body.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  margin-top: 2vw;
  border-top: 5px solid #121f27;
  border-bottom: 5px solid #c9972d;
  padding: 2vw 2%;
}
@media screen and (max-width: 800px) {
  .other_offers_body {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .other_offers_body {
    border-bottom: unset;
    border-top: unset;
  }
}
.accordion_block {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 2vw 0;
}
@media screen and (max-width: 800px) {
  .accordion_block {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block {
    flex-direction: column;
    align-items: center;
  }
}
.accordion_block_navigation {
  width: 33%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8vw 0;
}
@media screen and (max-width: 800px) {
  .accordion_block_navigation {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_navigation {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_navigation {
    width: 96%;
    margin: 0 auto;
  }
}
.accordion_block_navigation_btn {
  width: 88%;
  height: 3em;
  padding-left: 0;
  padding-right: 0;
  padding: 0.5vw 2%;
  padding-right: 10%;
  margin: 0 auto;
  background-image: url(/public/img/arrow_slider_right.png);
  background-position: 97% 50%;
  background-size: 1.7vw 1.7vw;
  background-repeat: no-repeat;
  transition: .6s;
  cursor: pointer;
  overflow: hidden;
  font-size: 0.99vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #ffffff;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.07000000000000001);
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .accordion_block_navigation_btn {
    font-size: 3.42vw;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_navigation_btn {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_navigation_btn {
    color: #ffffff;
    outline: 3px solid #fff;
    background-color: rgba(201, 151, 45, 0.3);
    padding: 1vw 5%;
    padding-right: 8%;
    width: 85%;
    background-size: 6vw 4vw;
    margin-top: 2vw;
    justify-content: center;
    align-items: flex-start;
  }
}
.accordion_block_navigation_btn:hover {
  color: #ffffff;
  outline: 1px solid #fff;
  background-color: rgba(18, 31, 39, 0.3);
}
.accordion_block_navigation_mini {
  padding: 0.3vw 2%;
  height: 2.2em;
}
.accordion_block_content_cover {
  width: 65%;
  height: auto;
  padding-left: 1%;
  padding-right: 1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 800px) {
  .accordion_block_content_cover {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_cover {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_cover {
    margin-top: 3vw;
    align-items: center;
  }
}
.accordion_block_content_item {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item {
    width: 96%;
  }
}
.accordion_block_content_item.active_item {
  position: relative;
  opacity: 1;
  transition: 1s;
  z-index: 3;
}
.accordion_block_content_item_img {
  width: 50%;
  height: 32vw;
  outline: unset;
  outline-offset: -2px;
  overflow: hidden;
  border-radius: 25px;
  outline: 5px solid #c9972d;
}
.accordion_block_content_item_img img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_img {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.accordion_block_content_item_img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_img {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_img {
    height: 40vh;
    border-radius: 25px 25px 0 0;
  }
}
.accordion_block_content_item_text_cover {
  width: 46%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  outline: 3px solid #c9972d;
  padding: 2vw 2%;
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_text_cover {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_text_cover {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_text_cover {
    padding: 5vw 2%;
    width: 96%;
  }
}
.accordion_block_content_item_text_cover h3 {
  font-size: 1.54vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #121f27;
  margin-bottom: 1vw;
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_text_cover h3 {
    font-size: 5.32vw;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_text_cover h3 {
    text-align: center;
  }
}
.accordion_block_content_item_text {
  font-size: 1.1vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #121f27;
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_text {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_text {
    margin: 3vw 0;
  }
}
.accordion_block_content_item_button {
  width: 15vw;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  padding: 0.6vw 5%;
  margin-top: 4vw;
  background-image: url(/public/img/arrow.png);
  background-position: 90% 53%;
  background-size: 1.5vw 1vw;
  background-repeat: no-repeat;
  transition: .6s;
  cursor: pointer;
  overflow: hidden;
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 800;
  color: #ffffff;
  border-radius: 12px;
  outline: 3px solid #bf8d23;
  background-color: #c9972d;
  text-transform: uppercase;
  text-align: center;
  align-self: flex-end;
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_button {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .accordion_block_content_item_button {
    color: #ffffff;
    border-radius: 12px;
    outline: 8px solid #fff;
    background-color: #c9972d;
    padding: 3vw 5%;
    padding-right: 8%;
    width: 76vw;
    background-size: 6vw 4vw;
    margin-top: 6vw;
    align-self: center;
  }
}
.accordion_block_content_item_button:hover {
  color: #ffffff;
  border-radius: 12px;
  outline: 4px solid #fff;
  background-color: rgba(18, 31, 39, 0.9);
}
/* template@open_forma.less */
.open_forma_box {
  width: 96%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(19, 34, 43, 0.36)), url(/public/img/open_forma_body.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  border-top: 5px solid #c9972d;
  border-bottom: 10px solid #c9972d;
  padding: 7vw 2%;
}
@media screen and (max-width: 800px) {
  .open_forma_box {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .open_forma_box {
    width: 90%;
    padding: 6vw 5%;
    background-size: auto 100%;
    background-position: center right;
    margin-top: 10vw;
  }
}
.open_forma_body {
  width: 51%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1vw 5%;
}
@media screen and (max-width: 800px) {
  .open_forma_body {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .open_forma_body {
    flex-direction: column;
    align-items: center;
  }
}
.open_forma_h2 {
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 800px) {
  .open_forma_h2 {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .open_forma_h2 {
    font-size: 4vw;
  }
}
.open_forma_h2 h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .open_forma_h2 h2 {
    margin-bottom: 1vw;
  }
}
.open_forma_h2 h2::after {
  width: 30%;
  height: 4px;
}
@media screen and (max-width: 800px) {
  .open_forma_h2 h2::after {
    margin-top: 1vw;
  }
}
.open_forma_input {
  width: 43.5%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
  padding: 0.5vw 2%;
  font-size: 1.21vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 800px) {
  .open_forma_input {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .open_forma_input {
    font-size: 4.18vw;
  }
}
@media screen and (max-width: 800px) {
  .open_forma_input {
    padding: 3vw 2%;
    width: 96%;
    background: rgba(255, 255, 255, 0.4);
  }
}
.open_forma_input::placeholder {
  color: #fff;
}
.open_forma_select {
  width: 47.5%;
}
@media screen and (max-width: 800px) {
  .open_forma_select {
    padding: 3vw 2%;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
  }
}
.open_forma_select option {
  color: #000;
}
.regulationsGroup {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.99vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .regulationsGroup {
    font-size: 3.42vw;
  }
}
@media screen and (max-width: 800px) {
  .regulationsGroup {
    flex-wrap: wrap;
    margin-top: 3vw;
    margin-bottom: 3vw;
  }
}
.custom-checkbox {
  appearance: none;
  width: 1.5vw;
  height: 1.5vw;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 800px) {
  .custom-checkbox {
    width: 5vw;
    height: 5vw;
  }
}
.custom-checkbox:checked {
  background-color: #c9972d;
  border-color: #bf8d23;
  width: 1.5vw;
  height: 1.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .custom-checkbox:checked {
    width: 5vw;
    height: 5vw;
  }
}
.custom-checkbox:checked::after {
  content: '';
  position: absolute;
  width: 0.4vw;
  height: 0.4vw;
  padding-bottom: 0.3vw;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 800px) {
  .custom-checkbox:checked::after {
    width: 2vw;
    height: 2vw;
  }
}
.regulationsLabel {
  width: 80%;
  margin-left: 2%;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .regulationsLabel {
    width: 90%;
    font-size: 2.6vw;
  }
}
.formaInfoWindow {
  display: none;
  margin-top: 10px;
  padding: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 12px;
  color: #344054;
  overflow-y: auto;
  position: absolute;
  top: 100%;
}
@media screen and (max-width: 800px) {
  .formaInfoWindow {
    width: 96%;
    padding: 3vw 2%;
    position: relative;
    top: 0;
    display: block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2.6vw;
  }
}
.regulationsLabel:hover ~ .formaInfoWindow {
  display: block;
  font-size: 0.99vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #13222b;
}
@media screen and (max-width: 800px) {
  .regulationsLabel:hover ~ .formaInfoWindow {
    font-size: 3.42vw;
  }
}
@media screen and (max-width: 800px) {
  .regulationsLabel:hover ~ .formaInfoWindow {
    color: #fff;
    font-size: 2.6vw;
  }
}
.send_btn {
  margin-top: 2vw;
  width: 35%;
  padding: 0.7vw 1vw;
  text-align: center;
  background: rgba(255, 255, 255, 0.09);
  outline: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  border-radius: 15px;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
@media screen and (max-width: 800px) {
  .send_btn {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .send_btn {
    width: 70%;
  }
}
.send_btn:hover {
  background: #121f27;
}
.send_btn:active {
  transform: translateY(1px);
}
/* template@footer.less */
footer {
  border-top: 3px solid #08151d;
  background-color: #121f27;
  width: 90%;
  height: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 2vw;
  padding: 2vw 5%;
}
@media screen and (max-width: 800px) {
  footer {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  footer {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  footer {
    padding-bottom: 6vw;
    margin-top: 4vw;
    padding-top: 3vw;
  }
}
.logo_cover {
  width: 16%;
  height: auto;
  outline: unset;
  outline-offset: -2px;
}
.logo_cover img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .logo_cover {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.logo_cover img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .logo_cover {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .logo_cover {
    width: 80%;
  }
}
.footer_contacts {
  width: 26%;
  height: auto;
  outline: unset;
  outline-offset: -2px;
}
.footer_contacts img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .footer_contacts {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.footer_contacts img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .footer_contacts {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .footer_contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 96%;
  }
}
.footer_contacts_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.5vw;
}
@media screen and (max-width: 800px) {
  .footer_contacts_item {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .footer_contacts_item {
    margin-top: 1vw;
    width: 98%;
    background-color: rgba(255, 255, 255, 0.05);
    outline: 2px solid rgba(255, 255, 255, 0.2);
    margin-left: 0%;
    padding-top: 1vw;
    padding-bottom: 1vw;
    flex-direction: column;
    margin-top: 2vw;
  }
}
.contact_img_cover {
  width: 1.4vw;
  height: 1.4vw;
  outline: unset;
  outline-offset: -2px;
  margin-right: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact_img_cover img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .contact_img_cover {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.contact_img_cover img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .contact_img_cover {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .contact_img_cover {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .contact_img_cover {
    height: 5vw;
    width: 5vw;
    margin-right: 0vw;
    margin-bottom: 3vw;
    margin-top: 3vw;
  }
}
.contact_text_cover {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .contact_text_cover {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .contact_text_cover {
    align-items: center;
    gap: 0.5vw 0;
    text-align: center;
    width: 100%;
  }
}
.contact_text_cover a {
  display: block;
  width: 100%;
}
.contact_text_cover .contact_text {
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #ffffff;
  width: 90%;
}
@media screen and (max-width: 800px) {
  .contact_text_cover .contact_text {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .contact_text_cover .contact_text {
    text-align: center;
    width: 100%;
  }
}
.contact_text_cover .contact_title {
  font-size: 0.99vw;
  font-family: 'Montserrat';
  font-weight: 800;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .contact_text_cover .contact_title {
    font-size: 3.42vw;
  }
}
@media screen and (max-width: 800px) {
  .contact_text_cover .contact_title {
    width: 100%;
  }
}
.footer_contacts_title {
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .footer_contacts_title {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .footer_contacts_title {
    margin-top: 1vw;
  }
}
.icon_item {
  width: 3vw;
  height: auto;
  outline: unset;
  outline-offset: -2px;
}
.icon_item img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .icon_item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.icon_item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .icon_item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .icon_item {
    width: 15vw;
    height: 15vw;
    margin-bottom: 4vw;
  }
  .icon_item img {
    object-fit: contain;
  }
}
.icons_cover {
  width: 25%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6vw;
}
@media screen and (max-width: 800px) {
  .icons_cover {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .icons_cover {
    flex-direction: row;
    width: 70%;
    margin-top: 6vw;
    margin-bottom: 6vw;
    gap: 2vw;
  }
}
.icons_title {
  width: 100%;
  font-size: 1.32vw;
  font-family: 'Arial';
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .icons_title {
    font-size: 4.56vw;
  }
}
.navigation_cover {
  width: 17%;
}
@media screen and (max-width: 800px) {
  .navigation_cover {
    width: 89%;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
}
.navigation_cover h2 {
  width: 100%;
  text-align: center;
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 800;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .navigation_cover h2 {
    font-size: 4.56vw;
  }
}
.navigation_cover ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.4vw;
}
@media screen and (max-width: 800px) {
  .navigation_cover ul {
    flex-direction: column;
    align-items: center;
  }
}
.navigation_cover ul li {
  list-style: none;
  width: 90%;
  padding-left: 1.5vw;
  background: url(/public/img/li_back.png);
  background-size: 0.6vw 0.6vw;
  background-position: 2% center;
  background-repeat: no-repeat;
  transition: 0.5s;
}
.navigation_cover ul li:hover a {
  color: #c9972d;
}
.navigation_cover ul li::after {
  content: '';
  display: block;
  width: 36%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 0.3vw;
}
.navigation_cover ul li a {
  font-size: 1.21vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .navigation_cover ul li a {
    font-size: 4.18vw;
  }
}
/* template@modal_menu.less */
/*MODAL MENU*/
#modal_menu_mask {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  left: 100vw;
  top: 0;
  background: rgba(201, 151, 45, 0.8);
  z-index: 10000;
}
.modal_menu {
  width: 36%;
  height: 100dvh;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(19, 34, 43, 0.9);
  border-right: 2px solid #00040d;
}
@media screen and (max-width: 800px) {
  .modal_menu {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .modal_menu {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .modal_menu {
    background-color: rgba(19, 34, 43, 0.9);
  }
}
.modal_menu_logo {
  width: 50%;
  height: cover;
  outline: unset;
  outline-offset: -2px;
}
.modal_menu_logo img {
  object-fit: contein;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .modal_menu_logo {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
.modal_menu_logo img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .modal_menu_logo {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .modal_menu_logo {
    width: 30%;
    display: none;
  }
}
.modal_menu nav {
  width: 90%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  margin-top: 3vw;
}
@media screen and (max-width: 800px) {
  .modal_menu nav {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .modal_menu nav {
    width: 90%;
  }
}
.modal_menu nav ul {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1vw;
}
@media screen and (max-width: 800px) {
  .modal_menu nav ul {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .modal_menu nav ul {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .modal_menu nav ul {
    align-items: flex-start;
    gap: 3vw;
  }
}
.modal_menu nav li {
  list-style: none;
}
.modal__menu__item {
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  padding-left: 1vw;
  padding-top: 0.3vw;
  padding-bottom: 0.3vw;
  padding-right: 1vw;
  transition: .4s;
  border-left: 4px solid #fff;
}
@media screen and (max-width: 800px) {
  .modal__menu__item {
    font-size: 4.56vw;
  }
}
.modal__menu__item:hover {
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  background-color: #13222b;
  padding-left: 1.5vw;
}
@media screen and (max-width: 800px) {
  .modal__menu__item:hover {
    font-size: 4.56vw;
  }
}
@media screen and (max-width: 800px) {
  .modal__menu__item:hover {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 800px) {
  .modal__menu__item {
    font-size: 4.5vw;
  }
}
/* template@header_forma.less */
.forma_fixed_block {
  width: 100vw;
  height: 100dvh;
  padding-left: 0;
  padding-right: 0;
  position: fixed;
  top: 0;
  left: -103vw;
  z-index: 1000;
  transition: 2s;
}
@media screen and (max-width: 800px) {
  .forma_fixed_block {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
.forma_mask {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100vw;
  height: 100dvh;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.modal_forma_body {
  width: 40vw;
  height: 100dvh;
  padding-left: 1vw;
  padding-right: 1vw;
  background-color: rgba(19, 34, 43, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .modal_forma_body {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .modal_forma_body {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .modal_forma_body {
    width: 96%;
    padding: 2vw 2%;
  }
}
.data_select_group {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2%;
}
@media screen and (max-width: 800px) {
  .data_select_group {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .data_select_group {
    flex-direction: column;
    align-items: center;
  }
}
.data_select_group label {
  font-size: 1.1vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  padding-right: 1vw;
}
@media screen and (max-width: 800px) {
  .data_select_group label {
    font-size: 3.8vw;
  }
}
.forma_title_type_1 {
  width: 94%;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
  font-size: 1.43vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .forma_title_type_1 {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .forma_title_type_1 {
    font-size: 4.94vw;
  }
}
.forma_subtitle_type_1 {
  width: 94%;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
  font-size: 1.21vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #c9972d;
  padding-bottom: 2vw;
}
@media screen and (max-width: 800px) {
  .forma_subtitle_type_1 {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .forma_subtitle_type_1 {
    font-size: 4.18vw;
  }
}
.forma_type1 {
  width: 95%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
@media screen and (max-width: 800px) {
  .forma_type1 {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
.forma_fixed_block .custom-checkbox + label::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -0.1vw;
  top: 0.7vw;
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #c9972d;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
@media screen and (max-width: 800px) {
  .forma_fixed_block .custom-checkbox + label::before {
    border: 1px solid #fff;
  }
}
.forma_fixed_block .open_forma_select {
  width: 98%;
}
.forma_type1_input {
  width: 93%;
  padding: 12px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #13222b;
}
@media screen and (max-width: 800px) {
  .forma_type1_input {
    font-size: 4.56vw;
  }
}
.forma_type1_input:focus {
  outline: none;
  border-color: #121f27;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.reglamation_cover {
  position: relative;
}
.forma_fixed_block .custom-checkbox {
  appearance: none;
  width: 1.5vw;
  height: 1.5vw;
  border: 1.5px solid #13222b;
  border-radius: 4px;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
}
.forma_fixed_block .custom-checkbox:checked {
  background-color: #c9972d;
  border-color: #ab790f;
}
.forma_fixed_block .custom-checkbox:checked::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.forma_fixed_block .regulationsLabel {
  line-height: 1.4;
  border-color: #00040d;
  font-size: 0.9350000000000001vw;
  font-family: 'arial';
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .forma_fixed_block .regulationsLabel {
    font-size: 3.23vw;
  }
}
.send_btn {
  margin-top: 10px;
  padding: 12px 16px;
  text-align: center;
  background: #c9972d;
  font-size: 1.32vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
@media screen and (max-width: 800px) {
  .send_btn {
    font-size: 4.56vw;
  }
}
.send_btn:hover {
  background: #000b13;
}
.send_btn:active {
  transform: translateY(1px);
}
.forma_fixed_block .formaInfoWindow {
  display: none;
  margin-top: 10px;
  padding: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 12px;
  color: #344054;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .forma_fixed_block .formaInfoWindow {
    width: 96%;
    padding: 3vw 2%;
    position: relative;
    top: 0;
    display: block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2.6vw;
  }
}
.forma_fixed_block .regulationsLabel:hover ~ .formaInfoWindow {
  display: block;
  font-size: 0.99vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #13222b;
}
@media screen and (max-width: 800px) {
  .forma_fixed_block .regulationsLabel:hover ~ .formaInfoWindow {
    font-size: 3.42vw;
  }
}
@media screen and (max-width: 800px) {
  .forma_fixed_block .regulationsLabel:hover ~ .formaInfoWindow {
    color: #fff;
    font-size: 2.6vw;
  }
}
.mail_delivery_confirmation {
  width: 100vw;
  height: 100dvh;
  padding-left: 0;
  padding-right: 0;
  position: fixed;
  top: 0;
  left: -103vw;
  z-index: 1000;
  transition: 2s;
}
@media screen and (max-width: 800px) {
  .mail_delivery_confirmation {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
.mail_delivery_confirmation_title {
  width: 90%;
  height: auto;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 1.87vw;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #c9972d;
}
@media screen and (max-width: 800px) {
  .mail_delivery_confirmation_title {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .mail_delivery_confirmation_title {
    font-size: 6.46vw;
  }
}
.mail_delivery_confirmation_text {
  width: 90%;
  height: auto;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 1.54vw;
  font-family: 'Montserrat';
  font-weight: 400;
  color: #ffffff;
  margin-top: 1vw;
}
@media screen and (max-width: 800px) {
  .mail_delivery_confirmation_text {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (max-width: 800px) {
  .mail_delivery_confirmation_text {
    font-size: 5.32vw;
  }
}
