@charset "UTF-8";
/* Шрифты */
@font-face {
  font-family: "Bounded";
  src: url("/fonts/Bounded-Black.ttf") format("truetype");
  font-weight: 600, 700;
  /* Для жирного текста */
  font-style: normal;
}
@font-face {
  font-family: "Bounded";
  src: url("/fonts/Bounded-ExtraLight.ttf") format("truetype");
  font-weight: 100, 200, 300;
  /* Для очень легкого текста */
  font-style: normal;
}
@font-face {
  font-family: "Bounded";
  src: url("/fonts/Bounded-Regular.ttf") format("truetype");
  font-weight: 400;
  /* Для обычного текста */
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("/fonts/Onest-Bold.ttf") format("truetype");
  font-weight: 600, 700;
  /* Для жирного текста */
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("/fonts/Onest-Light.ttf") format("truetype");
  font-weight: 100, 200, 300;
  /* Для очень легкого текста */
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("/fonts/Onest-Regular.ttf") format("truetype");
  font-weight: 400;
  /* Для обычного текста */
  font-style: normal;
}
/*---------------------------------*/
/* Общие стили для страницы*/
* {
  margin: 0;
  padding: 0;
  z-index: 0;
}
body {
  background-color: #0A0117;
  color: #fff;
}
section {
  margin-bottom: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
img {
  max-width: 100%;
}
img, svg {
  pointer-events: none;
}
a {
  text-decoration: none;
}
.container {
  z-index: 0;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media (min-width: 1315px) {
  .container {
    width: 1315px;
  }
}
@media (max-width: 1314px) and (min-width: 992px) {
  .container {
    width: 90%;
    margin: 6% 5%;
  }
}
@media (max-width: 991px) and (min-width: 769px) {
  .container {
    width: 90%;
    margin: 6% 5%;
  }
}
@media (max-width: 768px) and (min-width: 380px) {
  .container {
    width: 90%;
    margin: 10% 5%;
  }
}
@media (max-width: 379px) {
  .container {
    width: 92%;
    margin: 15% 4%;
  }
}
/* Общий стиль для всех кнопок */
.btn-orange {
  display: flex;
  height: 56px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 10px;
  background: linear-gradient(88deg, #EF6900 0.38%, #F48E00 102.11%);
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  border: none;
  cursor: pointer;
}
.btn-purple {
  display: flex;
  height: 56px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 10px;
  background-color: #1D0E38;
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  border: none;
}
.btn-header {
  display: flex;
  height: 56px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid #FFF;
  color: #fff;
  font-family: Onest;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}
.btn-orange:hover, .btn-purple:hover, .btn-header:hover {
  outline: none;
  opacity: 0.7;
  transition: 0.3s;
}
button:focus {
  outline: none;
  box-shadow: none;
}
/*---------------------------------*/
/* Стили для шапки header */
.header {
  margin-top: 2.6%;
  margin-bottom: 5%;
}
.header-box {
  z-index: 1;
  width: 100%;
}
.header, .footer {
  display: flex;
  justify-content: center;
}
.logo {
  width: 192px;
  height: 55.554px;
}
.header-top-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  margin-bottom: 30px;
}
.header-logo-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-info {
  display: flex;
  align-items: flex-start;
  gap: 33px;
}
.header-contact {
  display: flex;
  flex-direction: column;
}
.header-title {
  color: #D1C7DE;
  font-family: Onest;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.address-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.street {
  color: #FFF;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
}
.street > img {
  margin-right: 5px;
}
.work {
  position: relative;
}
.work > span {
  color: #EA6700;
  font-family: Onest;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px dashed #EA6700;
  cursor: default;
}
.time {
  position: absolute;
  width: 180px;
  padding: 15px 13px;
  background: #48336D;
  color: #fff;
  font-family: Onest;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  left: 50%;
  top: 95%;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%);
  box-shadow: 0px 7px 12px 0px rgba(67, 67, 67, 0.24);
  z-index: 5;
  cursor: default;
}
.work:hover .time {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  align-self: stretch;
  color: #FFF;
  font-family: Onest;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}
.header-wa {
  display: flex;
  padding: 5px 0;
  justify-content: center;
  align-items: center;
  gap: 5px;
  align-self: stretch;
  color: #FFF;
  font-family: Onest;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
.header-phone:hover, .header-wa:hover {
  text-decoration: none;
  color: #EA6700;
}
/* Стили навигационного меню header*/
.top_menu {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  font-weight: 400;
  z-index: 2000;
}
ul.top_menu li {
  display: block;
}
ul li {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.top_menu a {
  font-family: Onest;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
  border-bottom: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  transition: 0s;
}
.submenu {
  position: absolute;
  list-style: none;
  padding: 3px 0px;
  z-index: 2000;
}
.submenu > li > a {
  padding: 7px 22px;
  color: #fff;
  background: #07000F;
  display: block;
  font-weight: 300;
  white-space: nowrap;
}
.top_menu > li:hover > a {
  color: #EA6700;
  text-decoration: none;
}
.submenu > li:hover > a {
  color: #EA6700;
  text-decoration: none;
}
.drop-down-list .submenu {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.drop-down-list:hover .submenu {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}
.drop-down-list .submenu > li {
  position: relative;
}
.drop-down-list .submenu > li > span {
  width: 6px;
  display: block;
  position: absolute;
  right: 7px;
  top: 15px;
  color: #fff;
}
.drop-down-list .submenu > li > span > svg {
  max-width: 100%;
  display: block;
  fill: #fff;
}
.drop-down-list .submenu > li > .submenu {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  top: 0;
  left: 100%;
}
.drop-down-list .submenu > li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.menu-dots {
  display: flex;
  flex-direction: column;
  transform: rotate(0deg);
  transition: 0.4s;
  transition-delay: 0.2s;
}
.menu-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 1px;
  position: relative;
  transition: 0.2s;
}
.drop-down-list a {
  display: flex;
  align-items: center;
}
.drop-down-list a .menu-dots {
  margin-left: 11px;
}
.drop-down-list a .menu-dots .cls-1 {
  fill: #fff;
}
.content-page-header-box .drop-down-list .menu-dots .cls-1 {
  fill: #1D0E38;
}
.mobile_menu .menu-dots .cls-1 {
  fill: #1D0E38;
}
.mobile_menu .menu-dots {
  padding-left: 15px;
  height: 30px;
  margin-right: 0 !important;
  padding-right: 15px;
  display: flex;
  justify-content: center;
}
.drop-down-list:hover .menu-dots span:nth-child(2) {
  transform: translateX(5px);
}
.head_mobile {
  display: none;
}
.burger-box {
  display: none;
}
/* Стили для бургер меню */
.head_mobile {
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px;
  align-items: center;
  z-index: 3000;
  position: relative;
}
.mobile_menu {
  display: none;
}
.mobile_menu {
  position: absolute;
  height: 100vh;
  top: 100%;
  left: 0px;
  background: #fff;
  right: 0px;
  bottom: 0px;
  padding: 20px;
  list-style: none;
  transform: translateX(100%);
  transition: 0.3s;
  z-index: 100000;
}
.mobile_menu.mm_on {
  transform: translateX(0%);
}
.mobile_menu_main_list {
  padding-left: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.mobile_menu_main_list li {
  display: block;
}
.mobile_menu_main_list > li > a {
  font-family: Onest;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1D0E38;
  display: inline-block;
}
.sub_mobile_menu {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.sub_mobile_menu li {
  margin: 5px 0px;
}
.sub_mobile_menu.active {
  display: flex;
  gap: 15px;
}
.sub_mobile_menu a {
  border-bottom: 0px;
  color: #1D0E38;
  font-size: 20px;
  margin: 4px 0px;
}
.text_2 ul {
  list-style-type: disc;
  position: relative;
  left: 15px;
}
.text_2 ul li {
  display: list-item;
}
.slider_licenz_item {
  padding: 10px;
}
.mobile-down-list a {
  display: flex !important;
  align-items: center;
  color: #0A0117;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
.mobile-down-list a .menu-dots {
  margin-right: 10px;
}
.contentpagemobile .burger span {
  background: #2F0147;
}
.adr_mnu {
  color: #0A0117;
  padding-left: 10px;
}
.rb_mnu {
  color: #0A0117;
  padding: 10px;
  background: rgba(255, 255, 255, 0.07);
  margin-top: 10px;
}
.rb_mnu div {
  font-weight: 500;
}
.menu_bottom {
  position: relative;
  top: 5%;
}
/* Кнопка Бургер */
.burger-box {
  padding: 14px 14px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid #FFF;
  color: #fff;
  position: relative;
}
.menu-toggle {
  border-radius: 10px;
  transform: translate(0, 0%);
  height: 26px;
  width: 29px;
  cursor: pointer;
  color: #000;
  transition: color 0.3s ease;
}
.menu-toggle-bar {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.menu-toggle-bar--top {
  transform: translate(0, -10px);
}
.menu-toggle-bar--bottom {
  transform: translate(0, 10px);
}
.nav-open .menu-toggle-bar--top {
  transform: translate(0, 0) rotate(45deg);
}
.nav-open .menu-toggle-bar--middle {
  opacity: 0;
}
.nav-open .menu-toggle-bar--bottom {
  transform: translate(0, 0) rotate(-45deg);
}
@media (max-width: 1314px) and (min-width: 992px) {
  .header-info {
    gap: 10px;
  }
  .header-title {
    width: min-content;
  }
  .street, .header-phone {
    font-size: 14px;
  }
  .header-wa, .work {
    font-size: 12px;
  }
  .btn-header {
    height: 52px;
    padding: 12px 10px;
    font-size: 14px;
  }
  .top_menu a {
    font-size: 14px;
  }
  .head_mobile {
    display: none;
  }
  .burger-box {
    display: none;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .hero-section {
    margin-top: 15%;
  }
  .header-top-menu {
    margin-bottom: 0;
  }
  .header {
    top: 0%;
    position: fixed;
    margin: 0;
    padding: 3% 6%;
    z-index: 10000;
    background-color: #0A0117;
  }
  .no-scroll {
    overflow: hidden;
    height: 100%;
  }
  .mobile_menu {
    display: block;
    overflow-y: auto;
    height: 100vh;
  }
  .header-nav-menu, .header-info {
    display: none;
  }
  .header-title {
    display: none;
  }
  .header-top-menu {
    justify-content: space-between;
  }
  .header-menu-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .burger-box {
    display: flex;
  }
  .head_mobile {
    display: flex;
    position: absolute;
  }
  .works_item {
    width: 100%;
  }
  .mob-header-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    margin-top: 20px;
    padding-left: 10px;
  }
  .header-contact {
    gap: 20px;
  }
  .mob-street {
    color: #0A0117;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
  }
  .mob-header-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    color: #0A0117;
    font-family: Onest;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
  }
  .mob-header-wa {
    display: flex;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    color: #0A0117;
    font-family: Onest;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
  }
}
@media (max-width: 768px) and (min-width: 540px) {
  .hero-section {
    margin-top: 15%;
  }
  .header-top-menu {
    margin-bottom: 0;
  }
  .header {
    top: 0%;
    position: fixed;
    margin: 0;
    padding: 3% 6%;
    z-index: 10000;
    background-color: #0A0117;
  }
  .no-scroll {
    overflow: hidden;
    height: 100%;
  }
  .mobile_menu {
    display: block;
    overflow-y: auto;
    height: 100vh;
  }
  .logo {
    width: 173.999px;
    height: 50.346px;
  }
  .header-nav-menu, .header-info {
    display: none;
  }
  .header-title {
    display: none;
  }
  .header-top-menu {
    justify-content: space-between;
  }
  .header-menu-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .btn-header {
    height: 52px;
    padding: 14px 20px;
    font-size: 14px;
  }
  .burger-box {
    display: flex;
    padding: 12px 12px;
  }
  .head_mobile {
    display: flex;
    position: absolute;
  }
  .works_item {
    width: 100%;
  }
  .mob-header-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    margin-top: 20px;
    padding-left: 10px;
  }
  .header-contact {
    gap: 20px;
  }
  .mob-street {
    color: #0A0117;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
  }
  .mob-header-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    color: #0A0117;
    font-family: Onest;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
  }
  .mob-header-wa {
    display: flex;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    color: #0A0117;
    font-family: Onest;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
  }
}
@media (max-width: 539px) {
  .hero-section {
    margin-top: 100px;
  }
  .header-top-menu {
    margin-bottom: 0;
  }
  .header {
    top: 0%;
    position: fixed;
    margin: 0;
    padding: 3% 6%;
    z-index: 10000;
    background-color: #0A0117;
  }
  .no-scroll {
    overflow: hidden;
    height: 100%;
  }
  .mobile_menu {
    display: block;
    overflow-y: auto;
    height: 100vh;
  }
  .logo {
    width: 173.999px;
    height: 50.346px;
  }
  .header-nav-menu, .header-info {
    display: none;
  }
  .header-title {
    display: none;
  }
  .header-top-menu {
    justify-content: space-between;
  }
  .header-menu-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .btn-header {
    display: none;
  }
  .burger-box {
    display: flex;
  }
  .head_mobile {
    display: flex;
    position: absolute;
  }
  .works_item {
    width: 100%;
  }
  .mob-header-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    margin-top: 20px;
    padding-left: 10px;
  }
  .header-contact {
    gap: 20px;
  }
  .mob-street {
    color: #0A0117;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
  }
  .mob-header-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    color: #0A0117;
    font-family: Onest;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
  }
  .mob-header-wa {
    display: flex;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    color: #0A0117;
    font-family: Onest;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
  }
}
/*---------------------------------*/
/* Стили для подвала footer */
.footer {
  border-radius: 15px;
  background: radial-gradient(209.11% 86.21% at 10.59% 25.91%, #0A0017 0%, #1D0E38 100%);
  margin-bottom: 0;
}
.footer-box {
  height: max-content;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: url(/images/footer_back.svg);
  background-size: 450px;
  background-repeat: no-repeat;
  background-position: 25% 20%;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
}
.footer-logo {
  margin: 20px 0 20px 0;
}
.footer-title {
  color: #D1C7DE;
  font-family: Onest;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.social-buttons {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.social-button {
  width: 32px;
  height: 32px;
  background-size: cover;
  cursor: pointer;
  border-radius: 500px;
  background: #1D0E38;
  display: flex;
  justify-content: center;
  /* Выравниваем по горизонтали */
  align-items: center;
}
.social-button:hover {
  transition: 0.2s linear;
  border-radius: 500px;
  background: #EA6700;
}
.social-button.vk {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/images/svg/footer-vk.svg");
}
.social-button.telegram {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/images/svg/footer-tg.svg");
}
.social-button.whatsapp {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/images/svg/footer-wa.svg");
}
/* Правая часть футера */
.footer-right {
  margin-top: 20px;
  display: flex;
  width: 40%;
  flex-direction: column;
  justify-self: flex-end;
  align-items: flex-start;
  gap: 40px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.footer-menu > .footer_menu > ul {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
}
.footer-menu > ul {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
}
.title-name {
  color: #FFF;
  font-family: Onest;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer-menu a {
  color: #D1C7DE;
  font-family: Onest;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}
.footer-menu a:hover {
  color: #EA6700;
  transition: 0.2s linear;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.footer-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.bottom-left, .bottom-right {
  color: #D1C7DE;
  text-align: right;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  display: flex;
  align-self: center;
}
.bottom-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bottom-right > p {
  color: #D1C7DE;
  text-align: right;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
.bottom-right > p > a {
  color: #EA6700;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media (max-width: 820px) and (min-width: 768px) {
  .footer-left {
    width: 40%;
  }
  .footer-right {
    width: 50%;
  }
  .footer-bottom {
    margin-top: 40px;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
  .bottom-right > p {
    text-align: left;
  }
  .bottom-left, .bottom-right {
    align-self: flex-start;
    text-align: left;
  }
}
@media (max-width: 768px) and (min-width: 540px) {
  .footer-left {
    width: 100%;
  }
  .footer-right {
    width: 100%;
  }
  .footer-bottom {
    margin-top: 40px;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
  .bottom-right > p {
    text-align: left;
  }
  .bottom-left, .bottom-right {
    align-self: flex-start;
    text-align: left;
  }
  .footer-box {
    background-size: 450px;
    background-repeat: no-repeat;
    background-position: 25% 20%;
  }
}
@media (max-width: 539px) {
  .footer-box {
    padding: 10px;
  }
  .footer_logo {
    width: 138.001px;
    height: 40px;
  }
  .footer-left {
    width: 100%;
  }
  .footer-right {
    width: 100%;
  }
  .footer-bottom {
    margin-top: 40px;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
  .bottom-right > p {
    text-align: left;
  }
  .bottom-left, .bottom-right {
    align-self: flex-start;
    text-align: left;
    font-size: 12px;
  }
  .footer-box {
    background-size: 270px;
    background-repeat: no-repeat;
    background-position: 50% 25%;
    opacity: 1;
  }
  .title-name {
    font-size: 20px;
  }
  ul li {
    font-size: 14px;
  }
}
/*---------------------------------*/
/* Элементы на странице */
.title-h2 {
  flex-shrink: 0;
  color: #FFF;
  font-family: Bounded;
  font-size: 40px;
  font-weight: 400;
  margin: 0;
}
.title-h3 {
  color: #FFF;
  font-family: Bounded;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}
.title-p {
  flex: 1 0 0;
  color: #D1C7DE;
  font-family: Onest;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
.text-p {
  margin: 0;
}
.icon-check {
  width: 20px;
  height: 20px;
  background: url("/images/svg/check-for-list.svg") no-repeat center center;
  background-size: contain;
}
.icon-arrow {
  margin-left: 10px;
  width: 24px;
  height: 24px;
  background: url("/images/svg/right-arrow.svg") no-repeat center center;
  background-size: 100% 100%;
  fill: #fff;
}
.link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.more {
  display: flex;
  align-items: center;
  color: #FFF;
  font-family: Onest;
  font-size: 20px;
  font-weight: 400;
}
.more:hover {
  opacity: 0.5;
  transition: 0.3s;
  color: #FFF;
  text-decoration: none;
}
/* Стили для формы */
.form-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-box {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-title {
  width: 50%;
}
.form-title > h2 {
  color: #FFF;
  font-family: Bounded;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
.form-title > p {
  align-self: stretch;
  color: #D1C7DE;
  font-family: Onest;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
}
.form-block {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 753px;
  padding: 40px;
  flex-direction: column;
  align-self: center;
  align-items: flex-start;
  gap: 20px;
  border-radius: 15px;
  background: #1D0E38;
}
.form-image > img {
  position: absolute;
  top: -20%;
  left: 88%;
}
form {
  width: 100%;
}
.form-fields {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: 20px;
}
.field {
  display: flex;
  height: 54px;
  padding: 16px 18px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 10px;
  background: #150B28;
  box-sizing: border-box;
}
.noempty {
  border: none;
  background: #150B28;
  color: #FFF;
  font-family: Onest;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}
input:focus {
  outline: none;
}
input:-webkit-autofill, input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}
@media (max-width: 1314px) and (min-width: 992px) {
  .form-image > img {
    position: absolute;
    top: 10%;
    left: 88%;
    width: 27%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .form-image {
    display: none;
  }
  .form-block {
    width: 100%;
  }
  .form-title {
    width: 100%;
  }
  .form-title > p {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) and (min-width: 540px) {
  .form-image {
    display: none;
  }
  .form-block {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .form-fields {
    display: flex;
    flex-wrap: wrap;
  }
  .btn-orange {
    width: 100%;
  }
  .form-title {
    width: 100%;
  }
  .form-title > h2 {
    font-size: 18px;
  }
  .form-title > p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
@media (max-width: 539px) {
  .form-image {
    display: none;
  }
  .form-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  .form-fields {
    display: flex;
    flex-wrap: wrap;
  }
  .btn-orange {
    width: 100%;
  }
  .form-title {
    width: 100%;
  }
  .form-title > h2 {
    font-size: 18px;
  }
  .form-title > p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
#contactform {
  scroll-margin-top: 200px;
}
/*---------------------------*/
/* Стили для секции контакты*/
.contact-box {
  display: flex;
  max-width: 100%;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-content {
  width: 40%;
}
.contact-info {
  width: 57%;
}
.contact-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 50px;
}
.contact-title > h2 {
  color: #FFF;
  font-family: Bounded;
  font-size: 36px;
  font-weight: 400;
  margin: 0;
}
.contact-title > p {
  color: #D1C7DE;
  font-family: Onest;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
.contact-image {
  width: 100%;
}
.contact-image > img {
  width: 90%;
  border-radius: 15px;
}
.contact-details {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 320px;
}
.contact-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.contact-item-text > p {
  color: #D1C7DE;
  font-family: Onest;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  font-style: normal;
}
.contact-item-text > span, span > a {
  color: #FFF;
  font-family: Onest;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  margin: 0;
  font-style: normal;
}
.contact-item-text:hover, span > a:hover {
  color: #EA6700;
  text-decoration: none;
}
.contact-map > iframe {
  height: 360px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .contact-content {
    width: 100%;
  }
  .contact-info {
    width: 100%;
  }
  .contact-image > img {
    width: 100%;
  }
}
@media (max-width: 768px) and (min-width: 540px) {
  .contact-content {
    width: 100%;
  }
  .contact-info {
    width: 100%;
  }
  .contact-title > h2 {
    font-size: 30px;
  }
  .contact-title > p {
    font-size: 20px;
  }
  .contact-image > img {
    width: 100%;
  }
}
@media (max-width: 539px) {
  .contact-content {
    width: 100%;
  }
  .contact-info {
    width: 100%;
  }
  .contact-image > img {
    width: 100%;
  }
  .contact-title > h2 {
    font-size: 18px;
  }
  .contact-title > p {
    font-size: 18px;
  }
  .contact-map > iframe {
    height: 250px;
  }
}
/*-------------------------*/
/* Чекбокс */
.law-checkbox {
  align-items: center;
  position: relative;
  display: flex;
  gap: 10px;
}
.law-checkbox p {
  flex: 1 0 0;
  color: #D1C7DE;
  font-family: Onest;
  font-size: 14px;
  font-weight: 400;
  line-height: 145%;
  margin: 0;
}
.law-checkbox a {
  flex: 1 0 0;
  color: #D1C7DE;
  font-family: Onest;
  font-size: 14px;
  font-weight: 400;
  line-height: 145%;
  margin: 0;
}
.law-checkbox input[type="checkbox"] + label {
  position: relative;
  padding: 0 0 0 30px;
  display: block;
  color: #656565;
  font-size: 15px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  /*display: flex;*/
  align-items: end;
}
.law-checkbox input[type="checkbox"] {
  /*visibility: hidden;*/
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  -webkit-appearance: auto;
}
.law-checkbox input[type="checkbox"] + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  top: 12px;
  background: #150B28;
  border: 1px solid #D1C7DE;
  box-sizing: border-box;
}
.law-checkbox input[type="checkbox"] + label:after {
  content: "";
  display: block;
  position: absolute;
  left: -4.6px;
  width: 11px;
  height: 11px;
  top: 4px;
}
.law-checkbox input[type="checkbox"]:checked + label:before {
  animation: checkbox-check 125ms cubic-bezier(0.4, 0, 0.23, 1) 0.25s forwards;
  border-bottom: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  border-radius: 4px;
  border-left: 0;
  border-top: 0;
  border-radius: 0;
  box-sizing: content-box;
  content: "";
  left: 4px;
  position: absolute;
  top: 12px;
  transform: rotate(39deg);
  transform-origin: 0 100%;
  width: 3px;
  height: 9px;
  z-index: 1;
  background: none;
}
.law-checkbox input[type="checkbox"]:checked + label:after {
  animation: shrink-bounce 0.2s cubic-bezier(0.4, 0, 0.23, 1);
  background-color: #EF6900;
  border: 5px solid #EF6900;
  border-radius: 4px;
  left: 0;
  box-shadow: 0 0 8px #EF6900;
  top: 11px;
  animation: tick 0.3s ease-in-out;
}
.law-checkbox input[type="checkbox"]:checked + label:before {
  animation: tick2 0.26s ease-in-out;
}
@keyframes tick {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tick2 {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    width: 3px;
  }
}
.law-checkbox input[type="checkbox"] + label {
  font-size: 13px;
}
@media (max-width: 767px) {
  .modal-title .subtitle {
    font-size: 18px;
  }
  .law-checkbox input[type="checkbox"] + label {
    font-size: 11px;
  }
}
/*-------------------*/
/* Хлебные крошки */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a {
  color: #FFF;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
.breadcrumb .last_url {
  color: rgba(255, 255, 255, 0.5);
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
.tire {
  font-size: 20px;
}
/* Хлебные крошки */
.container.breadcrumbs {
  position: relative;
  z-index: 0;
}
@media (max-width: 990px) {
  .breadcrumbs {
    margin-top: 15%;
  }
}
@media (max-width: 540px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}
/* Правовая информаиця */
.legal-block {
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-block a {
  align-self: stretch;
  color: #fff;
  font-family: Onest;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}
.legal-block a:hover {
  opacity: 0.5;
  transition: 0.3s;
  text-decoration: none;
}
.legal-doc h3 {
  color: #FFF;
  font-family: Onest;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
.legal-doc a {
  color: #e05200;
  text-decoration: underline;
  transition: 0.3s;
}
.legal-doc a:hover {
  text-decoration: none;
}
.legal-doc p {
  color: #D1C7DE;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
.legal-doc ul li {
  color: #D1C7DE;
  font-family: Onest;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.7;
}
.legal-doc ol {
  margin-left: 40px;
}
.legal-doc ol li {
  color: #D1C7DE;
  font-family: Onest;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}
/*Стили окна куки*/
.cook-panel {
  position: fixed;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  border-radius: 15px;
  background: #48336D;
  z-index: 100;
}
.cook-panel__wrap {
  box-sizing: border-box;
  max-width: 478px;
  padding: 20px;
}
.cook-panel, .cook-panel.hidden {
  opacity: 0;
  right: -100%;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  -o-transform: translateX(30px);
  transition: 0.5s, right 0s 0.5s;
  -webkit-transition: 0.5s, right 0s 0.5s;
  -moz-transition: 0.5s, right 0s 0.5s;
  -ms-transition: 0.5s, right 0s 0.5s;
  -o-transition: 0.5s, right 0s 0.5s;
}
.cook-panel.visible {
  right: 30px;
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transition: 0.5s, right 0s;
  -webkit-transition: 0.5s, right 0s;
  -moz-transition: 0.5s, right 0s;
  -ms-transition: 0.5s, right 0s;
  -o-transition: 0.5s, right 0s;
}
.cook__header {
  color: #FFF;
  font-family: Bounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 10px;
}
.cook-panel__text > p {
  color: #D1C7DE;
  font-family: Onest;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.cook-panel__text > p > a {
  text-decoration: none;
  border-bottom: none;
  color: #EA6700;
  font-family: Onest;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.cook-panel__image {
  flex-shrink: 0;
  margin: 3px 16px 0 0;
}
.exit {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  background: #F7F7F7;
  color: #111;
  text-align: center;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}
.cook-panel__close {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  background: #48336D;
  color: #FFF;
  text-align: center;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.cook-panel__wrap > .buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.cook-panel__close:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .cook-panel {
    max-width: 298px;
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    font-size: 10px;
    gap: 5px;
  }
  .cook__header {
    margin-top: 5px;
    font-size: 12px;
  }
  .cook-panel__text > p {
    font-size: 10px;
  }
  .cook-panel__text > p > a {
    font-size: 10px;
  }
  .cook-panel__wrap > svg {
    width: 83px;
  }
  .cook-panel__wrap > .buttons {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .exit {
    padding: 8px 16px;
    font-size: 12px;
  }
  .cook-panel__close {
    padding: 8px 16px;
    font-size: 12px;
  }
  .cook-panel, .cook-panel.hidden {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
  }
  .cook-panel, .cook-panel.hidden, .cook-panel.visible {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
@media (max-width: 380px) {
  .cook-panel.visible {
    right: 10px;
  }
  .cook-panel__wrap {
    max-width: 246px;
    font-size: 10px;
    gap: 5px;
  }
  .cook__header {
    font-size: 12px;
    margin-top: 5px;
  }
  .cook-panel__text > p {
    font-size: 10px;
  }
  .cook-panel__text > p > a {
    font-size: 10px;
  }
  .cook-panel__wrap > svg {
    width: 73px;
  }
  .exit {
    padding: 8px 16px;
    font-size: 12px;
  }
  .cook-panel__close {
    padding: 8px 16px;
    font-size: 12px;
  }
  .cook-panel__wrap > .buttons {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
  }
}