* {
    margin: 0px;
}

html {
    scroll-behavior: smooth;
}



.clear {
    clear: both !important;
}


/* common css starts here */

/* color theory */
.primary-clr {
    color: #A020F0;
}

.secondary-clr {
    color: #C52092;
}



/* color theory */

/* background-colors starts*/

.primary-bg {
    background-color: #A020F0;
}

.secondary-bg {
    background-color: #C52092;
}

/* background-colors ends */


.active{
  color: #A020F0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     font-family: "Rubik", sans-serif;
    margin: 0 !important;
}

p,
ul,
li,
a,
strong,
span,
table,
thead,
tbody,
tr,
td,
input {
      font-family: "Noto Sans", sans-serif;
}


li {
    list-style-type: none;
    display: inline-block;
}

ul {
    margin: 0px !important;
    padding: 0px !important;
}

h1 {
    font-size: 38px !important;
}

h2 {
    font-size: 34px !important;
}

h3 {
    font-size: 30px !important;
}

h4 {
    font-size: 26px !important;
}

h5 {
    font-size: 22px !important;
}

h6 {
    font-size: 18px !important;
}

p {
    font-size: 14px !important;
}


.primary-btn{
  background-color: #A020F0;
  text-decoration: none;
  padding: 10px 20px;
  color:#ffffff !important;
  border-radius: 5px;
}

.secondary-btn{
  background-color: #C52092;
  text-decoration: none;
  padding: 10px 20px;
  color:#ffffff !important;
  border-radius: 5px;
}





/* common css ends here */




/* top css starts here */


.top-header{
    background-color:#C52092 ;
}

.contact-phn,.contact-mail{
    text-decoration: none;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 14px;
}

.contact-phn:hover{
  color: #ffffff;
}
.contact-mail:hover{
  color: #ffffff;

}

.sm-dtls{
    padding: 10px 0px 10px 20px ;
}

.contact-sm-ul li{
    width: 25px;
    height: 25px;
    font-size: 16px;
    background-color:  #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin: 0px 5px;
   
}


.sm-icon{
    color: #C52092;
    text-decoration: none;
    padding: 3px 5px;
}







/* top css ends here */



/* header css start here */


.logo-div{
   position: relative;
   top: -25px;
   background-color: #ffffff;
   box-sizing: border-box;
   

}


.logo-div a{
    padding: 10px 20px 0px;
     transform: skewX(-25deg);
}

.logo-div{
    padding-top: 10px;
    transform: skewX(25deg);
    border-radius: 0 10px 0 0;
}





/* header css ends here */





nav {
  /* position: fixed; */
  z-index: 99;
  width: 100%;

  
}
nav .wrapper {
  position: relative;
  width: 100%;
  padding: 0px 72px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
  display: block;
}
.nav-links li a {
  color: #474D6B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover {
  color: #A020F0;
}
.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box {
  position: absolute;
  left: -100px;
  width: 100%;
  height: fit-content !important;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
   border: 1px solid #A020F0;
   z-index: 1000;
  
}
.mega-box .content {
  
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;

 
  
}
.mega-box .content .row {
  width: calc(25% - 30px);
  /* line-height: 45px; */
}
.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/2;
}
.content .row header {
  color: #C52092;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
}
.content .row .mega-links {
  position: relative;
  top:-70px;
  line-height: 35px;
  margin-top: 0px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

/* .row .mega-links li {
  padding: 0 12px;
} */
.row .mega-links li a {
  padding: 0px;
  padding: 0 12px;
  color: #474D6B;
  font-size: 14px;
  display: block;
}
.row .mega-links li a:hover {
  color: #C52092;
}
.wrapper .btn {
  color: #C52092;
  font-size: 30px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
  color: #ffffff;

}

.service-icon{
    font-size: 18px !important;
   
  
  }

@media screen and (max-width: 768px) {
  .wrapper .btn {
    display: block;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 500px;
    width: 100%;
    z-index: 1000;
    
    max-width: 100%;
    top: 0;
    left: -625%;
    background: #000000;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }


  .content .row .mega-links {
  position: relative;
  top:0px;
  line-height: 35px;
  margin-top: 0px !important;
  
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 12px;
  color: #ffffff;
  font-size: 17px;
  display: block;
}





  .content .row img{
    display: none;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #7194b8;
  }
  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }
  #menu-btn:checked ~ .nav-links {
    left: 0%;
    z-index: 1000 !important;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
    
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
   
  }
  .menu-btn{
    display: flex;
    justify-content: flex-end;
  }
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
    color:#ffffff;
  }
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
    background-color: #000;
  }
  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover {
    background: #3a3b3c;
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none !important;
  }
  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 20px 20px;
    height: 600px;
    overflow-y: scroll;
    
  }
  .mega-box .content .row {
    width: 100%;
    /* margin-bottom: 15px; */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }
  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li {
    margin: 0;
  }
  .content .row header {
    font-size: 19px;
  }
}
nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div {
  font-size: 45px;
  font-weight: 600;
}





/* bnr css starts here */








.bnr-main{
  
  background-image: url(../images/bnr-background.png);
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  
  
  
}

.bnr-ttl-div{
  position: relative;
  top:100px;
 
}







/* .bnr-h1{
  letter-spacing: 0px;
   animation: spacingAnimation 1s ease-in-out  alternate;
   animation-delay: 0.5s;
}

  @keyframes spacingAnimation {
    0% {
      letter-spacing: -10px;
    }
    100% {
      letter-spacing: 0px;
    }
  } */

.bnr-h1,.bnr-p{
  color: #fff;
}

.bnr-h5{
  color: #FFCCEF;
}

.bnr-h1{
  font-size: 64px !important;
  font-weight: bolder;
  line-height: 70px;
}
.bnr-p{
  padding-top: 10px;
}

.bnr-corousel{
  background-color: #ffffff !important;
  padding: 0px !important;
  
  border-radius: 10px;
}
.carousel-caption p{
color: #474D6B;
}

#carouselExampleIndicators{
  height: 100%;
}
.carousel-inner{
  height: 100% !important;
  /* position: absolute !important; */
}
.carousel-item{
  
  height: 100%;
  
}
.carousel-control-prev i,.carousel-control-next i{
  color: #C52092 !important;
  font-size: 25px;
}

.carousel-item p{
  text-align: center !important;
  color: #474D6B !important;
  font-size: 12px !important;
  padding-top: 10px !important;
  margin-bottom: 0px;
}

.carousel-inner i{
 
  background-color: #C52092;
  padding: 5px 10px;
  color: #ffffff !important;
  font-size: 24px;
  border-radius: 5px 0 10px 0;
}
.carousel-inner a{
  text-decoration: none;
  display: flex;
  justify-self: end;
  margin-top: 10px;
  position: relative !important;
    /* bottom: -206px;
    right:-235px ; */
  z-index: 98 !important;
 
 
  
}




.corousel-main{
  height: 200px;
}



.carousel-item img{
  margin: auto;
  padding-top: 5px;
}
.active{
  color: #ffffff;
}
.carousel-inner h6,.bnr-service-ttl{
  background-color: #C52092;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 10px 0 10px 0px;
  color: #ffffff !important;
  font-weight: bolder;margin-bottom: 20px;
}



.offers-img{
  height: 100%;
}

.bnr-offers-div{
  padding: 0px 20px;
  box-sizing: border-box !important;
}

.bnr-services-sub{
  position: relative;
}

.bnr-servicse-div{
  background-color: #ffffff;
  border-radius: 10px;
  padding: 0px !important;
}
.bnr-service-cnt-div p{
  font-size: 9px !important;
  margin: 0px;

}
.bnr-service-cnt-div a{
  font-size: 12px !important;
  text-decoration: none;
  color:#C52092;


}
.bnr-service-cnt-div a i{
  font-size: 14px !important;
  text-decoration: none;
  color:#C52092;
  

}
.bnr-cnt-main{
  display: flex;
  flex-wrap: wrap;
  padding-top: 100px;
}
.facial-ttl,.waxing-ttl{
  color: #A020F0;
  font-size: 16px !important;
}
.manicure-ttl,.pedicure-ttl{
  color: #C52092;
  font-size: 16px !important;
}
.manicure-btn,.pedicure-btn{
  color:#A020F0 !important;
}
.manicure-btn i,.pedicure-btn i{
  color:#A020F0 !important;
}


.services-sub-anchor{
  position: absolute;
  right: 0px;
  bottom: 66px;
  padding: 30px 10px;
  background-color: #A020F0;
  border-radius: 5px 0 0 5px;
  text-decoration: none;
}

.services-sub-anchor i{
  font-size: 14px;
  color: #ffffff;
}













/* bnr css ends here */



/* abt css starts here */


.abt-main{
  background-image: url(../images/abt-bg-img.png);
  background-size: cover;
}

.abt-img-div{
  background-image: url(../images/abt-img.png);
  background-size: 100% 100%;
  height: 400px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 25px !important;
  box-sizing: border-box;
}
.book-appoinment-div{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 3px dashed #FF8AA2;
  height: fit-content !important;
 

}
.calender-link{
  text-decoration: none !important;
}
.Appointment-para{
  margin: 0;
  font-size: 12px !important;
  text-align: center;
  color: #474D6B;
}
.Appointment-ttl{
  font-size: 12px;
  color: #C52092;
  font-weight: bolder;text-align: center;
}

.abt-ttl{
  
  color:#C52092;
  font-family: "Allura", cursive;
}
.abt-ttl2{
  padding-bottom: 10px;
  font-weight: bold;
  color: #A020F0;
}

.abt-ttl2 span{
  color: #C52092;
  font-weight: bold;
   font-family: "Rubik", sans-serif !important;
}

.abt-para{
  font-size: 12px;
  color: #818181 !important;
  margin-bottom: 30px;
}

.abt-cnt-div{
  padding: 30px;
  box-sizing: border-box;
}




/* abt css ends here */


/* features ccs starts here*/

.feature-main{
  background-image: url(../images/features-bg-img.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.featur-ttl{
  color: #A020F0;
  font-weight: bolder;
}

.featur-ttl span{
  color: #C52092;
  font-weight: bolder;
}

.feature-para{
  color: #474D6B;
  padding-bottom: 10px;
}

.feature-1,.feature-4{
  padding: 20px;
  box-sizing: border-box;
  border-radius: 5px;
  border-left:2px solid #A020F0 ;
 box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.feature-2,.feature-3{
  padding: 20px;
  box-sizing: border-box;
  border-radius: 5px;
  border-left:2px solid #C52092 ;
 box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.feature-1 h6,.feature-4 h6{
  color: #A020F0;
  padding-bottom: 10px;
}

.feature-2 h6,.feature-3 h6{
  color: #C52092;
  padding-bottom: 10px;
}
.feature-1 img,.feature-2 img,.feature-3 img,.feature-4 img{
  padding-bottom: 5px;
}

.feature-1 p,.feature-2 p,.feature-3 p,.feature-4 p{
  font-size: 10px !important;
}

.feature-1{
  /* position: relative;
  top:30px; */
  height: 180px;
}

.feature-2{
  /* position: relative;
  top:60px; */
  margin-top: 40px;
  height: 180px;
}
.feature-3{
  /* position: relative;
  top:50px; */
  margin: 20px 0 0 40px;
  height: 180px;

}

.feature-4{
  /* position: relative;
  top:100px; */
  margin: 60px 0 0 40px;
  height: 180px;
}


/* Floating animation */
.feature-1 {
  animation: feature-1 3s ease-in-out infinite;
  animation-delay: 0s;
}

@keyframes feature-1 {
  0% {
    transform: translateY(0); /* Start at original position */
  }
  50% {
    transform: translateY(20px); /* Move 20px down */
  }
  100% {
    transform: translateY(0); /* Move back to original position */
  }
}

.feature-2 {
  animation: feature-2 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes feature-2 {
  0% {
    transform: translateY(0); /* Start at original position */
  }
  50% {
    transform: translateY(20px); /* Move 20px down */
  }
  100% {
    transform: translateY(0); /* Move back to original position */
  }
}

.feature-3 {
  animation: feature-3 3s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes feature-3 {
  0% {
    transform: translateY(0); /* Start at original position */
  }
  50% {
    transform: translateY(20px); /* Move 20px down */
  }
  100% {
    transform: translateY(0); /* Move back to original position */
  }
}

.feature-4 {
  animation: feature-4 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes feature-4 {
  0% {
    transform: translateY(0); /* Start at original position */
  }
  50% {
    transform: translateY(20px); /* Move 20px down */
  }
  100% {
    transform: translateY(0); /* Move back to original position */
  }
}


.offer-ttl{
  color: #A020F0;
}

.offer-anchor{
  text-decoration: none;
  display: inline-block !important;
  
}

.offer-link{
  
  padding:10px 20px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.offer-type{
  color: #474D6B;
  font-size:12px !important ;
  margin-bottom: 0;
}
.offer-link .primary-span{
  font-size: 10px !important;
  color: #A020F0 ;
}

.offer-link .secondary-span{
  font-size: 10px !important;
  color: #C52092 ;
}

.offer-link .primary-span::before{
   content: "";                
      display: inline-block;
      width: 5px;                 
      height: 5px;
      background-color: #A020F0;   
      border-radius: 50%;         
      margin-right: 8px;          
      /* vertical-align: middle; */
  
}
.offer-link .secondary-span::before{
   content: "";                
      display: inline-block;
      width: 5px;                 
      height: 5px;
      background-color: #C52092;   
      border-radius: 50%;         
      margin-right: 8px;          
      /* vertical-align: middle; */
  
}



.offer-link .waxing-span::before{
   content: "";                
      display: inline-block;
      width: 5px;                 
      height: 5px;
      background-color: #C52092;   
      border-radius: 50%;         
      margin-right: 8px;          
      /* vertical-align: middle; */
  
}

.offer-anchor-main{
display: flex;
justify-content: flex-start;
gap: 20px;
flex-wrap: wrap;
padding: 20px 0px;
}
.subscript{
  margin-left: -3px !important;
}




/* features ccs ends here*/



/* gallery css starts here */

.glry-main{
  background-image: url(../images/glry-bg-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.glry-ttl-span{
  color: #A020F0;
  font-family: "Rubik", sans-serif;

}

.glry-ttl{
  color: #C52092;
 

}

.glry-para{
  color: #474D6B !important;
  padding-top: 10px;
  

}

.glry-cnt-main{
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
}

/* .glry-imgs-div{
  
} */




.gallery {
  display: flex;
  flex-wrap: wrap;
  gap:30px;
  /* border: 10px solid #fff; */
  width: calc(100% - 50px);
  /* margin: 60px auto 0; */
}

.gallery a {
  display: block;
  text-decoration: none;
  width: 30%;
  overflow: hidden;
  outline: none;
}

.gallery a:nth-child(4) {
  display: block;
  text-decoration: none;
  width: 63.5%;
  overflow: hidden;
  outline: none;
}

.gallery a:nth-child(5) {
  display: block;
  text-decoration: none;
  width: 30%;
  overflow: hidden;
  outline: none;
}


.gallery a img {
  height: 100%;
  transform: scale(1, 1);
  transition: all 300ms ease;
}

.gallery a img:hover {
  transform: scale(1.1, 1.1);
}



.bg {
  /* width: 100%; */
  height: 200px;
  background-size: cover;
  transform: scale(1, 1);
  transition: all 300ms ease;
  border-radius: 10px;
 
}

.bg:hover {
  transform: scale(1.1, 1.1);
  border-radius: 3px !important;
}

@media (max-width: 991px) {
  .gallery a {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .gallery a {
    width: 100%;
  }

  .bg {
    height: 300px;
  }
}

h1 a {
  color: #000;
}






/* gallery css ends here */


/* care products css starts here */


.products-main{
  display: flex;
  gap:20px;
  flex-wrap: nowrap;
  /* justify-content: space-between; */
 
  
}

.products-left-div{
  margin: 0px !important;

}

.products-right-div{
  display: flex;

  gap:20px;
  flex-wrap: wrap ;
   padding: 0px !important;
}
.product-1 img{
  height: 100% !important;
}
.product-2 img{
  height: 100% !important;
}
.product-3 img{
  height: 100% !important
}
.product-4 img{
  height: 100% !important;
}

.product-1,.product-2,.product-3,.product-4{
  width: 48%;
  /* margin: 10px; */
  
}

.products-left-div,.product-1,.product-2,.product-3,.product-4{
  overflow: hidden;
}

.product-1:hover .products-ttl{
bottom: 100px !important;
transition: all 0.5s ease-out;

}
.product-2:hover .products-ttl{
  bottom: 100px !important;
  transition: all 0.5s ease-out;
}
.product-3:hover .products-ttl{
  bottom: 100px !important;
  transition: all 0.5s ease-out;
}
.product-4:hover .products-ttl{
  bottom: 100px !important;
  transition: all 0.5s ease-out;
}


.product-1:hover img{
  transform: scale(1.2);
  transition: all 0.5s ease-out;
  filter: brightness(50%);

}
.product-2:hover img{
  transform: scale(1.2);
  transition: all 0.5s ease-out;
  filter: brightness(50%);

}
.product-3:hover img{
  transition: all 0.5s ease-out;
  transform: scale(1.2);
  filter: brightness(50%);

}
.product-4:hover img{
  transition: all 0.5s ease-out;
  transform: scale(1.2);
  filter: brightness(50%);

}

.products-left-div img{
  height: 100%;
}

.products-left-div:hover img{
   transition: all 0.5s ease-out;
  transform: scale(1.2);
  filter: brightness(50%);

  
}

.products-ttl{
  position: relative;
  bottom: 0px;

  text-align: center;
  
}

.products-ttl h6{
  padding: 10px 20px;
  background-color: #ffffff;
  color: #A020F0;
  display: inline-block;
  border-radius: 5px;
}

.products-left-div:hover .products-ttl{
  bottom: 100px;
  transition: all 0.5s ease-out;
}

.care-products-ttl{
  color: #A020F0;
}

.care-products-ttl span{
   color: #C52092;
  font-weight: bold;
   font-family: "Rubik", sans-serif !important;
}

.product-1 p{
   color: #474D6B;
  text-align: center;
  padding-top: 10px;
}




/* care products css ends here */


/* contact info css starts */


.contact-main{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  top:75px;
 
}

.map{
   height: 300px;
    border-radius: 10px ;
    position: relative !important;
    top:150px !important;
}

.contactinfo-main{
  background-color: #A020F0;
}

.contactinfo-div p{
  margin: 0px !important;
}

.contactinfo-div h4,.contactinfo-div p{
  color: #ffffff;
  
  padding-bottom: 10px;


}
.contactinfo-div{
  position: relative;
  top:70px;
  display: flex;
  align-self: flex-start;
  flex-direction: column;
  align-self: self-end;
  

}
.contactinfo-div-2{
  display: flex;
  align-self: flex-start;
  flex-direction: column;
  align-self: self-end;
  position: relative;
  top:90px !important;
 
  
}


.contactinfo-div-2 h4{
  color: #C52092;
  padding-bottom: 10px;
}


.contactinfo-div-2 p{
  color: #474D6B;
  margin: 0px !important;
}
.weekdays-div p{
  color: #474D6B;
  font-size: 10px !important;
  font-weight: bolder;
}
.weekdays-div span{
  color: #A020F0;
 
  font-weight: bolder;
}



.timings-div{
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
 
}

.weekdays-div{
  width: 100%;
   background-color: #ffff;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 5px;
}
.weekends-div{
  width: 100%;
   background-color: #ffff;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 5px;
  
}
.festivals-div{
  width: 100%;
   background-color: #ffff;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 5px;
}

.calender-icon{
  font-size: 27px;
  width: 50px;
  height: 50px;
  padding: 12px;
  background-color: #F3DFFF;
  border-radius: 50%;
}






/* contact info css ends */



/* footer css starts here */


.ftr-main{
  position: relative;
  top: 200px;
  display: flex;
  flex-wrap: wrap;
  background-color: #C52092;
}

.nav-links-main ul li a{
  color: #Ffffff;
  font-size: 16px !important;
  font-weight: bolder;
  text-decoration: none;
  padding: 0 5px;
  margin: 0 5px;
  
}

.tc-links-main ul li a{
  color: #ffffff;
  font-size: 12px !important;
  text-decoration: none;
  padding: 0 15px;
  border-right:1px solid #ffffff ;

}

.blog{

  border-right:none !important ;

}





/* footer css ends here */


.copyright-main{
  background-color: #F6E9FE;
  padding: 20px;
  position: relative;
    top: 200px;
}
.copyright-main p{
  color: #300A48;
  
}


/* whatsapp css starts here */


.float {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 90px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

/* .my-float {
  margin-top: 13px;
} */

.float{
  color: #ffffff !important;
  text-decoration: none;
}


/* whatsapp css ends here */


/* back-to-top css starts here */


button.back-to-top{
  margin: 0 !important;
  padding: 0 !important;
  background: #300A48;
	height: 0px;
  width: 0px;
  overflow: hidden;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
  color: transparent;
	clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
	bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 100;
  transition: all .2s ease-in-out;
}
button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus,{
  outline: 0 !important;
}
/* button.back-to-top::before {
  content: "\f077";
  font-family: "FontAwesome";
  display: block;
  vertical-align: middle;
  margin: -5px 0 auto;
} */
button.back-to-top.show {
  display: block;
  background: #300A48;
  color: #00ab6c;
  font-size: 25px;
  right: 25px;
	bottom: 20px;
  height: 50px;
  width: 50px;
  visibility: visible;
	box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}
button.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

.back-to-top img{
  width: 35px;
  height: 35px;
}


/* back-to-top css ends here */