.single-box-slick {
  border: 4px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
}

.txt-s {
  /* font-size: 1.7rem; */
  /* text-align: center; */
  word-break: keep-all;
  font-family: 'Open Sans', sans-serif;
}

.separator-1,
.separator-2 {
  width: 100px;
  height: 2px;
  display: block;
  margin: auto;
  background-color: #3085CA;
}

.separator-2 {
  background-color: rgba(0, 0, 0, 0.32) !important;
}

b,
strong {
  font-weight: bold !important;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  /* width: 40%; */
  border-radius: 5px !important;
  min-height: 300px;

}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/*slider-customers*/
.blk {
  filter: grayscale(100%);
  opacity: 0.8;
}

.blk:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/*icon-slider-customers*/
.but-icon {
  border-radius: 50%;
  border: none;
  margin: 3rem;
  display: block;
  outline: none;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 576px) {
  .but-icon {
    background-color: transparent;
  }

}

@media (max-width: 768px) {
  .ml-mm-2 {
    margin: 0.75rem !important;
  }
}

.circle {
  stroke: #007bff;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  -webkit-transition: all 0.5s ease-in-out;
  opacity: 0.3;
}

.playBack {
  background-image: url(./assets/images/screen_video.png);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 18.78rem;
}

.playBut {
  /*  border: 1px solid red;*/
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  padding-top: 35px;
}

.playBut .triangle {
  -webkit-transition: all 0.7s ease-in-out;
  stroke-dasharray: 240;
  stroke-dashoffset: 480;
  stroke: #ce1a19;
  transform: translateY(0);
}

.playBut:hover .triangle {
  stroke-dashoffset: 0;
  opacity: 1;
  stroke: #007bff;
  animation: nudge 0.7s ease-in-out;
}

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

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

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

  70% {
    transform: translateX(-2px);
  }

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

.playBut:hover .circle {
  stroke-dashoffset: 0;
  opacity: 1;
}

.service-section {
  background: #ddd;
  background-size: cover;
  padding: 60px 0;
}

.inner-width {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  overflow: hidden;
}

.section-title {
  text-align: center;
  color: #333333;
  font-size: 30px;
  margin-bottom: 20px;
}

.border {
  width: 160px;
  height: 2px;
  background: #82ccdd;
  margin: 40px auto;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto
}

.service-box {
  max-width: 33.33%;
  padding: 10px;
  text-align: center;
  color: #333333;
  cursor: pointer;
}

.service-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  border: 1px solid #3085CA;
  border-radius: 15%;
  color: #3085CA;
  transform: rotate(45deg);
  margin-bottom: 30px;
  margin-top: 16px;
  transition: 0.3s linear;
}

.service-icon i {
  line-height: 70px;
  transform: rotate(-45deg);
  font-size: 26px;
}

.service-box:hover .service-icon {
  background: #3085CA;
  color: #fff;
}

.service-title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #3085CA !important
}

.service-desc {
  font-size: 14px;
}

@media screen and (max-width: 960px) {
  .service-box {
    max-width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .service-box {
    max-width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .service-box {
    max-width: 100%;
  }
}