body,
html {
  scrollbar-color: #3575f1 #f0f0f0;
  scrollbar-width: thin;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  /* letter-spacing: 0.025em; */
  position: relative;
  color: #110707;
  min-height: 100vh;
}

/* ::-webkit-scrollbar {
  height: 5px;
} */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #e0e0e0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #3575f1;
}

body * {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: top;
}

ul,
li {
  display: block;
  margin: 0;
  padding: 0;
}

button {
  padding: 0;
  margin: 0;
  background-color: transparent;
}

button,
button:hover,
button:active,
button:focus {
  outline: none;
  border: none;
  cursor: pointer;
}

p,
div,
a,
ul,
li,
h1,
h2,
h3,
h4,
h5,
button {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  color: #110707;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

a,
button,
input {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

input,
input:hover,
input:focus,
button,
button:hover,
button:active,
button:focus,
textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: 'Montserrat', sans-serif;
}

a,
a:hover,
a:active {
  text-decoration: none;
}
.pos_rel {
  position: relative;
}

.pos_abs {
  position: absolute;
}
.container {
  position: relative;
}
.custom-logo-link,
.custom_logo {
  width: auto;
  display: block;
  height: max-content;
}
.logo__text {
  color: #fff;
  display: block;
  line-height: 1.2em;
  text-transform: uppercase;
}

header,
section,
footer {
  position: relative;
  /* z-index: 5; */
  /* overflow-x: hidden; */
}
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 5000;
}
.header {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
  transition: all 0.4s ease;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.15);
}

.fixed_header {
  z-index: 5000;
}
.fixed_header.header {
  padding: 5px 0;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
}

.my_row {
  display: flex;
  justify-content: space-between;
}

.my_row_menu {
  display: none;
}

.menu {
  /* width: 100%; */
}

.nav {
  width: 100%;
}

.custom-logo img,
.my_row_menu .custom-logo img {
  width: 100%;
}

.nav__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.menu__close {
  width: 32px;
  height: 32px;
  /* background: url(../img/close_search.png) no-repeat center; */
  outline: none;
  /* margin-left: auto; */
  position: relative;
}

.menu__close::before,
.menu__close::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  background: #fff;
  top: 15px;
}

.menu__close::before {
  left: 0;
  transform: rotate(45deg);
}

.menu__close::after {
  right: 2px;
  transform: rotate(-45deg);
}

.nav__item {
  position: relative;
  width: auto;
  margin-right: 28px;
  transition: all 0.4s ease;
}
.nav__item:last-child {
  margin-right: 0;
}

.nav__item a {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}
.nav__item a:after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -4px;
  background: #2b60c5;
  transition: all 0.4s ease;
  transform: scaleX(0);
  transform-origin: left;
}
.nav__item a:hover:after {
  transform: scaleX(1);
}

.menu__burger {
  cursor: pointer;
  margin-left: 20px;
}

.menu__burger span {
  width: 30px;
  display: block;
  height: 3px;
  margin-bottom: 6px;
  background: #2b60c5;
  border-radius: 5px;
}

.menu__burger .burger__line_third {
  margin-bottom: 0;
  width: 66%;
}
@media screen and (max-width: 991px) {
  /* Menu style */
  .menu__burger {
    display: block;
  }

  .menu {
    width: 100%;
    padding: 0 25px;
    position: fixed;
    left: auto;
    top: 0;
    bottom: 0;
    right: -400px;
    overflow-y: auto;
    background: #282828;
    width: 100%;
    max-width: 400px;
    z-index: 400;
    transition: all 0.6s ease;
    /* transform: translateX(100%); */
    height: 3px;
    overflow-y: auto;
    scrollbar-color: #ffc947 #e0e0e0;
    scrollbar-width: thin;
    overflow-x: hidden;
    text-align: left;
  }

  .close__burger {
    -webkit-animation: rightBottomHide 1s cubic-bezier(0.55, 0.085, 0, 0.99)
      forwards;
    animation: rightBottomHide 1s cubic-bezier(0.55, 0.085, 0, 0.99) forwards;
  }

  .open_menu {
    /* transform: translateX(0); */
    width: 100%;
    box-shadow: -5px 0 10px rgba(95, 93, 91, 0.7);
    z-index: 9999;
    -webkit-animation: rightBottomShow 1.2s cubic-bezier(0.55, 0.085, 0, 0.99)
      forwards;
    animation: rightBottomShow 1.2s cubic-bezier(0.55, 0.085, 0, 0.99) forwards;
  }

  @-webkit-keyframes rightBottomShow {
    0% {
      height: 3px;
      /* transform: translateX(100%); */
      right: -400px;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      padding-bottom: 0;
    }

    50% {
      height: 3px;
      /* transform: translateX(0%); */
      right: 0;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      padding-bottom: 0;
    }

    100% {
      height: 100vh;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      overflow-y: auto;
      padding-bottom: 40px;
      right: 0;
    }
  }

  @keyframes rightBottomShow {
    0% {
      height: 3px;
      /* transform: translateX(100%); */
      right: -400px;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
    }

    50% {
      height: 3px;
      right: 0;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
    }

    100% {
      height: 100vh;
      right: 0;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      overflow-y: auto;
    }
  }

  @-webkit-keyframes rightBottomHide {
    0% {
      height: 100vh;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      overflow: hide;
      right: 0;
    }

    50% {
      height: 3px;
      right: 0;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
    }

    100% {
      height: 3px;
      right: -400px;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
    }
  }

  @keyframes rightBottomHide {
    0% {
      height: 100vh;
      right: 0;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      overflow: hide;
      /* transform: translateX(0%); */
    }

    50% {
      height: 3px;
      right: 0px;
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
    }

    100% {
      height: 3px;
      right: -400px;
      /* transform: translateX(100%); */
      -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
      transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
    }
  }

  .my_row_menu {
    display: flex;
    padding-top: 15px;
  }

  .nav {
    margin-top: 30px;
  }

  .nav__list {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .nav__item {
    padding: 5px 0 7px 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    width: 100%;
  }

  .nav__item.hover-1 a::after {
    display: none;
  }

  .nav__item:not(:last-child) {
    margin-right: auto;
  }

  .nav__item > a {
    color: #fff;
    padding: 0;
    font-size: 18px;
    text-align: left;
    transition: 0.2s;
    font-weight: 700;
    transform: translateY(-50px);
    width: max-content;
    margin: 0 auto;
  }

  .open_menu .nav__item > a {
    -webkit-animation: fadeInTopCustom 0.8s cubic-bezier(0.55, 0.085, 0, 0.99)
      forwards;
    animation: fadeInTopCustom 0.8s cubic-bezier(0.55, 0.085, 0, 0.99) forwards;
    -webkit-animation-delay: 1.65s;
    animation-delay: 1.65s;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
  }

  @-webkit-keyframes fadeInTopCustom {
    0% {
      -webkit-transform: translateY(-50px);
      transform: translateY(-50px);
      opacity: 0;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      overflow: visible;
      opacity: 1;
    }
  }

  @keyframes fadeInTopCustom {
    0% {
      -webkit-transform: translateY(-50px);
      transform: translateY(-50px);
      opacity: 0;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      overflow: visible;
      opacity: 1;
    }
  }
  .open_menu .nav__item:first-child > a {
    -webkit-animation-delay: 1.65s;
    animation-delay: 1.65s;
  }

  .open_menu .nav__item:nth-of-type(2) > a {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
  }

  .open_menu .nav__item:nth-of-type(3) > a {
    -webkit-animation-delay: 1.55s;
    animation-delay: 1.55s;
  }

  .open_menu .nav__item:nth-of-type(4) > a {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }

  .open_menu .nav__item:nth-of-type(5) > a {
    -webkit-animation-delay: 1.45s;
    animation-delay: 1.45s;
  }

  .open_menu .nav__item:nth-of-type(6) > a {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
  }

  .open_menu .nav__item:nth-of-type(7) > a {
    -webkit-animation-delay: 1.35s;
    animation-delay: 1.35s;
  }

  .open_menu .nav__item:nth-of-type(8) > a {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
  }

  .has_child::before {
    display: none;
  }

  .open_child_menu {
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    right: -25px;
    top: 15px;
    background: url(../img/icon/arow_bottom.svg) no-repeat center;
  }

  .menu-item-has-children::before {
    display: none;
  }

  .open_child_menu {
    position: absolute;
    width: 24px;
    height: 24px;
    display: block;
    right: -32px;
    top: 0px;
    background: url(../img/icon/arow_bottom.svg) no-repeat center / 10px;
  }

  .sub-menu {
    padding: 70px 15px 40px;
    position: fixed;
    left: auto;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    background: transparent;
    border-radius: 0 0 2px 2px;
    border-bottom: none;
    transform: translateY(0%) translateX(100%);
    opacity: 1;
    pointer-events: all;
    display: block;
    margin-bottom: 0 !important;
    background: #fff;
    z-index: 15;
    height: 100vh;
  }

  .sub-menu.active {
    transform: translateX(0);
  }

  .close_child_menu {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    right: 15px;
    top: 15px;
    transform: rotate(180deg);
    background: url(../img/icon/menu_back.svg) no-repeat center / cover;
    cursor: pointer;
  }

  .child__item {
    width: 100%;
    padding: 0px 0 7px;
    text-align: center;
  }

  header .nav__item .child__item a {
    font-weight: 500;
    font-size: 18px;
    color: #171717;
    text-align: center;
    text-transform: uppercase;
  }
}
.c_white {
  color: #fff !important;
}
.section__title {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
  color: #110707;
}
.section__title_line {
  padding-bottom: 18px;
  position: relative;
}
.section__title_line:after {
  content: '';
  display: block;
  width: 92px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #2b60c5;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b60c5;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  height: 60px;
  width: 240px;
  box-shadow: inset 0 0 0px rgba(255, 255, 255, 0.6);
}
.btn:hover,
a.btn:hover {
  color: #fff;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.6);
}
.btn svg {
  margin-right: 5px;
}

.bg__style {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

svg path {
  transition: all 0.4s ease;
}
.contact__phone a {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
}
.contact__phone a span {
  color: #2b60c5;
  font-weight: 700;
}
.header__watsapp {
  font-size: 16px;
  color: #fff;
}
.header__watsapp svg {
  margin-right: 10px;
}
.contact__item {
  text-align: right;
}
.contact__item svg {
  display: none;
}
.contact__email a {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}
.head__section {
  padding-top: 90px;
  height: 100vh;
  max-height: 900px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.head__section::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(9, 9, 9, 0.74);
}

.offer__form {
  background: rgba(81, 81, 81, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  width: 567px;
  margin: 0 auto;
  padding: 57px 15px;
  max-width: 100%;
}
.form__wrap_offer {
  padding: 0 65px;
}

.advant__item {
  width: 100%;
}
.callback {
  background-position: center bottom;
}
.callback:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(9, 9, 9, 0.74);
}
.callback__phone {
  font-size: 30px;
  color: #fff;
}
.callback__phone:hover {
  color: #2b60c5;
}

.primers__swiper {
  height: 460px;
  position: relative;
}
.primers__swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.primers__slide {
  display: block;
  position: relative;
  opacity: 0.5;
  transition: all .4s ease;
}
/* .primers__slide:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #c4c4c4;
  opacity: 0.3;
} */
.primers__slide.swiper-slide-active ,
.primers__slide.swiper-slide-prev ,
.primers__slide.swiper-slide-next {
opacity: 1;
}
/* .primers__slide.swiper-slide-active:after ,
.primers__slide.swiper-slide-prev:after ,
.primers__slide.swiper-slide-next:after {
opacity: 0;
} */
.primers__pagination {
  width: 176px !important;
  display: flex;
  margin: 36px auto 0;
  height: 4px;
  background-color: #e6e6e6;
}
.primers__pagination .swiper-pagination-bullet {
  width: 100%;
  height: 4px;
  border-radius: 0;
  background-color: transparent;
  transition: all 0.4s ease;
  margin: 0 !important;
}
.primers__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #2b60c5;
}
.primers__arrow {
  position: absolute;
  width: 39px;
  height: 39px;
  z-index: 5;
  top: calc(50% - 19px);
}
.primers__arrow.primers__left {
  left: 10%;
}
.primers__arrow.primers__right {
  right: 10%;
}

.type__item {
  box-shadow: 0px 4px 30px rgba(191, 130, 109, 0.25);
}
.type__img {
  display: block;
  height: 460px;
}
.type__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.type__info {
  padding-left: 56px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  height: 106px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
}

.type__name {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2em;
  color: #2b60c5;
  position: relative;
  padding-left: 20px;
}
.type__name::before {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2b60c5;
}
.load__btn {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #2b60c5;
  display: flex;
  align-items: center;
  width: max-content;
}
.load__btn_header:hover {
  color: #fff;
}
.load__btn svg {
  margin-right: 13px;
}
.load__btn.load__btn_type {
  margin: 38px auto 0;
}
.video__item:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(9, 9, 9, 0.74);
}
.video__item {
  height: 460px;
  text-align: center;
}
.video__item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.video__link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  width: max-content;
}
.video__link svg {
  opacity: 0.5;
  transition: all 0.4s ease;
}
.video__link:hover {
  color: #fff;
}
.video__link:hover svg {
  opacity: 1;
}
.footer:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(9, 9, 9, 0.74);
}
.footer .contact__phone a span {
  color: #fff;
}
/* 
    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
   Blog page end
    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    */

/* 
    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
   work end
    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    */

/*

    .mt_10 .mt_15 .mt_20 .mt_30 .mt_35 .mt_40 .mt_45 .mt_50 
    .mb_10 .mb_15 .mb_20 .mb_25 .mb_30 .mb_35 .mb_40 .mb_45 .mb_50
ff_futura
    fw_light fw_normal  fw_medium fw_demi fw_bold fw_bolder fw_black fs_i 

    fz_12 fz_14 fz_15 fz_16 fz_17  fz_18 fz_20 fz_22 fz_24 fz_25 fz_26 fz_28 fz_30 fz_36 fz_42 fz_48 fz_50 fz_60

    pt_40 pt_50 pt_60 pt_80 pt_90 pt_100 pt_120
    pb_20 pb_25 pb_30 pb_35 pb_40 pb_50 pb_60 pb_80 pb_90 pb_100 pb_120

      c_dark  c_white  .c_orange c_blue c_blue_lt

    text_center .text_left .text_right  tt_upper

    .btn_xs .btn_small .btn_medium .btn_max btn_wh
    
    .bg_dark .bg_yel .bg_blue .bg_pink
    */

/* 
    ////////////////////////////////////////
    callback start
    ////////////////////////////////////////
    */
.input__group {
  margin-bottom: 20px;
  position: relative;
}

.input__group input {
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #cfcfcf;
  box-sizing: border-box;
  border-radius: 5px;
  color: #ffffff;
  padding-left: 28px;
  background-color: transparent;
}

/* .order__input_name {
  background: url(../img/user_icon_orange.png) no-repeat left center;
}

.order__input_phone {
  background: url(../img/phone_icon_orange.png) no-repeat left center;
} */
.select_span,
.place_span {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 28px;
  top: 22px;
  transition: all 0.4 ease;
}

.place_span span {
  color: #dc1118;
}

.select_span.fixed_span,
.place_span.fixed_span {
  opacity: 0;
  transition: all 0 ease;
}

.order__input_message {
  height: 160px;
  display: block;
  padding-top: 14px;
  padding-right: 14px;
  padding-left: 30px;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 0;
  font-size: 18px;
}

.check_input {
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0;
  margin-right: 12px;
}

.wpcf7-acceptance {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: 1px solid #e16b01;
  box-sizing: border-box;
  border-radius: 1px;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}

.wpcf7-acceptance input {
  cursor: pointer;
}

.wpcf7-acceptance * {
  margin: 0 !important;
}

.wpcf7-acceptance.checked_inp {
  background: #fff url(../img/icon/correct.svg) no-repeat center;
}

input.wpcf7-not-valid {
  border-color: red !important;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(9, 9, 9, 0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: -9;
  opacity: 0;
  transition: all 0.4s ease;
}

.popup.open {
  pointer-events: all;
  z-index: 9999;
  opacity: 1;
}

.popup__content {
  width: 98%;
  max-width: 630px;
  padding: 65px 65px 40px;
  position: relative;
  transform: translateY(50px);
  transition: all 0.4s ease;
  border-radius: 10px;
  background: rgb(255 255 255 / 30%);
  backdrop-filter: blur(15px);
  max-height: 98%;
  overflow-y: auto;
}
.popup.open .popup__content {
  transform: translateY(0%);
  position: relative;
  /* top: 50%; */
}

.form__wrap_popup .input__group {
  width: 100%;
}

.form__wrap_popup .input__group.input__group_select {
  width: 47%;
}
.popup__btn.btn {
  border-radius: 5px;
  width: 100%;
}
.popup__agree a {
  color: #499bfc;
}

.popup__content .section__offer {
  margin-bottom: 30px;
}

.popup__content .checkbox__wrap {
  justify-content: center;
}

.checkbox__text a {
  color: #303030;
  border-bottom: 1px solid #303030;
}

.close_popup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 25px;
}

.close_popup > * {
  pointer-events: none;
}
.close_popup svg {
  width: 20px;
  height: 20px;
}

.open__form > * {
  pointer-events: none;
}

.xyz_start {
  opacity: 0;
}

.xyz_start.xyz-in {
  opacity: 1;
}

select,
select:focus,
select:hover,
select :active {
  border: none;
  outline: none;
}

.order__select {
  height: 220px;
  overflow-y: auto;
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  padding: 15px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 5;
}
.order__select p {
  display: none;
}
.order__select.show {
  opacity: 1;
  pointer-events: all;
}
.order__select button {
  display: block;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
  color: #1d1c1c;
  margin-bottom: 5px;
  width: 100%;
  text-align: left;
}

.file__wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.show_file {
  max-height: 127px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}
.show_file p {
  color: #fff;
}
.delite__file {
  width: 13px;
  height: 13px;
  position: absolute;
  right: 10px;
  top: 0;
  cursor: pointer;
  z-index: 5;
}
.delite__file svg {
  width: 100%;
  height: 100%;
}
.input__group.input__group_file {
  border-bottom: 1px solid #fff;
}
.input__group.input__group_file input {
  background-color: transparent;
  opacity: 0;
  cursor: pointer;
}
.input__group.input__group_file .place_span {
  left: 0;
}
.input__group.input__group_file .place_span:before {
  content: '';
  display: block;
  width: 38px;
  height: 31px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/photo.svg) no-repeat left center / contain;
}
.wpcf7-response-output {
  display: none;
}
