@font-face {
  font-family: 'SFPro';
  src: url('../fonts/SF-Pro-Display-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFPro';
  src: url('../fonts/SF-Pro-Display-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFPro';
  src: url('../fonts/SF-Pro-Display-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'SFPro', sans-serif;
}

html {
  scroll-behavior: smooth;
}

.button {
  border-top: 1px solid rgb(181, 222, 255);
  border-radius: 25px;
  box-shadow: inset 0px 8px 4px 0px rgba(38, 38, 38, 0.33);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgb(0, 111, 255),
    rgb(0, 41, 205) 100%
  );
}

.custom-bullet {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: #464646;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.custom-bullet-active {
  background-color: #d9d9d9 !important;
}

.bg-dark-radial {
  background: radial-gradient(
    59.14% 59.14% at 50% 50%,
    rgba(0, 0, 0, 0) 0%,
    #000000 100%
  );
}

.bg-light-radial {
  background: radial-gradient(
    59.14% 59.14% at 50% 50%,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 100%
  );
}

.small-star {
  fill: #0051ff !important;
}

.custom-html-styles {
  max-width: 100%;
}

.custom-html-styles h1,
.custom-html-styles h2,
.custom-html-styles h3 {
  @apply text-[25px] font-medium leading-[145%] tracking-[0.5%];
}

.custom-html-styles h4 {
  @apply text-[20px] font-medium leading-[145%] tracking-[0.5%] pt-[30px] dark:text-[#858A8E] text-[#42515C];
}
.custom-html-styles p {
  @apply text-[18px] dark:text-[#858A8E] text-[#42515C] font-normal leading-[135%] tracking-[0.5%] pt-[30px];
}

.custom-html-styles hr {
  @apply my-[30px] dark:text-[#1f1f1f] text-[#d3d3d3];
}

.custom-html-styles ul {
  @apply text-[18px] flex flex-col dark:text-[#858A8E] text-[#42515C] font-normal leading-[135%] tracking-[0.5%] pt-[30px] gap-[30px];
}

.custom-html-styles ol {
  list-style-type: disc;
  @apply text-[18px] flex flex-col dark:text-[#858A8E] text-[#42515C] font-normal leading-[135%] tracking-[0.5%] pt-[30px] gap-[30px];
  padding-left: 1.5rem;
}

.custom-html-styles img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.table-scroll-container {
  max-height: 330px;
  max-width: 640px;
  width: 100%;
  overflow-y: auto;
  position: relative;
  padding-right: 30px;
}

.table-scroll-container::-webkit-scrollbar {
  width: 9px;
  background: #eeeeee;
  border-radius: 25px;
  border: 1px solid #d3d3d3;
}

.dark .table-scroll-container::-webkit-scrollbar {
  width: 9px;
  background: #111111;
  border-radius: 25px;
  border: 1px solid #1d1d1d;
}

.table-scroll-container::-webkit-scrollbar-track {
  background: transparent;
  margin: 0 30px 0 0;
}

.table-scroll-container::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 25px;
}

.table-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #000;
  border-radius: 25px;
}

.dark .table-scroll-container::-webkit-scrollbar-thumb {
  background: #fff;
}

@media (max-width: 768px) {
  .table-scroll-container {
    scrollbar-width: none;
    padding-right: 0;
    max-height: 158px;
  }

  .table-scroll-container::-webkit-scrollbar {
    display: none;
  }
}

.scrollbar-hidden::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.scrollbar-hidden {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-scroll-container {
  width: 100%;
  overflow-y: auto;
  position: relative;
  margin: 30px 20px 35px 0;
}

.modal-scroll-container::-webkit-scrollbar {
  width: 9px;
  background: #eeeeee;
  border-radius: 25px;
  border: 1px solid #d3d3d3;
}

.dark .modal-scroll-container::-webkit-scrollbar {
  width: 9px;
  background: #111111;
  border-radius: 25px;
  border: 1px solid #1d1d1d;
}

.modal-scroll-container::-webkit-scrollbar-track {
  background: transparent;
  margin: 0 30px 0 0;
}

.modal-scroll-container::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 25px;
}

.modal-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #000;
  border-radius: 25px;
}

.dark .modal-scroll-container::-webkit-scrollbar-thumb {
  background: #fff;
}

@layer utilities {
  @keyframes move-btn {
    from {
      transform: translateX(-100px);
    }
    to {
      transform: translateX(100px);
    }
  }

  .animate-move-btn {
    animation: move-btn 2s infinite ease-in-out alternate;
  }
}

.carousel-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background: #000;
}

.dark .carousel-pagination .swiper-pagination-bullet {
  background: #d9d9d9;
}

.carousel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.marquee__inner {
  display: flex;
  gap: 25px;
  width: max-content;
  flex-shrink: 0;
  align-items: center;
  animation: marquee 460s infinite;
}

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

.reviews {
  animation: reviews 60s linear infinite;
}
.reviews-reverse {
  animation: reviews-reverse 80s linear infinite;
}

@keyframes reviews {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes reviews-reverse {
  0% {
    transform: translateY(-90%);
  }
  100% {
    transform: translateY(0%);
  }
}
