/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Raleway:wght@400;700&family=Roboto:wght@300&display=swap");
/* line 2, ../../LoftHouse - html/scss/base/_reset.scss */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

/* line 8, ../../LoftHouse - html/scss/base/_reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
/* line 16, ../../LoftHouse - html/scss/base/_reset.scss */
a, a:link, a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

/* line 22, ../../LoftHouse - html/scss/base/_reset.scss */
a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
/* line 29, ../../LoftHouse - html/scss/base/_reset.scss */
aside, nav, footer, header, section, main {
  display: block;
}

/* line 33, ../../LoftHouse - html/scss/base/_reset.scss */
h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

/* line 38, ../../LoftHouse - html/scss/base/_reset.scss */
ul, ul li {
  list-style: none;
}

/* line 42, ../../LoftHouse - html/scss/base/_reset.scss */
img {
  vertical-align: top;
}

/* line 46, ../../LoftHouse - html/scss/base/_reset.scss */
img, svg {
  max-width: 100%;
  height: auto;
}

/* line 51, ../../LoftHouse - html/scss/base/_reset.scss */
address {
  font-style: normal;
}

/* Form */
/* line 57, ../../LoftHouse - html/scss/base/_reset.scss */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

/* line 64, ../../LoftHouse - html/scss/base/_reset.scss */
input::-ms-clear {
  display: none;
}

/* line 68, ../../LoftHouse - html/scss/base/_reset.scss */
button, input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

/* line 76, ../../LoftHouse - html/scss/base/_reset.scss */
input:focus, input:active,
button:focus, button:active {
  outline: none;
}

/* line 81, ../../LoftHouse - html/scss/base/_reset.scss */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 86, ../../LoftHouse - html/scss/base/_reset.scss */
label {
  cursor: pointer;
}

/* line 90, ../../LoftHouse - html/scss/base/_reset.scss */
legend {
  display: block;
}

/* line 3, ../../LoftHouse - html/scss/base/_base.scss */
body {
  font-family: "Raleway", sans-serif;
  background-color: #242b33;
  color: #fff;
  font-size: 16px;
}

/* line 10, ../../LoftHouse - html/scss/base/_base.scss */
a {
  color: yellowgreen;
  transition: color 0.4s ease-in;
  font-size: 18px;
  font-weight: bold;
}

/* line 16, ../../LoftHouse - html/scss/base/_base.scss */
a:hover {
  color: #51c1e9;
}

/* line 21, ../../LoftHouse - html/scss/base/_base.scss */
.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1140px;
}

/* line 26, ../../LoftHouse - html/scss/base/_base.scss */
.container--sm {
  max-width: 840px;
}

/* line 31, ../../LoftHouse - html/scss/base/_base.scss */
.text-right {
  text-align: right;
}

/* line 35, ../../LoftHouse - html/scss/base/_base.scss */
.visually-hidden {
  height: 1px;
  overflow: hidden;
  width: 1px;
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* line 49, ../../LoftHouse - html/scss/base/_base.scss */
.none {
  display: none !important;
}

/* line 53, ../../LoftHouse - html/scss/base/_base.scss */
.title-2 {
  font-size: 36px;
  font-family: "Playfair Display", serif;
  color: #d4c17f;
  font-weight: 700;
}

@media screen and (max-width: 959px) {
  /* line 53, ../../LoftHouse - html/scss/base/_base.scss */
  .title-2 {
    font-size: 28px;
  }
}

/* line 64, ../../LoftHouse - html/scss/base/_base.scss */
.no-scroll {
  overflow-y: hidden;
}

/* line 1, ../../LoftHouse - html/scss/blocks/_header.scss */
.main-container {
  width: 95%;
  margin: 0 auto;
  padding: 10px 0;
}

/* line 7, ../../LoftHouse - html/scss/blocks/_header.scss */
.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 74px;
  min-height: 840px;
  background: url(./../img/header/header-bg.jpg) center/cover no-repeat;
}

@media screen and (max-width: 959px) {
  /* line 7, ../../LoftHouse - html/scss/blocks/_header.scss */
  .header {
    min-height: unset;
    row-gap: 50px;
  }
}

/* line 24, ../../LoftHouse - html/scss/blocks/_header.scss */
.container {
  margin: 0 auto;
  max-width: 1140px;
}

/* line 29, ../../LoftHouse - html/scss/blocks/_header.scss */
.header__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 35, ../../LoftHouse - html/scss/blocks/_header.scss */
.header__top-row--mobile {
  position: fixed;
  z-index: 10;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #242b33;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  row-gap: 60px;
  padding: 40px 0;
}

/* line 52, ../../LoftHouse - html/scss/blocks/_header.scss */
.header__top-row--mobile .header__nav {
  display: block;
}

/* line 56, ../../LoftHouse - html/scss/blocks/_header.scss */
.header__top-row--mobile .nav__list {
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}

/* line 62, ../../LoftHouse - html/scss/blocks/_header.scss */
.header__top-row--mobile .header__nav-btn {
  position: fixed;
  top: 50px;
  right: 15px;
}

@media screen and (max-width: 959px) {
  /* line 69, ../../LoftHouse - html/scss/blocks/_header.scss */
  .header__nav {
    display: none;
  }
}

/* line 75, ../../LoftHouse - html/scss/blocks/_header.scss */
.header__nav-btn {
  display: none;
}

@media screen and (max-width: 959px) {
  /* line 75, ../../LoftHouse - html/scss/blocks/_header.scss */
  .header__nav-btn {
    display: block;
  }
}

/* line 83, ../../LoftHouse - html/scss/blocks/_header.scss */
.header__title {
  padding-bottom: 121px;
  position: relative;
  text-align: center;
  font-size: 48px;
  font-family: "Playfair Display", serif;
  color: #d4c17f;
  font-weight: 700;
}

@media screen and (max-width: 959px) {
  /* line 83, ../../LoftHouse - html/scss/blocks/_header.scss */
  .header__title {
    font-size: 32px;
    padding-bottom: 80px;
  }
}

/* line 98, ../../LoftHouse - html/scss/blocks/_header.scss */
.header__title-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

/* line 105, ../../LoftHouse - html/scss/blocks/_header.scss */
.header__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  /* line 105, ../../LoftHouse - html/scss/blocks/_header.scss */
  .header__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
}

/* line 1, ../../LoftHouse - html/scss/blocks/_nav.scss */
.nav {
  font-size: 14px;
}

/* line 5, ../../LoftHouse - html/scss/blocks/_nav.scss */
.nav__list {
  display: flex;
  column-gap: 40px;
}

/* Nav Icon */
/* line 2, ../../LoftHouse - html/scss/blocks/_nav-icon.scss */
.nav-icon-btn {
  --time: 0.1s;
  --width: 40px;
  --height: 30px;
  --line-height: 1px;
  --line-margin: 2;
  --color: #fff;
  height: var(--height);
  width: var(--width);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 17, ../../LoftHouse - html/scss/blocks/_nav-icon.scss */
.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
}

/* line 24, ../../LoftHouse - html/scss/blocks/_nav-icon.scss */
.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

/* line 39, ../../LoftHouse - html/scss/blocks/_nav-icon.scss */
.nav-icon::before {
  top: calc(var(--line-height) * -8);
}

/* line 43, ../../LoftHouse - html/scss/blocks/_nav-icon.scss */
.nav-icon::after {
  top: calc(var(--line-height) * 8);
}

/* line 47, ../../LoftHouse - html/scss/blocks/_nav-icon.scss */
.nav-icon.nav-icon--active {
  background-color: transparent;
}

/* line 51, ../../LoftHouse - html/scss/blocks/_nav-icon.scss */
.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

/* line 57, ../../LoftHouse - html/scss/blocks/_nav-icon.scss */
.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

/* line 61, ../../LoftHouse - html/scss/blocks/_nav-icon.scss */
.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

/* line 1, ../../LoftHouse - html/scss/blocks/_info.scss */
.info {
  position: relative;
  font-size: 18px;
}

/* line 5, ../../LoftHouse - html/scss/blocks/_info.scss */
.info--map, .info--tel {
  padding-left: 35px;
}

/* line 9, ../../LoftHouse - html/scss/blocks/_info.scss */
.info--map::before, .info--tel::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
}

/* line 22, ../../LoftHouse - html/scss/blocks/_info.scss */
.info--map::before {
  background-image: url("./../img/header/map.svg");
}

/* line 26, ../../LoftHouse - html/scss/blocks/_info.scss */
.info--tel::before {
  background-image: url("./../img/header/phone.svg");
}

@media screen and (max-width: 959px) {
  /* line 1, ../../LoftHouse - html/scss/blocks/_info.scss */
  .info {
    font-size: 14px;
  }
  /* line 33, ../../LoftHouse - html/scss/blocks/_info.scss */
  .info--map, .info--tel {
    padding-left: 26px;
  }
}

/* line 1, ../../LoftHouse - html/scss/blocks/_benefits.scss */
.benefits {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* line 6, ../../LoftHouse - html/scss/blocks/_benefits.scss */
.benefits::after {
  content: "II";
  position: absolute;
  top: 0;
  left: calc(50% + 550px);
  transform: translate(-50%, 0%);
  line-height: 1.15;
  opacity: 0.2;
  font-size: 400px;
  font-family: "Playfair Display", serif;
}

@media screen and (max-width: 959px) {
  /* line 1, ../../LoftHouse - html/scss/blocks/_benefits.scss */
  .benefits {
    padding: 60px;
  }
}

/* line 25, ../../LoftHouse - html/scss/blocks/_benefits.scss */
.benefits__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  justify-content: center;
}

@media screen and (max-width: 959px) {
  /* line 25, ../../LoftHouse - html/scss/blocks/_benefits.scss */
  .benefits__row {
    gap: 20px;
  }
}

/* line 40, ../../LoftHouse - html/scss/blocks/_benefits.scss */
.benefits__item {
  text-align: center;
}

/* line 44, ../../LoftHouse - html/scss/blocks/_benefits.scss */
.benefits__item-img {
  margin-bottom: 35px;
}

@media screen and (max-width: 959px) {
  /* line 44, ../../LoftHouse - html/scss/blocks/_benefits.scss */
  .benefits__item-img {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
  }
}

/* line 54, ../../LoftHouse - html/scss/blocks/_benefits.scss */
.benefits__item-text {
  font-size: 20px;
  line-height: 1.35;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 959px) {
  /* line 54, ../../LoftHouse - html/scss/blocks/_benefits.scss */
  .benefits__item-text {
    font-size: 14px;
  }
}

/* line 1, ../../LoftHouse - html/scss/blocks/_appartments.scss */
.appartments {
  position: relative;
  overflow: hidden;
}

/* line 5, ../../LoftHouse - html/scss/blocks/_appartments.scss */
.appartments::before {
  content: "III";
  position: absolute;
  top: 0;
  right: calc(50% + 550px);
  transform: translate(50%, 0%);
  line-height: 1.05;
  opacity: 0.2;
  font-size: 400px;
  font-family: "Playfair Display", serif;
}

/* line 20, ../../LoftHouse - html/scss/blocks/_appartments.scss */
.appartments__title {
  margin-bottom: 88px;
}

@media screen and (max-width: 959px) {
  /* line 20, ../../LoftHouse - html/scss/blocks/_appartments.scss */
  .appartments__title {
    margin-bottom: 24px;
  }
}

/* line 28, ../../LoftHouse - html/scss/blocks/_appartments.scss */
.appartments__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  justify-items: center;
  gap: 30px;
}

@media screen and (min-width: 970px) {
  /* line 28, ../../LoftHouse - html/scss/blocks/_appartments.scss */
  .appartments__cards {
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  }
}

@media screen and (max-width: 460px) {
  /* line 28, ../../LoftHouse - html/scss/blocks/_appartments.scss */
  .appartments__cards {
    gap: 15px;
  }
}

/* line 1, ../../LoftHouse - html/scss/blocks/_cards.scss */
.card {
  position: relative;
  max-width: 740px;
  overflow: hidden;
}

/* line 6, ../../LoftHouse - html/scss/blocks/_cards.scss */
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(36, 43, 51, 0) 0%, #242b33 100%);
}

/* line 18, ../../LoftHouse - html/scss/blocks/_cards.scss */
.card::after {
  opacity: 0;
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px double yellowgreen;
  transition: opacity 0.6s ease-in;
}

/* line 34, ../../LoftHouse - html/scss/blocks/_cards.scss */
.card:hover::after {
  opacity: 1;
}

/* line 39, ../../LoftHouse - html/scss/blocks/_cards.scss */
.card__img {
  transition: transform 0.6s ease-in;
}

/* line 43, ../../LoftHouse - html/scss/blocks/_cards.scss */
.card:hover .card__img {
  transform: scale(1.1);
  filter: contrast(110%) brightness(1.2) saturate(1.2);
}

/* line 49, ../../LoftHouse - html/scss/blocks/_cards.scss */
.card__title {
  position: absolute;
  z-index: 9;
  left: 50px;
  right: 20px;
  bottom: 44px;
  font-size: 24px;
  color: yellowgreen;
}

@media screen and (max-width: 959px) {
  /* line 49, ../../LoftHouse - html/scss/blocks/_cards.scss */
  .card__title {
    font-size: 18px;
    left: 25px;
    bottom: 24px;
  }
}

/* line 66, ../../LoftHouse - html/scss/blocks/_cards.scss */
.card__title:hover {
  color: white;
  font-size: 26px;
}

/* line 1, ../../LoftHouse - html/scss/blocks/_cta.scss */
.cta {
  max-height: 600px;
  padding: 180px 0;
  background: linear-gradient(180deg, #242b33 5%, rgba(36, 43, 51, 0) 50%, #242b33 95%), url(./../img/cta/cta-bg.jpg) center/cover no-repeat;
}

@media screen and (max-width: 959px) {
  /* line 1, ../../LoftHouse - html/scss/blocks/_cta.scss */
  .cta {
    padding: 60px 0;
  }
}

/* line 18, ../../LoftHouse - html/scss/blocks/_cta.scss */
.cta__title {
  margin-bottom: 17px;
}

/* line 22, ../../LoftHouse - html/scss/blocks/_cta.scss */
.cta__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media screen and (max-width: 959px) {
  /* line 22, ../../LoftHouse - html/scss/blocks/_cta.scss */
  .cta__wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* line 32, ../../LoftHouse - html/scss/blocks/_cta.scss */
.cta__text {
  font-style: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

/* line 38, ../../LoftHouse - html/scss/blocks/_cta.scss */
.cta__text p + p {
  margin-top: 1em;
}

@media screen and (max-width: 959px) {
  /* line 32, ../../LoftHouse - html/scss/blocks/_cta.scss */
  .cta__text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
  }
}

/* line 48, ../../LoftHouse - html/scss/blocks/_cta.scss */
.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 30px;
  justify-items: center;
}

@media screen and (max-width: 959px) {
  /* line 48, ../../LoftHouse - html/scss/blocks/_cta.scss */
  .cta__form {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* line 4, ../../LoftHouse - html/scss/blocks/_form.scss */
.form__input {
  height: 50px;
  width: 270px;
  padding: 10px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
  color: #242b33;
  font-size: 20px;
  transition: background-color 0.6s ease-in;
}

@media screen and (max-width: 959px) {
  /* line 4, ../../LoftHouse - html/scss/blocks/_form.scss */
  .form__input {
    height: 40px;
    width: 260px;
  }
}

/* line 19, ../../LoftHouse - html/scss/blocks/_form.scss */
.form__input::placeholder {
  color: #242b33;
}

/* line 23, ../../LoftHouse - html/scss/blocks/_form.scss */
.form__input:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* line 28, ../../LoftHouse - html/scss/blocks/_form.scss */
.form__privacy {
  display: flex;
  align-self: center;
  font-style: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: yellow;
}

/* line 37, ../../LoftHouse - html/scss/blocks/_form.scss */
.form__button {
  height: 50px;
  width: 270px;
  padding: 16px;
  text-align: center;
  background-color: rgba(149, 179, 30, 0.6);
  color: #242b33;
  font-size: 20px;
  transition: background-color 0.6s ease-in;
}

@media screen and (max-width: 959px) {
  /* line 37, ../../LoftHouse - html/scss/blocks/_form.scss */
  .form__button {
    width: 260px;
  }
}

/* line 51, ../../LoftHouse - html/scss/blocks/_form.scss */
.form__button:hover {
  background-color: rgba(167, 209, 0, 0.6);
}

/* line 1, ../../LoftHouse - html/scss/blocks/_video.scss */
.video {
  overflow: hidden;
  position: relative;
  text-align: center;
}

/* line 6, ../../LoftHouse - html/scss/blocks/_video.scss */
.video::after {
  content: "IV";
  position: absolute;
  top: 0;
  left: calc(50% + 500px);
  transform: translate(-50%, 0%);
  line-height: 1.15;
  opacity: 0.2;
  font-size: 400px;
  font-family: "Playfair Display", serif;
}

/* line 21, ../../LoftHouse - html/scss/blocks/_video.scss */
.video__link {
  position: relative;
  display: inline-block;
  text-align: center;
}

/* line 25, ../../LoftHouse - html/scss/blocks/_video.scss */
.video__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 43, 51, 0.3);
  transition: background 0.6s ease-in;
}

/* line 36, ../../LoftHouse - html/scss/blocks/_video.scss */
.video__link:hover::before {
  background: rgba(36, 43, 51, 0.1);
}

/* line 40, ../../LoftHouse - html/scss/blocks/_video.scss */
.video__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease-in;
}

@media screen and (max-width: 959px) {
  /* line 40, ../../LoftHouse - html/scss/blocks/_video.scss */
  .video__icon {
    width: 80px;
    height: 80px;
  }
}

/* line 53, ../../LoftHouse - html/scss/blocks/_video.scss */
.video__link:hover .video__icon {
  transform: translate(-50%, -50%) scale(1.2);
  filter: saturate(1.5);
}

/* line 1, ../../LoftHouse - html/scss/blocks/_section-map.scss */
.section-map {
  padding: 180px 0;
  position: relative;
}

@media screen and (max-width: 959px) {
  /* line 1, ../../LoftHouse - html/scss/blocks/_section-map.scss */
  .section-map {
    padding: 90px 0;
  }
}

/* line 9, ../../LoftHouse - html/scss/blocks/_section-map.scss */
.section-map::before {
  content: "V";
  z-index: -1;
  position: absolute;
  top: 140px;
  right: calc(50% + 550px);
  transform: translate(50%, 0%);
  line-height: 1;
  opacity: 0.2;
  font-size: 400px;
  font-family: "Playfair Display", serif;
}

/* line 25, ../../LoftHouse - html/scss/blocks/_section-map.scss */
.section-map__title {
  margin-bottom: 88px;
}

@media screen and (max-width: 959px) {
  /* line 25, ../../LoftHouse - html/scss/blocks/_section-map.scss */
  .section-map__title {
    margin-bottom: 44px;
  }
}

/* line 35, ../../LoftHouse - html/scss/blocks/_section-map.scss */
.map {
  display: flex;
  max-width: 1100px;
  height: 360px;
  padding-right: 5px;
  background-color: #626262;
  text-align: center;
}

/* line 1, ../../LoftHouse - html/scss/blocks/_feedback.scss */
.feedback {
  padding-bottom: 180px;
}

@media screen and (max-width: 959px) {
  /* line 1, ../../LoftHouse - html/scss/blocks/_feedback.scss */
  .feedback {
    padding-bottom: 90px;
  }
}

/* line 9, ../../LoftHouse - html/scss/blocks/_feedback.scss */
.feedback__title {
  margin-bottom: 38px;
}

@media screen and (max-width: 959px) {
  /* line 9, ../../LoftHouse - html/scss/blocks/_feedback.scss */
  .feedback__title {
    margin-bottom: 19px;
  }
}

/* line 17, ../../LoftHouse - html/scss/blocks/_feedback.scss */
.feedback__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

/* line 1, ../../LoftHouse - html/scss/blocks/_footer.scss */
.footer {
  padding: 62px 31px;
  background-color: #2d343c;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 959px) {
  /* line 1, ../../LoftHouse - html/scss/blocks/_footer.scss */
  .footer {
    padding: 31px 15px;
  }
}

/* line 11, ../../LoftHouse - html/scss/blocks/_footer.scss */
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media screen and (max-width: 959px) {
  /* line 11, ../../LoftHouse - html/scss/blocks/_footer.scss */
  .footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: start;
    gap: 15px;
  }
}

/* line 23, ../../LoftHouse - html/scss/blocks/_footer.scss */
.footer__logo {
  margin-top: -12px;
}

@media screen and (max-width: 959px) {
  /* line 23, ../../LoftHouse - html/scss/blocks/_footer.scss */
  .footer__logo {
    justify-self: center;
  }
}

/* line 34, ../../LoftHouse - html/scss/blocks/_footer.scss */
.footer-nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 20px;
}

/* line 43, ../../LoftHouse - html/scss/blocks/_footer.scss */
.footer__socials {
  display: flex;
  column-gap: 25px;
}

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