@charset "UTF-8";
/**************************************** intro 시작*/
.tea__sec1 .sub__big_title {
  padding: 80px 0;
}

.tea__tab {
  padding-top: 100px;
}

.tea_con_container {
  padding: 80px 0 150px;
  background: rgba(162, 214, 249, 0.15);
}

.tea__con_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 80px;
  display: none;
}

.tea__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
}

.tea__con {
  position: relative;
  width: 100%;
  height: 450px;
  padding: 50px 40px;
  overflow: hidden;
  z-index: 1;
}
.tea__con .info_wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}
.tea__con .info_wrap .title .name {
  font-family: "EsaManru";
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 20px;
  -webkit-transition: 1s;
  transition: 1s;
}
.tea__con .info_wrap .title .name span {
  display: block;
}
.tea__con .info_wrap .title .more_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ccc;
}
.tea__con .info_wrap .title .graduate {
  font-size: 1.125rem;
  color: #96D5FF;
  display: none;
}
.tea__con .info_wrap .info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  z-index: -99;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.tea__con .info_wrap .info li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
}
.tea__con .thum {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.tea__con .thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tea__con::after {
  content: "";
  position: absolute;
  background-color: rgba(3, 11, 182, 0.8);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 200%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tea__con.active .info_wrap .title .name {
  color: #fff;
}
.tea__con.active .info_wrap .title .graduate {
  display: block;
}
.tea__con.active .info_wrap .info {
  z-index: 0;
  opacity: 1;
}
.tea__con.active::after {
  left: 50%;
}

.tea__play_btn {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #222222;
  border-radius: 100px;
  font-size: 1.125rem;
  font-weight: 300;
  font-family: "esamanru";
}

/**************************************** intro 끝*/
@media screen and (max-width: 1240px) {
  .tea__sec1 .sub__big_title {
    padding: 60px 0;
  }
  .tea__tab {
    padding-top: 80px;
  }
  .tea__con {
    height: 400px;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .tea_con_container {
    padding: 80px 0 120px;
  }
  .tea__con_wrap {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
  }
  .tea__con {
    padding: 40px 20px;
  }
  .tea__con .info_wrap .title .name {
    font-size: 1.875rem;
  }
  .tea__con .info_wrap .title .more_btn {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .tea__con .info_wrap .title .more_btn img {
    max-width: 12px;
  }
  .tea__con .info_wrap .title .graduate {
    font-size: 1rem;
  }
  .tea__play_btn {
    width: 160px;
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .tea__con_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 540px) {
  .tea__sec1 .sub__big_title {
    padding: 40px 0;
  }
  .tea_con_container {
    padding: 50px 0 70px;
  }
  .tea__con_wrap {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .tea__tab {
    padding-top: 70px;
  }
  .tea__con {
    height: 420px;
    max-width: none;
    padding: 40px 20px;
  }
  .tea__con .info_wrap {
    row-gap: 20px;
  }
  .tea__con .info_wrap .title .name {
    font-size: 2.25rem;
  }
  .tea__con .info_wrap .title .more_btn {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    font-size: 1.125rem;
  }
  .tea__con .info_wrap .title .more_btn img {
    max-width: 12px;
  }
  .tea__con .info_wrap .title .graduate {
    font-size: 1rem;
  }
  .tea__con .info_wrap .info {
    padding-top: 20px;
  }
  .tea__con .thum img {
    height: auto;
  }
  .tea__play_btn {
    width: 140px;
    font-size: 1.0625rem;
  }
}/*# sourceMappingURL=sub02.css.map */