* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  outline: none;
}
.p-lr {
  padding-left: 108px;
  padding-right: 108px;
}
ul {
  padding-left: 18px;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
}
body {
  background: #fff;
}
header {
  width: 100%;
  background: #ffffff;
  padding: 18px 0;
  box-shadow: 0px 6px 22.1px 0px rgba(204, 204, 204, 0.15);
  .header-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    .header-weather {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: end;
      gap: 6px;
      .weather-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      .weather-location,
      span,
      .weather-temprature {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #3f3c38;
      }
    }
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      .nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 140px;
        min-width: 140px;
        img {
          width: 100%;
        }
        .logoDark {
          display: block;
        }
        .logoWhite {
          display: none;
        }
      }
      .navbar-right {
        display: flex;
        align-items: center;
        gap: 24px;
        .nav-links {
          display: flex;
          align-items: center;
          gap: 24px;
          .nav-link {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #3f3c38;
          }
        }
        .language {
          display: flex;
          flex-direction: column;
          align-items: start;
          position: relative;
          .current-lang {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #3f3c38;
            text-decoration: underline;
          }
          .other-languages {
            min-width: 44px;
            display: flex;
            flex-direction: column;
            align-items: start;
            width: 100%;
            position: absolute;
            z-index: 13;
            right: 0;
            top: 42px;
            padding: 6px;
            background: #fff;
            border-radius: 4px;
            box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
            gap: 8px;
            transition: 0.3s ease-in-out;
            opacity: 0;
            visibility: hidden;
            .lang-item {
              font-size: 16px;
              line-height: 24px;
              color: #111;
              font-weight: 400;
              width: 100%;
              display: flex;
              align-items: center;
              justify-content: center;
              text-align: center;
              gap: 4px;
              &:first-child {
                padding-bottom: 4px;
                border-bottom: 1px solid #7e7c7a;
              }
            }
          }
        }
        .language.active {
          .other-languages {
            top: 32px;
            opacity: 1;
            visibility: visible;
          }
        }
      }
      .hamburger {
        width: 28px;
        height: 28px;
        display: none;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
}
header.home-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  background: transparent;
  box-shadow: none;
  .header-container {
    .header-weather {
      .weather-icon {
        filter: brightness(1000);
      }
      .weather-location,
      span,
      .weather-temprature {
        color: #fff;
      }
    }
    nav {
      .nav-logo {
        .logoDark {
          display: none;
        }
        .logoWhite {
          display: block;
        }
      }
      .navbar-right {
        .nav-links {
          .nav-link {
            color: #fff;
          }
        }
        .language {
          .current-lang {
            color: #fff;
          }
          .other-languages {
            background: transparent;
            box-shadow: none;
            border: 1px solid #fff;
            backdrop-filter: blur(4px);
            .lang-item {
              color: #fff;
              &:first-child {
                border-bottom: 1px solid rgba(255, 255, 255, 0.8);
              }
            }
          }
        }
        .language.active {
          .other-languages {
            top: 32px;
            opacity: 1;
            visibility: visible;
          }
        }
      }
      .hamburger {
        img {
          filter: brightness(1000);
        }
      }
    }
  }
}
.mobile-menu {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  padding: 30px 20px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.3s ease-in-out;
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
    .mobile-menu-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 180px;
      min-width: 180px;
      img {
        width: 100%;
      }
    }
    .head-right {
      display: flex;
      align-items: center;
      gap: 16px;
      .language {
        display: flex;
        flex-direction: column;
        align-items: start;
        position: relative;
        .current-lang {
          display: flex;
          align-items: center;
          gap: 6px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
            transition: 0.3s ease-in-out;
            filter: invert(1000);
          }
        }
        .other-languages {
          display: flex;
          flex-direction: column;
          align-items: start;
          width: 40px;
          position: absolute;
          z-index: 13;
          left: 0;
          top: 46px;
          padding: 8px;
          background: #fff;
          border-radius: 4px;
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
          gap: 8px;
          transition: 0.3s ease-in-out;
          opacity: 0;
          visibility: hidden;
          .lang-item {
            font-size: 16px;
            line-height: 24px;
            color: #111;
            font-weight: 400;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 6px;
            &:first-child {
              padding-bottom: 8px;
              border-bottom: 1px solid #6b7280;
            }
          }
        }
      }
      .language.active {
        .current-lang {
          .downIcon {
            transform: rotate(180deg);
          }
        }
        .other-languages {
          top: 36px;
          opacity: 1;
          visibility: visible;
        }
      }
      .closeMobileMenu {
        width: 24px;
        height: 24px;
        min-width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
  .mobile-menu-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    .mobile-menu-link {
      font-weight: 400;
      font-size: 24px;
      line-height: 40px;
      color: #101217;
    }
  }
}
.mobile-menu.showed {
  transform: scale(1);
}
.home-hero {
  width: 100%;
  height: 100svh;
  min-height: 720px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  .heroImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(68%);
  }
  .home-hero-container {
    position: absolute;
    z-index: 3;
    max-width: 1440px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .hero-title {
      font-family: "Roboto Serif";
      font-weight: 400;
      font-size: 48px;
      line-height: 64px;
      color: #ffffff;
      max-width: 720px;
    }
    .hero-description {
      margin-top: 12px;
      max-width: 720px;
      p,
      li,
      span {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #ffffff;
      }
    }
    .more {
      margin-top: 24px;
      max-width: 180px;
      text-align: center;
      width: 100%;
      background: #fff;
      padding: 12px;
      border-radius: 4px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #3f3c38;
    }
  }
}
.home-statistics {
  width: 100%;
  background: #fafcfc;
  padding: 40px 0;
  .home-statistics-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    justify-content: space-between;
    gap: 40px;
    grid-template-columns: repeat(4, minmax(0, max-content));
    .statistic-item {
      max-width: 210px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      p {
        font-family: "Roboto Serif";
        font-weight: 500;
        font-size: 36px;
        line-height: 46px;
        text-align: center;
        color: #3f3c38;
      }
      .item-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #7e7c7a;
      }
    }
  }
}
.home-about {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  .section-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 14px;
    .points {
      display: flex;
      align-items: center;
      gap: 3px;
      .point-item {
        width: 4px;
        height: 4px;
        border-radius: 100px;
        background: #000;
      }
    }
  }
  .home-about-text {
    margin-top: 24px;
    p,
    li,
    span {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #3f3c38;
    }
  }
}
.home-simple-image {
  margin-top: 60px;
  width: 100%;
  height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-sale-terms {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 14px;
    .points {
      display: flex;
      align-items: center;
      gap: 3px;
      .point-item {
        width: 4px;
        height: 4px;
        border-radius: 100px;
        background: #000;
      }
    }
  }
  .sale-terms-boxes {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    .sale-terms-box {
      border-radius: 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 24px;
      width: 100%;
      background: #ffffff;
      border: 1px solid #fafafa;
      box-shadow: 0px 7px 10px 0px rgba(172, 172, 172, 0.08);
      .icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #3f3c38;
        border-radius: 4px;
        img {
          width: 28px;
          height: 28px;
        }
      }
      .sale-terms-title {
        margin-top: 24px;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        color: #000;
      }
      p {
        margin-top: 8px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #6d6d6d;
      }
    }
  }
}
.home-gallery {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .section-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 14px;
    .points {
      display: flex;
      align-items: center;
      gap: 3px;
      .point-item {
        width: 4px;
        height: 4px;
        border-radius: 100px;
        background: #000;
      }
    }
  }
  .gallery-slide {
    margin-top: 24px;
    width: 100%;
    padding-bottom: 34px;
    .gallery-item {
      width: 392px;
      height: 380px;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.25s ease-in-out;
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
    }
    .swiper-button-prev,
    .swiper-button-next {
      color: #fff;
      width: 40px;
      height: 40px;
      transition: 0.25s ease-in-out;
      border-radius: 100px;
      &::after {
        font-size: 15px;
      }
      &:hover {
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(4px);
      }
    }
    .swiper-pagination {
      width: 100%;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      .swiper-pagination-bullet {
        margin: 0;
        width: 10px;
        height: 10px;
        border-radius: 100px;
        opacity: 1;
        background: #d9d9d9;
      }
      .swiper-pagination-bullet-active {
        background: #3f3c38;
      }
    }
  }
}
.home-blog {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  .section-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 14px;
    .points {
      display: flex;
      align-items: center;
      gap: 3px;
      .point-item {
        width: 4px;
        height: 4px;
        border-radius: 100px;
        background: #000;
      }
    }
  }
  .blog-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
    .blog-card {
      width: 100%;
      height: 510px;
      overflow: hidden;
      border-radius: 8px;
      position: relative;
      .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        transition: 0.25s ease-in-out;
      }
      .card-body {
        position: absolute;
        left: 0;
        bottom: -68px;
        width: 100%;
        height: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: end;
        padding: 20px;
        z-index: 2;
        transition: 0.25s ease-in-out;
        .blog-name {
          font-family: "Roboto Serif";
          font-weight: 600;
          font-size: 16px;
          line-height: 24px;
          color: #ffffff;
          display: -webkit-box;
          overflow: hidden;
          -webkit-line-clamp: 1;
          -webkit-box-orient: vertical;
          height: 24px;
        }
        .short-description {
          margin-top: 8px;
          display: -webkit-box;
          overflow: hidden;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          height: 36px;
          p,
          li,
          span {
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #ffffff;
          }
        }
        .more {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          width: 100%;
          margin-top: 20px;
          background: rgba(126, 121, 111, 0.19);
          border-radius: 4px;
          border-left: 1px solid #fff;
          border-right: 1px solid #fff;
          padding: 12px;
          backdrop-filter: blur(2px);
          transition: 0.25s ease-in-out;
          p {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #fff;
          }
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
          }
          &:hover {
            transform: scale(1.02);
          }
        }
        &::after {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border-radius: 8px;
          background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            #474747 100%
          );
          z-index: -1;
        }
      }
      &:hover {
        .card-image {
          transform: scale(1.1);
        }
        .card-body {
          bottom: 0;
        }
      }
    }
  }
}
.home-contact {
  max-width: 1440px;
  width: 100%;
  margin: 100px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-family: "Roboto Serif";
    font-weight: 500;
    font-size: 36px;
    line-height: 46px;
    color: #1a1918;
    text-align: center;
  }
  .home-contact-form {
    max-width: 700px;
    width: 100%;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    .form-items {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    input,
    textarea {
      width: 100%;
      padding: 16px 0;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      border: none;
      resize: none;
      height: 56px;
      border-bottom: 1px solid #eaebea;
      &:focus {
        border-bottom: 1px solid #000;
      }
      &::placeholder {
        color: #7e7c7a;
      }
    }
    .submit-form {
      margin-top: 24px;
      width: 100%;
      background: #3f3c38;
      padding: 12px;
      border-radius: 4px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
    }
  }
}
footer {
  margin-top: 80px;
  width: 100%;
  background: #3f3c38;
  padding: 36px 0;
  .footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    .footer-logo {
      width: 140px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
      }
    }
    .footer-links {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      .footer-link {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #ffffff;
      }
    }
    .socials {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 24px;
      gap: 20px;
      .social-item {
        min-width: 20px;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
    .all-right-reserved {
      margin-top: 48px;
      padding-top: 24px;
      width: 100%;
      border-top: 1px solid #7e7c7a;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      color: #a7a5a3;
    }
  }
}
.breadcrumbs {
  max-width: 1440px;
  width: 100%;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  gap: 6px;
  .breadcrumb-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #98948c;
    display: flex;
    align-items: center;
  }
  .breadcrumb-item.active {
    color: #3f3c38;
    font-weight: 500;
  }
  .breadcrumb-separator {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}
.about-main {
  max-width: 1440px;
  width: 100%;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  .about-main-title {
    font-family: "Roboto Serif";
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
    color: #3f3c38;
    width: 100%;
  }
  .description-text {
    width: 100%;
    p,
    li,
    span {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #59564f;
    }
  }
  .about-main-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }
  }
}
.about-main-values {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  .section-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 14px;
    .points {
      display: flex;
      align-items: center;
      gap: 3px;
      .point-item {
        width: 4px;
        height: 4px;
        border-radius: 100px;
        background: #000;
      }
    }
  }
  .main-values-boxes {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    .main-values-box {
      border-radius: 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 24px;
      width: 100%;
      background: #ffffff;
      border: 1px solid #fafafa;
      box-shadow: 0px 7px 10px 0px rgba(172, 172, 172, 0.08);
      .icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #3f3c38;
        border-radius: 4px;
        img {
          width: 28px;
          height: 28px;
        }
      }
      .main-values-title {
        margin-top: 24px;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        color: #000;
      }
      p {
        margin-top: 8px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #6d6d6d;
      }
    }
  }
}
.blog-list {
  max-width: 1440px;
  width: 100%;
  margin: 24px auto 0;
  .blog-list-title {
    font-family: "Roboto Serif";
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
    color: #3f3c38;
  }
  .blog-list-cards {
    margin-top: 28px;
    gap: 30px 24px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    .blog-card {
      width: 100%;
      height: 510px;
      overflow: hidden;
      border-radius: 8px;
      position: relative;
      .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        transition: 0.25s ease-in-out;
      }
      .card-body {
        position: absolute;
        left: 0;
        bottom: -68px;
        width: 100%;
        height: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: end;
        padding: 20px;
        z-index: 2;
        transition: 0.25s ease-in-out;
        .blog-name {
          font-family: "Roboto Serif";
          font-weight: 600;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
          display: -webkit-box;
          overflow: hidden;
          -webkit-line-clamp: 1;
          -webkit-box-orient: vertical;
          height: 24px;
        }
        .short-description {
          margin-top: 8px;
          display: -webkit-box;
          overflow: hidden;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          height: 36px;
          p {
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #fff;
          }
        }
        .more {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          width: 100%;
          margin-top: 20px;
          background: rgba(126, 121, 111, 0.19);
          border-radius: 4px;
          border-left: 1px solid #fff;
          border-right: 1px solid #fff;
          padding: 12px;
          backdrop-filter: blur(2px);
          transition: 0.25s ease-in-out;
          p {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #fff;
          }
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
          }
          &:hover {
            transform: scale(1.02);
          }
        }
        &::after {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border-radius: 8px;
          background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            #474747 100%
          );
          z-index: -1;
        }
      }
      &:hover {
        .card-image {
          transform: scale(1.1);
        }
        .card-body {
          bottom: 0;
        }
      }
    }
  }
  .pagination {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    .pagination-item {
      width: 40px;
      height: 40px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 400;
      font-size: 14px;
      line-height: 18px;
      color: #939393;
      transition: 0.25s ease-in-out;
    }
    .pagination-item.active {
      background: #3f3c38;
      color: #fff;
    }
    .pagination-prev,
    .pagination-next {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #ececeb;
      border-radius: 4px;
      img {
        width: 20px;
        height: 20px;
      }
    }
  }
}
.sale-terms-hero {
  width: 100%;
  position: relative;
  padding: 24px 0 120px;
  .sales-terms-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0.8) 100%
    );
    z-index: -1;
  }
  .sale-terms-hero-container {
    max-width: 1226px;
    width: 100%;
    margin: 80px auto 0;
    .term-item {
      max-width: 400px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-top: -80px;
      .term-number {
        display: flex;
        align-items: flex-end;
        gap: 6px;
        .term-number-big {
          font-family: "Roboto Serif";
          font-weight: 300;
          font-size: 120px;
          line-height: 130px;
          color: #1a1a1a;
        }
        .term-number-small {
          font-family: "Roboto Serif";
          font-weight: 300;
          font-size: 50px;
          line-height: 60px;
          color: #1a1a1a;
        }
      }
      .term-body {
        margin-top: 20px;
        border-left: 2px solid #656360;
        padding-left: 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        .term-title {
          font-family: "Roboto Serif";
          font-weight: 400;
          font-size: 28px;
          line-height: 36px;
          color: #1a1a1a;
        }
        .term-description {
          width: 100%;
          p,
          li,
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #6b7280;
          }
        }
      }
      &:nth-child(even) {
        margin-left: auto;
      }
      &:first-child {
        margin-top: 0;
      }
    }
  }
}
.easy-payment {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  .easy-payment-content {
    width: 392px;
    min-width: 392px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    .easy-payment-title {
      font-family: "Roboto Serif";
      font-weight: 400;
      font-size: 40px;
      line-height: 50px;
      color: #1a1a1a;
    }
    .easy-payment-description {
      width: 100%;
      p,
      li,
      span {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        color: #6b7280;
      }
    }
  }
  .easy-payment-image {
    width: 100%;
    max-width: 710px;
    img {
      width: 100%;
      height: auto;
    }
  }
}
.blog-detail {
  max-width: 1440px;
  width: 100%;
  margin: 24px auto 0;
  gap: 24px;
  display: flex;
  align-items: flex-start;
  .blog-detail-main {
    width: calc(100% - 416px);
    display: flex;
    flex-direction: column;
    .blog-detail-image {
      width: 100%;
      height: 424px;
      border-radius: 4px;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
      }
    }
    .blog-detail-content {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      .blog-detail-date {
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: #a5a5a5;
      }
      .blog-detail-title {
        margin-top: 24px;
        font-family: "Roboto Serif";
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #323232;
      }
      .blog-detail-body {
        margin-top: 20px;
        p,
        li,
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 26px;
          color: #59564f;
        }
      }
    }
  }
  .blog-sidebar {
    min-width: 392px;
    width: 392px;
    display: flex;
    flex-direction: column;
    .sidebar-title {
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      color: #393733;
    }
    .sidebar-posts {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 100%;
      .sidebar-post {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        border-bottom: 1px solid #ececeb;
        padding-bottom: 24px;
        &:last-child {
          border-bottom: none;
          padding-bottom: 0;
        }
        .sidebar-post-image {
          width: 132px;
          height: 92px;
          min-width: 132px;
          overflow: hidden;
          border-radius: 4px;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
          }
        }
        .sidebar-post-body {
          width: 100%;
          display: flex;
          flex-direction: column;
          gap: 10px;
          .sidebar-post-date {
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            color: #6f7a7e;
          }
          .sidebar-post-title {
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            color: #000;
            max-height: 72px;
            display: -webkit-box;
            overflow: hidden;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
          }
        }
      }
    }
  }
}
.contact-container {
  max-width: 1440px;
  width: 100%;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 496px) minmax(0, 704px);
  gap: 24px;
  .contact-info {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0px 0px 7.6px 0px rgba(199, 199, 199, 0.15);
    border-radius: 4px;
    width: 100%;
    padding: 24px;
    gap: 24px;
    .contact-info-title {
      font-family: "Roboto Serif";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      color: #1a1a1a;
    }
    .contact-items {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        .icon {
          width: 50px;
          height: 50px;
          min-width: 50px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 100px;
          background: rgba(175, 175, 175, 0.1);
          img {
            width: 24px;
            height: 24px;
          }
        }
        .contact-item-body {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          gap: 8px;
          .contact-item-label {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #3f3c38;
          }
          .contact-item-link {
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #666666;
          }
        }
      }
    }
    .contact-info-social {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
      .contact-info-social-title {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #3f3c38;
      }
      .contact-info-social-items {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        .social-item {
          min-width: 36px;
          width: 36px;
          height: 36px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #3f3c38;
          border-radius: 100px;
          img {
            width: 20px;
            height: 20px;
          }
        }
      }
    }
  }
  .contact-info-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    box-shadow: 0px 0px 7.6px 0px rgba(199, 199, 199, 0.15);
    border-radius: 4px;
    padding: 24px;
    .section-title {
      font-family: "Roboto Serif";
      font-weight: 500;
      font-size: 36px;
      line-height: 46px;
      color: #1a1918;
      text-align: center;
    }
    .contact-form {
      max-width: 700px;
      width: 100%;
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      .form-items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      input,
      textarea {
        width: 100%;
        padding: 16px 0;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        border: none;
        resize: none;
        height: 56px;
        border-bottom: 1px solid #eaebea;
        &:focus {
          border-bottom: 1px solid #000;
        }
        &::placeholder {
          color: #7e7c7a;
        }
      }
      .submit-form {
        margin-top: 24px;
        width: 100%;
        background: #3f3c38;
        padding: 12px;
        border-radius: 4px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
      }
    }
  }
}
.contact-map {
  max-width: 1440px;
  width: 100%;
  margin: 50px auto 0;
  height: 500px;
  border-radius: 4px;
  iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
  }
}
.apartment-plan-container {
  max-width: 1440px;
  width: 100%;
  margin: 24px auto 0;
  .apartment-plan-head-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #736e65;
  }
  .apartment-plan-head-subTitle {
    margin-top: 10px;
    font-family: "Roboto Serif";
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
    color: #3f3c38;
  }
  .apartment-plan-main {
    margin-top: 30px;
    border-radius: 4px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #f3f3f2;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .apartment-plan-title {
      font-weight: 400;
      font-size: 20px;
      line-height: 30px;
      color: #1a1a1a;
    }
    .apartment-plan-description {
      margin-top: 12px;
      width: 100%;
      li,
      p,
      span {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #666666;
      }
    }
    .apartment-fetaures-image {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 16px;
      .apartment-fetaures {
        width: calc(100% - 270px);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        .fetaure-item {
          width: 100%;
          display: flex;
          align-items: center;
          gap: 12px;
          background: #f2f2f1;
          border-radius: 4px;
          padding: 16px;
          img {
            width: 20px;
            height: 20px;
          }
          .item-body {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            .item-title {
              font-weight: 400;
              font-size: 12px;
              line-height: 16px;
              color: #848484;
            }
            .item-value {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #333333;
            }
          }
        }
      }
      .apartment-plan-image {
        min-width: 254px;
        width: 254px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        .plan-image-item {
          width: 100%;
          height: 200px;
          img {
            width: 100%;
            height: 100%;
            object-fit: contain;
          }
        }
      }
    }
  }
  .apartment-plan-buttons {
    display: flex;
    align-items: flex-start;
    margin-top: 24px;
    gap: 16px;
    .download-pdf {
      background: #ffffff;
      border: 1px solid #7e7c7a;
      padding: 12px 24px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: 0.3s ease-in-out;
      img {
        width: 20px;
        height: 20px;
        transition: 0.3s ease-in-out;
      }
      p {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #656360;
        transition: 0.3s ease-in-out;
      }
      &:hover {
        background: #7e7c7a;
        img {
          filter: brightness(1000);
        }
        p {
          color: #fff;
        }
      }
    }
    .place-order {
      background: #3f3c38;
      border: 1px solid #3f3c38;
      padding: 12px 24px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: 0.3s ease-in-out;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
    }
  }
}
.floor-plan-container {
  max-width: 1440px;
  width: 100%;
  margin: 24px auto 0;
  .floor-plan-head-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #736e65;
  }
  .floor-plan-head-subTitle {
    margin-top: 10px;
    font-family: "Roboto Serif";
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
    color: #3f3c38;
  }
  .manual-navigations {
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    .manual-navigation-item {
      width: 150px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      .navigation-title {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #393733;
      }
      .navigation-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border: 1px solid #f3f3f2;
        border-radius: 4px;
        padding: 12px 8px;
        .current-value {
          font-family: "Roboto Serif";
          font-weight: 500;
          font-size: 28px;
          line-height: 38px;
          text-align: center;
          color: #5f7e88;
        }
        button {
          width: 24px;
          height: 24px;
          min-width: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            width: 100%;
            height: 100%;
          }
        }
      }
    }
  }
  .floor-plan-image {
    position: relative; /* SVG overlay və tooltip absolute mövqe üçün */
    margin: 100px auto 0;
    max-width: 700px;
    width: 100%;
    height: auto;
    img {
      width: 100%;
      height: auto;
    }
    /* Mənzil polygonları — şəklin üzərində SVG overlay */
    .apartment-overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      .apartment-shape {
        fill: rgba(207, 170, 60, 0.1);
        stroke: rgba(207, 170, 60, 0.55);
        stroke-width: 0.25;
        stroke-linejoin: round;
        cursor: pointer;
        pointer-events: all;
        transition:
          fill 220ms ease,
          stroke 220ms ease;
      }
      .apartment-shape:hover {
        fill: rgba(207, 170, 60, 0.32);
        stroke: #cfaa3c;
      }
    }
    /* Hover-də mənzil nömrəsini göstərən tooltip */
    .apartment-tooltip {
      position: absolute;
      pointer-events: none;
      padding: 6px 12px;
      background: rgba(20, 20, 20, 0.88);
      color: #ffffff;
      font-family: "Inter", sans-serif;
      font-size: 13px;
      font-weight: 500;
      line-height: 18px;
      border-radius: 6px;
      white-space: nowrap;
      transform: translate(-50%, calc(-100% - 14px));
      opacity: 0;
      transition: opacity 180ms ease;
      z-index: 3;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
      backdrop-filter: blur(6px);
      p {
        margin: 0;
      }
    }
    .apartment-tooltip.is-active {
      opacity: 1;
    }
  }
}
.apartmens-head {
  max-width: 1440px;
  width: 100%;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  .apartmens-head-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #736e65;
  }
  .apartmens-head-subTitle {
    margin-top: 10px;
    font-family: "Roboto Serif";
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
    color: #3f3c38;
  }
  /* Aktiv stage-ə uyğun subTitle göstərilir */
  &[data-stage="aerial"] .apartmens-head-subTitle[data-stage="side"],
  &[data-stage="side"] .apartmens-head-subTitle[data-stage="aerial"] {
    display: none;
  }
}
.apartments-stage {
  margin-top: 40px;
  position: relative;
  width: 100%;
  aspect-ratio: 6528 / 4096;
  overflow: hidden;
  .apartments-aerial {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
    transition:
      opacity 800ms cubic-bezier(0.7, 0, 0.3, 1),
      transform 1000ms cubic-bezier(0.7, 0, 0.3, 1);
    will-change: transform, opacity;
    .aerial-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      user-select: none;
      -webkit-user-drag: none;
    }
    .aerial-overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      .building-shape {
        fill: rgba(255, 255, 255, 0);
        stroke: rgba(255, 255, 255, 0);
        stroke-width: 0.2;
        stroke-linejoin: round;
        cursor: pointer;
        pointer-events: all;
        transition:
          fill 260ms ease,
          stroke 260ms ease;
      }
      .building-shape:hover {
        fill: rgba(255, 255, 255, 0.22);
        stroke: rgba(255, 255, 255, 0.95);
      }
    }
    .aerial-labels {
      position: absolute;
      inset: 0;
      pointer-events: none;
      .building-label {
        position: absolute;
        transform: translate(-50%, -50%);
        padding: 8px 18px;
        background: rgba(255, 255, 255, 0.92);
        color: #3f3c38;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.2px;
        border-radius: 999px;
        backdrop-filter: blur(6px);
        box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.18);
        white-space: nowrap;
        transition:
          transform 260ms ease,
          background 260ms ease,
          color 260ms ease,
          box-shadow 260ms ease;
      }
      .building-label.is-active {
        background: #3f3c38;
        color: #ffffff;
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0px 8px 22px rgba(0, 0, 0, 0.32);
      }
    }
  }
  .apartments-aerial[data-active="false"] {
    opacity: 0;
    transform: scale(2.3);
    pointer-events: none;
  }
  .apartments-side {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #1a1916;
    opacity: 0;
    transform: scale(1.12);
    pointer-events: none;
    transition:
      opacity 700ms cubic-bezier(0.4, 0, 0.2, 1) 250ms,
      transform 900ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
    will-change: transform, opacity;
    .side-tab {
      position: absolute;
      inset: 0;
      display: none;
      .side-swiper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        .swiper-slide {
          position: relative;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            user-select: none;
            -webkit-user-drag: none;
          }
          .side-overlay {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            .floor-shape {
              fill: rgba(255, 255, 255, 0.08);
              stroke: rgba(255, 255, 255, 0.55);
              stroke-width: 0.18;
              stroke-linejoin: round;
              cursor: pointer;
              pointer-events: all;
              transition:
                fill 220ms ease,
                stroke 220ms ease;
            }
            .floor-shape:hover {
              fill: rgba(255, 255, 255, 0.32);
              stroke: #ffffff;
            }
          }
          /* Yalnız aktiv slide-ın polygon-ları hover-i tutsun */
          &:not(.swiper-slide-active) .floor-shape {
            pointer-events: none;
          }
        }
        .swiper-button-next,
        .swiper-button-prev {
          background: rgba(255, 255, 255, 0.8);
          width: 48px;
          height: 48px;
          border-radius: 100px;
          backdrop-filter: blur(6px);
          box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.24);
          cursor: pointer;
          transition: 0.3s ease-in-out;
          &::after {
            font-size: 20px;
            color: #3f3c38;
          }
          &:hover {
            background: #fff;
          }
        }
        .swiper-pagination {
          display: flex;
          align-items: center;
          gap: 8px;
          background: rgba(0, 0, 0, 0.32);
          border-radius: 100px;
          padding: 8px 14px;
          width: auto;
          bottom: 28px;
          left: 50%;
          transform: translateX(-50%);
          backdrop-filter: blur(6px);
          .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.45);
            cursor: pointer;
            transition: 0.3s ease-in-out;
            opacity: 1 !important;
            margin: 0;
            &:hover {
              background: rgba(255, 255, 255, 0.75);
            }
          }
          .swiper-pagination-bullet-active {
            background: #fff;
            transform: scale(1.3);
          }
        }
      }
    }
    .side-back {
      position: absolute;
      top: 24px;
      left: 24px;
      z-index: 2;
      gap: 6px;
      display: flex;
      align-items: center;
      border-radius: 4px;
      transition: 0.25s ease-in-out;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      padding: 12px 20px;
      color: #1a1a1a;
      background: #fff;
      img {
        width: 20px;
        height: 20px;
        min-width: 20px;
        transition: 0.25s ease-in-out;
      }
      &:hover {
        background: #393733;
        color: #fff;
        img {
          transform: translateX(-4px);
          filter: brightness(1000);
        }
      }
    }
    .side-title {
      position: absolute;
      top: 24px;
      right: 24px;
      z-index: 2;
      padding: 12px 20px;
      background: #393733;
      color: #ffffff;
      font-family: "Inter", sans-serif;
      font-size: 16px;
      line-height: 24px;
      font-weight: 500;
      border-radius: 4px;
    }
    .floor-tooltip {
      position: absolute;
      pointer-events: none;
      padding: 6px 12px;
      background: rgba(20, 20, 20, 0.88);
      color: #ffffff;
      font-family: "Inter", sans-serif;
      font-size: 13px;
      font-weight: 500;
      line-height: 18px;
      border-radius: 6px;
      white-space: nowrap;
      transform: translate(-50%, calc(-100% - 14px));
      opacity: 0;
      transition: opacity 180ms ease;
      z-index: 3;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
      backdrop-filter: blur(6px);
    }
    .floor-tooltip.is-active {
      opacity: 1;
    }
  }
  .apartments-side[data-active="true"] {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
}

@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 60px;
    padding-right: 60px;
  }
  header {
    .header-container {
      nav {
        .nav-logo {
          width: 130px;
          min-width: 130px;
        }
        .navbar-right {
          gap: 20px;
          .nav-links {
            gap: 20px;
          }
        }
      }
    }
  }
  .home-hero {
    min-height: 620px;
    .home-hero-container {
      .hero-title {
        font-size: 36px;
        line-height: 54px;
        max-width: 650px;
      }
      .hero-description {
        max-width: 650px;
        p,
        li,
        span {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
        max-width: 165px;
      }
    }
  }
  .home-statistics {
    padding: 30px 0;
    .home-statistics-container {
      gap: 40px 30px;
      .statistic-item {
        max-width: 170px;
        p {
          font-size: 28px;
          line-height: 40px;
        }
        .item-title {
          font-weight: 400;
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
  }
  .home-about {
    margin: 32px auto 0;
    .home-about-text {
      margin-top: 20px;
    }
  }
  .home-simple-image {
    margin-top: 45px;
    height: 500px;
  }
  .home-sale-terms {
    margin: 55px auto 0;
    .sale-terms-boxes {
      margin-top: 20px;
      gap: 20px;
      .sale-terms-box {
        .icon {
          width: 54px;
          height: 54px;
          img {
            width: 26px;
            height: 26px;
          }
        }
        .sale-terms-title {
          font-size: 18px;
          line-height: 28px;
        }
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
  }
  .home-gallery {
    margin: 45px auto 0;
    .gallery-slide {
      margin-top: 20px;
      .gallery-item {
        width: 362px;
        height: 350px;
      }
    }
  }
  .home-blog {
    margin: 30px auto 0;
    .blog-cards {
      gap: 20px;
      margin-top: 20px;
      .blog-card {
        height: 410px;
      }
    }
  }
  .home-contact {
    margin: 75px auto 0;
    .section-title {
      font-size: 30px;
      line-height: 40px;
    }
    .home-contact-form {
      margin-top: 28px;
      gap: 20px;
      .form-items {
        gap: 20px;
      }
    }
  }
  footer {
    margin-top: 55px;
    .footer-container {
      .footer-links {
        gap: 20px 24px;
      }
      .all-right-reserved {
        margin-top: 40px;
        padding-top: 20px;
        font-size: 14px;
        line-height: 20px;
      }
    }
  }
  .breadcrumbs {
    margin: 20px auto 0;
  }
  .about-main {
    margin: 20px auto 0;
    gap: 24px;
    .about-main-image {
      height: 400px;
    }
  }
  .about-main-values {
    margin: 36px auto 0;
    .main-values-boxes {
      margin-top: 20px;
      gap: 20px;
      .main-values-box {
        .icon {
          width: 54px;
          height: 54px;
          img {
            width: 26px;
            height: 26px;
          }
        }
        .main-values-title {
          font-size: 18px;
          line-height: 28px;
        }
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
  }
  .blog-list {
    margin: 20px auto 0;
    .blog-list-cards {
      margin-top: 20px;
      gap: 24px 20px;
      .blog-card {
        height: 410px;
      }
    }
    .pagination {
      margin-top: 40px;
      gap: 8px;
      .pagination-item {
        width: 36px;
        height: 36px;
        font-size: 13px;
        line-height: 15px;
      }
      .pagination-prev,
      .pagination-next {
        width: 36px;
        height: 36px;
        img {
          width: 18px;
          height: 18px;
        }
      }
    }
  }
  .sale-terms-hero {
    padding: 20px 0 80px;
    .sale-terms-hero-container {
      max-width: 976px;
      margin: 60px auto 0;
      .term-item {
        max-width: 350px;
        margin-top: -60px;
        .term-number {
          .term-number-big {
            font-size: 85px;
            line-height: 96px;
          }
          .term-number-small {
            font-size: 35px;
            line-height: 44px;
          }
        }
        .term-body {
          .term-title {
            font-size: 24px;
            line-height: 32px;
          }
          .term-description {
            p,
            li,
            span {
              font-size: 14px;
              line-height: 20px;
            }
          }
        }
      }
    }
  }
  .easy-payment {
    margin: 32px auto 0;
    gap: 40px;
    .easy-payment-content {
      width: 342px;
      min-width: 342px;
      .easy-payment-title {
        font-size: 35px;
        line-height: 45px;
      }
      .easy-payment-description {
        p,
        li,
        span {
          font-size: 16px;
          line-height: 24px;
        }
      }
    }
    .easy-payment-image {
      max-width: 660px;
    }
  }
  .blog-detail {
    gap: 20px;
    .blog-detail-main {
      width: calc(100% - 342px);
      .blog-detail-image {
        height: 364px;
      }
      .blog-detail-content {
        margin-top: 20px;
        .blog-detail-date {
          font-size: 12px;
          line-height: 16px;
        }
        .blog-detail-title {
          margin-top: 20px;
          font-size: 20px;
          line-height: 30px;
        }
        .blog-detail-body {
          margin-top: 16px;
        }
      }
    }
    .blog-sidebar {
      min-width: 322px;
      width: 322px;
      .sidebar-posts {
        gap: 20px;
        .sidebar-post {
          gap: 16px;
          padding-bottom: 20px;
          .sidebar-post-image {
            width: 122px;
            height: 82px;
            min-width: 122px;
          }
        }
      }
    }
  }
  .contact-container {
    margin: 20px auto 0;
    gap: 20px;
    .contact-info {
      padding: 20px;
      gap: 20px;
      .contact-info-title {
        font-size: 26px;
        line-height: 34px;
      }
    }
    .contact-info-form {
      padding: 20px;
      .section-title {
        font-size: 30px;
        line-height: 40px;
      }
      .contact-form {
        margin-top: 28px;
        gap: 20px;
        .form-items {
          gap: 20px;
        }
      }
    }
  }
  .contact-map {
    margin: 40px auto 0;
    height: 400px;
  }
  .apartment-plan-container {
    margin: 20px auto 0;
    .apartment-plan-head-subTitle {
      font-size: 24px;
      line-height: 32px;
    }
    .apartment-plan-main {
      margin-top: 24px;
      padding: 28px 20px;
      .apartment-plan-title {
        font-size: 18px;
        line-height: 28px;
      }
      .apartment-plan-description {
        margin-top: 10px;
      }
      .apartment-fetaures-image {
        .apartment-fetaures {
          width: calc(100% - 250px);
          .fetaure-item {
            gap: 10px;
            padding: 12px;
            img {
              width: 18px;
              height: 18px;
            }
          }
        }
        .apartment-plan-image {
          min-width: 234px;
          width: 234px;
          .plan-image-item {
            height: 190px;
          }
        }
      }
    }
    .apartment-plan-buttons {
      margin-top: 20px;
      .download-pdf {
        padding: 10px 20px;
      }
      .place-order {
        padding: 10px 20px;
      }
    }
  }
  .floor-plan-container {
    margin: 20px auto 0;
    .floor-plan-head-subTitle {
      font-size: 24px;
      line-height: 32px;
    }
    .manual-navigations {
      margin-top: 24px;
      gap: 30px;
      .manual-navigation-item {
        width: 120px;
        gap: 10px;
        .navigation-title {
          font-size: 14px;
          line-height: 20px;
        }
        .navigation-main {
          .current-value {
            font-size: 24px;
            line-height: 32px;
          }
          button {
            width: 20px;
            height: 20px;
            min-width: 20px;
          }
        }
      }
    }
    .floor-plan-image {
      margin: 70px auto 0;
      max-width: 500px;
    }
  }
  .apartmens-head {
    margin: 20px auto 0;
    .apartmens-head-subTitle {
      font-size: 24px;
      line-height: 32px;
    }
  }
  .apartments-stage {
    margin-top: 30px;
    .apartments-aerial {
      .aerial-labels {
        .building-label {
          padding: 8px 16px;
        }
      }
    }
    .apartments-side {
      .side-tab {
        .side-swiper {
          .swiper-button-next,
          .swiper-button-prev {
            width: 40px;
            height: 40px;
            &::after {
              font-size: 16px;
            }
          }
          .swiper-pagination {
            padding: 8px 12px;
            bottom: 20px;
          }
        }
      }
      .side-back {
        top: 20px;
        left: 20px;
        padding: 10px 16px;
      }
      .side-title {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 10px 16px;
      }
    }
  }
}
@media only screen and (max-width: 992px) {
  header {
    .header-container {
      gap: 0;
      .header-weather {
        display: none;
      }
      nav {
        .nav-logo {
          width: 130px;
          min-width: 130px;
        }
        .navbar-right {
          display: none;
        }
        .hamburger {
          display: flex;
        }
      }
    }
  }
  .mobile-menu{
    display: flex;
  }
  .home-simple-image {
    margin-top: 45px;
    height: 500px;
    background-attachment: initial;
  }
  .home-blog {
    .blog-cards {
      .blog-card {
        height: 310px;
      }
    }
  }
  .sale-terms-hero {
    .sale-terms-hero-container {
      max-width: 100%;
      .term-item {
        max-width: 300px;
      }
    }
  }
  .easy-payment {
    flex-direction: column;
    align-items: flex-start;
    .easy-payment-content {
      width: 100%;
      min-width: 0;
    }
    .easy-payment-image {
      max-width: 100%;
    }
  }
  .blog-list {
    .blog-list-cards {
      grid-template-columns: repeat(2, 1fr);
      .blog-card {
        height: 460px;
      }
    }
  }
  .blog-detail {
    gap: 40px;
    flex-direction: column;
    .blog-detail-main {
      width: 100%;
      .blog-detail-image {
        height: auto;
      }
    }
    .blog-sidebar {
      min-width: 0;
      width: 100%;
    }
  }
  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .apartment-plan-container {
    .apartment-plan-main {
      .apartment-fetaures-image {
        .apartment-fetaures {
          grid-template-columns: repeat(3, 1fr);
        }
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-hero {
    min-height: 520px;
    .home-hero-container {
      .hero-title {
        font-size: 24px;
        line-height: 32px;
        max-width: 100%;
      }
      .hero-description {
        max-width: 100%;
      }
      .more {
        max-width: 150px;
      }
    }
  }
  .home-statistics {
    .home-statistics-container {
      gap: 40px 20px;
      .statistic-item {
        max-width: 100px;
        p {
          font-size: 18px;
          line-height: 28px;
        }
        .item-title {
          font-size: 12px;
          line-height: 16px;
        }
      }
    }
  }
  .home-about {
    margin: 24px auto 0;
  }
  .home-simple-image {
    margin-top: 30px;
    height: 400px;
  }
  .home-sale-terms {
    margin: 30px auto 0;
    .sale-terms-boxes {
      gap: 16px;
      .sale-terms-box {
        .icon {
          width: 48px;
          height: 48px;
          img {
            width: 24px;
            height: 24px;
          }
        }
      }
    }
  }
  .home-gallery {
    margin: 30px auto 0;
    .gallery-slide {
      .gallery-item {
        width: 336px;
        height: 326px;
      }
    }
  }
  .home-blog {
    .blog-cards {
      gap: 16px;
      grid-template-columns: repeat(1, 1fr);
      .blog-card {
        height: 480px;
        .card-body {
          bottom: 0;
        }
      }
    }
  }
  .home-contact {
    margin: 50px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .home-contact-form {
      margin-top: 20px;
      max-width: 100%;
      .form-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }
  }
  footer {
    margin-top: 30px;
    .footer-container {
      .footer-links {
        flex-wrap: wrap;
      }
    }
  }
  .breadcrumbs {
    display: none;
  }
  .about-main {
    .about-main-image {
      height: 300px;
    }
  }
  .about-main-values {
    .main-values-boxes {
      gap: 16px;
      .main-values-box {
        .icon {
          width: 48px;
          height: 48px;
          img {
            width: 24px;
            height: 24px;
          }
        }
      }
    }
  }
  .blog-list {
    .blog-list-cards {
      gap: 16px;
      .blog-card {
        height: 380px;
      }
    }
    .pagination {
      margin-top: 30px;
      .pagination-item {
        width: 32px;
        height: 32px;
        font-size: 12px;
        line-height: 14px;
      }
      .pagination-prev,
      .pagination-next {
        width: 32px;
        height: 32px;
        img {
          width: 16px;
          height: 16px;
        }
      }
    }
  }
  .sale-terms-hero {
    padding: 40px 0;
    .sale-terms-hero-container {
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      .term-item {
        max-width: 100%;
        margin-top: 0;
        .term-number {
          .term-number-big {
            font-size: 50px;
            line-height: 60px;
          }
          .term-number-small {
            font-size: 20px;
            line-height: 30px;
          }
        }
        .term-body {
          .term-title {
            font-size: 20px;
            line-height: 30px;
          }
        }
      }
    }
  }
  .easy-payment {
    margin: 24px auto 0;
    gap: 20px;
    .easy-payment-content {
      .easy-payment-title {
        font-size: 30px;
        line-height: 40px;
      }
    }
    .easy-payment-image {
      height: 340px;
      img {
        height: 100%;
        object-fit: cover;
      }
    }
  }
  .blog-detail {
    .blog-detail-main {
      .blog-detail-content {
        margin-top: 16px;
        .blog-detail-title {
          margin-top: 16px;
        }
      }
    }
    .blog-sidebar {
      .sidebar-posts {
        .sidebar-post {
          gap: 20px;
          .sidebar-post-image {
            width: 120px;
            height: 84px;
            min-width: 120px;
          }
          .sidebar-post-body {
            .sidebar-post-title {
              font-size: 14px;
              line-height: 20px;
              max-height: 60px;
            }
          }
        }
      }
    }
  }
  .contact-container {
    gap: 40px;
    .contact-info {
      padding: 0;
      box-shadow: none;
      .contact-info-title {
        font-size: 20px;
        line-height: 28px;
      }
    }
    .contact-info-form {
      padding: 20px;
      align-items: flex-start;
      .section-title {
        font-size: 24px;
        line-height: 32px;
        text-align: start;
      }
      .contact-form {
        margin-top: 28px;
      }
    }
  }
  .contact-map {
    margin: 30px auto 0;
    height: 300px;
  }
  .apartment-plan-container {
    .apartment-plan-head-subTitle {
      font-size: 20px;
      line-height: 30px;
    }
    .apartment-plan-main {
      margin-top: 20px;
      padding: 24px 16px;
      .apartment-fetaures-image {
        flex-direction: column;
        align-items: flex-start;
        .apartment-fetaures {
          width: 100%;
          grid-template-columns: repeat(3, 1fr);
        }
        .apartment-plan-image {
          min-width: 0;
          width: 100%;
          .plan-image-item {
            height: auto;
          }
        }
      }
    }
    .apartment-plan-buttons {
      margin-top: 16px;
    }
  }
  .floor-plan-container {
    .floor-plan-head-subTitle {
      font-size: 20px;
      line-height: 30px;
    }
    .manual-navigations {
      margin-top: 20px;
    }
    .floor-plan-image {
      margin: 40px auto 0;
      max-width: 400px;
    }
  }
  .apartmens-head {
    .apartmens-head-subTitle {
      font-size: 20px;
      line-height: 30px;
    }
  }
  .apartments-stage {
    margin-top: 24px;
    .apartments-aerial {
      .aerial-labels {
        .building-label {
          padding: 6px 10px;
          font-size: 12px;
          line-height: 16px;
        }
      }
    }
    .apartments-side {
      .side-tab {
        .side-swiper {
          .swiper-button-next,
          .swiper-button-prev {
            top: auto;
            bottom: 12px;
            width: 32px;
            height: 32px;
            &::after {
              font-size: 12px;
            }
          }
          .swiper-pagination {
            padding: 6px 10px;
            bottom: 12px;
            .swiper-pagination-bullet {
              width: 6px;
              height: 6px;
            }
          }
        }
      }
      .side-back {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
        font-size: 12px;
        line-height: 16px;
        gap: 4px;
        img {
          width: 18px;
          height: 18px;
          min-width: 18px;
        }
      }
      .side-title {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 12px;
        line-height: 16px;
      }
    }
  }
}
@media only screen and (max-width: 575px) {
  .home-hero {
    min-height: 400px;
  }
  .home-sale-terms {
    .sale-terms-boxes {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .home-blog {
    .blog-cards {
      .blog-card {
        height: 340px;
      }
    }
  }
  .home-contact {
    .home-contact-form {
      .form-items {
        grid-template-columns: repeat(1, 1fr);
      }
    }
  }
  .about-main {
    .about-main-image {
      height: 200px;
    }
  }
  .about-main-values {
    .main-values-boxes {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .blog-list {
    .blog-list-cards {
      grid-template-columns: repeat(1, 1fr);
      .blog-card {
        height: 340px;
        .card-body {
          bottom: 0;
        }
      }
    }
  }
  .contact-container {
    .contact-info-form {
      .contact-form {
        .form-items {
          grid-template-columns: repeat(1, 1fr);
        }
      }
    }
  }
  .apartment-plan-container {
    .apartment-plan-main {
      .apartment-fetaures-image {
        .apartment-fetaures {
          grid-template-columns: repeat(2, 1fr);
        }
      }
    }
  }
  .floor-plan-container {
    .manual-navigations {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      .manual-navigation-item {
        width: 100%;
      }
    }
    .floor-plan-image {
      max-width: 100%;
    }
  }
}
