@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* 1. 박스 모델 & 기본 여백 초기화 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. HTML5 & 고해상도 렌더링 설정 */
html {
  -webkit-text-size-adjust: none; /* iOS 서체 크기 강제 확대 방지 */
  -moz-text-size-adjust: none;
       text-size-adjust: none;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords; /* 최신 애니메이션 속성 지원 */
  }
}

a {
  text-decoration: none;
}

body {
  line-height: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh; /* 모바일 브라우저 툴바 대응 */
}

/* 3. 리스트 & 인용구 초기화 */
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* 4. 미디어 요소 (이미지, 비디오 등) */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto; /* 비율 유지 */
}

/* 5. 폼 요소 초기화 (폰트 상속이 핵심) */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
}

button {
  cursor: pointer;
}

/* 6. 텍스트 레이아웃 최적화 */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/* 7. 테이블 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 8. 리액트/넥스트 등 프레임워크 루트 레이어 설정 */
#root,
#__next {
  isolation: isolate;
}

/* device width */
/* device width */
.margin-top-huge {
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .margin-top-huge {
    margin-top: 80px;
  }
}

.margin-top-extra-huge {
  margin-top: 165px;
}
@media (max-width: 1200px) {
  .margin-top-extra-huge {
    margin-top: 120px;
  }
}
.margin-top-extra-huge.home {
  margin-top: 165px;
}
@media (max-width: 1200px) {
  .margin-top-extra-huge.home {
    margin-top: 200px;
  }
}

.margin-bottom-huge {
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  .margin-bottom-huge {
    margin-bottom: 80px;
  }
}

.margin-bottom-extra-huge {
  margin-bottom: 165px;
}

.padding-top-Regular {
  padding-top: 30px;
}

.padding-top-Big {
  padding-top: 60px;
}

.padding-top-huge {
  padding-top: 100px;
}
@media (max-width: 1200px) {
  .padding-top-huge {
    padding-top: 80px;
  }
}

.padding-top-extra-huge {
  padding-top: 165px;
}

.padding-bottom-huge {
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .padding-bottom-huge {
    padding-bottom: 80px;
  }
}

.padding-bottom-extra-huge {
  padding-bottom: 165px;
}

/* device width */
/* device width */
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeLoop {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
* {
  font-family: 'Pretendard', sans-serif;
  word-break: keep-all;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  animation: pageFadeIn 0.6s forwards;
  background: #eaeaef;
  opacity: 0;
}

.introWrapper {
  width: 100%;
  height: 100%;
}
.introWrapper > .bgImgContainer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.introWrapper > .bgImgContainer > .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(28, 49, 40, 0.9);
  z-index: 999;
}
.introWrapper > .bgImgContainer > .overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 40%, transparent 40%), radial-gradient(rgba(255, 255, 255, 0.15) 40%, transparent 40%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  mix-blend-mode: soft-light;
}
.introWrapper > .bgImgContainer > .imgList {
  width: 100%;
  height: 100%;
}
.introWrapper > .bgImgContainer > .imgList > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: fadeLoop 12s infinite;
}
.introWrapper > .bgImgContainer > .imgList > img:nth-child(1) {
  animation-delay: 0s;
}
.introWrapper > .bgImgContainer > .imgList > img:nth-child(2) {
  animation-delay: 3s;
}
.introWrapper > .bgImgContainer > .imgList > img:nth-child(3) {
  animation-delay: 6s;
}
.introWrapper > .bgImgContainer > .imgList > img:nth-child(4) {
  animation-delay: 9s;
}
.introWrapper > .contentContainer {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 999;
  text-align: center;
}
@media (max-width: 1200px) {
  .introWrapper > .contentContainer {
    padding: 0 20px;
  }
}
.introWrapper > .contentContainer > .logo {
  width: 100%;
  text-align: center;
}
.introWrapper > .contentContainer > .logo > img {
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .introWrapper > .contentContainer > .logo > img {
    height: 50px;
  }
}
.introWrapper > .contentContainer > h1 {
  font-size: 60px;
  margin: 70px 0;
  color: white;
}
@media (max-width: 1200px) {
  .introWrapper > .contentContainer > h1 {
    font-size: 40px;
  }
}
.introWrapper > .contentContainer > .bottomBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.introWrapper > .contentContainer > .bottomBox > .soon {
  font-size: 20px;
  font-weight: 500;
  color: white;
  padding: 10px 25px;
  box-sizing: border-box;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}
@media (max-width: 1200px) {
  .introWrapper > .contentContainer > .bottomBox > .soon {
    font-size: 18px;
  }
}
.introWrapper > .contentContainer > .bottomBox > .divider {
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.introWrapper > .contentContainer > .bottomBox > .contactInfo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.introWrapper > .contentContainer > .bottomBox > .contactInfo > p {
  font-size: 16px;
  color: white;
  display: inline-flex;
  align-items: center;
}
.introWrapper > .contentContainer > .bottomBox > .contactInfo > p:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 10px;
}

.navWrapper {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  padding: 25px;
  display: flex;
  justify-content: space-between;
}
.navWrapper.isScrolled {
  background: #eaeaef;
}
.navWrapper.isScrolled > .ltSection > .menuContainer.home > ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navWrapper.isScrolled > .ltSection > .menuContainer.home > ul > li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #0d0c11;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.navWrapper.isScrolled > .ltSection > .menuContainer.home > ul > li.active, .navWrapper.isScrolled > .ltSection > .menuContainer.home > ul > li:hover {
  color: rgba(13, 12, 17, 0.3);
}
.navWrapper.isScrolled > .rtSection > .menuContainer.home > ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navWrapper.isScrolled > .rtSection > .menuContainer.home > ul > li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #0d0c11;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.navWrapper.isScrolled > .rtSection > .menuContainer.home > ul > li.active, .navWrapper.isScrolled > .rtSection > .menuContainer.home > ul > li:hover {
  color: #0d0c11;
}
.navWrapper > .ltSection {
  display: flex;
  align-items: center;
  gap: 100px;
}
.navWrapper > .ltSection > .logo {
  cursor: pointer;
}
.navWrapper > .ltSection > .logo > img {
  height: 24px;
}
@media (max-width: 1200px) {
  .navWrapper > .ltSection > .menuContainer {
    display: none;
  }
}
.navWrapper > .ltSection > .menuContainer.home > ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navWrapper > .ltSection > .menuContainer.home > ul > li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: white;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.navWrapper > .ltSection > .menuContainer.home > ul > li.active, .navWrapper > .ltSection > .menuContainer.home > ul > li:hover {
  color: rgba(255, 255, 255, 0.3);
}
.navWrapper > .ltSection > .menuContainer.sub > ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navWrapper > .ltSection > .menuContainer.sub > ul > li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #0d0c11;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.navWrapper > .ltSection > .menuContainer.sub > ul > li.active, .navWrapper > .ltSection > .menuContainer.sub > ul > li:hover {
  color: rgba(13, 12, 17, 0.3);
}
@media (max-width: 1200px) {
  .navWrapper > .rtSection > .menuContainer {
    display: none;
  }
}
.navWrapper > .rtSection > .menuContainer.home > ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navWrapper > .rtSection > .menuContainer.home > ul > li {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: white;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.navWrapper > .rtSection > .menuContainer.home > ul > li.active, .navWrapper > .rtSection > .menuContainer.home > ul > li:hover {
  color: white;
}
.navWrapper > .rtSection > .menuContainer.sub > ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navWrapper > .rtSection > .menuContainer.sub > ul > li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #0d0c11;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.navWrapper > .rtSection > .menuContainer.sub > ul > li.active, .navWrapper > .rtSection > .menuContainer.sub > ul > li:hover {
  color: #0d0c11;
}
.navWrapper > .rtSection > .menuContainer.mobile {
  display: none;
}
@media (max-width: 1920px) {
  .navWrapper > .rtSection > .menuContainer.mobile {
    display: none;
  }
}
@media (max-width: 1200px) {
  .navWrapper > .rtSection > .menuContainer.mobile {
    display: block;
  }
}
.navWrapper > .rtSection > .menuContainer.mobile.home > ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navWrapper > .rtSection > .menuContainer.mobile.home > ul > li {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: white;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.navWrapper > .rtSection > .menuContainer.mobile.home > ul > li.active, .navWrapper > .rtSection > .menuContainer.mobile.home > ul > li:hover {
  color: white;
}
.navWrapper > .rtSection > .menuContainer.mobile.sub > ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navWrapper > .rtSection > .menuContainer.mobile.sub > ul > li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #0d0c11;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.navWrapper > .rtSection > .menuContainer.mobile.sub > ul > li.active, .navWrapper > .rtSection > .menuContainer.mobile.sub > ul > li:hover {
  color: #0d0c11;
}

.topMainWrapper {
  width: 100%;
  height: calc(100vh - 80px);
  max-height: 850px;
  position: relative;
}
@media (max-width: 1200px) {
  .topMainWrapper {
    max-height: 700px;
  }
}
@media (max-width: 860px) {
  .topMainWrapper {
    max-height: 600px;
  }
}
.topMainWrapper > .bgImgContainer {
  width: 100%;
  height: 100%;
}
.topMainWrapper > .bgImgContainer > .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(13, 12, 17, 0.8);
  z-index: 999;
}
.topMainWrapper > .bgImgContainer > .overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 40%, transparent 40%), radial-gradient(rgba(255, 255, 255, 0.15) 40%, transparent 40%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  mix-blend-mode: soft-light;
}
.topMainWrapper > .bgImgContainer > .imgList {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.topMainWrapper > .bgImgContainer > .imgList > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: fadeLoop 12s infinite;
}
.topMainWrapper > .bgImgContainer > .imgList > img:nth-child(1) {
  animation-delay: 0s;
}
.topMainWrapper > .bgImgContainer > .imgList > img:nth-child(2) {
  animation-delay: 3s;
}
.topMainWrapper > .bgImgContainer > .imgList > img:nth-child(3) {
  animation-delay: 6s;
}
.topMainWrapper > .bgImgContainer > .imgList > img:nth-child(4) {
  animation-delay: 9s;
}
.topMainWrapper > .titleContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .topMainWrapper > .titleContainer {
    width: 100%;
    padding: 0 20px;
  }
}
.topMainWrapper > .titleContainer > h1 {
  font-size: 60px;
  color: white;
  font-family: 'Nanum Myeongjo', serif;
}
@media (max-width: 1200px) {
  .topMainWrapper > .titleContainer > h1 {
    font-size: 50px;
  }
}
@media (max-width: 860px) {
  .topMainWrapper > .titleContainer > h1 {
    font-size: 40px;
  }
  .topMainWrapper > .titleContainer > h1 > br {
    display: none;
  }
}
.topMainWrapper > .titleContainer > p {
  font-size: 20px;
  color: white;
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 1200px) {
  .topMainWrapper > .titleContainer > p {
    font-size: 16px;
  }
  .topMainWrapper > .titleContainer > p > br {
    display: none;
  }
}
@media (max-width: 860px) {
  .topMainWrapper > .titleContainer > p {
    font-size: 15px;
  }
  .topMainWrapper > .titleContainer > p > br {
    display: none;
  }
}
.topMainWrapper > .findTeacherContainer {
  width: 100%;
  position: absolute;
  bottom: -83px;
  max-width: 1200px;
  padding: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer {
    padding: 20px;
    bottom: -145px;
  }
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer {
    bottom: -125px;
  }
}
.topMainWrapper > .findTeacherContainer > .insideContent {
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer > .insideContent {
    flex-direction: column;
  }
}
.topMainWrapper > .findTeacherContainer > .insideContent > .ltSection {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer > .insideContent > .ltSection {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer > .insideContent > .ltSection > .imgContainer > img {
    height: 60px;
  }
}
@media (max-width: 860px) {
  .topMainWrapper > .findTeacherContainer > .insideContent > .ltSection > .imgContainer > img {
    height: 40px;
  }
}
.topMainWrapper > .findTeacherContainer > .insideContent > .ltSection > .txtContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer > .insideContent > .ltSection > .txtContainer {
    align-items: center;
  }
}
.topMainWrapper > .findTeacherContainer > .insideContent > .ltSection > .txtContainer > h1 {
  font-size: 30px;
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 700;
  color: #121213;
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer > .insideContent > .ltSection > .txtContainer > h1 {
    font-size: 22px;
  }
}
.topMainWrapper > .findTeacherContainer > .insideContent > .ltSection > .txtContainer > p {
  font-size: 16px;
  font-family: 'Pretendard', sans-serif;
  color: #a8a8ad;
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer > .insideContent > .ltSection > .txtContainer > p {
    font-size: 14px;
  }
}
.topMainWrapper > .findTeacherContainer > .insideContent > .rtSection > .button {
  background: #2b473b;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer > .insideContent > .rtSection > .button {
    width: 100%;
    justify-content: center;
    padding: 30px 20px;
  }
}
.topMainWrapper > .findTeacherContainer > .insideContent > .rtSection > .button > p {
  font-size: 22px;
  color: white;
}
@media (max-width: 1200px) {
  .topMainWrapper > .findTeacherContainer > .insideContent > .rtSection > .button > p {
    font-size: 18px;
  }
}
.topMainWrapper > .findTeacherContainer > .insideContent > .rtSection > .button:hover {
  background: #1c3128;
}

.sectionWrapper {
  width: 100%;
}
.sectionWrapper.darkerBg {
  background: #e1e1e5;
}
.sectionWrapper > .insideWrapper {
  width: 100%;
  max-width: 1500px;
  padding: 0 30px;
  margin: 0 auto;
}
.sectionWrapper > .sectionDivider {
  width: 100%;
  height: 1px;
  background: #c8c8cd;
  margin: 60px 0;
}

.homeTitleContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.homeTitleContainer > .txtContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.homeTitleContainer > .txtContent > h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #8d8d91;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .homeTitleContainer > .txtContent > h2 {
    font-size: 15px;
  }
}
.homeTitleContainer > .txtContent > h1 {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 40px;
  color: #121213;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1200px) {
  .homeTitleContainer > .txtContent > h1 {
    font-size: 30px;
  }
}
@media (max-width: 860px) {
  .homeTitleContainer > .txtContent > h1 {
    font-size: 25px;
  }
}
.homeTitleContainer > .txtContent > p {
  font-size: 20px;
  color: #646466;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .homeTitleContainer > .txtContent > p {
    text-align: center;
    font-size: 14px;
  }
}

.homeOurMissionContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 1200px) {
  .homeOurMissionContainer {
    gap: 50px;
  }
}
.homeOurMissionContainer > .imgContent {
  width: 100%;
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .homeOurMissionContainer > .imgContent {
    margin-top: 50px;
  }
}
.homeOurMissionContainer > .imgContent > img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.homeOurMissionContainer > .listContent {
  width: 100%;
}
.homeOurMissionContainer > .listContent > ul {
  width: 100%;
  display: flex;
  gap: 20px;
}
@media (max-width: 1200px) {
  .homeOurMissionContainer > .listContent > ul {
    flex-direction: column;
  }
}
.homeOurMissionContainer > .listContent > ul > li {
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 20px;
}
.homeOurMissionContainer > .listContent > ul > li > .iconContent {
  padding: 15px;
}
@media (max-width: 1200px) {
  .homeOurMissionContainer > .listContent > ul > li > .iconContent > img {
    width: 50px;
  }
}
.homeOurMissionContainer > .listContent > ul > li > .txtContent {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .homeOurMissionContainer > .listContent > ul > li > .txtContent {
    margin-top: 15px;
  }
}
.homeOurMissionContainer > .listContent > ul > li > .txtContent > h1 {
  font-size: 20px;
  color: #1b1b1d;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .homeOurMissionContainer > .listContent > ul > li > .txtContent > h1 {
    font-size: 18px;
  }
}
.homeOurMissionContainer > .listContent > ul > li > .txtContent > p {
  font-size: 16px;
  color: #38383a;
}
@media (max-width: 1200px) {
  .homeOurMissionContainer > .listContent > ul > li > .txtContent > p {
    font-size: 15px;
  }
}

.homeContactTeacherBanner {
  width: 100%;
  height: 530px;
  position: relative;
  background: url(../img/img_contact_teacher_banner.jpg) center center;
  background-size: cover;
}
@media (max-width: 1200px) {
  .homeContactTeacherBanner {
    height: 410px;
  }
}
.homeContactTeacherBanner > .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(13, 12, 17, 0.4);
  backdrop-filter: blur(15px);
}
.homeContactTeacherBanner > .overlay > .contentContainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .homeContactTeacherBanner > .overlay > .contentContainer {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }
}
.homeContactTeacherBanner > .overlay > .contentContainer > .txtContent > h1 {
  font-size: 60px;
  color: white;
  font-family: 'Nanum Myeongjo', serif;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .homeContactTeacherBanner > .overlay > .contentContainer > .txtContent > h1 {
    font-size: 30px;
  }
}
.homeContactTeacherBanner > .overlay > .contentContainer > .txtContent > p {
  font-size: 20px;
  color: white;
  margin-top: 25px;
}
@media (max-width: 1200px) {
  .homeContactTeacherBanner > .overlay > .contentContainer > .txtContent > p {
    margin-top: 15px;
    font-size: 15px;
  }
}
.homeContactTeacherBanner > .overlay > .contentContainer > .button {
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: #2b473b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  .homeContactTeacherBanner > .overlay > .contentContainer > .button {
    width: 100px;
    height: 100px;
    margin-top: 30px;
  }
}
.homeContactTeacherBanner > .overlay > .contentContainer > .button > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.homeContactTeacherBanner > .overlay > .contentContainer > .button:hover {
  background: #1c3128;
}

.homeRecruitBanner {
  width: 100%;
  height: 365px;
  max-width: 1400px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: url(../img/img_recruit_banner.jpg) center center;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .homeRecruitBanner {
    height: 345px;
  }
}
.homeRecruitBanner > .overlay {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(270deg, rgba(13, 12, 17, 0.3) 0%, rgba(13, 12, 17, 0.85) 100%);
}
@media (max-width: 1200px) {
  .homeRecruitBanner > .overlay {
    background: rgba(13, 12, 17, 0.8);
  }
}
.homeRecruitBanner > .overlay > .contentContainer {
  width: 100%;
  padding: 0 60px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .homeRecruitBanner > .overlay > .contentContainer {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 25px;
  }
}
.homeRecruitBanner > .overlay > .contentContainer > .txtContent > h1 {
  font-size: 40px;
  color: white;
  font-family: 'Nanum Myeongjo', serif;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .homeRecruitBanner > .overlay > .contentContainer > .txtContent > h1 {
    font-size: 25px;
  }
  .homeRecruitBanner > .overlay > .contentContainer > .txtContent > h1 > br {
    display: none;
  }
}
.homeRecruitBanner > .overlay > .contentContainer > .txtContent > p {
  font-size: 20px;
  color: white;
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .homeRecruitBanner > .overlay > .contentContainer > .txtContent > p {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .homeRecruitBanner > .overlay > .contentContainer > .buttonContainer {
    margin-top: 30px;
  }
}

.teacherThumb01 {
  --bg-img: url("../img/img_teacher_01.jpg");
  transition: filter 0.2s ease-in-out;
}
.teacherThumb01.list {
  filter: grayscale(100%);
}
@media (max-width: 1200px) {
  .teacherThumb01.list {
    filter: grayscale(0);
  }
}
.teacherThumb01:hover {
  filter: grayscale(0);
}

.homeTeacherListContainer {
  width: 100%;
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .homeTeacherListContainer {
    margin-top: 50px;
  }
}
.homeTeacherListContainer > ul {
  width: 100%;
  display: flex;
  justify-content: center;
}
.homeTeacherListContainer > ul > li {
  max-width: 400px;
  min-height: 450px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  cursor: pointer;
}
.homeTeacherListContainer > ul > li:hover > .infoContainer > .insideContent > .buttonContainer {
  display: flex;
}
.homeTeacherListContainer > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: var(--bg-img);
  background-position: center center;
  background-size: cover;
  filter: saturate(100%);
  inset: 0;
}
.homeTeacherListContainer > ul > li > .infoContainer {
  width: 100%;
}
.homeTeacherListContainer > ul > li > .infoContainer > .insideContent {
  width: 100%;
  background: rgba(13, 12, 17, 0.6);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 1200px) {
  .homeTeacherListContainer > ul > li > .infoContainer > .insideContent {
    padding: 30px 15px;
  }
}
.homeTeacherListContainer > ul > li > .infoContainer > .insideContent > .txtContent {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.homeTeacherListContainer > ul > li > .infoContainer > .insideContent > .txtContent > h1 {
  font-size: 20px;
  color: white;
  font-weight: 500;
}
.homeTeacherListContainer > ul > li > .infoContainer > .insideContent > .txtContent > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.homeTeacherListContainer > ul > li > .infoContainer > .insideContent > .tagList > ul {
  width: 100%;
  display: flex;
  gap: 10px;
}
.homeTeacherListContainer > ul > li > .infoContainer > .insideContent > .tagList > ul > li {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 14px;
  color: white;
}
.homeTeacherListContainer > ul > li > .infoContainer > .insideContent > .buttonContainer {
  width: 100%;
  gap: 10px;
  display: none;
}
@media (max-width: 1200px) {
  .homeTeacherListContainer > ul > li > .infoContainer > .insideContent > .buttonContainer {
    display: flex;
  }
}
@media (max-width: 1200px) {
  .homeTeacherListContainer > ul > li {
    max-width: 300px;
  }
}

.teacherListSection {
  width: 100%;
}
.teacherListSection > .titleContainer {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .teacherListSection > .titleContainer {
    margin-bottom: 50px;
  }
}
.teacherListSection > .titleContainer > h1 {
  font-size: 40px;
  color: #121213;
  font-family: 'Nanum Myeongjo', serif;
}
@media (max-width: 1200px) {
  .teacherListSection > .titleContainer > h1 {
    font-size: 25px;
  }
}
.teacherListSection > ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.teacherListSection > ul > li {
  min-height: 600px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  cursor: pointer;
}
.teacherListSection > ul > li:hover > .infoContainer > .insideContent > .buttonContainer {
  display: flex;
}
.teacherListSection > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: var(--bg-img);
  background-position: center center;
  background-size: cover;
  filter: saturate(100%);
  inset: 0;
}
.teacherListSection > ul > li > .infoContainer {
  width: 100%;
}
.teacherListSection > ul > li > .infoContainer > .insideContent {
  width: 100%;
  background: rgba(13, 12, 17, 0.6);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 1200px) {
  .teacherListSection > ul > li > .infoContainer > .insideContent {
    padding: 30px 15px;
  }
}
.teacherListSection > ul > li > .infoContainer > .insideContent > .txtContent {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.teacherListSection > ul > li > .infoContainer > .insideContent > .txtContent > h1 {
  font-size: 20px;
  color: white;
  font-weight: 500;
}
.teacherListSection > ul > li > .infoContainer > .insideContent > .txtContent > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.teacherListSection > ul > li > .infoContainer > .insideContent > .tagList > ul {
  width: 100%;
  display: flex;
  gap: 10px;
}
.teacherListSection > ul > li > .infoContainer > .insideContent > .tagList > ul > li {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 14px;
  color: white;
}
.teacherListSection > ul > li > .infoContainer > .insideContent > .buttonContainer {
  width: 100%;
  gap: 10px;
  display: none;
}
@media (max-width: 1200px) {
  .teacherListSection > ul > li > .infoContainer > .insideContent > .buttonContainer {
    display: flex;
  }
}
.teacherListSection > ul > li {
  width: calc(33.3% - 6.5px);
}
@media (max-width: 1200px) {
  .teacherListSection > ul > li {
    width: calc(50% - 5px);
  }
}
@media (max-width: 860px) {
  .teacherListSection > ul > li {
    width: 100%;
    min-height: 450px;
  }
}

.buttonSolid.black {
  background: #1b1b1d;
  color: white;
}
.buttonSolid.black:hover {
  background: #2b473b;
  border: 1px solid transparent;
}
.buttonSolid.white {
  background: white;
  color: #1b1b1d;
}
.buttonSolid.white:hover {
  background: #2b473b;
  color: white;
}
.buttonSolid.white:hover > img {
  filter: brightness(0) invert(1);
}
.buttonSolid.pointColor {
  background: #2b473b;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.buttonSolid.pointColor:hover {
  background: #279e6b;
}

.buttonStroke.black {
  border: 1px solid #1b1b1d;
  color: #1b1b1d;
}
.buttonStroke.black:hover {
  background: #2b473b;
  color: white;
}
.buttonStroke.black:hover > img {
  filter: brightness(0) invert(1);
}
.buttonStroke.white {
  border: 1px solid white;
  color: white;
}
.buttonStroke.white:hover {
  background: #2b473b;
  color: white;
  border: 1px solid transparent;
}
.buttonStroke.white:hover > img {
  filter: brightness(0) invert(1);
}

.buttonRegular {
  padding: 20px 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 860px) {
  .buttonRegular {
    padding: 15px 30px;
  }
}
.buttonRegular {
  justify-content: center;
}

.buttonSmall {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.buttonXSmall {
  padding: 15px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.buttonFullWidth {
  width: 100%;
}

@media (max-width: 860px) {
  .buttonMobileFullWidth {
    width: 100%;
  }
}

.homeBottomBannerContainer {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1200px) {
  .homeBottomBannerContainer {
    flex-direction: column;
    gap: 50px;
  }
}
.homeBottomBannerContainer > .ltSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
}
.homeBottomBannerContainer > .ltSection > .txtContent {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.homeBottomBannerContainer > .ltSection > .txtContent > h1 {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 35px;
  font-weight: 700;
  color: #121213;
}
@media (max-width: 1200px) {
  .homeBottomBannerContainer > .ltSection > .txtContent > h1 {
    font-size: 25px;
  }
}
.homeBottomBannerContainer > .ltSection > .txtContent > p {
  font-size: 20px;
  color: #38383a;
}
@media (max-width: 1200px) {
  .homeBottomBannerContainer > .ltSection > .txtContent > p {
    font-size: 15px;
  }
}
.homeBottomBannerContainer > .rtSection {
  width: 100%;
}
.homeBottomBannerContainer > .rtSection > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.footerContainer {
  width: 100%;
  background: white;
  box-shadow: 0 0 30px 0 rgba(13, 12, 17, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .footerContainer {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}
.footerContainer > .ltSection {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.footerContainer > .ltSection > img {
  height: 30px;
}
@media (max-width: 1200px) {
  .footerContainer > .ltSection > img {
    height: 25px;
  }
}
.footerContainer > .ltSection > p {
  font-size: 12px;
  color: #646466;
}
.footerContainer > .mdSection > ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footerContainer > .mdSection > ul > li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #0d0c11;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.footerContainer > .mdSection > ul > li.active, .footerContainer > .mdSection > ul > li:hover {
  color: rgba(13, 12, 17, 0.5);
}
@media (max-width: 1200px) {
  .footerContainer > .mdSection > ul {
    flex-wrap: wrap;
    gap: 15px;
  }
  .footerContainer > .mdSection > ul > li {
    font-size: 13px;
  }
}
.footerContainer > .rtSection {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerContainer > .rtSection > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}
@media (max-width: 860px) {
  .footerContainer > .rtSection > ul {
    flex-wrap: wrap;
  }
}
.footerContainer > .rtSection > ul > li {
  font-size: 13px;
  color: #646466;
}
@media (max-width: 1200px) {
  .footerContainer > .rtSection > ul > li {
    font-size: 12px;
  }
}

.reqeustTeacherSelectContainer {
  width: 100%;
  min-height: 500px;
  max-height: 500px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 50px;
}
.reqeustTeacherSelectContainer.step2 {
  max-height: 100%;
}
.reqeustTeacherSelectContainer > ul {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.reqeustTeacherSelectContainer > ul > li {
  width: calc(33.3% - 6.5px);
  padding: 20px;
  background: white;
  border: 1px solid #eaeaef;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  cursor: pointer;
  transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
}
.reqeustTeacherSelectContainer > ul > li.active, .reqeustTeacherSelectContainer > ul > li:hover {
  background: rgba(39, 158, 107, 0.1);
  border: 1px solid #279e6b;
}
@media (max-width: 1200px) {
  .reqeustTeacherSelectContainer > ul > li {
    width: calc(50% - 5px);
  }
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul > li {
    width: 100%;
    padding: 15px;
  }
}
.reqeustTeacherSelectContainer > ul > li > .thumbnailContent {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 999px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul > li > .thumbnailContent {
    width: 60px;
    height: 60px;
  }
}
.reqeustTeacherSelectContainer > ul > li > .thumbnailContent > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reqeustTeacherSelectContainer > ul > li > .infoContent {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul > li > .infoContent {
    gap: 10px;
  }
}
.reqeustTeacherSelectContainer > ul > li > .infoContent > .textContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul > li > .infoContent > .textContainer {
    gap: 8px;
  }
}
.reqeustTeacherSelectContainer > ul > li > .infoContent > .textContainer > .titleContent {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul > li > .infoContent > .textContainer > .titleContent {
    gap: 4px;
  }
}
.reqeustTeacherSelectContainer > ul > li > .infoContent > .textContainer > .titleContent > h1 {
  font-size: 20px;
  color: #1b1b1d;
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul > li > .infoContent > .textContainer > .titleContent > h1 {
    font-size: 15px;
  }
}
.reqeustTeacherSelectContainer > ul > li > .infoContent > .textContainer > .titleContent > img {
  cursor: pointer;
}
.reqeustTeacherSelectContainer > ul > li > .infoContent > .textContainer > p {
  font-size: 14px;
  color: #8d8d91;
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul > li > .infoContent > .textContainer > p {
    font-size: 13px;
  }
}
.reqeustTeacherSelectContainer > ul > li > .infoContent > .tagList {
  width: 100%;
}
.reqeustTeacherSelectContainer > ul > li > .infoContent > .tagList > ul {
  display: flex;
  gap: 8px;
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul > li > .infoContent > .tagList > ul {
    gap: 4px;
  }
}
.reqeustTeacherSelectContainer > ul > li > .infoContent > .tagList > ul {
  flex-wrap: wrap;
}
.reqeustTeacherSelectContainer > ul > li > .infoContent > .tagList > ul > li {
  background: rgba(13, 12, 17, 0.05);
  color: rgba(13, 12, 17, 0.5);
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul > li > .infoContent > .tagList > ul > li {
    font-size: 12px;
  }
}
.reqeustTeacherSelectContainer > ul.selectedTeacher {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.reqeustTeacherSelectContainer > ul.selectedTeacher > .title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.reqeustTeacherSelectContainer > ul.selectedTeacher > .title > h1 {
  font-size: 15px;
  color: #38383a;
  font-weight: 400;
}
.reqeustTeacherSelectContainer > ul.selectedTeacher > li {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 860px) {
  .reqeustTeacherSelectContainer > ul.selectedTeacher > li {
    width: 100%;
  }
}
.reqeustTeacherSelectContainer > .inputContainer {
  width: 100%;
  margin-top: 30px;
}
.reqeustTeacherSelectContainer > .inputContainer > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reqeustTeacherSelectContainer > .inputContainer > ul > li > h1 {
  font-size: 14px;
  font-weight: 500;
  color: #38383a;
  margin-bottom: 10px;
}
.reqeustTeacherSelectContainer > .inputContainer > ul > li > input,
.reqeustTeacherSelectContainer > .inputContainer > ul > li textarea,
.reqeustTeacherSelectContainer > .inputContainer > ul > li select {
  width: 100%;
  padding: 15px;
  border: 1px solid #e1e1e5;
  background: white;
  font-size: 16px;
  color: #1b1b1d;
}
.reqeustTeacherSelectContainer > .inputContainer > ul > li > input::-moz-placeholder, .reqeustTeacherSelectContainer > .inputContainer > ul > li textarea::-moz-placeholder, .reqeustTeacherSelectContainer > .inputContainer > ul > li select::-moz-placeholder {
  color: #a8a8ad;
}
.reqeustTeacherSelectContainer > .inputContainer > ul > li > input::placeholder,
.reqeustTeacherSelectContainer > .inputContainer > ul > li textarea::placeholder,
.reqeustTeacherSelectContainer > .inputContainer > ul > li select::placeholder {
  color: #a8a8ad;
}
.reqeustTeacherSelectContainer > .inputContainer > ul > li > input:active, .reqeustTeacherSelectContainer > .inputContainer > ul > li > input:focus,
.reqeustTeacherSelectContainer > .inputContainer > ul > li textarea:active,
.reqeustTeacherSelectContainer > .inputContainer > ul > li textarea:focus,
.reqeustTeacherSelectContainer > .inputContainer > ul > li select:active,
.reqeustTeacherSelectContainer > .inputContainer > ul > li select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #1b1b1d;
}
.reqeustTeacherSelectContainer > .inputContainer > ul > li > select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/ico_select_arrow.svg) center right 15px no-repeat;
}
.reqeustTeacherSelectContainer > .inputContainer > ul > li > textarea {
  height: 300px;
  resize: none;
}

.requestTeacherButtonContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

.popupWrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(13, 12, 17, 0.85);
  z-index: 99999;
}
.popupWrapper > .popupContainer {
  width: 100%;
  max-width: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}
.popupWrapper > .popupContainer > .contentContainer {
  width: 100%;
  background: white;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.popupWrapper > .popupContainer > .contentContainer > .thumbnailContent {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 860px) {
  .popupWrapper > .popupContainer > .contentContainer > .thumbnailContent {
    width: 80px;
    height: 80px;
  }
}
.popupWrapper > .popupContainer > .contentContainer > .thumbnailContent > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popupWrapper > .popupContainer > .contentContainer > .textContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
.popupWrapper > .popupContainer > .contentContainer > .textContent > h1 {
  font-size: 20px;
  color: #1b1b1d;
  font-weight: 700;
}
@media (max-width: 860px) {
  .popupWrapper > .popupContainer > .contentContainer > .textContent > h1 {
    font-size: 18px;
  }
}
.popupWrapper > .popupContainer > .contentContainer > .textContent > p {
  font-size: 15px;
  color: #8d8d91;
}
@media (max-width: 860px) {
  .popupWrapper > .popupContainer > .contentContainer > .textContent > p {
    font-size: 14px;
  }
}
.popupWrapper > .popupContainer > .contentContainer > .buttonContainer {
  width: 100%;
}

.subTopTitleSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1200px) {
  .subTopTitleSection {
    gap: 30px;
  }
}
.subTopTitleSection > .titleContainer {
  width: 100%;
}
.subTopTitleSection > .titleContainer > h1 {
  font-size: 50px;
  color: #121213;
  font-family: 'Nanum Myeongjo', serif;
}
@media (max-width: 1200px) {
  .subTopTitleSection > .titleContainer > h1 {
    font-size: 35px;
  }
  .subTopTitleSection > .titleContainer > h1 > br {
    display: none;
  }
}
.subTopTitleSection > .subTitleContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 860px) {
  .subTopTitleSection > .subTitleContainer {
    flex-direction: column;
  }
}
.subTopTitleSection > .subTitleContainer > p {
  width: 100%;
  font-size: 20px;
  color: #646466;
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 1200px) {
  .subTopTitleSection > .subTitleContainer > p {
    font-size: 14px;
  }
}
.subTopTitleSection > .subTopImgContainer {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(13, 12, 17, 0.1);
}
@media (max-width: 860px) {
  .subTopTitleSection > .subTopImgContainer {
    height: 250px;
  }
}
.subTopTitleSection > .subTopImgContainer > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.subTopTitleSection > .ourMission {
  height: 100%;
  background: #e1e1e5;
  border: none;
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .subTopTitleSection > .ourMission {
    padding: 0 10px;
  }
}
.subTopTitleSection > .ourMission > img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.subTopTitleSection > .ourMission > img.pc {
  display: block;
}
@media (max-width: 1200px) {
  .subTopTitleSection > .ourMission > img.pc {
    display: none;
  }
}
@media (max-width: 860px) {
  .subTopTitleSection > .ourMission > img.pc {
    display: none;
  }
}
.subTopTitleSection > .ourMission > img.mobile {
  display: none;
}
@media (max-width: 1200px) {
  .subTopTitleSection > .ourMission > img.mobile {
    display: none;
  }
}
@media (max-width: 860px) {
  .subTopTitleSection > .ourMission > img.mobile {
    display: block;
  }
}

.contactInfoContainer {
  width: 100%;
  display: flex;
  gap: 50px;
}
@media (max-width: 1200px) {
  .contactInfoContainer {
    flex-direction: column;
  }
}
.contactInfoContainer > .ltSection {
  width: 45%;
}
@media (max-width: 1200px) {
  .contactInfoContainer > .ltSection {
    width: 100%;
  }
}
.contactInfoContainer > .ltSection > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  border-radius: 15px;
}
.contactInfoContainer > .rtSection {
  width: 55%;
}
@media (max-width: 1200px) {
  .contactInfoContainer > .rtSection {
    width: 100%;
  }
}
.contactInfoContainer > .rtSection > .titleContainer {
  width: 100%;
  margin-bottom: 25px;
}
.contactInfoContainer > .rtSection > .titleContainer > h1 {
  font-size: 20px;
  color: #1b1b1d;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .contactInfoContainer > .rtSection > .titleContainer > h1 {
    font-size: 18px;
  }
}
.contactInfoContainer > .rtSection > .listContent {
  width: 100%;
}
.contactInfoContainer > .rtSection > .listContent > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contactInfoContainer > .rtSection > .listContent > ul > li {
  width: 100%;
  padding-bottom: 25px;
  border-bottom: 1px solid #c8c8cd;
}
.contactInfoContainer > .rtSection > .listContent > ul > li > h1 {
  font-size: 15px;
  font-weight: 400;
  color: #38383a;
  margin-bottom: 10px;
}
.contactInfoContainer > .rtSection > .listContent > ul > li > p {
  font-size: 30px;
  color: #1b1b1d;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .contactInfoContainer > .rtSection > .listContent > ul > li > p {
    font-size: 18px;
  }
}
.contactInfoContainer > .rtSection > .listContent > ul > li > .copyEmailContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .contactInfoContainer > .rtSection > .listContent > ul > li > .copyEmailContainer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.contactInfoContainer > .rtSection > .listContent > ul > li > .copyEmailContainer > p,
.contactInfoContainer > .rtSection > .listContent > ul > li > .copyEmailContainer a {
  font-size: 30px;
  color: #1b1b1d;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .contactInfoContainer > .rtSection > .listContent > ul > li > .copyEmailContainer > p,
  .contactInfoContainer > .rtSection > .listContent > ul > li > .copyEmailContainer a {
    font-size: 20px;
  }
}
.contactInfoContainer > .rtSection > .listContent > ul > li > .copyEmailContainer > a {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 8px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  transition: color 0.2s ease-in-out;
}
.contactInfoContainer > .rtSection > .listContent > ul > li > .copyEmailContainer > a:hover {
  color: #279e6b;
}
.contactInfoContainer > .rtSection > .listContent > ul > li + li {
  margin-top: 25px;
}
.contactInfoContainer > .rtSection > .listContent > ul > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contactInputContainer {
  width: 100%;
}
.contactInputContainer > .titleContainer {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}
.contactInputContainer > .titleContainer > h1 {
  font-size: 35px;
  color: #1b1b1d;
  font-family: 'Nanum Myeongjo', serif;
}
@media (max-width: 1200px) {
  .contactInputContainer > .titleContainer > h1 {
    font-size: 30px;
  }
}
.contactInputContainer > .inputContainer {
  width: 100%;
  margin-top: 30px;
}
.contactInputContainer > .inputContainer > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contactInputContainer > .inputContainer > ul > li > h1 {
  font-size: 14px;
  font-weight: 500;
  color: #38383a;
  margin-bottom: 10px;
}
.contactInputContainer > .inputContainer > ul > li > input,
.contactInputContainer > .inputContainer > ul > li textarea,
.contactInputContainer > .inputContainer > ul > li select {
  width: 100%;
  padding: 15px;
  border: 1px solid #e1e1e5;
  background: white;
  font-size: 16px;
  color: #1b1b1d;
}
.contactInputContainer > .inputContainer > ul > li > input::-moz-placeholder, .contactInputContainer > .inputContainer > ul > li textarea::-moz-placeholder, .contactInputContainer > .inputContainer > ul > li select::-moz-placeholder {
  color: #a8a8ad;
}
.contactInputContainer > .inputContainer > ul > li > input::placeholder,
.contactInputContainer > .inputContainer > ul > li textarea::placeholder,
.contactInputContainer > .inputContainer > ul > li select::placeholder {
  color: #a8a8ad;
}
.contactInputContainer > .inputContainer > ul > li > input:active, .contactInputContainer > .inputContainer > ul > li > input:focus,
.contactInputContainer > .inputContainer > ul > li textarea:active,
.contactInputContainer > .inputContainer > ul > li textarea:focus,
.contactInputContainer > .inputContainer > ul > li select:active,
.contactInputContainer > .inputContainer > ul > li select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #1b1b1d;
}
.contactInputContainer > .inputContainer > ul > li > select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url(../img/ico_select_arrow.svg) center right 15px no-repeat;
}
.contactInputContainer > .inputContainer > ul > li > textarea {
  height: 300px;
  resize: none;
}

.teacherDetailContainer {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.teacherDetailContainer > .topContentSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .topContentSection {
    gap: 30px;
  }
}
.teacherDetailContainer > .topContentSection > .titleContainer {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.teacherDetailContainer > .topContentSection > .titleContainer > h2 {
  font-size: 20px;
  color: #646466;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .topContentSection > .titleContainer > h2 {
    font-size: 14px;
  }
}
.teacherDetailContainer > .topContentSection > .titleContainer > h1 {
  font-size: 50px;
  color: #121213;
  font-weight: 700;
  font-family: 'Nanum Myeongjo', serif;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .topContentSection > .titleContainer > h1 {
    font-size: 30px;
  }
}
.teacherDetailContainer > .topContentSection > .titleContainer > .tagList > ul {
  width: 100%;
  display: flex;
  gap: 10px;
}
.teacherDetailContainer > .topContentSection > .titleContainer > .tagList > ul > li {
  background: #e1e1e5;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 16px;
  color: #2d2d2f;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .topContentSection > .titleContainer > .tagList > ul > li {
    font-size: 15px;
  }
}
.teacherDetailContainer > .topContentSection > .thumbnailContent {
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 999px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .topContentSection > .thumbnailContent {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 860px) {
  .teacherDetailContainer > .topContentSection > .thumbnailContent {
    width: 200px;
    height: 200px;
  }
}
.teacherDetailContainer > .topContentSection > .thumbnailContent > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teacherDetailContainer > .topContentSection > .descContent {
  width: 100%;
  text-align: center;
}
.teacherDetailContainer > .topContentSection > .descContent > p {
  font-size: 22px;
  color: #38383a;
  font-weight: 700;
  font-family: 'Nanum Myeongjo', serif;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .topContentSection > .descContent > p {
    font-size: 20px;
  }
  .teacherDetailContainer > .topContentSection > .descContent > p > br {
    display: none;
  }
}
.teacherDetailContainer > .detailContentSection {
  width: 100%;
  max-width: 1100px;
}
.teacherDetailContainer > .detailContentSection > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.teacherDetailContainer > .detailContentSection > ul > li {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
}
.teacherDetailContainer > .detailContentSection > ul > li > h1 {
  font-size: 20px;
  font-weight: 500;
  color: #1b1b1d;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .detailContentSection > ul > li > h1 {
    font-size: 15px;
  }
}
.teacherDetailContainer > .detailContentSection > ul > li > p {
  font-size: 18px;
  font-weight: 400;
  color: #38383a;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .detailContentSection > ul > li > p {
    font-size: 15px;
  }
}
.teacherDetailContainer > .detailContentSection > ul > li > .listContent {
  width: 100%;
}
.teacherDetailContainer > .detailContentSection > ul > li > .listContent > ul {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .detailContentSection > ul > li > .listContent > ul {
    flex-direction: column;
  }
}
.teacherDetailContainer > .detailContentSection > ul > li > .listContent > ul > li {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: #f3f3f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.teacherDetailContainer > .detailContentSection > ul > li > .listContent > ul > li > .titleContainer > .numbering {
  width: 20px;
  height: 20px;
  background: #279e6b;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teacherDetailContainer > .detailContentSection > ul > li > .listContent > ul > li > .titleContainer > .numbering > p {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
}
.teacherDetailContainer > .detailContentSection > ul > li > .listContent > ul > li > .titleContainer > h1 {
  font-size: 18px;
  font-weight: 500;
  color: #279e6b;
  margin-top: 8px;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .detailContentSection > ul > li > .listContent > ul > li > .titleContainer > h1 {
    font-size: 15px;
  }
}
.teacherDetailContainer > .detailContentSection > ul > li > .listContent > ul > li > p {
  font-size: 16px;
  font-weight: 400;
  color: #38383a;
  margin-top: 8px;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .detailContentSection > ul > li > .listContent > ul > li > p {
    font-size: 15px;
    margin-top: 0;
  }
}
.teacherDetailContainer > .detailContentSection > ul > li > .careerListContent {
  width: 100%;
}
.teacherDetailContainer > .detailContentSection > ul > li > .careerListContent > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.teacherDetailContainer > .detailContentSection > ul > li > .careerListContent > ul > li {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaef;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.teacherDetailContainer > .detailContentSection > ul > li > .careerListContent > ul > li > h1 {
  font-size: 16px;
  font-weight: 400;
  color: #38383a;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .detailContentSection > ul > li > .careerListContent > ul > li > h1 {
    font-size: 14px;
  }
}
.teacherDetailContainer > .detailContentSection > ul > li > .careerListContent > ul > li > h2 {
  font-size: 14px;
  color: #8d8d91;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .detailContentSection > ul > li > .careerListContent > ul > li > h2 {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.teacherDetailContainer > .detailContentSection > ul > li > .careerListContent > ul > li + li {
  margin-top: 10px;
}
.teacherDetailContainer > .detailContentSection > ul > li > .careerListContent > ul > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.teacherDetailContainer > .requestBanner {
  width: 100%;
  border-radius: 20px;
  padding: 80px;
  background: linear-gradient(270deg, var(--grayscale-1800, #121213) -0.66%, var(--grayscale-1400, #38383a) 99.47%);
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .requestBanner {
    flex-direction: column;
    padding: 60px 20px;
    gap: 30px;
  }
}
.teacherDetailContainer > .requestBanner > .ltSection {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .requestBanner > .ltSection {
    flex-direction: column;
    text-align: center;
  }
}
.teacherDetailContainer > .requestBanner > .ltSection > .thumbnailContent {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 999px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .teacherDetailContainer > .requestBanner > .ltSection > .thumbnailContent {
    width: 80px;
    height: 80px;
  }
}
.teacherDetailContainer > .requestBanner > .ltSection > .thumbnailContent > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teacherDetailContainer > .requestBanner > .ltSection > h1 {
  font-size: 35px;
  font-family: 'Nanum Myeongjo', serif;
  color: white;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .requestBanner > .ltSection > h1 {
    font-size: 25px;
  }
}
@media (max-width: 1200px) {
  .teacherDetailContainer > .requestBanner > .rtSection {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 860px) {
  .teacherDetailContainer > .requestBanner > .rtSection {
    width: 100%;
  }
}

.recruitInfoContainer {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.recruitInfoContainer > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recruitInfoContainer > ul > li {
  border-radius: 10px;
  padding: 30px 20px;
  border: 1px solid #c8c8cd;
}
.recruitInfoContainer > ul > li.email {
  background: #e1e1e5;
}
.recruitInfoContainer > ul > li > .titleContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}
.recruitInfoContainer > ul > li > .titleContainer > h1 {
  font-size: 20px;
  font-weight: 500;
  color: #1b1b1d;
}
@media (max-width: 1200px) {
  .recruitInfoContainer > ul > li > .titleContainer > h1 {
    font-size: 18px;
  }
}
.recruitInfoContainer > ul > li > .titleContainer > p {
  font-size: 15px;
  color: #38383a;
}
@media (max-width: 1200px) {
  .recruitInfoContainer > ul > li > .titleContainer > p {
    font-size: 14px;
  }
}
.recruitInfoContainer > ul > li > .listContent {
  width: 100%;
}
.recruitInfoContainer > ul > li > .listContent > ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.recruitInfoContainer > ul > li > .listContent > ul.type1 > li {
  gap: 20px;
}
.recruitInfoContainer > ul > li > .listContent > ul.type1 > li > p::before {
  color: #a8a8ad;
}
.recruitInfoContainer > ul > li > .listContent > ul.type2 > li {
  background: white;
  padding: 15px;
  border-radius: 6px;
  gap: 10px;
}
.recruitInfoContainer > ul > li > .listContent > ul.type2 > li > p::before {
  color: #279e6b;
}
.recruitInfoContainer > ul > li > .listContent > ul > li {
  display: flex;
}
.recruitInfoContainer > ul > li > .listContent > ul > li > p {
  font-size: 16px;
  font-weight: 400;
  color: #38383a;
}
@media (max-width: 1200px) {
  .recruitInfoContainer > ul > li > .listContent > ul > li > p {
    font-size: 14px;
  }
}
.recruitInfoContainer > ul > li > .listContent > ul > li > p::before {
  content: "*";
  margin-right: 4px;
}
.recruitInfoContainer > ul > li > .copyEmailContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .recruitInfoContainer > ul > li > .copyEmailContainer {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.recruitInfoContainer > ul > li > .copyEmailContainer > p,
.recruitInfoContainer > ul > li > .copyEmailContainer a {
  font-size: 30px;
  color: #1b1b1d;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .recruitInfoContainer > ul > li > .copyEmailContainer > p,
  .recruitInfoContainer > ul > li > .copyEmailContainer a {
    font-size: 20px;
  }
}
.recruitInfoContainer > ul > li > .copyEmailContainer > a {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 8px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  transition: color 0.2s ease-in-out;
}
.recruitInfoContainer > ul > li > .copyEmailContainer > a:hover {
  color: #279e6b;
}

.recruitSloganContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.recruitSloganContainer > .divider {
  width: 60px;
  height: 1px;
  background: #1b1b1d;
}
.recruitSloganContainer > h1 {
  font-size: 40px;
  color: gray(1700);
  font-family: 'Nanum Myeongjo', serif;
  text-align: center;
  line-height: 1.4;
}

.ourMissionInfoContainer {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.ourMissionInfoContainer > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 1200px) {
  .ourMissionInfoContainer > ul {
    flex-direction: column;
    gap: 80px;
  }
}
.ourMissionInfoContainer > ul > li {
  width: 100%;
  display: flex;
  gap: 100px;
}
@media (max-width: 860px) {
  .ourMissionInfoContainer > ul > li {
    flex-direction: column;
    gap: 35px;
  }
}
.ourMissionInfoContainer > ul > li > .textContent {
  width: 65%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .ourMissionInfoContainer > ul > li > .textContent {
    width: 100%;
  }
}
.ourMissionInfoContainer > ul > li > .textContent {
  gap: 15px;
}
.ourMissionInfoContainer > ul > li > .textContent > h1 {
  font-size: 30px;
  color: #1b1b1d;
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .ourMissionInfoContainer > ul > li > .textContent > h1 {
    font-size: 25px;
  }
}
.ourMissionInfoContainer > ul > li > .textContent > p {
  font-size: 16px;
  color: #2d2d2f;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .ourMissionInfoContainer > ul > li > .textContent > p {
    font-size: 14px;
  }
}
.ourMissionInfoContainer > ul > li > .fullWidth {
  width: 100%;
}
.ourMissionInfoContainer > ul > li > .imgContent {
  width: 35%;
  height: 100%;
  aspect-ratio: 3.5/4;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(13, 12, 17, 0.1);
}
@media (max-width: 1200px) {
  .ourMissionInfoContainer > ul > li > .imgContent {
    width: 100%;
    max-width: 400px;
  }
}
.ourMissionInfoContainer > ul > li > .imgContent > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobileMenuWrapper {
  width: 100%;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  background: #1c3128;
  padding: 30px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobileMenuWrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobileMenuWrapper > .topButtonContainer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.mobileMenuWrapper > .menuContainer {
  width: 100%;
  margin-top: 50px;
}
.mobileMenuWrapper > .menuContainer > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mobileMenuWrapper > .menuContainer > ul > li {
  width: 100%;
  font-size: 25px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
.mobileMenuWrapper > .menuContainer > ul > li:hover {
  opacity: 0.6;
}
.mobileMenuWrapper > .menuContainer > ul > li.contact {
  font-family: 'Pretendard', sans-serif;
}
.mobileMenuWrapper > .menuContainer > ul > li.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}/*# sourceMappingURL=style.css.map */