/*
*
|  Page Name       : about_us_team.css
|  Description     : css for about us
|  Created by      : Kathlynn 
|  Date Created    : November 2018
|  Last Update by  : Kathlynn Gallardo
|  Last update     : November 2018
*
*/
.-team-about{
  width: 100%;
  height: 100%;
}
.-team-container{
  width: 100%;
  height: auto;
  overflow-y: hidden;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}
.-team-text{
  background-image: linear-gradient(to right, #FFCF6D , #FF8964);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 20vh;
  padding-bottom: 8vh;
}
.-team-text .-title{
  margin: 0px;
  width: 50%;
  text-align: center;
  font-weight: 600;
  font-size: 36px;
  color: #ffffff;
}
.-team-text .-content{
  margin: 0px;
  width: 50%;
  line-height: 1.6;
  padding-top: 15px;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
}
.-pics{
  width: 100%;
  height: 384px;
}
.-office-img{
  width: 100%;
  height: auto;
}
.-office-img .-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.-team-content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 100px 200px;
}
.-team-content .-team-name{
  margin: 0px;
  text-align: center;
  font-weight: 600;
  font-size: 46px;
  padding-bottom: 30px;
}
.-profile{
  display: flex;
  justify-content: center;
  flex-direction: row;
  padding: 3vh;
}
.-profile-rvs{
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  padding: 5vh;
}
.-profile-img{
  width: 30vh;
  height: 30vh;
}
.-profile-img .-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
  box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
}
.-info{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  width: 500px;
  flex: 5;
  padding-left: 7vh;
  text-align: left;
  font-size: 18px;
}
.-info-rvs{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100%;
  width: 500px;
  flex: 5;
  padding-right: 7vh;
  text-align: right;
  font-size: 18px;
}
.-info .-nickname{
  text-align: left;
  font-size: 40px;
  font-weight: 600;
  border-bottom: 5px solid #707070;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.-info-rvs .-nickname{
  text-align: left;
  font-size: 40px;
  font-weight: 600;
  border-bottom: 5px solid #707070;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.-next-team{
  padding-top: 10vh;
}
.-next-team .-btn{
  margin-bottom: 7vh;
  border-radius: 7px;
  background-color: #ec7650;
  font-size: 17px;
  width: 200px;
  height: 53px;
  color: #fff;
  cursor: pointer;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
  box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
}
/************PARALLAX***************/
.-parallax {
  background-image: url('../images/sample.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 53vh;
}
/******MEDIA QUERY******/
@media screen and (max-width: 769px){
  .-team-content{
    padding: 5vh !important;
  }
  .-team-content .-team-name {
    margin: 0px;
    text-align: center;
    font-weight: 600;
    font-size: 26px;
    padding-bottom: 3vh;
  }
  .-info .-nickname {
    text-align: left;
    font-size: 26px;
    font-weight: 600;
    border-bottom: 5px solid #707070;
    padding-bottom: 2vh;
    margin-bottom: 10px;
  }
  .-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    flex: 5;
    padding-left: 0vh;
    text-align: center;
    font-size: 14px;
  }
  .-info .-content{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }
  .-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3vh 0vh !important;
  }
  .-profile-rvs {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding:  3vh 0vh !important;
    align-items: center;
  }
  .-info-rvs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    flex: 5;
    padding-right: 0vh;
    text-align: center;
    font-size: 14px;
  }
  .-info-rvs .-nickname {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    border-bottom: 5px solid #707070;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}