/* font */
@import url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css');
/* font-family: 'SUIT'; */
/* //font */

* {
  font-family: 'SUIT';
  letter-spacing: -0.02em;
}



/* main */
main#main {
  max-width: 2560px;
  min-width: 1400px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

/* //main */

/* center */
.center {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1400px;
}

/* //center */


/* header */
header#header {
  height: 120px;
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;

}

/* 헤더 탑 */
.header_top {
  background-color: #2054CA;
  padding: 12px 0;
}

.header_top .center {
  display: flex;
  justify-content: flex-end;
}

.header_top_gnb ul {
  display: flex;
}

.header_top_gnb li {
  margin-left: 20px;
  position: relative;
  font-size: 12px;
  font-weight: 400;
}

.header_top_gnb li::before {
  content: "|";
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  color: #90AAE5;
}

.header_top_gnb li:first-child:before {
  content: "";
}

.header_top_gnb li:first-child {
  margin-left: 0;
}

.header_top_gnb a {
  color: #fff;
}

/* //헤더 탑 */

/* gnb */

nav.gnb {
  padding: 25px 0;
  border-bottom: 1px solid #dddddd;
  background-color: #fff;
}

nav.gnb .center {
  display: flex;
  justify-content: space-between;
}

.logo a {
  width: 100%;
  height: 100%;
  display: block;
}

ul.main_menu {
  margin-right: 304px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

ul.main_menu li {
  margin-left: 80px;
}

ul.main_menu li:first-child {
  margin-left: 0;
}

ul.main_menu a {
  color: #000000;
}

/* //gnb */


/* //header */


/* footer */
footer#footer {
  margin-top: 84px;
  border-top: 1px solid #dddddd;
  padding: 38px 0 50px 0;
}

.footer_link ul {
  display: flex;
}

.footer_link ul li {
  margin-right: 60px;
  line-height: 26px;
}

.footer_link ul li a {
  color: #111111;
}

.footer_text_box {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  color: #555555;
  font-size: 14px;
  line-height: 24px;
}

.footer_logo {
  width: 270px;
  height: 35px;
}

.footer_logo a {
  display: block;
  width: 100%;
  height: 100%;
}

/* //footer */



/* index */

/* s1 */

/* 스와이퍼 */

section.s1 {
  position: relative;
  padding-top: 120px;
}

.s1_slide {
  position: relative;
}

.s1_slide_img {
  height: 340px;
  background-image: url(../main/img/s1_01.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-left: 130px;
}

.s1_slide_text p {
  color: #fff;
  font-weight: 700;
}

.s1_slide_text p.a_01 {
  line-height: 35px;
  font-size: 28px;
}

.s1_slide_text p.a_02 {
  line-height: 48px;
  font-size: 38px;
  margin-top: 10px;
}

/* //스와이퍼 */

/* 로그인 폼 */
.login_form {
  position: absolute;
  top: 46px;
  right: 30px;
  background-color: #fff;
  z-index: 1;
  /* display: none; */
}

.login_form form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 36px 28px 36px;

}

.login_form_center {
  width: 210px;
}

/* 로고 */
.login_form_logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;

}

.login_form_logo img {
  margin-right: 6px;
}

/* //로고 */


/* 인풋 박스 */


.login_form_input_box input {
  display: block;
  border: 1px solid #dddddd;
  color: #C8C8C8;
  padding: 9px 0;
  width: 100%;
  padding-left: 20px;
}

.login_form_input {
  margin-top: 6px;
  height: 100%;
}

.login_form_input_box .login_form_input:first-child {
  margin-top: 18px;
}


/* .login_form_input_box input::placeholder {
  padding-left: 20px;
} */


.login_form_input_box input.login {
  border: none;
  background-color: #0D3E68;
  padding-left: 0;
  text-align: center;
  width: 100%;
  color: #fff;
  cursor: pointer;
  height: 100%;
  padding: 13px 0 13px 0;
  transition: all 0.3s;
}

.login_form_input_box input.login:hover {
  background-color: #0A3152;
}

/* //인풋 박스 */

.login_form_link {
  margin-top: 10px;
}

.login_form_link ul {
  display: flex;
}

.login_form_link li {
  margin-right: 20px;
  font-size: 12px;
  position: relative;
}

.login_form_link li::after {
  content: "|";
  display: block;
  color: #dddddd;
  position: absolute;
  top: 0;
  right: -10px;
}

.login_form_link li:last-child:after {
  content: "";
}

.login_form_link li a {
  color: #999999;
}

/* //로그인 폼 */

/* 로그인 후 */

.login_form.hidden {
  display: none;
  /* display: block; */
}

.login_form_text {
  margin-top: 14px;
  line-height: 22px;
  font-size: 18px;
  font-weight: 700;

}

.login_form_text  span {
  font-weight: 400;
}

.login_form.hidden .login_form_link {
  margin-top: 14px;
}
/* //로그인 후 */


/* s1 페이지 네이션 박스 */
.s1_pagination_box {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 43px;
  height: 8px;
  z-index: 1;
}

.s1 .swiper-pagination {
  display: flex;
  align-items: center;
}

.s1_pagination_box .swiper-pagination .swiper-pagination-bullet {
  margin-right: 8px;
}

.s1_pagination_box .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.s1 .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.6);
  width: 6px;
  height: 6px;
}

.s1 .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 8px;
  height: 8px;
}

/* //s1 페이지 네이션 박스 */

/* 교육관련 문의 */

.s1_article {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.s1_article article {
  width: calc((100% - 40px) / 3);
  padding: 46px 54px 46px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.s1_article article.a_01 {
  background-color: #2054CA;
  background-image: url(../main/img/s1_article_01.svg);
  background-repeat: no-repeat;
  background-size: 113px 116px;
  background-position: 0 100%;
}

.s1_article article.a_02 {
  background-color: #5A81DC;
  background-image: url(../main/img/s1_article_02.svg);
  background-repeat: no-repeat;
  background-size: 152px 108px;
  background-position: 0 100%;
}

.s1_article article.a_03 {
  background-color: #107ADD;
  padding-right: 40px;
  line-height: 36px;

}

.s1_article article.a_03 p:first-child {
  font-weight: 400;
  font-size: 20px;
}

.s1_article article.a_03 p:last-child {
  font-size: 26px;
  font-weight: 700;
  margin-top: 14px;
}

.s1_article_center {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.s1_article_left {
  line-height: 24px;
  font-weight: 700;
}

.s1_article_right p {
  line-height: 26px;
  font-size: 30px;
  font-weight: 700;
}

.s1_article_right span {
  margin-top: 10px;
  line-height: 20px;
  font-size: 11px;
  margin-top: 10px;
  display: block;
  color: #B7CCFF;
}

.s1_article_button {
  width: 40px;
  height: 40px;
}

.s1_article_button a {
  display: block;
  width: 100%;
  height: 100%;
}

/* //교육관련 문의 */

/* //s1 */


/* s2 */

.s2_slide_box.a_01 {
  margin-top: 50px;
  position: relative;
}

.s2_slide_box.a_02 {
  margin-top: 74px;
}

.s2_title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

.s2_slide {
  margin-top: 20px;
  overflow: hidden;
}

.s2_bl {
  margin-top: 20px;
  color: #1388EA;
  line-height: 25px;
  font-size: 20px;
  font-weight: 700;
}

.s2_text {
  margin-top: 10px;
  line-height: 32px;
  font-size: 26px;
}

.s2 .swiper-container {
  overflow: visible;
  width: calc((100% - 40px) / 3) !important;
  margin-left: inherit;

}

/* //s2 */

/* s3 */

section.s3 {

  margin-top: 114px;
}

section.s3 .center {
  display: flex;
  justify-content: space-between;
}

section.s3 article {
  width: calc((100% - 80px) / 2);
}

.s3_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #DDDDDD;
}

.s3_title {
  line-height: 40px;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 20px;

}

.s3_main {
  padding-top: 10px;
}

.s3_main a {
  color: #111111;
}

.s3_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s3_block_text {
  font-size: 18px;
  line-height: 50px;
  transition: all 0.3s;
}

.s3_block_text:hover {
  color: #1388EA;
}

.s3_block_date {
  color: #999999;
  width: 90px;
  line-height: 50px;
}

/* //s3 */


/* 링크 */
.main_link {
  margin-top: 84px;
}

.main_link ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* //링크 */

/* //index */