@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-size: 100%;
  font-family: "Open Sans", sans-serif;
  background: #F4F5EE;
  margin: 0;
}

.head {
  line-height: 70px;
  font-size: 3.5rem;
  font-family: "Pacifico", cursive;
}
@media screen and (max-width: 767px) {
  .head {
    line-height: 50px;
    font-size: 2rem;
  }
}

.head_font {
  font-family: "Pacifico", cursive;
}

.playwrite-ca-guides-regular {
  font-family: "Playwrite CA Guides", cursive;
  font-weight: 400;
  font-size: 2rem;
  font-style: normal;
}

img, img:focus, input, input:focus, button, button:focus, a, a:focus {
  outline: none;
}

img {
  width: 100%;
  height: auto;
}

.web {
  display: block;
}

.mobile {
  display: none;
}

input, input:focus, select:focus-visible {
  box-shadow: none !important;
}

p, ul li {
  text-align: justify;
  line-height: 0.95rem;
  color: #2e2e38;
}

.container {
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
}

.card, .amitShadow {
  box-shadow: 1px 1px 5px #aaa;
  transition: 0.5s all;
}
.card:hover, .amitShadow:hover {
  box-shadow: 0 14px 28px rgba(191, 191, 191, 0.2509803922), 0 10px 10px rgba(132, 132, 132, 0.2196078431);
}

.navneetShadow {
  box-shadow: -1px -1px 2px rgba(255, 255, 255, 0.25), inset 2px 2px 5px rgba(255, 255, 255, 0.25), 8px 30px 30px rgba(0, 0, 0, 0.011), inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.content {
  width: 100%;
}
.content img, .content iframe, .content video, .content table {
  width: 100%;
  height: auto;
  display: block;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  margin-top: 1em;
  font-weight: 700;
  color: #2e2e38;
}
.content ul, .content ol {
  padding-left: 2em;
}
.content ul li, .content ol li {
  list-style-type: disc;
}
.content ul li, .content p {
  line-height: 2em;
}
.content a {
  color: #ad2e24;
  font-weight: 600;
  position: relative;
}
.content a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1em;
  border-bottom: 2px solid #ad2e24;
  content: "";
}

.glass {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.tint {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6); /* 60% black tint */
  z-index: 10;
}

.oneliner, .twoliner {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.oneliner {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1; /* standard */
  overflow: hidden;
}

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

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomout {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
/* book now btn wave animation */
.button-wrapper {
  position: fixed;
  transform: translateY(-50%);
  z-index: 20;
}

.button-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto; /* adjust based on your button's size */
}

.button-container .circle {
  position: absolute;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: #400227;
  transition: transform 2.5s ease, opacity 2.5s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1; /* Ensure circles are under the button */
}

@keyframes waves {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.button-container .delay1 {
  animation: waves 2.5s linear infinite;
  animation-delay: 0s;
}

.button-container .delay2 {
  animation: waves 2.5s linear infinite;
  animation-delay: 0.6s;
}

.button-container .delay3 {
  animation: waves 2.5s linear infinite;
  animation-delay: 1.2s;
}

.button-container .delay4 {
  animation: waves 2.5s linear infinite;
  animation-delay: 1.8s;
}

/* whatsapp button */ /* book now btn wave animation */
.button-wrapper2 {
  position: fixed;
  transform: translateY(-50%);
  z-index: 20;
}

.button-container2 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto; /* adjust based on your button's size */
}

.button-container2 .circle {
  position: absolute;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: #4AEB67;
  transition: transform 2.5s ease, opacity 2.5s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1; /* Ensure circles are under the button */
}

@keyframes waves {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.button-container2 .delay1 {
  animation: waves 2.5s linear infinite;
  animation-delay: 0s;
}

.button-container2 .delay2 {
  animation: waves 2.5s linear infinite;
  animation-delay: 0.6s;
}

.button-container2 .delay3 {
  animation: waves 2.5s linear infinite;
  animation-delay: 1.2s;
}

.button-container2 .delay4 {
  animation: waves 2.5s linear infinite;
  animation-delay: 1.8s;
}

@media (max-width: 767px) {
  .web {
    display: none;
  }
  .mobile {
    display: block;
  }
  .container {
    width: 98%;
    max-width: 98%;
  }
}/*# sourceMappingURL=style.css.map */