@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  padding: 0px;
  margin: 0px;
}

body {
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #000;
  font-family: "Archivo", sans-serif;
}

a {
  text-decoration: none;
}

p{

  color: #777777;
  font-size: 16px!important;
  font-weight: 500;
}

.topbar {
  padding: 10px 0px;
  background: #FF982F;
}

.fa-phone {
  transform: rotate(90deg);
}

.topbar ul {
  justify-content: end;
  margin-bottom: 0px;
  display: flex;
  gap: 15px;
  padding: 0px;
  line-height: normal;
  color: #fff;
}

.topbar ul li i {
  margin-right: 10px;
}

.topbar ul li a {
  color: #fff;
}

.topbar ul li {
  list-style: none;
}

.logo img {
  max-width: 180px;
}
/* animation menu hamburger */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 1200px) {
  .menu-btn {
    display: flex;
            margin-right: 15px;
  }
}
.menu-btn .menu-btn__lines,
.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: black;
  transition: all 0.4s ease-in-out;
}
.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  content: "";
  position: absolute;
}
.menu-btn .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}
.menu-btn .menu-btn__lines::after {
  transform: translateY(0.5rem);
}
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}
.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #000;
}
.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #000;
}
.expand-btn:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: " \25BE";
  opacity: 0.75;
  transform: translateY(-50%) rotate(0);
  transition: 0.25s;
}
.expand-btn.open {
  color: #ff5722;
}
.expand-btn.open:after {
  transform: translateY(-50%) rotate(180deg);
}
/* navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}
@media (max-width: 1200px) {
  .navbar {
    padding: 10px 0px;
  }
}
.navbar.sticky {
  position: sticky;
  z-index: 999;
  top: 0;
}
.navbar .logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  width: 20%;
}

.user_action{

  justify-content: end;


}
.navbar .menu-items {
  display: flex;
  align-items: center;
}
.navbar .menu-items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: #222;
}
.navbar .menu-items::-webkit-scrollbar {
  width: 6px;
  background-color: #222;
}
.navbar .menu-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}
@media (max-width: 1200px) {
  .navbar .menu-items {
 scrollbar-gutter: stable;
        position: fixed;
        top: 0px;
        left: 0;
        display: block;
        width: 350px;
        height: 100%;
        padding-top: 30px;
        padding-bottom: 100px;
        padding-right: 10px;
        background: #ffffff;
        overflow-y: auto;
        transform: translateX(-100vh);
        transition: 0.3s ease-out;
  }
  .navbar .menu-items.open {
    transform: translateY(0);
  }
}
.navbar .menu-items > li > .menu-item {
  padding: 1.5rem 1rem;
}
@media (max-width: 1200px) {
  .navbar .menu-items > li > .menu-item {
    padding: 1rem 1rem;
  }
}
.navbar .menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1200px) {
  .navbar .menu-items li a {
    padding: 10px 1rem;
  }
}
.navbar .dropdown {
  position: relative;
}
@media (min-width: 1024px) {
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown:hover > .expand-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (min-width: 1024px) {
  .navbar .dropdown .dropdown-right .expand-btn:after,
  .navbar .dropdown .dropdown-left .expand-btn:after {
    right: 0.625rem;
  }
}
@media (min-width: 1024px) {
  .navbar .dropdown-menu li a:hover {
    color: #a5d5ff;
  }
  .navbar .dropdown-menu li a {
    color: #fff;
  }
  .navbar .dropdown-menu {
    position: absolute;
    top: 65px;
    right: 0;
    display: block;
    left: 0;
    width: 190px;
    padding: 5px 0;
    background: #004a89;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    box-shadow: 0 20px 50px 0 #000;
    visibility: hidden;
    transition: all 0.4s ease;
  }
}
@media (max-width: 1200px) {
  .navbar .dropdown-menu {
    display: none;
    position: relative;
    top: 0;
    width: 100%;
    padding-left: 1rem;
    overflow: hidden;
  }
}
.navbar .menu-right {
  top: 0;
  left: 100%;
}
@media (max-width: 1200px) {
  .navbar .menu-right {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding-left: 1.5rem;
  }
  .navbar .menu-right:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #000;
    transform: translateY(-50%);
  }
}
.navbar .menu-left {
  top: 0;
  left: -100%;
}
@media (max-width: 1200px) {
  .navbar .menu-left {
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 1.5rem;
  }
  .navbar .menu-left:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #000;
    transform: translateY(-50%);
  }
}
.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 16px;
  transition: 0.25s;
}
.navbar .menu-item:hover {
  color: #9C1C5C;
}
.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}
.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}
.navbar ul li a {
  position: relative;
  text-decoration: none;
  color: #000;
}
@media (min-width: 1024px) {
  .navbar .dropdownMega {
    position: inherit !important;
  }
}
@media (min-width: 1024px) {
  .navbar .mega-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 650px;
    opacity: 0;
    visibility: hidden;
    transition:
      all 0.4s ease-out 0s,
      visibility 0.1s linear 0s;
  }
}
@media (max-width: 1200px) {
  .navbar .mega-menu {
    position: relative;
    display: none;
    padding-left: 0;
  }
}
.navbar .mega-menu .content {
  display: flex;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: #171b27;
  -webkit-box-shadow: 0 20px 50px 0 #000;
  box-shadow: 0 20px 50px 0 #000;
}
@media (max-width: 1200px) {
  .navbar .mega-menu .content {
    grid-template-columns: auto;
  }
}
@media (min-width: 1024px) {
  .navbar .mega-menu .content {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 1200px) {
  .navbar .mega-menu .content .col {
    padding: 0;
    width: 100%;
  }
}
.navbar .category .content .col .img-wrapper {
  margin: 1rem 0;
}
.navbar .blog .content {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 1024px) {
  .navbar .blog .content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.navbar .blog .content .col .img-wrapper {
  margin-bottom: 1rem;
}
.navbar .blog .content .col .menu-title {
  font-weight: normal;
}
.navbar .blog .content .col .menu-title a {
  transition: 0.25s;
}
.navbar .blog .content .col .menu-title a:hover {
  color: #ff5722;
}
.navbar .content .col {
  display: flex;
  flex-direction: column;
}
.navbar .content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}
.navbar .content .col .img-wrapper:hover img {
  transform: scale(1.1);
}
.navbar .content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.navbar .content .col img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}
.navbar .content .col .menu-title {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.125rem;
  border-left: 2px solid #ff5722;
  padding-left: 0.625rem;
}
@media (max-width: 1200px) {
  .navbar .content .col .menu-title {
    font-size: 0.875rem;
  }
}
.navbar .content .col p {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.813rem;
  line-height: 1.6rem;
  color: #fff;
}
.navbar .content .col .mega-links {
  padding-left: 1rem;
  border-left: 1px solid #3c3c3c;
}
@media (max-width: 1200px) {
  .navbar .content .col .mega-links {
    border-left: 0;
    padding-left: 0;
  }
  .navbar .content .col .mega-links li {
    margin: 0;
  }
  .navbar .content .col .mega-links li a {
    padding: 0 0.5rem;
  }
}
.navbar .content .col .mega-links li {
  margin: 1rem 0;
}
.navbar .content .col .mega-links li a {
  padding: 0;
}
@media (max-width: 1200px) {
  .overflow {
    overflow: hidden;
  }
}
@media (max-width: 1200px) {
  .overlay {
    position: fixed;
    z-index: 500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease-in-out,
      visibility 0.3s ease-in-out;
  }
  .overlay.overlay--active {
    opacity: 1;
    visibility: visible;
  }
}

.topbar p {
  margin: 0px;
  color: white;
  font-size: 14px!important;
  font-weight: 500;
}

.user_icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.user_icons i {
  font-size: 20px;
}

.search_product input {
  padding: 8px 15px;
  width: 230px;
  border: 1px solid #d4d4d4;
  border-radius: 30px;
}

.search_product input:focus {
  outline: none;
}

.product-swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content {
  width: 100%;
  text-align: center;
}

.content h1 {
  font-size: 42px;
  margin-bottom: 0px;
  font-family: "Marcellus", serif;
  color: white;
}

.content p {
  color: #fff;
  margin-bottom: 25px;
}

.content button {
  background: #FF982F;
  color: #fff;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
}

/* Image Section */
.image-wrap {
  width: 55%;
  display: flex;
  justify-content: center;
}

/* Reveal Animation */
.image-box {
  width: 260px;
  height: 340px;
  background: #2bb3ad;
  border-radius: 0 0 140px 140px;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateX(80px);
  transition: all 0.9s ease;
}

.image-box.dark {
  background: #1fa6a0;
}

.swiper-slide-active .image-box {
  opacity: 1;
  transform: translateX(0);
}

.image-box img {
  width: 160px;
  transform: rotate(-10deg);
}

.hero_section {
  padding: 60px 0;
 /* background-image: url(../images/hero-bg.png);*/
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -88px;
  background-size: cover;
}





.about_us{ padding: 60px 0; overflow: hidden;}

.top_categories:before{

    position: absolute;
    width: 100%;
    content: "";
    top: -15px;
    background-image: url(../images/top.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 75px;
}

.top_categories:after{

    position: absolute;
    width: 100%;
    content: "";
    bottom: -15px;
    background-image: url(../images/bottom.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 75px;
}

.top_categories_box p{ margin-top: 10px; color: black;}

.top_categories{ padding: 100px 0; background-color: #F7F7F7; position: relative;}
/* -----------------------Productsinlove-------------------------- */
.product_box_img img {
  width: 100%;
  height: 245px;
  aspect-ratio: 1 / 1; /* square */
  object-fit: cover;
}

.product_box_img {
  background-color: #d9ecec;
}

.product_action_btn{

  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: absolute;
  top: 10px;
  right: -40px;
    transition: 0.6s;

}
.product_action_btn li{ 

  list-style: none;

}

.product_action_btn i{

    color: #008080;

}

.product_box {
  background-color: #fff;
  border: 1px solid #e9e9e9;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding: 16px;
}

.product_box:hover{ 

border-color: #9C1C5C;

}

.product_box:hover .product_action_btn{

  right: 10px;
  transition: 0.6s;


}

.product_box h4 {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* change to 2 for two lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: black;
  font-weight: 600;
}

.swiper-pagination-bullet-active{

  background-color: #FF982F!important;

}

.swiper-pagination{ display: none;}

.product_rating {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product_rating i {
  color: #ffab00;
}

.product_box p {
  font-weight: 600;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 0px;
}

.cart_btn {
  width: 33px;
  height: 33px;
  background-color: #008080;
  border: none;
  border-radius: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart_btn {
  bottom: 20px;
  right: 20px;
  position: absolute;
}

.product_box_img {
  position: relative;
  overflow: hidden;
}

.product_box_img img {
  width: 100%;
  display: block;
  transition: opacity 0.5s ease-in-out;
  border-radius: 10px;
}

.product_box_img .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product_box:hover .img-main {
  opacity: 0;
}

.product_box:hover .img-hover {
  opacity: 1;
}

.products_in_love {
  padding: 60px 0px;
}

/* -----------------------new_arival-------------------------- */




.blob-btn {
position: relative;
    padding: 9px 36px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #FF982F;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease;
      border-radius: 30px;
}

/* Text stays on top */
.blob-btn {
  z-index: 1;
}

/* Blob */
.blob-btn .blob {
  position: absolute;
  width: 200%;
  height: 200%;
  background: #eb7a07;
  top: 100%;
  left: -50%;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease;
  border-radius: 30px;
}

/* Hover effect */
.blob-btn:hover {
  color: #fff;
}

.blob-btn:hover .blob {
  top: -50%;
}

.big_new_arrival_big_img {
  width: 80%;
  border-radius: 10px;
}


.categories_img {
  position: relative;
  overflow: hidden;
}

/* Common overlay style */
.categories_img::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15); /* transparent white */
  transform: rotate(45deg);
  transition: all 0.6s ease;
  pointer-events: none;
}



/* Bottom Right se */
.categories_img::after {
  bottom: -150%;
  right: -250%;
}

/* Hover effect */
.categories_img:hover::before {
  top: -50%;
  left: -50%;
}

.categories_img:hover::after {
  bottom: -50%;
  right: -50%;
}




/* -----------------------testimonilas-------------------------- */

.quote_icon_img{     position: absolute;
    top: 15px;
    left: 38px;
    font-size: 31px;
    color: #008080;}
.testimonils_slide {

position: relative;
padding: 40px;
background-color: white;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); border-radius: 30px;
    margin: 10px 0;


}

.testimonils_slide p{ font-size: 14px!important;}


.quote_icon{

  position: absolute; top: 0px;
  left: 0px;
      font-size: 31px;
    color: #008080;

}

.testimonil_person img {

  width: 60px;
  height: 60px;
  border-radius: 100%;

}

.testimonials_img_featured{ width: 60%; margin: auto; border-radius: 50% 50% 0 0;}


/* -----------------------footer-------------------------- */

footer a{ color: white;}
footer a:hover{ 

color: #eb7a07;

}


footer{

  background-color: #000;
  padding: 40px 0 0;


}

footer h4{


    color: #eb7a07;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;

}


.testimonils{ padding: 60px 0; background-color: white; background-image: url(../images/testi-bg.png); background-attachment: fixed;}
.company_info{

  list-style: none;

}
.company_info li{

  color: white;
  margin: 10px 0;

}

.company_info li a {

  color: white;
  transition: 0.6s;

}

.company_info li a:hover{ 

  margin-left: 5px;
    transition: 0.6s;
    color: #eb7a07;

}


.social_icons{

  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  list-style: none;
  justify-content: center;
  margin-top: 15px;

}

.social_icons li a{


  color: white;
  width: 30px;
  height: 30px;
  background-color: #282828;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.social_icons li a:hover{ 

  background-color: #eb7a07;

}

.copy_right{ margin-top: 30px; border-top: 1px solid #ffffff33; padding: 30px 0;}

.copy_right p{ color: white; font-size: 14px!important; font-weight: 500; margin: 0px;}

.copy_right a{ color: white; text-decoration: ;}


.swiper-button-next{ 


  background-color: white;
  width: 35px!important;
  height: 35px!important;
  display: flex;
  align-items: center!important;
  justify-content: center!important;
  border-radius: 100%!important;
}

.swiper-button-prev{

  
  background-color: white;
  width: 35px!important;
  height: 35px!important;
  display: flex;
  align-items: center!important;
  justify-content: center!important;
  border-radius: 100%!important;

}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 16px!important;
    color: #000!important;
    font-weight: bold!important;
    
}


.swiper-button-prev:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 16px!important;
    color: #000!important;
    font-weight: bold!important;
}

.mobile_search{ display: none;}

.mobile_search.search_product{

  width: 100%;
  margin-top: 8px;

}




.book_cunsult{ padding: 40px 0;}

.bg-light{

  background-color: #F3F3F3!important

}


.book_form .form-control:focus{ box-shadow: none; border: 1px solid #9C1C5C; }

.book_form .form-select:focus{ box-shadow: none; border: 1px solid #9C1C5C; }


.global_heading h3{

  font-family: "Philosopher", sans-serif;
  font-size: 38px!important;
  font-weight: 600;

}


header .container{ 

  background-color: white;
  border-radius: 60px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mid_menu{ width: 58.33%; justify-content: center;}


.action_btn{ width: 20.33%;}


header .blob-btn{ background-color: #9C1C5C; color: white;}
.about_img{ position: relative;}
.about_img {
  position: relative;
}

.about_img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 453px;
  height: 453px;
  background-image: url(../images/animated-circle.png);
  background-size: contain;
  background-repeat: no-repeat;

  /* FIX CENTER */
  transform-origin: center center;
  animation: spin 12s linear infinite;
}

/* Animation */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.about_img img{ position: relative; z-index: 9;    width: 79% !important;
    margin: auto;}



 .categories_img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 100%;
}

 .categories_img:hover img{ 

  border: 1px solid #9C1C5C;

 }

 .btn-success{

    background-color: #13A14E!important;
 }

 .text-success{

  color:#22A800!important;
  font-weight: 600;

 }



 .line-wrapper {
    position: relative;
    width: 90px;
    height: 10px;
    margin: 10px 0px 20px;
}

/* Base line */
.line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f37021;
  transform: translateY(-50%);
}

/* Moving rectangle */
.mid-rect {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #f37021;
  transform: translateY(-50%);
  animation: moveRect 2s infinite ease-in-out;
}

/* Animation */
@keyframes moveRect {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 0px);
  }
  100% {
    left: 0;
  }
}



.breadcrumb-section{
    position: relative;
    background: url(../images/slider1.webp) center / cover no-repeat;
    padding: 150px 20px 100px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-top: -88px;
    background-attachment: fixed;
    background-position: center;
}

.breadcrumb-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb-content{
    position:relative;
    z-index:2;
}

.breadcrumb-content h2{
    font-size:36px;
    margin-bottom:5px;
    color: white;
}

.breadcrumb{
    font-size:15px;
    justify-content: center;
}

.breadcrumb a{
    color:#ffcc70;
    text-decoration:none;
    transition:0.3s;
}

.breadcrumb a:hover{
    color:#fff;
}

.breadcrumb span{
    margin:0 5px;
}

.breadcrumb .active{
    color:#fff;
    font-weight:600;
}



.about_and_mision_vission{

  padding: 60px 0;

  
}


.value_item_block:not(:last-child) {
    padding-bottom: 48px;
}

.value_item_block {
    display: flex;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    gap: 120px;
}

.hero, .value_item_block, .vision_img {
    position: relative;
}

.value_inner_block .value_item_block:first-child:before {
    top: 50%;
}

.value_item_block:before {
    width: 24px;
    height: 24px;
    top: 50%;
    background-color:#eb7a07;
    border-radius: 50%;
}

.value_item_block.right {
    flex-direction: row-reverse;
    text-align: left;
}

.value_item_block:after, .value_item_block:before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
}

.value_content_block, .value_img_block {
    width: 50%;
}

.value_img img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.value_content_block, .value_img_block {
    width: 50%;
}


.value_title h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color:#eb7a07;
    margin: 0;
    letter-spacing: .25px;
}

.value_sub_title h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.165;
    color: #0f0f0f;
    margin: 0;
    padding: 8px 0 3px;
    letter-spacing: .25px;
}

.value_description p {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .10000000149011612px;
    font-weight: 500;
    margin: 0;
}

.value_inner_block .value_item_block:first-child:after {
    height: 50%;
    bottom: 0;
    top: auto;
}

.value_item_block:after {
    width: 2px;
    height: 100%;
    top: 0;
    background-color:#eb7a07;
}

.value_item_block:after, .value_item_block:before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
}

.astro-services-list li{

    color: #777777;
    font-size: 16px !important;
    font-weight: 500;
    margin: 10px 0;
list-style: none;
}

.founder_deatils{

  padding: 60px 0 0;

}

.founder_deatils img{ width: 100%;}

.founder_deatils ul li{

    color: #777777;
    font-size: 16px !important;
    font-weight: 500;

}


.contact_form .form-control:focus{

box-shadow: none;
border: 1px solid #eb7a07;

}

.contact_form a:hover{
  
  color: #9C1C5C!important;
  text-decoration: underline!important;

}

.contact_form .contact-card i{

  color: #9c1c5c;

 }

 .contact_form .blob-btn i{ 

  color: white;

 }


      .top-tabs .nav-link{
            border-radius:6px;
            margin-right:10px;
            background:#e9e9ee;
            color:#555;
        }
        .top-tabs .nav-link.active{
            background:linear-gradient(45deg,#7b4dff,#5a8dff);
            color:#fff;
        }
        .date-tabs .btn{
            border-radius:6px;
            padding:8px 20px;
        }
        .date-tabs .btn-primary{
            background:linear-gradient(45deg,#7b4dff,#9c4dff);
            border:none;
        }
        .horoscope-card{
            background:#fff;
            border-radius:8px;
            padding:20px;
            margin-bottom:15px;
            border:1px solid #eee;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        }

        .horoscope-card:hover{

border-color: #FF982F;

        }

        .horoscope-icon{
            font-size:40px;
            width:70px;
            text-align:center;
        }
        .sidebar{
            background:#fff;
            border-radius:8px;
            padding:20px;
            border:1px solid #eee;
        }
        .zodiac-header{
            background:#9c1c5c;
            color:#fff;
            padding:25px;
            border-radius:8px 8px 0 0;
            text-align:center;
        }
        .badge-custom{
            padding:6px 12px;
            border-radius:20px;
            font-size:12px;
        }

        .horoscope-card h6{     margin: 0px 0px 5px;
    font-size: 18px;}


        .zodiac-header img{ width: 145px; height: 145px; object-fit: cover; border-radius: 100%;}

        .zodiac-header h5{ 

          margin-top: 10px;

        }


   .astro_elements{

object-fit: contain;

        }


          .sidebar-box{
            background:#fff;
            border-radius:5px;
            margin-bottom:30px;
            position: sticky;
            top: 100px;
        }

        .sidebar-box h5{
            font-weight:600;
            margin-bottom:20px;
    border-bottom: 2px solid #9c1c5c;
            padding-bottom:10px;
        }

        .sidebar-box ul{
            list-style:none;
            padding:0;
        }

        .sidebar-box ul li{
            padding:8px 0;
            border-bottom:1px solid #cbcbcb;
        }

        .sidebar-box ul li:last-child{
            border-bottom:none;
        }

        .sidebar-box ul li a{
            text-decoration:none;
            color:#555;
            font-size:15px;
        }

        .sidebar-box ul li a:hover{
            color:#d35400;
        }

        .blog-content{
            background:#fff;
            border-radius:5px;
        }

        .blog-meta{
            font-size:14px;
            color:#888;
        }

        .blog-meta i{
            color:#d35400;
            margin-right:5px;
        }

        .blog-content h3{
            margin-top:20px;
            margin-bottom:15px;
            font-weight:600;
        }

        .blog-content p{
            line-height:1.8;
            font-size:15px;
        }

        .check-list{
            list-style:none;
            padding-left:0;
        }

        .check-list li{
            margin-bottom:8px;
            color:#777777;
          font-size: 16px !important;
    font-weight: 500;

        }

        .check-list li i{
            color:#28a745;
            margin-right:8px;
        }

        .section-title{
            font-weight:600;
            margin-top:25px;
            margin-bottom:15px;
        }

        .featured-img img{
            width:100%;
            border-radius:5px;
        }


  .book_cunsultaion {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.overlay_book_cunsultaion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

.book_cunsultaion p{ color: white;}

.horoscope{

  overflow: hidden;

}

.testimonials_all{

  padding: 40px 0;

}


.astro_gallery{ 

  padding: 60px 0 40px;

}

.gallery-container img{ height: 272px; object-fit: cover;}



.awards-section h4{

font-size: 18px;
margin-top: 10px;

}

.award-card img{

  height: 232px;
  object-fit: cover;
  border-radius: 10px;

}
        

.award-card{

      background-color: white;
    padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 32px 0;
    border-radius: 10px;
    text-align: center;

}