.home {
  /* min-height: 100vh; */
  position: relative;
  overflow: hidden;
  padding: 0px 0 75px;

  @media screen and (max-width: 768px) {
    /* min-height: 80vh; */
    /* min-height: auto; */
  }

  @media screen and (max-width: 500px) {
    /* height: 60vh; */
  }

  .home__inner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("https://www.youtube.com/watch?v=aBNK4ReST-E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    video,
    iframe {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      scale: 1.1;
    }
  }

  nav.navbar {
    position: fixed;
    /* width: calc(100% - 280px); */
    z-index: 100;
    top: 32px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 20px;
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(27.5px);
    padding: 32px;

    @media screen and (max-width: 992px) {
      width: calc(100% - 140px);
    }

    @media screen and (max-width: 768px) {
      width: calc(100% - 60px);
      padding: 15px;
    }

    .navbar-nav {
      &:lang(ar) {
        margin-right: 40px;
        margin-left: auto;
      }

      &:lang(en) {
        margin-left: 40px;
        margin-right: auto;
      }

      @media screen and (max-width: 992px) {
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin: 0;
      }

      li.nav-item {
        a.nav-link {
          color: #fff;
          text-transform: capitalize;
          font-size: 16px;
          font-weight: 400;
          position: relative;

          &.active {
            color: #f9722f;
            font-weight: 600;
          }
        }
      }
    }

    .nav__actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;

      @media screen and (max-width: 992px) {
        margin-top: 20px;
      }

      @media screen and (max-width: 992px) {
        flex-flow: column nowrap;
        gap: 20px;
      }

      .nav__actions__lang {
        display: flex;
        height: 48px;
        padding: 8px 12px;
        justify-content: center;
        align-items: center;
        gap: 12px;
        border-radius: 6px;
        background: #333;
        border: none;
        color: #fff;
        text-align: center;

        font-size: 16px;

        font-weight: 400;
        line-height: normal;
        display: none;

        &.active {
          display: flex;
        }
      }
    }

    .nav__actions__contact {
      display: flex;
      /* width: 130px; */
      height: 54px;
      padding: 0px 30px;
      justify-content: center;
      align-items: center;
      gap: 20px;
      border-radius: 6px;
      background: #f9722f;
      border: none;
      color: #fff;
      font-size: 16px;
      font-weight: 400;
      line-height: 30px;
      /* 187.5% */
      text-decoration: none;

      &:lang(ar) {
        margin-right: 16px;
      }

      &:lang(en) {
        margin-left: 16px;
      }

      @media screen and (max-width: 992px) {
        width: 100%;

        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 20px;
      }
    }

    .navbar-toggler {
      border: 1px solid white;
      background-color: #fff;

      &:focus {
        box-shadow: none;
      }
    }
  }

  .home__inner__content {
    /* min-height: calc(100vh - 250px); */

    padding-bottom: 50px;
    padding-top: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    position: relative;
    z-index: 99;

    @media screen and (max-width: 1200px) {
      /* padding-top: 150px; */
      /* min-height: calc(85vh - 150px); */
      padding-top: 200px;
      /* padding-bottom: 200px; */
    }

    @media screen and (max-width: 768px) {
      /* padding-top: 100px; */
      /* min-height: calc(75vh - 150px); */
    }

    @media screen and (max-width: 500px) {
      /* min-height: calc(60vh - 150px); */
    }

    .home__inner__content__right {
      display: flex;
      flex-flow: column nowrap;
      gap: 24px;

      @media screen and (max-width: 768px) {
        gap: 15px;
      }

      .home__inner__content__right__title {
        color: #f9722f;

        font-size: 54px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;

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

      .home__inner__content__right__description {
        color: #fff;

        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        width: 50%;

        @media screen and (max-width: 1200px) {
          width: 80%;
        }

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

      .home__inner__content__right__btn {
        color: #fff;

        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        background-color: transparent;
        border: none;
        display: flex;
        align-items: center;
        gap: 16px;
        width: fit-content;
        transition: all 0.5s ease-in-out;
        text-decoration: none;

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

        &:hover {
          background-color: #ffffff29;
          padding: 8px 23px;
          border-radius: 35px;
        }

        .home__inner__content__right__btn__icon {
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;

          img {
            width: 24px;
            height: 24px;
            background-color: rgba(255, 255, 255, 0.308);
            border-radius: 50%;

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

          &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.308);
            border-radius: 50%;
            animation: pulse 3.5s infinite linear;
            animation-delay: 0.5s;

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

          &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.308);
            border-radius: 50%;
            animation: pulse 3.5s infinite linear;
            animation-delay: 1s;

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

    .home__inner__content__left {
      max-width: 150px !important;

      .home__inner__text__more {
        min-width: fit-content;
        display: flex;
        align-items: center;
        gap: 10px;
        transform-origin: center;
        transform: rotate(-90deg);

        cursor: pointer;

        /* transform: rotate(-45deg); */
        &:lang(ar) {
          flex-flow: row nowrap;
        }

        &:lang(en) {
          flex-flow: row-reverse nowrap;
        }

        .home__inner__text__more__text {
          color: white;
          font-family: Cairo;
          font-size: 14px;
          font-weight: 400;
          display: flex;
          align-items: center;
          /* Align text and line */
          gap: 5px;
          animation: moveText 2s infinite ease-in-out;
          min-width: 100px;
        }

        .home__inner__text__more__line {
          min-width: 40px;
          color: white;
          border: 1px solid;
          position: relative;
          animation: pulseWidth 2s infinite ease-in-out;

          &::after {
            content: "";
            border: solid white;
            padding: 4px;
            bottom: 0;
            position: absolute;
            border-width: 2px 0 0 2px;
            left: 2px;
            transform-origin: bottom right;
            transform: rotate(-45deg);
          }
        }
      }
    }
  }

  .home__inner__img__left {
    position: absolute;
    bottom: 0;
    /* height: 100%; */
    /* width: 100%; */
    z-index: 1;

    &:lang(ar) {
      left: 15px;

    }

    &:lang(en) {
      right: 15px;

    }

    @media screen and (max-width: 1200px) {
      bottom: -50px;

      height: 30px;

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

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

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

  .home__slider {
    display: flex;
    /* align-items: center; */
    /* gap: 20px; */
    /* width: 30%; */
    width: 750px;
    padding-top: 50px;

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

    .home__slider__item {
      /* height: 140px; */
      /* width: 200px !important; */
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      height: 165px;

      @media screen and (max-width: 768px) {
        height: 120px;
        /* aspect-ratio: 1; */
      }

      &::after {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 0;
      }

      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background-image: url(../assets/images/play.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        cursor: pointer;
        z-index: 1;
      }

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

      video {
        width: 100%;
        height: 100%;

        object-fit: cover;
      }
    }
  }
}

.about {
  padding: 140px 0 90px;
  overflow: hidden;

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

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

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

  .about__right {
    display: flex;
    flex-flow: column nowrap;
    gap: 42px;
  }

  .about__right__item {
    display: flex;
    flex-flow: row nowrap;
    gap: 16px;

    .about__right__item__icon {
      display: flex;
      min-width: 54px;
      min-height: 54px;
      width: 54px;
      height: 54px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 6px;
      background: rgba(249, 114, 47, 0.16);

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

    .about__right__item__text {
      display: flex;
      flex-flow: column nowrap;
      gap: 16px;

      .about__right__item__text__title {
        color: #1e1e1e;
        font-size: 32px;
        font-weight: 700;
        text-transform: capitalize;

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

      .about__right__item__text__description {
        color: #1f1f1f;
        font-size: 24px;
        font-weight: 400;

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

  .about__left {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;

    @media screen and (max-width: 600px) {
      height: 400px;
    }

    .about__right__img:nth-child(1),
    .about__right__img:nth-child(4) {
      width: 40%;
      /* height: 320px; */
      height: 50%;
      outline: 6px solid white;
      object-fit: cover;
    }

    .about__right__img:nth-child(2),
    .about__right__img:nth-child(3) {
      width: calc(100% - 40%);
      height: 320px;
      height: 50%;
      outline: 6px solid white;
      object-fit: cover;
    }
  }
}

.services {
  padding: 50px 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 40px;

  .services__items {
    display: flex;
    flex-flow: row wrap;
    gap: 50px;
    min-height: 350px !important;

    .services__items__item {
      display: flex !important;
      width: 525.333px;
      padding: 24px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 16px;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.1);
      transition: all 0.3s linear;

      @media screen and (max-width: 768px) {
        padding: 18px;
        min-height: 240px;
      }

      .services__items__item__icon {
        display: flex;
        width: 64px;
        height: 64px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 8px;
        border: 1px solid #f9722f;
        background: rgba(249, 114, 47, 0.08);

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

          svg {
            width: 30px;
            height: 30px;
          }
        }
      }

      .services__items__item__title {
        color: #1e1e1e;
        text-align: center;

        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;

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

      .services__items__item__description {
        color: #1f1f1f;
        text-align: center;

        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

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

      &:hover {
        background: #f9722f;

        .services__items__item__icon {
          border: 1px solid #fff;
          background: rgba(255, 255, 255, 0.08);

          svg {
            path {
              fill: #fff;
            }
          }
        }
      }
    }
  }
}

.main__title {
  color: #1e1e1e;
  text-align: center;
  text-transform: capitalize;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

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

.why__choose {
  background-image: url(../assets/images/why-choose-back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 100vh; */
  padding: 318px 0;
  overflow: hidden;

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

  /* @media screen and (max-width: 1200px) {
    padding: 200px 0;
  } */
  @media screen and (max-width: 768px) {
    padding: 150px 0;
  }

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

  .why__choose__right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    gap: 16px;

    .why__choose__right__title {
      color: #fff;
      font-size: 42px;
      font-style: normal;
      font-weight: 600;

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

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

    .why__choose__right__description {
      color: #fff;
      font-size: 32px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;

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

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

  .why__choose__left {
    height: fit-content;
    margin: auto;
    border-radius: 16px;
    background: #fff;
    padding: 40px;
    /* display: flex; */
    /* justify-content: space-between; */
    /* flex-flow: row wrap; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: fit-content;
    overflow: hidden;
    position: relative;
    align-items: stretch;

    @media screen and (max-width: 1900px) {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      height: unset;
      width: unset;
    }

    @media screen and (max-width: 1400px) {
      grid-template-columns: repeat(4, 1fr);
    }

    @media screen and (max-width: 1240px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media screen and (max-width: 1240px) {
      display: flex;
    }

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -22px;
      transform: translateY(-50%);
      background-image: url(../assets/images/why-choose-arrow.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      width: 40px;
      height: 40px;
      z-index: -1;
    }

    .why__choose__left__item {
      display: flex !important;
      flex: 1;
      /* width: 200px; */
      width: 176px;
      /* min-width: 200px; */
      /* height: 200px; */
      aspect-ratio: 1;
      /* padding: 40px 20px; */
      padding: 20px;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;

      gap: 20px;
      text-align: center;
      border-radius: 12px;
      border: 1px solid #e4e4e4;

      background: #fff;
      transition: all .3s linear;
      transition-delay: 0s !important;

      .why__choose__left__item__icon {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .why__choose__left__item__title {
        color: #1e1e1e;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
      }

      .why__choose__left__item__description {
        color: #1f1f1f;
        text-align: center;

        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }

      &:hover {
        border: 1px solid #f9722f;
      }
    }

    .slick-dots {
      /* position: relative; */
      bottom: 5px;
    }
  }
}

.our__partner {
  /* padding: 140px 0 100px; */
  padding: 50px 0 50px;
  overflow: hidden;

  @media screen and (max-width: 1500px) {
    padding: 100px 0 80px;
  }

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

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

  .our__partner__items {
    display: flex;
    align-items: center;
    margin-top: 40px;

    .our__partner__items__item {
      display: flex;
      align-items: center;
      justify-content: center;
      /* padding: 20px; */
      border: 1px solid rgba(146, 154, 165, 0.2);
      position: relative;
      border-radius: 8px;
      height: 132px;
      /* padding: 20px; */

      img {
        width: 100%;
        height: 100%;
        filter: grayscale(1);
        transition: all 0.3s ease-in-out;
        object-fit: contain;

        &:hover {
          filter: grayscale(0);
        }
      }

      &::after {
        content: "";
        background-image: url(../assets/images/img-mid-partner.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -75px;
        left: -70;
        z-index: -1;
      }

      @media screen and (max-width: 500px) {
        &::after {
          width: 20px;
          height: 20px;
          left: -35px;
        }
      }
    }
  }

  .slick-slide {
    margin-right: 100px;
    /* Adjust the margin as needed */
  }

  /* To ensure no overflow due to added margins */
  .slick-list {
    margin-right: -100px;
    /* Equal to the margin-right of .slick-slide */
  }

  @media screen and (max-width: 500px) {
    .slick-slide {
      margin-right: 50px;
      /* Adjust the margin as needed */
    }

    /* To ensure no overflow due to added margins */
    .slick-list {
      margin-right: -50px;
      /* Equal to the margin-right of .slick-slide */
    }
  }
}

.contact {
  /* background-image: url(../assets/images/contact-background.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover; */
  /* padding: 237px 0; */
  padding: 150px 0;
  position: relative;
  overflow: hidden;

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

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

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

  .contact__right {
    display: flex;
    flex-flow: column nowrap;
    gap: 16px;

    .contact__right__title {
      color: #1e1e1e;
      font-size: 42px;
      font-weight: 600;

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

    .contact__right__description {
      color: #1e1e1e;
      font-size: 20px;
      font-weight: 400;
      line-height: 30px;

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

    .contact__right__form {
      margin-top: 16px;
      padding: 24px;
      display: flex;
      flex-flow: column nowrap;
      gap: 20px;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08);

      .contact__right__form__item {
        width: 100%;

        .contact__right__form__item__input {
          width: 100%;
          padding: 12px 16px;
          border-radius: 6px;
          border: 1px solid #dedede;
          background: #fff;
          transition: all 0.2s ease-in-out;

          &:focus {
            outline: none;
            /* border: 1px solid rgb(249 114 47 / 100%); */
          }
        }
      }

      .contact__right__form__item__btn {
        width: fit-content;
        display: flex;
        /* width: 130px;
        height: 54px; */
        padding: 10px 40px;
        justify-content: center;
        align-items: center;
        gap: 20px;
        border-radius: 6px;
        background: #f9722f;
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
        border: none;
        align-self: flex-end;

        @media screen and (max-width: 500px) {
          padding: 5px 20px;
        }
      }
    }
  }

  .contact__left {
    border-radius: 16px;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;

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

.footer {
  padding: 64px 0 32px;
  border-top: 0.5px solid rgba(0, 0, 0, 0.25);
  background: #1e1e1e;
  backdrop-filter: blur(30px);

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

  /* @media screen and (max-width: 500px) {
    padding: 50px 0;
  } */



  ul {
    padding: 0;
    margin: 0;

    li {
      list-style: none;

      a {
        color: #fff;
        text-decoration: none;
      }
    }
  }

  .footer__about {
    display: flex;
    flex-flow: column nowrap;
    gap: 16px;
    color: #bababa;

    l .footer__about__img {
      width: 88px;

      img {
        width: 100%;
      }
    }

    .footer__about__description {
      color: #bababa;
      font-size: 16px;
      font-weight: 400;
    }

    .footer__about__social__title {
      color: #fff;

      font-family: "IBM Plex Sans Arabic";
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }

    .footer__about__social__list {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
  }

  .footer__links,
  .footer__contact {
    display: flex;
    flex-flow: column nowrap;
    gap: 16px;
  }

  .footer__title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 16px;
  }

  .footer__list {
    display: flex;
    flex-flow: column nowrap;
    gap: 16px;

    li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
  }





}

.footer__background {
  position: absolute;
  bottom: 0px;
  /* width: 100%;
  height: 100%; */
  z-index: 1;

  &:lang(ar) {
    left: 0px;
  }

  &:lang(en) {
    right: 0px;
    transform: scaleX(-1);
  }
}

.footer__rights {
  background: #1e1e1e;
  backdrop-filter: blur(30px);
  color: #dedede;
  font-size: 14px;
  font-weight: 400;




  .footer__rights__inner {
    display: flex;

    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(146, 154, 165, 0.2);
    padding-top: 32px;
    padding-bottom: 32px;
    padding-inline: 0;

    .footer__rights__img {
      height: 27.6px;
      display: flex;
      justify-content: center;
      align-items: center;

      img {
        height: 100%;
      }
    }


    @media screen and (max-width:900px) {
      flex-flow: column nowrap;
      gap: 20px;

      .footer__rights__img {
        height: 20px;

        img {
          height: 100%;
        }
      }
    }

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

    @media screen and (max-width:500px) {
      gap: 10px;

      .footer__rights__img {
        height: 10px;
      }
    }
  }


}

.coming-soon-label {
  color: white;
  font-size: 12px;
  padding: 3px 10px;
  width: 40px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--Linear, linear-gradient(97deg, #f9722f 0%, #e48150 100%));
}

.coming-soon-label-large {
  color: white;
  font-size: 16px;
  padding: 10px 10px;
  width: 100px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--Linear, linear-gradient(97deg, #f9722f 0%, #e48150 100%));
}

.arrow-label-large {
  border-top: 10px solid transparent;
  border-bottom: 10px solid #f9722f;
  width: 0;
  height: 0;
  position: absolute;
  top: calc(100% - 19px);
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.arrow-label {
  border-top: 6px solid transparent;
  border-bottom: 6px solid #f9722f;
  width: 0;
  height: 0;
  position: absolute;
  top: calc(100% - 11px);
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}