


* {
  font-family: "Founders Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;

   font-smooth: antialiased;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;


}

body{
  background-color: #F5F2F0;
}

:root {
  --black: #1B1C1E;
  --GreyWhite: #F5F2F0;
  --PureWhite: #FFFFFF;
  --text: #282828;
}


/* Tailwind - hide scrollbars */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}


.scrollbar-hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}


/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


 .carousel::-webkit-scrollbar {
      display: none;
    }


 
 



    .checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkbox-wrapper .terms-label {
  cursor: pointer;
  display: flex;
 
}

.checkbox-wrapper .terms-label .label-text {
  margin-left: 12px;
}

.checkbox-wrapper .checkbox-svg {
  width: 30px;
  height: 30px;
}

.checkbox-wrapper .checkbox-box {
  fill: rgba(207, 205, 205, 0.425);
  stroke: #000;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 0.6s ease-in;
}

.checkbox-wrapper .checkbox-tick {
  stroke: #000;
  stroke-dasharray: 172;
  stroke-dashoffset: 172;
  transition: stroke-dashoffset 0.6s ease-in;
}

.checkbox-wrapper input[type="checkbox"]:checked + .terms-label .checkbox-box,
  .checkbox-wrapper input[type="checkbox"]:checked + .terms-label .checkbox-tick {
  stroke-dashoffset: 0;
}



  
.scroll-div {
  position: fixed;
  padding: 24px 38px;
  
top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}


.scroll-div-header {
  position: fixed;
 
  
top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}


@media (max-width: 768px) {
  .scroll-div {
    
    padding: 16px 40px;
    border-radius: 0px;

    
  }
  
}


@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInRight {
  animation: fadeInRight 0.5s ease-out forwards;
}




  [x-cloak] {
    display: none !important;
  }

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid black;
  background-color: var(--Purewhite);
  color: var(--black);
  border-radius: 9999px;
  transition: transform 0.3s ease;
  cursor: pointer;
  font-family: 'Founders Grotesk', sans-serif;
  line-height: 1;
}

.custom-button:hover {
  transform: scale(1.05);
}

.button-text {
  position: relative;
  top: 1px;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 1.25rem; /* force same height as icon */
}

@media (max-width: 640px) {
  .button-text {
    font-size: 0.875rem;
  }
}

.button-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  object-fit: contain;
  display: block;
}

.custom-button:hover .button-icon {
  transform: rotate(45deg);
}


#slidesContainer {
  display: flex;
  transition: transform 1s ease-in-out; /* smooth sliding */
  will-change: transform;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}
