/* Universal */
* {
  padding: 0;
  margin: 0;
}
body {
  background: #1e1e1e;
}
main {
  background: #000;
  position: relative;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
.hover_zoom img {
  -webkit-transition: all 5s ease;
  -moz-transition: all 5s ease;
  -o-transition: all 5s ease;
  transition: all 5s ease;
}
.hover_zoom:hover img {
  transform: scale(1.2);
  -webkit-transition: all 5s ease;
  -moz-transition: all 5s ease;
  -o-transition: all 5s ease;
  transition: all 5s ease;
}
ul li {
  list-style: none;
}
section {
  position: relative;
  background: #000;
  z-index: 1;
}
.container {
  max-width: 980px;
  margin: 0 auto;
}
/* Nav Team */
#nav_team {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
}
#nav_team ul {
  display: flex;
  justify-content: space-between;
  background: #000;
  padding: 2px 0;
}
#nav_team ul li {
  background: #474747;
  text-align: center;
  display: block;
  position: relative;
  width: calc(33.3% - 1px);
}
#nav_team ul li.active a {
  background: #c00;
}
#nav_team ul li a {
  color: #fff;
  display: block;
  padding: 25px 0;
  font-weight: bold;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
}
#nav_team ul li:after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  background: url("../images/arrow_down.png") bottom center no-repeat;
  background-size: cover;
  width: 14px;
  height: 8px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
#nav_team ul li:hover:after {
  opacity: 1;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
#nav_team ul li:hover a {
  padding: 15px 0 35px 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* GT500 */
#gt500 {
  background: url("../images/bg_1.jpg") top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#gt500:before,
#gt300:before,
#smile:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.9;
  z-index: -1;
}
#gt300 {
  background: url("../images/bg_2.jpg") top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#smile {
  background: url("../images/bg_3.jpg") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
h2 {
  color: #fff;
  width: auto;
  display: block;
  font-size: 20px;
}
h2 span {
  color: #fff;
  font-size: 24px;
  background: #c00;
  padding: 0 15px;
  width: auto;
  display: table;
  position: relative;
}
.team_title {
  padding-top: 50px;
}
#gt300 h2 span {
  background: #dee341;
  color: #000;
}
#gt300 h2 span:after {
  border-bottom: 56px solid #dee341;
}
#gt500 .team_title {
  background: url("../images/64.png") bottom 15px right 15px no-repeat;
	display: flex;
}
#gt300 .team_title {
  border-bottom: 2px solid #dee341;
  background: url("../images/34.png") bottom 15px right 15px no-repeat;
}
.team_title h2 {
  font-size: 18px;
  line-height: 56px;
  padding: 0;
  font-weight: bold;
}
#smile h2 span {
  background: #d25417;
}
#smile h2 span:after {
  border-bottom: 56px solid #d25417;
}
#smile .team_title {
  border-bottom: 2px solid #d25417;
}
h2 span:after {
  content: "";
  top: 0;
  right: -20px;
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 56px solid #c00;
  border-right: 20px solid transparent;
}
.team_title {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #c00;
  align-items: flex-end;
}
.team_title a {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  padding-right: 25px;
}
.team_title span {
}
.team_title a:after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 11px solid #fff;
  transform: rotate(90deg);
}
.team_title a:hover {
  opacity: 0.8;
}
.car_type {
  display: none;
  /*display: flex;*/
  color: #fff;
  align-items: center;
  font-size: 48px;
  font-weight: bold;
  opacity: 0.5;
}
.team_gallery {
  display: flex;
  margin: 50px 0;
  width: 100%;
}
.team_gallery div {
  width: 100%;
}
.team_gallery .team_gallery1 {
  width: 60%;
}
.team_gallery .team_gallery1 img {
  height: 100%;
  object-fit: cover;
}
.team_gallery .team_gallery2 {
  width: 40%;
  box-sizing: border-box;
  padding-left: 30px;
}
.team_gallery .team_gallery2 img:nth-child(1) {
  padding-bottom: 30px;
}
.team_gallery div img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.team_gallery div:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.team_gallery div:nth-child(2) img {
}
.team_profile {
  display: flex;
  align-items: center;
  padding: 50px 0;
  justify-content: space-between;
}
.car_design {
  background-color: rgba(71, 71, 71, 0.8);
  margin: 50px 0 0;
  content: "";
  width: 94%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
}
.car_design img {
  width: 50%;
  margin: 0 auto;
}
#gt500 .car_type_name {
  /* width: 80%; */
}
#gt300 .car_type_name {
  width: 90%;
}
.car_type_name {
  padding-bottom: 30px;
}
.team_profile.flex_reverse {
  flex-direction: row-reverse;
}
.team_profile .team_photo,
.team_profile .team_text {
  flex: 0 0 48%;
}
.team_profile .team_photo {
  background: #c3c3c3;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}
.team_profile .team_photo img {
  box-sizing: border-box;
  padding: 10px;
}
.team_profile .team_photo h4 {
  font-size: 24px;
  line-height: 1em;
  font-weight: bold;
}
.team_photo small {
  font-size: 13px;
  line-height: 2em;
  margin-top: 10px;
  display: block;
  font-weight: bold;
}
.team_photo small.f16 {
  font-size: 16px;
}
.l15 {
  padding-top: 10px;
  position: relative;
  left: 15px;
}
.l15 span {
  position: relative;
  left: -15px;
}
.team_photo h4 small {
  display: inline;
  font-size: 16px;
}
.team_profile .team_photo h4 span {
  display: block;
  font-size: 14px;
}
.team_profile .team_photo h5 {
  padding: 15px 0;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: bold;
}
.team_profile .team_photo:after {
  content: "";
  position: absolute;
  border: 0;
  box-sizing: border-box;
  border-bottom: 50px solid #ddd;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  height: 0;
  width: 100%;
  left: 0;
  bottom: 0;
}
.team_profile .team_text p {
  color: #fff;
  font-size: 16px;
  line-height: 2em;
  padding-bottom: 18px;
}
.team_profile .team_text ul {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.team_profile .team_text ul li {
  padding: 0 20px;
}
.team_profile .team_text ul li img {
  max-width: 20px;
}
.team_profile .team_text ul li {
  border-right: 1px solid #fff;
}
.team_profile .team_text ul li:nth-last-child(1) {
  border-right: none;
}
.team_profile .team_text ul li:hover {
  opacity: 0.5px;
}


/* Responsive */
@media screen and (max-width: 1440px) {
  .team_profile .team_photo,
  .team_profile .team_text {
  }
  .team_profile .team_photo {
  }
  .team_profile .team_text {
  }
  #nav_team ul li a {
    font-size: 14px;
  }
  #gt500 .car_type_name {
    width: 70%;
  }
  #gt300 .car_type_name {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: 94%;
  }
  .team_gallery .team_gallery2 {
    padding-left: 15px;
  }
  .team_gallery .team_gallery2 img:nth-child(1) {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 736px) {
  #gt500 .team_title,
  #gt300 .team_title {
    background-size: 40%;
  }
  .team_profile .team_photo h4 {
    font-size: 20px;
  }
  .team_profile .team_photo h5 {
    margin-top: 15px;
    padding: 10px 0;
  }
  .team_profile .team_photo:after {
    font-size: 13px;
    border-bottom: 40px solid #ddd;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
  }
  /*.team_title a:after {top:25px; right: -35px;}*/
  .teampage-noSP{display: none;}
  .car_design {
    flex-direction: column;
  }
  .car_design img {
    width: 100%;
  }
  #gt500 .car_type_name {
    margin-left: 3%;
  }
}
@media screen and (max-width: 425px) {
  h2,
  h2 span {
    font-size: 14px;
  }
  #nav_team ul li a {
    font-size: 12px;
  }
  .team_title span a {
    display: block;
  }
  .team_profile .team_photo h5 {
    margin-top: 15px;
  }
  .team_profile .team_photo h4 {
    padding: 0 10px;
  }
  .team_title a {
    font-size: 13px;
    padding-right: 15px;
  }
  .team_title a:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #fff;
  }
  .team_profile,
  .team_profile.flex_reverse {
    flex-direction: column;
  }
  .team_profile .team_photo {
    max-width: 300px;
    margin-bottom: 30px;
  }
  .team_profile .team_text p {
    font-size: 14px;
    padding-bottom: 14px;
  }
}
