.bg-color{
  background: #82533912;
}
.title {
  text-align: center;
  margin-bottom: 45px;
}

.title.left {
  text-align: left;
}

.title p {
  margin-top: 25px;
}

.sub-title {
  font-size: 22px;
  line-height: 29px;
  color: var(--text-color); 
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.h1-title {
  font-size: 80px; 
  color: var(--primary-color);
  font-weight: 800; 
  text-transform: capitalize;
  margin-bottom: 18px;
}

.h2-title {
  font-size: 48px; 
  font-weight: 800;
  color: var(--primary-color); 
  text-transform: capitalize;
  margin-bottom: 30px;
  position: relative;
}

.h3-title {
  font-size: 40px; 
  color: var(--primary-color);
  font-weight: 800; 
  text-transform: capitalize;
  margin-bottom: 25px;
}

.h4-title {
  font-size: 25px; 
  color: var(--primary-color);
  font-weight: 800; 
  margin-bottom: 0;
}

/*==========Homepage CSS Start==========*/
section {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.homepage-banner {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  border-radius: 50px;
  padding: 150px 0 100px;
  overflow: hidden;
  z-index: 1;
}

.homepage-banner__shape-1 {
  position: absolute;
  top: 75px;
  left: 0;
  opacity: .2;
}

.homepage-banner__shape-1 img {
  width: auto;
}

.homepage-banner__shape-2 {
  position: absolute;
  bottom: 0px;
  left: 665px;
  opacity: .2;
}

.homepage-banner__shape-2 img {
  width: auto;
}

.homepage-banner__shape-3 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  opacity: .2;
}

.homepage-banner__shape-3 img {
  width: auto;
}

.homepage-banner__shape-4 {
  position: absolute;
  top: 100px;
  right: 385px;
  opacity: .10;
  z-index: -1;
  opacity: .2;
}

.homepage-banner__shape-4 img {
  width: auto;
}

.homepage-banner__shape-6 {
  position: absolute;
  width: 734px;
  height: 734px;
  right: 255px;
  top: 27px;
  background: #D9D9D9;
  opacity: 0.3;
  filter: blur(175px);
  border-radius: 50%;
}

.homepage-banner__inner {
  /* position: relative; */
  display: block;
  /* margin-left: -125px; */
  z-index: 5;
}

.homepage-banner__content {
  position: relative;
  display: block;
  max-width: 50%;
}

.sub-title-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
}

.sub-title-shape {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 13px;
  border: 1px solid var(--white);
  border-radius: 6px;
}

.sub-title-shape::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: var(--white);
  border-radius: 4px;
}

.sub-titles {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.1em; 
  margin-bottom: 0;
}

.homepage-banner__title {
  position: relative;
  font-size: 56px;
  color: var(--white);
  font-weight: 700;
}
.homepage-banner__content p{
  color: var(--white); 
}
 
  
.homepage-banner__img-box {
  position: absolute;
  top: 20px;
  bottom: 0;
  right: 4%;
  z-index: 2;
}

.homepage-banner__img {
  position: relative;
  display: block;
}

.homepage-banner__img>img {
  width: auto;
}

.homepage-banner__img-shape-1 {
  position: absolute;
  top: 91px;
  left: 303px;
}

.homepage-banner__img-shape-1 img {
  width: auto;
}

.homepage-banner__img-shape-2 {
  position: absolute;
  bottom: 14px;
  right: 245px;
}

.homepage-banner__img-shape-2 img {
  width: auto;
}

.banner-one__pain-point-1 {
  position: absolute;
  width: 125px;
  height: 45px;
  top: 89px;
  left: 276px;
  z-index: 2;
}

.homepage-banner__pain-markar {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 5;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.homepage-banner__pain-markar:before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  right: 6px;
  left: 6px;
  background-color: var(--primary-color);
  content: "";
  border-radius: 50%;
}

.homepage-banner__pain-markar:after {
  content: "\2b";
  font-family: 'FontAwesome';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-banner__popup-box {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  opacity: 0;
  transform: perspective(400px) rotateX(90deg) translateY(10px);
  transform-origin: bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.banner-one__pain-point-1:hover .homepage-banner__popup-box {
  opacity: 1.0;
  transform: perspective(400px) rotateX(0deg) translateY(0);
  transition-delay: .3s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.homepage-banner__popup {
  position: relative;
  display: block;
  max-width: 125px;
  width: 100%;
  background-color: var(--white);
  padding: 14px 15px 14px;
  border-radius: 3px;
}

.homepage-banner__popup:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  border-top: 16px solid var(--primary-color);
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  transform: translateX(-50%);
}

.homepage-banner__popup-inner {
  position: relative;
  display: block;
}

.homepage-banner__popup-title {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 15px;
  margin-bottom: 0;
}

.banner-one__pain-point-2 {
  left: auto;
  right: 25%;
  top: 48%;
}

.banner-one__pain-point-3 {
  left: 30.5%;
  top: auto;
  bottom: 34%;
}

.banner-one__pain-point-4 {
  left: auto;
  top: auto;
  bottom: 18%;
  right: 25.4%;
}

.homepage-banner__pain-markar .ripple,
.homepage-banner__pain-markar .ripple:before,
.homepage-banner__pain-markar .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 30, 0, .5);
  -o-box-shadow: 0 0 0 0 rgba(255, 30, 0, .5);
  -webkit-box-shadow: 0 0 0 0 rgba(255, 30, 0, .5);
  box-shadow: 0 0 0 0 rgba(255, 30, 0, .5);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.homepage-banner__pain-markar .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.homepage-banner__pain-markar .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}



@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}


@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
/*--------------------------------------------------------------
# Appointment One
--------------------------------------------------------------*/
.appointment {
  position: relative;
  display: block;
  padding: 0 0 60px;
  margin-top: -175px;
  z-index: 1;
}

.appointment .row {
  --bs-gutter-x: 0px;
}
 

.appointment__left-content {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  box-shadow: 0px 4px 25px rgba(255, 255, 255, 0.06);
  padding: 56px 60px 65px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  height: 100%;
}

.appointment .appointment__left-content h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 44px;
}

.appointment .appointment__left-content p {
  font-size: 18px;
  font-weight: 500; 
  color: var(--white);
  margin-top: 12px; 
}

.appointment__btn-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  text-transform: capitalize;
  padding: 12px 24px 12px;
  border-radius: 8px;
  background-color: var(--secondary-color); 
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  gap: 20px;
  z-index: 1;
}

.thm-btn::before {
  content: "";
  background-color: var(--text-color);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.thm-btn:hover::before {
  width: 100%;
}

.thm-btn::after {
  content: "";
  background-color: var(--text-color);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.thm-btn:hover::after {
  width: 100%;
}

.thm-btn:hover {
  color: var(--white);
}

.thm-btn span {
  position: relative;
  display: inline-block;
}

.thm-btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 1px;
  height: 16px;
  background-color: var(--white);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.appointment__btn {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.appointment__btn:hover {
  border: 1px solid rgb(255 255 255 / 10%);
}

.appointment__right {
  position: relative;
  display: block;
}

.appointment__right-content {
  position: relative;
  display: block;
  background-color: var(--white);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  padding: 53px 60px 60px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.appointment__right h4 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 16px;
}

.appointment ul {
  position: relative;
  display: block;
  margin-bottom: 0;
}

.appointment ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--secondary-color);
  padding: 12px 0;
}



.appointment ul li p {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary-color); 
  margin-bottom: 0;
}


/*---------------------------------
     About Section CSS 
-----------------------------------*/
.about-wrap {
  position: relative;
  z-index: 1;
  margin: 60px 0;
}
.about-wrap .about-shape-one, .about-wrap .about-shape-two {
  position: absolute;
  z-index: -1;
} 
.about-wrap .about-shape-two {
  top: -0px;
  left: 0;
}
.about-wrap .about-thumb-img {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 50px;
  width: auto;
}
.about-content{
  margin: 40px 0;
}
.about-wrap .about-img {
  border-radius: 5px;
}
.about-wrap .about-img img {
  border-radius: 5px;
}
.about-wrap:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 50%;
  height: 100%;
  border-radius: 5px;
  background-color: #faf9fb;
  z-index: -1;
  transform: translateY(-50%);
}
.about-wrap2{
  margin: 60px 0;
}
.about-wrap2::after {
  left: 0;
}

.bounce {
  -moz-animation: float 1500ms infinite ease-in-out;
  -webkit-animation: float 1500ms infinite ease-in-out;
  animation: float 1500ms infinite ease-in-out
}  

@-webkit-keyframes float {
  0% {
       -webkit-transform:translateY(0px);
               transform:translateY(0px);
  }

  50% {
      -webkit-transform:translateY(-5px);
              transform:translateY(-5px);
  }

  100% {
      -webkit-transform:translateY(0px);
              transform:translateY(0px);
  }
}
@keyframes float {
  0% {
       -webkit-transform:translateY(0px);
               transform:translateY(0px);

  }

  50% {
      -webkit-transform:translateY(-5px);
              transform:translateY(-5px);
  }

  100% {
      -webkit-transform:translateY(0px);
              transform:translateY(0px);
  }
}

.tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px; 
}

.tagline-shape-1 {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 13px;
  border: 1px solid var(--secondary-color);
  border-radius: 6px;
}

.tagline-shape-1::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: var(--secondary-color);
  border-radius: 4px;
}

.sub-tagline {
  position: relative;
  display: inline-block;  
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: capitalize; 
}
 
.content-feature-list li, .content-feature-list-two li {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-left: 23px;
  margin-bottom: 13px;
}
.content-feature-list {
  margin: 15px 0 20px;
}
.content-feature-list li i, .content-feature-list-two li i {
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--primary-color);
  line-height: 0.8;
}

/*service section start here*/


.service {
  background-color: var(--pelocis-black, #222222);
  position: relative;
  /* padding: 260px 0 120px; */
  overflow: hidden;
  counter-reset: count;
}  
.service__shape-one {
  position: absolute;
  bottom: 0;
  left: 0;
}
.service__shape-two {
  position: absolute;
  bottom: 0;
  right: 0;
}
.service__card {
  background-color: var(--white);
  padding: 10px;
  border-radius: 10px;
  position: relative;
  counter-increment: count;
  overflow: hidden;
  height: 100%;
}
.service__card__image {
  margin-bottom: 15px;
}
.service__card__image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 270px;
}
.service__card__content {
  padding: 20px 20px 25px;
  position: relative;
}
.service__card__icon {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  background-color: var(--primary-color);
  border: 4px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 30px;
  top: -57px;
  transition: all 0.4s ease;
  color: var(--white);
  font-size: 42px;
  padding: 10px;
}

.service__card__icon img{ 
  filter: invert(1);
}
.service__card__count {
  font-size: 40px;
  font-weight: 400;
  line-height: 1; 
  display: flex;
  align-items: center;
  gap: 18px; 
  transition: all 0.4s ease;
  margin: 0 0 14px;
}
.service__card__count::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}
.service__card__count i {
  font-size: 12px;
  position: relative;
  top: 1px;
}
.service__card__count i img {
  width: 110px;
  height: 17px;
}
.service__card:hover .service__card__count {
  color: var(--primary-color);
}
.service__card__content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
}
.service__card__content h3 a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service__card__content h3 a:hover {
  background-size: 100% 1px;
  color: var(--primary-color);
} 
.service__card__content p {
  font-size: 18px;
  font-weight: 400; 
  margin-bottom: 17px;
}
.service__card__link {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  z-index: 1;
  position: relative;
}
.service__card__link span { 
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 19px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service__card__link span:hover {
  background-size: 100% 1px;
}
/* .service__card__link i {
  font-size: 12px;
  line-height: 19px;
} */
.service__card__link:hover {
  color: var(--primary-color);
}
.service__card__shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  transition: all 0.6s ease;
  width: auto;
}
.service__card:hover .service__card__icon {
  background-color: var(--secondary-color);
}
.service__card:hover .service__card__shape {
  bottom: -20px;
  right: -40px;
} 


.content-sec{
  background-color: var(--text-color);
  position: relative;
}
.content-sec .ul-list{
color: white;
}

.content-text-box{
  display: flex;
  position: relative;
}
.content-text-box:not(:first-child){ 
  margin-top: 20px; 
}

.content-text-box i{  
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
    margin-top: 5px;
} 
.content-text-box p{
  color: #fff;
}
.content-text-box p:last-child{
  margin-bottom: 0;
}
.content-text-box li {
  color: #fff;
}


.site-footer__shape-1 {
  position: absolute;
  top: 140px;
  left: 0;
  animation: topBottom 3s ease-in-out infinite;

} 
.site-footer__shape-1 img {
  width: auto;
  opacity: .80;
}

.site-footer__shape-2 {
  position: absolute;
  top: 113px;
  right: 0;
  animation: leftRight 4s ease-in-out infinite;

}

.site-footer__shape-2 img {
  width: auto;
  opacity: 0.8;
}
 
.content-text-box p b {
  font-size: 21px;
}

@keyframes leftRight {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0px);
  }
}


@keyframes topBottom {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.content-sec:before {
  background-image: url(../images/texture-background.png);
  background-position: center center;
  background-size: cover;
  opacity: 0.05;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
}

/*Testimonials css start here*/
/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  
  z-index: 1;
}

.testimonial__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: soft-light;
  opacity: .40;
  z-index: -1;
}

.testimonial__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
 

.tagline-box.white .tagline-shape-1 {
  border-color: var(--white);
}
.tagline-box.white .tagline-shape-1:before {
  background-color: var(--white);
}
.tagline-box.white span{
  color: var(--white);
  background: inherit;
  -webkit-text-fill-color: inherit;
}


.testimonial-single {
  position: relative;
  display: block;
  padding:40px 31px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  height: 100%;
}

.testimonial-single:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  border: 1px solid #E5E5E5;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  z-index: -1;
}

.testimonial-client-img {
  position: relative;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.testimonial-client-img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-ratting {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
}

.testimonial-ratting span {
  position: relative;
  display: flex;
  align-items: center;
  color: #ffc107; 
  font-size: 17px;
}
.icon-star:before {
  content: "\f005";
  font-family: 'FontAwesome';
}
.testimonial-single p {
  margin-top: 23px;
}

.testimonial-client-info {
  position: relative;
  display: block;
  margin-top: 18px;
}

.testimonial-single h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 25px;
  color: var(--text-color);
}
 
.testimonial-single:hover h5 {
  color: var(--secondary-color);
}
.testimonial-client-info p {
  margin: 0;
}
.testimonial-client-sub-title {
  margin-top: 3px;
}

.testimonial-quote-icon {
  position: absolute;
  bottom: 39px;
  right: 39px;
}

.testimonial-quote-icon img {
  width: auto !important;
}

.zoominout {
  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;

  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;

  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

.team-two__shape-5 {
  position: absolute;
  top: 0;
  left: 75px;
  z-index: 1;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px){
  .about-wrap::after {
      width: 50%;
  }
}


/*--------------------------------------------------------------
# Appointment Two
--------------------------------------------------------------*/
.appointment-two {
  position: relative;
  display: block;
  padding: 100px 0 60px;
  z-index: 5;
}

.appointment-two__shape-3 {
  position: absolute;
  top: 240px;
  left: 60px;
  animation: topBottom 3s ease-in-out infinite;
  z-index: -1;
}

.appointment-two__shape-3 img {
  width: auto;
}

.appointment-two__shape-4 {
  position: absolute;
  top: 335px;
  right: 0;
  z-index: -1;
}

.appointment-two__shape-4 img {
  width: auto;
} 

.appointment-two__inner {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 60px 60px 60px;
  z-index: 5;
}

.appointment-two__shape-1 {
  position: absolute;
  width: 498px;
  height: 498px;
  left: 0px;
  bottom: 0px;
  background: #D9D9D9;
  opacity: 0.3;
  filter: blur(175px);
  border-radius: 50%;
  z-index: -1;
}

.appointment-two__shape-2 {
  position: absolute;
  top: 60px;
  left: 55px;
  z-index: -1;
  opacity: .1;
}

.appointment-two__shape-2 img {
  width: auto;
}

.appointment-two__img {
  position: absolute;
  bottom: 0;
  left: 55px;
  animation: leftRight 4s ease-in-out infinite;
}

.appointment-two__img img {
  width: auto;
}

.appointment-two__right {
  position: relative;
  display: block;
  margin-bottom: 30px;
} 

.appointment-two__form {
  position: relative;
  display: block;
}

.appointment-two__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.appointment-two__input-box input[type="text"],
.appointment-two__input-box input[type="tel"],
.appointment-two__input-box input[type="email"], 
.appointment-two textarea { 
  width: 100%;
  border: 1px solid var(--white);
  background-color: #fff;
  padding: 15px;
  outline: none;
  font-size: 16px;
  color: var(--text-color);
  display: block;
  font-weight: 400;
  border-radius: 8px;
}
.appointment-two textarea{
  height: auto;
}   

.appointment-two__btn {
  border: 1px solid var(--white);
  padding: 13px 24px;
}

.appointment-two__btn:hover {
  border: 1px solid var(--black);
}
.appointment-two .screen-reader-response {
  display: none;
}
.appointment-two span.wpcf7-not-valid-tip {
  color: red;
  margin-top: 5px;
  display: inline-block;
}
.appointment-two .appointment-two__btn:hover {
  background: #000;
}
.appointment-two input.wpcf7-form-control.wpcf7-quiz {
  width: 70px;
  display: block;
  border: 1px solid rgb(128, 126, 126);
  padding: 6px;
  margin-top: 5px;
  height: 52px;
}
.appointment-two span.wpcf7-quiz-label {
  color: #fff;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
position: relative;
display: block;
padding: 120px 0 90px;
background-color: var(--white);
z-index: 1;
}

.blog-two__shape-1 {
position: absolute;
left: 0;
bottom: 0;
mix-blend-mode: luminosity;
z-index: -1;
}

.blog-two__shape-1 img {
width: auto;
opacity: .40;
}

.blog-two .section-title__tagline-shape-1::before {
background-color: transparent;
border: 1px solid var(--secondary-color);
}

.blog-two__single {
position: relative;
display: block;
border: 1px solid #E3E3E3;
border-radius: 10px;
padding: 20px; 
height: 100%;
}
.blog-page .col-xl-4.col-lg-4.col-md-6{
margin: 15px 0;
}
.blog-two__img-box {
position: relative;
display: block;
}

.blog-two__img {
position: relative;
display: block;
overflow: hidden;
border-radius: 8px;
}

.blog-two__img img {
width: 100%;
height:250px;
border-radius: 8px;
transition: 0.5s;
background-size: cover;
}

.blog-two__img img:nth-child(1) {
transform: translatex(50%) scalex(2);
opacity: 0;
filter: blur(10px);
}

.blog-two__img img:nth-child(2) {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
object-fit: cover;
}

.blog-two__link {
display: flex;
width: 100%;
height: 100%;
background-color: rgb(16 26 41 / 50%);
position: absolute;
top: 0;
left: 0;
justify-content: center;
align-items: center;
opacity: 0;
transform: translateY(-20%);
transition: opacity 500ms ease, transform 500ms ease;
}

.blog-two__link::before,
.blog-two__link::after {
content: "";
width: 25px;
height: 2px;
background-color: var(--white);
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.blog-two__link::after {
transform: translate(-50%, -50%) rotate(90deg);
}

.blog-two__single:hover .blog-two__link {
opacity: 1;
transform: translateY(0);
}

.blog-two__single:hover .blog-two__img img:nth-child(1) {
transform: translatex(0) scalex(1);
opacity: 1;
filter: blur(0);
}

.blog-two__single:hover .blog-two__img img:nth-child(2) {
transform: translatex(-50%) scalex(2);
opacity: 0;
filter: blur(10px);
}

.blog-two__date {
position: absolute;
left: 30px;
bottom: -26px;
}

.blog-two__date p {
position: relative;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
text-align: center;
width: 61px;
height: 61px;
background-color: var(--secondary-color);
border-radius: 8px;
font-size: 24px;
font-weight: 700;
line-height: 24px;
color: var(--white); 
}

.blog-two__date p>span {
font-size: 12px;
font-weight: 400; 
line-height: 12px;
margin-top: 1px;
}

.blog-two__content {
position: relative;
display: block;
padding-top: 43px;
}

.blog-two__meta {
position: relative;
display: flex;
align-items: center;
}

.blog-two__meta li {
position: relative;
display: flex;
align-items: center;
}

.blog-two__meta li+li {
margin-left: 31px;
}

.blog-two__meta li .icon {
position: relative;
display: inline-block;
}

.blog-two__meta li .icon span {
position: relative;
display: inline-block;
font-size: 20px;
color: var(--secondary-color);
}

.blog-two__meta li>a {
font-size: 14px;
font-weight: 600;
color: var(--primary-color);
margin-left: 10px;
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
}

.blog-two__meta li>a:hover {
color: var(--secondary-color);
}

.blog-two__title {
font-size: 22px;
font-weight: 700;
line-height: 32px;
margin-top: 10px;
margin-bottom: 15px;
}

.blog-two__title a {
color: var(--black);
}

.blog-two__title a:hover {
color: var(--secondary-color);
}

.blog-two__read-more {
position: relative;
display: flex;
align-items: center;
font-size: 16px;
font-weight: 600;
text-transform: capitalize;
color: var(--primary-color);
}

.blog-two__read-more:hover {
color: var(--secondary-color);
}

.blog-two__read-more>span {
position: relative;
margin-left: 11px;
top: 1px;
}


/*FAQ Section Start here*/

.faq .accordion-item {
border: none;
margin: 0 0 20px;
background: transparent;
}
.faq .accordion-item:last-child{
margin-bottom: 0;
}
.faq .accordion-item .accordion-header {
margin-bottom: 0;
position: relative;
z-index: 3;
}
.faq .accordion-item .accordion-header .accordion-button {
border-radius: 5px 5px 0 0;
margin: 0;
font-size: 18px;
line-height: 26px;
font-weight: 700; 
border-radius: 5px;
color: var(--white);
text-align: left;
align-items: center;
border: none;
padding: 15px 50px 15px 15px;
transition: var(--transition);
box-shadow: unset;
pointer-events: none;
}
.faq .accordion-item .accordion-header .accordion-button.collapsed {
background-color:var(--secondary-color);
}
.faq .accordion-item .accordion-header .accordion-button:not(.collapsed) {
background-color: var(--secondary-color);
box-shadow: none;
}
.faq .accordion-button::after {
content: "\f063";
font-family: 'FontAwesome';
background-image: unset !important;    
transform: rotate(-180deg);
}
.faq .faq .accordion-item .accordion-header .accordion-button span {
display: inline-block;
min-width: 50px;
height: 100%;
position: absolute;
top: 0;
right: 0;
padding: 20px 20px;
text-align: center;
}
.faq .accordion-item .accordion-header .accordion-button span i.minus {
visibility: hidden;
opacity: 0;
}
.faq .accordion-button:not(.collapsed) span i.minus {
visibility: visible !important;
opacity: 1 !important;
}
.faq .accordion-button:not(.collapsed) span i.plus {
visibility: hidden;
opacity: 0;
}
.faq .accordion-collapse {
border: none;
}
.faq .accordion-item .accordion-body {
border-radius: 0 0 5px 5px;
padding-bottom: 15px;
padding: 15px;
border: 1px solid rgba(0, 0, 0, 0.1);
border-top: none;
background-color: #fff;
}
.faq .accordion-item .accordion-body p:last-child {
margin: 0;
}

/*==========404 Error Page CSS Start==========*/
.main-404-error {
  margin: 0;
}

.error-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.error-content .error-img {
  margin-bottom: 30px;
  max-width: 500px;
}

.error-content .h2-title {
  margin-bottom: 18px;
  color: var(--text-color);
}

.error-content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 32px;
}

.thank-you-img {
   
  max-width: 250px;
  margin: auto;
  margin-bottom: 20px;
}
.thank-you-img svg{
  width: 150px;
  height: 150px;
  color: var(--primary-color);
}
.thank-you-img .error-img{
  margin-bottom: 0;
}
/*==========404 Error Page CSS End==========*/




.page-blog-detail h1{
  font-size: 40px;
font-weight: 800; 
margin: 30px 0 10px 0;      
color: var(--primary-color); 
}
.page-blog-detail .title, .page-blog-detail h2 {
font-size: 37px;
font-weight: 800; 
margin: 30px 0 10px 0;     

}
.page-blog-detail h3 {
font-size: 27px;
font-weight: 800; 
margin: 20px 0 10px 0;    

}
.page-blog-detail h4 {
font-size: 25px;
font-weight: 800; 
margin: 20px 0 10px 0;  

}
.page-blog-detail h5, .page-blog-detail h6{
font-size: 24px;
font-weight: 800; 
margin: 20px 0 10px 0;    
text-transform: capitalize;

}
.page-blog-detail .content {
margin-top: 20px;

} 
.sidebar .h4-title {
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 30px;
  margin-top: 0;
}
.sidebar .h4-title:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 79px;
  height: 1px;
  background: var(--primary-color);
}
.recent-post-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.recent-post-box:not(:last-child) {
  margin-bottom: 25px;
}
.recent-post-box .img {
  width: 100px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.recent-post-box .text p {
  margin-bottom: 10px;
  font-weight: 700;
}
.recent-post-box .date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
}
.recent-post-box .date img {
  width: 20px;
}
.sidebar {
  position: sticky;
  top: 100px;
}
.page-blog-detail{
  overflow: inherit;
}



/*about Us Page css Start here*/
.breadcrumb-wrap {
padding: 100px 0;
position: relative;
z-index: 1;
overflow: hidden;
}
.breadcrumb-wrap img{
width: auto;
}
.breadcrumb-wrap .br-shape-one, .breadcrumb-wrap .br-shape-two {
position: absolute;
z-index: 0;
}
.breadcrumb-wrap .br-shape-one {
left: 15%;
top: 60px;
}
.breadcrumb-wrap .br-shape-two {
top: 30%;
right: 18%;
transform: translateY(-50%);
}
.breadcrumb-content {
text-align: center;
}
.breadcrumb-content h2, .breadcrumb-content h1 {
font-size: 60px; 
font-weight: 700;
margin: 0 0 13px;
}

.breadcrumb-content .breadcrumb-menu {
text-align: center;
}
.breadcrumb-content .breadcrumb-menu li {
display: inline-block;
position: relative;
color: var(--black);
font-weight: 500; 
}
.breadcrumb-content .breadcrumb-menu li:first-child {
margin-left: 0;
}
.breadcrumb-content .breadcrumb-menu li:last-child {
margin-right: 0;
padding-right: 0;
}

.breadcrumb-content .breadcrumb-menu li a {
display: inline-block;
transition: 0.3s;
-webkit-transition: 0.3s;
position: relative;
color: var(--secondary-color);
}
.breadcrumb-content .breadcrumb-menu li:first-child:after {
content: "\f101";
font-weight: 700;
font-family: 'Font Awesome 5 Free';
margin: 0 6px; 
font-size: 13px;
}

.moveHorizontal {
-moz-animation: moveHorizontal 3000ms infinite ease-in-out;
-webkit-animation: moveHorizontal 3000ms infinite ease-in-out;
animation: moveHorizontal 3000ms infinite ease-in-out;
}
@-webkit-keyframes moveHorizontal {
0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px)
}

50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px)
}

100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px)
}
}

@keyframes moveHorizontal {
0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px)
}

50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px)
}

100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px)
}
}
.animationFramesTwo {
-moz-animation: animationFramesTwo 20000ms infinite ease-in-out;
-webkit-animation: animationFramesTwo 20000ms infinite ease-in-out;
animation: animationFramesTwo 20000ms infinite ease-in-out;
}
@-webkit-keyframes animationFramesTwo {
0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
}

20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
}

40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
}

60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
}

80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
}

100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
}
}
@keyframes animationFramesTwo {
0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
}

20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
}

40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
}

60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
}

80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
}

100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
}
}

.blog-date {
color: #134cb3;
margin-top: 20px;
display: block;
font-weight: 700;
}

h1.blog-heading {
font-size: 40px;
font-weight: 700;
margin: 0 0 13px;
}

/*responsive css start here*/

@media (max-width: 1399px){
.blog-date {
  font-size: 13px;
}
}

@media (max-width: 1199px){
  .h1-title {
      font-size: 60px;
  } 
  .page-blog-detail h1 {
      font-size: 35px;
      }
  .page-blog-detail .title, .page-blog-detail h2 {
      font-size: 32px;
  }
  .homepage-banner__img-shape-1, 
  .homepage-banner__img-shape-2, 
  .banner-one__pain-point-1{
    display: none;
  }
  .homepage-banner__content{
    max-width: 55%;
  }
  .homepage-banner__img-box {
      position: initial;
      max-width: 45%; 
  }
  .homepage-banner__inner{
    display: flex;
    align-items: center;
  }
  .homepage-banner__img>img { 
    max-width: 100%;
  }
  .homepage-banner{
    padding: 30px 0 0;
  }
  .appointment__left-content{
    padding: 40px;
  }
  .appointment__right-content{
    padding: 40px;
    margin-top: 30px;
  }
  .homepage-banner__title{
    font-size: 42px;
  }
  .appointment{
    padding-bottom: 30px;
  }
  
  .about-wrap:after{
    width: 50%;
    height: 100%;
  }
  .about-wrap .about-thumb-img{
    display: none;
  }
  .service__card__count i img {
    width: 70px;
    height: 17px;
    object-fit: contain;
  }
  .service__card__content{
    padding: 20px 15px 25px;
  }
  .appointment-two__img{
    left: 30px;
  }
  .appointment-two__img img{
    max-width: 340px;
  }
  .appointment-two__input-box{
    margin-bottom: 20px;
  }
  .appointment-two__input-box input[type="text"], 
  .appointment-two__input-box input[type="email"], 
  .appointment-two textarea{
    padding: 10px 15px;
  }
  .appointment-two{
    padding: 60px 0 60px;
  }

  }


@media (max-width: 992px){
.h1-title {
  font-size: 50px;
}
.h2-title {
  font-size: 40px;
  margin-bottom: 20px;
} 
.h1-title {
  font-size: 44px;
} 
.h3-title {
  font-size: 36px;
}
.h4-title {
  font-size: 22px;
} 
.appointment{
margin-top: 30px;
}
.homepage-banner {
padding: 50px 0;
border-radius: 50px 0 0 0px;
}
.homepage-banner__img-box{
display: none;
}
.homepage-banner__content{
max-width: 100%;
}
.appointment__left-content, .appointment__right-content {
padding: 25px;
}
.about-wrap:after{
display: none;
}
.appointment-two__img{
display: none;
}
.appointment-two__inner{
padding: 40px;
}
.appointment-two{
padding: 40px 0 40px;
}
.faq .accordion-item .accordion-header .accordion-button{
padding: 10px 20px 10px 15px;
}
.blog-two__single, .service__card {
max-width: 480px;
margin-left: auto;
margin-right: auto;
}

.recent-posts .item-details h4 {
  font-size: 19px;
  }
.sidebar .h4-title { 
  margin-bottom: 20px;
  margin-top: 10px;
}
.breadcrumb-content h2, .breadcrumb-content h1 {
font-size: 50px;
}
h1.blog-heading{
font-size: 33px;
}
.breadcrumb-wrap .br-shape-one {
left: 15%;
top: 30px;
max-width: 160px;
}
.breadcrumb-wrap {
padding: 60px 0;
} 
.about-img {
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.content-feature-list{
margin-bottom: 0;
}
.about-wrap{
margin: 40px 0;
}
.about-content, .about-img{
margin: 10px 0;
}
}


@media (max-width: 767px){
  .sub-title {
      font-size: 17px;
      margin-bottom: 10px;
      line-height: normal;
  }
  .h1-title {
      font-size: 32px;
  }
  .h2-title {
      font-size: 27px;
  } 
  .error-content p{
      margin-bottom: 20px;
  }
  .thank-you-img svg {
      width: 130px;
      height: 130px;
  }
  .thank-you-img{
      margin-bottom: 10px;
  } 
  
.testimonial-single{
  height: auto;
}
  .error-content .error-img {
      margin-bottom: 20px;
  }
  .testimonial-single {
    margin: 15px 0;
    padding: 30px 20px;
  }
  .homepage-banner__title {
    font-size: 34px;
  }
.homepage-banner {
  padding: 40px 0;
  border-radius: 0;
}
.sub-titles{
  font-size: 19px;
  letter-spacing: normal;
}
.appointment .appointment__left-content h4, .appointment__right h4 {
  font-size: 28px;
  line-height: normal;
}
.appointment__btn-box{
  margin-top: 20px;
}
.appointment ul li:first-child{
  padding-top: 0;
}
.about-content{
  margin: 0;
}
.about-wrap2{
  padding: 40px 0;
  margin: 0;
}
.about-content, .about-img {
  margin: 9px auto;
}
.appointment-two__inner {
  padding: 25px 20px;
}
.testimonial__top{
  margin: 0;
}
}

@media (max-width: 576px){
.testimonial__top{
  margin: 0;
}
.footer-top {
  margin-bottom: 20px;
}
.breadcrumb-wrap{
  padding: 30px 0;
}
.breadcrumb-content h2, .breadcrumb-content h1 {
  font-size: 33px;
}

h1.blog-heading {
  font-size: 29px;
}
.breadcrumb-wrap .br-shape-one {
  left: 8%;
  top: 30px;
  max-width: 100px;
}
}

@media (max-width: 480px){
  
.sub-title { 
  margin-bottom: 5px;
} 

.page-blog-detail h1 {
  font-size: 28px;    
  margin: 20px 0 10px 0;
}
.page-blog-detail .title, .page-blog-detail h2 {
  font-size: 28px;
  margin: 20px 0 10px 0;
}
.page-blog-detail h3 {
  font-size: 25px;
  }
.page-blog-detail h4 {
font-size: 24px;
}
.page-blog-detail h5, .page-blog-detail h6{
  font-size: 22px;
}
.homepage-banner__title {
font-size: 30px;
}
.site-navbar .about-two__btn-box {
display: none;
}
.appointment-two__btn { 
padding: 13px 20px;
}
}

@media (max-width:375px){
.page-blog-detail .title, .page-blog-detail h2 {
font-size: 26px;
}
.page-blog-detail .title, .page-blog-detail h2 {
font-size: 24px;
}
}