/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

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

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

.btn-md-square {
  width: 44px;
  height: 44px;
}

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

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

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-secondary {
  box-shadow: inset 0 0 0 0 var(--bs-black);
}

.btn.btn-secondary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-white);
  color: var(--bs-secondary) !important;
}

.btn-hover {
  transition: 0.5s;
}

.btn-hover:hover {
  color: var(--bs-secondary) !important;
}

/*** Sub Title Start ***/
.sub-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.sub-title::before {
  content: "";
  width: 100px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -110px;
  border: 1px solid var(--bs-secondary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 576px) {
  .topbar {
    display: none;
  }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Yantramanav", sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-dark) !important;
  font-size: 18px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
  font-size: 18px !important;
}

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

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

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

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark) !important;
  }

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

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light) !important;
  }
  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

/*** Carousel Hero Header Start ***/
.header-carousel {
  position: relative;
}

.header-carousel .owl-nav .owl-prev {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  border-radius: 60px;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border-radius: 60px;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    top: 630px;
    transition: 0.5s;
  }

  .header-carousel
    .header-carousel-item
    .carousel-caption
    .carousel-caption-content {
    width: 95% !important;
  }
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  position: relative;
  width: 100%;
  height: 700px;
  margin-top: 95px;
  display: block;
  object-fit: cover;
  transition: 0.5s;
}

@media (max-width: 992px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    margin-top: 0;
    transition: 0.5s;
  }
}

@media (min-width: 992px) {
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    margin-top: 50px;
  }
}

.header-carousel .header-carousel-item .carousel-caption {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

.header-carousel
  .header-carousel-item
  .carousel-caption
  .carousel-caption-content {
  position: relative;
  width: 75%;
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  padding: 145px 0 50px 0;
  background: linear-gradient(rgba(242, 139, 0, 0.2), rgba(242, 139, 0, 0.3)),
    url(../img/breadcrumb.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding-top: 50px;
  }
}
/*** Single Page Hero Header End ***/

/*** Counter Facts Start ***/

.counter-facts {
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.7)
    ),
    url(../img/counter-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
}

.counter-facts .counter {
  position: relative;
  text-align: center;
  padding: 10px 15px;
  margin: 0 auto;
  background: var(--bs-white);
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 3px 8px -4px #000;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.counter-facts .counter:before {
  content: "";
  position: absolute;
  height: 105px;
  width: 100%;
  left: 0;
  top: 0;
}
.counter-facts .counter .counter-icon {
  position: relative;
  border-radius: 10px 10px 0 0;
  font-size: 50px;
  line-height: 90px;
  color: var(--bs-primary) !important;
  display: flex;
}

.counter-facts .counter h3 {
  color: var(--bs-dark);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  display: flex;
}
.counter-facts .counter .counter-value {
  font-size: 45px;
  font-weight: 700;
  display: block;
  color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
  .counter-facts .counter {
    margin-bottom: 40px;
  }
}
/*** Counter Facts End ***/

/*** Training Start ***/
.training-carousel .owl-stage-outer {
  margin-top: 30px;
}

.training-carousel .owl-nav .owl-prev,
.training-carousel .owl-nav .owl-next {
  position: absolute;
  top: 0;
  padding: 10px 35px;
  border: 1px solid var(--bs-secondary);
  color: var(--bs-white);
  background: var(--bs-secondary);
  border-radius: 50px;
  transition: 0.5s;
}

.training-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.training-carousel .owl-nav .owl-next {
  right: 0;
}

.training-carousel .owl-nav .owl-prev:hover,
.training-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.training .training-item .training-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

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

.training .training-item:hover .training-img img {
  transform: scale(1.2);
}
/*** Training End ***/

/*** Dance Class Start ***/
.class-carousel .owl-stage-outer {
  margin-top: 30px;
}

.class-carousel .owl-nav .owl-prev,
.class-carousel .owl-nav .owl-next {
  position: absolute;
  top: 0;
  padding: 10px 35px;
  border: 1px solid var(--bs-secondary);
  color: var(--bs-white);
  background: var(--bs-secondary);
  border-radius: 50px;
  transition: 0.5s;
}

.class-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.class-carousel .owl-nav .owl-next {
  right: 0;
}

.class-carousel .owl-nav .owl-prev:hover,
.class-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.class .class-item .class-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

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

.class .class-item:hover .class-img img {
  transform: scale(1.3);
}
/*** Dance Class End ***/

/*** Blog Start ***/
.blog-carousel .owl-stage-outer {
  margin-top: 30px;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
  position: absolute;
  top: 1px;
  padding: 10px 35px;
  border: 1px solid var(--bs-secondary);
  color: var(--bs-white);
  background: var(--bs-secondary);
  border-radius: 50px;
  transition: 0.5s;
}

.blog-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.blog-carousel .owl-nav .owl-next {
  right: 0;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

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

.blog .blog-item:hover .blog-img img {
  transform: scale(1.3);
}
/*** Blog End ***/

/*** Team Start ***/
.team-carousel .owl-stage-outer {
  margin-top: 30px;
}
.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  position: absolute;
  top: 1px;
  padding: 10px 35px;
  border: 1px solid var(--bs-secondary);
  color: var(--bs-white);
  background: var(--bs-secondary);
  border-radius: 50px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.team-carousel .owl-nav .owl-next {
  right: 0;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.team .team-carousel .team-item .team-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.team .team-carousel .team-item .team-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
  z-index: 2;
}

.team .team-carousel .team-item .team-img .team-icon {
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px;
  display: flex;
  opacity: 0;
  transition: 0.5s;
  z-index: 3;
}

.team .team-carousel .team-item:hover .team-img .team-icon {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

.team .team-carousel .team-item .team-content {
  position: relative;
  background: var(--bs-secondary);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
  transition: 0.5s;
}

.team .team-carousel .team-item .team-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bs-primary) !important;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.team .team-carousel .team-item:hover .team-content a,
.team .team-carousel .team-item:hover .team-content p {
  color: var(--bs-white) !important;
}

.team .team-carousel .team-item:hover .team-content::after {
  height: 100% !important;
}

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

.team .team-carousel .team-item:hover .team-img img {
  transform: scale(1.1);
}
/*** Team End ***/

/*** Vidie Gallery Start ***/
/*** Youtube Video start ***/
.gallery .tab-class {
  text-align: start !important;
}

.gallery .nav-item {
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.gallery .nav-item a span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery .nav-item a.active {
  background: var(--bs-primary) !important;
}

.gallery .nav-item a.active span {
  color: var(--bs-white) !important;
}

.video {
  position: relative;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: content-box;
  display: block;
  width: 23px;
  height: 44px;
  border-radius: 50%;
  transition: 0.5s;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 70px;
  height: 70px;
  background: var(--bs-white);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  transition: 0.5s;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 50px;
  height: 50px;
  background: var(--bs-secondary);
  border-radius: 50%;
  transition: all 300ms;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 23px solid var(--bs-primary);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

@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;
}
/*** Youtube Video End ***/

/*** Vidieo Gallery End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
  margin-top: 30px;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: 1px;
  padding: 10px 35px;
  border: 1px solid var(--bs-secondary);
  color: var(--bs-white);
  background: var(--bs-secondary);
  border-radius: 50px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.testimonial-carousel .owl-nav .owl-next {
  right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact button.btn.btn-primary.w-100:hover {
  box-shadow: inset 700px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item .footer-link {
  line-height: 30px;
  color: var(--bs-white);
  transition: 0.5s;
}

.footer .footer-item .footer-link:hover {
  letter-spacing: 1px;
  color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}
/*** copyright end ***/

.new-theme-bg-light {
  background-image: linear-gradient(360deg, #000000, #fd1e1e73);
  color: #fff;
  border-radius: 10px;
  position: relative;
}
ul {
  padding: 0;
}

.gradient-clip-text {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#000000),
    to(#fd1e1e73)
  );
  background-image: linear-gradient(90deg, #000000, #fd1e1e73);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.first-letter {
  font-size: 2rem;
  padding: 0 4px;
  font-weight: 900;
}

.border-purple-400 {
  border-color: #000000;
}

.border-dashed {
  border-style: dashed;
}

.-mt-2 {
  margin-top: -1rem !important;
}

.mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.br-10 {
  border-radius: 10px !important;
}

.contentx {
  background: rgb(25 25 25);
  padding: 1rem 1rem 2rem 1rem;
  display: none;
  border-radius: 8px;
  box-shadow: 2px 4px 12px -2px rgb(0 0 0);
  position: absolute;
  top: 0;
  overflow: scroll;
  z-index: 1;
}
.cross {
  font-weight: bold;
}
.locations {
  position: absolute;
}
#Location1 {
  left: 36%;
  top: 24%;
}
#Location2 {
  left: 38%;
  top: 24.7%;
}
#Location3 {
  left: 33.9%;
  top: 32.5%;
}
#Location4 {
  left: 31%;
  top: 35.2%;
}
#Location5 {
  left: 35%;
  top: 49%;
}
#Location6 {
  left: 33%;
  top: 42%;
}
#Location7 {
  left: 35%;
  top: 54.5%;
}
#Location8 {
  left: 40%;
  top: 44%;
}

#input1:checked ~ #content1,
#input2:checked ~ #content2,
#input3:checked ~ #content3,
#input4:checked ~ #content4,
#input5:checked ~ #content5,
#input6:checked ~ #content6,
#input7:checked ~ #content7,
#input8:checked ~ #content8 {
  display: block !important;
  animation: fadein 0.5s;
}

.gps {
  width: 24px;
}

.malad {
  top: 23.4%;
  border: 2px dashed #000;
  left: 35%;
  width: 50px;
  height: 42px;
  border-radius: 5px;
  box-shadow: -1px 2px 4px -1px #d4d4d4;
}
.malad .location_name {
  position: relative;
  top: -4px;
  right: -46px;
  background: #fd1e1e73;
  border-radius: 5px;
  color: #fff;
  font-size: 10px;
  padding: 6px;
  box-shadow: 2px 9px 8px -5px #000;
}

.linkingRoad {
  top: 48.2%;
  border: 2px dashed #000;
  left: 35%;
  width: 26px;
  height: 75px;
  border-radius: 5px;
  box-shadow: -1px 2px 4px -1px #d4d4d4;
}

.linkingRoad .location_name {
  position: relative;
  right: -22px;
  background: #fd1e1e73;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  padding: 4px;
  box-shadow: 2px 9px 8px -5px #000;
  display: block;
  width: 77px;
  z-index: 1;
  top: 47px;
}

.vileParle {
  top: 40.8%;
  border: 2px dashed #000;
  left: 33%;
  width: 59px;
  height: 58px;
  border-radius: 5px;
  box-shadow: -1px 2px 4px -1px #d4d4d4;
}

.vileParle .location_name {
  position: relative;
  top: -3px;
  right: -55px;
  background: #fd1e1e73;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  padding: 4px;
  box-shadow: 2px 9px 8px -5px #000;
  display: block;
  width: 68px;
}
.andheri {
  top: 31.8%;
  border: 2px dashed #000;
  left: 30%;
  width: 59px;
  height: 58px;
  border-radius: 5px;
  box-shadow: -1px 2px 4px -1px #d4d4d4;
}

.andheri .location_name {
  position: relative;
  top: -3px;
  right: -55px;
  background: #fd1e1e73;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  padding: 4px;
  box-shadow: 2px 9px 8px -5px #000;
  display: table-cell;
}

.cross_btn {
  color: #d32f2f;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.batch_wrapper {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 2px 3px 5px 3px #000000;
}

.cross_btn {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d32f2f;
  width: 23px;
  height: 23px;
  border-radius: 50px;
  text-align: center;
  box-shadow: -1px 1px 7px 3px #000;
}

ul.social {
  position: fixed;
  right: 0;
  z-index: 999;
  top: 40%;
}
ul.social {
  padding: 0px;
}
ul.social li {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  margin: 1px;
  text-align: right;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  transition: all 1s;
}
ul.social li:first-child {
  background: #d32f2f;
}
ul.social li:last-child {
  background: #55cd6c;
}

.w-7 {
  width: 1.75rem;
}
.-mt-30 {
  margin-top: -30px !important;
}

.h-60vh {
  height: 500px;
}

.margin-adjust-full p {
  padding: 10px;
  text-align: center;
  text-justify: justify;
}
.margin-adjust-full {
  background: #000;
  color: #fff;
  border-radius: 10px;
  margin-left: -15px;
  margin-right: -15px;
}

.studio-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.studio-item {
  width: 98%;
  margin: 0 auto;
  border: 1px dashed !important;
  margin-top: -10px;
  padding-top: 15px !important;
}

.gps-icon {
  width: 30px;
  height: 30px;
}

.batch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.batch-box {
  background-color: #fff;
  color: #000;
  border-radius: 0.5rem;
}

.batch-title {
  background-color: #eee;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: -2px !important;
  font-weight: bold;
  border-radius: 0.25rem;
}

.batch-box p,
.batch-box ul {
  background-color: #000;
  color: #fff;
  padding: 10px;
  margin: 0;
}
.caret-icon {
  font-size: 1rem;
  display: inline-block;
}

ul.studio-batch-time li {
  list-style: none;
  display: flex;
  align-items: center;
  /* justify-content: flex-start; */
  gap: 1rem;
  margin-bottom: 10px;
}

.studio-time-clock {
  width: 20px;
}

.know-more-btn {
  border-radius: 10px;
  padding: 10px;
  background: #000000;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  font-size: 12px;
}

.know-more-btn:hover {
  background: #000000;
  color: #fff;
  font-size: 14px;
}

.team_modal {
  overflow: hidden;
}

.modal-image-background {
  background: #000;
  position: relative;
  display: block;
}

/* .modal-image-background img {
  position: absolute;
  top: 5%;
  left: 2%;
} */

.modal-writeup {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: #e6e6e6;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #508fb9;
  z-index: 1;
}

.small {
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: -100px;
}

.medium {
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -200px;
}

.large {
  width: 600px;
  height: 600px;
  left: -300px;
  bottom: -300px;
}

.xlarge {
  width: 800px;
  height: 800px;
  left: -400px;
  bottom: -400px;
}

.xxlarge {
  width: 1000px;
  height: 1000px;
  left: -500px;
  bottom: -500px;
}

.shade1 {
  opacity: 0.2;
}
.shade2 {
  opacity: 0.5;
}

.shade3 {
  opacity: 0.7;
}

.shade4 {
  opacity: 0.8;
}

.shade5 {
  opacity: 0.9;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(0.8);
  }
}

.modal-name-title {
  font-size: calc(4vw + 1vh + 2vmin);
}

.modal-name-role {
  font-size: calc(1vw + 0vh + 1vmin);
}

.modal-image-css-style {
  max-width: 150px;
  border: 2px dashed #000;
  box-shadow: 2px 1px 10px -4px #000;
}



.modal-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
} 

@media (max-width: 768px) {
  .modal-image-background {
    height: 150px;
    margin-bottom: 5rem;
  }
  .modal-image-background .image-and-name-container {
    position: absolute;
    top: 9.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    gap: 10px;
    padding: 10px;
  }

  .modal-name-title {
    font-size: calc(2vw + 1vh + 2vmin);
  }

  .modal-name-role {
    font-size: calc(3vw + 0vh + 1vmin);
  }

  .modal-image-background .image-and-name-container p {
    color: #000 !important;
  }



}
