@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Poppins", serif;
  margin: 0;
  line-height: inherit;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
  .hero-btn {
    @apply relative inline-block rounded-full px-12 py-4 text-base font-semibold leading-7 text-white transition duration-150 ease-in-out md:px-[3.75rem] md:py-5;
    background:
      linear-gradient(
        226deg,
        rgba(255, 255, 255, 0.4) -39.51%,
        rgba(255, 255, 255, 0) 92.96%
      ),
      #6360f5;
    box-shadow:
      0 2px 4px 0 rgba(255, 255, 255, 0.15) inset,
      0 4px 12px 0 rgba(68, 4, 179, 0.25);
  }

  .container {
    @apply mx-auto flex w-[95%] max-w-[1200px] flex-1 flex-col items-stretch self-stretch px-[5%] lg:px-[1%];
  }

  .nav-links {
    @apply flex cursor-pointer items-center justify-center gap-1 pr-4 text-sm font-normal capitalize;
  }

  .dropdown-content-list {
    @apply bg-blue flex h-full cursor-pointer flex-row items-center rounded-xl px-4 py-2 text-sm font-semibold capitalize text-white;
  }

  .primary-btn {
    @apply border-blue bg-blue md:hover:border-r-blue md:hover:bg-blue relative inline-block cursor-pointer rounded-3xl border px-4 py-4 text-center text-sm text-white shadow-[0_4px_4px_#3c03385c] transition-all duration-500 sm:px-8 sm:text-base md:hover:shadow-[0_6px_16px_#3c03385c];
  }

  .secondary-btn {
    @apply border-blue text-blue relative inline-block cursor-pointer rounded-3xl border bg-white px-4 py-4 text-center text-sm shadow-[0_4px_4px_#3c03385c] transition-all duration-500 sm:px-8 sm:text-base md:hover:bg-[#ffffffcc] md:hover:shadow-[0_6px_16px_#3c03385c];
  }

  .tertiary-btn {
    @apply relative inline-block cursor-pointer rounded-3xl border border-white bg-transparent px-4 py-4 text-center text-sm text-white shadow-[0_4px_4px_#3c03385c] transition-all duration-500 sm:px-8 sm:text-base;
  }

  .whatsapp-btn {
    @apply flex items-center justify-center rounded-xl bg-[#50D857] px-20 py-2 text-sm font-semibold text-white shadow-[0_4px_4px_#3c03385c] transition-all duration-500 hover:bg-green-600 md:px-4 md:text-base md:hover:shadow-[0_6px_16px_#3c03385c];
  }
}

.horizontal-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* navbar  */

.mobile {
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sidebar-links-wrapper {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  flex-direction: column;
  gap: 1.25rem;
  width: fit-content;
  display: flex;
  margin-top: 3rem;
}

.active-nav {
  opacity: 1;
  display: block;
  transform: translateY(20px);
}

/* .sidebar {
  backdrop-filter: blur(4px);
  text-align: left;
  background-color: #00000033;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 50;
  left: 0px;
  position: fixed;
} */

.sidebar-wrapper {
  padding: 20px 16px;
  background-color: #fafafa;
  flex-direction: column;
  max-width: 1230px;
  width: 85%;
  height: 100%;
  display: flex;
  position: relative;
}

.show-sidebar {
  display: block;
}

.toggle,
.toggle-two {
  width: 100%;
  background-color: transparent;
  align-items: center;
  display: grid;
  grid-template-columns: 2fr 0.2fr;
  justify-content: space-between;
  color: #151515;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
}

.toggle-icon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
}

.content {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #708090;
  font-weight: 400;
}
