@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pompiere&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Rubik", sans-serif;
}

.banner-swiper, .client-swiper {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.banner-swiper .swiper-slide {
  position: relative;
}

.banner-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 1;
}

.main_heading p {
  font-family: "Pompiere", sans-serif;
}

footer .heading_shape {
  stroke-dasharray: 1000;
  stroke-dashoffset: 2200;
  animation: banner_shape 15s infinite ease;
}
@keyframes banner_shape {
  100% {
    stroke-dashoffset: 0;
  }
}

.main_blog_section p{
  font-size: 14px;
  color: #666666;
}
.main_blog_section h4{
  margin-bottom: 7px;
  font-size: 20px;;
}
.about_main_banner .banner_part_text {
  padding-top: 250px;
  padding-bottom: 100px;
}
.about_main_banner::after {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.5;
  position: absolute;
}

.blog_main_banner .banner_part_text {
  padding-top: 150px;
  padding-bottom: 20px;
}
.blog_main_banner::after {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.5;
  position: absolute;
}

span.validate-has-error {
  color: #DF2322;
  position: absolute;
  font-weight: 500;
  bottom: -16px;
  left: 0;
  font-size: 12px;
}

.points .accordion_box.open i {
  transform: rotate(180deg);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  transition: opacity 0.15s linear;
}

.show-modal {
  overflow: hidden;
}

.show-modal .modal {
  display: block;
}

.modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
  position: relative;
  width: auto;
  margin: 70px auto;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 12px;
  overflow: hidden;
  outline: 0;
}

.common_border_box {
  border-image-source: linear-gradient(180deg, rgba(245, 245, 245, 0.2117647059) 0%, rgba(221, 185, 0, 0.04) 62.49%, rgba(221, 185, 0, 0.01) 62.5%);
  border-image-slice: 1;
}


.first_center_shape {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1200;
  animation: banner_shape 3s linear forwards;
}
 

@keyframes banner_shape {
  100% {
    stroke-dashoffset: 0;
  }
}

.main_inner_shape{
  animation: icon_zoom_shape 0.1s linear 1.8s forwards;
  opacity: 0; 
}
@keyframes icon_zoom_shape {
  0%{ 
    opacity: 0;
  }   
  100%{ 
    opacity: 1;
  }
}

.main_center_kid{
  animation: kid_zoom_shape 0.3s linear 0.2s forwards;
  opacity: 0;
}
@keyframes kid_zoom_shape {
  0%{ 
    opacity: 0;
  }   
  100%{ 
    opacity: 1;
  }
}

.round_main_shape{ 
  animation: zoom_shape 0.1s linear 1.3s forwards;
  opacity: 0;
}

@keyframes zoom_shape {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@media screen and (prefers-color-scheme: light) {
  body {
    background-color: white;
    color: black;
  }
}
@media (prefers-color-scheme: dark) {
  .test {
    color: red !important;
  }
}
html[data-theme=dark] .test {
  color: red !important;
}

@media (max-width: 768px) {
  .about_main_banner .banner_part_text {
    padding-top: 90px;
    padding-bottom: 30px;
  }
  .blog_main_banner .banner_part_text {
    padding-top: 100px;
    padding-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */