// >>-- 100 Landing css start --<<
:root {
  --primary-gradient: linear-gradient(
                  50deg,
                  rgba(var(--primary), 1) 10%,
                  rgba(var(--danger), 1) 50%,
                  rgba(var(--warning), 1) 100%
  );
  --secondary-gradient: linear-gradient(
                  50deg,
                  rgba(var(--primary), 1) 30%,
                  rgba(var(--success), 1) 50%,
                  rgba(var(--primary), 1) 100%
  );
  --dark-gradient: linear-gradient(
                  50deg,
                  rgba(var(--primary), 1) 30%,
                  rgba(var(--dark), 1) 50%,
                  rgba(var(--primary), 1) 100%
  );
  --landing-dark: 32, 35, 53;
  --body-bg-gradient: linear-gradient(
                  50deg,
                  rgba(var(--primary), 0.09) 10%,
                  rgba(var(--white), 1) 50%,
                  rgba(var(--primary), 0.09) 100%
  );
  --app-gradient: linear-gradient(
                  50deg,
                  rgba(var(--primary), 1) 20%,
                  rgba(var(--success), 1) 30%,
                  rgba(var(--primary), 1) 50%,
                  rgba(var(--warning), 1) 100%
  );
  --primary-gradient-color: linear-gradient(
                  45deg,
                  rgba(var(--primary), 1) 10%,
                  rgba(var(--primary), .6) 50%,
                  rgba(var(--primary), .3) 100%
  );

  --light-gray-bg: #f8f8f8;
}

.navbar-brand{
  img{
    filter: drop-shadow(6px 1px 4px rgba(var(--dark), 1));
  }
}

.navbar-toggler {
  filter: brightness(1000);
  border: 0 !important;
}

.highlight-title {
  position: relative;
  font-weight: 800 !important;
  text-transform: capitalize;
  color: rgba(var(--primary), 1);

  &:after {
    content: "";
    width: 100%;
    height: 40px;
    position: absolute;
    top: -22px;
    right: -31px;
  }

}

.landing-wrapper {
  width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;

  &:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    background-image: linear-gradient(rgb(110 110 110 / 10%) 2px, transparent 2px), linear-gradient(90deg, rgb(110 110 110 / 10%) 2px, transparent 2px), linear-gradient(rgba(var(--dark), .1) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--dark), .1) 1px, rgba(229, 229, 247, 0) 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    background-color: rgba(var(--dark), 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    clip-path: ellipse(110% 100% at center 0);
  }

  .landing-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    clip-path: ellipse(110% 100% at center 0);
  }
}

.landing-page {
  max-width: 100%;
  overflow-x: hidden;

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }

  section {
    padding: 4rem 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .box-wrapper-section {
    .container-fluid {
      &.box-wrapper {
        height: 4.5rem;
        background-color: rgba(var(--info), .3);
        border: 1px solid rgba(var(--info), 1);

        .box-wrapper-list {
          display: flex;
          justify-content: center;
          gap: 2rem;
          animation: marquee 20s linear infinite;

          li {
            white-space: nowrap;
            font-size: calc(24px + (28 - 24) * ((100vw - 300px) / (1920 - 300)));
            color: rgba(var(--info), 1);

            font-weight: 600;
            padding: 0.938rem 0;

            &:nth-child(odd) {
              background: rgba(var(--info-dark), 1);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
            }
          }
        }
      }
    }
  }
}

.circle-cursor {
  position: fixed;
  left: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid rgb(var(--primary), 1);
  z-index: 10000;
  opacity: 0.6;
  transform: translate(-50%, -50%);
  pointer-events: none;

  &:after {
    content: "";
    background-color: rgb(var(--primary), 1);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 0;
  }
}

@media (pointer: coarse), (hover: none) {
  .circle-cursor {
    display: none !important;
  }
}

.landing-nav_main {
  padding: 15px 0;

  .logo {
    img {
      padding: 0;
      width: 160px;
    }
  }

  .navbar-collapse {
    .navbar-nav {
      a {
        font-size: 18px;
        padding: 10px 20px !important;
        font-weight: 500;
        color: rgba(var(--white), 1);

        &.active {
          color: rgb(var(--primary), 1);
        }
      }
    }
  }

  &.sticky-top {
    background-color: transparent;
    top: 0;
  }

  &.landing-nav-active {
    transition: var(--appear-transition);
    background-color: rgba(var(--landing-dark));
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.highlight-text {
  position: relative;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(50px + (75 - 50) * ((100vw - 300px) / (1920 - 320)));

  .txt-shadow {
    color: rgba(var(--primary), .2);
    position: absolute;
    top: -4px;
    left: 6px;
    right: 0;
    z-index: -1;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px;
  }

}

.typed-cursor {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-title {
  h2 {
    font-family: var(--font-sans);
    color: rgb(var(--dark), 1);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: calc(26px + (36 - 26) * ((100vw - 300px) / (1920 - 320)));
    margin-top: -10px;

    span {
      font-weight: 600;
    }
  }

  p {
    font-size: 16px;
    margin-bottom: 1.8rem;
    color: rgba(var(--dark), 0.75);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

.rotated-circle-text {
  width: 150px;
  height: 150px;
  position: absolute;
  right: 60px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;

  .img-rotated {
    animation: circle-rotate 10s linear infinite;
  }
}

@keyframes circle-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.landing-section {
  position: relative;

  .landing-heading {
    position: relative;
    z-index: 1;

    h1 {
      font-weight: 800;
      color: rgb(var(--light), 1);
      font-size: calc(35px + (60 - 35) * ((100vw - 300px) / (1920 - 320)));
      line-height: calc(45px + (86 - 45) * ((100vw - 300px) / (1920 - 320)));
    }

    p {
      font-size: calc(15px + (25 - 15) * ((100vw - 300px) / (1920 - 320)));
    }

    .landing-vector-shape {
      position: absolute;
      width: 88px;
      right: 85px;
      top: -4px;
      transform: rotate(20deg);
    }
  }

  .landing-content-box {
    margin-top: 2rem;
    .offset-lg-3{
      z-index: -1;
    }

    .counter-box {
      background-color: transparent;
      border: 1px dashed rgba(var(--light), 0.4);
      padding: 10px 20px;
      margin-bottom: 25px;
      border-radius: 5px;

      h6 {
        font-size: calc(22px + (36 - 22) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        margin-bottom: 0;
      }

      p {
        font-size: 16px;
      }
    }
  }
}

.landing-img {
  .img-box {
    img {
      position: absolute;
    }

    .box-img-1 {
      width: 50%;
      max-width: 100%;
      left: -287px;
      bottom: -162px;
      transform: rotate(42deg);
    }


    .box-img-4 {
      width: 50%;
      max-width: 100%;
      right: -287px;
      bottom: -162px;
      transform: rotate(-42deg);
    }
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.language-box {
  width: 100%;
  height: 80px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: -30px;

  .language-box-item {
    a {
      position: relative;

      &:before {
        content: "";
        width: 70px;
        height: 70px;
        position: absolute;
      }

      &:hover {
        &:before {
          animation: spin 50s linear infinite;
        }
      }

      &.primary-box {
        &:before {
          background-color: rgba(var(--primary), 0.1);
          border: 2px dashed rgba(var(--primary), 1);
        }
      }

      &.info-box {
        &:before {
          background-color: rgba(var(--info), 0.1);
          border: 2px dashed rgba(var(--info), 1);
        }
      }

      &.danger-box {
        &:before {
          background-color: rgba(var(--danger), 0.1);
          border: 2px dashed rgba(var(--danger), 1);
        }
      }

      &.warning-box {
        &:before {
          background-color: rgba(var(--warning), 0.1);
          border: 2px dashed rgba(var(--warning), 1);
        }
      }
    }
  }
}

.demos-section {
  //background: var(--light-gray-bg);
  .container {
    border-radius: 15px;
    padding: 4rem 3rem;

    .tab-content {
      margin-bottom: -1.25rem;
    }
  }

  .demos-tab-section {
    .app-tabs-dark {
      width: 100%;
      margin: 0;
      padding: 0;
      border: none;
      justify-content: center;
    }

    .nav-tabs {
      .nav-item {
        & + {
          .nav-item {
            margin-left: 1rem;
          }
        }
      }

      .nav-link {
        padding: 12px 25px;
        font-size: 18px;
        justify-content: flex-start;
        align-items: baseline;
        white-space: nowrap;
        margin: 8px 0;
        border-radius: 25px;
        //background-color: rgb(var(--secondary), 0.1);
        border: 1px solid rgba(var(--secondary), 0.4);
        color: rgb(var(--secondary), 1) !important;

        &.active {
          background-color: rgb(var(--primary), 0.1) !important;
          color: rgb(var(--primary), 1) !important;
          border: 1px solid rgba(var(--primary), 0.4) !important;
        }

        &:hover {
          transition: var(--app-transition);
          border: 1px solid rgba(var(--primary), 1);
        }

        i {
          font-size: 20px;
        }
      }
    }
  }

  .demo-card {
    border-radius: 1rem;
    box-shadow: none;
    border: 1px solid rgba(var(--secondary), 0.4);
    overflow: hidden;

    &:hover {
      transform: translateY(-2px);
      transition: var(--app-transition);
      border: 1px solid rgba(var(--primary), 1);
      box-shadow: rgba(var(--primary), 0.2) -4px 13px 15px;
    }

    .card-body {
      padding: 0;
    }

    .demo-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1rem;
    }

    h6 {
      font-weight: 600 !important;
      color: rgba(var(--dark), 0.9);
    }

    img {
      width: 100%;
    }
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.features-section {
  background: var(--light-gray-bg);

  .row {
    &:nth-child(2) {
      .row {
        --bs-gutter-y: 1rem;
      }
    }
  }

  .features-list {
    li {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;

      h5 {
        font-weight: 600;
        color: rgb(var(--dark), 0.75);
      }

      .features-icon {
        box-shadow: var(--box-shadow);
        transition: var(--app-transition);
        background-color: transparent;
        border: 1px solid rgba(var(--dark), 0.2);
        padding: 1rem;
        border-radius: 20px;
        width: 100%;

        &:hover {
          box-shadow: var(--hover-shadow);
          transform: translateY(-10px);
        }
      }

      .features-content {
        margin-top: 1rem;

        .badge {
          font-size: 0.75rem;
          padding: 0.25rem 1rem;
          max-width: 100%;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }
      }
    }
  }
}

.faq-section {
  background: rgba(var(--landing-dark));

  h2 {
    color: rgba(var(--white), 1);
  }

  .container {
    .card-boxs {
      text-align: center;
      margin-bottom: 1.25rem;
      transition: var(--app-transition);
      background-color: transparent !important;
      border: 1px solid rgba(var(--secondary), 0.4);
      padding: 1.5rem;
      border-radius: 15px;
      width: 100%;
      position: relative;

      .icon-boxs {
        margin-bottom: 14px;

        i {
          font-size: 50px;
          background: var(--primary-gradient);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }
      }

      .box-content {
        h4 {
          font-weight: 600;
          color: rgba(var(--light), 1);
        }

        p {
          color: rgba(var(--light), 0.75);
          margin-top: 10px;
        }

        a {
          margin-top: 1rem;
          text-align: start;
        }

        .btn {
          padding: 12px 25px;
          border-radius: 10px;
        }
      }
    }

    .landing-accordion {
      .accordion-item {
        background: transparent;
        border: none;

        &:last-child {
          .accordion-button {
            margin-bottom: 0;
          }
        }

        .accordion-button {
          padding: 15px 25px;
          font-size: 16px;
          justify-content: flex-start;
          align-items: baseline;
          margin: 15px 0;
          border-radius: 8px;
          //background-color: rgba(var(--light),.2);
          background-color: transparent !important;
          color: rgb(var(--light), 1) !important;
          border: 1px solid rgba(var(--light), 0.2);
        }

        .accordion-button[aria-expanded="true"] {
          //background-color: transparent !important;
          color: rgb(var(--light), 1) !important;
          border: 1px solid rgba(var(--light), 0.4) !important;
          background-color: rgba(var(--light), 0.1) !important;
        }

        .accordion-body {
          p {
            font-size: 16px;
            color: rgb(var(--light), 0.8);
          }
        }
      }
    }
  }
}

@keyframes slideUp {
  0% {
    transform: translate3d(0px, 0px, 0px);
  }
  100% {
    transform: translate3d(0px, -100%, 0px);
  }
}

@keyframes slideDown {
  0% {
    transform: translate3d(0px, -100%, 0px);
  }
  100% {
    transform: translate3d(0px, 0px, 0px);
  }
}

.card-section {
  position: relative;
  overflow: hidden;

  .container {
    .slider-container {
      display: flex;
      justify-content: space-evenly;
      overflow: hidden;
      background-color: rgb(var(--primary), 0.05);
      border-radius: 10px;

      .slider-container-box {
        max-height: 600px;
        // padding: 1rem;
        //transform: rotate(16deg);
        min-width: 380px;

        .slider-slideUp {
          animation: slideUp 25s linear 0s infinite;
        }

        .slider-slideDown {
          animation: slideDown 25s linear 0s infinite;
        }
      }
    }

    .card-section-right {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 50%;
      // overflow: hidden;
      height: 100%;
    }

    .card-details-list {
      li {
        position: relative;
        font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        color: rgb(var(--dark), 0.8);
        padding: 0.5rem 2rem;

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

        &:before {
          font-family: "tabler-icons" !important;
          content: "\f704";
          position: absolute;
          left: 0;
          top: 6px;
          font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
          color: rgb(var(--primary), 1);
        }
      }
    }
  }
}

.element-section {
  background: var(--light-gray-bg);

  .container {
    border-radius: 15px;


    .element-card {
      background-color: transparent;
      padding: 20px 30px;
      border-radius: var(--bs-border-radius);
      transition: var(--app-transition);
      border: 1px solid rgba(var(--secondary), 0.2);

      .link-btn {
        display: block;
        text-align: end;
        text-decoration: underline !important;
        text-underline-offset: 4px;
        transition: var(--app-transition);

        &:hover {
          text-decoration: none !important;
        }
      }

      .element-icons {
        i {
          font-size: calc(40px + (50 - 40) * ((100vw - 300px) / (1920 - 300)));
          background: var(--primary-gradient);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        &.icons-secondary {
          i {
            background: var(--secondary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
          }
        }

        &.icons-dark {
          i {
            background: var(--dark-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
          }
        }
      }

      .element-content {
        margin-top: 0.75rem;
        padding: 0 0.75rem;

        h4 {
          font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
          color: rgb(var(--dark), 0.9);
          font-weight: 600;
        }

        p {
          color: rgb(var(--secondary), 1);
          font-size: 15px;
          margin-top: 0.5rem;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
        }

        a {
          border-radius: 25px;
          vertical-align: middle;
        }
      }
    }
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-0);
  }
}

@keyframes marqueeAnimated {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.dark-section {
  overflow: hidden;
  position: relative;
  background-color: rgba(var(--landing-dark));
  z-index: 1;

  .slider-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.875rem;

    .slider-container-box {
      //max-height: 700px;
      min-width: max-content;
      transition: var(--app-transition);

      .slider-slideLeft {
        animation: slideLeft 60s linear 0s infinite;
      }

      .slider-slideRight {
        animation: slideRight 60s linear 0s infinite;
      }
    }
  }

  .container {
    //padding: 6rem 0;
    .landing-title {
      h2 {
        color: rgba(var(--white), 1);
      }
    }

    .btn {
      padding: 12px 25px;
      border-radius: 25px;
    }
  }
}


.options-section {
  background-color: var(--light-gray-bg);

  .container {
    border-radius: 15px;
  }

  .options-box {
    position: relative;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;

    h4 {
      color: rgb(var(--dark), 1);
      font-weight: 600;
    }

    .option-icon {
      position: absolute;
      width: 50px;
      height: 50px;
      border-radius: 15px;
      background-color: rgb(var(--primary), 0.1);
      color: rgb(var(--primary), 1);
      box-shadow: var(--box-shadow);
      text-align: center;
      line-height: 50px;
      font-size: 1.5rem;
    }

    .option-content {
      padding-left: 3.75rem;

      p {
        font-size: 15px;
        color: rgb(var(--secondary), 1);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
      }
    }
  }

  .sidebar-option-card {
    position: relative;
    overflow: hidden;
    //background-color: rgb(var(--primary), 0.8);
    background-image: linear-gradient(to right, rgb(var(--primary), 0.8), rgb(var(--primary), 0.6), rgb(var(--primary), 0.2));

    img {
      width: 85%;
    }

    h2 {
      position: absolute;
      top: 28px;
      left: -10px;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }

    //&:after {
    //  content: "";
    //  width: 120px;
    //  height: 100%;
    //  right: 0;
    //  position: absolute;
    //  filter: blur(124px);
    //  background: var(--primary-gradient);
    //}
  }

  .layout-option-card {
    position: relative;
    overflow: hidden;
    background-color: rgba(var(--dark), 1);

    svg {
      transform: rotate(160deg);
      position: absolute;
      left: 40px;
    }

    &:after {
      content: "";
      width: 100%;
      height: 120px;
      position: absolute;
      filter: blur(100px);
      background: var(--primary-gradient);
      bottom: -66px;
    }
  }

  .speed-performance-card {
    position: relative;
    overflow: hidden;
    background-color: rgb(var(--success), 0.3);

    .performance-content {
      position: relative;

      .arrow-shape {
        // margin-top: 30px;
        transform: rotate(-20deg);
      }

      .performance-number {
        text-align: center;
        position: absolute;
        right: 60px;
        top: 14px;
        transform: rotate(-20deg);
      }
    }

    &::after {
      content: "";
      position: absolute;
      height: 100%;
      width: 100%;
      //z-index: 0;
      top: 0;
      background-image: linear-gradient(#e9cb64 1px, transparent 1px),
      linear-gradient(to right, #e9cb64 1px, #f5edd2 1px);
      background-size: 50px 50px;
      opacity: 0.2;
      z-index: -1;
    }
  }

  .color-hint-card {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #D7E5A1, #C3D96C);

    .marquee-animated {
      width: max-content;
      animation: marqueeAnimated 20s linear infinite;
    }

    p {
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke-color: rgb(var(--success), 1);
      -webkit-text-stroke-width: 2px;
      font-weight: 700;
      font-size: 60px;
      line-height: 1.4;
      letter-spacing: 2px;
      margin-bottom: 0;
      white-space: nowrap;
    }
  }
}

.plans-section {
  .pricing-cards {
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(var(--success), 1);
    background-color: rgba(var(--white), .3);
    border-radius: var(--app-border-radius);

    &.active {
      border: 2px solid rgba(var(--primary), 1);
      background-color: rgba(var(--primary), .3);

      h2 {
        color: rgba(var(--primary), 1) !important;
      }
    }
  }

  h1 {
    font-size: calc(28px + (40 - 28) * ((100vw - 300px) / (1920 - 300)));
  }

  .pricing-details {
    .price-title {
      //text-align: center;
      p {
        font-size: 18px;
        color: rgb(var(--dark), 0.75);
        font-weight: 500;
      }

      h2 {
        font-size: calc(20px + 20 * (100vw - 300px) / 1600);
        color: rgb(var(--dark), 0.9);
        font-weight: 600;
      }

      .pricing-list-menu {
        width: fit-content;
        //margin-left: auto;
        //margin-right: auto;
        margin-bottom: 1.5rem;

        .pricing-listitem {
          font-size: 16px;
          color: rgb(var(--secondary), 1);
          text-align: start;
          padding: 0.75rem 0;
        }
      }

      .price-btn {
        //margin: 0 1.5rem;
        .btn {
          width: 100%;
          padding: 12px 25px;
          border-radius: 15px;
        }
      }
    }
  }
}

.landing-footer {
  position: relative;
  overflow: hidden;
  background-color: rgb(var(--landing-dark));
  background-image: url("../images/landing/map_bg.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-blend-mode: overlay;

  .container {
    .footer-content {
      h1 {
        font-size: calc(40px + (50 - 40) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        color: rgba(var(--white), 1);
      }

      p {
        max-width: 60%;
        font-size: 18px;
        font-weight: 500;
        color: rgb(var(--light), 1);
        margin: 1rem auto;
      }

      .footer-btn {
        margin-top: 3rem;

        .btn {
          padding: 12px 25px;
          margin: 0.2rem;
          border-radius: 25px;
        }
      }
    }
  }
}

// Responsive css

@media screen and (max-width: 1550px){
  .landing-img {
    .img-box {
      .box-img-1{
        width: 50%;
        max-width: 100%;
        left: -188px;
        bottom: -50px;
        transform: rotate(42deg);
      }
      .box-img-4{
        width: 50%;
        max-width: 100%;
        right: -188px;
        bottom: -50px;
        transform: rotate(-42deg);
      }
    }
  }
}

@media screen and (max-width: 1366px) {
  .landing-section {
    .rotated-text {
      p {
        height: auto;
        position: unset;
        writing-mode: unset;
        transform: unset;
        margin-top: 3rem;
      }
    }
  }
  .landing-section {
    .landing-heading{
      .landing-vector-shape{
        width: 88px;
        right: 10px;
        top: -18px;
      }
    }
  }
}

@media screen and (max-width: 1200px) {
  .landing-section {
    .landing-content-box {
      .counter-box {
        padding: 10px 14px;
      }
    }
  }
  .landing-img {
    height: auto;

    .img-box {
      .box-img-1
      {
        opacity: 0.05;
        width: 100%;
        left: 0;
        bottom: -325px;
        transform: rotate(0);
      }
      .box-img-4{
        display: none;
      }
    }
  }
}

@media screen and (max-width: 1199px) {
  .options-section {
    padding: 0;
  }

  .demos-section {
    .landing-title {
      text-align: center;
    }

    .container {
      padding: 4rem 1rem;
    }
  }
  .box-img-3 {
    display: none;
  }
  .plans-section {
    .pricing-cards {
      padding: 1rem;

      .card-body {
        padding: 1rem 0;
      }
    }
  }
}

@media screen and (max-width: 1024px){
  .landing-nav_main {
    padding: 8px 0;
    .logo{
      img{
        width: 150px;
      }
    }
    .navbar-collapse {
      .navbar-nav {
        a{
          padding: 8px 14px !important;
        }
      }
    }
  }
}

@media screen and (max-width: 991px) {
  .options-section {
    padding-bottom: 0;
    padding-top: 0;
  }

  .landing-section {
    margin-top: -15px;

    .landing-content-box {
      justify-content: center;
    }

    .landing-heading p {
      width: 70%;
      margin: 0 auto;
    }
    .landing-heading {
      .landing-vector-shape{
        right: 100px;
      }
    }
  }

  .landing-wrapper{
     .landing-section{
      height: calc(100vh - 200px);
    }
  }

  .card-section {
    .container {
      // text-align: center;
      .card-section-right {
        opacity: 0.1;
        width: 100%;
        z-index: -1;
      }
    }
  }

  .landing-nav_main {
    &.sticky-top {
      background-color: rgba(var(--landing-dark));
    }
  }

  .landing-img {

    .img-box {
      .box-img-1 {
        opacity: 0.05;
        width: 100%;
        transform: rotate(0deg);
        bottom: -263px;
        left: 0;
      }

      .box-img-4 {
        display: none;
      }
    }
  }

}

@media screen and (max-width: 768px) {
  .featues-section {
    .features-list {
      li:nth-child(even),
      li:nth-child(odd) {
        margin: 2rem 0;
      }
    }
  }
  .footer-content {
    P {
      max-width: 100% !important;
    }
  }
  .dark-section {
    text-align: center;

    .slider-container {
      opacity: 0.1;
      width: 100%;
      z-index: -1;
      position: absolute;
      top: 0;
    }
  }

  .rotated-circle-text {
    margin-top: 0;
    bottom: -10px;

    .img-rotated {
      width: 100px !important;
      height: 100px !important;
    }

    .b-1-primary {
      border: none !important;
    }
  }
  .pricing-cards {
    &.active {
      margin-top: 1rem;
    }
  }
  .landing-wrapper {
    min-height: 100%;

    .landing-section {
      height: 600px;

      .landing-heading {


        .mg-t-60 {
          .btn {
            padding: 0.5rem 0.75rem !important;
            font-size: 14px;
          }
        }

      }

      .landing-img {
        .img-box {
          .box-img-1{
            bottom: 0;
          }
        }
      }
    }
  }
  .landing-heading{
    margin-bottom:-65px;
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 567px) {
  .landing-section {
    .landing-heading {
      p {
        width: 90%;
      }
    }

    .landing-content-box {
      .counter-box {
        padding: 6px;
      }
    }
  }

  .demos-section {
    .nav {
      flex-wrap: nowrap;
      overflow-y: auto;
      justify-content: start !important;
      margin-bottom: 1.25rem !important;
    }
  }
  .featues-section {
    .features-list {
      li {
        .features-icon {
          width: 80px;
          height: 80px;

          img {
            width: 35px !important;
          }
        }
      }
    }
  }

  .faq-section {
    .box-content {
      .btn {
        padding: 8px 14px !important;
        font-size: 13px;
      }
    }
  }

  .element-content {
    a {
      font-size: 14px !important;
      padding: 8px 16px !important;
    }
  }
  .options-section {
    .options-box {
      .option-content {
        padding-left: 0;
        padding-top: 3.75rem;
      }
    }
  }

  .footer-btn {
    .btn {
      padding: 8px 16px !important;
      margin: 0.2rem !important;
    }
  }
  .options-section {
    .sidebar-option-card {
      h2 {
        position: unset;
        writing-mode: unset;
        transform: unset;
        padding: 1rem;
      }
    }
  }

  .pricing-cards {
    & {
      .pricing-cards {
        margin-top: 1rem;
      }
    }
  }
  .landing-nav_main {
    .logo {
      img {
        width: 150px;
      }
    }
  }
  .language-box {
    gap: 1.5rem;

    .language-box-item {
      a {
        width: 40px !important;
        height: 40px !important;

        &:before {
          width: 50px;
          height: 50px;
        }
      }
    }
  }
  .plans-section {
    .pricing-cards {
      padding: 1rem;
    }
  }
  .features-section {
    .features-list {
      li {
        .features-icon {
          padding: 0.5rem;
        }

        .f-s-36 {
          font-size: 28px !important;
        }
      }
    }
  }

  .landing-vector-shape {
    right: 25px !important;
  }

  .landing-heading{
    h1{
      span{
        &:first-of-type{
          display: block !important;
          height: 55px !important;
        }
      }
    }
  }
}


@media screen and (max-width: 480px){
  .landing-section  {
    .landing-heading {
      .landing-vector-shape{
        width: 48px;
        right: 10px !important;
        top: 54px;
      }
    }
  }
}

// >>-- 100 Landing css end --<<
