/* Team Section
--------------------------------*/
#team {
    background: #fff;
    padding: 100px 0;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    background: url(../img/Gallery/characters_bg.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#team .member {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

#team .member .member-info {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

#team .member .member-info-content {
    margin-top: 50px;
    transition: margin 0.2s;
}

#team .member:hover .member-info {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    transition: 0.4s;
}

#team .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
}

#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 25px;
    color: rgb(255, 255, 255);
    transition: all 0.4s;
}

#team .member h4:hover {
    text-decoration: underline;
}

/*------------main-------------------------------------*/
main {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/Gallery/characters_bg.jpg);
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/*--------------------------------------------------------------
# otherch
--------------------------------------------------------------*/
.otherch {
}

.otherch .title h2 {
  font-size: 45px;
  font-weight: bold;
  background: -webkit-linear-gradient(rgb(7, 150, 220), rgb(0, 97, 165));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.otherch .member {
  position: relative;
  border-radius: 10px;
  transition: all;
}

.otherch .member .pic {
  overflow: hidden;
}

.otherch .member .pic img {
  width: 100%;
  border-radius: 10px;
}

.otherch .member .member-info {
  padding-left: 30px;
}

.otherch .member a {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;  
  color: rgb(0, 97, 165);
}

.otherch .member a:hover {
    text-decoration: underline;
}

.otherch .line {
    padding: 20px 0;
    border-bottom: 1px solid rgb(196, 196, 196);
}

@media (max-width: 425px) {
  #otherch .member {
    padding: 0;
  }
}