/* Services CSS */
.services-wrapper .service-slider {
  position: relative;
}
.services-wrapper .service-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 0;
  /* border-radius: 50%; */
  box-shadow: none;
  border: 0;
  color: #0e3324;
}
.services-wrapper .service-slider .slick-arrow:hover {
  color: #fff;
  background: #0e3324;
}
.services-wrapper .service-slider .slick-arrow.slick-prev {
  left: -40px;
}
.services-wrapper .service-slider .slick-arrow.slick-next {
  right: -40px;
}
.services-wrapper .service-slider .slick-arrow.slick-prev:before {
  font-family: FontAwesome;
  content: "\f053";  
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}
.services-wrapper .service-slider .slick-arrow.slick-next:before {
  font-family: FontAwesome;
  content: "\f054";  
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}
.services-wrapper .service-slider .slick-slide {
  padding: 0 10px;
}

.services-wrapper .service-single-item {
  position: relative;
  padding: 0;
}

.services-wrapper .service-single-item.sr-item {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .services-wrapper .service-slider {
    padding-left: 30px;
    padding-right: 30px;
  }
  .services-wrapper .service-slider .slick-arrow.slick-prev {
    left: -10px;
  }
  .services-wrapper .service-slider .slick-arrow.slick-next {
    right: -10px;
  }
}

@media (max-width: 767px) {
  .services-wrapper .service-single-item {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.service-single-item .service-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 0;
  text-align: center;
  padding: 0;
  line-height: 90px;
  font-size: 36px;
  color: #0e3324;
  -webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
  box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.service-single-item .service-sr-content {
  margin-top: 25px;
}

.service-single-item .service-sr-content h3 {
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: inline-block;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
}

.service-single-item .service-sr-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #0e3324;
}

.service-single-item .service-sr-content p {
  margin-top: 20px;
}

.service-single-item .service-sr-content a {
  margin-top: 20px;
}

.service-single-item .service-sr-hover {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #dee5eb;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.service-single-item .service-single-item-hover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 40px 25px 25px;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.service-single-item .service-sr-hover .img-wrapper {
  position: relative;
  overflow: hidden;
}
.service-single-item:hover .service-single-item-hover {
  visibility: visible;
  opacity: 1;
}
.service-single-item .service-sr-hover .img-wrapper img {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.service-single-item .service-sr-hover .img-wrapper .img-shadow {
  position: absolute;
  width: 130%;
  height: 120%;
  /* background-image: url(../images/shadow.png); */
  bottom: -60px;
  left: -80px;
  z-index: 1;
  background-size: cover;
  opacity: 0.7;
}

.service-single-item .service-sr-hover .img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 110%;
  height: 80px;
  -webkit-clip-path: polygon(50% 0%, 0 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0 100%, 100% 100%);
  background-color: #ffffff;
  z-index: 1;
}

.service-single-item .service-sr-hover .img-wrapper::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 110%;
  height: 80px;
  -webkit-clip-path: polygon(50% 0%, 0 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0 100%, 100% 100%);
  background-color: #dee5eb;
  z-index: 2;
}

.service-single-item .service-sr-hover .icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
  box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -120px;
  position: relative;
  z-index: 15;
}

.service-single-item .service-sr-hover .icon-wrapper .service-img {
  border-radius: 0;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  height: 90px;
  width: 90px;
  text-align: center;
  padding: 0;
  line-height: 90px;
  font-size: 36px;
  color: #0e3324;
}

.service-single-item .service-sr-hover .icon-wrapper .service-icon-shadow {
  position: absolute;
  display: inline-block;
  bottom: -6px;
  left: 6px;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background-color: #0e3324;
  z-index: -1;
}

.service-single-item .service-sr-hover .service-sr-content {
  padding: 25px;
}

.service-single-item:hover::after {
  opacity: 0;
}

.service-single-item:hover .service-sr-hover {
  opacity: 1;
  visibility: visible;
}

.service-single-item:hover .service-single-item-hover .service-icon-wrapper {
  -webkit-animation: 0.5s ct_fadeInDown forwards;
  animation: 0.5s ct_fadeInDown forwards;
}

.service-single-item:hover .service-single-item-hover .service-sr-content h6 {
  -webkit-animation: 0.3s ct_fadeInUp forwards;
  animation: 0.3s ct_fadeInUp forwards;
}

.service-single-item:hover .service-single-item-hover .service-sr-content p {
  -webkit-animation: 0.6s ct_fadeInUp forwards;
  animation: 0.6s ct_fadeInUp forwards;
}

.service-single-item:hover .service-single-item-hover a.service-readmore-btn {
  -webkit-animation: 1s ct_fadeInUp forwards;
  animation: 1s ct_fadeInUp forwards;
}

.service-single-item.slick-active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  border: 1px dashed #eaeaea;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.service-services .service-service-wrapper .slick-list {
  padding: 100px 0px 80px 0;
}

.service-services .service-service-wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  background-color: #eaeaea;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #082680;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0;
}

.service-services .service-service-wrapper .slick-arrow:hover {
  background-color: #082680;
  color: #ffffff;
}

.service-services .service-service-wrapper .slick-arrow.next-arrow {
  left: auto;
  right: 0px;
}

.service-services:hover .slick-arrow {
  opacity: 1;
}

.service-services:hover .slick-arrow.prev-arrow {
  left: -80px;
}

@media (max-width: 767.98px) {
  .service-services:hover .slick-arrow.prev-arrow {
    left: -40px;
  }
}

.service-services:hover .slick-arrow.next-arrow {
  right: -40px;
}

@media (max-width: 767.98px) {
  .service-services .service-service-slider {
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }
  .service-single-item {
    text-align: center;
  }
  .service-single-item .service-sr-content h3::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.service-primary-btn {
  padding: 0 8px 0 16px;
  background-color: #0431b8;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  border-radius: 3px;
  height: 55px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: 1;
}

.service-primary-btn span {
  padding: 6px 10px;
  background-color: #22d3ee;
  display: inline-block;
  border: none;
  color: #ffffff;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  overflow: hidden;
}

.service-primary-btn::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 100%;
  left: -70px;
  top: 0;
  -webkit-transform: skew(-10deg);
  -ms-transform: skew(-10deg);
  transform: skew(-10deg);
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
  background-image: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  z-index: -1;
}

.service-primary-btn:hover {
  color: #ffffff;
  background-color: #073ad3e1;
}

.service-primary-btn:hover span i {
  -webkit-animation: 0.5s movingright;
  animation: 0.5s movingright;
}

.service-primary-btn:hover::before {
  -webkit-animation: 800ms shine;
  animation: 800ms shine;
}

.service-readmore-btn {
  padding: 10px 15px;
  background-color: #0e3324;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  border-radius: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  z-index: 1;
  overflow: hidden;
  vertical-align: middle;
}

.service-readmore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
  background-image: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.service-readmore-btn:hover {
  background-color: #222;
  color: #ffffff;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.service-readmore-btn:hover::before {
  left: 100%;
}
@keyframes ct_fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes ct_fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}