@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --main-color: #055193;
  --secondary-color: #A6CE39;
  --secondary-text: #282f34;
  --fonts-color: #787878;
  --blackfont-color: #282f34;
  --white-color: #ffffff;
  --black-color: #000000;
  --body-font-family: "Nunito Sans", serif;
  --head-font-family: "Roboto Condensed", serif;
}

body {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif !important;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

::-webkit-scrollbar {
  display: none;
}

.container {
  position: relative;
}


.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.pointer-cursor {
  cursor: pointer !important;
}

.container {
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
}

input[type='number']::-webkit-inner-spin-button {
  display: none;
}

.sticky-top {
  position: fixed !important;
  animation: fadeInDown 0.6s linear;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

/* ----------------------------------------------------------------------------------------------- */
.cursor-follower {
  width: 30px;
  height: 30px;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: url(../img/icons/plane.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 999;
}

/* ------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------ */






a.btn-anime {
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 0;
  border-radius: 6px;
  overflow: hidden;
  padding: 8px 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  gap: 6px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  margin-right: 0;
  transition: all 0.4s;


}

a.btn-anime.dark-bg {
  color: #000;
}

a.btn-anime::before {
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #399953;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#0300aa, #0300aa), linear-gradient(#ad0000, #ad0000), linear-gradient(#d77209, #d77209), linear-gradient(#a62f6d, #a62f6d);
  animation: rotate 2s linear infinite;
  content: "";
  position: absolute;
  transition: all 0.4s;
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

a.btn-anime::after {
  position: absolute;
  content: "";
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #004096;
  border-color: none;
  border-radius: 6px;
  transition: all 0.4s;
}

a.btn-anime.dark-bg::after {
  background: #fff;
}

a.btn-anime:hover {
  color: #002147 !important;
  transform: translateY(-5px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

a.btn-anime:hover::after {
  background-color: #d77209;
}

/* ---------------------------------------------------------------------------------------------------------------------------------- */



.hero-slider-section {
  position: relative;
}


.hero-slider-section .img-box {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: relative;
}

.hero-slider-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  transition: all 20s;
}

.hero-slider-section .carousel-item.active .img-box img {
  transform: scale(1.3);
}


.hero-slider-section .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-slider-section .content span.sub-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  padding: 6px 20px;
  background: #970008;
  border-radius: 1px;
  display: inline-block;
  animation: fadeInDown 1s ease-in-out;
}

.hero-slider-section .content h2 {
  color: #fff;
  font-size: 76px;
  animation: fadeInDown 1s .6s ease-in-out forwards;
  opacity: 0;
}

.hero-slider-section .content ul {
  animation: zoomIn 2s ease-in-out;
}

.hero-slider-section .content ul li {
  display: inline-block;
  padding: 6px 15px;
  margin-right: 5px;
  background-color: #fff;
  border-radius: 50px;
  font-weight: 700;
  color: #000;
  animation: backgroundAnime 2s infinite ease-in-out alternate;
}

@keyframes backgroundAnime {
  0% {
    background-color: #fff;
    transform: scale(1);
  }

  100% {
    background-color: #ffae00;
    transform: scale(1.1);
    color: #000;
  }

}

.hero-slider-section .content ul li:nth-child(1) {
  animation-delay: 0s;
}

.hero-slider-section .content ul li:nth-child(2) {
  animation-delay: 1s;
}

.hero-slider-section .content ul li:nth-child(3) {
  animation-delay: 2s;
}

.hero-slider-section .content ul li:last-child {
  margin-right: 0;
}

.hero-slider-section .content .button-group {
  opacity: 0;
  margin-top: 50px;
  animation: fadeInUp 1s 1s ease-in-out forwards;
}

.hero-slider-section .content .button-group a {
  display: inline-block;
  padding: 5px 10px;
  background: #970008;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  font-size: 18px;
  transition: all 0.4s;
}

.hero-slider-section .content .button-group a:nth-child(2n) {
  background: #fff;
  color: #542504;

}

.hero-slider-section .content .button-group a:hover {
  background: #d77209;
  color: #fff;
}



@media (min-width:992px) and (max-width:1200px) {

  .hero-slider-section .content h2 {
    font-size: 66px;
  }

  .hero-slider-section .img-box {
    height: 500px;
  }
}

@media (max-width:992px) {

  .hero-slider-section .content h2 {
    font-size: 46px;
  }

  .hero-slider-section .img-box {
    height: 500px;
  }

  .hero-slider-section .content ul li {
    padding: 6px 12px;
    margin-bottom: 10px;
  }
}

@media (max-width:568px) {

  .hero-slider-section .content span.sub-title {
    font-size: 16px;
    padding: 4px;
  }

  .hero-slider-section .content h2 {
    font-size: 34px;
  }

  .hero-slider-section .img-box {
    height: 500px;
  }

  .hero-slider-section .content ul li {
    padding: 6px 12px;
    margin-bottom: 10px;
  }

  .hero-slider-section .content .button-group a {

    font-size: 16px;
  }
}


.quick-service {
  position: relative;
  padding: 80px 0;
}

.quick-service .left-content .item-box {

  overflow: hidden;
  border-radius: 20px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  height: 580px;
  position: relative;
  transition: all 0.4s;

}

.quick-service .left-content .item-box .video-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.quick-service .left-content .item-box .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-service .left-content .item-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3));
}

.quick-service .left-content .item-box .content {
  padding: 0 20px;
  width: 100%;
  position: relative;
}

.quick-service .left-content .item-box a {
  display: inline-block;
  position: relative;

}

.quick-service .left-content .item-box h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0;
}

.quick-service .left-content .item-box span.tag {
  display: inline-block;
  padding: 2px 20px;
  background: #970008;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  animation: bounce 2s infinite;

}

.quick-service .left-content .item-box span.num {
  color: #ffae00;
  font-size: 38px;
  font-weight: 900;
  display: block;
  animation: flash 2s infinite alternate;

}

.quick-service .left-content .item-box span.text {
  text-transform: uppercase;
  font-size: 36px;
  color: #fff;
}

.quick-service .left-content .item-box a.call-btn {
  font-weight: 700;
  margin-top: 20px;
  display: block;
  width: fit-content;
  padding: 10px 20px;
  font-size: 20px;
  color: #000;
}

.quick-service .left-content .item-box a.call-btn::after {
  background-color: #fff;
}

.quick-service .right-content {
  padding-left: 30px;
}

.quick-service .right-content .item-box {
  position: relative;
  margin-bottom: 20px;
}

.quick-service .right-content .item-box .img-box {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
}

.quick-service .right-content .item-box .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}

.quick-service .right-content .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
  filter: brightness(80%);
}

.quick-service .right-content .item-box:hover img {
  transform: scale(1.2);
  filter: brightness(30%);
}

.quick-service .right-content .item-box .head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.quick-service .right-content .item-box .head p {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.quick-service .right-content .item-box .tag span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 2px 4px;
  font-size: 12px;
  text-transform: uppercase;
  background-color: #ffae00;
  border-radius: 2px;
  color: #000;
  font-weight: 900;
  letter-spacing: 1px;
  animation: vibrateBtn .6s infinite alternate;
}

.quick-service .right-content .item-box .icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.quick-service .right-content .item-box .icon svg {
  color: #11cf00;
  width: 60px;
  height: 60px;
  transform: scale(0);
  transition: all 0.4s;
}

.quick-service .right-content .item-box:hover .icon svg {
  transform: scale(1);
}

@keyframes vibrateBtn {

  0%,
  100% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

@media (max-width:1200px) {
  .quick-service .left-content {
    position: sticky;
    top: 30px;
  }
}

@media (max-width:992px) {
  .quick-service .right-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width:568px) {
  .quick-service .left-content .item-box {
    border-radius: 10px;
    height: 400px;
    text-align: center;

  }

  .quick-service .left-content .item-box h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
  }

  .quick-service .left-content .item-box span.num {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    display: block;
  }

  .quick-service .left-content .item-box span.text {
    text-transform: uppercase;
    font-size: 36px;
    color: #fff;
  }

  .quick-service .left-content .item-box a.call-btn {
    margin: 20px auto 0;
  }
}






.quick-service-cta {
  padding: 30px 0;
  background-color: #0F0400;
  position: relative;
}


.quick-service-cta .item-box {
  text-align: center;
  background-color: #fff4df;
  background: url(../img/astrology-bg.jpg) no-repeat fixed;
  background-size: cover;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.quick-service-cta .item-box.active {
  box-shadow: #fed001 0px 5px 15px;
}

.quick-service-cta .item-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);

}

.quick-service-cta .item-box img {
  filter: brightness(0) invert(1);
}

.quick-service-cta .item-box a {
  display: block;
  padding: 30px;
  position: relative;
}

.quick-service-cta .item-box:hover {
  box-shadow: #fed001 0px 5px 15px;

}

.quick-service-cta p.text {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 6px;
  font-weight: 600;
  color: #fff;
}

@media(max-width:992px) {
  .quick-service-cta .item-box {
    margin-bottom: 20px;
  }
}


@media(max-width:768px) {
  .quick-service-cta .item-box {
    border-radius: 8px;
  }

  .quick-service-cta .item-box a {
    display: block;
    padding: 20px;
    position: relative;
  }
}



.quick-service-cta .cta-text {
  padding-top: 30px;
  text-align: center;
}

.quick-service-cta .cta-text p {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.quick-service-cta .cta-text span {
  font-size: 20px;
  font-weight: 400;
  color: #fed001;
  display: block;
  padding: 0 120px;
  margin-bottom: 10px;
}

.quick-service-cta .cta-text .button-grp {
  margin-top: 20px;
}

.quick-service-cta .cta-text .button-grp a {
  display: inline-block;
  padding: 10px 16px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 4px;
  color: #542504;
  font-weight: 700;
  transition: all 0.3s;
  overflow: hidden;
}

.quick-service-cta .cta-text .button-grp a:last-child {
  margin-right: 0;
}

.quick-service-cta .cta-text .button-grp a:hover {
  background-color: #fed001;
  color: #000;

}

@media (min-width:992px) and (max-width:1200px) {
  .quick-service-cta .cta-text p {
    font-size: 22px;
  }

  .quick-service-cta .cta-text span {
    font-size: 18px;
    padding: 0 50px;
  }
}

@media (max-width:992px) {
  .quick-service-cta .cta-text p {
    font-size: 24px;
  }

  .quick-service-cta .cta-text span {
    font-size: 18px;
    padding: 0;
  }
}

@media (max-width:568px) {
  .quick-service-cta .cta-text .button-grp a {
    display: inline-block;
    padding: 10px 8px;
    margin-right: 6px;
    border-radius: 20px 4px;
  }
}





.about-section {
  padding: 60px 0;
  position: relative;
}

.section-title h2 {
  font-size: 46px;
  color: #ad0000;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.section-title h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #002147;
  border-radius: 50px;
  opacity: .1;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 46%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: #ff9900;
  border-radius: 50%;
  box-shadow: 0 0 20px 2px #fd6500;
  animation: slidingAnime 7s infinite alternate;
}

@keyframes slidingAnime {
  0% {
    left: 46%;
    transform: translateX(-50%) scale(.8);
  }

  40% {
    transform: translateX(-50%) scale(1.2);
  }

  60% {
    transform: translateX(-50%) scale(.8);
  }

  100% {
    left: 54%;
  }
}

.section-title p.tagline {
  font-size: 22px;
  font-weight: 700;
}

.section-title p.text {
  width: 70%;
  margin: 0 auto 40px;
  color: rgba(0, 0, 0, 0.7);
}

.section-title p.text strong {
  color: #000;
}

.section-title p.text span {
  color: #d77209;
  font-weight: 500;
}

.about-section .left-img-box {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}

.about-section .left-img-box .carousel-item {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}

.about-section .left-img-box .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-section .left-img-box .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.6);
}

.about-section .left-img-box .content h4 {
  color: #fff;
  font-size: 38px;
  text-align: center;
}

.about-section .left-img-box .content a.call {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 900;
  color: #fed001;
  animation: flash 2s infinite alternate;
}

.about-section .left-img-box .content a.whatsapp {
  background-color: #399953;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.4s;
}

.about-section .left-img-box .content a.whatsapp svg {
  margin-right: 4px;
}

.about-section .left-img-box .content a.whatsapp:hover {
  background-color: #fed001;
  color: #000;
}

.about-section .main-content {
  text-align: center;
}

.about-section .main-content ul li {
  padding: 10px;
  text-align: center;
  background-color: #E7BF04;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s;
  position: relative;
  border-radius: 10px 2px 10px 2px;
  overflow: hidden;
}

.about-section .main-content ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ad0000;
  transition: all 0.4s;
}

.about-section .main-content ul li:hover {
  background-color: #ad0000;
  color: #fff;
}

.about-section .main-content ul li.active {
  background-color: #ad0000;
  color: #fff;
}

.about-section .main-content ul li span {
  position: relative;
}

.about-section .main-content ul li:hover::before {
  width: 100%;

}

.about-section .main-content a {
  padding: 10px 20px;
  background-color: #399953;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s;
}

.about-section .main-content a svg {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

.about-section .main-content a:hover {
  background-color: #005517;
  transform: translateY(-8px);
  box-shadow: 2px 2px 1px 1px #000;
}



.about-section .right-video-box {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.about-section .right-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-section .right-video-box .content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 80px 10px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.about-section .right-video-box .content h4 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section .right-video-box .content p {
  color: #fdc200;
  margin-bottom: 0;
  font-size: 22px;
}

.about-section .right-video-box .content marquee {
  color: #fed001;
  font-size: 26px;
  margin-top: 20px;
}

.about-section .right-video-box .content a {
  background-color: #fed001;
  color: #000;
  padding: 6px 20px;
  font-weight: 700;
  border-radius: 4px;
  display: inline-block;
  margin-top: 10px;
}

.about-section .right-video-box .content a svg {
  margin-right: 5px;
}

@media (min-width:992px) and (max-width:1200px) {
  .about-section .left-img-box .content a.call {
    font-size: 30px;
  }
}

@media (max-width:992px) {
  .about-section .left-img-box {
    margin-bottom: 30px;
  }

  .about-section .main-content {
    margin-bottom: 30px;
  }

  .about-section .left-img-box {
    height: 380px;
  }

  .about-section .left-img-box .carousel-item {
    height: 380px;
  }

  .about-section .right-video-box {
    height: 380px;
  }
}

@media (max-width:768px) {
  .about-section .section-title p.text {
    width: 100%;
  }


}

@media (max-width:568px) {
  .about-section .right-video-box .content {
    padding: 40px 10px;
  }

}


.cta-section-main {
  position: relative;
  background: url(../img/cta-bg.jpg) no-repeat fixed;
  background-size: cover;
  padding: 50px 0;
  text-align: center;
}

.cta-section-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.cta-section-main h4 {
  color: #fff;
  font-size: 46px;
  text-transform: capitalize;

}

.cta-section-main p {
  color: #fed001;
  font-size: 18px;
}

.cta-section-main .button-group a {
  display: inline-block;
  padding: 8px 10px;
  background-color: #fed001;
  border-radius: 4px;
  font-weight: 700;
  color: #000;
  margin-right: 4px;
  border: 2px solid #fed001;
  transition: all 0.4s;

}

.cta-section-main .button-group a:nth-child(2n) {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.cta-section-main .button-group a:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 2px 2px 1px 1px #fed001;
}


@media (max-width:768px) {
  .cta-section-main h4 {
    font-size: 36px;

  }

  .cta-section-main .button-group a {
    display: inline-block;
    padding: 8px 6px;
    background-color: #fed001;
    border-radius: 50px;
    font-weight: 700;
    color: #000;
    margin-right: 4px;
    border: 2px solid #fed001;
    transition: all 0.4s;

  }


}





.feature-section-main {
  position: relative;
  background: url(../img/cta-bg.jpg) no-repeat fixed;
  background-size: cover;
  padding: 50px 0;
  overflow: hidden;

}

.feature-section-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.feature-section-main h4 {
  color: #fff;
  font-size: 46px;
  text-transform: capitalize;

}

.feature-section-main p.text {
  color: #fff;
  font-size: 18px;
}

.feature-section-main .item-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.7);

  width: 80%;
  border-radius: 4px;
}

.feature-section-main .item-box svg {
  width: 24px;
  height: 24px;
  padding: 14px;
  background-color: #ad0000;
  color: #fff;
  border-radius: 4px;
}

.feature-section-main .item-box h5 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 22px;
}

.feature-section-main .item-box p {
  margin-bottom: 0;
  color: #fed001;
}

.feature-section-main .button-group a {
  display: inline-block;
  padding: 8px 10px;
  background-color: #ad0000;
  border-radius: 4px;
  font-weight: 700;
  color: #fff;
  margin-right: 4px;
  border: 2px solid #ad0000;
  transition: all 0.4s;

}

.feature-section-main .button-group a:nth-child(2n) {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.feature-section-main .button-group a:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 2px 2px 1px 1px #ad0000;
}

.feature-section-main .right-content {
  display: flex;
  justify-content: end;
}

.feature-section-main .right-content .img-box {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
}

.feature-section-main .right-content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: spin 35s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0);
    transform-origin: center;
  }

  100% {
    transform: rotate(360deg);
    transform-origin: center;
  }
}

@media (max-width:1200px) {
  .feature-section-main h4 {
    font-size: 36px;
  }

  .feature-section-main .item-box {
    width: 100%;
  }

  .feature-section-main .right-content .img-box {
    width: 400px;
    height: 400px;
  }
}

@media (max-width:992px) {
  .feature-section-main .right-content {
    justify-content: center;
    margin-top: 40px;
  }

}

@media (max-width:568px) {
  .feature-section-main .right-content .img-box {
    width: 320px;
    height: 320px;
  }

  .feature-section-main .button-group a {
    padding: 8px 6px;
    margin-right: 4px;

  }
}


.service-section {
  padding: 80px 0;
  position: relative;
}


.service-section .service-box {
  position: relative;
  background-color: #a00000;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s;
  margin-bottom: 30px;
}

.service-section .bg-series:nth-child(2n) .service-box {
  background-color: #500000;
}

.service-section .service-box:hover {
  background-color: #500000;
}

.service-section .service-box .img-box {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.service-section .service-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.8s;
}

.service-section .service-box:hover img {
  transform: scale(1.2);
}

.service-section .service-box .content h4 a {
  color: #fff;
  font-size: 28px;
}

.service-section .service-box .content p {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s;
}

.service-section .service-box:hover p {
  color: #fff;
}

.service-section .service-box .content .button-grp {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service-section .service-box .content .button-grp span {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.service-section .service-box .content .button-grp a {
  padding: 6px 10px;
  background-color: #399953;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
  border: 2px solid #399953;

}

.service-section .service-box .content .button-grp a:nth-child(3) {
  background-color: #fff;
  color: #542504;
  border-color: #fff;
}

.service-section .service-box .content .button-grp a svg {
  animation: vibrateBtn .3s infinite alternate;
}

.service-section .service-box .content .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px;
  font-size: 14px;
  background-color: #E7BF04;
  border-radius: 4px;
  font-weight: 700;
  text-transform: capitalize;
  animation: vibrateBtn .6s infinite alternate;


}

.service-section .service-box .icon {
  margin-top: -60px;
  margin-bottom: 13px;
  animation: vibrateBtn .4s infinite alternate;
}

.service-section .service-box .icon svg {
  width: 20px;
  height: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 50px;
  color: #542504;

}


@media (min-width:992px) and (max-width:1200px) {
  .service-section .service-box .content .button-grp {
    gap: 5px;
  }

}



.testimonial-section {
  padding: 50px 0; 
  position: relative;
}

.testimonial-section .testimonial-box {
  padding: 20px;
  position: relative;
}

.testimonial-section .testimonial-box .author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.testimonial-section .testimonial-box .author .img-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-section .testimonial-box .author .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}

.testimonial-section .testimonial-box .author p.name {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 700;
  color: #0F0400;
}

.testimonial-section .testimonial-box .author svg {
  color: #d77209;
}

.testimonial-section .testimonial-box p.message {
  color: #542504;

}

.testimonial-section .testimonial-box p.message svg {
  width: 30px;
  height: 30px;
}

.testimonial-section .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: .6;
  transition: all 0.4s;
}

.testimonial-section .owl-nav button:hover {
  opacity: 1;
}

.testimonial-section .owl-nav button.owl-prev {
  left: 0;
}

.testimonial-section .owl-nav button.owl-next {
  right: 0;
}

.testimonial-section .owl-nav button svg {
  width: 30px;
  height: 30px;
  color: #542504;
}


.testimonial-section .owl-dots {
  text-align: center;
}

.testimonial-section .owl-dot span {
  width: 12px;
  height: 12px;
  display: inline-block;
  background-color: #d77209;
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.4s;
}

.testimonial-section .owl-dot.active span {
  background-color: #0F0400;
  width: 20px;
  border-radius: 50px;
}

@media (max-width:1200px) {
  .testimonial-section .testimonial-box .author p.name {
    font-size: 22px;
  }
}




.mid-ad-banner img{
  width: 100%;
  height: 100%;
  position: relative;

}