html,
body {
  font-family: "Hind Madurai", "Montserrat", Helvetica, Arial, sans-serif;
  background-color: #edf3f3;
  color: rgba(2, 89, 85, 1);
  padding: 0;
  margin: 0;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: calc(var(--bs-gutter-x) * 0.8) !important;
  padding-left: calc(var(--bs-gutter-x) * 0.8) !important;
}
* {
  text-decoration: none !important;
  color: rgba(2, 89, 85, 1) !important;
}
hr {
  opacity: 0.1 !important;
}
.card {
  border-color: rgba(0, 0, 0, 0.1) !important;
  border-radius: 20px !important;
  --bs-card-spacer-y: 1.2rem !important;
  --bs-card-spacer-x: 1.2rem !important;
  height: 100%;
}
.card.disabled * {
  pointer-events: none;
  user-select: none;
}
.card.disabled img,
.card.disabled h5,
.card.disabled .title,
.card.disabled a {
  opacity: 0.2 !important;
}

header {
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.07); */
  padding-bottom: 30px;
  margin-bottom: 40px;
  margin-top: 30px;
}
main {
  min-height: 600px;
}
footer {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 20px;
  margin-top: 100px;
  margin-bottom: 80px;
}
.logo {
  font-size: 42px;
}
.brand {
  width: 100px;
  height: auto;
}
.copy {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 300;
}
.download {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}
.contact {
  margin-top: 20px;
  font-size: 16px;
}
.contact a {
  font-weight: 300;
}
.app-link-container {
  margin: 0 20px;
}
.app-link {
  display: block;
  margin: 5px 1px;
}

.app-icon:hover {
  opacity: 0.5;
}

.back-top {
  position: fixed;
  display: none;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  font-size: 38px;
  text-indent: 0;
  color: rgba(2, 89, 85, 1) !important;
  box-shadow: none;
}

.back-top:before {
  font-family: bootstrap-icons;
  content: "\F13A";
  display: inline-block;
  font-style: normal;
  font-weight: 300;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

::-webkit-scrollbar {
  width: 8px !important;
  border-radius: 0px !important;
}
::-webkit-scrollbar-track {
  background: rgba(2, 89, 85, 0.05) !important;
  border-radius: 0 !important;
}
::-webkit-scrollbar-thumb {
  background: rgba(2, 89, 85, 0.2) !important;
  border-radius: 0 !important;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(2, 89, 85, 0.7) !important;
  border-radius: 0 !important;
}

.spinner-container {
  padding-top: 60px;
}

.spinner {
  border: 8px solid rgba(2, 89, 85, 0.1); /* Light grey background */
  border-top: 8px solid rgba(2, 89, 85, 1); /* Blue color */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.download-gap {
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  header {
    margin-top: 40px;
  }
  .logo {
    font-size: 50px;
  }
  .brand {
    width: 120px;
  }
  .copy {
    font-size: 24px;
  }
  .contact {
    font-size: 18px;
  }
  .download {
    font-size: 18px;
  }
  .app-link {
    display: inline-block;
  }
  .spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding-top: 60px;
  }
  html,
  body {
    overflow: hidden;
  }
}
