@charset "utf-8";
/*-------------------------------
    Promo & counter Section CSS
-------------------------------*/

.promo-card {
  margin-bottom: 25px;
  text-align: center;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.promo-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.promo-card p {
  margin: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.promo-card.style1 {
  padding: 25px;
  -webkit-box-shadow: 0px 4px 15px rgba(5, 17, 69, 0.08);
  box-shadow: 0px 4px 15px rgba(5, 17, 69, 0.08);
}

.promo-card.style1 .promo-icon {
  display: inline-block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #ebf5ff;
  text-align: center;
  margin: 0 auto 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.promo-card.style1 .promo-icon:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  background-color: #0081ff;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.promo-card.style1 .promo-icon i {
  position: relative;
  top: -4px;
  font-size: 43px;
  line-height: 86px;
  margin: 0 auto;
  color: #0081ff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.promo-card.style2 {
  position: relative;
}

.promo-card.style2 .promo-info {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: calc(100% - 50px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  padding: 25px;
  text-align: center;
}

.promo-card.style2 .promo-info:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #0081ff;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.promo-card.style2:hover .promo-info:after {
  width: 100%;
  opacity: 1;
}

.promo-card.style2:hover .promo-info h3 {
  color: #fff;
}

.promo-card.style2:hover .promo-info p {
  color: rgba(255, 255, 255, 0.8);
}

.promo-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.promo-card:hover .promo-icon:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.promo-card:hover .promo-icon i {
  color: #fff;
}

.counter-card-wrap.style1 {
  background-color: #fff;
  padding: 50px 30px 25px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin: -100px 0 0;
  position: relative;
  z-index: 1;
}

.counter-card-wrap.style2 {
  background-color: #fff;
  padding: 45px 30px 20px 45px;
  margin-top: -80px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 4px 15px rgba(5, 17, 69, 0.06);
  box-shadow: 0px 4px 15px rgba(5, 17, 69, 0.06);
}



/*-------------------------------
       Search Box Widget CSS
-------------------------------*/
.search-box {
  position: relative;
}

.search-box .form-group {
  position: relative;
}

.search-box .form-group input.txt {
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  font-size: 15px;
  line-height: 21px;
  padding: 10px 100px 10px 20px;
  border-radius: 0;
}

.search-box .form-group input.txt:focus {
  border-color: #888888;
}

.search-box .form-group input.btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  width: 80px;
  height: 100%;
  border: none;
  border-radius: 0;
  text-align: center;
  background: #0081ff;
}

.search-box .form-group input.btn i {
  color: #fff;
  font-size: 20px;
  position: relative;
}

.search-box.style2 .form-group {
  position: relative;
}

.search-box.style2 .form-group input.txt {
  background: #ebf5ff;
  border: none;
}



/*-------------------------------
   Project  Section  CSS
-------------------------------*/
.project-card {
  position: relative;
  margin-bottom: 25px;
}

.project-card .project-info {
  width: calc(100% - 50px);
  margin: -60px auto 0;
  background-color: #fff;
  padding: 20px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 2px 20px rgba(5, 17, 69, 0.08);
  box-shadow: 0px 2px 20px rgba(5, 17, 69, 0.08);
}

.project-card .project-info .project-title {
  width: calc(100% - 50px);
  margin-right: auto;
}

.project-card .project-info .project-title h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.project-card .project-info .project-title h3:hover a {
  color: #0081ff;
}

.project-card .project-info .project-title p {
  margin: 0;
}

.project-card .project-info .project-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background-color: rgba(0, 129, 255, 0.08);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.project-card .project-info .project-link i {
  font-size: 18px;
  font-weight: 800;
  line-height: 50px;
  color: #0081ff;
  position: relative;
  right: -2px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.project-card .project-info .project-link:hover {
  background-color: #0081ff;
}

.project-card .project-info .project-link:hover i {
  color: #fff;
}

.project-slider-one,
.project-slider-two {
  margin: -10px -5px;
}

.project-slider-one .project-card,
.project-slider-two .project-card {
  margin: 10px 5px;
}

.testimonial-slider-two.owl-carousel .owl-dots,
.project-slider-one.owl-carousel .owl-dots,
.project-slider-two.owl-carousel .owl-dots {
  margin: 20px 0 10px;
  text-align: center;
}

.project-slider-one,
.project-slider-two {
  margin: 0 0 -10px 0;
}

.project-slider-one .project-card,
.project-slider-two .project-card {
  margin: 0 0 10px 0;
}