
/*------------------------------------------------------------------------
# mod_mx_team Extension
# ------------------------------------------------------------------------
# author    mixwebtemplates
# copyright Copyright (C) 2020 mixwebtemplates.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: http://www.mixwebtemplates.com
-------------------------------------------------------------------------*/
.mos-img img {display: none !important;}
.mxteam *, .mxteam::after, .mxteam::before {
    box-sizing: border-box;
}
.team23 {
  position: relative;
}

.team23 .item.cir .img {
  position: relative;
}

.team23 .item.cir .img:hover:after {
  opacity: 1;
  -webkit-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  transform: rotate(4deg);
}

.team23 .item.cir .img:hover #circle,
.team23 .item.cir .img:hover .info {
  opacity: 1;
}

.team23 .item.cir .img:hover:before {
  opacity: .5;
}

.team23 .item.cir .img:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#12c2e9), color-stop(#c471ed), to(#f64f59));
  background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.team23 .item.cir .img:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  background: #000;
  opacity: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.team23 .item.cir .info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  opacity: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  z-index: 2;
}
.team23 .item.cir .info h6 {
  color: #fff;
}
.team23 .item.cir .info span {
  font-size: 13px;
  color: #fafafa;
}

.team23 .item .img {
  position: relative;
}

.team23 .item .img:hover:after {
  opacity: 1;
  -webkit-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  transform: rotate(4deg);
}

.team23 .item .img:hover #circle,
.team23 .item .img:hover .info {
  opacity: 1;
}

.team23 .item .img:hover:before {
  opacity: .3;
}

.team23 .item .img:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#12c2e9), color-stop(#c471ed), to(#f64f59));
  background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.team23.bord .item:hover .img:after {
  border-color: #12c2e9;
  opacity: 1;
  -webkit-transform: rotate(0deg) !important;
  -ms-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
}

.team23.bord .item .img {
  padding: 30px;
}

.team23.bord .item .img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 5px;
  background: transparent;
  border: 1px solid #fff;
  opacity: .1;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  z-index: -1;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.team23.bord .item .img.left:after {
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
}

.team23.bord .item .info {
  margin-top: 15px;
  text-align: center;
}

.team23.bord .item .info span {
  font-size: 13px;
  color: #12c2e9;
}

#circle {
  position: absolute;
  top: -20%;
  right: -30%;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

#circle text {
  font-size: 13px;
  letter-spacing: 4px;
}

#circle svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 8s;
  -moz-animation-duration: 8s;
  -ms-animation-duration: 8s;
  -o-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(360deg);
  }
  to {
    -moz-transform: rotate(0);
  }
}

@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(360deg);
  }
  to {
    -ms-transform: rotate(0);
  }
}

@-o-keyframes rotate {
  from {
    -o-transform: rotate(360deg);
  }
  to {
    -o-transform: rotate(0);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.team23 .social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.team23 .social li{
    display: inline-block;
    margin-right: 2px;
}
.team23 .social li:last-child{
    margin-right: 0;
}
.team23 .social li a{
    display: block;
    padding: 0px 8px;
    line-height: 30px;
    font-size: 14px;
    color: #f1f1f1;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease-in-out 0s;
}
.team23 .social li a:hover{ color: #fff; background: #444;  }
.team23 .info ul {
  padding-left: 0px;  
  list-style: none;
}