/* Geist fonts  */
/* Light */
@font-face {
    font-family: 'Geist';
    src: url('/fonts/Geist/Geist-Thin.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Normal */
@font-face {
    font-family: 'Geist';
    src: url('/fonts/Geist/Geist-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Bold  */
@font-face {
    font-family: 'Geist';
    src: url('/fonts/Geist/Geist-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}



@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Mono Fonts  */
/* Define font weights */
/* Thin */
@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* Extra Light */
@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Light */
@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Normal */
@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Semibold */
@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Extra Bold */
@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* Black */
@font-face {
    font-family: 'GeistMono';
    src: url('/fonts/Geist/GeistMonoVF.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}


body {
  font-family: "Geist", sans-serif;
}
.icon,
.ionicon {
  width: 32px;
  height: 32px;
}
.ionicon {
  fill: #fff;
}
.heading {
  font-size: 40px;
  color: #144d50;
  font-weight: 500;
  position: relative;
}
.underline::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 4.5px;
  background: #ef8450;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -5px;
}
.card {
  background: #eeebe3;
  border-radius: 10px;
}
.card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.card-btn {
  text-decoration: none;
  color: white;
  display: flex;
  width: 100%;
  font-size: 20px;
  background-color: #ef8451;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.card-text {
  color: #575656;
}
/* Style for scroll-top button */
.backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  border: none;
  color: #cccccc;
  border-radius: 100%;
  transition: 0.5s;
  cursor: pointer;
  background-color: rgb(0,0,0,.3);
  backdrop-filter: blur(10px);

}

.backToTopBtn.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.backToTopBtn:not(.active) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
