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

#navigation {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 15;
  background-color: rgba(0, 183, 255, 0);
  color: rgba(21, 21, 21, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 0 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02rem;
}

.poppins {
  font-family: var(--font-poppins);
}

.embla {
  margin: auto;
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 100%;
}
.embla__viewport {
  overflow: hidden;
}
.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
.embla__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
}
.embla__slide__number {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  border-radius: 1.8rem;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--slide-height);
  user-select: none;
}
.embla__controls {
  position: absolute;
  top: 50%;
  right: 100px; /* Adjust the horizontal spacing as needed */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Align items vertically */
  align-items: center; /* Center the buttons horizontally */
  gap: 10px; /* Adjust the space between the buttons */
}

.embla__button {
  appearance: none;
  border: 3px solid #fcfcfc; /* main blue color border */
  touch-action: manipulation;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: #fdfdfd; /* main blue color for text */
  font-size: 1.2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background-color: transparent; /* make background transparent */
}

.embla__button:hover {
  border-color: #005066; /* darken the border color on hover */
  transform: scale(1.1); /* slightly enlarge on hover */
}

.embla__button:disabled {
  border-color: #dcdcdc; /* disable border color */
  color: #dcdcdc; /* disable text color */
  cursor: not-allowed; /* indicate it's disabled */
}
.embla__button__svg {
  width: 50%;
  height: 50%;
  fill: currentColor;
}

.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: calc((2.6rem - 1.4rem) / 2 * -1);
}
.embla__dot {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.embla__dot:after {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(0, 142, 123, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: "";
}
.embla__dot--selected:after {
  background-color: rgba(
    0,
    142,
    123,
    0.9
  ); /* Light color for the selected dot */
  box-shadow: inset 0 0 0 0.2rem var(--text-body);
}
.embla__progress {
  border-radius: 1.8rem;
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  background-color: rgba(59, 131, 119, 0.278);
  position: relative;
  height: 0.6rem;
  justify-content: center;
  align-items: center;
  width: 24rem;
  max-width: 90%;
}

.embla__progress__bar {
  background-color: #006d84;
  height: 100%;
  border-radius: inherit;
  transition: width 0.3s ease-out;
}

/***********************************/

.embla01 {
  max-width: 48rem;
  margin: auto;
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 50%;
}

.embla02 {
  max-width: 100rem;
  margin: auto;
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 100%;
  --slide-spacing-sm: 0.6rem;
  --slide-size-sm: 50%;
  --slide-spacing-lg: 0.5rem;
  --slide-size-lg: calc(100% / 4);
}
.embla__viewport02 {
  overflow: hidden;
}
.embla__container02 {
  backface-visibility: hidden;
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
@media (min-width: 750px) {
  .embla__container02 {
    margin-left: calc(var(--slide-spacing-sm) * -1);
  }
}
@media (min-width: 1200px) {
  .embla__container02 {
    margin-left: calc(var(--slide-spacing-lg) * -1);
  }
}
.embla__slide02 {
  min-width: 0;
  flex: 0 0 var(--slide-size);
  padding-left: var(--slide-spacing);
}
@media (min-width: 750px) {
  .embla__slide02 {
    flex: 0 0 var(--slide-size-sm);
    padding-left: var(--slide-spacing-sm);
  }
}
@media (min-width: 1200px) {
  .embla__slide02 {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}
.embla__slide__number02 {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  border-radius: 1.8rem;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--slide-height);
  user-select: none;
}

.card {
  box-shadow: 0 10px 20px rgba(78, 77, 77, 0.2),
    0 10px 20px rgba(72, 72, 72, 0.19);

  border-radius: 16px;
}

@layer base {
  :root {
    --radius: 0.5rem;
  }
}
