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

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

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

h2 {
  font-weight: 400;
  font-size: 102px;
  line-height: 130%;
  color: #f3f3f3;
  font-family: "Cormorant", serif;
}

h1 {
  font-family: "Cormorant", serif;
}

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: linear-gradient(90deg, #adc56f 0%, #c3e668 100%);
}

.container {
  max-width: 1160px;
  padding: 0 15px;
  margin: 0 auto;
}

/* .burger_block {
  display: none;
} */


.hidden-anim {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s cubic-bezier(.34, .88, .44, .95);
}

.leftAnim {
  translate: -50px 0;
  transition: 1s;
}

.rightAnim {
  translate: 50px 0;
}

.bottomAnim {
  translate: 0 50px;
}

.topAnim {
  translate: 0 -50px;
}

.scaleAnim {
  scale: 0.1;
}

.scaleAnim07 {
  scale: 0.7;
}

.delay_02 {
  transition-delay: 0.2s;
}

.delay_03 {
  transition-delay: 0.3s;
}

.delay_04 {
  transition-delay: 0.4s;
}

.delay_05 {
  transition-delay: 0.5s;
}

.delay_06 {
  transition-delay: 0.6s;
}

.delay_08 {
  transition-delay: 0.8s;
}

.delay_1 {
  transition-delay: 1s;
}


.show-elements.leftAnim,
.show-elements.rightAnim,
.show-elements.bottomAnim,
.show-elements.topAnim,
.show-elements.scaleAnim,
.show-elements.scaleAnim07 {
  translate: 0;
  visibility: visible;
  opacity: 1;
  scale: 1;
}





.burger-menu-wraper {
  /* display: none; */
  width: 48px;
  height: 14px;
  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: white;
  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;
  display: none;
}

#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: 0;
  right: 0;
  z-index: 100;
  transition: 0.8s;
  border-bottom: 1px solid #2F3844;
}



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

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

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

.menu-header ul li a {
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  transition: 0.4s;
}

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


.header.sticky {
  background: #0b1f0e;
}


.header_num {
  font-weight: 600;
  font-size: 18px;
  line-height: 139%;
  color: #fff;
  opacity: 0.5;
  transition: 0.3s;
}

.header_num:hover {
  opacity: 1;
}

.burger_menu {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  /* max-height: 730px; */
  padding: 48px 40px;
  background: #0b1f0e;
  z-index: 1000;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* justify-content: space-between; */
  transition: 0.7s cubic-bezier(.34, .88, .44, .95);
  translate: 100% 0;
}

.logo_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 10;
}

.burger_menu.show-menu {
  translate: 0 0;
}

.burger_menu_close {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #0b3010;
  cursor: pointer;
  transition: 0.3s;
}

.burger_menu_close:hover {
  background: #104217;
}

.burger_menu .footer_email {
  font-size: 23px;
}

.burger_menu_over {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
}

.burger_menu .footer_email,
.burger_menu .footer_num {
  margin-bottom: 0;
}

.burger_menu .footer_num {
  text-align: left;
  font-size: 25px;
}

.burger_menu_over.show-menu {
  opacity: 0.3;
  visibility: visible;
}

.header_social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main_home {
  padding-top: 115px;
}

.top_section {
  padding-top: 54px;
  position: relative;
  isolation: isolate;
}

.img_top_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}

.top_section_title {
  font-weight: 400;
  font-size: 102px;
  line-height: 105%;
  text-align: center;
  color: #f3f3f3;
  margin-bottom: 45px;
  transition: 0.8s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px) perspective(600px) rotateX(15deg);
}

.top_section_title.show-elements {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) perspective(600px) rotateX(0);
}

.top_section_title span {
  color: #adc56f;
}

.top_section_descr {
  transition: 0.8s;
  transition-delay: 0.2s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px) perspective(600px) rotateX(15deg);
}

.top_section_descr.show-elements {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) perspective(600px) rotateX(0);
}

.top_section_descr p {
  font-weight: 400;
  font-size: 26px;
  line-height: 162%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #a5a5a5;
}

.top_section_descr p strong {
  color: #dbdbdb;
  font-weight: 400;
}

.top_section_btn {
  margin-top: 75px;
  position: relative;
  left: 50%;
  translate: -50% 0;

}

.button_anim_wrapper {
  transition: 0.8s;
  transition-delay: 0.4s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px) perspective(600px) rotateX(15deg);
}

.button_anim_wrapper.show-elements {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) perspective(600px) rotateX(0);
}

.green_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 72px;
  width: 400px;
  background: #C3E668;
  border-radius: 12px;
  font-weight: 600;
  font-size: 21px;
  line-height: 200%;
  letter-spacing: -0.03em;
  color: #141b24;
  isolation: isolate;
  transition: 0.4s;
  position: relative;
}

.green_btn:hover {
  color: #141b24;
  background: #cddf9c;
}

.green_btn_over {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  pointer-events: none;
  transition: 0.5s;
}

.green_btn:hover .green_btn_over {
  scale: 1.2;
}

.green_btn svg {
  transition: 0.4s;
}

.green_btn:hover svg {
  translate: 5px 0;
}

.second_img img {
  width: 92%;
}

.second_img {
  display: flex;
  justify-content: center;
}

/* .second_img_i {
  transition: 0.9s;
  transition: 1.5s cubic-bezier(.34, .88, .44, .95);
  scale: 0.7;
  opacity: 0;
  visibility: hidden;
  filter: blur(15px) grayscale(1);
} */

/* .second_img_i.show-elements {
  opacity: 1;
  visibility: visible;
  scale: 1;
  filter: blur(0) grayscale(0);
} */

.about_wrapper {
  display: flex;
}

.about_side_r_item {
  width: 480px;
  height: 344px;
  padding: 52px 44px 52px 60px;
  border: 3px solid #484848;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.about_side_r_item:first-child {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 0;
  background: linear-gradient(225deg, #0d3212 0%, rgba(13, 50, 18, 0) 100%);
}

.about_side_r_item:nth-child(2) {
  background: linear-gradient(225deg, rgba(13, 50, 18, 0) 0%, #0d3212 100%);
  border-bottom: 0;
}

.about_side_r_item:nth-child(3) {
  background: linear-gradient(315deg, #0d3212 0%, rgba(13, 50, 18, 0) 100%);
  border-bottom-right-radius: 20px;
}

.about_side_l_t {
  height: 344px;
}

.about_side_l_b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: block;
  border: 3px solid #484848;
  border-right: unset;
  object-position: 12% 0;
}

.about_side_l_b {
  height: calc(100% - 344px);
}

.about_title {
  margin-bottom: 21px;
  line-height: 130%;
}

.about_descr p {
  font-weight: 400;
  font-size: 21px;
  line-height: 167%;
  color: #a5a5a5;
}

.about_descr p strong {
  font-weight: 500;
  color: #dbdbdb;
}

.about_side_r_txt {
  font-weight: 500;
  font-size: 21px;
  line-height: 167%;
  letter-spacing: -0.02em;
  color: #a5a5a5;
}

.why {
  padding: 95px 0;
  margin-top: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.why_title {
  font-weight: 400;
  font-size: 102px;
  line-height: 100%;
  color: #f3f3f3;
}

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

.why_wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 50px; */
  row-gap: 60px;
}

.why_item_inner {
  display: flex;
  align-items: center;
  gap: 23px;
  border: 1px solid #404040;
  width: 500px;
  padding: 58px 20px 58px 48px;
  border-radius: 15px;
  background: rgba(9, 29, 12, 0.79);
}

.why_item {
  display: flex;
}

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

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

.why_item:nth-child(4) {
  transition-delay: 0.6s;
}

.why_item:nth-child(3),
.why_item:nth-child(4) {
  justify-content: flex-end;
}

.why_item:nth-child(2) .why_item_inner {
  margin-left: -30px;
}

.why_item:first-child .why_item_inner {
  border: unset;
  background: unset;
}

.why_item_icon {
  width: 90px;
  min-width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0d3212;
}

.why_item_txt {
  font-weight: 400;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: -0.02em;
  color: #fff;
}

.why_btn {
  margin-top: 70px;
  left: 50%;
  translate: -50% 0;
}

.why_bg_round {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  pointer-events: none;
  /* width: 930px;
  height: 680px; */
}

.portfolio_title {
  font-weight: 400;
  font-size: 102px;
  line-height: 130%;
  text-align: center;
  color: #f3f3f3;
  margin-bottom: 30px;
}

.portfolio_descr p {
  font-weight: 500;
  font-size: 27px;
  line-height: 167%;
  text-align: center;
  color: #dbdbdb;
}

.portfolio_descr p strong {
  font-weight: 400;
  color: #a5a5a5;
}

.portfolio_wrapper {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.portfolio_item {
  flex-basis: calc(25% - 17px);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.portfolio_item_image img {
  width: 100%;
}

.portfolio {
  padding: 100px 0;
}

.portfolio_item:nth-child(2),
.portfolio_item:nth-child(4),
.portfolio_item:nth-child(6),
.portfolio_item:nth-child(8) {
  top: 70px;
}

.portfolio_item .video,
.portfolio_item .video-preview {
  height: 100%;
}

.portfolio_item .video {
  position: relative;
}

.portfolio_item .video svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.video a {
  display: block;
}

.process {
  padding: 100px 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.process_bg {
  position: absolute;
  z-index: -1;
  top: -20px;
  left: -15px;
}

.process_title {
  font-weight: 400;
  font-size: 102px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 50px;
}

.process_title span {
  color: #adc56f;
}

.process_wrapper {
  display: flex;
}

.process_item {
  flex: 1;
  position: relative;
  margin-right: -15px;
  padding: 43px 15px;
  border-radius: 15px;
  background: linear-gradient(75deg, rgba(195, 230, 104, 0.11) 0%, rgba(27, 36, 47, 0) 100%);
}

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

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

.process_item:nth-child(4) {
  transition-delay: 0.4s;
}

.process_item:nth-child(5) {
  transition-delay: 0.5s;
}

.process_item:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url(/wp-content/uploads/2025/08/green-border.svg);
  background-repeat: no-repeat;
}

.process_item:last-child {
  margin-right: 0;
}

.process_item_count {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 25px;
}

.process_item_icon {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 42px;
  box-shadow: 0 3px 54px 0 rgba(195, 230, 104, 0.4);
  background: linear-gradient(90deg, #adc56f 0%, #c3e668 100%);
}

.process_item_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 15px;
}

.process_item_descr {
  font-weight: 300;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.75;
  max-width: 180px;
}

.process_btn {
  margin-top: 70px;
  left: 50%;
  translate: -50% 0;
}

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

.review_title {
  margin-bottom: 50px;
}

.review_item {
  display: flex !important;
  margin-right: 20px;
  gap: 20px;
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(173, 197, 111, 0.5);
  background: linear-gradient(132deg, rgba(195, 230, 104, 0.18) 0%, rgba(27, 36, 47, 0) 100%);
}

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

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

.review_item:nth-child(4) {
  transition-delay: 0.4s;
}

.review_item:last-child {
  margin-right: 0;
}

.review_wrapper .slick-list {
  display: flex !important;
  overflow: unset;
}

.review_wrapper .slick-track {
  display: flex !important;
}

.review_item_g {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  width: 99px;
  min-width: 99px;
  height: 99px;
  border: 1px solid #adc56f;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #adc56f;
}

.review_item_title {
  font-weight: 500;
  font-size: 21px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 11px;
}

.review_item_link {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #868686;
  display: block;
  margin-bottom: 33px;
}

.review_item_txt p {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.9;
}

.form {
  padding: 70px 0;
  background-image: url(/wp-content/uploads/2025/08/form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.form_wrapper {
  display: flex;
  gap: 70px;
}

.form_photo {
  flex-basis: 49%;
  transform: translateY(50px) perspective(600px) rotateX(15deg);
  transition: 0.8s;
}

.form_photo.show-elements {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) perspective(600px) rotateX(0);
}


.form_inputs {
  flex-basis: 51%;
}

.wpcf7-spinner {
  display: none;
}

.form_photo img {
  width: 100%;
}

.form_name {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-size: 120px;
  line-height: 100%;
  color: #adc56f;
  margin-bottom: 30px;
}

.form_descr p {
  font-size: 21px;
  line-height: 167%;
  font-weight: 400;
  color: #a5a5a5;
}

.form_descr {
  margin-bottom: 50px;
}

.form_descr p strong {
  color: #dbdbdb;
  font-weight: 500;
}

.form_title {
  font-weight: 400;
  font-size: 21px;
  line-height: 119%;
  color: #fff;
  padding-left: 80px;
  position: relative;
  max-width: 440px;
}

.form_title svg {
  position: absolute;
  left: -30px;
  top: -10px;
}

.form_inn {
  margin-top: 50px;
}

.wpcf7-form-control-wrap input {
  border: 1px solid #adc56f;
  border-radius: 15px;
  height: 70px;
  padding: 23px 20px;
  background: transparent !important;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #f3f3f3;
  margin-bottom: 7px;
}

.wpcf7-form-control-wrap input::placeholder {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #cacaca;
  opacity: 0.8;
}

.wpcf7-submit {
  height: 130px;
  border-radius: 15px;
  transition: 0.3s;
  font-weight: 600;
  font-size: 21px;
  line-height: 200%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #141b24;
  width: 100%;
  border: unset;
  margin-top: 7px;
  background: linear-gradient(90deg, #adc56f 0%, #c3e668 100%);
}


.wpcf7-submit:hover {
  color: #141b24;
  background: linear-gradient(90deg, #a0d516 0%, #c3e668 100%);

}

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

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

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

.faq {
  padding: 100px 0;
}

.faq_title {
  color: #adc56f;
  margin-bottom: 50px;
}

.faq_item {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 0;
  border-top: 1px solid #2f3844;
}

.faq_item_q {
  flex-basis: 52%;
  font-weight: 700;
  font-size: 42px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #dbdbdb;
}

.faq_item_a {
  flex-basis: 48%;
  transition: 0.5s;
  opacity: 0;
  translate: 20px 0;

  font-weight: 500;
  font-size: 20px;
  line-height: 167%;
  color: #dbdbdb;
}

.faq_item:has(.faq_item_q:hover) .faq_item_a {
  translate: 0 0;
  opacity: 1;
}

footer {
  padding: 90px 0;
  background: #101811;
}

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

.footer-logo-wrapper-img {
  margin-bottom: 55px;
}

.footer-logo-wrapper,
.footer_contacts {
  flex-basis: 50%;
}

.privacy_wrapper {
  display: flex;
  align-items: center;
  gap: 55px;
}

.privacy_wrapper a {
  font-weight: 400;
  font-size: 20px;
  line-height: 155%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.offer {
  color: #a5a5a5;
}

.privacy {
  color: #c3e668;
}

.footer_num {
  font-weight: 600;
  font-size: 62px;
  line-height: 100%;
  background: linear-gradient(90deg, #adc56f 0%, #c3e668 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 45px;
}

.footer_email {
  font-weight: 700;
  font-size: 30px;
  line-height: 167%;
  color: #fff;
  margin-bottom: 55px;
}

.footer_social {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

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

.footer_content_bottom span {
  font-weight: 400;
  font-size: 16px;
  line-height: 194%;
  color: #dbdbdb;
}

.footer_content_bottom span a {
  color: #dbdbdb;
  font-weight: 500;
}

.footer_contacts a {
  display: block;
  text-align: end;
}












@keyframes riseFromDepth {
  0% {
    transform: translateY(50px) perspective(600px) rotateX(15deg);
    opacity: 0;
  }

  100% {
    transform: translateY(0) perspective(600px) rotateX(0);
    opacity: 1;
  }
}


/* @keyframes flipIn {
  0% {
    transform: translateY(80px) perspective(800px) rotateX(-90deg);
    opacity: 0;
  }

  100% {
    transform: translateY(0) perspective(800px) rotateX(0);
    opacity: 1;
  }
}


@keyframes waveAppear {
  0% {
    transform: translateY(30px) perspective(700px) rotateX(20deg);
    opacity: 0;
  }

  60% {
    transform: translateY(-10px) perspective(700px) rotateX(-5deg);
    opacity: 1;
  }

  100% {
    transform: translateY(0) perspective(700px) rotateX(0);
  }
}


@keyframes popFromDepth {
  0% {
    transform: translateY(60px) perspective(500px) rotateX(25deg) scale(0.9);
    opacity: 0;
  }

  80% {
    transform: translateY(-5px) perspective(500px) rotateX(2deg) scale(1.02);
    opacity: 1;
  }

  100% {
    transform: translateY(0) perspective(500px) rotateX(0) scale(1);
  }
} */






.wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
  display: block;
}

.wpcf7-form-control-wrap .iti {
  width: 100%;
  margin-bottom: 7px;
}

.iti__country-list {
  color: #000;
}

.main_estimate .portfolio {
  margin-bottom: 60px;
}

.luxury {
  background-image: url(/wp-content/uploads/2025/08/luxury-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.main_luxury {
  padding-top: 0 !important;
}

body:has(.main_luxury) header,
body:has(.main_luxury) footer {
  opacity: 0 !important;
  visibility: hidden !important;
  height: 0;
  overflow: hidden;
  padding: 0 !important;
}

.luxury_wrapper {
  display: flex;
  gap: 40px;
}

.luxury_title {
  font-weight: 600;
  font-size: 37px;
  line-height: 126%;
  color: #fff;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
}

.luxury_subtitle {
  font-weight: 400;
  font-size: 23px;
  line-height: 164%;
  color: #fff;
  margin-bottom: 45px;
}

.luxury_subtitle a {
  font-weight: 700;
  color: #fff;
}

.luxury_description {
  font-weight: 500;
  font-size: 24px;
  line-height: 157%;
  color: #fff;
}

.luxury_side_f {
  background: #fff;
  border-radius: 5px;
  padding: 34px;
}

.luxury_form_title {
  font-weight: 700;
  font-size: 16px;
  color: #101711;
  margin-bottom: 20px;
}

.luxury .wpcf7-form-control-wrap input {
  min-width: 295px;
  height: 50px;
  border-radius: 30px;
  background: #f0f0f0 !important;
  border: unset;
  margin-bottom: 20px;
}

.luxury .wpcf7-form-control-wrap input::placeholder {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #101711;
}

.luxury .wpcf7-form-control-wrap .iti {
  margin-bottom: 20px;
}

.luxury .wpcf7-submit {
  background: #309d00;
  border-radius: 30px;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #fff;
}

.luxury .wpcf7-submit:hover {
  background: #267c00;
}

.form_privacy p {
  font-weight: 400;
  font-size: 14px;
  color: #101711;
  margin-top: 20px;
  margin-bottom: 0;
}

.form_privacy p a {
  color: #91ac4c;
}

.luxury .wpcf7 form.invalid .wpcf7-response-output,
.luxury .wpcf7 form.unaccepted .wpcf7-response-output,
.luxury .wpcf7 form.payment-required .wpcf7-response-output {
  color: #000;
}

.container_txt {
  max-width: 800px;
}

.just_txt {
  padding: 100px 0;
}

body:has(.just_txt) {
  background: white;
}

body:has(.just_txt) header {
  background: #0b1f0e;
}

.just_txt_cont p,
.just_txt_cont li {
  font-weight: 400;
  font-size: 16px;
  line-height: 194%;
  color: #000;
}

.just_txt_cont p {
  margin-bottom: 34px;
}

.just_txt_cont ul {
  margin-bottom: 35px;
  list-style-type: disc;
  padding-left: 20px;
}

.just_txt_cont a {
  color: #91ac4c;
}

.page-404 {
  background-image: url(/wp-content/uploads/2025/08/not-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.page-404-text-under {
  font-weight: 400;
  font-size: 26px;
  line-height: 162%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #a5a5a5;
}

.page-404-text-under span {
  color: #dbdbdb;
}


.wpcf7-response-output {
  border: unset !important;
  text-align: center !important;
}

.page-template-page-luxury-bathroom .wpcf7-response-output {
  color: #000;
}

.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
}




























@media(max-width: 1580px) {
  .top_section_title {
    font-size: 80px;
    margin-bottom: 38px;
  }

  .top_section_descr p {
    font-size: 23px;
  }

  .top_section_btn {
    margin-top: 35px;
  }

  .header_wrapper {
    padding: 34px 0;
  }

  .main_home {
    padding-top: 93px;
  }

  h2 {
    font-size: 78px !important;
  }

  .form_name {
    font-size: 78px;
  }
}

@media(max-width: 1024px) {
  .about_descr p {
    padding-right: 20px;
  }

  .why_item:nth-child(2) .why_item_inner {
    margin-left: 0;
  }

  .why_wrapper {
    row-gap: 30px;
    column-gap: 30px;
  }

  .why_item_inner {
    width: auto;
  }

  .process_item_descr {
    max-width: 168px;
  }

  .form_wrapper {
    gap: 45px;
  }

  .faq_item {
    padding: 40px 0;
  }

  .faq_item_q {
    font-size: 35px;
  }

  .faq {
    padding: 70px 0;
  }
}

@media(max-width: 992px) {

  .luxury_wrapper {
    flex-direction: column;
  }

  .luxury {
    height: auto;
  }

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

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

  .mobile_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    translate: 0 -120%;
    z-index: 50;
    background-color: white;
    position: fixed;
    inset: 0;
    padding: 100px 15px 100px;
    /* 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;
  }

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

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

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

  .about_side_r_item {
    width: 350px;
    height: 290px;
    padding: 35px 25px 35px 33px;
  }

  .about_descr p {
    font-size: 18px;
  }

  .about_title {
    bottom: 10px;
  }

  .about_side_l_t {
    height: 290px;
  }

  .about_side_l_b {
    height: calc(100% - 290px);
  }

  .about_side_r_num {
    height: 65px;
  }

  .why_item_inner {
    padding: 45px 20px 45px 30px;
  }

  .why_item_icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }

  .why_item_txt {
    font-size: 17px;
  }

  .process_item {
    padding: 18px 15px;
  }

  .process_item_icon {
    margin-bottom: 25px;
  }

  .process_item_title {
    font-size: 16px;
  }

  .process_item_descr {
    font-size: 12px;
  }

  .review {
    padding-top: 0;
  }

  .review_item {
    padding: 25px;
  }

  .review_item_g {
    font-size: 18px;
    width: 85px;
    min-width: 85px;
    height: 86px;
  }

  .review_item_txt p {
    font-size: 14px;
    opacity: 1;
  }

  .form_descr p {
    font-size: 18px;
    line-height: 155%;
  }

  .form_title .form_title {
    font-size: 17px;
  }

  .wpcf7-form-control-wrap input {
    height: 55px;
  }

  .wpcf7-submit {
    height: 105px;
  }

  .faq_item_a {
    opacity: 1;
  }

  .footer-logo-wrapper-img img {
    width: 180px;
  }

  .footer_num {
    font-size: 45px;
  }

  .footer_email {
    font-size: 25px;
  }

  .privacy_wrapper {
    gap: 40px;
  }

  .footer_social {
    gap: 15px;
  }

  .footer_content_bottom {
    flex-direction: column;
  }

  .faq_item {
    gap: 40px;
  }

  .faq_item_a {
    font-size: 18px;
    translate: 0 0;
  }

}

@media(max-width: 600px) {

  .top_404 svg {
    width: 70%;
  }

  .page-404-text-under {
    font-size: 23px;
  }

  .page-404 {
    height: 60vh;
  }

  .top_404 {
    display: flex;
    justify-content: center;
  }

  .page-404-content {
    overflow: hidden;
    padding: 0 15px;
  }

  .luxury_title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .luxury_subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .luxury {
    padding: 25px 0;
  }

  .luxury_description {
    font-size: 20px;
  }

  .top_section_title {
    font-size: 45px;
  }

  .top_section_descr p {
    font-size: 18px;
  }

  .green_btn {
    width: 100%;
    font-size: 18px;
  }

  .top_section {
    padding-top: 40px;
    overflow: hidden;
  }

  .header_num {
    display: none;
  }

  .logo_wrapper {
    position: relative;
    translate: 0 0;
    top: 0;
    left: 0;
  }

  .header_wrapper {
    padding: 15px 0;
  }

  .burger_menu {
    width: 100%;
    max-height: 100%;
  }

  .about_side_r_item:nth-child(3) {
    border-bottom-left-radius: 20px;
  }

  .about_wrapper {
    flex-direction: column;
  }

  h2 {
    font-size: 43px !important;
  }

  .about_side_l_t {
    height: auto;
    padding: 10px 0px;
  }

  .about_descr p {
    font-size: 16px;
  }

  .about_side_l_b img {
    border: unset !important;
    border-radius: 15px !important;
    margin-bottom: 15px;
  }

  .about_side_r_item {
    width: 100%;
  }

  .about_side_r_item {
    height: 240px;
    padding: 20px;
  }

  .about_side_r_num {
    height: 55px;
  }

  .why_title_wrapper {
    flex-direction: column;
  }

  .why_title_wrapper img {
    width: 78%;
  }

  .why {
    padding: 47px 0;
    margin-top: 50px;
  }

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

  .why_wrapper {
    row-gap: 20px;
  }

  .why_item_inner {
    padding: 30px 20px;
  }

  .why_item_txt {
    font-size: 16px;
  }

  .why_btn {
    margin-top: 40px;
  }

  .portfolio {
    padding: 42px 0;
    overflow: hidden;
  }

  .portfolio_descr p {
    font-size: 18px;
  }

  .portfolio_wrapper {
    gap: 17px;
    margin-top: 35px;
  }

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

  .portfolio_item:nth-child(2),
  .portfolio_item:nth-child(4),
  .portfolio_item:nth-child(6),
  .portfolio_item:nth-child(8) {
    top: 0;
  }

  .portfolio_item {
    height: 520px;
  }

  .popup-youtube {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .portfolio_title {
    margin-bottom: 17px;
  }

  .process {
    padding: 30px 0 55px;
  }

  .process_wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .process_item_descr {
    font-size: 16px;
    max-width: 100%;
  }

  .process_item_title {
    font-size: 19px;
  }

  .process_item {
    margin-right: 0;
    border-radius: 13px;
  }

  .process_item_title br {
    display: none;
  }

  .process_item:before {
    background-repeat: no-repeat;
    /* background-position: 0 100%; */
    background-size: contain;
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  .process_btn {
    margin-top: 32px;
  }

  .process_title {
    margin-bottom: 22px;
  }

  .review {
    padding-top: 44px;
    padding-bottom: 60px;
    overflow: hidden;
  }

  .form_wrapper .form_wrapper {
    flex-direction: column;
  }

  .form {
    padding: 58px 0;
    overflow: hidden;
  }

  .second_img,
  .about {
    overflow: hidden;
  }

  .review_title {
    margin-bottom: 26px;
  }

  .review_item {
    flex-direction: column;
  }

  .review_item {
    padding: 20px;
  }

  .review_item_g {
    font-size: 16px;
    width: 60px;
    min-width: 60px;
    height: 60px;
  }

  .review_item_title {
    font-size: 19px;
  }

  .review_item_link {
    margin-bottom: 20px;
  }

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

  .form_wrapper {
    flex-direction: column;
  }

  .form_name {
    font-size: 50px;
  }

  .form_descr p {
    font-size: 17px;
  }

  .form_title {
    font-size: 16px;
    padding-left: 125px;
    overflow: hidden;
  }

  .form_title svg {
    left: 10px;
  }

  .faq {
    padding: 42px 0 10px;
  }

  .faq_title {
    margin-bottom: 30px;
  }

  .faq_item {
    flex-direction: column;
    padding: 32px 0;
    gap: 25px;
  }

  .faq_item_q {
    font-size: 25px;
    font-weight: 500;
  }

  .faq_item_a {
    font-size: 16px;
    font-weight: 400;
  }

  .footer_content {
    flex-direction: column;
  }

  footer {
    padding: 53px 0;
  }

  .footer-logo-wrapper-img {
    display: flex;
    justify-content: center;
  }

  .privacy_wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .footer_num {
    font-size: 38px;
    text-align: center;
    margin-bottom: 25px;
  }

  .footer_contacts a {
    text-align: center;
  }

  .footer_social {
    justify-content: center;
  }

  .footer_content_bottom span {
    display: block;
    text-align: center;
  }
}

@media(max-width: 321px) {
  .custom-logo {
    width: 200px;
  }

  .green_btn {
    padding: 0 20px;
    font-size: 15px;
    height: 60px;
  }

  .portfolio_item {
    height: 424px;
  }

  .footer_num {
    font-size: 32px;
  }

  .footer_email {
    font-size: 22px;
    margin-bottom: 40px;
  }
}