.descriptionSection {
  .descriptionSectionContainer {
    position: relative;
    overflow: hidden;
    border-radius: 24px;

    .imgBg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;

      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }
    }
    .bgOverlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(0, 0, 0);
      background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7399334733893557) 0%,
        rgba(255, 255, 255, 0) 100%
      );
      z-index: 10;
    }

    .contentContainer {
      position: relative;
      z-index: 20;
      padding: 66px 30px;

      p {
        color: white;
        font-size: 16px;
        max-width: 580px;
      }
    }
  }
}

@media (max-width: 767px) {
  .descriptionSection {
    .descriptionSectionContainer {
      border-radius: 0px;
      .contentContainer {
        display: flex;
        align-items: center;
        justify-content: center;
        p {
          text-align: center;
          font-size: 14px;
        }
      }
    }
  }
}

.citySection {
  .citySectionContainer {
    .cityContainer {
      display: flex;
      flex-direction: column;
      height: 100%;

      .cityTitle {
        padding-bottom: 32px;
        h3 {
          font-size: 46px;
          font-weight: 700;
          color: #17233e;
          padding-bottom: 16px;
        }
        p {
          color: #17233e;
        }
      }
      .cityGrid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        overflow: hidden;

        .cityContent {
          display: flex;
          flex-direction: column;
          border-radius: 32px;
          overflow: hidden;
          border: 1px solid #bdbdbd40;
          height: 100%;

          .cityImg {
            overflow: hidden;
            aspect-ratio: 16/12;
            img {
              height: 100%;
              width: 100%;
              object-fit: cover;
            }
          }
          .cityText {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 24px;
            height: 100%;
            flex: 1;

            h6 {
              color: #17233e;
              font-weight: 700;
            }

            p {
              color: #777777;
              font-size: 12px;
              border-top: 1px solid #7777774a;
              padding-top: 16px;
            }
          }
        }
      }

      @media (max-width: 1279px) {
        .cityGrid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 670px) {
        .cityGrid {
          grid-template-columns: 1fr;
        }
      }
    }
  }
}

.ownerInfoSection {
  .ownerInfoSectionContainer {
    h3 {
      padding-bottom: 16px;
    }

    a {
      color: #27a5f9;
    }

    .customPadding-y {
      padding: 16px 0;
    }

    .a-tag-div {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
  }
}
