/* color */
/* font */
/* transition */
@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.teamTopList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 80px;
  column-gap: 20px; }
  @media (max-width: 820px) {
    .teamTopList {
      grid-template-columns: 1fr;
      margin-bottom: 20px;
      row-gap: 20px; } }

.teamBottomList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 80px;
  column-gap: 30px; }
  @media (max-width: 1024px) {
    .teamBottomList {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 20px; } }
  @media (max-width: 820px) {
    .teamBottomList {
      grid-template-columns: 1fr;
      row-gap: 40px;
      column-gap: 0;
      row-gap: 20px; } }
  @media (min-width: 821px) {
    .teamBottomList .teamItem .imgBox:after {
      content: "";
      position: absolute;
      background-image: url("../assets/images/teamMask2.png"); }
    .teamBottomList .teamItem .title {
      font-size: 20px;
      letter-spacing: 0.8px; }
    .teamBottomList .teamItem .desc {
      font-size: 12px; }
    .teamBottomList .teamItem .btn {
      width: 130px;
      min-width: 130px;
      height: 30px;
      padding: 0 10px; }
      .teamBottomList .teamItem .btn span {
        font-size: 10px; } }

.teamItem {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative; }
  .teamItem .link:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .teamItem .imgBox,
  .teamItem .textBox {
    flex: 1; }
  .teamItem .imgBox {
    position: relative; }
    .teamItem .imgBox:after {
      content: "";
      position: absolute;
      width: 95%;
      height: 95%;
      top: 5%;
      right: 5%;
      background-image: url("../assets/images/teamMask.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 1; }
    .teamItem .imgBox img {
      position: relative;
      z-index: 2; }
  .teamItem .textBox {
    display: flex;
    flex-direction: column;
    height: 100%; }
  .teamItem .title {
    margin-top: auto;
    position: relative;
    z-index: 2;
    font-size: 24px;
    color: #627695;
    font-weight: 700;
    letter-spacing: 3px; }
  .teamItem .desc {
    color: #627695;
    font-size: 16px;
    font-weight: 500;
    line-height: calc(30px / 16px);
    letter-spacing: 0.9px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .teamItem .btnBox {
    margin-top: auto; }
  .teamItem .btn {
    width: 195px;
    min-width: 195px;
    height: 40px;
    padding: 0 20px; }
    .teamItem .btn span {
      font-size: 14px; }

.insContent .content {
  padding-top: 60px;
  display: flex;
  justify-content: space-between; }
  @media (max-width: 768px) {
    .insContent .content {
      flex-direction: column-reverse; } }
  .insContent .content .title {
    color: #627695;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.64px;
    margin-bottom: 20px; }
  .insContent .content .blockTitle {
    font-size: 24px;
    font-weight: 700;
    color: #627695;
    padding: 10px 0;
    letter-spacing: 1.44px;
    border-bottom: 1px dashed #627695; }
  .insContent .content .blockContent {
    padding: 20px 0;
    font-size: 20px;
    color: #96775c;
    letter-spacing: 0.8px;
    line-height: 1.58333; }
  .insContent .content .imgBox {
    position: relative;
    text-align: right; }
    .insContent .content .imgBox:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: #b6c4dc;
      top: 0;
      right: 0;
      mask-image: url("../assets/images/teamMask.png");
      mask-repeat: no-repeat;
      mask-size: cover;
      z-index: 1; }
      @media (max-width: 768px) {
        .insContent .content .imgBox:after {
          mask-size: contain;
          mask-position: right top; } }
    .insContent .content .imgBox img {
      position: relative;
      z-index: 2; }
  .insContent .content .downloadBox a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    font-size: 18px;
    color: #627695;
    margin-top: 24px;
    font-weight: 700; }
