
/** team-section **/

.team-section{
  position: relative;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: block;
}

.team-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.team-block-one .inner-box .image-box .image img{
  width: 100%;
  border-radius: 12px;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.05);
}

.team-block-one .inner-box .image-box .image:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-90deg, rgba(217,217,217,0.0)0%, rgba(44,102,189,1.0) 100%);
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .image:before{
  opacity: 1;
}

.team-block-one .inner-box .image-box .social-links{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%,-50%) scale(0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .social-links{
  transform: translate(-50%,-50%) scale(1,1);
}

.team-block-one .inner-box .image-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--text-color);
}

.team-block-one .inner-box .image-box .social-links li a:hover{
  color: #fff;
  background: var(--theme-color);
}

.team-block-one .inner-box .image-box .share-icon{
  position: absolute;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 50px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--theme-color);
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  z-index: 2;
  right: 42px;
  bottom: -24px;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .share-icon{
  color: #fff;
  background: var(--theme-color);
}

.team-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 40px;
}

.team-block-one .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 31px;
  margin-bottom: 7px;
}

.team-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.team-block-one .inner-box .lower-content h3 a:hover{
  color: var(--theme-color);
}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 25px;
}

.team-section .owl-nav{
  position: absolute;
  top: -120px;
  right: 0px;
}


/** team-style-two **/

.team-style-two{
  position: relative;
  border-bottom: 1px solid #D9D9D9;
}

.team-style-two .sec-title p{
  margin-bottom: 11px;
  color: #164782;
}

.team-block-two .inner-box{
  position: relative;
  display: block;
  margin-bottom: 30px;
  background: #fff;
}

.team-block-two .inner-box .image-box{
  position: relative;
  display: block;
}

.team-block-two .inner-box .image-box .social-links{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box .social-links{
  bottom: 30px;
  opacity: 1;
}

.team-block-two .inner-box .image-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 34px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--text-color);
}

.team-block-two .inner-box .image-box .social-links li a:hover{
  color: #fff;
  background: #228B22;
}

.team-block-two .inner-box .image-box .image{
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: all 500ms ease;
}

.team-block-two .inner-box .image-box .image:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-90deg, rgba(0,0,0,0.0) 70%, rgba(0,0,0,0.80) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box .image:before{
  opacity: 1;
}

.team-block-two .inner-box:hover .image-box .image{
  border-radius: 12px 0px 0px 12px;
}

.team-block-two:last-child .inner-box:hover .image-box .image{
  border-radius: 0px 12px 12px 0px;
}

.team-block-two .inner-box .image-box .image img{
  width: 100%;
}

.team-block-two .inner-box .content-box{
  position: absolute;
  left: 100%;
  background: #fff;
  top: 0px;
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.05);
  width: calc(100% + 30px);
  padding: 55px 30px 60px 30px;
  border-radius: 0px 12px 12px 0px;
  opacity: 0;
  transform: scaleX(0);
  z-index: 2;
  transform-origin: left center;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .content-box{
  opacity: 1;
  transform: scaleX(1);
}

.team-block-two:last-child .inner-box .content-box{
  left: 100%;
  transform-origin: left center;
  border-radius: 12px 0px 0px 12px;
}

.team-block-two .inner-box .content-box h3{
  display: block;
  font-size: 22px;
  line-height: 31px;
  margin-bottom: 2px;
}

.team-block-two .inner-box .content-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.team-block-two .inner-box .content-box h3 a:hover{
  color: var(--theme-color);
}

.team-block-two .inner-box .content-box .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #16407D;
  margin-bottom: 20px;
}

.team-block-two .inner-box .content-box p{
  margin-bottom: 30px;
}

.team-block-two .inner-box .content-box .info-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-block-two .inner-box .content-box .info-list li:last-child{
  margin-bottom: 0px;
}

.team-block-two .inner-box .content-box .info-list li a{
  display: inline-block;
  color: var(--title-color);
}

.team-block-two .inner-box .content-box .info-list li a:hover{
  color: var(--theme-color);
}

.team-block-two .inner-box .content-box .info-list li i{
  font-size: 14px;
  color: #FFDE2F;
}

.team-style-two .inner-container{
  position: relative;
}

.team-block-two{
  position: relative;
}

.team-section .outer-container{
  background: #FFF2E7;
}

.team-section .outer-container .pattern-layer{
  position: absolute;
  right: 97px;
  top: 57px;
  width: 68px;
  height: 68px;
  background-repeat: no-repeat;
}

/********************Team Detail************************/
.team-details .image-box{
    position: relative;
    background-color: #F9F9FF;
    padding: 30px;
}

.team-details .image-box .image {
    width: 100%;
}

.team-details .content-box h2 {
    position: relative;
    display: block;
    font-size: 37px;
    line-height: 46px;
    margin-bottom: 10px;
}

.team-details .content-box .text {
    margin-top: 30px;
}

.team-details .content-box .designation {
    font-size: 18px;
    color: var( --theme-color );
}

.team-details .contact-inner {
    position: relative;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-details .contact-inner .social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-details .contact-inner .social-links a {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff;
    transition: all 500ms ease;
}

.team-details .contact-inner .social-links a:hover {
    background-color: transparent;
    color: var(--theme-color);
}

/** rtl-css **/

.rtl .team-section .owl-nav{
  right: inherit;
  left: 0px;
}

.rtl .team-block-one .inner-box{
  text-align: right;
}

.rtl .team-block-two .inner-box .content-box{
  text-align: right;
}


/** responsive-css **/

@media only screen and (max-width: 1600px){
  
}

@media only screen and (max-width: 767px){
  .team-section{
    padding-bottom: 40px;
  }

  .team-section .owl-nav{
    display: none;
  }

  .team-block-two{
    width: 100%;
    margin: 0 auto;
    float: none;
  }

  .team-block-two .inner-box .content-box{
    left: 0px;
    width: 100%;
    height: 100%;
    left: 0px !important;
    transform-origin: left center !important;
  }

  .team-block-two .inner-box .image-box .social-links{
    display: none;
  }

  .team-block-two .inner-box .image-box .image{
    border-radius: 12px !important;
    overflow: hidden;
  }

  .team-style-two{
    padding: 65px 0px 40px 0px;
  }

  .team-section .outer-container{
    padding: 65px 0px 35px 0px;
  }

  .testimonial-section.pt_140{
    padding-top: 65px;
  }

}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){

}











































