@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #030a1b;
}

.blue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e6eff;
  color: #ffffff;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 24px;
  transition: all 0.3s;
}
.blue-btn .icon {
  width: 12.04px;
  height: 12.26px;
  margin-right: 10.8px;
}
.blue-btn:hover {
  background: #fe753f;
}

@media screen and (min-width: 1200px) {
  .blue-btn {
    padding: 15px 30px;
    font-size: 16px;
    line-height: 24px;
  }
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 10px;
}

@media screen and (min-width: 1200px) {
  .container {
    padding: 0;
  }
}
.header .container {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header__logo {
  max-width: 250px;
  max-height: 65px;
  width: 35%;
}
.header__logo .logo {
  width: 100%;
}
.header__open-menu {
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(254, 117, 63, 0.1);
}
.header__open-menu .icon {
  width: 25px;
  height: 25px;
  fill: #fe753f;
  transition: all 0.3s;
}
.header__open-menu .icon:active {
  pointer-events: none;
}
.header__open-menu .close {
  display: none;
}
.header .active-nav .menu {
  display: none;
}
.header .active-nav .close {
  display: block;
}
.header__navigation {
  position: absolute;
  z-index: 1;
  top: 80px;
  left: 0;
  right: 0;
  background: #ffffff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(254, 117, 63, 0.5);
}
.header__navigation a {
  width: 100%;
  display: block;
  font-size: 14px;
  line-height: 24px;
  border-top: 1px solid rgba(254, 117, 63, 0.5);
  opacity: 0.7;
  padding: 8px 80px 8px 40px;
}

.active {
  transform: scaleY(1);
}

@media screen and (min-width: 1200px) {
  .header .container {
    padding-top: 35px;
    padding-bottom: 35px;
    margin-bottom: 35px;
    min-height: 80px;
  }
  .header__logo {
    width: 100%;
    margin-right: 309px;
  }
  .header__open-menu {
    display: none;
  }
  .header__navigation {
    display: flex;
    position: unset;
    background: unset;
    transform: unset;
    border-bottom: unset;
    margin-right: 50px;
  }
  .header__navigation div:not(:last-child) {
    margin-right: 50px;
  }
  .header__navigation a {
    display: block;
    font-size: 16px;
    border-top: unset;
    padding: 0;
    transform: all 0.3s;
  }
  .header__navigation a:hover {
    text-shadow: 0 0 0.55px #fe753f, 0 0 0.55px #fe753f;
    color: #fe753f;
  }
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 100px;
}
.hero__slogan {
  display: block;
  font-weight: 600;
  font-size: 35px;
  line-height: 120%;
  max-width: 558px;
  margin-bottom: 30px;
}
.hero__description {
  max-width: 558px;
  font-size: 16px;
  line-height: 27px;
  opacity: 0.7;
  margin-bottom: 40px;
}
.hero__right-side {
  display: none;
  width: 100%;
  z-index: -1;
  object-fit: contain;
  position: absolute;
  top: 28%;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 10px;
}

@media screen and (min-width: 1200px) {
  .hero .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 615px;
  }
  .hero__slogan {
    font-size: 61px;
    padding-top: 44px;
  }
  .hero__description {
    font-size: 18px;
  }
  .hero__right-side {
    position: absolute;
    right: 0;
    display: block;
    max-width: 484px;
    object-fit: cover;
    top: 0;
  }
}
.tabs {
  border-radius: 8px;
  padding: 20px 20px 40px;
  background: url(../img/hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tabs__title-container {
  box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  display: flex;
  padding: 0 9px;
  border-radius: 5px 5px 0 0;
  width: fit-content;
}
.tabs__title {
  display: block;
  padding: 15px 22px 12px;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s;
}
.tabs__title:hover {
  opacity: 0.5;
}
.tabs__title--active {
  opacity: 1;
  color: #fe753f;
}
.tabs__title--active:hover {
  opacity: 1;
}
.tabs__elements-container {
  width: 258px;
  box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
}
.tabs__element {
  position: relative;
  display: none;
  flex-direction: column;
  padding: 30px;
  left: 0;
  z-index: 1;
  background: #ffffff;
  border-radius: 0 0 5px 5px;
}
.tabs__element--active {
  display: flex;
}
.tabs__label {
  display: block;
  position: absolute;
  z-index: 1;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  opacity: 0.7;
  left: 0;
  top: 0;
  pointer-events: none;
}
.tabs__location-selector {
  width: 88px;
}
.tabs__location-selector::after {
  left: 80px;
}
.tabs__property-selector {
  width: 127px;
}
.tabs__property-selector::after {
  left: 119px;
}
.tabs__price-selector {
  width: 155px;
}
.tabs__price-selector::after {
  left: 51px;
}
.tabs__search-btn {
  align-self: center;
  padding: 10px 12px;
}

@media screen and (min-width: 1200px) {
  .tabs {
    padding: 0;
    background: none;
    border-radius: 5px;
  }
  .tabs__title-container {
    border-radius: 5px 5px 0 0;
    position: relative;
  }
  .tabs__title-container::after {
    position: absolute;
    right: -10px;
    bottom: 0;
    content: " ";
    border-radius: 0 0 0 5px;
    width: 10px;
    height: 10px;
    background-color: transparent;
    box-shadow: -3px 3px #fff;
  }
  .tabs__elements-container {
    width: 842px;
    box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.1);
    border-radius: 0 5px 5px 5px;
  }
  .tabs__element {
    border-radius: 0 5px 5px 5px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .tabs__label {
    font-size: 16px;
  }
  .tabs__search-btn {
    padding: 15px 20px;
  }
}
.nice-select-container {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.nice-select-container:not(:last-of-type)::after {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: " ";
  height: 1px;
  background: rgba(3, 10, 27, 0.1);
}

.nice-select {
  border: unset;
  position: relative;
  height: unset;
  padding-top: 34px;
  padding-left: 0;
  padding-right: 0;
}
.nice-select .current,
.nice-select .option {
  font-size: 16px;
  line-height: 33px;
}
.nice-select .option {
  padding-top: 4.5px;
  padding-bottom: 4.5px;
}
.nice-select .nice-select-dropdown {
  border: none;
}

.nice-select::after {
  top: 13px;
  border-right: 1.5px solid #030a1b;
  border-bottom: 1.5px solid #030a1b;
  width: 6px;
  height: 6px;
  opacity: 0.7;
}

@media screen and (min-width: 1200px) {
  .nice-select-container {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .nice-select-container:not(:last-of-type)::after {
    display: block;
    position: absolute;
    width: 1px;
    top: 10px;
    right: -50px;
    left: unset;
    height: 34px;
    background: rgba(3, 10, 27, 0.1);
  }

  .nice-select .current {
    font-size: 22px;
  }
  .nice-select .option {
    font-size: 18px;
  }
}
.section-title {
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 35px;
  line-height: 66px;
}
.section-title__first-letter {
  position: relative;
  font-weight: 600;
  font-size: 35px;
}
.section-title__house-img {
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (min-width: 1200px) {
  .section-title {
    font-size: 44px;
  }
  .section-title__first-letter {
    font-size: 44px;
  }
}
.partners .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 140px;
}
.partners__title {
  margin-bottom: 65px;
}
.partners__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners__element:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (min-width: 1200px) {
  .partners .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .partners__title {
    align-self: center;
  }
  .partners__wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  .partners__element:not(:last-child) {
    margin-bottom: 0;
  }
}
.orange-span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fe753f;
  transition: all 0.3s;
}

.properties {
  margin-bottom: 140px;
}
.properties .container {
  max-width: 382px;
}
.properties__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}
.properties__title {
  text-align: center;
  display: block;
  max-width: 320px;
  margin-bottom: 40px;
  margin-left: 7px;
}
.properties__title span {
  display: inline-block;
}
.properties .orange-span:hover {
  text-decoration: underline;
}
.properties__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  justify-items: center;
  align-items: center;
}

@media screen and (min-width: 754px) {
  .properties .container {
    max-width: 754px;
  }
  .properties__title-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .properties__title {
    max-width: unset;
    margin-bottom: 0;
  }
  .properties__title span {
    display: inline-block;
  }
  .properties__content {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
@media screen and (min-width: 1180px) {
  .properties .container {
    max-width: 1150px;
  }
  .properties__content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.property-item {
  max-width: 362px;
  box-shadow: 0px 8px 70px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding-bottom: 30px;
}
.property-item__image {
  width: 100%;
  height: 321px;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 10px 10px 0 0;
}
.property-item__image ~ div {
  padding: 0 30px;
}
.property-item__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.property-item__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 33px;
}
.property-item .heart {
  width: 16px;
  height: 14px;
  fill: #bbbbbb;
  cursor: pointer;
}
.property-item .heart--red {
  fill: #e61e14;
}
.property-item .heart:hover {
  opacity: 0.7;
}
.property-item__location {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  opacity: 0.7;
  margin-bottom: 20px;
}
.property-item__location::before {
  display: inline-block;
  content: url(../img/location.svg);
  width: 11px;
  height: 14.58px;
  margin-right: 10px;
}
.property-item__counters {
  display: flex;
  gap: 20px;
  margin-bottom: 26px;
}
.property-item__counter {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  opacity: 0.9;
}
.property-item__counter:nth-of-type(1)::before {
  display: block;
  content: url(../img/living-room.svg);
  width: 16.34px;
  height: 17px;
  margin-right: 5.66px;
}
.property-item__counter:nth-of-type(2)::before {
  display: block;
  content: url(../img/kitchen.svg);
  width: 13;
  height: 14.15px;
  margin-right: 5px;
}
.property-item__counter:nth-of-type(3)::before {
  display: block;
  content: url(../img/bathroom.svg);
  width: 14;
  height: 14.37px;
  margin-right: 5px;
}
.property-item__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.property-item__price {
  font-weight: 600;
  font-size: 18px;
  line-height: 33px;
  color: #fe753f;
}
.property-item__details-btn {
  padding: 10px 20px;
}

@media screen and (min-width: 1200px) {
  .property-item__title {
    font-size: 22px;
  }
  .property-item__location {
    font-size: 16px;
  }
  .property-item__counter {
    font-size: 14px;
  }
  .property-item__details-btn {
    padding: 10px 20px;
  }
  .property-item__price {
    font-size: 22px;
  }
}
.features {
  background-color: #f9f9f9;
}
.features .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.features__title {
  text-align: center;
  display: block;
  max-width: 320px;
  margin-bottom: 10px;
  margin-left: 7px;
}
.features__title span {
  display: inline-block;
}
.features__subtitle {
  max-width: 728px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 70px;
}
.features__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.features__item {
  max-width: 362px;
  padding: 25px;
  background: #ffffff;
  border-radius: 10px;
}
.features__item:not(:last-child) {
  margin-bottom: 30px;
}
.features__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: rgba(254, 117, 63, 0.1);
  border-radius: 5px;
  margin-bottom: 15px;
}
.features__icon {
  width: 20px;
  height: 20px;
}
.features__name {
  display: block;
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 10px;
}
.features__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.7;
}
.features__image img {
  display: block;
  width: 100%;
  max-width: 362;
  border-radius: 10px;
  object-fit: contain;
}

@media screen and (min-width: 754px) {
  .features__title {
    max-width: unset;
  }
  .features__title span {
    display: inline-block;
  }
}
@media screen and (min-width: 1200px) {
  .features__content {
    flex-direction: row;
  }
  .features__image {
    align-self: flex-end;
  }
}
.reviews .container {
  display: block;
  padding-top: 140px;
  margin-bottom: 140px;
}
.reviews .orange-span {
  display: block;
  align-self: center;
  text-align: center;
  margin-bottom: 10px;
}
.reviews .orange-span:hover {
  text-decoration: underline;
}
.reviews__title {
  text-align: center;
  margin: 0 auto;
  display: block;
  max-width: 320px;
  margin-bottom: 70px;
}
.reviews__title span {
  display: inline-block;
}

.swiper {
  max-width: 558px;
}
.swiper-wrapper {
  margin-bottom: 40px;
}
.swiper__item {
  min-height: 260px;
  width: 100%;
  padding: 12px;
  background: #ffffff;
  border: 2px solid rgba(254, 117, 63, 0.1);
  border-radius: 10px;
}
.swiper__item:after {
  content: url(../img/quotes.png);
  position: absolute;
  top: 8px;
  right: 10px;
  opacity: 0.1;
}
.swiper__first-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.swiper__photo {
  width: 74px;
  height: 74px;
  border-radius: 50px;
  object-fit: cover;
  margin-right: 20px;
}
.swiper__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 33px;
  margin-bottom: 5px;
}
.swiper__position, .swiper__review {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  opacity: 0.7;
}
.swiper-pagination {
  position: unset;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}

@media screen and (min-width: 400px) {
  .swiper__item:after {
    top: 25px;
    right: 30px;
  }
}
@media screen and (min-width: 754px) {
  .reviews .container {
    display: block;
  }
  .reviews__title {
    max-width: unset;
  }
  .reviews__title span {
    display: inline-block;
  }
}
@media screen and (min-width: 1200px) {
  .swiper {
    max-width: unset;
  }
  .swiper__item {
    padding: 30px 30px 0;
  }
  .swiper__photo {
    margin-right: 31px;
  }
  .swiper__name {
    font-size: 22px;
  }
  .swiper__position, .swiper__review {
    font-size: 16px;
  }
}
.subscribe .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #433e89;
  margin-bottom: 140px;
}
.subscribe__title {
  text-align: center;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 15px;
}
.subscribe__description {
  max-width: 635px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 70px;
}
.subscribe__email-wrapper {
  position: relative;
}
.subscribe__email {
  padding-left: 30px;
  padding-right: 127px;
  width: 100%;
  max-width: 743px;
  min-height: 54px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgba(3, 10, 27, 0.5);
  border-radius: 10px;
}
.subscribe__btn {
  position: absolute;
  right: 7px;
  top: 7px;
}
.subscribe__rectangle {
  position: absolute;
  width: 208px;
  height: 208px;
  background-color: #ffffff;
  border-radius: 100%;
  opacity: 0.1;
}
.subscribe .first-rect {
  top: 25px;
  left: -158px;
}
.subscribe .second-rect {
  bottom: -135px;
  right: 16px;
}

@media screen and (min-width: 1200px) {
  .subscribe .container {
    border-radius: 10px;
  }
  .subscribe__description {
    font-size: 16px;
  }
  .subscribe__email {
    padding-right: 177px;
    min-height: 70px;
    font-size: 16px;
  }
  .subscribe__btn {
    padding: 16px 30px;
  }
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 190px;
}
.footer__logo {
  display: block;
  cursor: pointer;
  margin-bottom: 25px;
}
.footer .logo {
  max-width: 220px;
}
.footer__description {
  max-width: 262px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.7;
  margin-bottom: 25px;
}
.footer__column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__column .footer__icons {
  flex-direction: row;
}
.footer__column:not(:last-child) {
  margin-bottom: 30px;
}
.footer__link-wrapper > a {
  font-size: 16px;
  line-height: 17px;
  opacity: 0.7;
}
.footer__link-wrapper > a:hover {
  color: #fe753f;
}
.footer__link-wrapper:not(:last-child) {
  margin-bottom: 15px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__icons > .footer__link-wrapper:not(:last-child) {
  margin-right: 15px;
  margin-bottom: 0;
}
.footer .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #fe753f;
  border-radius: 50px;
  transition: all 0.3s;
}
.footer .icon-wrapper:hover {
  background-color: #ffffff;
  box-shadow: 0 0 10px 5px #fe753f;
}
.footer .icon-wrapper:hover .icon {
  fill: #fe753f;
}
.footer .icon {
  transition: all 0.3s;
  fill: #ffffff;
}
.footer .facebook {
  width: 6px;
  height: 12.37px;
}
.footer .im {
  width: 12px;
  height: 12px;
}
.footer .twitter {
  width: 14px;
  height: 14px;
}
.footer .youtube {
  width: 14px;
  height: 10px;
}
.footer .linkidin {
  width: 12px;
  height: 12.37px;
}
.footer__column-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 25px;
}

@media screen and (min-width: 1200px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .footer__column {
    align-items: stretch;
  }
  .footer__column:not(:last-child) {
    margin-bottom: 0;
  }
  .footer__icons {
    flex-direction: row;
  }
  .footer__list {
    align-items: stretch;
  }
  .footer__column-title {
    padding-top: 12px;
  }
}

/*# sourceMappingURL=style.css.map */
