@font-face {
  font-family: 'Caecilia';
  src: url('../font/UTM-Caecilia.ttf');
}
@font-face {
  font-family: 'Dense';
  src: url('../font/UTM-Dense.ttf');
}

body {
  font-family: 'Caecilia';
}
.font-itim {
  font-family: "Itim", cursive;
}
.font-nunito {
  font-family: "Nunito", sans-serif;
}
.font-birthstone {
  font-family: "Birthstone", sans-serif;
}
.font-roboto-slab {
  font-family: "Roboto Slab", serif;
}

.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #876d52;
  margin: 0px 10px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.dot.active {
  background-color: #c7a17a;
}
.dot.active::after {
  content: "";
  position: absolute;
  border: 1px solid #c7a17a;
  border-radius: 100px;
  animation: dot-active-anim 1000ms infinite ease-in-out;
}

@keyframes dot-active-anim {
  0% {
    width: 10px;
    height: 10px;
    top: 0px;
    left: 0px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 25px;
    height: 25px;
    top: -7.5px;
    left: -7.5px;
  }
}

.flyin-left {
  animation: fly-from-left 1500ms ease-in-out;
}
.flyin-right {
  animation: fly-from-right 1500ms ease-in-out;
}
.fade-in-up {
  animation: fade-in-from-up 1500ms ease-in-out;
}
.flyin-left-reverse {
  animation: fly-from-left 1500ms ease-in-out reverse;
}
.flyin-right-reverse {
  animation: fly-from-right 1500ms ease-in-out reverse;
}
.fade-in-up-reverse {
  animation: fade-in-from-up 1500ms ease-in-out reverse;
}
.fade-in {
  animation: fade-in 1500ms ease-in-out;
}

@keyframes fly-from-left {
  0% {
    transform: translate(-400px, -200px)
  }
  100% {
    transform: translate(0px, 0px)
  }
}

@keyframes fly-from-right {
  0% {
    transform: translate(400px, 200px)
  }
  100% {
    transform: translate(0px, 0px)
  }
}

@keyframes fade-in-from-up {
  0% {
    opacity: 0;
    transform: translateY(-50px)
  }
  100% {
    opacity: 1;
    transform: translateY(0px)
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header-nav {
    color: #fff;
    transition: 0.3s;
}
.header-nav:hover, a.active .header-nav {
    color: #04751d;
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.8\)\] {
    background-color: rgba(0,0,0,0.8)!important;
}

.limit-line-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.limit-line-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.limit-line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.limit-line-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* Overlay loading */
.r-overlay-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.r-spinner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100px;
    height: 100px;
}

.r-spinner {
    border: 8px solid rgba(145, 87, 15, 0.3);
    border-top: 8px solid rgba(145, 87, 15);
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    animation: r-spin 1s linear infinite;
}

.r-spinner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

@keyframes r-spin {
    to {
        transform: rotate(360deg);
    }
}

.r-message {
    color: rgba(145, 87, 15);
    margin-top: 1rem;
    font-size: 1.2rem;
}