@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Unbounded:wght@300;400;500;600&display=swap");
/***************************************************              GENERAL RESET STYLES             ***************************************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
*:focus {
  outline: none;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  border-style: none;
  width: 100%;
  height: 100%;
}
form fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
input,
textarea,
select {
  vertical-align: middle;
  color: #000;
  padding: 0;
  border: 1px solid transparent;
  box-sizing: border-box;
}
input,
select {
  vertical-align: middle;
  border-radius: 0;
}
.container {
  display: block;
  position: relative;
  overflow: hidden;
  width: 1220px;
  padding: 0 10px;
  margin: 0 auto 0 auto;
  height: fit-content;
}
header,
main,
footer,
section {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
/***************************************************              Header             ***************************************************/
.header {
  position: fixed;
  top: 0;
  padding: 10px 0;
  z-index: 10;
  transition: 1s;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  max-width: 183px;
}
.header__right {
  display: flex;
  gap: 71px;
  align-items: center;
}
.header__btn {
  border-radius: 41px;
  border: 1px solid #fff;
  text-transform: uppercase;
  padding: 12px 26px;
  transition: 0.4s;
}
.header__btn:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.burger_btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
  width: 30px;
  height: 27px;
  cursor: pointer;
}
.burger_btn:hover .line.smoll-line {
  width: 100%;
  transition: 0.4s;
}
.burger_btn .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.burger_btn .line.smoll-line {
  width: 80%;
  transition: 0.4s;
}
h1 {
  text-indent: -9999px;
  position: absolute;
}
.burger {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  backdrop-filter: blur(9.5px);
  height: 100vh;
}
.burger__top {
  display: flex;
  flex-direction: column;
  gap: 43px;
  padding-top: 30px;
}
.buger__logo {
  max-width: 183px;
  max-height: 28px;
  margin-left: 89px;
}
.menu-item {
  width: 100%;
  height: 40px;
  border-left: 4px solid transparent;
  transition: 0.4s;
  display: flex;
  align-items: center;
}
.menu-item a {
  padding-left: 84px;
  padding: 10px 0 10px 84px;
  width: 100%;
  color: #000;
}
.menu-item.current-menu-item {
  background-color: #f4f4f4;
  border-left: 4px solid #161616;
}
.menu-item:hover {
  background-color: #f4f4f4;
  border-left: 4px solid #161616;
}
.policy:hover {
  color: #d6d6d6;
}
.policy,
.nav__link {
  color: #000;
  transition: 0.2s;
}
.burger__bottom {
  padding: 30px 0 123px 89px;
  border-top: 1px solid #d6d6d6;
}
.header.scrolled {
  background-color: #ffffff;
}
.header.scrolled .header__btn {
  border: 1px solid #161616;
  color: #161616;
  transition: 0.4s;
}
.header.scrolled .header__btn:hover {
  border: 1px solid #161616;
  color: #161616;
  background-color: #ebedec;
  opacity: 0.2;
  transition: 0.4s;
}
.header.scrolled .burger_btn .line {
  background-color: #161616;
  transition: 0.8s;
}
.header.scrolled .logo img {
  display: none;
}
.header.scrolled .logo {
  background-image: url("../images/logo-black.png");
  width: 183px;
  height: 28px;
  transition: 0.8s;
  background-size: 100% 100%;
}
/***************************************************              Hero Main             ***************************************************/
.hero-main {
  height: 100vh;
}
.slider-hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  z-index: 1;
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
}
.slider-hero__slide {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
}
.slider-hero__slide .container {
  margin-top: -130px;
}
.hero-main .content {
  z-index: 2;
  margin-top: -265px;
  position: relative;
}
.hero-main .content .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swiper-wrapper .slider-hero__slide:nth-child(1) {
  background-image: url("../images/hero-bg-newnew080424.png");
}
.swiper-wrapper .slider-hero__slide:nth-child(2) {
  background-image: url("../images/hero-bg.png");
}
.swiper-wrapper .slider-hero__slide:nth-child(3) {
  background-image: url("../images/hero-bg2.png");
}
.swiper-wrapper .slider-hero__slide:nth-child(4) {
  background-image: url("../images/hero-bg1.png");
}
.swiper-wrapper .slider-hero__slide:nth-child(5) {
  background-image: url("../images/hero-bg-new080424.png");
}
.hero-main__pretext {
  width: 274px;
  height: 126px;
  border-radius: 0px 10px 10px 0px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-left: 1px solid #fff;
  padding: 10px 5px 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.hero-main__pretext h4 {
  font-family: Unbounded;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hero-main__pretext p {
  font-size: 20px;
}
.hero-main .page-title {
  margin: 158px 0 47px;
  font-family: Unbounded;
  font-size: 63px;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 90%;
}
.hero-main .page-title span {
  font-family: Unbounded;
  font-weight: 600;
}

.hero-main__btn {
  border-radius: 41px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-weight: 500;
  text-transform: uppercase;
  padding: 19px 32px;
  transition: 0.3s;
}
.hero-main__btn:hover {
  background: rgba(255, 255, 255, 0.4);
}
.hero-main__control {
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-main__control span {
  font-size: 18px;
  line-height: 150%;
}
.hero-slider-pag {
  font-size: 18px;
  line-height: 150%;
  width: 50px;
}
.hero-main__arrow {
  width: 56px;
  height: 56px;
  border-radius: 41px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px;
  cursor: pointer;
  transition: 0.2s;
}
.hero-main__arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}
.pre-arrow img {
  rotate: 180deg;
}
/***************************************************              Problems             ***************************************************/
.problems {
  padding: 140px 0 0 0;
}
.problems .container {
  display: flex;
  flex-direction: column;
}
.problems .problems__top {
  display: flex;
  justify-content: space-between;
  min-height: 360px;
}
.title {
  color: #000;
  font-family: Unbounded;
  font-size: 32px;
  line-height: 140%; /* 44.8px */
  text-transform: uppercase;
}
.problems .title {
  max-width: 508px;
}
.problems__tabs {
  width: 590px;
  z-index: 3;
}
.problems__tab {
  border-bottom: 1px solid #d4d4d4;
  padding: 15px 0;
  width: 100%;
  cursor: pointer;
}
.problems__button {
  display: flex;
  justify-content: space-between;
}
.problems__button p {
  color: #000;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
}
.problems__button .problems__button-img {
  width: 30px;
  height: 30px;
  transition: 0.5s;
}
.problems__button-img.rotate {
  rotate: 90deg;
  transition: 0.5s;
}
/* .problems__content {
  color: #4e4e4e;
  font-size: 18px;
  height: 0;
  opacity: 0;
  transition: 0.7s;
}

.problems__content.visible {
  height: 40px;
  opacity: 1;
  transition: 0.7s;
} */

.problems__content {
  color: #4e4e4e;
  font-size: 18px;
  height: 0;
  overflow: hidden; /* Скрываем содержимое блока, если высота равна 0 */
  opacity: 0;
}
.problems__content.open {
  height: auto; /* Высота "auto" для автоматического раскрытия содержимого */
  opacity: 1;
}

.scroll {
  width: 50px;
  height: 185px;
}
.house__wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 20px;
  margin-top: -100px;
  bottom: 0;
  z-index: 2;
  margin-bottom: 30px;
}
.house__item {
  width: 386px;
  height: 437px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  padding: 35px;
  justify-content: flex-end;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: left 35px top 35px;
  transition: 0.7s;
}
.house__item.black {
  transition: 0s;
}
.house__item.black:hover {
  background-color: #161616;
}
.house__item h4 {
  margin-top: 30px;
  color: #ffffff;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
}
.house__item p {
  margin-top: 15px;
  color: #ffffff;
  font-size: 18px;
}
.house__item span {
  display: flex;
  gap: 10px;
  align-items: end;
  margin-top: 118px;
  color: #ffffff;
  font-weight: 500;
  text-decoration-line: underline;
  text-transform: uppercase;
}
.house__item span img {
  width: 20px;
  height: 20px;
}
.black {
  background: #161616;
  justify-content: space-between;
}
.black img {
  width: 100%;
  height: 100%;
}
.black h3 {
  font-family: Unbounded;
  font-size: 32px;
  line-height: 140%; /* 44.8px */
  text-transform: uppercase;
}

.house__item:hover {
  background-color: #fff;
  transition: 0.7s;
}
.house__item:hover h4 {
  color: #121212;
}
.house__item:hover p {
  color: #474747;
}
.house__item:hover span p {
  text-decoration: underline;
}
.nextrow {
  width: 100%;
}
body > main > section.problems > div.container > ul > a:nth-child(3) {
  background-image: url("../images/house-consulting.svg");
}
body > main > section.problems > div.container > ul > a:nth-child(3):hover {
  background-image: url("../images/house-consulting-black.svg");
}
body > main > section.problems > div.container > ul > a:nth-child(4) {
  background-image: url("../images/house-financing.svg");
}
body > main > section.problems > div.container > ul > a:nth-child(4):hover {
  background-image: url("../images/house-financing-black.svg");
}
body > main > section.problems > div.container > ul > a:nth-child(5) {
  background-image: url("../images/house-installation.svg");
}
body > main > section.problems > div.container > ul > a:nth-child(5):hover {
  background-image: url("../images/house-installation-black.svg");
}
.problems__bg {
  height: 760px;
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
}
.problems .hero-main__btn {
  align-self: center;
  margin-bottom: 80px;
}
/***************************************************              Services Main             ***************************************************/
.services {
  padding: 130px 0;
}
.services .container {
  display: flex;
  justify-content: space-between;
}
.services__right,
.services__left {
  width: 580px;
  padding-top: 41px;
  border-top: 1px solid #a8a8a8;
}
.services__left .title {
  max-width: 285px;
}
.services .line {
  width: 1px;
  height: 341px;
  background: #a8a8a8;
  margin-top: 41px;
}
.services__tab-content {
  display: none;
}
.services__tab-content.active {
  display: block;
}
.services__tab-content h4 {
  color: #000;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
  margin: 30px 0 15px;
}
.services__tab-content p {
  color: #474747;
  font-size: 18px;
  width: 490px;
}
.services__right-list {
  display: flex;
  flex-wrap: wrap;
  background-image: url("../images/services-bg.png");
  background-repeat: no-repeat;
}
.services__right-list p {
  color: #000;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
  width: 177px;
}
.services_tab:nth-child(1),
.services_tab:nth-child(2) {
  padding: 60px 55px;
  cursor: pointer;
}
.services_tab:nth-child(3),
.services_tab:nth-child(4) {
  padding: 60px 55px;
  cursor: pointer;
}
.services_tab.active p {
  font-weight: 400;
}
.services_tab.active {
  background-image: url("../images/arrow-black.svg");
  background-repeat: no-repeat;
  background-position: left 7% center;
  background-size: 12% 12%;
}
/***************************************************              AboutUs            ***************************************************/
.about {
  position: relative;
  margin-bottom: 130px;
}
.about .about__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.about__btn {
  color: #161616;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 41px;
  border: 1px solid #161616;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
}
.about__btn:hover {
  background-color: #ebedec;
  opacity: 0.4;
}
.about .about__bottom {
  display: block;
  position: relative;
}
.about .bg__img {
  position: absolute;
  left: 0;
}
.about .bg__img .mobile {
  display: none;
}
.about .text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: end;
  z-index: 2;
  width: 100%;
}
.about .text p {
  color: #474747;
  font-size: 18px;
  background-color: #fff;
  padding: 25px 0 26px 20px;
}
.about .text .about__line {
  background-color: #fff;
  height: 10px;
  width: 100%;
  display: block;
}
.about .text .item_1 {
  max-width: 857px;
}
.about .text .item_2 {
  max-width: 768px;
}
.about .text .item_3 {
  max-width: 683px;
  padding: 38px 0 26px 20px;
}
.about .text .item_4 {
  max-width: 590px;
}
.about__scroll {
  width: 50px;
  height: 185px;
  position: absolute;
  right: 240px;
  bottom: 30px;
}
/***************************************************              Reviews             ***************************************************/
.reviews {
  background-image: url("../images/reviews-bg.png");
  background-repeat: no-repeat;
  padding: 70px 0 80px;
  background-size: 100% 100%;
}
.reviews .container {
  display: flex;
  flex-direction: column;
}
.slider-reviews {
  width: 100%;
  margin-top: 35px;
}
.slider-reviews__slide {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 393px;
  padding: 35px 33px;
}
.slider-reviews__slide__top .img {
  width: 75px;
  height: 15px;
}
.slider-reviews__slide__top .head {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}
.slider-reviews__slide__top .head p {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
}
.slider-reviews__slide__top .content {
  font-size: 18px;
}
.slider-reviews__slide__bottom {
  color: #fff;
  font-size: 14px;
  line-height: 130%; /* 18.2px */
  opacity: 0.5;
}
.reviews__control {
  align-self: center;
  width: fit-content;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}
.pre-arrow-reviews img {
  rotate: 180deg;
}
.reviews-slider-pag {
  width: 50px;
}
.swiper-slide-active {
  background: #fff;
  transition: 1.7s;
}
.swiper-slide-active .slider-reviews__slide__top .head p {
  color: #121212;
}
.swiper-slide-active .slider-reviews__slide__top .content {
  color: #474747;
}
.swiper-slide-active .slider-reviews__slide__bottom {
  color: #000;
}
.swiper-slide-next {
  transition: 1.7s;
}
/***************************************************              Form             ***************************************************/
.form {
  padding: 130px 0;
}
.form .container {
  display: flex;
  justify-content: space-between;
}
.form__right,
.form__left {
  display: flex;
  flex-direction: column;
}
.form__left {
  width: 406px;
}
.form__title {
  color: #000;
  font-family: Unbounded;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.form__text {
  color: #474747;
  font-size: 18px;
  margin-bottom: 30px;
}
.form__logo {
  max-width: 229px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form__right {
  width: 692px;
}
input {
  border-bottom: 1px solid #818181;
  width: 100%;
  color: #121212;
  padding: 10px 0;
}
.form__right input::placeholder {
  color: #121212;
}
.form__bottom p,
.form__top p {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.form__top {
  margin-top: -10px;
}
.form_agree {
  color: #a1a1a1;
  font-size: 12px;
  margin-top: -10px;
}
.submit {
  cursor: pointer;
  color: #121212;
  font-weight: 500;
  text-transform: uppercase;
  padding: 19px 33px;
  border-radius: 41px;
  border: 1px solid #121212;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: fit-content;
  align-self: center;
  transition: 0.3s;
}
.submit:hover {
  background-color: #ebedec;
  opacity: 0.6;
}
/***************************************************              Footer             ***************************************************/
.footer {
  background-color: #f7f7f7;
  padding: 35px 0;
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
.footer__one {
  max-width: 183px;
  max-height: 28px;
}
.footer__two,
.footer__three,
.footer__four {
  display: flex;
  flex-direction: column;
}
.footer__four,
.footer__two {
  gap: 10px;
}
.footer__two a:hover {
  color: #a1a1a1;
  transition: 0.3s;
}
.footer__grey {
  color: #989898;
  font-size: 14px;
  line-height: 140%; /* 19.6px */
}
.footer__black {
  color: #000;
  font-size: 14px;
}
.footer__three p {
  margin-bottom: 5px;
}
.footer__three p:nth-child(1) {
  margin-bottom: 15px;
}
.footer__four .policy {
  color: #000;
  font-size: 14px;
  text-decoration-line: underline;
}
.footer__four .policy:hover {
  color: #a1a1a1;
  transition: 0.3s;
}
.mkey {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mkey a {
  width: 39px;
  height: 16px;
}
/***************************************************              PAGE             ***************************************************/
/***************************************************              ABOUT             ***************************************************/
/***************************************************              PAGE             ***************************************************/
/***************************************************              ABOUT             ***************************************************/
.page-about .about {
  padding-top: 140px;
}
.page-about .about .bg__img {
  height: 100%;
}
.page-about .about .about__bottom {
  margin-bottom: 30px;
}
.page-about .about .about__btn {
  display: block;
  width: fit-content;
}
.page-about .about__scroll {
  bottom: 100px;
}
.page-about .about .text .item_4 {
  max-width: 634px;
}
/***************************************************              Stages             ***************************************************/
.stages {
  padding-bottom: 130px;
}
.stages .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stages__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.stages__top .title {
  width: 387px;
}
.stages__top .stages__text {
  color: #474747;
  font-size: 18px;
  width: 67%;
}
.stages__item {
  width: 386px;
  height: 300px;
  background: #fbfbfb;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-position: right bottom;
  background-repeat: no-repeat;
  transition: 0.7s;
}
.stages__item h4 {
  color: #121212;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
}
.stages__item p {
  color: #474747;
  font-size: 18px;
}
.stages__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.stages__item:nth-child(1) {
  background-image: url("../images/stages-1.png");
}
.stages__item:nth-child(2) {
  background-image: url("../images/stages-2.png");
}
.stages__item:nth-child(3) {
  background-image: url("../images/stages-bg.png");
}
.stages__item:nth-child(4) {
  background-image: url("../images/stages-3.png");
}
.stages__item:nth-child(5) {
  background-image: url("../images/stages-4.png");
}
.stages__item:nth-child(6) {
  background-image: url("../images/stages-5.png");
}

.stages__item:nth-child(1):hover {
  background-image: url("../images/stages-1-dark.png");
}
.stages__item:nth-child(2):hover {
  background-image: url("../images/stages-2-dark.png");
}
.stages__item:nth-child(4):hover {
  background-image: url("../images/stages-3-dark.png");
}
.stages__item:nth-child(5):hover {
  background-image: url("../images/stages-4-dark.png");
}
.stages__item:nth-child(6):hover {
  background-image: url("../images/stages-5-dark.png");
}

.stages__item:hover {
  background-color: #161616;
  transition: 0.7s;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.stages__item:hover h4 {
  color: #eee;
}
.stages__item:hover p {
  color: #ddd;
}
.stages__item:nth-child(3) {
  background-image: url("../images/stages-bg.png");
  background-size: 100% 100%;
}
/***************************************************              Partners             ***************************************************/
.partners {
  padding-bottom: 150px;
}
.home .partners {
  padding: 150px 0 0;
}
.partners__text {
  width: 793px;
  color: #474747;
  font-size: 18px;
  margin: 20px 0 30px;
}
.partners__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 19px;
}
.partners__item {
  width: 160px;
  height: 160px;
}
.partners > div > ul > li:nth-child(1) {
  width: 203px;
  height: 196px;
}
/***************************************************              PAGE             ***************************************************/
/***************************************************              POLICY             ***************************************************/
/***************************************************              PAGE             ***************************************************/
/***************************************************              POLICY             ***************************************************/
.policy-section {
  padding: 130px 0;
}
.policy-section .title {
  margin-bottom: 30px;
}
.policy-section .policy__content {
  width: 100%;
  color: #000;
}
/***************************************************              PAGE             ***************************************************/
/***************************************************              FEEDBACK             ***************************************************/
/***************************************************              PAGE             ***************************************************/
/***************************************************              FEEDBACK             ***************************************************/
.feedback {
  padding-top: 140px;
}
.feedback .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feedback__text {
  width: 840px;
  color: #474747;
  text-align: center;
  font-size: 18px;
  margin: 20px 0 40px;
}
.feedback__form input {
  border-bottom: 1px solid #818181;
  width: 100%;
  padding: 10px 0;
  color: #000;
}
.feedback__form textarea {
  border-bottom: 1px solid #818181;
  width: 100%;
  margin-top: 32px;
}
#wpcf7-f54-o1 > form > p:nth-child(5) {
  align-self: center;
}
.feedback__form {
  width: 692px;
}
input.submit__feedback {
  padding: 19px 80px;
  width: fit-content;
  margin: -10px 0 15px;
}
.feedback__banner {
  width: 100%;
  margin-bottom: -45px;
}
/***************************************************              PAGE             ***************************************************/
/***************************************************              CONTACT             ***************************************************/
/***************************************************              PAGE             ***************************************************/
/***************************************************              CONTACT             ***************************************************/
.hero-contact {
  padding: 130px 0 0;
}
.hero-contact .container {
  display: flex;
  align-items: center;
}
.hero-contact__left {
  max-width: 793px;
}
.hero-contact__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-left: -80px;
}
.hero-contact__content {
  background: #161616;
  backdrop-filter: blur(8px);
  padding: 23px 178px 23px 102px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact__grey {
  color: #989898;
  font-size: 14px;
  line-height: 140%; /* 19.6px */
  margin-bottom: 15px;
}
.contact__white {
  font-size: 14px;
}
.bottom .contact__white {
  margin-bottom: 5px;
}
/***************************************************              PAGE             ***************************************************/
/***************************************************              PORTFOLIO             ***************************************************/
/***************************************************              PAGE             ***************************************************/
/***************************************************              PORTFOLIO             ***************************************************/
.hero-portfolio {
  padding: 130px 0;
}
.hero-portfolio__list {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  row-gap: 35px;
  column-gap: 20px;
  flex-wrap: wrap;
}
.portfolio-active {
  display: none;
}
.portfolio-active.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0vh;
  left: 0vw;
  background: rgba(0, 0, 0, 0.8);
  z-index: 11;
  justify-content: center;
}
.portfolio-active.visible .portfolio__slide {
  width: 655px;
  height: 443px;
  transition: 0s;
}
.portfolio-item {
  width: 48%;
}
.portfolio-active .x {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  z-index: 15;
}
.slider-portfolio {
  width: 100%;
}
.portfolio__control {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  z-index: 15;
}
.portfolio__control .hero-slider-pag {
  padding: 0;
  margin: 0 !important;
}
.pre-arrow-portfolio {
  rotate: 180deg;
}
.portfolio-active.visible p {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
  margin: 25px 0 5px 0;
}
.portfolio-active.visible span {
  color: #e6e6e6;
  font-size: 18px;
  margin-bottom: 20px;
}

.portfolio-item__visible {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.portfolio-item__visible p {
  color: #121212;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
  margin: 15px 0 5px;
}
.portfolio-item__visible span {
  color: #474747;
  font-size: 18px;
}
.portfolio-item__visible .img {
  overflow: hidden;
  height: 399px;
}
/***************************************************              PAGE             ***************************************************/
/***************************************************              SERVICES             ***************************************************/
/***************************************************              PAGE             ***************************************************/
/***************************************************              SERVICES             ***************************************************/
.hero-services__scrol {
  width: 50px;
  height: 185px;
  margin-top: 238px;
}
.hero-services__bg {
  width: 641px;
  height: 105.477px;
  position: absolute;
}
.hero-services {
  padding-top: 140px;
}
.hero-services .container {
  display: flex;
  justify-content: space-between;
}
.hero-services__left-content h4 {
  color: #121212;
  font-family: Unbounded;
  font-size: 24px;
  text-transform: uppercase;
  margin: 40px 0 15px;
}
.hero-services__left-content p {
  color: #474747;
  font-size: 20px;
  width: 387px;
}
.hero-services__button {
  border-radius: 41px;
  border: 1px solid #121212;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #121212;
  font-weight: 500;
  text-transform: uppercase;
  padding: 19px 32px;
  display: block;
  width: fit-content;
  margin: 40px 0 63px;
  transition: 0.4s;
}
.hero-services__button:hover {
  background-color: #ebedec;
  opacity: 0.6;
  transition: 0.4s;
}
.hero-services__right {
  margin-left: 20px;
  width: 100%;
}
.hero-services__item {
  backdrop-filter: blur(10px);
  padding: 28px 20px;
  margin-bottom: 5px;
  height: 237px;
  background-size: 100% 100%;
  cursor: pointer;
  width: 100%;
}

.hero-services__item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #161616;
  right: 0;
  top: 0;
  opacity: 0;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 2;
}

.hero-services__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  z-index: 3;
  position: relative;
}
.hero-services__item-top h4 {
  font-family: Unbounded;
  font-size: 20px;
}
.hero-services__item-top .img {
  width: 41px;
  height: 41px;
  border-radius: 41px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px;
}
.hero-services__item-top .img img {
  transition: 0.5s;
}
.hero-services__item-bottom {
  font-size: 18px;
}
.hero-services__right > div:nth-child(1) {
  background-image: url("../images/hero-services-1.png");
}
.hero-services__right > div:nth-child(2) {
  background-image: url("../images/hero-services-2.png");
}
.hero-services__right > div:nth-child(3) {
  background-image: url("../images/hero-services-3.png");
}

/* .hero-services__right .hero-services__item.active {
  background: #161616;
}
.hero-services__right .hero-services__item.active .hero-services__item-bottom {
  opacity: 1;
} */
.hero-services__right .hero-services__item.active .img img {
  rotate: 90deg;
  transition: 0.5s;
}
/***************************************************              Financing             ***************************************************/
.financing {
  padding: 140px 0;
}
.financing .container {
  display: flex;
  justify-content: space-between;
}
.financing .financing__item {
  width: 24%;
  padding: 40px 30px;
}
.financing__item h4 {
  color: #121212;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
}
.financing__text {
  color: #474747;
  font-size: 18px;
  margin-top: 15px;
}
.financing > div > div:nth-child(1) {
  padding: 0;
}
.financing > div > div:nth-child(1) p {
  font-size: 20px;
}
.financing > div > div:nth-child(3) {
  background: #fbfbfb;
}
.financing > div > div:nth-child(4),
.financing > div > div:nth-child(2) {
  border: 1px solid #d4d4d4;
}
/***************************************************              Installation             ***************************************************/
.instal .container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.instal__text {
  color: #474747;
  font-size: 20px;
  margin: 15px 0 30px;
}
.instal .problems__content.visible {
  height: auto;
}
.instal .problems__tab {
  padding: 25px 0 17px;
}
/***************************************************              Garranties             ***************************************************/
.garant {
  padding: 115px 0 130px;
}
.garant .container {
  display: flex;
}
.garant__item {
  display: flex;
  gap: 20px;
}
.garant__item-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.garant__item-left span {
  color: #121212;
  font-family: Unbounded;
  font-size: 110px;
  text-align: center;
  line-height: 0.8;
}
.garant__item-left p {
  margin-top: 50px;
  color: #9a9a9a;
  text-align: center;
  font-family: Unbounded;
  font-weight: 300;
  text-transform: uppercase;
  max-width: 171px;
}
.garant__item-right {
  color: #121212;
  font-size: 18px;
  line-height: 1.6;
  white-space: nowrap;
}
.garant > div > div:nth-child(2) {
  margin: 0 60px 0 96px;
}
/***************************************************              PAGE             ***************************************************/
/***************************************************              UTILITY              ***************************************************/
/***************************************************              PAGE             ***************************************************/
/***************************************************              UTILITY             ***************************************************/
.utility-hero {
  padding-top: 140px;
}
.utility-hero .container {
  display: flex;
}
.utility-hero__right {
  width: 793px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.utility-hero__content {
  background: #121212;
  padding: 40px;
  z-index: 2;
  position: relative;
  width: 712px;
  margin-top: 40px;
  margin-bottom: 85px;
}
.utility-hero__content h3 {
  color: #fff;
  font-family: Unbounded;
  font-size: 24px;
  text-transform: uppercase;
}
.utility-hero__content p {
  color: #989898;
  font-size: 20px;
  margin: 35px 0;
}
.utility-hero__content p span {
  font-weight: 600;
  color: #989898;
}
.utility-hero__content .utility-hero__btn {
  width: fit-content;
  padding: 19px 32px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 41px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: 0.4s;
  margin: 0;
  color: #fff;
  font-size: 16px;
}
.utility-hero__btn:hover {
  background-color: #ebedec;
  opacity: 0.6;
  transition: 0.4s;
  color: #474747;
}
.utility-hero__left {
  z-index: 3;
}
/***************************************************              Advantages             ***************************************************/
.advantages {
  padding-top: 140px;
}
.advantages__tab {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  gap: 110px;
}
.advantages__buttons {
  display: flex;
  flex-direction: column;
  border-left: 4px solid #d9d9d9;
  gap: 25px;
}
.advantages__button {
  color: #a7a7a7;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
  padding-left: 20px;
  cursor: pointer;
}
.advantages__button.active {
  color: #121212;
  margin-left: -4px;
  border-left: 4px solid #000;
}
.advantages__container {
  width: 793px;
}
.advantages_content {
  position: absolute;
  opacity: 0;
}
.advantages_content.active {
  position: relative;
  opacity: 1;
}
.advantages_content h4 {
  color: #121212;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
}
.advantages_content p {
  color: #474747;
  font-size: 18px;
  margin: 20px 0 40px;
  width: 579px;
}
/***************************************************              Utility Table             ***************************************************/
.utility-table {
  padding-top: 130px;
}
.utility-table .container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 50px;
  align-items: flex-end;
}
.utility-table__title {
  margin-bottom: 30px;
  color: #121212;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 300;
}
td,
th {
  color: #000;
  border: 1px solid #ececec;
  text-align: left;
  padding: 10px 75px 10px 20px;
}
th {
  color: #878787;
}
td {
  font-size: 18px;
  font-weight: 500;
}
th.black {
  color: #000;
  background-color: transparent;
}
.min {
  padding-right: 20px;
}

/***************************************************              PopUp             ***************************************************/
.popup {
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  display: none;
  background: rgba(0, 0, 0, 0.8);
}
.popup.visible {
  display: flex;
}
.popup__content {
  width: 824px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: #fff;
}
.popup__close {
  align-self: flex-end;
  rotate: 45deg;
  color: #474747;
  font-size: 36px;
  font-weight: 200;
  margin-right: 10px;
  cursor: pointer;
}
.popup__text {
  color: #474747;
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
  padding: 0 66px;
}
.popup__form {
  padding: 0 66px;
}
#wpcf7-f52-o1 > form > p:nth-child(6) {
  align-self: center;
}
#wpcf7-f52-o1 > form > div.wpcf7-response-output {
  margin-top: -20px !important;
  text-align: center;
}
.popup__open {
  cursor: pointer;
}
/***************************************************              CF7             ***************************************************/
.wpcf7-not-valid-tip {
  font-size: 10px;
  position: absolute;
}
.wpcf7-response-output {
  border-color: transparent !important;
  color: #000;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  margin-top: -10px !important;
}
#wpcf7-f54-o1 > form > div.wpcf7-response-output {
  margin-top: -30px !important;
}
#wpcf7-f54-o2 > form > p:nth-child(5) {
  align-self: center;
}

.policy-section__inner {
  height: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.policy-section__inner h6 {
  font-size: 88px;
  font-weight: 600;
}
.policy-section__inner a {
  color: #000;
}
.remove-page .utility-hero .title {
  max-width: 419px;
}
.remove-page .utility-hero__content {
  margin-top: 20px;
}
.remove-page .services__right-list {
  background-image: url("../images/remove-services-bg.png");
}
.services_tab:nth-child(5),
.services_tab:nth-child(6) {
  padding: 60px 55px;
  cursor: pointer;
}
.remove-page .services .line {
  height: 530px;
}
.remove-block__wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 35px;
}
.remove-block__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.remove-block__top {
  padding: 30px 80px 50px 30px;
  border: 1px solid #d4d4d4;
  background: #121212;
}
.remove-block__title {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  font-family: Unbounded;
  margin-bottom: 15px;
}
.remove-block__text {
  color: #fff;
  font-size: 20px;
}
.remove-block__bottom {
  padding: 30px 0 57px 30px;
  background-image: url("../images/remove-3.png");
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 1px solid #d4d4d4;
}
.remove-block h4 {
  color: #121212;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 15px;
}
.remove-block ul {
  margin-left: 20px;
  list-style: disc;
}
.remove-block ul li {
  color: #474747;
  font-size: 18px;
}
.remove-block__right {
  position: relative;
  border: 1px solid #d4d4d4;
  width: 590px;
  padding: 30px;
}
.remove-block__right .img {
  position: absolute;
  bottom: 30px;
  right: 30px;
  left: 30px;
}
.remove-page .services__right-list li {
  padding: 69px 56px !important;
  display: flex;
  align-items: center;
}

.mkey-develop {
	flex-shrink: 0;
}
