/** ADD YOUR AWESOME CODES HERE **/

.search-page .media {
  background-color: #f1f1f1;
  margin-bottom: 20px;
  padding: 10px
}

.search-page .media img {
  width: 64px;
}

.search-page .search-page-title {
  background: #fff;
}

.search-resluts {
  background: #fff;
}

/* single service */
.service-page .content {
  font-size: 18px;
}

.single-service .content {
  font-size: 18px
}

.partners {
  padding: 60px 0;
}

.partners img {
  height: 150px;
  width: 100%;
}

/* clients */
.clients {
  background: #f1f1f1
}


/*------------------------------------*\
    preloader
\*------------------------------------*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  background-color: #333;
  z-index: 100000;
  background-size: contain;
  background-position: bottom center;
}

.preloader {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader span {
  display: inline-block;
  background-color: #6195FF;
  width: 25px;
  height: 25px;
  -webkit-animation: 1s preload ease-in-out infinite;
  animation: preload 1s ease-in-out infinite;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  border-radius: 50%;
}

.preloader span:nth-child(1) {
  background-color: #00c0ef;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.preloader span:nth-child(2) {
  background-color: #8a18d4;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}

.preloader span:nth-child(3) {
  background-color: #00a65a;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

.preloader span:nth-child(4) {
  background-color: #f39c12;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

@-webkit-keyframes preload {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes preload {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

#loade {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2;
  cursor: pointer;
}