
/** clients-section **/

.clients-section{
  position: relative;
  padding: 80px 0px;
}

.clients-section .client-logo img{
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.clients-section .client-logo:hover img{
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}

  .clients-section.alternet-2{
    background: #f9f9f9;
    padding: 65px 0px;
  }
  
  .clients-section.alternet-2 .client-logo img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
  }
  
  .clients-section.alternet-2 .client-logo:hover img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
  }
/** contact-section **/

.contact-section{
  position: relative;
  padding: 93px 0px 100px 0px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-section:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.0) 0%, rgba(24,12,84,0.9) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
}

#content_block_nine .content-box{
  position: relative;
}

#content_block_nine .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

#content_block_nine .content-box .text p{
  color: #fff;
}

#content_block_nine .content-box .form-inner .form-group{
  position: relative;
  margin-bottom: 25px;
}

#content_block_nine .content-box .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

#content_block_nine .content-box .form-inner .form-group input[type='text'],
#content_block_nine .content-box .form-inner .form-group input[type='email'],
#content_block_nine .content-box .form-inner .form-group textarea{
  position: relative;
  width: 100%;
  background: #fff;
  height: 55px;
  padding: 10px 30px;
  font-size: 16px;
  border: 2px solid #fff;
  border-radius: 30px;
  transition: all 500ms ease;
}

#content_block_nine .content-box .form-inner .form-group textarea{
  display: block;
  height: 120px;
  resize: none;
}

#content_block_nine .content-box .form-inner .form-group input:focus,
#content_block_nine .content-box .form-inner .form-group textarea:focus{

}

#content_block_nine .content-box .form-inner .form-group button{
  display: block;
  width: 100%;
  text-transform: uppercase;
  padding: 12.5px 30px;
}


/** team-section **/

.team-section{
  position: relative;
  padding: 95px 0px;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 100px;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #063c83;
}

.team-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img{
  opacity: 0.2;
}

.team-block-one .inner-box .lower-content{
  position: relative;
  padding-top: 27px;
}

.team-block-one .inner-box .lower-content h3{
  margin-bottom: 0px;
}

.team-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #222;
}

.team-block-one .inner-box .lower-content h3 a:hover{

}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
}

.team-block-one .inner-box .lower-content .ovellay-box{
  position: absolute;
  display: block;
  overflow: hidden;
  top: 0px;
  width: calc(100% - 30px);
  left: 15px;
  background: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  padding: 37px 15px 40px 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .lower-content .ovellay-box{
  top: -20px;
  opacity: 1;
  visibility: visible;
}

.team-block-one .inner-box .lower-content .ovellay-box .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 15px;
}

.team-block-one .inner-box .lower-content .ovellay-box .social-links{
  position: relative;
  display: block;
  padding-top: 7px;
}

.team-block-one .inner-box .lower-content .ovellay-box .social-links li:before{
  position: absolute;
  content: '';
  background: #cdd8e6;
  width: 1px;
  height: 22px;
  top: 2px;
  right: -17px;
}

.team-block-one .inner-box .lower-content .ovellay-box .social-links li:last-child:before{
  display: none;
}

.team-block-one .inner-box .lower-content .ovellay-box .social-links li a{
  display: inline-block;
  font-size: 15px;
  color: #bcbcbc;
}

.team-block-one .inner-box .lower-content .ovellay-box .social-links li a:hover{

}

.team-section .owl-theme .owl-dots{
  position: relative;
  display: block;
  text-align: center;
}

.owl-dot-style-one .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #dddddd;
  border-radius: 0px;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.owl-dot-style-one .owl-dots .owl-dot.active span,
.owl-dot-style-one .owl-dots .owl-dot span:hover{

}

.team-section .upper-box{
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.team-section .upper-box .btn-box{
  position: relative;
  margin-top: 13px;
}

.team-section .upper-box .btn-box a{
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 27.5px;
  border-radius: 5px;
  z-index: 1;
}

.team-section .upper-box .btn-box a:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.team-section .upper-box .btn-box a:after{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  right: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.team-section .upper-box .btn-box a:hover:before{
  left: 0px;
  width: 50%;
}

.team-section .upper-box .btn-box a:hover:after{
  right: 0px;
  width: 50%
}

.team-section .upper-box .btn-box a i{
  margin-right: 10px;
}

.team-section .upper-box .btn-box a:hover{
  color: #fff;
}

.team-block-one .inner-box .lower-content .ovellay-box{
  position: relative;
  top: -20px;
  opacity: 1;
  visibility: visible;
  }
  
  .team-block-one .inner-box .lower-content {
    padding: 0;
  }
  
  .team-block-one .inner-box .lower-content h3 a {
    color: #204669;
  }
  
  .team-block-one .inner-box {
    margin-bottom: 30px;
  }

/** team-style-two **/

.team-style-two{
  position: relative;
  padding: 104px 0px 105px 0px;
}

.team-style-two .sec-title-two{
  max-width: 510px;
  margin-bottom: 57px;
}

.team-block-two .inner-box{
  position: relative;
  display: block;
  text-align: center;
}

.team-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.team-block-two .inner-box .image-box img{
  width: 100%;
}

.team-block-two .inner-box .image-box:before{
  position: absolute;
  content: '';
  width: 50%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  opacity: 0.8;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box:before{
  height: 100%;
}

.team-block-two .inner-box .image-box:after{
  position: absolute;
  content: '';
  width: 50%;
  height: 0%;
  right: 0px;
  top: 0px;
  z-index: 1;
  opacity: 0.8;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box:after{
  height: 100%;
}

.team-block-two .inner-box .image-box .social-links{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  z-index: 2;
  opacity: 0;
  transition: all 500ms ease;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

.team-block-two .inner-box:hover .image-box .social-links{
  opacity: 1;
}

.team-block-two .inner-box .image-box .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 20px;
}

.team-block-two .inner-box .image-box .social-links li:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 1px;
  height: 22px;
  top: 2px;
  right: -20px;
  opacity: 0.8;
}

.team-block-two .inner-box .image-box .social-links li:last-child:before{
  display: none;
}

.team-block-two .inner-box .image-box .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #fff;
}

.team-block-two .inner-box .lower-content{
  position: relative;
  padding-top: 27px;
}

.team-block-two .inner-box .lower-content h3{
  position: relative;
  display: block;
  margin-bottom: 6px;
}

.team-block-two .inner-box .lower-content h3 a{
  display: inline-block;
  color: #222;
}

.team-block-two .inner-box .lower-content h3 a:hover{

}

.team-block-two .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px;
}

.team-style-two .owl-nav{
  position: absolute;
  top: 35%;
  width: 100%;
}

.team-style-two .owl-nav .owl-prev,
.team-style-two .owl-nav .owl-next{
  position: absolute;
  display: inline-block;
  font-size: 14px;
  background: #fff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 500ms ease;
}

.team-style-two .owl-nav .owl-prev{
  left: -95px;
}

.team-style-two .owl-nav .owl-next{
  right: -95px;
}

.team-style-two .owl-nav .owl-prev:hover,
.team-style-two .owl-nav .owl-next:hover{
  color: #fff;
}

.team-style-two .pattern-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 514px;
  height: 600px;
  background-repeat: no-repeat;
}

.team-style-two .anim-icon .icon-1 {
  left: 250px;
  bottom: 80px;
  width: 60px;
  height: 60px;
}

.team-style-two .anim-icon .icon-2 {
  right: 30%;
  top: 130px;
  width: 50px;
  height: 50px;
}

/** about-style-four **/

.about-style-four{
  position: relative;
  padding: 108px 0px 100px 0px;
}

.sec-title.style-four h5{
  padding-left: 35px;
}

.sec-title.style-four h5:before{
  width: 25px;
}

.about-style-four #content_block_13 .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 38px;
}

.about-style-four #content_block_13 .content-box .text p{
  margin-bottom: 28px;
}

.about-style-four #content_block_13 .content-box .text p:last-child{
  margin-bottom: 0px;
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box p{
  font-size: 14px;
  margin-bottom: 5px;
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box{
  margin-bottom: 39px;
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box:last-child{
  margin-bottom: 0px;
}

.about-style-four #content_block_13 .content-box{
  margin-right: 30px;
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box .bar-inner{

}

.about-style-four #content_block_13 .content-box .progress-content .progress-box:nth-child(2) .bar-inner{
  
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box:nth-child(3) .bar-inner{
  
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box:last-child .bar-inner{
  
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box .count-text{
  font-size: 16px;
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box:nth-child(2) .count-text{
  
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box:nth-child(3) .count-text{
  
}

.about-style-four #content_block_13 .content-box .progress-content .progress-box:last-child .count-text{
  
}

#image_block_four .image-box{
  position: relative;
  display: block;
  margin-left: 55px;
  margin-top: 44px;
}

#image_block_four .image-box .pattern-layer{
  position: absolute;
  top: 175px;
  right: -250px;
  width: 347px;
  height: 271px;
  background-repeat: no-repeat;
}

#image_block_four .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%, 0% 0%);
}

#image_block_four .image-box .image:before{
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

#image_block_four .image-box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

#image_block_four .image-box .image img{
  width: 100%;
}

/** skills-section **/

.skills-section{
  position: relative;
  padding: 110px 0px;
}

.skills-section .image-box{
  position: relative;
  margin-right: 35px;
}

.skills-section .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.skills-section .image-box .anim-icon .icon-1{
  left: -30px;
  bottom: -30px;
  width: 68px;
  height: 68px;
}

.skills-section .image-box .image:before{
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.skills-section .image-box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.skills-section .image-box .image img{
  width: 100%;
}

.skills-section #content_block_13 .content-box{
  margin-left: 35px;
  margin-right: 40px;
}


/** skills-section **/

#content_block_13 .content-box {
  position: relative;
  display: block;
}

#content_block_13 .content-box .text {
  position: relative;
  margin-bottom: 33px;
}

#content_block_13 .content-box .progress-content h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #222;
  font-weight: 700;
  margin-bottom: 23px;
}

#content_block_13 .content-box .progress-content .progress-box {
  position: relative;
  margin-bottom: 20px;
}

#content_block_13 .content-box .progress-content .progress-box p {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  color: #222;
  font-weight: 400;
  margin-bottom: 9px;
}

#content_block_13 .content-box .progress-content .progress-box:last-child {
  margin-bottom: 0px;
}

#content_block_13 .content-box .progress-content .progress-box .bar {
  position: relative;
  width: 100%;
  height: 5px;
  background: #eaeaea;
}

#content_block_13 .content-box .progress-content .progress-box .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 5px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

#content_block_13 .content-box .progress-content .progress-box .count-text {
  position: absolute;
  top: -33px;
  right: 0px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  color: #222;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

#content_block_13 .content-box .anim-icon .icon-1 {
  top: 40%;
  right: -80px;
  width: 60px;
  height: 60px;
}

#content_block_13 .content-box .anim-icon .icon-2 {
  left: -75px;
  top: -35px;
  width: 50px;
  height: 50px;
}