.main-container {
  overflow: hidden;

  .concord-section {
    width: 100%;
    height: 661px;
    background-image: url(../../../assets/img/Location/location-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width:1024px) {
      height: 480px;
    }

    @media screen and (max-width: 767px) {
      height: 473px;
    }

    &:before {
      content: "";
      background-color: rgba(0, 0, 0, 0.32);
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }

    .concord {
      .concord-data {
        .concord-title {
          display: flex;
          flex-direction: column;
          position: relative;

          .concord-h {
            margin-bottom: 8px;
            color: $white;
            font-family: $font-family-sora;
            font-size: 36px;
            font-weight: bold;
            text-align: center;

            @media screen and (max-width: 768px) {
              font-size: 24px;
            }
          }

          .concord-p {
            color: $white;
            font-size: 18px;
            font-family: $font-family-hk;
            text-align: center;

            @media screen and (max-width: 768px) {
              margin-bottom: 116px;
            }
          }
        }
      }

      .concord-footer {
        position: absolute;
        border-radius: 8px 8px 0 0;
        max-width: 1296px;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 0px;
        padding: 27px 0 27px 0;
        backdrop-filter: blur(140px);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-image: linear-gradient(104deg, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0) 103%);
        border: 1px solid rgba(255, 255, 255, 0.2);

        @media screen and (max-width:1366px) {
          width: 1116px;
        }

        @media screen and (max-width:1024px) {
          width: auto;
          margin: 0 56px 0 56px;
        }

        @media screen and (max-width: 767px) {
          padding: 0 0 26px 0;
          margin: 0 15px;
          width: auto;
        }

        .concord-flex-box {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: center;

          @media screen and (max-width: 768px) {
            justify-content: space-around;
          }

          .flex-item-three {
            @media screen and (max-width: 768px) {
              margin-top: 24px;
            }
          }

          .concord-flex {
            margin-right: 154px;

            @media screen and (max-width:768px) {
              margin: 24px 12px 0 12px;

              &:nth-child(2) {
                // margin-right: 0;
              }
            }

            @media screen and (max-width:320px) {
              &:nth-child(2) {
                margin-right: 12px;
              }
            }

            h5 {
              margin: 0px;
              flex-grow: 0;
              font-family: $font-family-sora;
              font-size: 20px;
              font-weight: bold;
              text-align: center;
              color: #fff;

              @media screen and (max-width: 768px) {
                font-size: 18px;
              }
            }

            p {
              flex-grow: 0;
              margin: 0px;
              font-family: $font-family-hk;
              font-size: 16px;
              font-weight: normal;
              letter-spacing: 0.3px;
              text-align: center;
              color: #fff;
            }

            &:last-child {
              margin-right: 0;

              @media screen and (max-width:768px) {
                margin: 24px 12px 0 12px;
              }

              @media screen and (max-width:320px) {
                margin-right: 12px;
              }
            }
          }
        }
      }
    }

    &.orr-section {
      background-image: url(../../../assets/img/location/orr.png);

      &:before {
        // content: "";
        // background-color: rgba(0, 0, 0, 0.32);
        display: none;
        // width: 100%;
        // height: 100%;
        // position: absolute;
        // top: 0;
        // left: 0;
      }
    }
  }

  .video-section {
    text-align: center;
    padding: 0 0 120px 0;

    @media screen and (max-width: 768px) {
      padding: 0 0 56px 0;
    }

    .video-wrapper {
      .video-container {
        width: 730px;
        margin: 0 auto;
        border-radius: 4px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;

        @media screen and (max-width: 767px) {
          width: 100%;
          padding-left: 12px;
          padding-right: 12px;
        }

        video {
          border-radius: 8px;
        }
      }

      .play-button-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        pointer-events: none;

        #circle-play-b {
          cursor: pointer;
          pointer-events: auto;

          img {
            width: 46.7px;
            height: 46.7px;
            opacity: 0.7;
            border-radius: 50%;
            background-color: #fff;

          }
        }
      }
    }
  }

  .carousel-section {
    margin-bottom: 80px;
    padding: 0px 128px 0;
    position: relative;

    @media screen and (max-width: 768px) {
      margin-bottom: 32px;
      padding: 0px 8px 32px;
    }

    .swiper {
      .swiper-slide {
        .carousel-image {
          img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            object-fit: cover;

            @media screen and (max-width: 768px) {
              margin-bottom: 11px;
            }
          }
        }

        h3 {
          font-size: 24px;
          font-weight: 700;
          color: $color-secondary;
          font-family: $font-family-sora;
          margin: 24px 0 0 0;
        }
      }
    }

    .swiper-button-next,
    .swiper-button-prev {
      width: 32px;
      height: 32px;
      right: 76px;
      // top: 225px;

      &::after {
        content: "";
        background-image: url(../../../assets/img/icons/arrow-swiper-right-blue.svg);
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
      }

      @media screen and (max-width: 768px) {
        display: none;
      }
    }

    .swiper-button-prev {
      left: 76px;

      &:after {
        content: "";
        transform: rotate(180deg);
      }
    }

    .swiper-pagination-bullet {
      background: #8da0b9;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      opacity: var(--swiper-pagination-bullet-opacity, 1);
      width: 13.6px;
      height: 11.6px;
      background-image: linear-gradient(to bottom, #0031d4 0%, #4badf7 100%);
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal {
      bottom: -48px;

      @media screen and (max-width:768px) {
        bottom: 0;
      }
    }
  }

  .map-section {
    .map-image {
      position: relative;
      width: 100%;
      height: 598px;

      @media screen and (max-width:768px) {
        height: 385px;
      }

      &:before {
        content: " ";
        background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.96));
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      &.map-orr {
        @media screen and (max-width:768px) {
          height: 526px;
        }
      }
    }

    .map-contents {
      width: 348px;
      height: 174px;
      position: absolute;
      top: 40%;
      left: 0;
      right: 0;
      margin: auto;
      text-align: center;

      @media screen and (max-width:768px) {
        width: 100%;
        padding: 0 12px;
        top: 0;
      }

      h3 {
        font-size: 32px;
        font-weight: 700;
        color: $color-secondary;
        font-family: $font-family-sora;
        margin-bottom: 16px;

        @media screen and (max-width:768px) {
          font-size: 24px;
          margin-bottom: 8px;
        }
      }

      p {
        font-size: 18px;
        font-weight: 500;
        color: $color-dark;
        margin: 0;
      }
    }

    .map-locate {
      padding: 16px 0;
      border-radius: 10px;
      font-size: 24px;
      font-weight: 700;
      font-family: $font-family-sora;
      color: $color-secondary;
      backdrop-filter: blur(140px);
      -webkit-backdrop-filter: blur(140px);
      background-size: contain;
      background-position: center;
      background-image: url(../../../assets/img/enterprise/noise-bg.png), linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(231, 231, 231, 0.99) 0%);
      border: 0.5px solid rgba(0, 0, 0, 0.1);
      width: 190px;
      display: inline-block;
      text-align: center;

      @media screen and (max-width:768px) {
        font-size: 18px;
        width: 158px;
      }

      @media screen and (max-width:320px) {
        width: 140px;
      }

      &.map-1 {
        position: absolute;
        top: 142px;
        left: 386px;

        @media screen and (max-width:1024px) {
          left: 212px;
        }

        @media screen and (max-width:768px) {
          top: 170px;
          left: 16px;
        }
      }

      &.map-2 {
        position: absolute;
        top: 142px;
        right: 386px;

        @media screen and (max-width:1024px) {
          right: 212px;
        }

        @media screen and (max-width:768px) {
          top: 170px;
          right: 16px;
        }
      }

      &.map-3 {
        position: absolute;
        bottom: 234px;
        left: 172px;

        @media screen and (max-width:1024px) {
          left: 24px;
        }

        @media screen and (max-width:768px) {
          bottom: 76px;
          left: 16px;
        }
      }

      &.map-4 {
        position: absolute;
        bottom: 234px;
        right: 172px;

        @media screen and (max-width:1024px) {
          right: 24px;
        }

        @media screen and (max-width:768px) {
          bottom: 76px;
          right: 16px;
        }
      }

      // Aurbis ORR
      &.mapOrr-1 {
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        margin: 0 auto;

        @media screen and (max-width:768px) {
          top: 406px;
          left: 16px;
          margin: 0;
        }
      }

      &.mapOrr-2 {
        position: absolute;
        top: 174px;
        left: 278px;

        @media screen and (max-width:1024px) {
          left: 100px;
        }

        @media screen and (max-width:768px) {
          left: 16px;
        }
      }

      &.mapOrr-3 {
        position: absolute;
        top: 174px;
        right: 278px;

        @media screen and (max-width:1024px) {
          right: 100px;
        }

        @media screen and (max-width:768px) {
          right: 16px;
        }
      }

      &.mapOrr-4 {
        position: absolute;
        top: 372px;
        left: 168px;

        @media screen and (max-width:1024px) {
          top: 340px;
          left: 40px;
        }

        @media screen and (max-width:768px) {
          top: 252px;
          left: 16px;
        }
      }

      &.mapOrr-5 {
        position: absolute;
        top: 372px;
        right: 168px;

        @media screen and (max-width:1024px) {
          top: 340px;
          right: 40px;
        }

        @media screen and (max-width:768px) {
          top: 252px;
          right: 16px;
        }
      }

      &.mapOrr-6 {
        position: absolute;
        bottom: 60px;
        left: 408px;

        @media screen and (max-width:1024px) {
          left: 214px;
        }

        @media screen and (max-width:768px) {
          bottom: 136px;
          left: 16px;
        }
      }

      &.mapOrr-7 {
        position: absolute;
        bottom: 60px;
        right: 408px;

        @media screen and (max-width:1024px) {
          right: 214px;
        }

        @media screen and (max-width:768px) {
          bottom: 136px;
          right: 16px;
        }
      }
    }
  }

  .amenities-section {
    padding: 80px 0 24px 0;

    @media screen and (max-width:768px) {
      padding: 56px 0 0 0;
    }

    h4 {
      color: $secondary-color;
      font-family: $font-family-sora;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 32px;
    }

    .amenities-row {
      .col-lg-5 {
        margin-bottom: 56px;

        @media screen and (max-width: 768px) {
          margin-bottom: 16px;
        }
      }

      .amenities-block {
        gap: 16px;
        padding: 0;

        .amenities-icon {
          img {
            height: 48px;
            width: 48px;
          }
        }

        .amenities-body {
          gap: 8px;
          padding: 0;

          .amenities-title {
            font-family: $font-family-sora;
            font-size: 16px;
            font-weight: 600;

            color: $secondary-color;
            align-self: stretch;
            text-align: left;
          }

          .amenities-description {
            font-family: $font-family-hk;
            font-size: 16px;
            font-weight: 500;

            color: $color-dark;
            align-self: stretch;
            text-align: left;
          }
        }
      }
    }

    .view-more {
      display: none;

      @media screen and (max-width: 768px) {

        display: block !important;
        text-align: center;

        .btn-border-blue {
          width: 156px;
          height: 38px;
          gap: 10px;
          margin: 32px 89px 56px 77px;
          padding: 0px;
          padding-top: 6px;
          border-radius: 40px;
          border: solid 2px $color-primary;
        }
      }
    }
  }

  .perk-section {
    padding: 80px 0;
    background-image: linear-gradient(90deg, #ffffff 58%, #fef8ec 0);

    @media screen and (max-width:768px) {
      padding: 56px 0;
      background-image: none;
    }

    .perks-content {
      h4 {
        font-size: 24px;
        font-weight: 700;
        font-family: $font-family-sora;
        color: $color-secondary;
        margin-bottom: 40px;

        @media screen and (max-width:768px) {
          margin-top: 56px;
          margin-bottom: 32px;
        }
      }

      .perk-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 60px;
        margin-bottom: 16px;

        img {
          width: 48px;
          height: 48px;
          margin-right: 24px;
        }

        .content {
          p {
            font-size: 20px;
            font-weight: 500;
            color: $color-secondary;
            margin-bottom: 0;

          }
        }
      }
    }

    .perk-image {
      height: 560px;
      position: relative;


      @media screen and (max-width: 768px) {
        height: 292px;

        &::after {
          content: "";
          background-color: #fef8ec;
          width: 172px;
          height: 375px;
          position: absolute;
          top: -42px;
          right: -36px;
          z-index: 1;
        }
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        z-index: 2;
        position: relative;

        @media screen and (max-width: 768px) {
          object-position: bottom;
        }
      }
    }
  }

  .other-section {
    background-color: $secondary-color;
    padding: 80px 0;

    @media screen and (max-width: 768px) {
      padding: 56px 0;
    }

    h2 {
      font-family: $font-family-sora;
      font-size: 32px;
      font-weight: bold;
      text-align: left;
      color: #fff;
      margin: 0 0 16px;

      @media screen and (max-width: 768px) {
        font-size: 24px;
        margin: 0 0 24px;
      }
    }

    p {
      opacity: 0.8;
      font-family: $font-family-hk;
      font-size: 16px;
      font-weight: 500;
      margin: 0 0 48px;
      text-align: left;
      color: #fff;

      @media screen and (max-width:768px) {
        margin: 0 0 32px 0;
      }
    }

    img {
      width: 100%;
      height: 285px;
      margin: 0 0 16px;
      border-radius: 8px;
      object-fit: cover;

      @media screen and (max-width: 768px) {
        width: 100%;
        height: 212px;
      }
    }

    h4 {
      font-family: $font-family-sora;
      font-size: 24px;
      font-weight: bold;
      text-align: left;
      color: #fff;
      margin: 0;

      @media screen and (max-width: 768px) {
        // margin: 0 88px 16.2px 0;
      }
    }

    h5 {
      margin: 8px 0 32px 0;
      font-family: $font-family-hk;
      font-size: 18px;
      font-weight: 500;
      text-align: left;
      color: #ffffff;

      @media screen and (max-width: 768px) {
        margin: 16.2px 0 24.8px;
      }
    }
  }
}