body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
  background: #101010;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  /* font-family: "Gilroy"; */
}

:root {
  --second-font: "Great Vibes", cursive;
}

.hidden-anim {
  opacity: 0;
  visibility: hidden;
}

h2 {
  font-weight: 600;
  font-size: 26px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

button:focus {
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* :root {
  --main-color: #FE8300;
} */

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
  margin: 0 auto;
}

.burger_block {
  display: none;
}

.burger-menu-wraper {
  display: none;
  width: 45px;
  height: 27px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 12px;
}

#nav-icon3 span:nth-child(4) {
  top: 24px;
}

#nav-icon3.show-menu span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon3.show-menu span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.show-menu span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.show-menu span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.mobile_menu {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: -100px;
  right: 0;
  z-index: 100;
  background: transparent;
  /* box-shadow: 0px 4px 4px 0px rgba(239, 239, 239, 0.50); */
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  isolation: isolate;
}

.header.show-elements {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 195px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: 0.4s;
  gap: 35px;
}

@media (min-width: 992px) {
  .header.sticky .header_wrapper {
    padding: 10px 0;
  }
}

.menu-header ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu-header ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
  transition: 0.4s;
}

/* .menu-header ul li a:hover {
  color: #693DB4;
} */

.header_right-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (min-width: 992px) {
  .header.sticky .header_num {
    font-size: 20px;
  }
}

.header_num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
}

.header_btn {
  border: 1px solid #fff;
  padding: 0 25px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 4px;
}

.header_btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.top_section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.video_background {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -1;
  /* height: 100%; */
  isolation: isolate;
  overflow: hidden;
}

.video_background:before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}

.video_background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_iframe_wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video_iframe_wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}


/* .video_iframe_wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
} */


.text_anim #lottie-container {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  translate: 0 50px;
  transition: 2s cubic-bezier(.34, .88, .44, .95);
}

.text_anim {
  padding: 130px 0 65px;
}

.text_anim_t {
  max-width: 734px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
  translate: 0 50px;
  transition: 2s cubic-bezier(.34, .88, .44, .95);
  transition-delay: 0.2s;
}

.text_anim #lottie-container.show-elements,
.text_anim_t.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.img_txt_block {
  padding: 80px 0;
  display: flex;
  align-items: flex-end;
}

.img_txt_i img {
  width: 100%;
}

.img_txt_i {
  flex-basis: 57%;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: 0 70px;
}

.img_txt_t {
  flex-basis: 43%;
  padding-bottom: 40px;
  padding-left: 130px;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: 0 -70px;
}

.img_txt_i.show-elements,
.img_txt_t.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.pretitle {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.6;
  margin-bottom: 12px;
}

.descr_txt p {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.top_title {
  font-weight: 600;
  font-size: 54px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  transition: 2s cubic-bezier(.34, .88, .44, .95);
  transition-delay: 0.2s;
  translate: -30px 0;
}

.top_subtitle {
  font-weight: 600;
  font-size: 31px;
  line-height: 120%;
  text-transform: lowercase;
  color: #fff;
  margin: 0;
  transition: 2s cubic-bezier(.34, .88, .44, .95);
  transition-delay: 0.3s;
  translate: -30px 0;
}

.top_section_wrapper {
  max-width: 495px;
}

@media(min-width: 1690px) {
  .top_section_wrapper {
    max-width: 42%;
  }

  .top_title {
    font-size: 82px;
  }
}

.top_descr p {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.top_descr {
  margin-top: 15px;
  transition: 2s cubic-bezier(.34, .88, .44, .95);
  transition-delay: 0.4s;
  translate: -30px 0;
}

.top_btn_s {
  transition-delay: 0.4s;
  translate: -30px 0;
  transition: 2s cubic-bezier(.34, .88, .44, .95);
}

.top_btn_s.show-elements,
.top_descr.show-elements,
.top_subtitle.show-elements,
.top_title.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.top_btn {
  margin-top: 35px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  cursor: pointer;
  position: relative;
  padding: 13px 17px;
  border: 1px solid transparent;
  transition: 0.3s;
  border-radius: 4px;
}

.top_btn:hover {
  border: 1px solid white;
}

.wpcf7-form .top_btn p {
  width: 86px;
}

.wpcf7-form .top_btn {
  position: relative;
}

.wpcf7-form .top_btn p input {
  position: absolute;
  inset: 0;
  right: -50px;
}

.wpcf7-form .top_btn p input:active {
  background-color: transparent !important;
  border-color: transparent !important;
  border: unset !important;
  box-shadow: unset !important;
}

.wpcf7-form .top_btn_icon p {
  width: auto;
}

/* .top_btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0) 100%);
  width: 334px;
  height: 105px;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
  scale: 0.3;
}

.top_btn:hover:before {
  opacity: 1;
  scale: 1.1;
} */

.top_btn_icon {
  position: relative;
}

.btn_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.top_btn span {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}

/* .top_btn:hover span {
  translate: 5px 0;
} */

.top_btn:hover .btn_circ {
  animation: spin 5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.img_txt_block_centered {
  align-items: center;
}

.img_txt_block_centered .img_txt_t {
  padding-bottom: 0;
}

.img_txt_block_switch {
  flex-direction: row-reverse;
}


.img_txt_block_switch .img_txt_t {
  padding-left: 0;
  padding-right: 130px;
}

.descr_txt ul {
  padding-left: 20px;
  /* list-style-type: disc; */
}

.descr_txt ul li {
  position: relative;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.descr_txt ul li:before {
  content: '';
  position: absolute;
  top: 10px;
  left: -12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
}

.img_txt_block_bg {
  background: #000;
  position: relative;
  isolation: isolate;
}

.img_txt_block_bg:before {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  background: #000;
  height: 100%;
  z-index: -1;
  top: 0;
  bottom: 0;
}

.img_txt {
  overflow: hidden;
}

.img_txt_icons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.img_txt_icon_item {
  display: flex;
  align-items: center;
  gap: 22px;
}

.img_txt_icon_item_t_t {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.img_txt_icon_item_t_b {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.img_txt_icon_item_img {
  width: 50px;
  min-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.who_appreciate {
  padding: 20px 0 100px;
  background: #000;
}

.who_pretitle {
  text-align: center;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: 0 50px;
}

.who_title {
  text-align: center;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: 0 50px;
}

.who_subtitle {
  text-align: center;
  translate: 0 50px;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
}

.who_pretitle.show-elements,
.who_title.show-elements,
.who_subtitle.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0;
}

.who_block {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.who_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  transition: 2s cubic-bezier(.34, .88, .44, .95);
  translate: -40px 0;
}

.who_item.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.who_item:nth-child(1) {
  transition-delay: 0.2s;
}

.who_item:nth-child(2) {
  transition-delay: 0.3s;
}

.who_item:nth-child(3) {
  transition-delay: 0.4s;
}

.who_item:nth-child(4) {
  transition-delay: 0.5s;
}

.who_item_txt {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
  max-width: 230px;
  width: 100%;
  margin: 0 auto;
}

.complect {
  padding: 80px 0 140px;
  overflow: hidden;
}

.complect_wrapper {
  margin-top: 60px;
  /* height: 640px; */
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 45px;
  padding-left: 100px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.complect_img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 2s cubic-bezier(.34, .88, .44, .95);
  translate: -50px;
}

.main_complect,
.additional_options {
  transition: 2s cubic-bezier(.34, .88, .44, .95);
  translate: -50px;
  transition-delay: 0.2s;
}

.additional_options {
  transition-delay: 0.4s;
}

.complect_img.show-elements,
.main_complect.show-elements,
.additional_options.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.main_complect_title {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 15px;
}

.main_complect_list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.main_complect_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 500px;
}

.main_complect_list li:first-child {
  grid-column: 1 / 3;
}

.additional_list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 480px;
  justify-content: space-between;
}

.additional_list_price {
  backdrop-filter: blur(35px);
  background: #fff;
  border-radius: 7px;
  font-weight: 600;
  font-size: 16px;
  width: 93px;
  height: 32px;
  color: #353535;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_complect_variants {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.main_complect_variant {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 14px 26px 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.main_complect_variant_num {
  backdrop-filter: blur(15px);
  background: #fff;
  border-radius: 7px;
  padding: 6px 9px;
  font-weight: 600;
  font-size: 18px;
  color: #353535;
}

/* .additional_list li:before {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: -35px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
} */

.additional_list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.additional_list_top {
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.additional_list_bottom {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  opacity: 0.7;
}

.gift .img_txt_i {
  flex-basis: 50%;
}

.gift .img_txt_t {
  flex-basis: 50%;
  padding-left: 0;
}

.gift .img_txt_block {
  gap: 130px;
  padding: 0 0 80px;
}

.design {
  padding: 70px 0 80px;
  background: #000;
}

.who_subtitle {
  font-weight: 300;
}

.design_subtitle {
  width: 100%;
  max-width: 925px;
  margin: 0 auto;
}

.design_wrapper {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  width: 100%;
  max-width: 1075px;

}

.design_item {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  /* isolation: isolate; */
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: 0 50px;
}

.design_item.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0;
}

.design_item:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
}

.design_item:hover:before {
  opacity: 0.8;
  visibility: visible;
}

.design_item img {
  width: 100%;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
}

.design_item:hover img {
  scale: 1.2;
}

.design_item span {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  transition: 0.7s cubic-bezier(.34, .88, .44, .95);
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  translate: -50% 150%;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  display: block;
  width: 100%;
}

.design_item:hover span {
  opacity: 1;
  visibility: visible;
  translate: -50% -50%;
}

.design_item_last {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #101010;
}

.design_item_last_t {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  color: #fff;
}

.design_item_last .top_btn {
  margin-top: 0;
}

.design_item_last .top_btn span {
  text-align: left;
  font-weight: 400;
}

.howuse {
  padding: 80px 0;
  overflow: hidden;
}

.howuse_wrapper {
  display: flex;
  gap: 30px;
}


.howuse_side {
  flex-basis: 50%;
}

.howuse_side_t {
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: -50px 0;
}

.howuse_side_i {
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: 50px 0;
}

.howuse_side_t.show-elements,
.howuse_side_i.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.howuse_side img {
  width: 100%;
}

.howuse_list {
  margin-top: 40px;
  position: relative;
  isolation: isolate;
}

.howuse_list:before {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 22px;
  height: 94%;
  z-index: -1;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.howuse_list_item {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 25px;
}

.howuse_list_item span {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.howuse_list_item_num {
  width: 45px;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #171717;
}

.howuse_side_t {
  padding-top: 40px;
}

.reviews {
  background: #000;
  padding: 80px 0 120px;
}

.reviews_wrapper {
  width: 90%;
  margin: 60px auto 0;
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px; */
}

.reviews_item {
  background: #101010;
  padding: 45px 25px 35px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  translate: 0 50px;
  margin: 0 7px;
  transition: 1.5s cubic-bezier(.34, .88, .44, .95);
}

.reviews_item_img img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

.reviews_item.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.reviews_item:nth-child(2) {
  transition-delay: 0.2s;
}

.reviews_item:nth-child(3) {
  transition-delay: 0.3s;
}

.reviews_item_img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.reviews_item_name {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin: 25px 0 15px;
}

.reviews_item_txt {
  font-weight: 300;
  font-size: 13px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.reviews_wrapper .slick-list,
.reviews_wrapper .slick-track {
  display: flex !important;
}

.reviews_item_bg_l {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  scale: 1;
  width: 25%;
}

.reviews_item_bg_r {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  width: 37%;
}

.reviews_item:hover .reviews_item_bg_l {
  width: 60%;
}

.reviews_item:hover .reviews_item_bg_r {
  width: 60%;
}

.reviews_wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background-color: #000;
  background-image: url(/wp-content/uploads/2025/11/slider-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 0;
  z-index: 10;
  transition: 0.6s cubic-bezier(.34, .88, .44, .95);
}

.reviews_wrapper .slick-arrow:hover {
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.7));
}

.reviews_wrapper .slick-prev {
  left: -50px;
  rotate: 180deg;
}

.reviews_wrapper .slick-next {
  right: -50px;
}

.standart_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  padding: 0 60px;
  height: 56px;
  transition: 0.4s;
  position: relative;
  left: 50%;
  translate: -50% 0;
  margin-top: 60px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  background: transparent;
  transition: 0.3s;
  border-radius: 4px;
}

.standart_btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq {
  background: #000;
  padding-bottom: 100px;
}

.faq_title {
  text-align: center;
  translate: 0 50px;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
}

.faq_cat_item_home {
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: 0 40px;
}

.bottom_block_side_img {
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: -40px 0;
}

.bottom_block_side_t {
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: 40px 0;
}

.faq_title.show-elements,
.faq_cat_item_home.show-elements,
.bottom_block_side_img.show-elements,
.bottom_block_side_t.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}



.faq_wrapper {
  margin: 60px auto 0;
  width: 100%;
  max-width: 870px;
}

.faq_ques {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq_answ {
  overflow: hidden;
  max-height: 0;
  transition: 0.4s;
  opacity: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.faq_ques.active+.faq_answ {
  opacity: 1;
  margin-top: 15px;
}

.faq_cat_item {
  padding: 20px 0;
  border-bottom: 1px solid #d9d9d9;
}

.faq_plus {
  width: 18px;
  border-top: 2px solid #fff;
  position: relative;
}

.faq_plus:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  height: 18px;
  border-right: 2px solid #fff;
  transition: 0.3s;
}

.faq_ques.active .faq_plus:before {
  opacity: 0;
}

.bottom_block {
  padding: 80px 0;
  overflow: hidden;
}

.bottom_block_wrapper {
  display: flex;
  align-items: flex-end;
  gap: 130px;
}

.bottom_block_side {
  flex-basis: 50%;
}

.bottom_block_side img {
  width: 100%;
}

.bottom_block_side_t {
  padding-bottom: 40px;
}

.bottom_block_btns {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.btn_order {
  padding: 0 40px;
  position: unset;
  translate: 0 0;
  margin: 0;
  transition: 0.3s;
  border-radius: 4px;
}

.btn_order:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn_consult {
  border: unset;
  background: transparent;
  border-bottom: 1px dashed #fff;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #fff;
}

footer {
  padding: 60px 0;
  background: #000;
  transition: 1s cubic-bezier(.34, .88, .44, .95);
  translate: 0 50px;
  overflow: hidden;
}

footer.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo-wrapper-img img {
  width: 200px;
  height: 130px;
}

.footer_social {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer_social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: 0.3s;
}

.footer_social a:hover {
  filter: drop-shadow(0px 0px 12px white);
}

.footer_content_bottom {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer_content_bottom a {
  color: #fff;
}

.footer_content_bottom span {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
}

.footer_menu_title {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.footer_menu_contact_con_item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 22px;
  /* text-transform: uppercase; */
  color: #fff;
  margin-bottom: 10px;
}

.footer_btn {
  margin-top: 30px;
}

#menu-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 17px;
  column-gap: 80px;
}

#menu-footer li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}

.form_popup_order {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1000;
  width: 600px;
  background: #1a1a1a;
  padding: 45px 50px;
  transition: 0.8s cubic-bezier(.34, .88, .44, .95);
  scale: 0.7;
  opacity: 0;
  visibility: hidden;
}

.form_popup_order.show {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.text_descr {
  margin-top: 15px;
  width: 100%;
}

.text_descr textarea {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 25px;
  width: 100%;
  height: 90px;
  background: transparent;
  resize: none;
  margin-top: 8px;
  color: white !important;
}

.text_descr textarea:focus {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: unset;
}

.wpcf7-spinner {
  display: none;
}

.form_flex p {
  display: flex;
  align-items: center;
  gap: 15px;
}

.form_popup_order br {
  display: none;
}

.form_flex p input {
  margin-bottom: 15px !important;
}

.form_popup_short select:focus {
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: unset;
}

.form_popup_short select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 50px !important;
  border: 1px solid #535353 !important;
  padding: 0 25px;
  background: transparent !important;
  color: #757575;
  border-radius: unset !important;
}

.form_popup_short select option {
  background: #000;
  color: #fff;
}

.form_popup_over {
  position: fixed;
  inset: 0;
  z-index: 990;
  transition: 0.5s;
  background: #000;
  opacity: 0;
  visibility: hidden;
}

.form_popup_over.show {
  opacity: 0.5;
  visibility: visible;
}

.form_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1000;
  padding: 45px 50px;
  background: #1a1a1a;
  transition: 0.8s cubic-bezier(.34, .88, .44, .95);
  width: 400px;
  opacity: 0;
  visibility: hidden;
  scale: 0.6;
}

.form_popup.show {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.form_popup_close {
  top: 10px;
  right: 10px;
  position: absolute;
  cursor: pointer;
}

.form_popup_title {
  font-weight: 600;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.form_popup_subtitle {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.form_popup_short {
  margin-top: 30px;
}

.wpcf7-not-valid {
  border: 1px solid red !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  text-align: center;
  border: unset !important;
}

.form_popup_short .wpcf7-form-control-wrap input {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 25px;
  height: 50px;
  background: transparent;
  margin-bottom: 10px;
  width: 100%;
  color: #fff;
}

.form_popup_short .wpcf7-form-control-wrap input:focus {
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: unset;
}

.form_popup_short .top_btn {
  position: relative;
  left: 50%;
  translate: -50% 0;
  margin-top: 25px;
}

.form_popup_short .top_btn input {
  background: transparent;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  border: unset;
  box-shadow: unset;
  padding: 0;
}

.top_img_mov {
  display: none;
}

.complect_btns {
  margin-top: 0;
}

.page-404-content {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-404-text-title {
  margin: 35px 0 10px;
  font-weight: 600;
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.page-404-text-subtitle {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.link-to-home {
  margin-top: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  padding: 0 25px;
  height: 50px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}

.link-to-home:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.important_notes {
  margin-top: 45px;
}

.important_notes_list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.important_notes_list li svg {
  min-width: 32px;
}

.important_notes_text {
  margin-top: 30px;
  padding: 20px 25px;
  border: 1px solid white;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
}

.grecaptcha-badge {
  opacity: 0;
}



















@media(max-width: 1430px) {
  .menu-header ul {
    gap: 20px;
  }

  .menu-header ul li a {
    font-size: 13px;
  }

  .header_btn {
    padding: 0 20px;
  }

  .header_wrapper {
    gap: 25px;
  }

  .img_txt_t {
    padding-left: 90px;
  }

  .img_txt_block_switch .img_txt_t {
    padding-right: 90px;
  }

  .gift .img_txt_block {
    gap: 90px;
  }

  .bottom_block_wrapper {
    gap: 90px;
  }
}



@media(max-width: 1330px) {
  .container {
    padding: 0 30px;
  }
}

@media(max-width: 1280px) {



  .header_num svg {
    display: none;
  }

  .top_section_wrapper {
    max-width: 450px;
  }

  .top_subtitle {
    font-size: 28px;
  }

  .top_title {
    font-size: 50px;
  }
}

@media(max-width: 1220px) {
  .header_num {
    display: none;
  }
}

@media(max-width: 1024px) {

  .complect_wrapper {
    padding-left: 35px;
    padding-top: 37px;
    padding-bottom: 37px;
  }

  .header_num {
    font-size: 0;
  }

  .header_num svg {
    display: block;
  }

  .container {
    padding: 0 30px;
  }

  .header_btn {
    padding: 0 15px;
    font-size: 12px;
    height: 40px;
  }

  .header_wrapper {
    gap: 20px;
  }

  .header_wrapper .logo_wrapper img {
    width: 80px;
  }

  .top_section_wrapper {
    max-width: 380px;
  }

  .top_title {
    font-size: 42px;
  }

  .top_subtitle {
    font-size: 24px;
  }

  .top_descr p {
    font-size: 14px;
  }

  .text_anim {
    padding: 90px 0 30px;
  }

  .img_txt_t {
    padding-left: 44px;
  }

  h2 {
    font-size: 24px;
  }

  .descr_txt p {
    font-size: 14px;
  }

  .img_txt_block_switch .img_txt_t {
    padding-right: 44px;
  }

  .descr_txt ul li {
    font-size: 14px;
  }

  .gift .img_txt_block {
    gap: 44px;
  }

  .complect {
    padding: 80px 0 95px;
  }

  .design_wrapper {
    gap: 40px;
  }

  .bottom_block_wrapper {
    gap: 44px;
  }

  .menu-header ul li a {
    font-size: 12px;
  }

  #menu-footer {
    column-gap: 30px;
  }

  .footer_menu_contact_con_item {
    font-size: 17px;
  }

  #menu-footer li a {
    font-size: 15px;
  }
}

@media(max-width: 992px) {

  .header_num {
    display: flex;
  }

  .reviews_item_img,
  .reviews_item_img img {
    width: 70px;
    height: 70px;
  }

  .complect_wrapper {
    gap: 35px;
  }

  .menu-header {
    display: none;
  }

  .burger_block {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .burger-menu-wraper {
    display: block;
  }

  .mobile_menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    translate: 0 -120%;
    z-index: 50;
    background-color: #000;
    position: fixed;
    inset: 0;
    padding: 120px 15px 40px;
    /* background-image: url(/wp-content/uploads/2023/10/mobile-menu-bg.svg); */
    /* background-repeat: no-repeat;
    background-size: cover; */
    overflow: auto;
  }

  .mobile_menu.show-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .mobile_menu .menu-header {
    display: block;
  }

  .logo_wrapper,
  .burger-menu-wraper {
    position: relative;
    z-index: 55;
  }

  .menu-header ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .menu-header ul li {
    width: 100%;
  }

  .menu-header ul li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
    width: 100%;
  }

  .header_num {
    font-size: 16px;
  }

  .img_txt_block {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }

  .img_txt_t {
    padding-left: 0;
    padding-bottom: 0;
    width: 100%;
  }

  .img_txt_block_switch .img_txt_t {
    padding-right: 0;
  }

  .img_txt_i {
    flex-basis: 100%;
    width: 100%;
  }

  .img_txt_block_bg {
    gap: 45px;
  }

  .who_appreciate {
    padding: 70px 0 88px;
  }

  .who_item_txt {
    max-width: 160px;
    font-size: 13px;
  }

  .complect_wrapper {
    padding-left: 30px;
  }

  .complect {
    padding: 80px 0;
  }

  .design_item_last_t {
    font-size: 15px;
  }

  .design_wrapper {
    gap: 25px;
  }

  .design_item_last_t {
    font-size: 14px;
  }

  .top_btn span {
    font-size: 14px;
  }

  .howuse_wrapper {
    flex-direction: column;
  }

  .howuse_side_t {
    padding-top: 0;
  }

  .howuse {
    padding: 70px 0;
  }

  .reviews {
    padding-top: 70px;
  }

  .reviews_item {
    padding: 30px 20px;
  }

  .reviews_item_txt {
    font-size: 12px;
  }

  .reviews_item_name {
    margin: 15px 0;
  }

  .standart_btn {
    margin-top: 50px;
  }

  .faq_title {
    margin-bottom: 0;
  }

  .bottom_block_wrapper {
    flex-direction: column-reverse;
  }

  .bottom_block_side {
    flex-basis: 100%;
    width: 100%;
  }

  .menu-wrapper-mobile {
    width: 100%;
  }

  .bottom_block_btns .btn_order {
    margin-top: 0;
  }

  .bottom_block_side_t {
    padding-bottom: 0;
  }

  .footer_content {
    flex-wrap: wrap;
  }

  .header_btn {
    height: 50px;
    min-height: 50px;
    padding: 0 25px;
    font-size: 16px;
  }

  .menu_social {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .menu_social a {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }



}

@media(max-width: 600px) {

  .page-404-text-title {
    font-size: 18px;
  }

  .page-404-content {
    height: 78vh;
    padding-top: 80px;
  }

  .who_block {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .who_item {
    gap: 15px;
  }

  .container {
    padding: 0 15px;
  }

  .header_right-side .header_btn {
    display: none;
  }

  .header_num {
    font-size: 15px;
    white-space: nowrap;
  }

  .header_wrapper {
    gap: 10px;
  }

  .top_img_mov {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 100%;
    height: 260px;
  }



  .top_img_mov img {
    width: 80%;
    transition: 2s cubic-bezier(.34, .88, .44, .95);
    filter: grayscale(1);
    position: absolute;
    top: 0;
    right: 0;
  }

  .top_img_mov img.show-elements {
    width: 100%;
    filter: grayscale(0);
    opacity: 1;
    visibility: visible;
  }

  .video_background {
    display: none;
  }

  .top_title {
    font-size: 37px;
    text-align: center;
  }

  .top_subtitle {
    font-size: 21px;
    text-align: center;
  }

  .top_descr p {
    font-size: 12px;
    text-align: center;
  }

  .top_section_wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
    padding-bottom: 70px;
  }

  .img_txt_icons {
    margin-top: 25px;
  }

  .img_txt_icon_item {
    gap: 17px;
  }

  .who_appreciate {
    padding: 60px 0 70px;
  }

  .complect {
    padding: 60px 0;
  }

  .main_complect_list li,
  .additional_list_top {
    font-size: 16px;
  }

  .additional_list_bottom {
    font-size: 14px;
  }

  .main_complect_variants {
    flex-direction: column;
    align-items: flex-start;
  }

  .main_complect_list,
  .additional_list li {
    max-width: 100%;
  }

  .reviews_wrapper {
    width: 80%;
    margin: 28px auto 0;
  }

  .reviews_wrapper .slick-next {
    right: -38px;
  }

  .reviews_wrapper .slick-prev {
    left: -38px;
  }

  .complect_wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main_complect_list {
    display: flex;
    flex-direction: column;
  }

  .design_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .design_item_last {
    aspect-ratio: 1/1;
  }

  .design_item_last_t {
    font-size: 20px;
  }

  .top_btn span {
    font-size: 17px;
  }

  .reviews_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .reviews {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .faq_wrapper {
    margin-top: 25px;
  }

  .faq {
    padding-bottom: 60px;
  }

  .bottom_block {
    padding: 60px 0;
  }

  .bottom_block_btns {
    flex-direction: column;
    gap: 30px;
  }

  .bottom_block_btns .btn_order {
    width: 100%;
  }

  .footer_content {
    justify-content: center;
    gap: 50px;
  }

  #menu-footer {
    text-align: center;
    grid-template-columns: repeat(1, 1fr);
  }

  .footer_menu_title {
    font-size: 20px;
    text-align: center;
  }

  #menu-footer li a {
    font-size: 18px;
  }

  .footer_content_bottom {
    flex-direction: column;
    margin-top: 50px;
  }

  .standart_btn {
    margin-top: 38px;
  }

  .form_popup_order,
  .form_popup {
    width: 92%;
  }

  .form_popup_order,
  .form_popup {
    padding: 45px 25px;
  }

  .form_flex p {
    flex-direction: column;
    gap: 0;
  }

  .text_descr {
    text-align: center;
  }

  .menu-header ul li a {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}

@media(max-width: 320px) {
  .header_num {
    font-size: 0;
  }

  .who_block {
    grid-template-columns: repeat(1, 1fr);
  }

  .additional_list_price {
    font-size: 10px;
  }

  .additional_list_bottom {
    font-size: 11px;
  }
}