
/*------------------------------------------------------------------------
# mod_ol_team Extension
# ------------------------------------------------------------------------
# author    olwebdesign
# copyright Copyright (C) 2019 olwebdesign.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: http://www.olwebdesign.com
-------------------------------------------------------------------------*/
:root {
  --olweb-gray: #726d7b;
  --olweb-gray-rgb: 114, 109, 123;
  --olweb-white: #ffffff;
  --olweb-white-rgb: 255, 255, 255;
  --olweb-black: #04000b;
  --olweb-black-rgb: 4, 0, 11;
  --olweb-base: #6222cc;
  --olweb-base-rgb: 98, 34, 204;
  --olweb-bdr-radius: 8px;
}

 .team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  background-color: var(--olweb-black);
  background-blend-mode: luminosity;
}

.team-one__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transform: scale(1);
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1);
}

.team-one__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  padding: 31px 0 32px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
}

.team-one__single:hover .team-one__content {
  visibility: hidden;
  opacity: 0;
}

.team-one__name {
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 36px;
}

.team-one__title {
  font-size: 16px;
  margin: 0;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--olweb-font-two);
}

.team-one__hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  text-align: center;
  padding: 31px 0 40px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(-66%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
}

.team-one__single:hover .team-one__hover {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.team-one__hover-name {
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 36px;
}

.team-one__hover-title {
  font-size: 16px;
  margin: 0;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-one__social {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
}

.team-one__social a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--olweb-black);
  background-color: #f6f4f9;
  border-radius: 50%;
  font-size: 15px;
  height: 45px;
  width: 45px;
  transform: rotate(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__social a:hover {
  color: var(--olweb-white);
  transform: rotate(360deg);
}

.team-one__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--olweb-base);
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-one__social a:hover:before {
  transform: scaleX(1);
}

.team-one__social a + a {
  margin-left: 10px;
}
