* {
  box-sizing: none;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');


body {
  font-family: Poppins !important;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: Poppins !important;
}

h1 {
  font-size: 48px !important;
}

h2 {
  font-size: 42px !important;
}

h3 {
  font-size: 36px !important;
}

h4 {
  font-size: 30px !important;
}

h5 {
  font-size: 28px !important;
}

h6 {
  font-size: 24px !important;
}

p {
  font-size: 16px !important;
}



.fixed-top {
  position: fixed !important;
}

.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.text-brown {
  color: #fe0000 !important;
}

.text-red {
  color: #fb1604 !important;
}

.text-green {
  color: #239B56 !important;
}

.text-blue {
  color: #0106FF !important;
}

.border-right-none {
  border: none !important;
}

.banner-main-carousel {
  position: relative;
  height: 860px;
  overflow: hidden;

}

.banner-main-carousel .banner-bg-video {
  width: 100%;
  height: 100%;

}

.banner-main-carousel .banner-bg-video video {
  object-fit: cover;
  width: 100%;
  height: 100%;

}

.banner-main-carousel .banner-inner-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 300px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}


.banner-main-carousel .banner-inner-content .carousel-content h6 {
  font-size: 16px !important;
  font-weight: 600;
  color: #920606;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: #FFB700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.banner-main-carousel .banner-inner-content .carousel-content h2 {
  color: #fff;
  font-family: 'Philosopher', sans-serif !important;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 60px !important;
  margin-bottom: 40px;
}



.banner-main-carousel .banner-inner-content .carousel-content p {
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 1px;

}

.banner-main-carousel .banner-inner-content .carousel-content .points p:nth-child(1) {
  animation-delay: 1.6s;
}

.banner-main-carousel .banner-inner-content .carousel-content .points p:nth-child(2) {
  animation-delay: 1.8s;
}

.banner-main-carousel .banner-inner-content .carousel-content .points p:nth-child(3) {
  animation-delay: 2.4s;
}

.banner-main-carousel .banner-inner-content .carousel-content .points p:nth-child(4) {
  animation-delay: 2.8s;
}

.banner-main-carousel .banner-inner-content .carousel-content p svg {
  margin-right: 10px;
  color: #FFB700;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.banner-main-carousel .banner-inner-content .carousel-content .banner-btn {
  margin-top: 60px;
  position: relative;

}

.banner-main-carousel .banner-inner-content .carousel-content .banner-btn a {
  position: relative;
  display: inline-block;
  z-index: 2;
  padding: 10px 20px;
  color: #100546;
  font-weight: 600;
  border: 1px solid #fff;
  margin-right: 10px;
  background-color: #FFB700;
  transition: all 0.4s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: visible;
  }

  to {
    opacity: 1;
    visibility: visible;
  }
}

.banner-main-carousel .banner-inner-content .carousel-content .banner-btn a:last-child {

  background-color: #dd000b;
  color: #fff;
}

.banner-main-carousel .banner-inner-content .carousel-content .banner-btn a:hover {
  background-color: #dd000b;
  color: #fff;
}

.banner-main-carousel .banner-inner-content .right-content {
  position: relative;
}

.banner-main-carousel .banner-inner-content .right-content p {
  position: absolute;
  transform: rotate(90deg) translateY(-50%);
  top: 50%;
  right: 0;
  background-color: #FFB700;
  padding: 6px 20px;
  color: #920606;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 20px;
  animation: zoomInBannerTxt 1s infinite alternate;
}

@keyframes zoomInBannerTxt {
  0% {
    transform: rotate(90deg) translateY(-50%) scale(.9);
  }

  100% {
    transform: rotate(90deg) translateY(-50%) scale(1.1);

  }
}


.banner-main-carousel .banner-inner-content .right-content img {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

@media (min-width:1200px) and (max-width:1400px) {
  .banner-main-carousel .banner-inner-content .carousel-content h2 {
    font-size: 50px !important;
  }

}

@media (min-width:992px) and (max-width:1200px) {
  .banner-main-carousel {
    position: relative;
    height: 820px;
  }

  .banner-main-carousel .banner-inner-content {
    padding-top: 260px;
  }

  .banner-main-carousel .banner-inner-content .carousel-content h2 {
    font-size: 46px !important;
  }

  .banner-main-carousel .banner-inner-content .right-content img {
    margin: 0;
  }
}

@media (min-width:768px) and (max-width:992px) {
  .banner-main-carousel {
    position: relative;
    height: 900px;
  }

  .banner-main-carousel .banner-inner-content {
    padding-top: 300px;
  }

  .banner-main-carousel .banner-inner-content .carousel-content h2 {
    font-size: 46px !important;
  }

  .banner-main-carousel .banner-inner-content .right-content {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(10px);
  }

  .banner-main-carousel .banner-inner-content .right-content p {
    display: none;
  }

  .banner-main-carousel .banner-inner-content .right-content img {
    display: inline-block;
    margin: 0 auto;
  }
}

@media (min-width:568px) and (max-width:768px) {
  .banner-main-carousel {
    position: relative;
    height: 860px;
  }

  .banner-main-carousel .banner-inner-content {
    padding-top: 300px;
  }

  .banner-main-carousel .banner-inner-content .carousel-content h2 {
    font-size: 36px !important;
    margin-bottom: 20px;
  }

  .banner-main-carousel .banner-inner-content .carousel-content .banner-btn {
    margin-top: 30px;
    position: relative;
  }

  .banner-main-carousel .banner-inner-content .right-content {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
  }

  .banner-main-carousel .banner-inner-content .right-content p {
    display: none;
  }

  .banner-main-carousel .banner-inner-content .right-content img {
    display: inline-block;
    margin: 0 auto;
  }
}

@media (max-width:568px) {
  .banner-main-carousel {
    position: relative;
    height: 820px;
    background-color: #100546;
  }

  .banner-main-carousel .banner-bg-video {
    display: none;

  }

  .banner-main-carousel .banner-inner-content {
    padding-top: 300px;
  }

  .banner-main-carousel .banner-inner-content .carousel-content h6 {
    font-size: 14px !important;
    margin-bottom: 20px;
  }

  .banner-main-carousel .banner-inner-content .carousel-content h2 {
    font-size: 1.5rem!important;   
    margin-bottom: 20px;
  }

  .banner-main-carousel .banner-inner-content .carousel-content .banner-btn {
    margin-top: 30px;
    position: relative;
  }

  .banner-main-carousel .banner-inner-content .right-content {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
  }

  .banner-main-carousel .banner-inner-content .right-content p {
    display: none;
  }

  .banner-main-carousel .banner-inner-content .right-content img {
    display: inline-block;
    margin: 0 auto;
    width: 80px;
    height: 80px;
  }
}








.section-title {
  margin: 20px 0;
  position: relative;
}

.section-title.text-center {
  text-align: center;
}

.section-title .title {
  font-family: "Philosopher", sans-serif !important;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
  color: #010027;
}

.section-title .title span {
  position: relative;
  font-weight: 700;
  color: #dd000b;
}




.section-title .borderbtm {
  width: 180px;
  height: 3px;
  background: #010027;
  border-radius: 10px;
  position: relative;


}

.section-title .borderbtm::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(to right, #970000, #F0CB35, #fff);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-radius: 50%;
  animation: borderSlide 5s infinite alternate;
}

@keyframes borderSlide {
  0% {
    left: 0;
    transform: translateY(-50%) rotate(0);
  }

  100% {
    left: 90%;
    transform: translateY(-50%) rotate(360deg);
  }
}

.section-title.text-center .borderbtm {
  margin: 0 auto;
}

.section-title .tagline {
  width: 80%;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 20px !important;
}

.section-title.text-center .tagline {
  width: 80%;
  margin: 10px auto;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: rgba(0, 0, 0, 0.6);
}


@media (max-width:768px) {
  .section-title {
    margin: 20px 0 40px;
    position: relative;
  }

  .section-title .title {
    font-family: "Philosopher", sans-serif !important;
    font-weight: 600;
    font-size: 36px !important;
  }

  .section-title.text-center .tagline {
    width: 100%;
    margin: 10px auto;
  }

}


.main-btn {
  padding: 10px 20px;
  background-color: #dd000b;
  border: 2px solid #dd000b;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.main-btn:hover {
  background-color: #000;
  color: #fff;
  border-color: #fff;
}

.btn-grp .main-btn:nth-child(2) {
  background-color: #39bd00;
  color: #000;
  border-color: #fff;
  margin-left: 10px;
}

@media (max-width:568px) {
  .main-btn {
    padding: 6px 10px;
  }
}

.about-main-section {
  padding: 40px 0 120px;
  position: relative;
  background-image: url(../img/bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;

}

.about-main-section .left-content .tagline {
  color: #dd000b;
  text-align: center;
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

.about-main-section .left-content p.text {
  line-height: 34px;
  font-weight: 500;
  margin-top: 20px;
  text-align: justify;
  color: rgba(0, 0, 0, 0.8);
}


.about-main-section .about-exp-wrap {
  margin: 40px 0 70px;
}

.about-main-section .about-exp-wrap .experience-box {
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  transition: all 0.3s;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.about-main-section .about-exp-wrap .experience-box .box-img {
  margin-bottom: 10px;
}

.about-main-section .about-exp-wrap .experience-box .box-img img {
  width: 80px;
  height: 80px;
  transition: all 0.3s;
  padding: 14px;
}

.about-main-section .about-exp-wrap .experience-box .box-content p {
  font-size: 40px !important;
  font-weight: 600;
  color: #dd000b;
  margin-bottom: 0;
  transition: all 0.3s;
}


.about-main-section .about-exp-wrap .experience-box:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  background-color: #dd000b;
}

.about-main-section .about-exp-wrap .experience-box:hover .box-img img {
  transform: scale(1.17);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.about-main-section .about-exp-wrap .experience-box:hover .box-content p {
  color: #fff;
}

.about-main-section .about-exp-wrap .experience-box .box-content span {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

.about-main-section .about-exp-wrap .experience-box:hover .box-content span {
  color: #fff;
}

.about-main-section .carousel .carousel-item {
  height: 600px;
}

.about-main-section .carousel .carousel-item .img-box {
  padding: 40px;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  position: relative;
}

.about-main-section .carousel .carousel-item .img-box::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 90%;
  height: 90%;
  border-top-right-radius: 160px;
  border-bottom-left-radius: 160px;
  border: 10px solid #010027;
  background-color: #FFB700;
  opacity: .9;
}

.about-main-section .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 140px;
  border-bottom-left-radius: 140px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;

}


@media (min-width:1200px) and (max-width:1400px) {
  .about-main-section .carousel .carousel-item {
    height: 550px;
  }

  .about-main-section .carousel .carousel-item .img-box {
    width: 95%;
  }
}

@media (min-width:992px) and (max-width:1200px) {
  .about-main-section .carousel .carousel-item {
    height: 520px;
  }

  .about-main-section .carousel .carousel-item .img-box {
    width: 100%;
    padding: 30px 30px;
  }

}

@media (min-width:768px) and (max-width:992px) {


  .about-main-section .carousel .carousel-item {
    height: 540px;

  }

  .about-main-section .carousel .carousel-item .img-box {
    width: 80%;
    padding: 30px 30px;
  }

}

@media (min-width:568px) and (max-width:768px) {

  .about-main-section .carousel {
    margin-bottom: 20px;
  }

  .about-main-section .carousel .carousel-item {
    height: 540px;

  }

  .about-main-section .carousel .carousel-item .img-box {
    width: 100%;
    padding: 30px 30px;
  }

}

@media (max-width:568px) {

  .about-main-section .carousel {
    margin-bottom: 20px;
  }

  .about-main-section .carousel .carousel-item {
    height: auto;
  }

  .about-main-section .carousel .carousel-item .img-box {
    width: 100%;
    padding: 30px 30px;
  }

}

@media (max-width:400px) {

  .about-main-section .carousel {
    margin-bottom: 20px;
  }

  .about-main-section .carousel .carousel-item {
    height: auto;
    min-height: 340px;
  }

  .about-main-section .carousel .carousel-item .img-box {
    width: 100%;
    padding: 0;
  }

  .about-main-section .carousel .carousel-item .img-box img {
    border-radius: 0 !important;
  }

}


.our-services-section {
  padding: 80px 0 190px;
  position: relative;
  background-color: #FFB700;
  overflow: hidden;
}

.our-services-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/astrology-bg.png);
  opacity: .2;
}

.our-services-section::after {
  position: absolute;
  content: '';
  background: url(../img/shape.svg) no-repeat;
  width: 100%;
  height: 273px;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(-1);
  z-index: 1;
}

.our-services-section .section-title .title {
  color: #010027;
}

.our-services-section .section-title .title span {
  color: #fff;
}

.our-services-section .section-title p {
  font-weight: 400 !important;
  font-size: 18px !important;
}


.service-box {
  width: 100%;
  position: relative;
  height: 550px;
  margin-bottom: 20px;
}

.service-box .box-img {
  width: 100%;
  height: 340px;
  overflow: hidden;
  transition: all 0.4s;
}

.service-box:hover .box-img {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;

}

.service-box .box-img img {
  width: 100%;
  height: 100%;
  transition: all 0.4s;

}

.service-box:hover .box-img img {
  transform: scale(1.1) rotate(2deg);
  filter: grayscale(60%);
}

.service-box .box-content {
  width: 100%;
  height: 260px;
  background-color: #fff;
  padding: 0 10px 20px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

}

.service-box:hover .box-content {
  bottom: 20px;
}

.service-box .box-content::before {
  content: '';
  position: absolute;
  background: url(../img/shape.svg) no-repeat;
  width: 100%;
  height: 273px;
  left: 0;
  bottom: 95%;
  transform: rotate(180deg);

}

.service-box .box-content h6 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px !important;
  padding-bottom: 10px;
  position: relative;


}

.service-box .box-content h6 a {

  background: linear-gradient(to right, #fd7e14, #dd000b, #920606);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 400% 400%;
  animation: slideText 3s infinite alternate;
}

@keyframes slideText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.service-box .box-content h6::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 80px;
  height: 2px;
  background-color: #dd000b;
}

.service-box .box-content p {
  color: #010027;
  line-height: 30px;
  height: 110px;
  overflow: scroll;
}

.service-box .btn-grp a:nth-child(2) {
  background-color: #39bd00;
}

.our-services-section .main-btn {
  position: relative;
  z-index: 3;
}

@media (min-width:1200px) and (max-width:1400px) {
  .service-box .box-content {
    height: 300px;
  }

  .service-box .box-content p {
    color: #010027;
    line-height: 30px;
    height: 130px;
    overflow: scroll;
  }

  .service-box .box-content h6 {
    font-weight: 600;
    font-size: 22px !important;

  }
}

@media (min-width:768px) and (max-width:992px) {
  .service-box .box-img {
    height: 300px;
  }

  .service-box .box-content {
    height: 300px;
  }

  .service-box .box-content p {
    color: #010027;
    line-height: 30px;
    height: 130px;
    overflow: scroll;
  }

  .service-box .box-content h6 {
    font-weight: 600;
    font-size: 22px !important;
  }
}


@media (max-width:568px) {
  .service-box {
    height: auto;
  }

  .service-box .box-content::before {
    display: none;

  }

  .service-box .box-img {
    width: 100%;
    /* Set desired width */
    height: auto;
    /* Adjusted height based on aspect ratio */
    margin: 0 auto;
    object-fit: cover;
    /* Maintain natural aspect ratio */
    object-fit: contain;
  }

  .service-box .box-content {
    width: 100%;
    height: auto;
    padding: 10px 10px 20px;
    position: relative;

  }

  .service-box .box-content p {
    color: #010027;
    line-height: 30px;
    height: auto;
    overflow: scroll;
  }

  .service-box .box-content h6 {
    font-weight: 600;
    font-size: 22px !important;
  }
}




.whyus-section {
  padding: 80px 0 180px;
  background-image: url(../img/bg2.jpg);
  position: relative;
  overflow: hidden;
}


.whyus-section .container {
  position: relative;

}



.whyus-section .whyus-content-wrapper p {
  color: #010027;
  line-height: 32px;
  text-align: center;
}

.whyus-section .whyus-content-wrapper .left-content {
  margin: 20px 0;
}

.whyus-section .whyus-content-wrapper .left-content .count-box {
  padding: 25px 10px 30px;
  margin-bottom: 20px;
  text-align: center;
  background-color: #FFB700;
  border: 1px solid transparent;
  transition: all 0.4s;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.whyus-section .whyus-content-wrapper .left-content .count-box.active {
  background-color: #dd000b;

}

.whyus-section .whyus-content-wrapper .left-content .count-box.active h3,
.whyus-section .whyus-content-wrapper .left-content .count-box:hover h3 {
  color: #fff;
}

.whyus-section .whyus-content-wrapper .left-content .count-box .box-img img {
  margin-bottom: 10px;
}

.whyus-section .whyus-content-wrapper .left-content .count-box:hover {
  background-color: #dd000b;
}

.whyus-section .whyus-content-wrapper .left-content .count-box h3 {
  color: #010027;
  font-size: 40px;

}

.whyus-section .whyus-content-wrapper .left-content .count-box p {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0;
}

.whyus-section .whyus-content-wrapper .left-content .count-box:hover p {
  color: #fff;
}

.whyus-section .whyus-content-wrapper .left-content .count-box.active p {
  color: #fff;
}

.whyus-section .whyus-content-wrapper .right-content {
  margin-top: 20px;
}

.whyus-section .whyus-content-wrapper .right-content .img-box {
  width: 55%;
  height: 460px;
  margin: 0 auto;
  padding: 20px;
  border: 1px dashed rgba(0, 0, 0, 0.4);
  background-color: #010027;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.whyus-section .whyus-content-wrapper .right-content img {
  width: 100%;
  height: 100%;
}

.whyus-section .whyus-content-wrapper .right-content .owl-carousel .owl-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
}

.whyus-section .whyus-content-wrapper .right-content .owl-carousel .owl-nav button {
  transition: all 0.4s;
  opacity: .7;

}

.whyus-section .whyus-content-wrapper .right-content .owl-carousel .owl-nav button:hover {
  background-color: transparent;
  color: #dd000b;
  opacity: 1;
}

.whyus-section .whyus-content-wrapper .right-content .owl-carousel .owl-nav button svg {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 10px;
  background-color: #dd000b;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}


@media (min-width:1200px) and (max-width:1400px) {
  .whyus-section .whyus-content-wrapper .right-content .img-box {
    width: 65%;
  }
}

@media (min-width:992px) and (max-width:1200px) {
  .whyus-section .whyus-content-wrapper .right-content .img-box {
    width: 80%;
  }
}

@media (min-width:768px) and (max-width:992px) {
  .whyus-section .whyus-content-wrapper .right-content .img-box {
    width: 100%;
  }
}

@media (min-width:568px) and (max-width:768px) {

  .whyus-section .whyus-content-wrapper .left-content .count-box {
    width: 80%;
    margin: 10px auto;
  }

  .whyus-section .whyus-content-wrapper .right-content .img-box {
    width: 80%;
  }
}

@media (max-width:568px) {
  .whyus-section .whyus-content-wrapper .right-content .img-box {
    width: 100%;
    height: 100%;
  }
}



.why-astrologer-section {
  padding: 80px 0 160px;
  background: url(../img/bg2.jpg);
  position: relative;
  overflow: hidden;
}

.why-astrologer-section .detail-box {
  padding: 10px;
  display: flex;
}

.why-astrologer-section .detail-box img {
  width: 55px;
  height: 55px;
  margin-right: 20px;
}

.why-astrologer-section .detail-box .box-content {
  padding: 0 10px;
}

.why-astrologer-section .detail-box .title {
  border-bottom: 1px solid #dd000b;
  margin-bottom: 14px;
}

.why-astrologer-section .detail-box h6 {
  font-size: 20px !important;
  font-weight: 700;
  font-family: "Philosopher", sans-serif !important;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dd000b;
}

.why-astrologer-section .detail-box p {
  font-weight: 500;
  font-size: 15px !important;
  color: rgba(0, 0, 0, 0.6);
}

.why-astrologer-section .custom-shape-divider-bottom-1714990640 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.why-astrologer-section .custom-shape-divider-bottom-1714990640 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.why-astrologer-section .custom-shape-divider-bottom-1714990640 .shape-fill {
  fill: #FFB700;
}






.zodiac-section {
  padding: 40px 0 190px;
  position: relative;
  background-color: #FFB700;
  overflow: hidden;
}

.zodiac-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/astrology-bg.png);
  opacity: .2;
}

.zodiac-section::after {
  position: absolute;
  content: '';
  background: url(../img/shape.svg) no-repeat;
  width: 100%;
  height: 273px;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(-1);
  z-index: 1;
}

.zodiac-section .container {
  position: relative;
}

.zodiac-section .section-title .title {
  color: #010027;
}

.zodiac-section .section-title .title span {
  color: #fff;
}

.zodiac-section .section-title p {
  font-weight: 400 !important;
  font-size: 18px !important;
}


.zodiac-section .zodiac-carousel .owl-item {
  transition: all 0.4s;
}

.zodiac-section .zodiac-carousel .img-box {
  display: flex;
  justify-content: center;
}

.zodiac-section .zodiac-carousel img {
  width: 120px;
  height: 120px;
  filter: grayscale(100%);
  transition: all 0.4s;
}

.zodiac-section .zodiac-carousel .owl-stage {
  padding: 60px 0 100px;
}

.zodiac-section .zodiac-carousel .owl-item.center {
  transform: scale(1.4);
}


.zodiac-section .zodiac-carousel .img-box:hover img,
.zodiac-section .zodiac-carousel .owl-item.center .img-box img {
  filter: grayscale(0);

}

.zodiac-section .zodiac-carousel .item {
  text-align: center;
}

.zodiac-section .zodiac-carousel .item p {
  font-weight: 900;
  color: #010027;
  margin-bottom: 5px;
}


.zodiac-section .call-detail p {
  font-weight: 600;
  margin-bottom: 30px;

}

.zodiac-section .call-detail .btn-grp .main-btn:nth-child(2) {
  background-color: #39bd00;
}

.zodiac-section .call-detail .btn-grp .main-btn svg {
  margin-right: 5px;

}

.zodiac-section .call-detail .btn-grp .main-btn {
  position: relative;
  z-index: 2;
}

@media (max-width:768px) {
  .zodiac-section .zodiac-carousel img {
    width: 120px;
    /* Set desired width */
    height: auto;
    /* Automatically adjust height */
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s;
  }
}


.testimonial-section {
  padding: 80px 0 190px;
  position: relative;
  background-image: url(../img/bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.testimonial-section .owl-stage {
  padding: 60px 0;
}



.testimonial-section .owl-item {
  padding: 0 30px;
}

.testimonial-section .testimonial-box {
  padding: 20px 10px;
  text-align: center;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.testimonial-section .testimonial-box::before {
  width: 100%;
  height: 120px;
  content: "";
  background: #7a81a8;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

.testimonial-section .owl-item.center .testimonial-box::before {
  content: "";
  background: #FFB700;
  height: 100%;
}

.testimonial-section .testimonial-box .box-img img {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  margin: 0 auto 15px;
  filter: blur(2px) brightness(50%);
}

.testimonial-section .testimonial-box .box-content {
  padding: 0 20px;
  position: relative;
}

.testimonial-section .testimonial-box .name {
  font-size: 20px !important;
  font-weight: 600;
  color: #010027;
  margin-bottom: 4px;
}

.testimonial-section .testimonial-box .rating {
  margin-bottom: 10px;
}

.testimonial-section .testimonial-box .rating svg {
  color: #dd000b;
  position: relative;
  overflow: hidden;
}

.testimonial-section .testimonial-box .rating svg.gray {
  color: #757575;
}

.testimonial-section .owl-item.center .testimonial-box .rating svg.gray {
  color: #fff;
}


.testimonial-section .owl-item.center .testimonial-box .rating .white {
  color: #fff;
}

.testimonial-section .testimonial-box .location {
  font-size: 14px;
  font-weight: 500;
  color: #920606;
  margin-bottom: 15px;
  display: block;
}

.testimonial-section .testimonial-box .message {
  font-size: 14px !important;
  text-align: justify;
  color: rgba(0, 0, 0, 0.5);
  height: 140px;
  overflow: auto;
  padding-right: 5px;
}

.testimonial-section .testimonial-box .message::-webkit-scrollbar {
  display: block !important;
  width: 3px;
}

.testimonial-section .testimonial-box .message::-webkit-scrollbar-thumb {
  background-color: #010027;
}

.testimonial-section .testimonial-box .message::-webkit-scrollbar-track {
  background-color: #fff;
}


.testimonial-section .testimonial-box .message svg {
  font-size: 30px;
}


.testimonial-section .owl-item.center .testimonial-box .name {
  color: #fff;
}

.testimonial-section .owl-item.center .testimonial-box .message {
  color: rgba(255, 255, 255, 0.9);
}


@media (max-width:568px) {
  .testimonial-section {
    padding-bottom: 0 !important;
  }

  .testimonial-section .testimonial-box .message {
    height: auto;
  }

  .testimonial-section .owl-stage {
    padding: 0;
  }
}

.courses-section {
  padding: 80px 0;
  position: relative;
  background-color: #f2e9d2 !important;
  overflow: hidden;
}

.courses-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/astrology-bg.png);
  opacity: .1;
}


.courses-section .course-box {
  padding: 20px;
  position: relative;
}

.courses-section .course-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  border: 2px solid #FFB700;
  border-radius: 10px;
  transition: all 0.3s;
}

.courses-section .course-box:hover::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

}

.courses-section .course-box .box-img {
  position: relative;
  width: 100%;
  height: 240px;
}

.courses-section .course-box .box-img img {
  position: relative;
  width: 100%;
  height: 100%;
}

.courses-section .course-box .box-content {
  padding: 20px;
  text-align: center;
  background-color: #fff;
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;

}

.courses-section .course-box .box-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background-color: #FFB700;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.courses-section .course-box:hover .box-content::before {
  height: 100%;
}

.courses-section .course-box .box-content .title {
  font-weight: 600;
  font-size: 18px !important;
  position: relative;
  height: 50px;
}

.courses-section .course-box .box-content .detail {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  position: relative;

}

.courses-section .course-box .box-content .detail span {
  padding: 0 10px;
  border-right: 2px solid rgba(0, 0, 0, 0.2);
}

.courses-section .course-box .box-content .detail span:last-child {
  border-right: none;
}

.courses-section .course-box .box-content .time {
  font-weight: 500;
  color: #010027;
  margin-bottom: 20px;
  position: relative;
}

.courses-section .course-box .box-content a {
  padding: 5px 14px;
  background-color: #FFB700;
  border-radius: 3px;
  color: #010027;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  position: relative;
  transition: all 0.3s;
}

.courses-section .course-box .box-content a span {
  position: relative;
}

.courses-section .course-box .box-content a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #dd000b;
  transition: all 0.4s;
}

.courses-section .course-box .box-content a:hover::before {
  width: 100%;
}

.courses-section .course-box .box-content a:hover {
  color: #fff;
}


@media (max-width:568px) {
  .courses-section .course-box .box-img {
    height: auto;
    width: 100%;
  }
}

.home-faq-section {
  padding: 80px 0;
  background: url(../img/bg2.jpg);
  position: relative;
  overflow: hidden;
}

.home-faq-section .left-content {
  padding-top: 10px;

}

.home-faq-section .left-content p {
  font-size: 18px !important;
  font-weight: 500;
  margin-bottom: 20px;

}

.home-faq-section .left-content p span {
  color: #dd000b;
  font-weight: 600;
}

.home-faq-section .left-content p:nth-child(1) {
  font-weight: 700;
  font-size: 20px !important;
}

.home-faq-section .left-content p:nth-child(3) {
  font-weight: 400;
  font-size: 16px !important;
}

.home-faq-section .left-content a {
  padding: 10px 20px;
  display: block;
  width: fit-content;
  background-color: #010027;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 50px;
  margin-bottom: 50px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.home-faq-section .left-content a svg {
  margin-right: 10px;
}

.home-faq-section .accordion-item {
  box-shadow: none;
  background-color: transparent;
  border: none;
}

.home-faq-section .accordion-button {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;

}

.home-faq-section .accordion-button:focus {
  box-shadow: none;
  background-color: transparent;
  border: none;
}


.home-faq-section .accordion-button:not(.collapsed) {
  color: #010027;
  background-color: #ffd884;
  box-shadow: none;
  border-radius: 0;
}


.home-faq-section .accordion-button::after {
  background-image: url(../img/plus-solid.svg);
}

.home-faq-section .accordion-button:not(.collapsed)::after {
  background-image: url(../img/minus-solid.svg);
}


.home-faq-section .accordion-body p {
  color: #585858;
  font-size: 14px !important;
  line-height: 30px;

}

.home-faq-section .accordion-body li {
  margin-bottom: 10px;
  color: #585858;
  font-size: 14px !important;
  line-height: 30px;
}




/* ----------------------------------innerpages styling---------------------------------- */

.inner-page-banner {
  position: relative;
  background-color: #FFB700;
  padding: 200px 0 120px;
  text-align: center;
}

.inner-page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/astrology-bg.png);
  opacity: .25;
}

.inner-page-banner::after {
  position: absolute;
  content: '';
  background: url(../img/shape.svg) no-repeat;
  width: 100%;
  height: 273px;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(-1);
  z-index: 1;
}

.inner-page-banner .container {
  position: relative;
  z-index: 2;
}

.inner-page-banner h2 {
  margin-top: 50px;
  font-weight: 700;
  font-family: "Philosopher", sans-serif !important;
}

.inner-page-banner h2 span {
  color: #fff;
}

.inner-page-banner ul {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.inner-page-banner ul li {
  padding: 0 5px;
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 14px;
}

.inner-page-banner ul li a {
  color: #010027;
}

.inner-page-banner ul li.active {
  border: none;
  color: #9c7000;
}




.inner-service-section {
  padding: 80px 0;
  position: relative;
}

.inner-service-section .tab-button-wrapper .nav {
  justify-content: center;
}


.inner-service-section .tab-button-wrapper .nav-item {
  position: relative;
  background-color: #010027;
}

.inner-service-section .tab-button-wrapper .nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #FFB700;
  transition: all 0.4s;
}

.inner-service-section .tab-button-wrapper .nav-item:hover::before {
  width: 100%;
}

.inner-service-section .tab-button-wrapper .nav-link {
  border-radius: 0;
  color: #fff;
  font-weight: 600;
  border-left: 1px solid #fff;
  padding: 14px 20px;
  text-transform: uppercase;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  position: relative;
  transition: all 0.4s;

}


.inner-service-section .tab-button-wrapper .nav-item:hover .nav-link {
  color: #010027;
}

.inner-service-section .tab-button-wrapper .nav-link span {
  position: relative;
}

.inner-service-section .tab-button-wrapper .nav-item:nth-child(1) .nav-link {
  border-left: none;
}

.inner-service-section .tab-button-wrapper .nav-link.active {
  background-color: #FFB700;
  color: #010027;
}

.inner-service-section .tab-content-wrapper {
  margin-top: 40px;
}



@media (min-width:768px) and (max-width:992px) {
  .inner-service-section .tab-button-wrapper .nav-link {
    border: 1px solid rgba(255, 255, 255, 0.7);
    min-width: 300px;
  }
}

@media (max-width:768px) {
  .inner-service-section .tab-button-wrapper .nav-link {
    border: 1px solid rgba(255, 255, 255, 0.7);
    min-width: 260px;
  }
}



.innerpage-content {
  padding: 70px 0;
  position: relative;
  background: url(../img/bg2.jpg);
}

.innerpage-content .left-content {
  padding-right: 16px;
}

@media (max-width:1200px) {
  .innerpage-content .left-content {
    padding-right: 0;
  }
}

.innerpage-content .left-content h2 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  font-size: 36px !important;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 0, 0, .06);
  color: transparent;
  background: linear-gradient(to right, #010027, #FFB700);
  background-clip: text;
  -webkit-background-clip: text;
}


.innerpage-content .left-content p {

  text-align: justify;
  line-height: 34px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.innerpage-content .left-content p strong {
  text-transform: capitalize;
}

.innerpage-content .left-content p a {
  color: #dd000b;
}

.innerpage-content .left-content h4 {
  font-size: 26px !important;
  margin-top: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: transparent;
  background: linear-gradient(to right, #010027, #dd000b);
  background-clip: text;
  -webkit-background-clip: text;
  position: relative;
}

.innerpage-content .left-content h6 {
  font-size: 18px !important;
  font-weight: 600;
  color: #010027;
  margin-top: 30px;
  border-bottom: 2px solid;
  padding-bottom: 5px;
  margin-bottom: 10px;

  width: fit-content;
}

.innerpage-content .left-content .cta-text-inner {
  padding: 50px 0;
  text-align: center;
  border-radius: 10px;
}

.innerpage-content .left-content .cta-text-inner h5 {
  line-height: 44px;
  color: #585858;
}

.innerpage-content .left-content .cta-text-inner h5 a {
  color: #dd000b;
}

.innerpage-content .left-content ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-align: justify;
  line-height: 34px;
}

.innerpage-content .left-content ul li strong {
  text-transform: capitalize;
  color: #000;
}

.innerpage-content .left-content ul li a {
  color: #dd000b;
  text-transform: capitalize;
}

.innerpage-content .left-content .note {
  color: #000;

}

.innerpage-content .left-content .note span {
  color: #dd000b;
  font-weight: 600;
}

.innerpage-content .left-content img {
  width: 100%;
  height: 100%;
  margin: 20px 0;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.innerpage-content .right-content:nth-child(2) {
  position: sticky;
  top: 25%;
}

.innerpage-content .right-content .accordion-item {
  border-radius: 0px;
  border: none;
}

.innerpage-content .right-content .accordion-button {

  background-color: #010027;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}

.innerpage-content .right-content .accordion-button::after {
  background-image: url(../img/plus-solid.svg);
}

.innerpage-content .right-content .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.innerpage-content .right-content .accordion-button:not(.collapsed)::after {

  background-image: url(../img/minus-solid.svg);
}

.innerpage-content .right-content .accordion-body {
  background: url(../img/sidebar-cta-bg.png);
  min-height: 100px;
  max-height: 500px;
  padding: 10px 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.innerpage-content .right-content .accordion-body::-webkit-scrollbar {
  display: block !important;
  width: 3px;
}

.innerpage-content .right-content .accordion-body::-webkit-scrollbar-track {

  background-color: #010027;
}

.innerpage-content .right-content .accordion-body::-webkit-scrollbar-thumb {
  background-color: #ffb007;
}

.innerpage-content .right-content .accordion-body::-webkit-scrollbar {
  display: block !important;
  width: 3px;
}



.innerpage-content .right-content .accordion-body ul li a::before {
  content: "-";
  position: relative;
  margin-right: 5px;

}

.innerpage-content .right-content .accordion-body ul li a {
  color: #fff;
  font-size: 14px;

  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s;
  display: block;
  position: relative;
  padding: 10px 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, .1);
}

.innerpage-content .right-content .accordion-body ul li a:hover {
  color: #dd000b;
  transform: translateX(10px);
}




.innerpage-content .right-content .contact-box {
  margin-top: 50px;
  padding: 20px;
  background: url(../img/sidebar-cta-bg.png);
  text-align: center;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}


.innerpage-content .right-content .contact-box h6 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Cinzel', sans-serif !important;
  color: #fff;
  letter-spacing: 1px;
  line-height: 34px;
  position: relative;
  border-bottom: 1px solid #fff;

}


.innerpage-content .right-content .contact-box p {
  font-weight: 500;
  color: #fff;
  font-size: 14px !important;
  margin-bottom: 24px;
  line-height: 30px;
  position: relative;
}

.innerpage-content .right-content .contact-box a {
  padding: 8px 16px;
  background-color: #ffb007;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  transition: all 0.3s;
  position: relative;
}

.innerpage-content .right-content .contact-box a:hover {
  background-color: #dd000b;
  color: #fff;
}

.innerpage-content .right-content .contact-box img {
  width: 100%;

}



.cta-main-container {
  background: url(../img/cta-bg.jpg);
  background-attachment: fixed;
  background-position: top;
  overflow: hidden;
  background-size: cover;
}

.cta-main-container .cta-content {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 80px 0;
}

.cta-main-container .cta-content h6 {
  color: #dcdcdc;
  margin-bottom: 15px;
}

.cta-main-container .cta-content h3 {
  color: #fff;
  margin-bottom: 10px;

}

.cta-main-container .cta-content h3 span {
  color: #FFB700;
  font-size: 40px !important;
  font-weight: 700;
}

.cta-main-container .cta-content p {
  color: #dcdcdc;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 50px;
}

.cta-main-container .right-content img {
  animation: rotate 30s infinite linear;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 #fff;
}


@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media(min-width:768px) and (max-width:992px) {
  .cta-main-container .cta-content {
    text-align: center;
  }

  .cta-main-container .right-content img {
    margin-bottom: 30px;
  }
}

@media(min-width:568px) and (max-width:768px) {
  .cta-main-container .cta-content {
    text-align: center;
  }

  .cta-main-container .right-content img {
    margin-bottom: 30px;
  }
}

@media (max-width:568px) {
  .cta-main-container .cta-content {
    text-align: center;
  }

  .cta-main-container .cta-content h6 {
    font-size: 20px !important;
  }

  .cta-main-container .right-content img {
    width: 300px;
    height: 300px;
    margin-bottom: 30px;
  }
}



.inner-contact-section {
  padding: 100px 0;
  position: relative;
}

.inner-contact-section .page-heading h4 {
  font-weight: 600;
  font-family: "Philosopher", sans-serif !important;
  border-bottom: 2px solid rgba(0, 0, 0, .06);
  padding-bottom: 5px;

}

.inner-contact-section .left-content {
  margin-bottom: 30px;
}

.inner-contact-section .contact-box {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.inner-contact-section .contact-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #010027;
  transition: all 0.4s;
}

.inner-contact-section .contact-box:hover::before {
  width: 100%;
}



.inner-contact-section .contact-box .box-icon,
.inner-contact-section .contact-box .box-content {
  position: relative;
  z-index: 2;
}

.inner-contact-section .contact-box svg {
  width: 40px;
  height: 40px;
  color: #FFB700;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.4s;
}

.inner-contact-section .contact-box:hover svg {
  color: #fff;
}

.inner-contact-section .contact-box p {
  font-size: 18px !important;
  font-weight: 600;
  transition: all 0.4s;
}

.inner-contact-section .contact-box:hover p {
  color: #fff;
}

.inner-contact-section .contact-box a {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: all 0.4s;
  color: #010027;
}


.inner-contact-section .contact-box:hover a {
  color: #FFB700;
}

.inner-contact-section .contact-form {
  text-align: center;
  padding: 20px 30px 40px;
  position: relative;
  border-radius: 20px;
  background-color: #010027;

  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  background-size: cover;
}


.inner-contact-section .contact-form h5 {
  font-weight: 600;
  font-family: "Philosopher", sans-serif !important;
  padding-bottom: 5px;
  color: #fff;
}

.inner-contact-section .contact-form p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;

}

.inner-contact-section .contact-form span {
  display: block;
  margin: 10px 0 20px;
}

.inner-contact-section .contact-form span label {
  margin-bottom: 5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.inner-contact-section .contact-form span input {

  box-shadow: none;
  background-color: transparent;
  border-radius: 30px;
  padding: 14px 20px;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 500;
}

.inner-contact-section .contact-form span input::placeholder,
.inner-contact-section .contact-form span textarea::placeholder {
  color: #fff;
}

.inner-contact-section .contact-form span input::-webkit-calendar-picker-indicator {
  font-size: 22px;
  filter: invert(1);

}

.inner-contact-section .contact-form span input:focus,
.inner-contact-section .contact-form span textarea:focus {
  box-shadow: none;

}

.inner-contact-section .contact-form span textarea {

  color: #fff;
  background-color: transparent;
  font-weight: 500;
  box-shadow: none;
  border: 1px solid #fff;

}




.popup-main-modal .modal-dialog {
  min-width: 600px;
  overflow: hidden;
}

.popup-main-modal .modal-dialog .modal-content {
  border-radius: 3px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;

}

.popup-main-modal .modal-dialog .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/astrology-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .3;
}

.popup-main-modal .modal-dialog .modal-content .btn-close {
  background: none;
  opacity: 1;

}

.popup-main-modal .modal-dialog .modal-content .btn-close:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.popup-main-modal .modal-dialog .modal-content .btn-close svg {
  position: absolute;
  right: 10px;
  top: 10px;

  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 6px;
  background-color: #920606;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.4s;
  z-index: 2;
}

.popup-main-modal .modal-dialog .modal-content .btn-close svg:hover {
  background-color: #fff;
  color: #920606;
  border-color: #920606;
}

.popup-main-modal .modal-dialog .modal-content .modal-body {
  padding: 40px 30px;
  text-align: center;
}

.popup-main-modal .modal-dialog .modal-content .modal-body h2 {
  font-size: 36px !important;
  font-weight: 600;
  color: #fb1604;
  margin-bottom: 30px;
}

.popup-main-modal .modal-dialog .modal-content .modal-body h2 span {
  color: #920606;
}

.popup-main-modal .modal-dialog .modal-content .modal-body h6 {
  color: #010027;
  font-size: 18px !important;
  margin-bottom: 30px;
}

.popup-main-modal .modal-dialog .modal-content .modal-body .btn-modal a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: #010027;
  color: #fff;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  margin-bottom: 30px;
  transition: all 0.4s;
}

.popup-main-modal .modal-dialog .modal-content .modal-body img {
  width: 100%;
  border-radius: 4px;
}

@media (max-width:768px) {
  .popup-main-modal .modal-dialog {
    min-width: 90%;
    overflow: hidden;
  }
}

@media (max-width:568px) {
  .popup-main-modal .modal-dialog {
    min-width: 90%;
    overflow: hidden;
  }

  .popup-main-modal .modal-dialog .modal-content .modal-body {
    padding: 40px 10px;
    text-align: center;
  }

  .popup-main-modal .modal-dialog .modal-content .modal-body h2 {
    font-size: 30px !important;
  }

  .popup-main-modal .modal-dialog .modal-content .modal-body h6 {
    font-size: 16px !important;
    line-height: 30px;
  }

}




.fixed-contact-button {
  position: relative;
  z-index: 10;

}

.fixed-contact-button a svg {
  width: 20px;
  height: 20px;
  padding: 20px;
  border-radius: 50%;
  color: #fff;
  opacity: .8;
  transition: all 0.4s;
  animation: bgZoomInOut .8s linear infinite;
  border: 1px solid #fff;
}

@keyframes bgZoomInOut {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 32, 80, 0.2);
    transform: rotate(0);
  }

  20% {
    box-shadow: 0 0 0 2px rgba(0, 32, 80, 0.2);
  }

  40% {
    box-shadow: 0 0 0 4px rgba(0, 32, 80, 0.2);
    transform: rotate(-20deg);
  }

  60% {
    box-shadow: 0 0 0 6px rgba(0, 32, 80, 0.2);
  }

  80% {
    box-shadow: 0 0 0 8px rgba(0, 32, 80, 0.2);
    transform: rotate(0);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(0, 32, 80, 0.2);
  }
}

.fixed-contact-button a:hover svg {
  opacity: 1;
}

.fixed-contact-button a:nth-child(1) svg {
  display: block;
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: rgb(0, 32, 80);
}

.fixed-contact-button a:nth-child(2) svg {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgb(0, 88, 0);
}



.blog-content-wrapper {
  padding: 80px 0;
  position: relative;
}

.blog-content-wrapper .left-content {
  padding-right: 30px;
  border-right: 2px solid #FFB700;
}

.blog-content-wrapper .left-content .blog-main-box {
  padding: 20px;
  border: 2px solid #010027;
  position: relative;
  background: url(../img/sidebar-cta-bg.png);
  border: 1px solid #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  margin-bottom: 40px;
}

.blog-content-wrapper .left-content .blog-main-box .box-img {
  position: relative;
  width: 100%;
}

.blog-content-wrapper .left-content .blog-main-box .box-img img {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  max-height: 400px;
  min-height: 200px;
}

.blog-content-wrapper .left-content .blog-main-box .box-img .latest-icon img {
  position: absolute;
  min-height: auto;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  animation: swingIcon 1s infinite alternate;
}

@keyframes swingIcon {
  0% {
    transform: rotate(20deg);
  }

  100% {
    transform: rotate(-20deg);
  }
}

.blog-content-wrapper .left-content .blog-main-box h4 a {
  color: #FFB700;
  display: block;
  font-size: 28px !important;
}

.blog-content-wrapper .left-content .blog-main-box p.date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .6);
  font-size: 14px !important;
  letter-spacing: 1px;
}

.blog-content-wrapper .left-content .blog-main-box p.date strong {
  color: #fff;
}

.blog-content-wrapper .left-content .blog-main-box p.text {
  color: #fff;
  line-height: 28px;
  font-size: 14px !important;
  letter-spacing: 1px;
}

.blog-content-wrapper .left-content .blog-main-box p.text .read-more-btn {
  font-weight: 600;
  color: #FFB700;
  transition: all 0.4s;
}

.blog-content-wrapper .right-content {
  position: relative;
  height: 100%;
  width: 100%;
}

.blog-content-wrapper .right-content .blog-category-box,
.blog-content-wrapper .right-content .related-link-box {
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 2px solid #010027;
  background: url(../img/cta-bg.jpg);
}

.blog-content-wrapper .right-content .blog-category-box h4,
.blog-content-wrapper .right-content .related-link-box h4 {
  font-size: 24px !important;
  font-weight: 500;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.blog-content-wrapper .right-content .blog-category-box ul li a,
.blog-content-wrapper .right-content .related-link-box ul li a {
  color: rgba(255, 255, 255, .9);
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: capitalize;
  display: block;
  width: 100%;
  padding: 8px 15px 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .1);
  transition: all 0.4s;
  position: relative;
  font-size: 14px;
}

.blog-content-wrapper .right-content .blog-category-box ul li a img {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;

}

.blog-content-wrapper .right-content .blog-category-box ul li a::before,
.blog-content-wrapper .right-content .related-link-box ul li a::before {
  content: "-";
  margin-right: 6px;

}

.blog-content-wrapper .right-content .blog-category-box ul li a:hover,
.blog-content-wrapper .right-content .related-link-box ul li a:hover {
  color: #FFB700;
}


.blog-content-wrapper .right-content .contact-box {
  margin-top: 50px;
  position: sticky;
  top: 140px;
  padding: 20px;
  background: url(../img/sidebar-cta-bg.png);
  text-align: center;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.blog-content-wrapper .right-content .contact-box h6 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Cinzel', sans-serif !important;
  color: #fff;
  letter-spacing: 1px;
  line-height: 34px;
  position: relative;
  border-bottom: 1px solid #fff;

}

.blog-content-wrapper .right-content .contact-box p {
  font-weight: 500;
  color: #fff;
  font-size: 14px !important;
  margin-bottom: 24px;
  line-height: 30px;
  position: relative;
}

.blog-content-wrapper .right-content .contact-box a {
  padding: 8px 16px;
  background-color: #ffb007;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #dd000b;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  transition: all 0.3s;
  position: relative;
}

.blog-content-wrapper .right-content .contact-box a:hover {
  background-color: #dd000b;
  color: #fff;
}

.blog-content-wrapper .right-content .contact-box img {
  width: 100%;

}


.blog-content-wrapper .single-blog-content {
  padding-bottom: 40px;
  position: relative;
}

.blog-content-wrapper .single-blog-content .box-title {
  margin-bottom: 30px;
}

.blog-content-wrapper .single-blog-content .box-title h4 {
  color: #010027;
  display: block;
  font-size: 28px !important;
  line-height: 44px;
  font-weight: 600;
}

.blog-content-wrapper .single-blog-content .box-title p.date {
  display: flex;
  justify-content: space-between;
  font-size: 14px !important;
  color: rgba(0, 0, 0, 0.8);
}

.blog-content-wrapper .single-blog-content .box-img img {
  width: 100%;
  border: 2px inset #010027;
  margin-bottom: 30px;
  min-height: 240px;
}

.blog-content-wrapper .single-blog-content .box-content h6.subtitle {
  color: #920606;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 20px;
}

.blog-content-wrapper .single-blog-content .box-content p {
  letter-spacing: 1px;
  line-height: 28px;
  margin-bottom: 30px;
}

.blog-content-wrapper .single-blog-content .box-content p.topic {
  text-transform: capitalize;
}

.blog-content-wrapper .single-blog-content .box-content .cta-box-main {
  padding: 60px 20px;
  border: 2px solid #010027;
  text-align: center;
  background: url(../img/cta-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.blog-content-wrapper .single-blog-content .box-content .cta-box-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
}

.blog-content-wrapper .single-blog-content .box-content .cta-box-main h4 {
  color: #FFB700;
  position: relative;
  font-size: 36px !important;
  font-weight: 600;
}

.blog-content-wrapper .single-blog-content .box-content .cta-box-main p {
  position: relative;
  color: #fff;
  font-size: 14px !important;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 30px;
}

.blog-content-wrapper .single-blog-content .box-content .cta-box-main a {
  display: inline-block;
  padding: 6px 30px;
  background-color: #010027;
  position: relative;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.4s;
  font-weight: 600;
}

.blog-content-wrapper .single-blog-content .box-content .cta-box-main a:hover {
  background-color: #FFB700;
  color: #010027;
}

.blog-content-wrapper .single-blog-content .box-content h6.title {
  color: #010027;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-content-wrapper .single-blog-content .box-content ul {
  padding: 10px 0;
}

.blog-content-wrapper .single-blog-content .box-content ul li {
  margin-bottom: 10px;
  color: #010027;
  letter-spacing: 1px;
}