/********** Template CSS **********/
@import url("https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Hindi:ital@1&display=swap");
/* font-family: 'Tiro Devanagari Hindi', serif; */
:root {
  --primary: #ff6f00;
  /* --primary: #ff6f00; */
  --light: #f1f8ff;
  --dark: #2b2885;
}
body {
  background: radial-gradient(
    rgba(244, 243, 242, 0.51) 0%,
    rgba(245, 223, 101, 0.65) 100%
  );
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  height: 50px !important;
  background-color: #2b2885;
}

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

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 3px;
  bottom: 20px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
  border-radius: 4px;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 40px;
  height: 40px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin-left: 15px;
  padding: 20px 0;
  font-size: 14px;
  color: var(--light) !important;
  text-transform: uppercase;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}
/* .bg-blue {
  background-color: #053285 !important;
} */
.navbar-dark .navbar-toggler {
  border-color: #ff6f00;
  border-radius: 4px;
  width: 40px;
  height: 30px;
  font-size: 16px;
  color: #ffffff;
  background-color: #ff6f00;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 16px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
  max-height: 50px;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
  }

  .navbar-dark .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-dark .navbar-nav .nav-link,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
  }

  .navbar-dark .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #2b2885;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
      rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #2b2885;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
      rgba(0, 0, 0, 0.23) 0px 6px 6px !important;
  }
}

/*** Hero Header ***/
.hero-header {
  position: relative;
  background: radial-gradient(
      rgba(244, 243, 242, 0.51) 0%,
      rgba(245, 223, 101, 0.65) 100%
    ),
    url(../img/chakra-images/breadcrumb_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 10px;
}
.breadcrumb-boxmain {
  padding: 0;
  margin-top: 36px;
  text-align: center;
}

.hero-header img {
  /* animation: imgRotate 50s linear infinite; */
}

@keyframes imgRotate {
  100% {
    transform: rotate(360deg);
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

/*** Service ***/
.service-item {
  /* box-shadow: 0 0 45px rgba(0, 0, 0, 0.08); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.5s;
  border-radius: 8px;
}

.service-item:hover {
  background: #262da5;
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/*** Food Menu ***/
.nav-pills .nav-item .active {
  border-bottom: 2px solid var(--primary);
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/chakra-images/yellowsun.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  /* padding: 0px; */
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;

  opacity: 1;
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  height: calc(100% - 39px);
  transition: 0.5s;
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item:hover {
  height: 100%;
}

.team-item .btn {
  border-radius: 38px 38px 0 0;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 8px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
  color: #fea116;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Raman css start */
.proto-title {
  font-size: 1.8rem;
  color: #1811a7;
  line-height: 1.6;
  margin-top: 35px;
  margin-bottom: 20px;
}

.services-img {
  /* text-align: left; */
  margin-bottom: 10px;
}
.services-img img {
  width: 100px;
}
.services-img.teleimg img {
  width: 100px;
  height: 80px;
}
.hastrekha-font {
  font-family: "Tiro Devanagari Hindi", serif;
  color: #1811a7;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.footer-bg {
  background-color: #2b2885;
}
.roundradius {
  border-radius: 10px;
}
.abt-title {
  font-size: 2rem;
  color: #000080;
}
.abt-breadcrumb .breadcrumb-item a {
  color: #000080;
  font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #000080;
}
.breadcrumb-item.active {
  color: #fff;
}
.uh-left {
  /* width: 100%;
    height: 100%; */
  padding: 0 0.5em 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.uh-image {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.uh-image-inner {
  width: 6.5rem;
  height: 6.5rem;
  /* border: .3em solid #6c757d; */
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
}
.gradient {
  width: 100%;
  height: 100%;
  padding: 0.3em;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(214, 41, 118, 1) 0%,
    rgba(250, 126, 30, 1) 100%
  );
}
.gradient-gray {
  width: 100%;
  height: 100%;
  padding: 0.3em;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(236, 237, 243, 1) 0%,
    rgba(228, 229, 233, 1) 100%
  );
}
.contentwhitebox {
  padding: 20px;
  margin: 0 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.contentwhitebox .tab-content {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  margin: 0 10px;
}

.faqtabs.nav .nav-item button.active {
  /* font-size: 16px; */
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.36px;
  border-radius: 4px;
  background: #ffcc003b;
  border-bottom: 1px solid #053285;
}
.faqtabs.nav .nav-item button.active::after {
  content: "";
  border-right: 4px solid #053285;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px 0 0 5px;
}
.faqtabs {
  border-radius: 4px;
  /* background: #d8d2d2; */
  border: 1px solid #d4d0d0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.faqtabs.nav .nav-item .nav-link {
  color: #707070 !important;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  width: 100%;
  text-align: left;
  border-radius: 0;
}
.faqtabs.nav .nav-item {
  border-bottom: 1px solid #ebe7e7;
}
.faqtabs.nav .nav-item button:hover {
  background: #053285;
  color: #fff !important;
}
.faqtabs.nav .nav-item .nav-link:hover {
  color: #fff;
}
.faqtabs .tab-img-width {
  width: 20%;
  margin-right: 8px;
}
.bgrelbrd h5 {
  color: #1c1c1c;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.bgrelbrd h6 {
  color: #1c1c1c;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.leabtn {
  display: inline-block;
  padding: 10px;
  background-color: #fff;
  color: #000;
  border: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
}
.leabtn:hover {
  background-color: #fbf8f8;
  color: #000;
}

.joinnw {
  margin: 0 10px;
  padding: 10px;
  background-color: #e3f0ff;
  border-radius: 6px;
}
.getstart {
  display: flex;
  align-items: center;
}
.avtimgdiv {
  background-color: #c7e1ff;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.avtimgdiv img {
  display: inline-block;
  border-radius: 50%;
  height: 35px;
  width: 35px;
}
.getstart p {
  color: #1c1c1c;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
  margin-left: 4px;
}
.joinnwbtn {
  display: inline-flex;
  width: 100%;
  border-radius: 6px;
  padding: 10px;
  background: #fc0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.joinnwbtn:hover {
  background: #fdcb04;
  color: #fff;
}
.suppus {
  border-radius: 6px;
  background: #f38332;
  margin: 10px;
  padding: 10px;
}
.suppus p,
.suppus2 p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
.suppus2 {
  border-radius: 6px;
  background: #55bdc3;
  margin: 10px;
  padding: 10px;
}

.sp-box > h3 {
  text-align: center;
  margin-bottom: 20px;
}
.specialities-list {
  list-style: none;
  padding: 0;
}
.specialities-list li {
  display: flex;
  margin-bottom: 10px;
  font-style: italic;
}
.specialities-list li p {
  font-size: 18px;
  text-align: left;
}
.specialities-list li:before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 15px;
}
.dflimg {
  display: flex;
  justify-content: center;
  align-items: center;
}
.astro-img {
  height: auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 50%; */
  margin-bottom: 12px;
}
.astro-img img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
}
.astro-img img:hover {
  opacity: 0.8;
}

.service-item-astro {
  background: radial-gradient(
    rgba(244, 243, 242, 0.51) 0%,
    rgba(245, 223, 101, 0.65) 100%
  );
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item-astro:hover {
  /* background: #fbf8f8; */
}

.service-item-astro * {
  transition: 0.5s;
}

.service-item-astro:hover * {
  /* color: var(--light) !important; */
}
.brder-round {
  border: 1px solid #fea116;
}

.sv-ht {
  height: 340px;
  padding: 10px;
  text-align: center;
}
.sv-ht p {
  color: #666565;
  font-style: italic;
  font-size: 18px;
}
.sv-ht .services-img {
  height: 110px;
}
.astrothink {
  font-style: italic;
  font-size: 20px;
}
.astroitem-flex {
  /* display: flex;
  align-items: center; */
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  /* height: 275px; */
  overflow-y: hidden;
}

.eyekundali h5 {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
}
.eyekundali p {
  font-style: italic;
}

.quote-wrapper {
  padding: 0 20px;
}

.blockquote h1 {
  font-family: "Abril Fatface", cursive;
  /* color: #fea116; */
  color: #1811a7;
  line-height: 1.5;
  text-align: center;
}
.blockquote h1 span {
  color: #ffffff;
}

.blockquote h1:after {
  content: "\201D";
}
.blockquote h1:before {
  content: "\201D";
}
.nametitle-div h6 {
  font-size: 20px;
}
.nametitle-div small {
  font-size: 16px;
}
.about-desc h2 {
  margin-bottom: 10px;
}
.about-desc p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
}

.palm-list {
  list-style: none;
  padding: 0;
}
.palm-list li {
  display: flex;
  font-style: italic;
}
.palm-list li p {
  font-size: 18px;
  text-align: left;
  margin-bottom: 5px;
}
.palm-list li:before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.shastra {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}
.service-sec {
  margin-bottom: 4rem;
}
.service-shadow {
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  padding: 25px;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.container-main {
  /* background-color: #fffefe; */
  /* background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; */
  border-radius: 12px;
  padding: 20px 0;
}
.shadow-contact {
  border-radius: 12px;
  /* box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px; */
  padding: 40px 30px;
  background-color: #fff;
}
/*----  Main Style  ----*/
#cards_landscape_wrap-2 {
  text-align: center;
}

#cards_landscape_wrap-2 a {
  text-decoration: none;
  outline: none;
}
#cards_landscape_wrap-2 .card-flyer {
  border-radius: 5px;
}
#cards_landscape_wrap-2 .card-flyer .image-box {
  background: #ffffff;
  overflow: hidden;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.50); */
  border-radius: 5px;
}
#cards_landscape_wrap-2 .card-flyer .image-box img {
  transition: all 0.9s ease;
  width: 100%;
  height: 400px;
  cursor: pointer;
}
#cards_landscape_wrap-2 .card-flyer:hover .image-box img {
  /* opacity: 0.7;  */
  transform: scale(1.09);
}
#cards_landscape_wrap-2 .card-flyer .text-box {
  text-align: center;
}
#cards_landscape_wrap-2 .card-flyer .text-box .text-container {
  padding: 30px 18px;
}
#cards_landscape_wrap-2 .card-flyer {
  /* background: #FFFFFF; */
  margin-top: 20px;
  transition: all 0.2s ease-in;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
}
#cards_landscape_wrap-2 .card-flyer:hover {
  /* background: #fff; */
  /* box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.50); */
  transition: all 0.2s ease-in;
}
#cards_landscape_wrap-2 .card-flyer .text-box p {
  margin-top: 10px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #000000;
}
#cards_landscape_wrap-2 .card-flyer .text-box h6 {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Roboto Black", sans-serif;
  letter-spacing: 1px;
  /* color: #00acc1; */
  color: #262da5;
}
.player {
  border-radius: 8px;
  margin-top: 20px;
  transition: all 0.2s ease-in;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
}
.player_video iframe {
  border-radius: 8px;
  width: 100%;
  height: 400px;
}
.player h3 {
  padding: 30px 18px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Roboto Black", sans-serif;
  letter-spacing: 1px;
  /* color: #00acc1; */
  color: #262da5;
  text-align: center;
}
.handimg-top {
  text-align: center;
  margin-bottom: 10px;
}
.handimg-top img {
  width: 150px;
  height: 150px;
}

.spacing {
  position: absolute;
  left: 50%;
  top: 50%;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.32);
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  85% {
    transform: scale(2);
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes reset {
  0% {
    top: -5px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

.dot {
  width: 100%;
  position: relative;
  -webkit-animation-name: "fade";
  -moz-animation-name: "fade";
  -o-animation-name: "fade";
  animation-name: "fade";
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  -ms-animation-duration: 0.3s;
  -o-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.dot .point {
  background: #fff;
  border: 1px solid #0f7baf;
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: relative;
  text-align: center;
  top: 0;
  width: 14px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 1px rgba(88, 123, 192, 0.7), 0 1px 1px rgba(0, 0, 0, 0.2);
}

.dot .pulse {
  background: transparent;
  border: 1px solid #9ed9eb;
  display: block;
  height: 64px;
  left: -26px;
  position: absolute;
  top: -26px;
  width: 64px;
  z-index: -1;
  -webkit-animation: pulse 2s ease-in-out infinite;
  -moz-animation: pulse 2s ease-in-out infinite;
  animation: pulse 2s ease-in-out infinite;
  -moz-border-radius: 32px;
  -webkit-border-radius: 32px;
  border-radius: 32px;
  -moz-box-shadow: #60c9e9 2px 2px 40px 0px;
  -webkit-box-shadow: #60c9e9 2px 2px 40px 0px;
  box-shadow: #60c9e9 2px 2px 40px 0px;
}
.modaliframe iframe {
  height: 400px;
  width: 100%;
}
.serve-title {
  font-size: 22px;
}
.ast_journal_info {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}

/* .rate-box {
  background-color: rgba(255, 255, 255, 0.3);
  margin: auto;
  padding: 50px 30px;
  border-radius: 30px;
  letter-spacing: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
} */

.activestars {
  color: rgb(254, 161, 22) !important;
  transform: scale(1.2) !important;
}
.rate-box h5 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}
.stars i {
  color: #999393;
  font-size: 22px;
  cursor: pointer;
}

.textrate {
  margin: 25px auto;
  width: 85%;
}
.upiflex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}
.upipay {
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  margin-bottom: 15px;
}
.upipay img {
  width: 180px;
  height: 150px;
}
.footermap {
}
.footermap iframe {
  height: 300px;
  width: 100%;
  border-radius: 5px;
}
.inputimg {
  width: 65px;
  aspect-ratio: 3 / 2;
  position: relative;
}
.inputimg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.face-absolute {
  position: absolute;
  left: -23px;
}
.face-absolute-modal {
  position: absolute;
  left: -23px;
}

.abtfooter {
  width: 80%;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.6;
}

/* sidebar social icon css */

#social {
  position: fixed;
  right: 0;
  width: 40px;
  text-align: center;
  height: auto;
  top: 400px;
  z-index: 990;
  background: #d6d5d3;
  border-radius: 7px 0 0 7px;
  transition: all 0.5s ease-in-out;
  display: none;
}
/* #social:hover {
  background: #ff6f00;
} */

#social li {
  width: 35px;
  height: 35px;
  list-style: none;
  font-size: 25px;
  border-radius: 50%;
  margin: 10px 0;
}

#social li a {
  padding: 0;
  margin-left: 5px;
  transition: all 0.15s ease-in-out;
}

#social li a:visited:hover {
  color: #33ba9f;
}

#social li a.whatsapp {
  color: #008000;
}

#social li a.facebook {
  color: #4747f1;
}

#social li a.instagram {
  color: #f857a0;
}

#social li a.whatsapp:hover {
  color: #1fd31f;
}

#social li a.facebook:hover {
  color: #0f0ffd;
}

#social li a.instagram:hover {
  color: #fc0976;
}

.blinking-button {
  font-size: 14px;
  color: white;
  border: none;
  border-radius: 48px !important;
  padding: 5px 30px;
  animation: blink 0.8s alternate infinite;
}

@keyframes blink {
  0% {
    background-color: #f16334;
    color: #fff;
    /* border: 1px solid #4952fa; */
  }

  50% {
    background-color: #f16334;
    color: #fff;
    /* border: 1px solid #4952fa; */
  }
  100% {
    background-color: #4952fa;
    color: #fff;
    /* border: 1px solid #4952fa; */
  }
}

.light:hover {
  animation: light 1s infinite;
  background: linear-gradient(
    135deg,
    #f16334 0%,
    #f16334 40%,
    #ffffff 50%,
    #f16334 60%,
    #f16334 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3B89D4', endColorstr='#3B89D4',GradientType=1 );
  background-repeat: no-repeat;
  background-position: 0%;
  background-size: 300%;
}
@keyframes light {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}

.navbar-collapse {
  flex-grow: inherit;
}
.blink-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding-left: 20%;
}

/* d-flex justify-content-center align-items-center flex-grow-1 */
.abt-hover-img img {
  overflow: hidden;
  transition: all 0.8s ease-in-out;
}
.abt-hover-img img:hover {
  transform: scale(1.03);
}
.askmodal .bgboard .form-floating > .form-control {
  height: calc(2.8rem + 2px);
}
.askmodal .bgboard .form-floating > label {
  top: -8px;
}
.widthcustom {
  width: 41rem;
}

.widthcustomMenu {
  width: 95%;
}

.askmodal .modal-header {
  background: radial-gradient(
    rgba(244, 243, 242, 0.51) 0%,
    rgba(245, 223, 101, 0.65) 100%
  );
}
.askmodal .modal-body {
  background: radial-gradient(
    rgba(244, 243, 242, 0.51) 0%,
    rgba(245, 223, 101, 0.65) 100%
  );
}

.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #8cc63e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.circle > .fa {
  color: #fff;
}
#successModal .mymodal-header {
  border: none;
  padding: 2px;
}
#successModal .mymodal-header .btn-close {
  font-size: 12px;
  cursor: pointer;
  padding: 8px 24px 15px 5px;
}
#successModal .mymodal-header .btn-close:focus {
  box-shadow: none;
}
#successModal .modal-content {
  background: radial-gradient(rgba(244, 243, 242) 0%, rgb(247, 228, 125) 100%);
}
.img-width {
  width: 200px;
  height: 210px;
}
.img-width2 {
  width: 250px;
  height: 200px;
}
.img-width3 {
  width: 250px;
  height: 220px;
}
.blog_post_video_container {
  width: 100%;
}
.video-js {
  width: 100% !important;
  height: 150px !important;
  padding: 15px;
}
/* gallery image zoom css start */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.zoomimgmodal.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  padding-top: 30px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
  /* overflow: hidden; */
  outline: 0;
}

/* Modal Content (image) */
.zoomimgmodal .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: auto;
}

/* Add Animation */
.zoomimgmodal .modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.zoomimgmodal .close {
  float: right;
  position: relative;
  top: 0;
  right: 40px;
  color: #f1f1f1;
  font-size: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.zoomimgmodal .close:hover,
.zoomimgmodal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.zoomimgmodal.modal {
  overflow-y: auto; /* Enable vertical scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for Webkit browsers */
.zoomimgmodal.modal::-webkit-scrollbar {
  display: none;
}
.copyPowerbg {
  background: transparent;
  display: inline-block;
  color: #fff;
  border-radius: 3px;
}

.copyPowerbg:hover {
  color: #fff;
  text-decoration: none !important;
}
.copyPowerbg img {
  width: 55px;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .copyflex {
    justify-content: center;
  }
}
