/* Google font */
@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");

html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}
.text-white {
  color: #eee;
}
#homepage {
  background: #007b7b;
  color: white;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coming-soon-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.coming-soon-text {
  font-size: 5rem;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.footer-section {
  padding: 30px 0;
  text-align: center;
}

.footer-section img {
  max-height: 80px;
  margin-bottom: 10px;
}

.footer-address {
  font-size: 0.95rem;
  color: #fff;
}

/* Carousel page */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-bg-primary {
  background: #007b7b;
}
.swiper-slide h1 {
  /* position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 70px;
  font-size: 6rem; */
  color: #fff;
  text-align: start;
}
.swiper-slide .image-bg {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-animate {
  position: absolute;
  /* top: 15%;
  left: 50px; */

  animation: bounceInLeft; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
}
.bread-animate {
  position: absolute;
  width: 1000px;
  bottom: 0;
  right: 50px;
}
.slide-text-container {
  display: block;
  position: absolute;
  top: 30%;
  margin-top: -150px;
  left: 50px;
  text-align: left;
  z-index: 2;
}
.slide-text-container h2 {
  color: antiquewhite;
  font-size: 6rem;
  margin: 0;
}
.slide-text-container h3 {
  color: antiquewhite;
  font-size: 3rem;
  margin: 0;
  font-weight: normal;
}
.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 6px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
@media (max-width: 600px) {
}
@media (min-width: 768px) {
}
@media (min-width: 980px) {
}
