html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none;
}

input {
  border: none;
  outline: none;
  background: none;
  display: block;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol,
li {
  list-style-type: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  display: inline-block;
}

a:focus {
  outline: none;
}

button,
[type="button"],
[type="submit"] {
  border: none;
  outline: none;
  background: none;
  font: inherit;
  cursor: pointer;
  display: inline-block;
}

button:focus,
[type="button"]:focus,
[type="submit"]:focus {
  outline: none;
}

html {
  width: 100%;
}
.intro {
  font-size: 62.5%;
}
.intro .intro_arrow {
  font-size: 21px;
}
.intro .intro_title {
  line-height: 115px;
}
.intro .content_title {
  font-size: 65px;
  line-height: 78px;
}
.intro .about_count {
  font-size: 21px;
}
.intro .about_desc {
  font-size: 21px;
}
@media (min-width: 1281px) {
  .intro p {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .intro p {
    font-size: 18px;
  }
  .intro .intro_arrow {
    font-size: 18px;
  }
  .intro .content_title {
    font-size: 35px;
    line-height: 42px;
  }
  .intro .about_count {
    font-size: 18px;
  }
  .intro .about_desc {
    font-size: 18px;
  }
}
body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: #1f2029;
  font-size: 2.1rem;
  line-height: 3.6rem;
  font-weight: 400;
  font-family: "Varela", sans-serif;
}

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

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

/* .footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
} */

@font-face {
  font-family: "Varela";
  font-display: swap;
  src:
    url("../fonts/Varela.woff") format("woff"),
    url("../fonts/Varela.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@-webkit-keyframes infinitScale {
  0% {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
  }

  50% {
    -webkit-transform: rotate(-45deg) scale(1.1);
    transform: rotate(-45deg) scale(1.1);
  }

  100% {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
  }
}

@keyframes infinitScale {
  0% {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
  }

  50% {
    -webkit-transform: rotate(-45deg) scale(1.1);
    transform: rotate(-45deg) scale(1.1);
  }

  100% {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
  }
}

@-webkit-keyframes reviewScale {
  0% {
    -webkit-transform: rotate(60deg) scale(1);
    transform: rotate(60deg) scale(1);
  }

  50% {
    -webkit-transform: rotate(60deg) scale(1.1);
    transform: rotate(60deg) scale(1.1);
  }

  100% {
    -webkit-transform: rotate(60deg) scale(1);
    transform: rotate(60deg) scale(1);
  }
}

@keyframes reviewScale {
  0% {
    -webkit-transform: rotate(60deg) scale(1);
    transform: rotate(60deg) scale(1);
  }

  50% {
    -webkit-transform: rotate(60deg) scale(1.1);
    transform: rotate(60deg) scale(1.1);
  }

  100% {
    -webkit-transform: rotate(60deg) scale(1);
    transform: rotate(60deg) scale(1);
  }
}

@-webkit-keyframes contactScale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes contactScale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@-webkit-keyframes svgInleft {
  0% {
    left: 0px;
  }

  50% {
    left: 15px;
  }

  100% {
    left: 0px;
  }
}

@keyframes svgInleft {
  0% {
    left: 0px;
  }

  50% {
    left: 15px;
  }

  100% {
    left: 0px;
  }
}

@-webkit-keyframes scale {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes scale {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.custom_link {
  cursor: pointer;
}

.container_popup {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
  pointer-events: none;
}

.container_popup.show {
  pointer-events: all;
  opacity: 1;
}

.container_popup.show .popup {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.popup {
  overflow-y: scroll;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 70px 95px;
  position: fixed;
  width: 100%;
  max-width: 549px;
  z-index: 111;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  -ms-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  -webkit-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
  left: 50%;
  background: #fff;
}

.close_popup {
  position: absolute;
  top: 21px;
  right: 27px;
  z-index: 115;
  cursor: pointer;
}

.popup_box--title {
  font-size: 4.8rem;
  line-height: 5.8rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.popup_box--suptitle {
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  color: #b0b2c1;
  margin: 40px 0;
}

.popup_box--field {
  margin-bottom: 50px;
}

.popup_box--field label {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #b0b2c1;
}

.popup_box--field input {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #1f2029;
  border-bottom: 2px solid #b0b2c1;
  width: 100%;
}

.popup_box--field textarea {
  border-bottom: 2px solid #b0b2c1;
}

.popup_box--message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.service-design .intro_bg--img {
  object-position: center 62%;
}

.popup_box--button {
  width: 100%;
  font-size: 2.1rem;
}

.popup_box--button:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 12px;
  background-color: #1f2029;
}

.message {
  width: 100%;
  resize: none;
  min-height: 40px;
  border: none;
  outline: none;
  overflow: hidden;
  padding: 15px 0;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #1f2029;
}

.dflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.dflex.justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* .header { */
/* width: 100%; */
/* height: 135px; */
/* position: absolute; */
/*top: -20px;*/
/*padding-top: 20px;*/
/* left: 0; */
/* z-index: 100;/ */
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); */
/* } */

/* .header.fixed {
  position: fixed;
  background-color: #ffffff;
  background: white;
  box-shadow: 1px 1px 1px #333;
  height: auto;
  top: 0;
  left: 0;
  padding-top: 0;
  width: 100%;
  transition: top 0.3s ease-in-out;
}

.no_scroll header.fixed img {
  filter: unset !important;
}

.no_scroll header.fixed a {
  color: white;
}

.no_scroll header.fixed p {
  color: white;
}

.no_scroll .header.fixed .nav_toggle--item {
  background-color: transparent;
}

.no_scroll .header.fixed .nav_toggle--item:after {
  background-color: white;
}

.no_scroll .header.fixed .nav_toggle--item:before {
  background-color: white;
}

.header.fixed img {
  filter: brightness(0) saturate(100%);
}

.header.fixed p,
.header.fixed a {
  color: black;
}

.header.fixed .nav_toggle--item {
  background-color: black;
}

.header.fixed .nav_toggle--item:after {
  background-color: black;
}

.header.fixed .nav_toggle--item:before {
  background-color: black;
}

.header.fixed .header_inner {
  padding: 25px 0;
}

.header.sitemap_header {
  background-color: #4b4d5e;
}

.header .nav {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #fff;
  width: fit-content;
} */

/*.header .container {*/
/*    max-width: 1400px;*/
/*    padding: 0 30px;*/
/*}*/

@media screen and (min-width: 1500px) {
  /* .header .nav {
    font-size: 18px;
    width: fit-content;
  }

  .header .container {
    max-width: 1300px;
    padding: 0 30px;
  } */

  .nav_flex--ul {
    gap: 25px;
    white-space: nowrap;
  }

  /*main .breadcrumbs {*/
  /*    font-size: 20px;*/
  /*}*/
  /* .header_phone {
    scale: 1.1;
    margin-right: 35px;
  }

  .header_phone a {
    font-size: 1.7rem;
  } */
}

/* .header .nav .nav_flex--ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  gap: 24px;
}

.header .nav .nav_flex--ul a {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.header .nav .nav_flex--ul a:hover {
  text-shadow:
    0 0 0.9px #fff,
    0 0 0.9px #fff,
    0 0 0.9px #fff;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 44px 0;
}

.header_phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header_new--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header_new--item:last-child {
  margin-left: 20px;
}

.header_phone img {
  margin-right: 13px;
}

.header_phone a {
  color: #fff;
  font-size: 1.5rem;
  line-height: 3.2rem;
} */

.intro_slider {
  height: 100vh;
}

.intro_slider .slick-dots {
  position: absolute;
  z-index: 3;
  bottom: 105px;
  right: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.intro_slider .slick-dots li {
  margin-right: 30px;
  opacity: 0.3;
}

.intro_slider .slick-dots li.slick-active {
  opacity: 1;
}

.intro_slider .slick-dots li button {
  color: #fff;
}

.intro_slider .slick-dots li button:before {
  content: "0";
}

.intro_item {
  height: 100vh;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 105px;
  color: #fff;
}

.intro_item img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  filter: brightness(0.7);
  -o-object-fit: cover;
  object-fit: cover;
}

.intro_item .new_slide {
  -webkit-animation: scale 10s forwards;
  animation: scale 10s forwards;
}

.intro_item .intro_info {
  position: relative;
  height: 62%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
}

.intro_item .intro_info.zoomIn {
  opacity: 1;
}

.intro_item .intro_info .intro_desc a {
  margin-left: 123px;
}

.intro_item .intro_info .intro_desc a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 12px;
}

.intro_title {
  font-weight: normal;
  font-size: 85px;
  line-height: 11.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.intro_title:after {
  content: "";
  display: block;
  background: #fff;
  opacity: 0.3;
  margin-top: 50px;
  height: 1px;
  width: 100%;
}

.info_decr {
  width: 330px;
  margin-left: 50px;
}

.intro_arrow {
  margin-right: 50px;
}

.tabs_content .dflex {
  row-gap: 30px;
}

.info_link {
  margin-top: 20px;
  margin-left: 50px;
}

.info_link:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 12px;
  background-color: #1f2029;
}

.nav_toggle {
  width: 42px;
  padding: 10px 0;
  display: none;
  font-size: 0;
  color: transparent;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.nav_toggle--item {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

.nav_toggle--item:before {
  top: -8px;
}

.nav_toggle--item:before,
.nav_toggle--item:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition:
    transform 0.2s linear,
    -webkit-transform 0.2s linear;
}

.nav_toggle--item:after {
  bottom: -8px;
}

.nav_toggle.active .nav_toggle--item {
  background: none;
}

.nav_toggle.active .nav_toggle--item:before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: rotate(45deg) translate3d(-5px, -12px, 0);
  transform: rotate(45deg) translate3d(-5px, -12px, 0);
}

.nav_toggle.active .nav_toggle--item:after {
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(-45deg) translate3d(2px, 3px, 0);
  transform: rotate(-45deg) translate3d(2px, 3px, 0);
}

.nav_contact {
  display: none;
}

.intro_bg {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 156px 0 100px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),*/
  /*radial-gradient(68.13% 146.15% at 24.48% 64.44%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%),*/
  /*linear-gradient(360deg, rgba(0, 0, 0, 0) 74.28%, rgba(0, 0, 0, 0) 100%);*/
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    radial-gradient(53.13% 137.15% at 24.48% 64.44%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(360deg, rgba(0, 0, 0, 0) 74.28%, rgba(0, 0, 0, 0) 100%);
}

.intro_bg--box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 6;
}

.intro_bg--box .slide_desc {
  color: white;
  font-size: 18px;
  padding-top: 15px;
  /*max-width: 785px;*/
  margin: unset;
}

.intro_bg--box p {
  color: white;
}

.intro_bg--box .slide_btn {
  width: fit-content;
  color: white;
  margin-top: 35px;
  font-size: 18px;
}

.intro_bg .slide_btn {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .intro_bg .slide_btn span {
    font-size: 16px;
    margin-right: 50px;
  }

  .intro_bg .slide_btn:after {
    margin-top: 8px;
  }
}

.intro_bg--box .slide_btn svg {
  stroke: white;
}

.intro_bg--box .slide_btn:after {
  background: white;
}

.intro_bg--img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: brightness(0.7) contrast(0.9) saturate(0.5);
  -o-object-fit: cover;
  object-fit: cover;
}

.intro_bg .intro_title {
  color: #fff;
  margin-top: 20px;
}

.intro_bg .intro_title:after {
  display: none;
}

@media (max-width: 1280px) {
  .intro_bg .slide_desc,
  .intro_bg p {
    max-width: 100%;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .intro_bg .slide_desc,
  .intro_bg p {
    font-size: 15px;
    line-height: 22.5px;
  }

  .intro_bg .intro_arrow {
    font-size: 18px;
  }
}

.breadcrumbs {
  color: #fff;
  font-size: 16px;
  line-height: 1.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1280px) {
  .breadcrumbs {
    font-size: 14px;
  }

  .breadcrumbs li:not(:first-child) {
    margin-left: 29px !important;
  }
}

@media (max-width: 375px) {
  .breadcrumbs {
    font-size: 15px;
  }
}

.breadcrumbs li {
  opacity: 0.3;
}

.breadcrumbs li.current-item {
  opacity: 1;
}

.breadcrumbs li:not(:first-child) {
  list-style: disc;
  margin-left: 35px;
}

.main_result.home-result {
  padding-top: 250px;
}

@media screen and (max-width: 959px) {
  .main_result.home-result {
    padding: 50px 0;
  }
}

.main_result {
  padding: 100px 0;
}

.main_result.nopadding {
  padding: 50px 0 0;
}

.result_item {
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.content_title--result {
  margin-top: 47px;
  width: 75%;
}

.content_title--result.sm {
  display: none;
}

.content_title {
  font-weight: 400;
  font-size: 6.5rem;
  line-height: 7.8rem;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.content_title.about-title {
  margin-bottom: 0;
}

.content_title span {
  color: #b0b2c1;
}

.result_image {
  position: relative;
  height: 100%;
}

.result_image .circle1 {
  width: 100%;
  height: 100%;
  border: 1px solid #b0b2c1;
  position: absolute;
  bottom: -27%;
  left: 47%;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: infinitScale 6s linear infinite;
  animation: infinitScale 6s linear infinite;
}

.result_image .circle2 {
  width: 80%;
  height: 100%;
  border: 1px solid #b0b2c1;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: -20%;
  left: 3%;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: infinitScale 6s linear infinite;
  animation: infinitScale 6s linear infinite;
}

.result_image--big {
  /*position: absolute;*/
  top: 0;
  left: 12%;
  z-index: 5;
  -webkit-box-shadow: 0px 31px 55px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 31px 55px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 660px;
  object-fit: cover;
}

.result_image--small {
  position: absolute;
  bottom: -150px;
  right: 25px;
  z-index: 6;
}

.tabs_content .dflex {
  margin: 0 15px;
}

.tabs_caption {
  margin-left: 123px;
  font-size: 2.4rem;
  line-height: 2.9rem;
  letter-spacing: -0.01em;
  color: #b0b2c1;
}

.tabs_caption li {
  margin-right: 59px;
  cursor: pointer;
}

.tabs_caption li.active {
  color: #1f2029;
}

.tabs_caption li.active:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 12px;
  background-color: #1f2029;
}

.tabs {
  position: relative;
}

.tabs .tabs_circle1 {
  width: 248px;
  height: 248px;
  border: 1px solid #b0b2c1;
  position: absolute;
  bottom: 63%;
  left: 29%;
  border-radius: 50%;
  z-index: 1;
  -webkit-animation: reviewScale 6s linear infinite;
  animation: reviewScale 6s linear infinite;
}

.tabs_content {
  /*display: none;*/
  padding: 50px 0 100px;
  margin: 0 -15px;
}
.tabs_content .tabs_title {
  font-size: 31px;
}
@media (max-width: 768px) {
  .tabs_content .tabs_title {
    font-size: 24px;
  }
}

.tabs_content.active {
  display: block;
}

.tabs_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 30px;
}

@media (max-width: 768px) {
  .tabs_grid {
    display: flex;
    flex-wrap: wrap;
  }

  .tabs_item {
    width: 50% !important;
  }

  .tabs_item:nth-child(5) {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 550px) {
  .tabs_item {
    width: 100% !important;
  }
}

.tabs_item {
  max-width: 100% !important;
}

.tabs_item:nth-child(4) {
  grid-column: span 1;
  grid-row: 2;
}

.tabs_item:nth-child(5) {
  grid-column: span 2;
  grid-row: 2;
}

.tabs_item:nth-child(6) {
  grid-column: span 2;
  grid-row: 3;
}

.tabs_item:nth-child(7) {
  grid-column: span 1;
  grid-row: 3;
}

.tabs_item {
  width: 100%;
  max-width: 33.333%;
  height: 544px;

  padding: 0 15px;
  color: #fff;
}

.tabs_item .tabs_relative {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 50px 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.tabs_item .tabs_relative:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  z-index: 1;
  background: radial-gradient(204.36% 116.84% at 4.87% 66.63%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.tabs_item .tabs_relative:hover img {
  transform: scale(1.1);
}

.tabs_item .tabs_relative .btn_content {
  width: auto;
}

.tabs_item .tabs_relative .btn_content.btn_content-auto {
  width: fit-content;
  color: #000;
  transition: 0.3s all linear;
}

@media screen and (max-width: 960px) {
  .tabs_item .tabs_relative .btn_content.btn_content-auto {
    color: #fff;
  }
}

.tabs_item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  /*opacity: 0;*/
  -webkit-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.tabs_link_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.tabs_item .btn_content:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 12px;
  transition: 0.3s linear all;
}

.tabs_item .btn_content-auto:after {
  background: #000;
}

.tabs_item .btn_content-auto path {
  fill: #000;
  transition: 0.3s all linear;
}

.tabs_item:hover img {
  opacity: 1;
}

.tabs_item:hover .tabs_title:before {
  background: #fff;
}

.tabs_item:hover .tabs_title {
  color: #fff;
}

.main_services .tabs_item:hover a.btn_content-auto {
  color: #fff;
}

.main_services .tabs_item:hover .btn_content-auto:after {
  background: #fff;
}

.main_services .tabs_item:hover .btn_content-auto path {
  fill: #fff;
}

.tabs_title {
  font-size: 31px;
  line-height: 4.6rem;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: #1f2029;
  -webkit-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
  position: relative;
  z-index: 2;
}

.serv_sect .tabs_title {
  color: white;
}

.serv_sect .tabs_item .tabs_relative .btn_content.btn_content-auto {
  color: white;
  z-index: 2;
}

.serv_sect .tabs_item .btn_content:after {
  background: white;
}

.serv_sect .tabs_item .btn_content svg path {
  fill: white !important;
}

.tabs_title:before {
  content: "";
  display: block;
  width: 51px;
  height: 1px;
  background: #b0b2c1;
  margin-bottom: 60px;
  -webkit-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.main_gallery {
  background: #4b4d5e;
}

.main_gallery .content_title.sm {
  display: none;
}

.gallery_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery_circle1 {
  width: 340px;
  height: 571px;
  border: 1px solid #9899a7;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
  border-radius: 50%;
  position: absolute;
  top: 9%;
  left: 40%;
  z-index: 0;
}

.gallery_circle2 {
  width: 880px;
  height: 923px;
  border: 1px solid #9899a7;
  -webkit-transform: rotate(-150deg);
  -ms-transform: rotate(-150deg);
  transform: rotate(-150deg);
  border-radius: 50%;
  position: absolute;
  top: 35%;
  left: 42%;
  z-index: 0;
}

.slider_for {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
}

.slider_for .slick-prev {
  background-image: url(../img/icons/arrow_prev.png);
  position: absolute;
  background-repeat: no-repeat;
  bottom: 85px;
  right: 773px;
  width: 40px;
  font-size: 0;
  z-index: 10;
}

.slider_for .slick-next {
  background-image: url(../img/icons/arrow_next.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 85px;
  right: 690px;
  width: 40px;
  z-index: 10;
  font-size: 0;
}

.slider_nav {
  width: 45%;
}

.slider_nav .slick-list,
.slider_nav .slick-track,
.slider_nav .slick-slide > div,
.slider_nav .slick-slide div {
  height: 100%;
}

.slider_nav .slick-slide div > picture {
  vertical-align: bottom;
  height: 100%;
}

.slider_nav img {
  width: 100%;
  /*height: 100%;*/
  height: 1016px;
  object-fit: cover;
}

.gallery_slider--wrapper {
  color: #fff;
}

.gallery_slider--content {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  padding-right: 100px;
}

.gallery_box {
  margin-left: 124px;
  width: 60%;
}

.gallery_box .pagingInfo {
  color: #b0b2c1;
}

.gallery_box--title {
  font-weight: 400;
  font-size: 3.1rem;
  line-height: 4.6rem;
  letter-spacing: -0.01em;
  margin: 25px 0 40px;
}

.gallery_box a {
  margin-top: 59px;
}

.gallery_box a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 12px;
}

.main_about {
  padding: 70px 0 0;
}

.about_item {
  width: 25%;
  padding: 0 15px;
}

.about_item .about_count {
  color: #b0b2c1;
}

.about_item .about_title {
  margin: 10px 0;
  font-size: 3.1rem;
  line-height: 4.6rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}

/*.design_slider::before {*/
/*    content: '';*/
/*    display: inline-block;*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-top: 15px solid #000;*/
/*    border-left: 10px solid transparent;*/
/*    border-right: 10px solid transparent;*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    animation: bounce 1s infinite;*/
/*    z-index: 8;*/
/*    bottom: 0;*/
/*}*/

/* Анімація bounce */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(8px) translateX(0); /* Початкове положення */
  }
  50% {
    transform: translateY(15px) translateX(0); /* Рух вперед */
  }
}

.our-portfolio-container {
  margin-bottom: 50px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.reviews_slider {
  margin: 0 123px;
  padding-bottom: 30px;
}

.reviews_slider .slick-prev {
  background-image: url(../img/icons/arrow_prev.png);
  position: absolute;
  background-repeat: no-repeat;
  bottom: -40px;
  left: 0;
  width: 40px;
  font-size: 0;
  z-index: 10;
}

.reviews_slider .slick-next {
  background-image: url(../img/icons/arrow_next.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -40px;
  left: 80px;
  width: 40px;
  z-index: 10;
  font-size: 0;
}

.reviews_slider .slick-dots {
  position: absolute;
  z-index: 3;
  bottom: -34px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews_slider .slick-dots li button:before {
  content: "0";
}

.reviews_slider .slick-dots li {
  color: #1f2029;
  opacity: 0.3;
  margin: 0 10px;
}

.contacts .contacts_form-item label strong {
  font-weight: 400;
}

.reviews_slider .slick-dots li.slick-active {
  opacity: 1;
}

.reviews_item .reviews_desc {
  font-size: 3.1rem;
  line-height: 5.3rem;
}

.reviews_item .reviews_desc:after {
  content: "";
  display: block;
  width: 51px;
  height: 1px;
  background: transparent;
  margin-top: 60px;
}

.reviews_item .reviews_people {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 50px 0 75px;
}

.reviews_item .reviews_people img {
  margin-right: 24px;
}

.reviews_item .reviews_people--name {
  font-size: 1.5rem;
  line-height: 2.6rem;
  color: #b0b2c1;
}

.circle_review {
  width: 290px;
  height: 487px;
  border: 1px solid #9899a7;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  border-radius: 50%;
  position: absolute;
  top: 25%;
  left: 40%;
  z-index: 1;
  -webkit-animation: reviewScale 6s linear infinite;
  animation: reviewScale 6s linear infinite;

  display: none;
}

.main_contact {
  background: url("../img/contact_bottom.jpg") center no-repeat;
  background-size: cover;
  padding: 116px 0 152px;
  position: relative;
}

.circle_contact {
  opacity: 0.5;
  border: 1px solid #fff;
  width: 516px;
  height: 516px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-animation: contactScale 6s linear infinite;
  animation: contactScale 6s linear infinite;

  /*display: none;*/
}

.contact_box {
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.contact_box--suptitle {
  margin-bottom: 30px;
}

.contact_box a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 12px;
}

.title_box {
  width: 60%;
}

.result_item--about {
  width: 100%;
}

.result_about--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 50px;
  gap: 30px;
}

.about_wrapper {
  padding: 50px 0;
}

.about_slider--item {
  width: 100%;
}

.about_slider--img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.about_wrapper {
  position: relative;
}

.about_slider-button {
  padding: 24px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  cursor: pointer;
  transition: all ease 0.4s;
  opacity: 1;
}

@media (max-width: 500px) {
  .about_slider-button {
    padding: 6px;
  }
}

.about_slider-button.slick-disabled {
  opacity: 0.6;
  cursor: revert;
}

.about_slider-button svg {
  fill: #4b4d5e;
  position: relative;
}

.about_slider-button--prev {
  left: 48px;
  /*border-radius: 0 20px 20px 0;*/
}

.about_slider-button--next {
  right: 48px;
  /*border-radius: 20px 0 0 20px;*/
}

@media (max-width: 768px) {
  .about_slider-button--next {
    right: 20px;
  }

  .about_slider-button--prev {
    left: 20px;
  }
}

.main-images_wrapper .about_slider-button--prev svg path,
.main-images_wrapper .about_slider-button--next svg path {
  transition: all 0.3s ease-in-out;
  background: transparent;
  fill: #1f2029;
}

/*.one-item-slider-wrapper.about_slider-button--prev svg path, .about_slider-button--next svg path {*/
/*    fill: #4B4D5E;*/
/*}*/

.about_slider-button--prev:hover svg {
  /*background: #1F2029;*/
  transition: all 0.3s ease-in-out;
  fill: white;
}

.about_slider-button--next:hover svg {
  /*background: #1F2029;*/
  transition: all 0.3s ease-in-out;
  fill: white;
}


.with_ellipse {
  background-image: url("../img/Ellipse.png");
  background-repeat: no-repeat;
  background-position: left top;
  /*background-size: auto;*/
  background-size: contain;
  padding-bottom: 225px;
  padding-top: 20px;
  margin-top: 130px;
}

.with_ellipse .slide_btn path {
  fill: black !important;
}

@media (max-width: 768px) {
  .with_ellipse {
    padding-bottom: 120px;
    background-position: 220% -41%;
    background-size: auto;
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .with_ellipse {
    background-position: 130% -41%;
  }
}

@media (max-width: 500px) {
  .with_ellipse {
    background-position: 140% 0;
  }
}

.with_ellipse .about_slider--item a {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .about_slider-button svg {
    width: 16px;
    height: 18px;
  }

  .about_slider-button {
    padding: 15px !important;
  }

  /*.about_slider-button {*/
  /*    padding: 15px 5px;*/
  /*}*/
  .about_slider-button--prev {
    border-radius: 0 5px 5px 0;
  }

  .about_slider-button--next {
    border-radius: 5px 0 0 5px;
  }
}

@media screen and (max-width: 575px) {
  /*.about_slider-button svg {*/
  /*    width: 24px;*/
  /*    height: 24px;*/
  /*}*/
  /*.about_slider-button {*/
  /*    padding: 10px 5px;*/
  /*}*/
}

@media screen and (max-width: 400px) {
  .about_slider-button {
    padding: 10px !important;
  }
}

.about_slider .slick-prev {
  background-image: url(../img/icons/arrow_prev.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 100px;
  font-size: 0;
  z-index: 10;
}

.about_slider .slick-next {
  background-image: url(../img/icons/arrow_next.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 100px;
  z-index: 10;
  font-size: 0;
}

.about_slider .slick-disabled {
  opacity: 0.5;
}

.count_box {
  position: relative;
  margin-bottom: 200px;
}

.count_box .circle {
  width: 539px;
  height: 938px;
  border: 1px solid #b0b2c1;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 0%;
  left: 34%;
  border-radius: 50%;
  z-index: 1;
  -webkit-animation: infinitScale 6s linear infinite;
  animation: infinitScale 6s linear infinite;
}

.count_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 2px solid #4b4d5e;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 93px;
  position: relative;
  z-index: 2;
}

.count_item:first-child {
  margin-top: 0;
}

.count_item--number {
  font-size: 14.4rem;
  line-height: 17.3rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.count_item--text {
  width: 40%;
}

.main_about.services {
  padding-top: 150px;
  padding-bottom: 200px;
}

@media (max-width: 1280px) {
  .main_about.services {
    padding-top: 100px;
    padding-bottom: 150px;
  }
}

.services .tabs_content {
  padding: 0;
}

.services .tabs_caption {
  margin-left: 0;
}

.services .dflex {
  margin: 0 0 40px;
}

.services .tabs_item {
  overflow: hidden;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
}

.services .tabs_item {
  position: relative;
}

.services .tabs_relative:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  z-index: 1;
  background: radial-gradient(204.36% 116.84% at 4.87% 66.63%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.services .tabs_item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.services .tabs_item img {
  opacity: 1;
}

.services .tabs_item .btn_content {
  width: 194px;
  position: relative;
  z-index: 2;
}

.services .tabs_item .btn_content:after {
  width: 100%;
}

.services .tabs_item .tabs_title {
  color: #fff;
  position: relative;
  z-index: 2;
}

.services .tabs_item .tabs_title:before {
  background: #fff;
}

.service_page {
  padding: 0;
}

.dark {
  color: #fff;
  overflow: hidden;
  position: relative;
}

.dark .circle {
  width: 1000px;
  height: 1400px;
  border: 1px solid #b0b2c1;
  position: absolute;
  top: -20%;
  left: 84%;
  border-radius: 50%;
  z-index: -1;
}

.dark .dark_box {
  background: #4b4d5e;
  padding: 100px 0 100px 247px;
  position: relative;
  z-index: 1;
}

.dark .dark_box:before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  background: #4b4d5e;
  right: -50%;
  top: 0;
  z-index: -1;
}

.dark .dark_box .slide_btn {
  color: #fff;
}

.dark .dark_box .slide_btn:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 12px;
}

.dark .result_about--box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 -15px 100px;
}

.dark .result_about--item {
  max-width: 100%;
}

.slide_desc {
  text-align: justify;
  width: 100%;
  font-size: 18px;
  line-height: 150%;
  margin: 0 auto 70px;
}

@media (min-width: 1700px) {
}

.slide_btn:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #1f2029;
  margin-top: 5px;
}

.gallery_item {
  width: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 65px;
}

.gallery_item--box {
  position: relative;
}

.gallery_item--box img {
  -webkit-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.gallery_item--box:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery_item--wrap {
  overflow: hidden;
}

.gallery_item--title {
  margin-top: 25px;
  font-size: 31px;
  line-height: 46px;
}

.gallery_item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gallery_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.gallery_container:nth-child(2n) {
  /*-webkit-box-orient: horizontal;*/
  /*-webkit-box-direction: reverse;*/
  /*    -ms-flex-direction: row-reverse;*/
  flex-direction: row;
}

.gallery_container:nth-child(2n) .gallery_item {
  margin-bottom: 0;
}

.gallery_block {
  padding-bottom: 0;
}

.gallery_block .circle {
  width: 645px;
  height: 878px;
  border: 1px solid #b0b2c1;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 20%;
  left: 34%;
  border-radius: 50%;
  z-index: 0;
  -webkit-animation: infinitScale 6s linear infinite;
  animation: infinitScale 6s linear infinite;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}

.wp-pagenavi .current {
  margin: 0 20px;
}

.wp-pagenavi a {
  opacity: 0.3;
}

.add_circle {
  position: relative;
}

.add_circle .circle {
  width: 230px;
  height: 430px;
  border: 1px solid #9899a7;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 50%;
  position: absolute;
  top: -41%;
  left: 47%;
  z-index: -1;
  -webkit-animation: infinitScale 6s linear infinite;
  animation: infinitScale 6s linear infinite;

  display: none;
}

.contacts {
  margin-bottom: 200px;
}

.contacts .contacts_item {
  width: 36%;
  padding: 0 34px;
  /*border: 1px solid black;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacts .contacts_item--title {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #b0b2c1;
  margin-bottom: 4px;
}

.contacts .contacts_item--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacts .contacts_item--phone {
  font-size: 20px;
  line-height: 2.5rem;
  margin: 4px 0;
}

.contacts .contacts_item--adress {
  /*font-size: 2.3rem;*/
  font-size: 20px;
  line-height: 2.5rem;
  margin-bottom: 13px;
  margin-top: 20px;
}

.contacts .contacts_item--time {
  font-size: 1.6rem;
  line-height: 2rem;
  opacity: 0.5;
}

.contacts .contacts_form {
  width: 60%;
  padding: 0 30px 0 15px;
}

.contacts .contacts_form-item {
  width: 30%;
  margin-bottom: 45px;
  font-size: 1.5rem;
  line-height: 2rem;
}

.contacts .contacts_form-item.big {
  width: 100%;
}

.contacts .contacts_form-item label {
  color: #b0b2c1;
  font-size: 15px;
  line-height: 20px;
}

.contacts .contacts_form-item input {
  font-size: 15px;
  line-height: 20px;
  color: #1f2029;
  padding: 13px 0;
  width: 100%;
  border-bottom: 2px solid #b0b2c1;
  border-radius: 0;
}

.contacts .contacts_form-item textarea {
  border-bottom: 2px solid #b0b2c1;
  background: transparent;
}

.contacts .contacts_form--button {
  display: block;
  margin: 0 -15px 0 auto;
  padding: 0;
}

.contacts .contacts_form--button:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 12px;
  background-color: #b0b2c1;
}

.map {
  padding-bottom: 200px;

  display: none;
}

.map img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.white_page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
}

.white_page .circle {
  border: 1px solid #9899a7;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

.white_page .circle.sm {
  bottom: 15%;
  left: 15%;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  width: 114px;
  height: 114px;
}

.white_page .circle.md {
  width: 645px;
  height: 878px;
  bottom: 69%;
  left: 21%;
  -webkit-transform: rotate(-105deg);
  -ms-transform: rotate(-105deg);
  transform: rotate(-105deg);
}

.white_page .circle.lg {
  width: 938px;
  height: 938px;
  bottom: 50%;
  left: 69%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}

.white_page--box {
  text-align: center;
  padding: 0 15px;
}

/* .white_page--logo {
  position: absolute;
  top: 124px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
} */

/* .white_page--title {
  font-weight: 400;
  font-size: 14.4rem;
  line-height: 12rem;
  letter-spacing: -0.01em;
} */
.white_page--title {
  font-size: 120px;
  line-height: 1.2;
}
@media (max-width: 1280px) {
  .white_page--title {
    font-size: 110px;
  }
}
@media (max-width: 992px) {
  .white_page--title {
    font-size: 90px;
  }
}
@media (max-width: 560px) {
  .white_page--title {
    font-size: 80px;
  }
}

.white_page--suptitle {
  line-height: 1.4;
  color: var(--color-main);
  font-size: var(--font-size-18);
  margin: 30px 0;
}

.white_page a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #1f2029;
  margin-top: 12px;
}

.anim_svg:hover svg {
  position: relative;
  left: 0px;
  -webkit-animation: svgInleft 2s linear infinite;
  animation: svgInleft 2s linear infinite;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/* .footer {
  background: #4b4d5e;
  padding: 67px 0 16px;
  color: #b0b2c1;
}

.footer .footer_copyright {
  margin-top: 17px;
}

.footer .footer_copyright--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
} */

.main_contact {
  background: url("../img/contact_bottom.jpg") center no-repeat;
  background-size: cover;
  padding: 116px 0 152px;
  position: relative;
}

.circle_contact {
  opacity: 0.3;
  border: 1px solid #fff;
  width: 516px;
  height: 516px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.contact_box {
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.contact_box--suptitle {
  margin-bottom: 30px;
}

.contact_box a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 12px;
}

/* .footer_itembg {
  width: 40%;
  padding: 0 65px 0 65px;
}

.footer_itembg--logo {
  margin-bottom: 40px;
}

.footer_itembg a {
  font-size: 1.2rem;
}

.footer_itemsm {
  width: 16.666%;
  padding: 0 15px;
  font-size: 1.5rem;
  line-height: 2.6rem;
}

.footer_itemsm:last-child {
  width: 25%;
  font-size: 12px;
}

.footer_itemsm-title {
  color: #fff;
  margin-bottom: 38px;
  font-size: 2.1rem;
  line-height: 3.6rem;
}

.footer_itemsm-link {
  margin-bottom: 7px;
  -webkit-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.footer_itemsm-link:hover {
  color: #fff;
}

.footer_itemsm--location {
  color: #fff;
  margin-top: 14px;
  text-transform: lowercase;
} */

.copyright_text {
  color: #fff;
  font-size: 1.2rem;
  line-height: 2rem;
  -ms-flex-item-align: center;
  align-self: center;
}

.copyright_text.md {
  display: none;
}

.copyright_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7889a7;
}

.copyright_link img {
  margin-left: 30px;
  display: block;
  width: 21px;
  height: 25px;
}

.gallery_item .link_gallery--itm {
  position: static;
  width: auto;
  margin-left: 0;
  margin-top: 24px;
  line-height: 27px;
}

/* animation load */

.animate-chase {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}

.sk-chase {
  width: 100px;
  height: 100px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 35%;
  height: 35%;
  background-color: #b0b2c1;
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  80%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%,
  0% {
    transform: scale(1);
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 50px #fff !important; /* Цвет фона */
}

.popup_box--field textarea.active,
.contacts .contacts_form-item input.active,
.contacts .contacts_form-item textarea.active,
.popup_box--field input.active {
  border-bottom: 2px solid #000;
}

.map_box {
  height: 560px;
}

.no_scroll,
.modalopen {
  overflow: hidden;
}

.btn_content {
  width: 194px;
}

.mail_word--break {
  word-break: break-all;
}

.result_about--box--ml .result_item--about {
  max-width: 50%;
}

.about_desc {
  width: 100%;
}

.popup_box--field .error {
  color: red;
}

.serv_sect {
  margin-top: 70px;
}

.gallery_responsive--box {
  display: none;
}

.privacy_footer {
  padding-left: 6px;
}

.dark_box .count_box {
  margin-bottom: 40px;
}

.dark_box .count_item {
  border-bottom: 2px solid #ccc;
}

/*.new_btnrequest {
  background-color: #FFC53B;
  transition: .3s all linear;
  height: 59px;
  padding: 0 24px;
  display: flex;
  align-items: center;
}
.new_btnrequest:hover {
  background: #FF6A3B;
}
.new_btnrequest.slide_btn:after {
  content: none;
}

*/

.popup::-webkit-scrollbar {
  width: 0;
}

.sitemap_page {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

/*ACC*/

.section_accordion {
  padding: 0 0 200px;
}

.accordion_box--item {
  padding: 0 0 14px;
  margin-bottom: 37px;
  border-bottom: 1px solid #d1e1ee;
  font-size: 31px;
  line-height: 38px;
}

.accordion_box--item:last-child {
  margin-bottom: 0;
}

.accordion_box .accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion_box .accordion_content--text {
  padding: 30px 40px 0 0;
  font-size: 21px;
  line-height: 27px;
}

.accordion {
  padding: 0 55px 0 0;
  width: 100%;
  text-align: left;
  position: relative;
  font-weight: 700;
  transition: 0.3s all linear;
}

.accordion .accordion_icon .vertical {
  transition: 0.3s all linear;
}

.accordion.active {
  color: #b0b2c1;
}

.accordion.active .accordion_icon--wrapper {
  background-color: #b0b2c1;
}

.accordion.active .accordion_icon .vertical {
  transform: translateY(50px);
  opacity: 0;
}

.accordion_icon {
  width: 16px;
  transition: 0.3s all;
}

.accordion_icon--wrapper {
  position: absolute;
  right: 0;
  top: -5px;
  background-color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  transition: 0.3s all linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion_content p {
  margin-bottom: 20px;
}

.accordion_content ul {
  padding-left: 30px;
  margin-bottom: 10px;
}

.accordion_content li {
  list-style: disc;
  margin-bottom: 8px;
}

/*WPREDAKTOR*/
.grad {
  background-image: linear-gradient(#ffffff82, #ffffffd9, #ffffff);
}

.grad.blured {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-right: 120px;
  right: 0;
  height: 75px;
}

.seo-block {
  position: relative;
}

.wordpress_redaktor {
  height: 400px;
  overflow: auto;
  padding-right: 120px;
}

.wordpress_redaktor::-webkit-scrollbar-track {
  background: #e5e5e5;
}

.wordpress_redaktor::-webkit-scrollbar-thumb {
  background-color: #4b4d5e;
  outline: transparent;
}

.wordpress_redaktor::-webkit-scrollbar {
  width: 4px;
}

.wordpress_redaktor p {
  line-height: 150%;
  margin-bottom: 20px;
}

.wordpress_redaktor h2,
.wordpress_redaktor h3,
.wordpress_redaktor h4,
.wordpress_redaktor h5,
.wordpress_redaktor h6 {
  line-height: 150%;
  margin-bottom: 15px;
}

.wordpress_redaktor ul {
  margin-bottom: 20px;
}

.wordpress_redaktor ul li {
  line-height: 150%;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.wordpress_redaktor ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4f308b;
}

.wordpress_redaktor ol {
  margin-bottom: 20px;
  counter-reset: seoList;
}

.wordpress_redaktor ol li {
  margin-bottom: 5px;
  line-height: 150%;
}

.wordpress_redaktor ol li::before {
  counter-increment: seoList;
  content: counter(seoList) ". ";
}

.content_title.our_team-heading {
  margin-bottom: 41px;
}

.our-portfolio-content {
  display: none;
}

.our-portfolio-content.active {
  display: block;
  padding: 60px;
  background: #f3f3f3;
}

.our-portfolio-title {
  font-family: Varela;
  font-size: 38px;
  font-weight: 400;
  line-height: 53.2px;
}

.our-portfolio-wrapper {
  display: flex;
  flex-wrap: wrap; /* Для переходу на новий рядок */
  gap: 10px; /* Відступи між зображеннями */
}

.our-portfolio-img {
  height: auto;
  flex: 0 0 auto; /* Забезпечує роботу ширини */
}

.our-portfolio-img {
  height: 472px;
  object-fit: cover;
}

.our-portfolio-description {
  font-family: Varela;
  font-size: 31px;
  font-weight: 400;
  line-height: 53px;
  margin-bottom: 42px;
}

.our_team {
  display: flex;
  gap: 30px;

  margin-right: -15px;
}

.home-slider .about_slider--item {
  padding-inline: 10px;
}

.home-slider .design-images {
  padding-inline: 0;
  border: solid 1px #d9d9d9;
}

/*
.home-slider .about_slider-button {
    background: #1F2029;
}

.home-slider .about_slider-button svg {
    fill: #fff;
}
*/
.design-images {
  height: 418px;
  padding-inline: 10px;
  cursor: pointer;
}

.promo_block-right-text {
  line-height: 150%;
}

.promo_block-right .slide_btn {
  margin-top: 150px;
}

.our_team--text {
  font-family: Varela;
  line-height: 150%;
  flex: 40 1 0;
}

.our_team--text p:not(:last-child) {
  margin-bottom: 20px;
}

.our_team-imgs {
  display: flex;
  flex: 60 1 0;
  gap: 30px;
}

.our_team--img-1 {
  height: 283px;

  object-fit: contain;
  flex: 25 1 0;
}

.our_team--img-2 {
  height: 405px;

  object-fit: contain;
  flex: 35 1 0;
}

.home_addition-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.intro_main--about .section {
  padding: 0 0 100px;
}

.home_addition-item img {
  width: 100%;
  margin-bottom: 16px;
}

.home_addition-item p {
  font-family: Varela;
  font-size: 30px;
  font-weight: 400;
  line-height: 39px;
}

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

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

.promo_block-img {
  width: 52%;
}

.promo_block-right {
  width: 48%;
  padding-left: 40px;
  padding-top: 66px;
}

.content_title {
  margin-bottom: 32px;
}

.promo_block-right-text {
  margin-bottom: 46px;
}

.disign_wrapper {
  position: relative;
}

.section.design_first {
  /*padding: 40px 0 0;*/
  padding-top: 75px;
  padding-bottom: 75px;
}
.section.design_first .menu {
  width: 50%;
}
@media (max-width: 768px) {
  .section.design_first .menu {
    width: 62%;
  }
}
@media (max-width: 640px) {
  .section.design_first .menu {
    width: 100%;
  }
}

.section.design_first .menu-item {
  padding: 14px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  align-items: center;
  font-weight: 400;
  opacity: 0.5;
  height: 65px;
}
@media (max-width: 768px) {
  .section.design_first .menu-item {
    font-size: 16px;
    padding: 12px 12px;
    height: 55px;
  }
}
.section.design_first .menu-item.active {
  background-color: #f8f8f8;
  color: #1f2029;
  opacity: 1;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.frstt {
  padding-top: 150px !important;
}

.frstt-pb {
  padding-bottom: 200px !important;
}

@media (max-width: 768px) {
  .section.design_first {
    /*padding: 40px 0 0;*/
    padding-top: 80px !important;
    padding-bottom: 35px !important;
  }

  .frstt {
    padding-top: 35px !important;
  }

  .frstt-pb {
    padding-bottom: 35px !important;
  }
}

@media (min-width: 1630px) {
  .slide_desc {
    font-size: 2.4rem;
  }
}

@media (max-width: 1630px) {
  .result_image--big {
    left: 0;
  }

  .result_image--small {
    right: 85px;
  }

  .content_title--result {
    width: 100%;
  }

  .slider_for {
    width: 45%;
  }

  .slider_for .slick-prev {
    left: 72px;
  }

  .slider_for .slick-next {
    left: 150px;
  }

  .slider_nav {
    width: 55%;
  }

  .gallery_box {
    margin-left: 100px;
    width: 79%;
  }

  .gallery_slider--content {
    max-width: 90%;
    padding-right: 30px;
  }
}

@media (max-width: 1366px) {
  .content_title--ssingle {
    margin-bottom: 70px;
  }

  .slide_desc {
    width: 100%;
  }

  /*.intro_singgle {*/
  /*  margin-bottom: -100px;*/
  /*}*/
  /* .footer {
    padding-bottom: 70px;
  } */

  .container {
    max-width: 1100px;
    padding: 0 30px;
  }

  .about_item .about_desc {
    width: 100%;
  }

  /* .footer_itembg--logo {
    padding-left: 0px;
  }

  .footer_itembg a {
    padding-left: 20px;
  } */

  .copyright_text.md {
    text-align: center;
    max-width: 148px;
  }

  .intro_title {
    font-size: 9.1rem;
    line-height: 10.9rem;
  }

  .intro_item {
    padding-bottom: 80px;
  }

  .intro_item .intro_info {
    height: 75%;
  }

  .intro_item img.lg {
    display: none;
  }

  .intro_item img.md {
    display: block;
  }

  .info_decr {
    margin-left: 50px;
    margin-bottom: 50px;
  }

  .tabs_caption {
    margin-left: 100px;
  }

  .intro_slider .slick-dots {
    right: 0;
    bottom: 80px;
  }

  .result_image--small {
    bottom: -14%;
    width: 300px;
  }

  .content_title {
    font-size: 6.1rem;
    line-height: 7.3rem;
  }

  .tabs_item {
    max-width: 33.333%;
    height: 400px;
  }

  .tabs_item .tabs_relative a.btn_content-auto {
    width: fit-content;
  }

  .tabs_item a:after {
    width: 100%;
  }

  .tabs .tabs_circle1 {
    width: 143px;
    height: 143px;
    bottom: auto;
    top: -20%;
    left: auto;
    right: 27%;
  }

  .slider_for .slick-next {
    bottom: 4%;
    left: 100px;
  }

  .slider_for .slick-prev {
    bottom: 4%;
    left: 30px;
  }

  .gallery_circle1 {
    left: 37%;
  }

  .gallery_circle2 {
    left: 39%;
    width: 700px;
    height: 800px;
  }

  .reviews_slider {
    margin: 0 100px;
  }

  /*.main_contact {*/
  /*  background: url(../img/contact_md.jpg) center no-repeat;*/
  /*  background-size: cover;*/
  /*}*/
  /* .footer_copyright {
    display: none;
  } */

  .copyright_text.md {
    display: block;
    margin-top: 25px;
  }

  .intro_bg {
    padding: 150px 0 64px;
  }

  .intro_bg .intro_title {
    font-size: 54px;
    line-height: 7.3rem;
  }

  .about_wrapper {
    padding: 100px 0 150px;
  }

  .services .tabs_item {
    height: 544px;
  }

  .tabs_item .tabs_relative {
    padding: 50px 28px;
  }

  .custom .tabs_item {
    padding: 0 15px;
  }

  .dark .dark_box {
    padding-left: 104px;
  }

  .service_page {
    padding: 0;
  }

  .gallery_block {
    padding-top: 100px;
  }

  .gallery_block .circle {
    display: none;
  }

  .gallery_item:first-child {
    width: 60%;
  }

  .gallery_item:last-child {
    width: 40%;
  }

  .pagination {
    margin-top: 60px;
  }

  .add_circle .circle {
    display: none;
  }

  .map {
    padding-bottom: 0;
  }

  .map .container {
    max-width: 100%;
    padding: 0;
  }

  /* .white_page--logo {
    top: 77px;
  } */

  /* .white_page .circle {
    display: none;
  } */

  .intro_main--about .main_about {
    padding-top: 50px;
  }

  .gallery_slider--content {
    padding-right: 70px;
  }

  .contactss_section {
    padding-top: 100px;
  }

  .contacts .contacts_item--phone {
    font-size: 1.6rem;
  }

  .contacts .contacts_item--adress {
    font-size: 1.6rem;
  }

  .our_team {
    flex-direction: column;
  }

  .our_team--img-1 {
    height: auto;

    flex: 50 1 0;
  }

  .our_team--img-2 {
    height: auto;

    flex: 50 1 0;
  }

  .home_addition-item {
    flex: 45% 1 1;
  }
}

@media (max-width: 1100px) {
  .content_title {
    font-size: 50px;
  }
}

@media (max-width: 1024px) {
  .intro_slider .slick-dots {
    bottom: 38px;
  }

  .result_item {
    width: 60%;
  }

  .result_item.md {
    width: 40%;
  }

  .result_item .result_image--big {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    left: 15px;
  }

  .result_item .result_image--small {
    width: 143px;
    top: 92%;
  }

  .main_result {
    padding: 100px 0;
  }

  .main_about {
    padding-top: 150px;
  }

  .about_item .about_title {
    height: 105px;
    font-size: 2.6rem;
    display: none;
    line-height: 4rem;
  }

  .section {
    padding: 150px 0;
  }

  .count_box .circle {
    width: 439px;
    height: 838px;
  }

  .gallery_block {
    padding-bottom: 0px;
  }

  .pagination {
    margin-top: 35px;
  }

  .tabs_item .tabs_relative {
    padding: 40px 35px;
  }

  .about_desc {
    width: 95%;
  }

  .result_item--right {
    padding-right: 0;
  }

  .contactss_section {
    padding-top: 100px;
  }

  .add_ml--mail {
    display: none;
  }

  .home_addition-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo_block {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

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

  .promo_block-right {
    width: 100%;
    padding-left: 0;
  }

  .promo_block-img {
    width: 100%;
    margin: 0 auto;
  }

  .promo_block-right .slide_btn {
    margin-top: 0;
  }
}

@media (max-width: 960px) {
  .custom .tabs_item .tabs_relative {
    padding: 10px 15px;
  }

  .our-portfolio-title {
    font-size: 3.5rem;
    line-height: 3.7rem;

    margin-bottom: 15px;
  }

  .our-portfolio-description {
    font-size: 2.1rem;
    line-height: 2.2rem;
  }

  .our-portfolio-img {
    height: 350px;
  }

  .intro_singgle {
    margin-bottom: -50px;
  }

  /* .header_inner {
    padding: 30px 0;
  }

  .header .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 100vh;
    padding: 25px;
    z-index: -1;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #4b4d5e;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
  }

  .header .nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  } */

  .contacts {
    margin-bottom: 150px;
  }

  /* .header .nav .nav_flex--ul {
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 3.3rem;
    line-height: 5.9rem;
    text-align: center;
  }

  .header .nav .nav_flex--ul li {
    margin-bottom: 29px;
  }

  .header .nav .nav_flex--ul li:last-child {
    margin-bottom: 0;
  }

  .header .nav .nav_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 6%;
  }

  .header .nav .nav_contact li {
    color: #b0b2c1;
    font-size: 1.5rem;
    line-height: 2.2rem;
    margin-bottom: 7px;
  }

  .header .nav .nav_contact--box {
    font-size: 1.5rem;
    line-height: 2.2rem;
    text-transform: lowercase;
  } */

  .nav_toggle {
    display: block;
  }

  .intro_title {
    font-size: 7.8rem;
    line-height: 9.4rem;
  }

  .content_title {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 36px;
  }

  .result_image--small {
    right: 5%;
  }

  .result_image .circle1 {
    width: 393px;
    height: 535px;
    bottom: 13%;
    left: -16%;
  }

  .result_image .circle2 {
    width: 452px;
    height: 516px;
    bottom: -28%;
    left: -6%;
  }

  .tabs .tabs_circle1 {
    display: none;
  }

  .tabs_content {
    padding: 0 0;
  }

  .tabs_item {
    max-width: 33%;
    height: auto;
    padding: 15px;
  }

  .custom .tabs_item:hover img {
    /*opacity: 0;*/
  }

  .tabs_item .tabs_title {
    color: #fff;
  }

  .custom .tabs_item:hover .tabs_title:before {
    background: #fff;
  }

  .tabs_item .tabs_relative a.btn_content-auto {
    color: #fff;
  }

  .tabs_item .btn_content-auto:after {
    background: #fff;
  }

  .tabs_item .btn_content-auto path {
    fill: #fff;
  }

  .tabs_item .tabs_title {
    font-size: 24px;
    line-height: 3.6rem;
    margin-bottom: 10px;
  }

  .tabs_item a {
    color: #1f2029;
  }

  .tabs_item svg path {
    fill: #1f2029;
  }

  .main_gallery .content_title.sm {
    margin-bottom: 34px;
  }

  .gallery_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .gallery_slider--content {
    max-width: 100%;
    padding-right: 0;
  }

  .gallery_box {
    width: 100%;
    padding: 0 30px;
    margin-left: 0;
  }

  .gallery_box a {
    margin-top: 0;
  }

  .gallery_box--sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 27px;
  }

  .gallery_box--title {
    width: 50%;
    margin-top: 0;
    padding-right: 50px;
    font-size: 2.4rem;
    line-height: 3.6rem;
  }

  .gallery_box--text {
    width: 50%;
  }

  .gallery_circle1 {
    z-index: 0;
    left: auto;
    right: 0;
  }

  .gallery_circle2 {
    left: auto;
    width: 440px;
    height: 610px;
    right: 0;
    z-index: 0;
  }

  .slider_nav {
    width: 100%;
    z-index: 1;
  }

  .slider_for {
    width: 100%;
    padding: 50px 0 150px;
  }

  .slider_for .slick-next {
    left: auto;
    right: 30px;
    bottom: 5%;
  }

  .slider_for .slick-prev {
    left: auto;
    right: 110px;
    bottom: 5%;
  }

  .slider_for .content_title {
    display: none;
  }

  .main_about {
    padding-top: 100px;
  }

  .about_item {
    width: 50%;
    margin-top: 50px;
  }

  .about_item .about_title {
    height: auto;
    margin: 25px 0 16px;
    font-size: 2.4rem;
    line-height: 3.6rem;
  }

  .circle_review {
    display: none;
  }

  .reviews_slider {
    margin: 0 75px;
  }

  .reviews_item .reviews_desc {
    font-size: 2.4rem;
    line-height: 4.1rem;
  }

  .reviews_item .reviews_desc:after {
    margin-top: 39px;
  }

  .contact_box .content_title {
    font-size: 6.5rem;
    line-height: 7.8rem;
  }

  /* .footer {
    padding: 50px 0;
  }

  .footer_itembg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer_itembg--logo {
    margin-bottom: 0;
  }

  .footer_itemsm {
    width: 33.333%;
  } */

  .copyright_text .md {
    margin-top: 0;
  }

  .intro_bg {
    /*height: 416px;*/
    padding-bottom: 99px;
  }

  .intro_bg .intro_title {
    font-size: 40px;
    line-height: 5.4rem;
  }

  .title_box {
    width: 80%;
  }

  .count_box {
    margin-bottom: 150px;
  }

  .count_box .circle {
    width: 326px;
    height: 567px;
    top: 10%;
  }

  .count_item {
    padding-bottom: 50px;
  }

  .count_item--number {
    font-size: 10rem;
    line-height: 12rem;
  }

  .services .tabs_content {
    padding-top: 10px;
  }

  .services .tabs_item {
    height: 440px;
    max-width: 50%;
    pointer-events: auto;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0 15px;
  }

  .services .tabs_item .tabs_relative {
    padding: 50px 16px;
  }

  .services .tabs_item a {
    color: #fff;
  }

  .services .tabs_item a svg path {
    fill: #fff;
  }

  .services .tabs_item .tabs_title {
    font-size: 24px;
    line-height: 3.6rem;
  }

  .services .tabs_item .tabs_title:before {
    margin-bottom: 30px;
  }

  .dark .circle {
    top: -47%;
  }

  .slide_desc {
    font-size: 2.4rem;
    line-height: 4.1rem;
    margin-bottom: 50px;
    width: 100%;
  }

  .contacts .contacts_item {
    width: 100%;
    padding-left: 70px;
    margin-bottom: 100px;
  }

  .contacts .contacts_item--title {
    margin-bottom: 25px;
  }

  .contacts .contacts_item--box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
  }

  .contacts .contacts_item--phone {
    width: 50%;
    margin: 0;
  }

  .contacts .contacts_form {
    width: 100%;
    padding: 0 30px;
  }

  .result_about--box {
    margin-top: 50px;
  }

  .map_box {
    height: 406px;
  }

  .intro_main--about .main_about {
    padding-top: 50px;
  }

  .slider_nav img {
    height: 100%;
  }

  .content_title--ssingle {
    margin-bottom: 100px;
  }

  .gallery_responsive--box {
    display: block;
    margin-top: 100px;
  }

  .main_contact .content_title {
    margin-bottom: 100px;
  }

  .services .dflex.tabs_addmb {
    margin-bottom: 50px;
  }

  .gallery_item--title {
    font-size: 24px;
    line-height: 36px;
  }

  .contacts .contacts_item--phone {
    font-size: 2.2rem;
  }

  .contacts .contacts_item--adress {
    font-size: 2.2rem;
  }

  .accordion_box--item {
    font-size: 24px;
    line-height: 41px;
  }

  .accordion_icon--wrapper {
    width: 35px;
    height: 35px;
    top: 5px;
  }

  .section_accordion {
    padding: 0 0 150px;
  }

  .our_team {
    margin-right: 0;
  }

  .our_team-imgs {
    flex-direction: column;
  }

  .home_addition-wrapper {
    justify-content: center;
  }

  .home_addition-item {
    flex: 70% 1 1;
  }
}

@media (max-width: 768px) {
  .our-portfolio-img {
    height: 300px;
  }

  .promo_block-right .slide_btn {
    width: 100%;
    position: relative;
  }

  .promo_block-right .slide_btn svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .our-portfolio-content.active {
    padding: 20px;
  }

  .container {
    max-width: 768px;
    padding: 0 30px;
  }

  .gallery_container {
    margin: 0 -15px;
  }

  .promo_block-right {
    padding-top: 0;
  }

  .intro_item {
    padding-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .intro_item .intro_info {
    height: 65%;
  }

  /* .footer_itembg {
    padding: 0 15px;
  } */

  .result_about--box {
    padding: 0;
  }

  .dark .title_box {
    width: 100%;
  }

  .dark .result_about--box {
    padding: 0;
  }

  .dark .circle {
    top: -25%;
    left: 60%;
  }

  .dark .dark_box {
    padding: 56px 60px 100px;
  }

  .dark .dark_box:before {
    right: -10%;
  }

  .superior_flex {
    margin-right: -30px;
  }

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

@media (max-width: 740px) {
  /* .header.fixed .header_inner {
    padding: 25px 0px;
    margin: 0;
  }

  .header_inner.active {
    padding: 30px 15px;
    background: #4b4d5e;
    margin: 0 -15px;
  }

  .header .nav.active {
    height: 500px;
    overflow-y: scroll;
    padding: 261px 25px 131px;
  } */
}

@media (max-width: 700px) {
  .intro_title {
    font-size: 4.1rem;
    line-height: 4.9rem;
  }

  .services .tabs_item a {
    width: 157px;
  }

  .intro_title:after {
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .container_popup.show {
    height: 120%;
    overflow-y: scroll;
  }

  .popup {
    overflow-y: scroll;
    height: 90%;
  }

  .intro_item {
    height: auto;
    padding: 75px 0px 50px;
  }

  .intro_slider {
    height: auto;
  }

  .content_title--result {
    display: none;
  }

  .content_title--result.sm {
    display: block;
    margin: 0 0 32px;
  }

  .result_image {
    height: auto;
  }

  .result_item .result_image--big {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
    height: auto;
  }

  .result_image .circle1 {
    width: 181px;
    height: 255px;
    bottom: 16%;
    left: 26%;
  }

  .result_image .circle2 {
    width: 215px;
    height: 164px;
    bottom: -9%;
    left: 41%;
    display: none;
  }

  .result_image .result_image--small {
    top: auto;
    bottom: -8%;
    right: 17px;
    width: 50%;
  }

  .result_item.md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 100%;
    margin-bottom: 65px;
  }

  .intro_arrow {
    margin-right: 15px;
  }

  .result_item--right {
    padding-right: 15px;
  }

  .gallery_responsive--box {
    margin-top: 25px;
  }

  .services .dflex.tabs_addmb {
    margin-bottom: 0px;
  }

  /* .footer_itembg a {
    padding-left: 0;
  } */

  .mailto_mobile {
    word-break: break-all;
    padding-right: 10px;
  }
}

@media (max-width: 600px) {
  .intro_singgle {
    margin-bottom: -10px;
  }

  .services .tabs_item a {
    width: 142px;
  }

  /* .header .nav .nav_contact--box {
    width: 50%;
  } */

  body {
    font-size: 1.8rem;
    line-height: 2.9rem;
  }

  .container {
    max-width: 640px;
    padding: 0 20px;
  }

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

  .nav_toggle {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .intro_item .intro_info {
    height: 50%;
  }

  .intro_item .intro_info .intro_desc a {
    margin-left: 0;
  }

  .intro_item .intro_info .info_decr {
    margin-left: 0;
    margin-bottom: 40px;
  }

  .intro_title:after {
    margin-top: 24px;
  }

  .info_link {
    margin: 0;
  }

  .content_title {
    font-size: 3.5rem;
    line-height: 4.2rem;
    margin-bottom: 24px;
  }

  .intro_slider .slick-dots {
    bottom: 24px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }

  .intro_slider .slick-dots li {
    margin-right: 18px;
  }

  .intro_slider .slick-dots li:last-child {
    margin-right: 0;
  }

  .main_result {
    padding: 80px 0;
  }

  .info_decr {
    margin-left: 0;
    margin-bottom: 40px;
  }

  .tabs_caption {
    font-size: 2.1rem;
    line-height: 2.5rem;
    margin: 0;
  }

  .tabs_content .dflex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .custom .tabs_item .tabs_relative {
    height: 260px;
  }

  .custom .tabs_item {
    margin-bottom: 20px;
    height: 100%;
  }

  .tabs_item {
    max-width: 100%;
  }

  .tabs_title {
    font-size: 2.1rem;
    line-height: 3.1rem;
  }

  .tabs_title:before {
    margin-bottom: 24px;
  }

  .gallery_box--sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .gallery_box--title {
    width: 100%;
    padding-right: 0px;
    font-size: 2.1rem;
    line-height: 3.1rem;
    margin-bottom: 24px;
  }

  .gallery_box--text {
    margin-bottom: 32px;
    width: 100%;
  }

  .gallery_box a {
    width: 158px;
  }

  .slider_for .slick-prev {
    right: 50%;
    -webkit-transform: translateX(calc(50% - 40px));
    -ms-transform: translateX(calc(50% - 40px));
    transform: translateX(calc(50% - 40px));
    transition: 0.3s all linear;
    opacity: 0.6;
  }

  .slider_for .slick-next {
    right: 50%;
    -webkit-transform: translateX(calc(50% + 40px));
    -ms-transform: translateX(calc(50% + 40px));
    transform: translateX(calc(50% + 40px));
    transition: 0.3s all linear;
    opacity: 0.6;
  }

  .slider_for .slick-prev:active {
    opacity: 1;
  }

  .slider_for .slick-next:active {
    opacity: 1;
  }

  .main_about {
    padding-top: 40px;
  }

  .about_item {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .section {
    padding: 80px 0;
  }

  .reviews_slider {
    margin: 0;
  }

  .reviews_slider .slick-dots {
    opacity: 0;
  }

  .reviews_slider .slick-prev {
    right: 50%;
    -webkit-transform: translateX(calc(50% - 40px));
    -ms-transform: translateX(calc(50% - 40px));
    transform: translateX(calc(50% - 40px));
    left: auto;
  }

  .reviews_slider .slick-next {
    right: 50%;
    -webkit-transform: translateX(calc(50% + 40px));
    -ms-transform: translateX(calc(50% + 40px));
    transform: translateX(calc(50% + 40px));
    left: auto;
  }

  .reviews_item .reviews_desc {
    font-size: 2.1rem;
    line-height: 3.5rem;
  }

  .reviews_item .reviews_people {
    margin: 40px 0;
  }

  .contact_box--suptitle {
    font-size: 2.1rem;
    line-height: 3.6rem;
  }

  .contact_box .content_title {
    font-size: 3.5rem;
    line-height: 4.2rem;
    margin-bottom: 24px;
  }

  /* .footer_itemsm {
    width: 50%;
  }

  .footer_itemsm:last-child {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer_itemsm-title {
    margin-bottom: 16px;
    width: 100%;
  }

  .footer_itemsm ul {
    width: 100%;
  }

  .footer_itemsm .footer_contacts {
    width: 50%;
  }

  .footer_itemsm--location {
    width: 50%;
    margin-top: 0;
  }

  .footer_itembg {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer_itembg a {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .copyright_text.md {
    margin: 40px 0;
    text-align: center;
    width: 140px;
  }

  .footer {
    padding: 40px 0 35px;
  } */

  .circle_contact {
    width: 284px;
    height: 284px;
    opacity: 0.1;
  }

  .title_box {
    width: 100%;
  }

  .result_about--box {
    margin-top: 80px;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .result_item--about {
    padding: 0;
    margin-bottom: 24px;
  }

  .result_item--about:last-child {
    margin-bottom: 0;
  }

  .about_wrapper {
    padding: 32px 0 80px;
  }

  .about_slider .slick-next {
    width: 50px;
  }

  .about_slider .slick-prev {
    width: 50px;
  }

  .count_box {
    margin-bottom: 80px;
  }

  .count_box .circle {
    display: none;
  }

  .count_item {
    padding-bottom: 24px;
  }

  .count_item--number {
    font-size: 4.4rem;
    line-height: 5.3rem;
  }

  .count_item--text {
    width: 50%;
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .services.main_about {
    padding-top: 50px;
  }

  .services.main_about .tabs_content {
    padding-block: 0;
  }

  .services.main_about .tabs_item {
    max-width: 100%;
  }

  .dark {
    background: #4b4d5e;
  }

  .dark .circle {
    display: none;
  }

  .dark .dark_box {
    padding: 40px 0;
  }

  .dark .result_about--box {
    margin: 0 0 40px;
  }

  .slide_desc {
    font-size: 2.1rem;
    line-height: 3.6rem;
    margin-bottom: 40px;
  }

  .service_page {
    padding: 0;
  }

  .gallery_block {
    padding-bottom: 40px;
  }

  .gallery_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .gallery_container:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .gallery_item {
    display: block;
    margin-bottom: 40px;
    padding: 0;
  }

  .wp-pagenavi {
    margin-top: 40px;
  }

  .wp-pagenavi .current {
    margin-left: 0;
  }

  .gallery_item:first-child {
    width: 100%;
  }

  .gallery_item:last-child {
    width: 100%;
  }

  .gallery_item img {
    width: 100%;
  }

  .contacts {
    margin-bottom: 80px;
  }

  .contacts .contacts_item {
    padding-left: 15px;
    margin-bottom: 40px;
  }

  .contacts .contacts_item--box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacts .contacts_item--phone {
    width: 100%;
    /*margin-bottom: 32px;*/
  }

  .contacts .contacts_form-item {
    margin-bottom: 40px;
    width: 100%;
  }

  /* .white_page--title {
    font-size: 10rem;
    line-height: 12rem;
  } */

  .white_page--suptitle {
    font-size: var(--font-size-15);
  }

  .serv_sect {
    margin-top: 0px;
  }

  .contactss_section {
    padding-top: 80px;
  }

  .result_about--box--ml .result_item--about {
    max-width: 100%;
  }

  .container {
    padding: 0 20px;
  }

  .superior_flex {
    margin-right: -20px;
  }

  .section_accordion {
    padding: 0 0 80px;
  }
}

@media (max-width: 480px) {
  .our-portfolio-img {
    height: 200px;
  }

  .design-images {
    height: 250px;
    padding: 0;
  }

  .slider_for {
    padding: 24px 0 150px;
  }

  .services .tabs_item {
    height: 280px;
  }

  .services .tabs_item .tabs_relative {
    padding: 32px 16px;
  }

  /* .header.fixed .header_inner {
    padding: 15px 0;
  } */

  .intro_item {
    height: 100vh;
    padding: 56px 0px;
  }

  .intro_slider {
    height: 100vh;
  }

  .tabs_caption {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .tabs_caption li {
    margin-right: auto;
  }

  .popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
    max-width: 100%;
    width: 100vw;
    height: 100vh;
  }

  .popup_box {
    width: 100%;
    padding: 50px 0 10px;
  }

  .container_popup.show {
    height: 100%;
  }

  .popup_box--title {
    font-size: 3.5rem;
    line-height: 4.2rem;
  }

  .popup_box--field {
    margin-bottom: 30px;
  }

  .intro_bg {
    /*height: 470px;*/
    padding: 120px 0 50px;
    /*padding: 80px 0 50px;*/
  }

  .intro_bg--box {
    justify-content: normal;
  }

  .intro_bg .intro_title {
    font-size: 4.1rem;
    line-height: 4.9rem;
    /*margin-top: 94px;*/
  }

  /* .header_inner.active {
    background: transparent;
  }

  .header .nav.active {
    height: calc(100vh + 20px);
    overflow-y: visible;
    padding: 25px;
  } */

  .gallery_container {
    margin: 0;
  }

  .intro_main--about .main_about {
    padding-top: 30px;
  }
}

@media (max-width: 360px) {
  .count_item--number {
    font-size: 4rem;
  }

  /* .white_page--title {
    font-size: 8rem;
    line-height: 10rem;
  } */
}

.btn--right {
  margin-left: auto;
  display: block;
}

.contacts--about .contacts_form {
  width: 100%;
}

.gallery-updated {
}

.gallery-updated__title {
}

.reviews-form .dflex.justify {
  justify-content: flex-start;
  gap: 0 100px;
}

.reviews-form {
  padding: 100px 0;
}

.reviews-form .contacts {
  margin: 0;
}

.reviews-form .contacts .contacts_form {
  width: 100%;
}

.reviews-items {
  padding: 100px 0;
}

.reviews-item {
  position: relative;
}

.reviews-item:not(:last-child) {
  margin-bottom: 40px;
}

.reviews-item__content {
  padding: 15px 25px 20px;
  background-color: #222;
  border: 4px solid #4f91cd;
  border-radius: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  overflow: hidden;
}

.reviews-item__block {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 30px;
  padding: 0 0 0 20px;
  margin-top: -20px;
  z-index: 1;
  position: relative;
}

.reviews-item__icon {
  min-width: 70px;
  max-width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
}

.reviews-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reviews-items__block {
  margin-top: 30px;
}

.reviews-items__title {
  color: #4f91cd;
  position: relative;
  font-size: 26px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  padding-bottom: 7px;
}

.reviews-items__title::after {
  background: #66973b;
  height: 2px;
  width: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .reviews-items,
  .reviews-form {
    padding: 50px 0;
  }

  .reviews-item__block {
    margin-top: 0;
  }

  .reviews-item__icon {
    margin-top: -20px;
  }
}

.section-description {
  padding: 50px 0 0;
}

.intro_slider .slick-dots li button {
  display: none;
}

.intro_slider .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #fff;
  opacity: 0.7;
  transition: all ease 0.4s;
  cursor: pointer;
}

.intro_slider .slick-dots li:hover {
  opacity: 1;
}

.intro_slider .slick-dots li.slick-active {
  opacity: 1;
  cursor: revert;
}

.reviews_name {
  font-size: 3.8rem;
  line-height: 140%;
  margin-bottom: 15px;
}

.slider-counter {
  background: white;
  max-width: 120px;
  margin: 0 auto;
  padding: 16px;
  margin-top: -44px;
  z-index: 10;
  width: 100%;
  position: relative;
  pointer-events: none;
  user-select: none;
  color: #1f2029;
  text-align: center;
  font-size: 21px;
}

@media (max-width: 1366px) {
  .main_about.with_ellipse .slider-counter {
    margin-top: -104px;
  }
}

@media (max-width: 1100px) {
  .main_about.with_ellipse .slider-counter {
    margin-top: -13vw;
  }
}

@media (max-width: 960px) {
  .main_about.with_ellipse .slider-counter {
    margin-top: -55px;
  }
}

.divider,
.total {
  color: #8f9094;
}

.with_counter .about_slider--img {
  cursor: url(../img/newc.png), auto;
  object-fit: contain;
  background: #f3f3f3;
  max-height: 600px;
}

.about_slider-mini-slider {
  max-height: 600px;
  overflow: hidden;
}

.about_wrapper.service_page {
  max-width: 92%;
}

.about_slider-mini {
  max-width: 64px;
  position: absolute;
  right: -8%;
  top: 0;
  z-index: 10;
}

.about_slider-mini .slick-list {
  padding: 0 0 50% 0 !important;
}

@media (max-width: 991px) {
  .about_wrapper.service_page {
    max-width: 89%;
  }

  .about_slider-mini {
    right: -11%;
  }
}

@media (max-width: 768px) {
  .about_wrapper.service_page {
    max-width: 100%;
  }

  .about_slider-mini {
    width: 100%;
    position: unset;
    max-width: 100%;
    margin-top: 20px;
  }

  .about_slider-mini .slick-slide {
    padding: 0 5px !important;
  }

  .about_slider-mini .slick-current .about_slider--item:after {
    width: 100% !important;
  }

  .about_wrapper {
    position: relative;
  }

  .about_slider-mini .slick-list {
    padding: 0 5% 0 0 !important;
  }
}

.about_slider-mini img {
  height: 64px;
}

@media (max-width: 600px) {
  .about_slider-mini img {
    height: 64px;
  }
}

.about_slider-mini .slick-current .about_slider--item {
  position: relative;
  display: block;
}

.about_slider-mini .about_slider--item {
  cursor: pointer;
}

.about_slider-mini .slick-current .about_slider--item:hover {
  cursor: pointer;
}

.about_slider-mini .slick-current .about_slider--item:after {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  inset: 0;
  position: absolute;
  display: block;
  width: 64px;
  height: 64px;
}

.about__slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 46px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

@media (max-width: 500px) {
  .about__slider-header {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 25px;
  }

  .with_counter .about_slider--img {
    height: 450px;
  }

  .about__slider-header .content_title {
    border-bottom: 2px solid rgba(0, 0, 0, 0.4);
    width: 100%;
    padding-bottom: 24px;
  }

  .about__slider-header .slide_btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
  }

  .about__slider-header .slide_btn:after {
    content: unset;
  }
}

.about__slider-header p {
  margin-bottom: 0;
}

@media (max-width: 1367px) {
  /* .header_new--item.add_ml--mail {
    display: none;
  } */
}

.new-design {
  padding-bottom: 200px;
  padding-top: 75px;
}

.new-design:has(+ .frstt-pb) {
  padding-bottom: 75px;
}

@media (max-width: 768px) {
  .new-design {
    padding-bottom: 124px;
  }

  .new-design:has(+ .frstt-pb) {
    padding-bottom: 0;
  }
}

@media (max-width: 600px) {
  .new-design {
    padding-bottom: 72px;
  }
}

.new-design .main-info {
  width: 68%;
  margin-left: 25%;
  position: relative;
}

.mini-images-slider img {
  width: 64px;
  height: 64px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mini-images-slider img {
    height: 64px !important;
    width: 64px !important;
  }

  .about_slider-mini img {
    width: 64px;
  }
}

@media (max-width: 500px) {
  .mini-images-slider img {
    height: 36px !important;
  }

  .mini-images-slider .slick-current:after {
    height: 36px !important;
  }

  .about_slider-mini img {
    width: 36px;
    height: 36px;
  }

  .about_slider-mini .slick-current .about_slider--item:after {
    height: 36px;
  }
}

@media (max-width: 1280px) {
  .mini-images-slider .slick-list {
    max-height: 500px !important;
  }
}

.mini-slider-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
}

@media (max-width: 768px) {
  .mini-slider-wrapper {
    position: unset;
    width: auto;
  }

  .mini-slider-wrapper .slick-slide {
    margin: 0 4px;
  }
}

@media (max-width: 500px) {
  .mini-slider-wrapper .slick-slide {
    width: 36px;
    height: 36px;
  }
}

.mini-images-slider .slick-current {
  position: relative;
}

.mini-images-slider .slick-current:after {
  content: "";
  width: 100%;
  height: 64px;
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
}

.new-design .main-wrap {
  position: relative;
}

.main-images_wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 20.1%;
}

@media (max-width: 1050px) {
  .main-images_wrapper {
    width: 18%;
  }

  .new-design .main-info {
    margin-left: 21%;
  }
}

.main-images_slider .slick-slide img {
  max-height: 124px;
  height: 124px;
  width: 100%;
  object-fit: cover;
}

.main-images_slider {
  cursor: pointer;
  /*height: 600px;*/
}

.main-images_slider .slick-list {
  padding: 0 0 35% 0 !important;
}

@media (max-width: 768px) {
  .main-images_slider .slick-list {
    padding: 0 9% 0 0 !important;
  }

  .main-images_slider {
    margin-bottom: 30px;
    margin: 0 65px !important;
    padding: 0 8px;
    overflow: hidden;
  }
}

.main-images_slider:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  background: white;
}

@media (max-width: 1366px) {
  .main-images_slider .slick-slide img {
    width: 100%;
    height: 122px;
  }

  .main-images_slider .slick-current .wrap:after {
    height: 122px !important;
  }

  .main-images_slider .slick-slide .wrap:hover :after {
    height: 122px !important;
  }
}

.one-item-slider .slick-slide img {
  max-height: 600px;
  /*height: 100%;*/
  width: 100%;
  object-fit: contain;
  background-color: #f3f3f3;
}

@media (max-width: 1280px) {
  .one-item-slider .slick-slide img {
    max-height: 500px;
  }
}

.slick-slide {
  pointer-events: auto; /* Увімкнення клікабельності */
  z-index: 1;
}

.slick-current {
  z-index: 2; /* Пріоритет поточного слайда */
}

.one-item-slider-wrapper .about_slider-button {
  top: 300px !important;
  transform: translateY(-50%);
}

@media (max-width: 1280px) {
  .one-item-slider-wrapper .about_slider-button {
    top: 250px !important;
  }
}

.one-item-slider-wrapper .about_slider-button.about_slider-button--prev {
  transform: translateY(-50%) rotate(180deg);
}

.one-item-slider-wrapper {
  position: relative;
}

.one-item-slider .slick-slide a {
  cursor: url("../img/newc.png"), auto;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
}

.new-design-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75%;
  margin-left: 25%;
}

.new-design-header .stat-main {
  font-size: 64px;
  font-weight: 400;
}

.new-design-header .content_title {
  margin-bottom: 0;
}

.new-design-header {
  margin-bottom: 32px;
}

.title-text-wrap {
  display: flex;
  gap: 120px;
  margin-top: 25px;
}

@media (max-width: 991px) {
  .title-text-wrap {
    gap: 40px;
  }
}

.title-text-wrap .title {
  max-width: 140px;
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  color: #8f9094;
}

@media (max-width: 768px) {
  .title-text-wrap .title {
    font-size: 18px !important;
    max-width: 110px;
  }
}

@media (max-width: 450px) {
  .title-text-wrap {
    gap: 0;
  }
}

.title-text-wrap .text {
  max-width: 600px;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

.main-images_wrapper .about_slider-button--prev {
  top: -60px;
  transform: translateX(-50%) rotate(180deg);
  left: 50% !important;
  padding: 24px 24px !important;
  right: unset !important;
  background: unset;
}

.main-images_wrapper .about_slider-button--next {
  left: 50% !important;
  right: unset !important;
  background: unset;
}

.main-images_wrapper .about_slider-button--prev polygon {
  fill: white;
}

.main-images_wrapper .about_slider-button--next {
  bottom: -75px;
  top: unset;
  transform: translateX(-50%);
}

.main-images_wrapper .about_slider-button--next polygon {
  fill: white;
}

.main-images_slider .slick-slide {
  position: relative;
  z-index: 10;
}

@media (max-width: 1366px) {
  .main-images_slider .slick-slide {
    height: 122px;
    margin-bottom: 10px;
  }

  .main-images_wrapper .about_slider-button--prev {
    left: 29px !important;
  }

  .main-images_wrapper .about_slider-button--next {
    right: 41px !important;
    max-width: 66px;
  }

  .title-text-wrap .text {
    font-size: 18px;
    line-height: 19.8px;
    max-width: 430px;
  }

  .title-text-wrap .title {
    font-size: 24px;
    line-height: 28.8px;
  }

  .new-design-header .stat-main {
    font-size: 61px;
  }
}

@media (max-width: 1080px) {
  .main-images_wrapper .about_slider-button--prev {
    left: 50% !important;
    right: unset !important;
    width: 50px;
    height: 50px;
    padding: 0 !important;
    transform: translateX(-50%) rotate(180deg);
  }

  .main-images_wrapper .about_slider-button--next {
    /*left: 0;*/
    right: unset !important;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .main-images_wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
  }

  .new-design .main-info {
    width: 100%;
    margin-left: 0;
  }

  .main-images_wrapper .about_slider-button--prev:not(.slick-hidden) {
    left: -25px !important;
    right: unset !important;
    top: 39%;
    transform: rotate(90deg) scale(1) translateY(-50%) !important;
    display: flex !important;
    justify-content: center;
    align-items: end;
  }

  .one-item-slider-wrapper .about_slider-button.about_slider-button--prev {
    scale: 1.3;
    top: 245px !important;
  }

  .main-images_wrapper .about_slider-button--next {
    right: 0 !important;
    left: unset !important;
    top: 50%;
    transform: translateY(-50%) translateX(0) rotate(270deg);
    max-width: 78px;
    width: 50px;
    height: 50px;
    padding: 0 !important;
    align-items: end;
  }

  .main-images_slider .slick-slide img {
    width: 100%;
    height: 160px;
    max-height: 160px;
    max-width: 160px;
    /*object-fit: contain;*/
  }

  .main-images_slider .slick-current .wrap:after {
    height: 160px !important;
    max-width: 160px;
  }

  .main-images_slider .slick-slide {
    padding-right: 8px;
    padding-left: 8px;
    border-right: 1px solid #8f9094;
  }

  .new-design .main-wrap {
    display: flex;
    flex-direction: column;
  }

  .one-item-slider-wrapper .about_slider-button {
    top: 235px !important;
    padding: 11px;
    transform: translateY(-50%) scale(1.3);
    border-radius: 0 !important;
  }

  .one-item-slider-wrapper .about_slider-button svg {
    transform: scale(0.6);
  }

  .title-text-wrap .text {
    max-width: 100%;
    padding-left: 15px;
  }

  .new-design-header {
    width: 100%;
    margin-left: 0;
  }

  .new-design-header .stat-main {
    font-size: 45px;
  }

  .main-images_slider .slick-list {
    overflow: visible;
  }

  .main-images_slider .slick-track {
    margin-left: -8px;
  }

  .one-item-slider .slick-slide img {
    height: 471px;
  }

  .new-design .container {
    padding: 0 15px;
  }
}

@media (max-width: 600px) {
  .main-images_slider {
    margin: 0 15px !important;
  }

  .main-images_wrapper .about_slider-button--next {
    width: 18px;
    height: 16px;
    padding: 0 !important;
    right: -10px !important;
    display: none !important;
  }

  .main-images_wrapper .about_slider-button--prev {
    width: 18px;
    height: 16px;
    padding: 0 !important;
    left: -10px !important;
    top: 47%;
    display: none !important;
  }
}

@media (max-width: 450px) {
  .stat-main {
    display: none;
  }

  .about_slider-button {
    padding: 6px !important;
  }

  .title-text-wrap {
    flex-wrap: wrap;
  }

  .title-text-wrap .title {
    max-width: 100%;
    padding-bottom: 24px;
  }

  .title-text-wrap .text {
    max-width: 100%;
    padding-left: 0;
  }

  .main-images_wrapper .about_slider-button--next {
    height: 67px;
    width: 67px;
  }

  .main-images_slider .slick-slide img {
    height: 120px;
    width: 120px;
  }

  .main-images_slider .slick-current .wrap:after {
    height: 120px !important;
    width: 120px !important;
  }

  .main-images_slider .slick-slide .wrap {
    max-width: 122px !important;
  }

  .main-images_slider .slick-current .wrap:before {
    top: 60px !important;
  }

  /*.main-images_wrapper .about_slider-button--prev {*/
  /*    left: -35px !important;*/
  /*}*/
  .main-images_wrapper .about_slider-button--next {
    right: -35px !important;
  }
}

.main-images_slider .slick-slide {
  position: relative;
  height: 225px !important;
  margin-bottom: 24px;
  /*padding: 20px 0;*/
}

@media (max-width: 1280px) {
  .main-images_slider .slick-slide {
    max-height: 183px !important;
  }
}

.main-images_slider .slick-slide .wrap {
  border-bottom: 2px solid #8f9094;
}

@media (max-width: 768px) {
  .main-images_slider .slick-slide .wrap {
    border-bottom: none;
    /*border-right: 1px solid #8f9094;*/
    max-width: 164px;
  }

  .main-images_slider .slick-slide {
    max-height: 203px !important;
  }
}

.main-images_slider .slick-slide .wrap h6 {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
  padding-top: 17px;
  padding-bottom: 24px;
  color: #1f2029;
  /*position: relative;*/
  display: flex;
  justify-content: space-between;
}

.main-images_slider .slick-slide .wrap h6 svg {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.main-images_slider .slick-slide .wrap:hover h6 svg {
  visibility: visible;
  opacity: 1;
}

.main-images_slider .slick-slide > div {
  position: relative;
  z-index: 10;
}

.main-images_slider .slick-slide .wrap:hover :after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 124px;
  left: 0;
  background: radial-gradient(107.67% 233.96% at 10.93% 104.21%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.main-images_slider .slick-current .wrap:after {
  content: "";
  position: absolute;
  height: 124px;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

/*.main-images_slider:after {*/

/*}*/

@media (max-width: 768px) {
  .main-images_slider:after {
    right: -15px;

    bottom: 0;
    width: 120px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    height: 100%;
    content: unset;
  }
}

.slick-current .wrap:after {
  /*background: radial-gradient(107.67% 233.96% at 10.93% 104.21%, rgba(255, 255, 255, 0.6) 0%, rgba(0, 0, 0, 0) 100%) !important;*/
  background: rgba(255, 255, 255, 0.4) !important;
}

.main-images_slider .slick-current .wrap:before {
  content: "Currently viewing";
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translate(-50%, -50%);
  background: #1f2029;
  border-radius: 20px;
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  z-index: 2;
  color: white;
  width: max-content;
  transition:
    transform 0.4s ease-out,
    opacity 0.3s ease-out;
}

.main-images_slider .slick-slide:not(.slick-current) .wrap:before {
  content: "Show case";
  color: #1f2029;
  background: white;
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  border-radius: 20px;
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  z-index: 2;
  width: max-content;
  transition:
    transform 0.4s ease-out,
    opacity 0.3s ease-out;
}

@media (max-width: 1050px) {
  .main-images_slider .slick-current .wrap:before {
    font-size: 10px;
  }

  .main-images_slider .slick-slide:not(.slick-current) .wrap:before {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .main-images_slider .slick-current .wrap:before {
    top: 80px;
  }
}

.main-images_slider .slick-slide:not(.slick-current):hover .wrap:before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.slick-current .main-count {
  text-shadow: 1px 1px 1px #000;
}

.main-count {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: white;
  font-size: 24px;
  width: fit-content;
}

.with_ellipse .about_slider-button {
  transform: scale(1) translateY(-50%);
}

.with_ellipse .about_slider-button--prev {
  transform: scale(1) translateY(-50%) rotate(180deg);
}

@media (max-width: 768px) {
  .with_ellipse .about_slider-button {
    transform: scale(0.6) translateY(-50%);
    border-radius: 0;
    top: 42%;
  }

  .with_ellipse .about_slider-button--prev {
    transform: scale(0.6) translateY(-50%) rotate(180deg);
  }
}

.contactss_section {
  padding-top: 150px !important;
}

.gallery_block {
  padding-top: 150px;
  padding-bottom: 200px;
}

.ptpb {
  padding-top: 150px;
}

.about-result {
  padding-bottom: 200px !important;
}

.gallery-updated {
  padding-bottom: 200px;
  padding-top: 50px;
}

.about_slider-button:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(31, 32, 41);
  transition: all 0.3s ease;
  opacity: 0;
}
.about_slider-button:hover:after {
  opacity: 1;
}

.about_slider-button svg path {
  z-index: 3;
  position: relative;
}

.about_slider-button:hover svg path {
  fill: #ffffff !important;
  z-index: 2;
}

.about_slider-button:hover svg {
  z-index: 3;
}

.main-images_wrapper .about_slider-button:hover:after {
  background: white;
}

.main-images_wrapper .about_slider-button:hover svg path {
  z-index: 2;
  fill: #4b4d5e !important;
  transition: none !important;
}

.disign_wrapper.home-slider .about_slider-button {
  transform: translateY(-50%);
}

.disign_wrapper.home-slider .about_slider-button--prev {
  transform: translateY(-50%) rotate(180deg);
}

.contact-page {
  /*position: absolute;*/
  /*height: 100vh;*/
}

.contactss_section {
  height: 1037px;
  background-repeat: no-repeat;
  background-size: cover;
}

.contactss_section .title_box {
  color: white;
  margin-top: 15px;
  margin-bottom: 25px;
}

.contactss_section .contacts {
  border-top: 2px solid #999999;
  padding-top: 80px;
}

.contactss_section .contacts_form--button {
  color: white;
}

.contactss_section .contacts_form--button span {
  margin-right: 149px;
}

.contactss_section .contacts_form--button path {
  fill: white;
}

.contactss_section .title_box {
  width: 95%;
}

.contactss_section .title_box .content_title {
  font-size: 85px;
  line-height: 1.2;
}

.contactss_section .form-title {
  font-size: 36px;
  color: white;
  line-height: 1;
  margin-left: -15px;
  margin-bottom: 40px;
  font-weight: 400;
}

.contacts {
  margin-left: 0;
  margin-right: 0;
}

.contactss_section .contacts .contacts_item {
  color: white;
  justify-content: unset;
}

.contactss_section .contacts .contacts_item .contacts_item--title {
  font-size: 36px;
  font-weight: 400;
  color: white;
  margin-bottom: 40px;
}

.contactss_section .contacts_item--box {
  color: white;
}

.contactss_section .contacts_item--box div {
  display: flex;
  gap: 5px;
}

.contactss_section .contacts_item--box div svg {
  width: 33px;
  height: 16px;
  max-width: 22px;
}

.contactss_section .contacts_item--box p,
.contactss_section .contacts_item--box a {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 30px;
  opacity: 1;
  line-height: 1.1;
}

.contactss_section .contacts_item--adress {
  margin-top: 0;
  margin-bottom: 0;
}

.contactss_section input,
.contactss_section textarea {
  color: white !important;
}

.contactss_section textarea.active,
.contactss_section input.active {
  border-bottom: 2px solid #b0b2c1 !important;
}

@media (max-width: 1280px) {
  .contactss_section .title_box .content_title {
    font-size: 54px;
  }

  .contactss_section .title_box {
    width: 70%;
  }

  .contactss_section .contacts {
    padding-top: 36px;
  }

  .contactss_section .form-title {
    font-size: 28px;
  }

  .contactss_section .contacts .contacts_item .contacts_item--title {
    line-height: 1;
    font-size: 28px;
  }

  .contactss_section .contacts_item--box p,
  .contactss_section .contacts_item--box a {
    font-size: 18px;
  }

  .contactss_section .contacts_form--button span {
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .contactss_section .contacts {
    flex-direction: column-reverse;
  }

  .contactss_section {
    height: auto;
  }

  .contactss_section .contacts {
    margin-bottom: 0;
    padding-bottom: 120px;
  }

  .contacts .contacts_form {
    border-top: 2px solid #999999;
  }

  .contactss_section .contacts_item {
    margin-bottom: 18px;
    padding-left: 0;
  }

  .contacts_item--box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row !important;
    gap: 5%;
  }

  .contacts_item--box span {
    width: 45%;
  }

  .contactss_section .form-title {
    padding-top: 48px;
  }

  .contacts .contacts_form {
    padding: 0 15px !important;
  }

  .contactss_section .title_box .content_title {
    font-size: 40px;
  }

  .contactss_section .title_box {
    width: 62%;
  }

  .contactss_section .contacts_item--box p,
  .contactss_section .contacts_item--box a {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contactss_section .title_box .content_title {
    font-size: 36px;
  }

  .contactss_section .title_box {
    width: 90%;
  }

  .contactss_section .contacts .contacts_item--box {
    flex-direction: column !important;
  }

  .contacts_item--box span {
    width: 100%;
  }

  .contactss_section {
    padding-top: 115px;
  }

  .contactss_section .contacts_item--box p,
  .contactss_section .contacts_item--box a {
    font-size: 16px;
  }

  .contactss_section .contacts .contacts_form--button {
    text-align: left;
    margin-left: -15px;
    width: 107%;
    position: relative;
  }

  .contactss_section .contacts_form--button svg {
    position: absolute;
    right: 0;
    top: 44%;
    transform: translateY(-50%);
  }

  .contactss_section input {
    height: 49px;
  }
}

@media (max-width: 375px) {
  .contactss_section .contacts .contacts_form--button {
    width: 110%;
  }
}

html,
body {
  /* overflow-x: hidden; */
}

.new-title {
  font-size: 36px;
  max-width: 350px;
  font-weight: 400;
  line-height: 1.2;
  color: #1f2029;
}

@media (max-width: 1366px) {
  .new-title {
    font-size: 28px;
  }
}

.new-design__header {
  font-size: 61px;
  font-weight: 400;
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 48px;
  width: 100%;
  margin-bottom: 48px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .new-design__header {
    font-size: 45px;
    margin-bottom: 24px;
  }
}

@media (max-width: 400px) {
  .new-design__header {
    font-size: 41px;
    padding-bottom: 16px;
    margin-bottom: 22px;
  }
}

.title-desc-wrap {
  width: 100%;
  display: flex;
  align-items: end;
  max-width: 850px;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .title-desc-wrap {
    border-top: 2px solid rgba(0, 0, 0, 0.4);
    padding-top: 36px;
  }
}

.read-desc {
  font-size: 16px;
  padding-bottom: 16px;
  color: #8f9094;
  line-height: 1;
  border-bottom: 1px solid #8f9094;
  display: inline-block;
  cursor: pointer;
}

.read-desc svg {
  margin-left: 51px;
  display: inline-block;
}

.read-desc svg path {
  fill: #8f9094;
}

.mobile {
  display: none;
}

@media (max-width: 590px) {
  .title-desc-wrap {
    flex-direction: column;
    align-items: baseline;
  }

  .read-desc {
    width: 100%;
    position: relative;
    margin-top: 16px;
  }

  .read-desc svg {
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media (max-width: 768px) {
  .mobile {
    display: block;
  }

  .mobile.zoom {
    position: absolute;
    right: 16px;
    z-index: 2;
    top: 16px;
  }

  .pc {
    display: none;
  }
}

.tabs-wrapper {
  display: flex;
  gap: 70px;
}

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

/* @media (max-width: 768px) {
  .menu {
    width: 62%;
  }
} */

/* .menu-item {
  padding: 14px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.5;
}

.menu-item.active {
  background-color: #f8f8f8;
  color: #1f2029;
  opacity: 1;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.menu-item .arrow {
  padding-left: 15px;
}

.menu-item:hover {
  background-color: #f8f8f8;
} */

.image-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid black;
  max-width: 531px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  display: none;
  object-fit: contain;
}

.image-container img.active {
  display: block;
}

.types-of-home .content_title {
  max-width: 530px;
  line-height: 1.2;
}

@media (max-width: 1280px) {
  .types-of-home .content_title {
    font-size: 61px;
  }

  .image-container {
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .types-of-home .content_title {
    font-size: 45px;
  }

  .image-container {
    max-height: fit-content;
    max-width: 312px;
  }

  /* .menu-item {
    font-size: 16px;
    padding: 12px 12px;
  } */

  .tabs-wrapper {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .tabs-wrapper {
    flex-direction: column-reverse;
  }

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

  .image-container {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .types-of-home .content_title {
    font-size: 38px;
  }
}

.welcome-wrapper {
  display: flex;
  padding-top: 150px;
  gap: 8%;
}

.image-column {
  width: 52%;
}

.image-column img {
  max-width: 645px;
  width: 100%;
  max-height: 718px;
  height: 100%;
  object-fit: contain;
}

.text-column {
  width: 40%;
  padding-top: 114px;
}

@media (max-width: 1366px) {
  .text-column {
    padding-top: 97px;
  }
}

.text-column h3 {
  font-size: 65px;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 36px;
}

.text-column p {
  font-size: 21px;
  line-height: 1.3;
}

@media (max-width: 1280px) {
  .text-column h3 {
    font-size: 61px;
  }
}

@media (max-width: 950px) {
  .text-column h3 {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .text-column h3 {
    font-size: 45px;
  }

  .text-column p {
    font-size: 18px;
  }

  .welcome-wrapper {
    padding-top: 100px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .image-column {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .text-column {
    width: 100%;
    padding-top: 30px;
  }
}

@media (max-width: 640px) {
  .text-column h3 {
    font-size: 41px;
    padding-top: 30px;
  }

  .text-column p {
    font-size: 18px;
  }

  .welcome-wrapper {
    flex-direction: column;
  }

  .image-column {
    width: 100%;
  }

  .text-column {
    width: 100%;
  }

  .welcome-wrapper {
    padding-top: 80px;
  }
}

@media (max-width: 1100px) {
  .main_about.with_ellipse {
    /*background-position: 120% -41%;*/
  }
}

@media (max-width: 1024px) {
  .main_about.with_ellipse {
    padding-top: 0px;
  }
}

@media (max-width: 768px) {
  .main_about.with_ellipse {
    padding-top: 80px;
  }
}

.text-section {
  padding-bottom: 125px;
}

.text-section__side {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.text-section__side .left-side {
  max-width: 39%;
  width: 100%;
}

.text-section__side .right-side {
  max-width: 57%;
  width: 100%;
}

.text-section__side .right-side p {
  line-height: 1.3;
}

.text-section__side .right-side p a {
  text-decoration: underline;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.text-section__side .right-side p a:hover {
  opacity: 1;
}

.main_about.with_ellipse + .text-section {
  margin-top: -100px;
}

@media (max-width: 1059px) {
  .text-section__side .left-side {
    max-width: 100%;
  }

  .text-section__side .right-side {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .text-section {
    padding-bottom: 80px;
  }
}

@supports (contain-intrinsic-size: 3000px 1500px) {
  img:is([sizes="auto" i], [sizes^="auto," i]) {
    contain-intrinsic-size: 3000px 1500px;
  }
}

@media (min-width: 960px) {
  .intro_item {
    height: 115vh !important;
  }
}

#wpcf7-f558-o1 > form > p > span > input {
  border: 2px solid black;
  height: 52px;
  margin-bottom: 20px;
  width: 100%;
}

#wpcf7-f558-o1 > form > p > input {
  width: 100%;
  height: 40px;
  margin-top: 35px;
  color: white;
  background: black;
}

body .esg-entry-media img {
  min-width: unset !important;
}
#form_loader {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.contacts_form #form_loader {
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: rgba(176, 178, 193, 0.3);
}
.popup #form_loader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(176, 178, 193, 0.6);
  z-index: 116;
}
.spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.popup .spinner {
  border: 4px solid rgba(176, 178, 193, 1);
  border-top-color: #fff;
}
.contacts_form .spinner {
  border: 4px solid rgba(176, 178, 193, 0.6);
  border-top-color: #fff;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.contacts_form:has(.spinner) {
  position: relative;
}
.popup_box:has(.spinner) {
  position: relative;
}

.breadcrumbs li {
  text-wrap: nowrap;
}
.breadcrumbs {
  overflow-x: auto;
}
.intro .intro_bg h1.intro_title {
  font-size: var(--font-size-85);
  line-height: 1.2;
}
@media (max-width: 1280px) {
  .intro .intro_bg h1.intro_title {
    font-size: var(--font-size-80);
  }
}
@media (max-width: 992px) {
  .intro .intro_bg h1.intro_title {
    font-size: var(--font-size-75);
  }
}
@media (max-width: 560px) {
  .intro .intro_bg h1.intro_title {
    font-size: var(--font-size-65);
  }
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--color-lightgray, #f3f3f3);
  border-top: 5px solid var(--color-main, #313229);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body.loading {
  overflow: hidden;
}
.gallery__mbr.section__mbr{
  background: none;
  margin-top: 0;
  padding-bottom: 0;
}
.gallery__mbr.section__mbr .slider-counter{
  margin-top: -27px;
}