@import url("./root.css");

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #043B6F;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}

::-webkit-scrollbar-button {
  display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #225280 inset !important;
  -webkit-text-fill-color: #FEFEFEB2 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.h-121 {
  height: 121px !important;

  @media (max-width:768px) {
    height: 100px !important;
  }

  @media (max-width:576px) {
    height: 80px !important;
  }
}

.success-popup {
  position: fixed !important;
  top: 30px;
  right: 30px;
  background-color: #68df1b;
  color: #010101;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-popup.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.logoSwiper {
  .swiper-slide {
    width: fit-content !important;
  }
}

.quick-demo-section {
  padding: 114px 20px;
  background-image: url("/assets/images/webp/quick-demo-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  @media (max-width: 991.98px) {
    padding: 70px 20px;
  }

  .quick-demo-content {
    max-width: 831px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 42px;

    @media (max-width: 575.98px) {
      gap: 40px !important;
    }

    .quick-demo-btn {
      padding: 16px 32px;
      border-radius: 100px;
      line-height: 110%;
      background-color: var(--color-green);
      border: none;
      transition: all 300ms linear;
      font-size: 16px !important;

      &:hover {
        background-color: white;
      }

      @media (max-width: 575.98px) {
        width: 100% !important;
        max-width: 400px;

      }
    }
  }
}

/* secure-complant */
.secure-complant-section {
  padding-top: 120px;
  max-width: 1920px;
  margin: 0 auto;

  @media (max-width: 991.98px) {
    padding: 90px 0;
  }

  .sub-title {
    padding: 0 20px;

    @media (max-width: 575.98px) {
      font-size: 18px !important;
      line-height: 110%;
    }
  }

  .slider-parent {
    margin-top: 30px;

    .logoMarquee {
      overflow: hidden;
    }

    .marquee {
      white-space: nowrap;
      overflow: hidden;
      width: 100%;
    }

    .logos {
      display: inline-block;
      vertical-align: middle;
      margin-right: 40px;

      @media (max-width: 575.98px) {
        margin-right: 50px;
      }
    }
  }
}

.d-xxxl-none {
  @media (max-width:1440px) {
    display: none !important;
  }
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background-color: #043B6F;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  display: none;
  z-index: 9999;

  @media (max-width:576px) {
    width: 40px;
    height: 40px;
  }
}