.strong-service-section {
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.strong-service-section.pt-100 {
  padding-top: 100px;
}
.strong-service-section.pb-70 {
  padding-bottom: 70px;
}
.strong-service-section::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.7);
  z-index: -1;
}

.strong-service-section .service-content {
  margin-bottom: 30px;
  padding: 43px 0;
  position: relative;
  z-index: 1;
}
.strong-service-section .service-content p {
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.strong-service-section .service-content::after {
  position: absolute;
  content: "";
  left: -60px;
  top: 0;
  width: 40%;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
}

.strong-service-section .service-content h2 {
  color: #fff;
  line-height: 1.3;
  margin-top: -10px;
  margin-bottom: 15px;
}

.strong-service-section .service-content p {
  color: #fff;
  margin-bottom: 30px;
}

.strong-service-section .primary-btn {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: var(--button-radius);
  border: none;
  padding: 10px 30px;
  z-index: 1;
  color: var(--color-second);
  background-color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--title-font-family);
  line-height: 1.8;
  text-transform: capitalize;
  cursor: pointer;
}

.strong-service-section .primary-btn::before,
.strong-service-section .primary-btn::after {
  content: "";
  position: absolute;
  width: calc(50% + 4px);
  height: 0;
  background-color: var(--color-second);
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.strong-service-section .primary-btn::before {
  bottom: 0;
  left: 0;
}

.strong-service-section .primary-btn::after {
  top: 0;
  right: 0;
}

.strong-service-section .primary-btn:hover {
  color:#fff;
}

.strong-service-section .primary-btn:hover::before,
.strong-service-section .primary-btn:hover::after {
  height: 120%;
}

.strong-service-section .cta-btn {
  line-height: 0.8;
}

.strong-service-section .service-content .primary-btn {
  background: #fff;
  font-family: var(--title-font-family);
}

.strong-service-section .strong-service-slider .slider-item {
  padding: 58px 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  max-width: 350px;
  background: rgba(26, 26, 26, 0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /*height: 360px;*/
  width: 200px;
}

.strong-service-section .strong-service-slider .slider-item > i {
  width: 60px;
  height: 60px;
  line-height: 57px;
  margin-bottom: 18px;
  background: #fff;
  text-align: center;
  display: block;
}

.strong-service-section .strong-service-slider .slider-item > i img {
  display: inline-block;
  max-width: 32px;
}

.strong-service-section .strong-service-slider .slider-item h3 {
  margin-bottom: 10px;
  height: 58px;
}

.strong-service-section .strong-service-slider .slider-item h3 a {
  color: #fff;
}

.strong-service-section .strong-service-slider .slider-item h3 a:hover {
  color: var(--color-primary);
}

.strong-service-section .strong-service-slider .slider-item p {
  margin-bottom: 20px;
  color: #d2d2d2;
}

.strong-service-section .strong-service-slider .slider-item .read-more-btn {
  color: #fff;
}

.strong-service-section .strong-service-slider .slider-item .read-more-btn i {
  vertical-align: -2px;
  color: var(--color-primary);
}

.strong-service-section
  .strong-service-slider
  .slider-item
  .read-more-btn:hover {
  color: var(--color-primary);
}

.strong-service-section .strong-service-slider .owl-nav {
  display: flex;
  position: absolute;
  left: -8%;
  bottom: 0;
}

.strong-service-section .strong-service-slider .slider-item:hover {
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.strong-service-section .owl-carousel .owl-nav .owl-prev,
.strong-service-section .owl-carousel .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  margin-right: 7px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: var(--color-second);
  text-align: center;
  font-size: 26px;
  border: none;
  line-height: 39px;
}

.strong-service-section .owl-carousel .owl-nav .owl-prev i,
.strong-service-section .owl-carousel .owl-nav .owl-next i {
  line-height: 1.3;
  font-size: 20px;
  color: #ffffff;
}

.strong-service-section .owl-carousel .owl-nav .owl-next {
  margin-right: 0;
}

.strong-service-section .owl-carousel .owl-nav .owl-prev:hover,
.strong-service-section .owl-carousel .owl-nav .owl-next:hover {
  background: var(--color-second);
  color: var(--color-primary);
}

@media (min-width: 992px) {
  .strong-service-section > .container > .row {
    flex-wrap: nowrap;
  }
}

@media (max-width: 991px) {
  .strong-service-section .slider-item {
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 30px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .strong-service-section .slider-item > i {
    margin-left: auto;
    margin-right: auto;
  }
  .strong-service-section .owl-carousel .owl-nav {
    justify-content: center;
    text-align: center;
    position: unset !important;
  }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
  .strong-service-section.pt-100 {
    padding-top: 90px;
  }
  .strong-service-section.pb-70 {
    padding-bottom: 60px;
  }
  .strong-service-section .owl-carousel .owl-nav {
    justify-content: center;
    text-align: center;
    position: unset !important;
  }
  .strong-service-section .slider-item {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .strong-service-section .pr-0 {
    padding-right: 15px !important;
  }
  .strong-service-section .service-content {
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    text-align: center;
    margin-bottom: 40px;
  }
  .strong-service-section .service-content::after {
    content: unset;
  }
  .strong-service-section .service-content h2 {
    margin-top: -8px;
  }
  .strong-service-section .service-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 545px;
  }
  .strong-service-section .service-content p,
  .strong-service-section .service-content .cta-btn {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .strong-service-section.pt-100 {
    padding-top: 50px;
  }
  .strong-service-section.pb-70 {
    padding-bottom: 20px;
  }
  /*.strong-service-section .slider-item {*/
  /*  max-width: 100% !important;*/
  /*  width: 100% !important;*/
  /*  margin-bottom: 30px;*/
  /*  text-align: center;*/
  /*  padding-left: 20px;*/
  /*  padding-right: 20px;*/
  /*}*/
  /*.strong-service-section .slider-item > i {*/
  /*  margin-left: auto;*/
  /*  margin-right: auto;*/
  /*}*/
  .strong-service-section .pr-0 {
    padding-right: 15px !important;
  }
  .strong-service-section .service-content {
    padding: 0;
    text-align: center;
    margin-bottom: 40px;
  }
  .strong-service-section .service-content::after {
    content: unset;
  }
  .strong-service-section .service-content h2 {
    margin-top: -7px;
  }
  .strong-service-section .service-content p,
  .strong-service-section .service-content .cta-btn {
    margin-bottom: 20px;
  }
  .strong-service-section .owl-carousel .owl-nav {
    justify-content: center;
    text-align: center;
    position: unset !important;
  }
}
