/* Commons  */

/* Show .desktop only on desktop, hide on mobile */
.desktop {
  display: inline-flex;
}

.mobile {
  display: none !important;
}

@media (max-width: 1024px) {
  .desktop {
    display: none !important;
  }

  .mobile {
    display: inline-flex !important;
  }
}

.black-card {
  position: relative;
  width: 100%;
  min-height: 390px;
  height: auto;
  padding-inline: 30px;
  margin-block: auto;
  border-radius: 15px;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  background: var(--black-gradient);
  overflow: hidden;
  z-index: 0;

  .black-card-content {
    min-height: 310px;
    margin-block: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    z-index: 2;

    button {
      z-index: 5;
    }
  }

  .triangle-svg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
}

/* Hero - Section 1  */
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: var(--spacer-60);
  margin-bottom: var(--spacer-120);
  padding-top: 0;

  .left-container {
    max-width: 66.03%;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border: var(--border-light-blue);
    border-radius: 20px;
    padding-top: var(--spacer-60);
    /* background: var(--section-gradient); */
    background: linear-gradient(175deg, #fff 2.49%, #d8e5f4 96.1%);
    overflow: hidden;

    .hero-content {
      max-width: 500px;
      width: 100%;
      height: auto;
      margin-inline: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: center;
      gap: 16px;
    }

    .hero-grid {
      position: relative;
      height: 268px;
      width: 100%;
      margin-top: -10px;

      .grid1 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        overflow: auto;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-gap: 24px;
      }

      .grid2 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        overflow: auto;
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        grid-gap: 24px;

        .card {
          background: #e8f3ff;
        }
      }

      .grid3 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        overflow: auto;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-gap: 24px;
      }

      .card {
        width: 140px;
        height: 80px;
        border-radius: 10px;
        background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            #f6faff 100%);
      }
    }
  }

  .right-container {
    max-width: 32.07%;
    width: 100%;
    height: auto;

    .black-card {
      min-height: 493px;

      .black-card-content {
        min-height: 348px;
      }
    }
  }

  @media screen and (max-width: 1025px) {
    & {
      gap: 18px;
      margin-bottom: 0;

      .left-container {
        max-width: 100%;
        gap: 22px;
        padding-top: 0;
        align-items: start;
        border-radius: 10px;

        .hero-content {
          flex-direction: column;
          padding: 30px 20px 0;
          gap: 8px;
          text-align: start;
          margin: 0;

          h2 {
            font-size: 28px;
            font-weight: 400;
            line-height: 36px;
          }
        }

        .hero-grid {
          height: 160px;

          .grid1 {
            grid-gap: 12px;
          }

          .grid2 {
            top: 60px;
            grid-gap: 12px;
          }

          .grid3 {
            grid-gap: 12px;
          }

          .card {
            width: 84px;
            height: 50px;
          }
        }
      }

      .right-container {
        max-width: 100%;

        .black-card {
          min-height: 222px;
          border-radius: 10px;

          .black-card-content {
            min-height: 174px;

            h4 {
              font-size: 18px;
              font-weight: 400;
              line-height: 26px;
            }
          }
        }
      }
    }
  }

  @media screen and (min-width: 601px) and (max-width: 1024px) {
    & {
      .left-container {
        .hero-content {
          max-width: 100%;

          h2,
          p {
            width: 100%;
          }
        }
      }

      .right-container {
        .black-card {
          min-height: 154px;

          .black-card-content {
            min-height: 115px;
          }
        }

      }
    }
  }
}

/* Trusted - Section 2   */
.trustedContainer {
  margin-block: var(--spacer-120);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 60px;

  .top-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: start;

    .top-left {
      width: 51.9%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: start;
      gap: 15px;

      &.para-primary {
        padding-bottom: 2rem;
      }
    }

    .top-right {
      width: 40.56%;
      height: auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
      row-gap: 60px;
      column-gap: 24px;

      .stat {
        .stats-top {
          width: 100%;
          height: auto;
          display: flex;
          justify-content: start;
          align-items: center;

          .red-line {
            height: 32px;
            width: 3px;
            background-color: var(--bg-arcon-red);
            margin-right: 12px;
          }
        }
      }
    }
  }

  .bottom-container {
    width: 100%;
    height: auto;
    border: 1px solid var(--bg-grey2);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: start;
    align-items: center;

    .client {
      position: relative;
      max-width: 215px;
      width: 100%;
      height: 85px;
      border-right: 1px solid var(--bg-grey2);

      img {
        position: absolute;
        max-width: 98px;
        width: 100%;
        max-height: 33px;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: grayscale(1);
      }

      &:last-child {
        border-right: 0;
      }
    }
  }

  @media screen and (max-width: 1025px) {
    & {
      margin-block: var(--spacer-60);

      .top-container {
        flex-direction: column;
        gap: 24px;

        .top-left {
          width: 100%;

          h3 {
            font-size: 24px;
            font-weight: 400;
            line-height: 32px;
          }
        }

        .top-right {
          width: 100%;
          row-gap: 20px;
          column-gap: 20px;
        }
      }

      .bottom-container {
        grid-template-columns: repeat(3, 1fr);

        .client {
          border-bottom: 1px solid var(--bg-grey2);
          height: 66px;

          img {
            max-width: 68px;
            width: 100%;
            max-height: 23px;
            height: 100%;
          }

          &:nth-child(3) {
            border-right: 0;
          }

          &:nth-child(4),
          &:nth-child(5),
          &:nth-child(6) {
            border-bottom: 0;
          }
        }
      }
    }
  }


  @media screen and (min-width: 601px) and (max-width: 1024px) {
    & {

      .top-container {
        .top-right {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      .bottom-container {
        .client {
          max-width: 100%;
        }
      }
    }
  }

}

/* Pillars - Section 3  */
.pillars-container {
  background: var(--section-gradient);
  padding-bottom: var(--spacer-120);

  .pillars-main {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: var(--spacer-60);

    .content {
      max-width: 400px;
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-inline: auto;

      .para-primary {
        margin-top: 8px;
      }
    }

    .pillars-cards {
      width: 100%;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;

      .card {
        position: relative;
        width: 100%;
        height: 330px;
        /* height: auto; */
        border: var(--border-light-blue);
        background: var(--bg-white);
        border-radius: 8px;
        padding: 32px 24px;
        overflow: hidden;
        z-index: 2;

        .card-top {
          width: 100%;
          height: auto;
          display: flex;
          justify-content: start;
          align-items: center;
          gap: 16px;
          margin-top: 0;
          opacity: 1;
          transition: margin-top 500ms ease, opacity 500ms ease;

          img {
            width: 70px;
            height: 70px;
            object-fit: cover;
          }
        }

        .para-primary {
          margin-top: var(--spacer-120);
          transition: margin-top 400ms linear;
          color: #747474;
        }

        .gradient-bottom {
          position: absolute;
          width: 100%;
          max-height: 85px;
          height: 100%;
          bottom: 0;
          left: 0;
          background: linear-gradient(0deg,
              #fff 32.74%,
              rgba(255, 255, 255, 0) 92.86%);
          transition: background 300ms ease;
        }

        &:hover {
          border: 1px solid transparent;
          transition: all 0.2s ease-in-out;

          .card-top {
            margin-top: -45px;
            opacity: 0;
            transition: margin-top 500ms ease, opacity 500ms ease;
          }

          .para-primary {
            margin-top: -35px;
            transition: margin-top 400ms linear;
          }

          .gradient-bottom {
            background: linear-gradient(0deg,
                #fff 0%,
                rgba(255, 255, 255, 0) 0%);
            transition: background 300ms ease;
          }

          &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(53deg,
                #8fc3ff 21.4%,
                #a984ff 43.99%,
                #e6323a 78.36%);
            mask: linear-gradient(#1e1e1e 0 0) content-box,
              linear-gradient(#1e1e1e 0 0) padding-box;
            mask-composite: exclude;
            border-radius: 8px;
            transition: background 2000ms ease-in-out, mask 2000ms ease-in-out;
            padding: 1px;
            z-index: -1;
          }
        }
      }
    }
  }

  @media screen and (min-width: 601px) and (max-width: 1024px) {
    & {
      .pillars-main {
        .content {
          max-width: 100%;
        }
      }
    }
  }

  @media screen and (max-width: 1024px) {
    & {
      background: none;
      padding-bottom: 0;

      .pillars-main {
        gap: 32px;

        .content {
          text-align: center;
          align-items: center;

          /* .eyebrow {
            width: 100%;
          } */

          h2 {
            /* width: 100%; */
            text-align: center;
          }
        }

        .pillars-cards {
          display: none;
        }
      }
    }
  }
}

@media screen and (max-width: 1024px) {
  .mobile {
    width: 100%;
    height: 100%;
    margin-top: 32px;

    .pillarsSwiperMobile {
      width: 100%;
      height: 100%;
      padding: 0 24px 20px 24px;

      .swiper-wrapper {
        width: 100%;
        height: 100%;
      }

      .swiper-slide {
        position: relative;
        width: 100%;
        min-height: 100%;
        border: var(--border-light-blue);
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 15px;
        border-radius: 8px;
        overflow: hidden;
        padding: 24px;
        z-index: 9;

        .card-top {
          width: 100%;
          height: auto;
          display: flex;
          justify-content: space-between;
          align-items: center;

          img {
            width: 60px;
            height: 60px;
          }
        }

        .para-primary {
          text-overflow: ellipsis;
          color: var(--text-grey4);
          /* display: -webkit-box;
          overflow: hidden;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 10; */
        }
      }

      .swiper-pagination {
        position: relative !important;
        text-align: start !important;
        margin-top: 24px !important;
      }

      .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0;
        margin-right: 20px;
      }

      .swiper-pagination-bullet {
        position: relative;
        width: 25px !important;
        height: 3px !important;
        border-radius: 5px !important;
        text-align: left;
        /* margin-right: 20px; */
        background-color: var(--bg-light-blue) !important;
        transition: all 0.2s ease;
        opacity: 1 !important;

        i {
          position: absolute;
          bottom: 0;
          left: 0;
          z-index: 1;
          height: 3px !important;
          border-radius: 5px !important;
          background-color: var(--bg-light-blue) !important;
        }

        b {
          position: absolute;
          bottom: 0;
          left: 0;
          z-index: 2;
          height: 3px !important;
          border-radius: 5px !important;
          background-color: rgba(17, 17, 17, 1);
        }
      }

      .swiper-pagination-bullet-active {
        background-color: var(--bg-light-blue) !important;
        width: 68px !important;
        height: 3px !important;
        transition: all 0.2s ease;

        b {
          animation-name: countingBar;
          animation-duration: 5s;
          animation-timing-function: ease-in;
          animation-iteration-count: 1;
          animation-direction: alternate;
          animation-fill-mode: forwards;
        }
      }
    }
  }

  @keyframes countingBar {
    0% {
      width: 0;
    }

    100% {
      width: 100%;
    }
  }
}

/* Global - Section 4  */
.global-section {
  padding-block: var(--spacer-120);
  display: flex;
  flex-direction: column;
  gap: var(--spacer-60);

  .global-content {
    text-align: center;

    .eyebrow {
      color: var(--text-grey2);
    }
  }

  .map {
    position: relative;
    width: 100%;
    height: auto;

    .world-map {
      width: 100%;
      height: auto;

      img {
        width: 100%;
        height: auto;
      }
    }

    .country {
      position: absolute;
      width: fit-content;
      height: auto;

      img {
        width: 114%;
        height: auto;
      }

      .address-container {
        position: absolute;
        width: 250px;
        height: auto;
        top: -110px;
        left: 100px;

        .address {
          position: relative;
          width: 100%;
          height: auto;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: start;
          gap: 8px;
          padding: 14px 16px;
          z-index: 2;
          border-radius: 8px;
          mask: none;
          width: 100%;
          height: auto;
          background: var(--black-gradient);
          overflow: hidden;
          transition: background 2000ms ease, mask 2000ms ease;

          .sub-heading-secondary {
            font-size: 16px;
            color: var(--text-white);
            line-height: normal;
          }

          .add {
            color: #9f9f9f;
            font-size: 12px;
            font-style: normal;
            font-weight: 300;
            line-height: 18px;
          }

          &::before {
            position: absolute;
            content: "";
            z-index: 2;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            padding: 1px;
            border-radius: 8px;
            background: linear-gradient(53deg,
                #8fc3ff 21.4%,
                #a984ff 43.99%,
                #e6323a 78.36%);
            mask: linear-gradient(#1e1e1e 0 0) content-box,
              linear-gradient(#1e1e1e 0 0) padding-box;
            mask-composite: exclude;
            transition: background 2000ms ease, mask 2000ms ease;
          }
        }
      }
    }

    .circle {
      position: absolute;
      cursor: pointer;
      z-index: 2;

      .outer-circle {
        position: relative;
        width: 25px;
        height: 25px;
        border: 1px solid var(--bg-white);
        background: transparent;
        backdrop-filter: blur(10px);
        /* padding: 5px; */
        border-radius: 50%;
        transition: all 300ms ease;

        .inner-circle {
          position: absolute;
          width: 12.5px;
          height: 12.5px;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          /* margin: -7px 0px 0px -7px; */
          background: var(--bg-white);
          border-radius: 50%;
          transition: all 300ms ease;
        }
      }

      &.active {
        .outer-circle {
          border: 1px solid var(--bg-arcon-red);
          backdrop-filter: blur(2px);
          transition: all 300ms ease;

          .inner-circle {
            background: var(--bg-arcon-red);
            transition: all 300ms ease;
          }
        }
      }
    }

    .uae {
      top: 49%;
      left: 60%;
      transform: translate(60%, 43%);
      z-index: 5;

      .circle {
        top: 10%;
        left: 32%;

        .inner-circle {
          /* margin: -7px 0px 0px -8px; */
        }
      }
    }

    .saudi {
      top: 40%;
      left: 53%;
      transform: translate(61%, 47.5%);

      .circle {
        top: 0%;
        left: 5%;

        .inner-circle {
          /* margin: -8px 0px 0px -7px; */
        }
      }
    }

    .qatar {
      top: 45%;
      left: 60%;
      transform: translate(61%, 47.5%);

      .circle {
        top: 0%;
        left: 5%;

        .inner-circle {
          /* margin: -8px 0px 0px -7px; */
        }
      }

      @media screen and (max-width: 1024px) {
        & {
          .circle {
            left: -5%;
          }
        }
      }
    }

    .india {
      top: 34%;
      left: 62%;
      transform: translate(47.5%, 49%);

      .circle {
        bottom: 37%;
        right: 50%;
      }
    }

    .australia {
      top: 55%;
      left: 73%;
      transform: translate(37.5%, 45.5%);

      .address-container {
        top: 88px;
        left: -184px;
      }

      .circle {
        bottom: 56%;
        right: 32%;

        .inner-circle {
          /* margin: -8px 0px 0px -7px; */
        }
      }
    }

    .germany {
      top: 21%;
      left: 48%;
      transform: translate(50.5%, 49.5%);

      .circle {
        top: 22%;
        right: 0%;

        .inner-circle {
          /* margin: -7px 0px 0px -8px; */
        }
      }
    }

    .nigeria {
      top: 52%;
      left: 47%;
      transform: translate(42%, 50%);

      .address-container {
        top: -87px;
        left: -257px;
      }

      .circle {
        top: 22%;
        right: 0%;
      }
    }

    .singapore {
      top: 55%;
      right: 25%;
      transform: translate(45%, 49%);

      .address-container {
        top: -134px;
        left: 38px;
      }

      .circle {
        top: 4%;
        right: 23%;

        .inner-circle {
          /* margin: -8px 0px 0px -8px; */
        }
      }
    }

    .sa {
      bottom: 22%;
      left: 47%;
      transform: translate(48%, 50%);

      .address-container {
        top: 50px;
        left: 92px;
      }

      .circle {
        top: 23%;
        right: 23%;

        .inner-circle {
          /* margin: -7px 0px 0px -8px; */
        }
      }
    }

    .brazil {
      bottom: 27%;
      left: 24%;
      transform: translate(44%, 49%);

      .address-container {
        top: 67px;
        left: -210px;
      }

      .circle {
        top: 23%;
        right: 23%;

        .inner-circle {
          /* margin: -8px 0px 0px -8px; */
        }
      }
    }

    .canada {
      top: 1%;
      left: 10%;
      transform: translate(0%, 0.5%);
      z-index: 6;

      .address-container {
        top: -54px;
        left: -113px;
        z-index: 99;
      }

      .circle {
        top: 42%;
        left: 45%;

        .inner-circle {
          /* margin: -8px 0px 0px -8px; */
        }
      }
    }

    .usa {
      top: 14%;
      left: 2%;
      transform: translate(-2.5%, 3.5%);

      .address-container {
        top: 194px;
        left: 0px;
      }

      .circle {
        bottom: 25%;
        right: 29%;

        .inner-circle {
          /* margin: -7px 0px 0px -7px; */
        }
      }
    }

    .malaysiya {
      top: 58%;
      right: 20%;
      transform: translate(35%, 46%);

      .address-container {
        top: -128px;
        left: -13px;
      }

      .circle {
        bottom: 36%;
        right: -8%;

        .inner-circle {
          /* margin: -7px 0px 0px -8px; */
        }
      }
    }

    .uk {
      top: 24%;
      left: 44%;
      transform: translate(28%, 40%);

      .address-container {
        top: -130px;
        left: 0px;
      }

      .circle {
        bottom: 6%;
        right: -19%;
      }
    }

    .newzeland {
      bottom: 9%;
      right: 5%;
      transform: translate(38%, 32%);

      .address-container {
        top: 62px;
        left: -163px;
      }

      .circle {
        bottom: 6%;
        right: -19%;
      }
    }
  }

  @media screen and (max-width: 1024px) {
    & {
      overflow: visible;
      position: relative;
      max-width:100%;

      &.container {
        /*margin-inline: 0;*/
         /*padding-inline: 0;*/

        .global-content {
          margin-inline: 24px;

          .mobile {
            display: block !important;
            color: var(--text-grey3);
            line-height: normal;
            margin-top: 12px;
          }
        }

        .map-container {
          width: 100%;
          height: 100%;
          overflow-x: scroll;
          scroll-behavior: smooth;
          -webkit-overflow-scrolling: touch;
          scroll-snap-type: x mandatory;

          .map {
            position: relative;
            width: max-content;
            min-width: 100%;

            .world-map {
              width: max-content;
            }

            .country {
              scroll-snap-align: center;

              img {
                width: 100%;
              }
            }

            .canada {
              transform: translate(-0.5%, 0.5%);
            }

            .brazil {
              transform: translate(38%, 50%);
            }

            .uk {
              transform: translate(23%, 40%);
            }

            .germany {
              transform: translate(42.5%, 49.5%);
            }

            .nigeria {
              transform: translate(34%, 49%);
            }

            .sa {
              transform: translate(40%, 50%);
            }

            .saudi {
              transform: translate(53%, 47.5%);
            }

            .uae {
              transform: translate(51%, 33%);
            }

            .india {
              transform: translate(40.5%, 49%);
            }

            .singapore {
              transform: translate(51%, 48%);
            }

            .malaysiya {
              transform: translate(42%, 44%);
            }

            .australia {
              transform: translate(32.5%, 44.5%);
            }

            .newzeland {
              transform: translate(46%, 32%);
            }
          }
        }

        .mobile-address-container {
          /* position: absolute; */
          width: 250px;
          height: auto;
          /* bottom: 0; */
          /* left: 50%; */
          /* transform: translateX(-50%); */
          /* margin-bottom: var(--spacer-120); */
          margin-inline: auto;
          display: none;

          .address {
            position: relative;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
            gap: 8px;
            padding: 14px 16px;
            z-index: 2;
            border-radius: 8px;
            mask: none;
            width: 100%;
            height: auto;
            background: var(--black-gradient);
            overflow: hidden;
            transition: background 2000ms ease, mask 2000ms ease;

            .sub-heading-secondary {
              font-size: 16px;
              color: var(--text-white);
              line-height: normal;
            }

            .add {
              color: #9f9f9f;
              font-size: 12px;
              font-style: normal;
              font-weight: 300;
              line-height: 18px;
            }

            &::before {
              position: absolute;
              content: "";
              z-index: 2;
              width: 100%;
              height: 100%;
              top: 0;
              left: 0;
              padding: 1px;
              border-radius: 8px;
              background: linear-gradient(53deg,
                  #8fc3ff 21.4%,
                  #a984ff 43.99%,
                  #e6323a 78.36%);
              mask: linear-gradient(#1e1e1e 0 0) content-box,
                linear-gradient(#1e1e1e 0 0) padding-box;
              mask-composite: exclude;
              transition: background 2000ms ease, mask 2000ms ease;
            }
          }
        }
      }
    }
  }
}

/* Meet the Team  - Section 5 */
.team-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--spacer-120);

  .left-container {
    max-width: 74.5%;
    width: 100%;
    height: 100%;
    min-height: 390px;
    padding-block: 28px;
    padding-inline: 30px;
    background: var(--section-gradient);
    border: var(--border-light-blue);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

    .left-content {
      max-width: 552px;
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: start;

      .text-para {
        color: #1A1A1A;
        font-family: Sora;
        font-size: 24px;
        font-style: normal;
        font-weight: 300;
        line-height: 40px;

        span {
          font-weight: 600;
        }
      }

      .author {
        margin-top: 43px;

        h4 {
          color: var(--text-black-primary);
          font-weight: 400;
          line-height: 24px;
        }

        .eyebrow {
          font-weight: 400;
          margin-top: 4px;
         color: var(--text-grey3);
        }
      }
    }

    .right-content {
      max-width: 264px;
      width: 100%;
      height: 331px;
      border-radius: 10px;
      overflow: hidden;

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

  .right-container {
    max-width: 23.5%;
    width: 100%;
    height: auto;
  }

  @media screen and (max-width: 1024px) {
    & {
      flex-direction: column;
      gap: 20px;
      padding-block: var(--spacer-60);

      .left-container {
        max-width: 100%;
        width: 100%;
        padding: 16px;
        gap: 24px;
        flex-direction: column-reverse;

        .left-content {
          .text-para {
            font-size: 18px;
            line-height: 28.8px;
          }

          .author {
            .eyebrow {
              font-weight: 300;
              margin-top: 4px;
            }
          }
        }

        .right-content {
          max-width: 100%;
          width: 100%;
          height: 270px;
          overflow: hidden;

          img {
            object-fit: cover;
            object-position: top;
          }
        }
      }

      .right-container {
        max-width: 100%;
        width: 100%;

        .black-card {
          min-height: 225px;
          padding-inline: 24px;

          .black-card-content {
            min-height: 176px;

            h3 {
              font-size: 24px;
              font-weight: 400;
              line-height: 32px;
            }

            /* img {
              width: 24px;
              height: 24px;
            } */
          }
        }
      }
    }
  }

  @media screen and (min-width: 601px) and (max-width: 1024px) {
    & {
      /* flex-direction: row; */

      .left-container {
        flex-direction: row;
      }

      .right-container {
        height: 331px;
      }
    }
  }
}

/* Careers - Section 6  */
.careers-container {
  position: relative;
  width: 100%;
  min-height: 749px;
  height: 100%;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  background: linear-gradient(50deg, #fff 27.21%, #f5faff 72.79%);
  overflow: hidden;

  .bg-grid-container {
    position: relative;
    width: 100%;
    height: 100%;

    .grid1 {
      position: absolute;
      top: 125px;
      left: 50%;
      transform: translateX(-50%);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;

      .grid-card {
        width: 300px;
        height: 355px;
        background-color: blueviolet;
        border-radius: 12px;
        overflow: hidden;

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

      .grid-card:nth-child(1),
      .grid-card:last-child {
        background-color: transparent;
      }
    }

    .grid2 {
      position: absolute;
      top: 221px;
      left: 50%;
      transform: translateX(-50%);
      display: grid;
      grid-template-rows: repeat(2, 1fr);
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;

      .grid-card {
        width: 300px;
        height: 355px;
        background-color: blueviolet;
        border-radius: 12px;
        overflow: hidden;

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

      .grid-card:nth-child(2),
      .grid-card:nth-child(3),
      .grid-card:nth-child(6),
      .grid-card:nth-child(7) {
        background-color: transparent;
      }
    }
  }

  .content-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    .content-bg {
      position: relative;
      max-width: 841px;
      max-height: 372px;

      .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 600px;
        text-align: center;

        .para-primary {
          margin-top: 16px;
        }

        .cta-primary-container {
          width: fit-content;
          margin-inline: auto;
          margin-top: 40px;
        }
      }
    }
  }

  @media screen and (max-width: 1024px) {
    & {
      min-height: 540px;

      .bg-grid-container {
        .grid1 {
          gap: 4px;
          top: 50px;

          .grid-card {
            max-width: 120px;
            max-height: 190px;
          }
        }

        .grid2 {
          gap: 4px;
          top: 112px;

          .grid-card {
            max-width: 120px;
            max-height: 190px;
          }
        }
      }

      .content-container {
        .content-bg {
          max-width: 100%;
          max-height: 361px;
          height: 100%;

          .content {
            top: 55%;
            width: 100%;
            min-width: auto;
            max-width: 303px;

            .para-primary {
              margin-top: 8px;
            }

            .cta-primary-container {
              margin-top: 24px;
            }
          }
        }
      }
    }
  }
}

/* News - Section 7  */
.news-container {
  margin-block: var(--spacer-120);
  display: flex;
  gap: 40px;
  flex-direction: column;

  .sectionTitle {
    width: fit-content;
    height: auto;
    margin: 0 auto;
    text-align: center;

    .sub-heading-secondary {
      max-width: 410px;
      margin-top: 8px;
    }
  }

  .Benchmark-reports {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 600px);
    gap: 60px;

    .report-card {
      max-width: 500px;
      width: 100%;
      max-height: max-content;
      border: var(--border-light-blue);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s ease;

      .report-image {
        display: block;
        max-width: 500px;
        max-height: 300px;
        width: 100%;
        height: auto;
        margin-block: 0;
        border-radius: 0;
        margin-inline: auto;
        overflow: hidden;
        transition: all 0.4s ease;

        img {
          width: 100%;
          height: 100%;
          scale: 1;
          transition: all 0.4s ease;
        }
      }

      .report-content {
        width: 100%;
        height: auto;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 4px;

        .sub-heading {
          color: #7f7f7f;
          text-align: start;
          font-size: 14px;
          font-weight: 400;
          line-height: 24px;
          letter-spacing: 1.12px;
        }

        .cta-secondary {
          color: var(--text-arcon-red);
          margin-top: 53px;
        }
      }

      &:hover {
        background: var(--section-gradient);
        /* transition: all 0.4s ease; */

        .report-image {
          max-width: 470px;
          max-height: 275px;
          margin-top: 16px;
          margin-bottom: 12px;
          border-radius: 10px;
          margin-inline: auto;
          /* transition: all 0.4s ease; */

          img {
            scale: 1.3;
            /* transition: all 0.4s ease; */
          }
        }
      }
    }

    .news-cards {
      display: flex;
      flex-direction: column;
      gap: 25px;
      max-width: 600px;

      .cards {
        &:first-child {
          display: none;
        }

        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        border-bottom: var(--border-light-blue);
        padding-bottom: 25px;

        &:last-child {
          border-bottom: none;
          padding-bottom: 0;
        }

        .news-image {
          max-width: 200px;
          max-height: 140px;
          object-fit: cover;

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
          }
        }

        .news-content {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          width: 60%;

          .cta-secondary {
            color: var(--text-arcon-red);
          }
        }
      }
    }
  }

  @media screen and (max-width: 1024px) {
    & {
      margin-block: var(--spacer-60);

      .sectionTitle {
        text-align: start;
      }

      .Benchmark-reports {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 30px;

        .report-card {
          display: none;
        }

        .news-cards {
          .cards {
            &:first-child {
              display: flex;
            }

            border-bottom: transparent;
            padding-bottom: 0;
            gap: 22px;

            .news-image {
              max-width: 120px;
              max-height: 95px;

              img {
                width: 100%;
                height: auto;
              }
            }

            .news-content {
              gap: 4px;

              .para-secondary {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
              }

              .cta-secondary {
                text-decoration: underline;
                text-underline-offset: 4px;
              }
            }
          }
        }
      }
    }
  }
}

@media screen and (min-width: 810px) and (max-width: 1080px) and (orientation: landscape) {
    .pillars-main .pillars-cards .card {height:428px !important;}
}