﻿/* About Section */
.about-section {
  position: relative;
  background-color: var(--global-palette7);
}

/* services-section */
.services-section {
  position: relative;
}

.service-card-area .card {
  border: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.service-card-area .card i {
  color: var(--global-palette1);
}

/* counter */
/* .stats-sections {
  padding: 100px 0;
  background-color: var(--global-palette4);
  color: var(--global-palette7)
} */

.counter-section i {
  display: block;
  margin: 0 0 10px
}

.counter-section span.counter {
  font-size: 40px;
  color: var(--global-palette7);
  display: block;
}

.counter-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase
}

.counter-icon {
  top: 25px;
  position: relative
}

.counter-style2 .counter-title {
  letter-spacing: 0.55px;
  float: left;
}

.counter-style2 span.counter {
  letter-spacing: 0.55px;
  float: left;
  margin-right: 10px;
}

.counter-style2 i {
  float: right;
  line-height: 26px;
  margin: 0 10px 0 0
}

.counter-subheadline span {
  float: right;
}

.medium-icon {
  font-size: 40px !important;
  margin-bottom: 15px !important;
}

/* Testimonial area */
.testimonial-area {
  padding: 50px 0;
  background-image: url(../image/testimonail-bg.webp);
}

.onw-testimonial .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}

.onw-testimonial .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 15px auto 0;
  box-shadow: 0 8px 20px -4px var(--global-palette7);
  width: 100px;
  height: 100px;
}

.onw-testimonial .card {
  background: #fff;
  box-shadow: 0 8px 30px -7px var(--global-palette7);
  margin: 0 20px;
  padding: 0 10px;
  border-radius: 20px;
  border: 0;
}

.onw-testimonial .owl-next,
.onw-testimonial .owl-prev {
  bottom: 150px;
}

.tech-area h2 {
  font-size: 56px;
  padding: 10px 0;
}

/* lastest News */
/* Feel free to change duration  */
.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1
}

/* .owl-animated-in - only for upcoming item
  /* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0
}

/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
