@font-face {
  font-family: "HelloParis";
  src: url("/assets/font/hello-paris-script.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
[x-cloak] {
  display: none !important;
}

html {
  scroll-behavior: auto;
}

.style-font {
  font-family: "HelloParis", sans-serif !important;
}

.para-font {
  font-family: "Outfit", sans-serif;
}

.title-font {
  font-family: "Antic Didone", serif;
}

section {
  overflow: hidden;
}

p,
li,
span,
a {
  font-family: "Outfit", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Antic Didone", serif;
}

.btn {
  width: 128px;
  display: inline-block;
  line-height: 32px;
  background: #f9bc00;
  border-radius: 40px;
  height: 35px;
  text-align: center;
  border: 2px solid #f9bc00;
  position: relative;
  text-shadow: 0.5px 0.5px 0px white;
  overflow: hidden;
}
.btn::after {
  content: "";
  filter: blur(10px);
  position: absolute;
  width: 10px;
  height: 50px;
  top: -10px;
  left: 0;
  background: #000000;
  border-radius: 40px;
  z-index: 1;
  transform: translateX(30px) rotate(45deg);
  opacity: 0.5;
}
.btn:hover::after {
  animation: bounce 1s ease-in-out alternate infinite;
  transform: translateX(30px) rotate(45deg);
}

@keyframes bounce {
  0% {
    transform: translateX(30px) rotate(45deg);
  }
  100% {
    transform: translateX(128px) rotate(45deg); /* Adjust height of bounce */
  }
  0% {
    transform: translateX(30px) rotate(45deg); /* Adjust height of rebound */
  }
}
.color1 {
  color: #681231 !important;
}

.color2 {
  color: #7f630d !important;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  transition: 0.3s ease;
  background: transparent;
  z-index: 999;
}
.navbar .toggle_button {
  margin-top: -5px !important;
  margin-right: 10px;
}

.navbar.scrolled {
  background: white; /* Change color here */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0px 0; /* Optional shrink effect */
}
.navbar.scrolled li a {
  color: black;
}
.navbar.scrolled .main-logo {
  width: 60% !important;
}
.navbar.scrolled .toggle_button span {
  background: black !important;
}

@media only screen and (max-width: 768px) {
  .navbar.scrolled .main-logo {
    width: 100% !important;
  }
}
.parallax-slide {
  position: relative;
  overflow: hidden;
  height: 80vh;
}

.parallax-img {
  position: absolute;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  top: -10%;
  left: 0;
  will-change: transform;
}

.home_banner {
  /* Owl dots styling */
}
.home_banner .owl-dots {
  position: absolute !important;
  bottom: 16% !important;
  right: 10% !important;
  z-index: 10 !important;
}
.home_banner .owl-dots .owl-dot {
  margin-left: 24px !important;
}
.home_banner .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 5px;
  background: white !important;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}
.home_banner .owl-dots .owl-dot.active span {
  background: #fff;
  position: relative;
}
.home_banner .owl-dots .owl-dot.active span::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: -6px;
  right: -6px;
  position: absolute;
  border: 1px solid orange;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .home_banner .owl-dots {
    position: absolute !important;
    bottom: 7.3% !important;
    right: 3% !important;
    z-index: 10 !important;
  }
}/*# sourceMappingURL=style.css.map */