#layout {
  width: 100%;
  min-width: 1240px;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

/* 헤더 */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transition: background-color 0.3s;
}

#header::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

#header .innerHeader {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 23px 190px;
  min-width: 1920px;
}

#header .logo {
  display: block;
  width: 320px;
  height: 50px;
  background-image: url("/home/images/logo_IT_aws.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  z-index: 9999;
  position: relative;
}

#header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}

#header nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 96px;
}

#header nav .gnb {
  /* height: 270px; */
  display: flex;
  position: absolute;
  right: 190px;
  padding: 37px 0;
  z-index: 100;
  cursor: pointer;
}
#header nav .gnb .depth1 > div {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  width: 110px;
  display: block;
  text-align: center;
}
#header nav .gnb .depth1 {
  padding: 0 40px;
}
nav .sub_menu {
  top: 96px;
  position: absolute;
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  display: none;
  border-bottom:1px solid #dedede;
}
nav .sub {
  position: absolute;
  right: 190px;
  display: flex;
  padding-top: 10px;
}
#header nav .sub .depth2 {
  padding: 0 20px;
}
#header nav .sub .depth2 li {
  margin: 10px 0;
  width: 150px;
  /*border:1px solid #000;*/
}
#header nav .sub .depth2 li > a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  display: block;
  text-align: center;
}

#header nav .sub .depth2:nth-child(2) li > a {
  /*text-align: center !important;
  width:130px !important;
  */
}


#header nav .sub .depth2 li > a:hover {
  color: #00bfff;
}
#header .utilArea {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
}

#header .utilArea .util_wrap {
  display: flex;
}

#header .utilArea .info_num {
  font-size: 14px;
}

#header .utilArea .hamburger_btn {
  padding-top: 6px;
}

#header .utilArea .hamburger_btn .btn {
  width: 22px;
  height: 14px;
}

#header .utilArea .hamburger_btn .btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

#header .utilArea .hamburger_btn .btn span:nth-child(2) {
  margin: 4px 0;
}

/* --- 서브메뉴 추가시 .depth2에 넣어주세요 --- */
/* #header nav .gnb .depth2 {} */
#header.up_scroll {
  background: rgba(255, 255, 255, 1);
}

#header.up_scroll::before {
  background-color: #e5e5e5;
}

#header.up_scroll .logo {
  background-image: url("/home/images/logo_IT_aws.svg");
}

#header.up_scroll nav .gnb .depth1 > a {
  color: #000;
}

#header.up_scroll .utilArea .hamburger_btn .btn span {
  background-color: #000;
}

/* 모바일 메뉴 박스 */
#mobile_menuArea {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 80%;
  height: 100vh;
  background: #132f65;
  z-index: 99999;
}

#mobile_menuArea .mobile_close_btn {
  position: absolute;
  right: 20px;
  top: 30px;
  color: #fff;
}

#mobile_menuArea .mobile_close_btn::before {
  content: "\e9af";
  font-family: "xeicon", sans-serif;
  font-size: 22px;
}

#mobile_menuArea .menu_inner {
  width: 100%;
  height: 100%;
  padding: 30px;
}

#mobile_menuArea .logo {
  width: 160px;
  height: 24px;
  background-image: url("/home/images/logo_IT.png");
  background-size: auto 24px;
  background-repeat: no-repeat;
  background-position: center;
}

#mobile_menuArea .logo a {
  display: block;
  width: 100%;
  height: 100%;
}

#mobile_menuArea .menu_list {
  padding: 90px 0 0 10px;
  opacity: 0;
}

#mobile_menuArea .menu_list .menu:nth-child(1) {
  margin-top: 0;
}

#mobile_menuArea .menu_list .menu {
  margin-top: 40px;
}

#mobile_menuArea .menu_list .menu a {
  font-size: 20px;
  color: rgba(255, 255, 249, 0.9);
}

#mobile_menuArea .menu_list .menu.info_num a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

#mobile_menuArea .copyright {
  position: absolute;
  left: 30px;
  bottom: 30px;
  opacity: 0;
}

#mobile_menuArea .copyright p {
  font-size: 12px;
  font-weight: 200;
  color: rgba(255, 255, 249, 0.6);
}

/* 딤드 처리 */
#grayLayer {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: auto;
}

/* 사이드 버튼 */
.side_btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}

.side_btn .inquiry_wrap {
}

.side_btn .inquiry_wrap a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background: #214a99;
  border-radius: 30px;
  overflow: hidden;
  transition: width 0.5s ease;
}

.side_btn .inquiry_wrap a.active {
  width: 140px;
}

.side_btn .inquiry_wrap a.active .title {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.side_btn .inquiry_wrap .title {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
}

.side_btn .inquiry_wrap .inquiry_btn {
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-image: url("/home/images/call3.png");
  background-repeat: no-repeat;
  background-size: 35px auto;
  background-position: center center;
}

.top_btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  width: 60px;
  height: 60px;
  background-color: #7f7f7f;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  transition: width 0.5s ease;
  z-index: 50;
  cursor: pointer;
}

/* section 공통 */
.br_mobile {
  display: none;
}
section .inner,
footer .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
section .sec_title_group .title.color_w {
  color: #fff;
}
section .sec_title_group .title {
  font-weight: 600;
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: #000;
  margin-top: 40px;
}
section .sec_title_group .cate {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  color: #000;
}
section .sec_title_group .cate.color_w {
  color: #fff;
}
section .sec_title_group .txt {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.025em;
  /* white-space: pre-wrap; */
  word-break: break-all;
}

/* mainVisual */
.mainVisual {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mainVisual .mainVisual_inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 20;
}
.main .visual {
  /* background-color: #333; */
  padding-top: 96px;
  height: 646px;
}
/**** visual1 섹션 ****/
.main .visual {
  overflow: hidden;
}
.main .visual .slide {
  position: relative;
  height: 550px;
}
.main .visual .slide .mv_bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;

}
.main .visual .slide .mv_bg .img {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100%;
  /*height: 100%;*/
  background-repeat: no-repeat;
  background-position: center;
  /*background-size: 100% 100%;*/

  -webkit-transition: -webkit-transform linear 0.7s;
  transition: transform linear 0.7s;
  -webkit-transform: translateX(-50%) scale(1.15);
  transform: translateX(-50%) scale(1.15);
  opacity: 0;
}
.main .visual .slide .mv_bg .img.active {
  opacity: 1;
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
}
.main .visual .slide .mv_bg .img.hiding {
  opacity: 0;
  -webkit-transform: translateX(-50%) scale(1.15);
  transform: translateX(-50%) scale(1.15);
}

.main .visual .slide .item {
  position: relative;
  height: 550px;
}
.main .visual .slide .item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /*-webkit-transform: scale3d(1.25, 1.25, 1.25);*/
  /*transform: scale3d(1.25, 1.25, 1.25);*/
  -webkit-transform: scale3d(1.75, 1.75, 1.75);
  transform: scale3d(1.75, 1.75, 1.75);
}
.main .visual .slide .item.active img {
  -webkit-transform: scale3d(1, 1, 1) translateY(0);
  transform: scale3d(1, 1, 1) translateY(0);
  opacity: 1;
  -webkit-transition: -wekit-transform 0.5s;
  transition: 0.5s;
}
.main .visual .slide .slick-dots {
  /* position: absolute; */
  bottom: 20px;
  z-index: 10;
}
.slick-dots {
  position: absolute;
}
.main .visual .slide .slick-dots li {
  width: 8px;
  height: 8px;
  background: #80848b;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  opacity: 0.5;
}
.main .visual .slide .slick-dots li.slick-active {
  background: #ff2a00;
  background: #61646a;
  opacity: 1;
}
.main .visual .slide .slick-dots li button {
  display: none;
}
/**** visual1 섹션 ****/
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* contactUs */
.contactUs {
  position: relative;
  width: 100%;
  padding: 30px 0;
}

.contactUs::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #f4f4f4;
}

.contactUs .contact_wrap {
  display: flex;
  justify-content: space-between;
}

.contactUs .contactList {
  display: flex;
}

.contactUs .contactList .item {
  position: relative;
  width: 120px;
  height: 120px;
  background: #fff;
  box-shadow: 2px 5px 15px 2px rgba(163, 163, 163, 0.2);
  margin-right: 30px;
  border-radius: 15px;
  overflow: hidden;
}

.contactUs .contactList .item:last-child {
  margin-right: 0;
}

.contactUs .contactList .item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 33px 0 15px;
  z-index: 10;
}

.contactUs .contactList .item .icon_img {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.contactUs .contactList .item .icon_img.icon_1 {
  background-image: url("/home/images/main/icon_consulting.png");
}

.contactUs .contactList .item .icon_img.icon_2 {
  background-image: url("/home/images/main/icon_calendar.png");
}

.contactUs .contactList .item .icon_img.icon_3 {
  /*background-image: url("/home/images/main/icon_readingG.png");*/
  background-image: url("/home/images/main/icon_notice.png?ver=1");
  
}

.contactUs .contactList .item .icon_img.icon_4 {
  background-image: url("/home/images/main/icon_campus.png");
}

.contactUs .contactList .item .icon_title {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #4d4d4d;
  text-align: center;
  letter-spacing: -0.025em;
}

.contactUs .contactInfo {
  display: flex;
  align-items: center;
}

.contactUs .contactInfo .title_group {
  margin-right: 36px;
}

.contactUs .contactInfo .info_title {
  font-size: 22px;
  font-weight: 700;
  color: #202223;
}

.contactUs .contactInfo .info_txt {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #939393;
  white-space: nowrap;
}

.contactUs .contactInfo .info_num {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  letter-spacing: -1.25px;
  white-space: nowrap;
}

/* 슬로건 ~ 중간비디오 고정 전체 컨테이너 */
.about_section_con {
  position: relative;
  width: 100%;
}

.about_section_con .about_section_wrap {
  position: static;
  width: 100%;
  padding-bottom: 60px;
}

/* 메인슬로건 */
.mainSlogan {
  position: relative;
  width: 100%;
}

.mainSlogan .sloganArea {
  position: relative;
  width: 100%;
  height: 100vh;
}

.mainSlogan .slogan_title_wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.mainSlogan .slogan_title_wrap.ani_2 {
  display: none;
}

.mainSlogan .slogan_title_wrap .title {
  line-height: 1.5;
  font-size: 52px;
  font-weight: 700;
  color: #222;
}

.mainSlogan .slogan_title_wrap .title.t_first {
}

.mainSlogan .slogan_title_wrap .title.t_second {
  position: relative;
  top: 100px;
  font-size: 42px;
  opacity: 0;
}

.mainSlogan .slogan_title_wrap .title span {
  font-size: 1.05em;
  font-family: "Pretendard", sans-serif;
}

/* 어바웃비디오 */
.aboutVideo {
  position: static;
  width: 100%;
}

.aboutVideo .videoArea {
  position: static;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}

.aboutVideo .videoArea .pin-spacer {
  pointer-events: none;
}

.aboutVideo .fixedVideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100%;
  /* margin-top: 900px; */
  pointer-events: none;
}

.aboutVideo .fixedVideo .widthMotion_video {
  position: relative;
  margin: 1200px auto;
  width: 80%;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

.aboutVideo .fixedVideo .widthMotion_video::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.aboutVideo .fixedVideo .widthMotion_video video {
  position: absolute;
  bottom: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

/* 어바웃타이틀 */
.aboutTitle {
  position: relative;
  width: 100%;
  margin: -50vh auto 0;
}

.aboutTitle .title {
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* vision */
.vision {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 160px;
}

.vision .inner {
  position: relative;
}

.vision .fix_con {
  position: absolute;
  left: 0;
  top: 0;
}

.vision .more_con {
  padding-left: 448px;
}

.vision .sec_title_group .title {
  margin-top: 0;
}

.vision .more_con .txt_con .txt {
  line-height: 1.7;
  font-size: 18px;
  font-weight: 400;
  color: #d3d3d3;
}

.vision .more_con .vision_items {
  padding-top: 220px;
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.vision .more_con .vision_items .item {
  position: relative;
  width: 42.41%;
}

.vision .more_con .vision_items .item.item1 {
  margin-right: 15%;
}

.vision .more_con .vision_items .item.item2 {
  margin-top: 45%;
}

.vision .more_con .vision_items .item.item3 {
}

.vision .more_con .vision_items .item .vision_img {
  width: 100%;
  height: 480px;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.5s;
}

.vision .more_con .vision_items .item .vision_img div {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  transform: scale(1.1);
}

.vision .more_con .vision_items .item1 .vision_img div {
  background-image: url("/home/images/main/vision_1.png");
}
.vision .more_con .vision_items .item2 .vision_img div {
  background-image: url("/home/images/main/vision_2.png");
}

.vision .more_con .vision_items .item3 .vision_img div {
  background-image: url("/home/images/main/vision_3.png");
}

.vision .more_con .vision_items .item .title_group {
  margin-top: 48px;
}

.vision .more_con .vision_items .item .title_group .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.vision .more_con .vision_items .item .title_group .txt_b {
  margin-top: 28px;
  height: 110px;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: -0.025em;
  font-weight: 300;
  color: #d3d3d3;
  word-break: keep-all;
}

.vision .more_con .vision_items .item .title_group .txt_b .txt {
  overflow: hidden;
  -webkit-line-clamp: 4;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.vision .more_con .vision_items .item .more {
  margin-top: 20px;
}

.vision .more_con .vision_items .item .more a.more_btn {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.vision .more_con .vision_items .item .more a.more_btn::before,
.vision .more_con .vision_items .item .more a.more_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/home/images/icon-arr-wh.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 34px 10px;
  transition: all 0.3s ease-in-out;
}

.vision .more_con .vision_items .item .more a.more_btn::before {
  left: 0;
}

.vision .more_con .vision_items .item .more a.more_btn::after {
  left: -120%;
}

.vision .more_con .vision_items .item .more a.more_btn:hover::before {
  left: 120%;
}

.vision .more_con .vision_items .item .more a.more_btn:hover::after {
  left: 0;
}

/* 모집중인과정 */
.course {
  background: #fff;
  position: relative;
  padding: 160px 0 140px;
}

.course .course_bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 54%;
  width: 100%;
  text-align: center;
  height: 200px;
  font-family: "Pretendard", sans-serif;
  font-size: 205px;
  letter-spacing: -0.025em;
  color: #eee;
  line-height: 1;
  font-weight: 800;
}

.course .top_con {
  position: relative;
}

.course .controller {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100px;
}

.course .controller .control_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.course .controller .arrow_prev::before {
  content: "\e93b";
  font-family: "xeicon", sans-serif;
  font-size: 32px;
  color: rgba(61, 61, 61, 0.9);
}

.course .controller .arrow_next::before {
  content: "\e93e";
  font-family: "xeicon", sans-serif;
  font-size: 32px;
  color: rgba(61, 61, 61, 0.9);
}

.course .courseList {
  position: relative;
  width: 100%;
  margin-top: 70px;
  z-index: 10;
  cursor: pointer;
}

.course .slick-list {
  margin: 0 -10px;
}

.course .courseList .item {
  background-image: url("/home/images/it1.png");
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 305px;
  height: 420px;
  padding: 40px 30px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 10px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course .courseList .item.b {
  background-image: url("/home/images/it3.png");
}

.course .courseList .item.c {
  background-image: url("/home/images/it2.png");
}

.course .courseList .item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.course .courseList .item > div {
  position: relative;
}

.course .courseList .item .cate {
  margin-bottom: 12px;
}

/*
.course .courseList .item .cate span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #1c3e9b;
  padding: 5px 10px;
  color: #fff;
  font-size: 16px;
  border-radius: 20px;
}
*/

/*추가*/
.course .courseList .item .cate .near {
	display: inline-block;
	background-color: #1c3e9b;
	padding: 5px 10px;
	color: #fff;
	font-size: 16px;
	border-radius: 20px;
}

.course .courseList .item .cate .ques {
	display: inline-block;
	background-color: #222;
	padding: 5px 10px;
	color: #fff;
	font-size: 16px;
	border-radius: 20px;
}


/*추가*/

.course .courseList .item .title {
  margin-bottom: 10px;
}

.course .courseList .item .title p {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.3;
}

.course .courseList .item .txt {
  color: #ececec;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  /* white-space: pre-wrap; */
  word-break: break-all;
}

.course .courseList .item .info {
  color: #ececec;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
}

.course .courseList .item .info .date {
}

.course .courseList .item .info .branch {
  margin-top: 8px;
}

.course .courseList .item .more {
  position: absolute;
  right: 0;
  top: 12px;
}

.course .courseList .item .more a.more_btn {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.course .courseList .item .more a.more_btn::before,
.course .courseList .item .more a.more_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/home/images/icon-arr-wh.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px auto;
  transition: all 0.3s ease-in-out;
}

.course .courseList .item .more a.more_btn::before {
  left: 0;
}

.course .courseList .item .more a.more_btn::after {
  left: -120%;
}

.course .courseList .item .more a.more_btn:hover::before {
  left: 120%;
}

.course .courseList .item .more a.more_btn:hover::after {
  left: 0;
}
.portfolio {
  padding: 160px 0;
  position: relative;
  background: #f5f5f5;
}
.portfolio .portfolio_wrap {
  position: relative;
  width: 100%;
  flex-wrap: wrap;
}

.portfolio .sec_title_group {
}

.portfolio .sec_title_group .title {
  margin-top: 30px;
}

.portfolio .controller {
  position: absolute;
  right: 0;
  bottom: top;
  display: flex;
  justify-content: space-between;
  width: 100px;
}

.portfolio .controller .control_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.portfolio .controller .arrow_prev::before {
  content: "\e93b";
  font-family: "xeicon", sans-serif;
  font-size: 32px;
  color: rgba(61, 61, 61, 0.9);
}

.portfolio .controller .arrow_next::before {
  content: "\e93e";
  font-family: "xeicon", sans-serif;
  font-size: 32px;
  color: rgba(61, 61, 61, 0.9);
}

.portfolio .portfolioList {
  position: relative;
  width: 100%;
  margin-top: 70px;
  z-index: 10;
  cursor: grab;
}

.portfolio .slick-list {
  margin: 0 -10px;
}

.portfolio .portfolioList .item {
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 305px !important;
  height: 460px;

  overflow: hidden;
  margin: 0 10px;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio .portfolioList .item > div {
  position: relative;
}

.portfolio .portfolioList .item .top {
  width: 305px;
  height: 360px;
  /* overflow: hidden; */
}
.portfolio .portfolioList .item .top img {
  height: 360px;
}
.portfolio .portfolioList .item .btm {
  padding-top: 15px;
}

.portfolio .portfolioList .item .title {
  margin-bottom: 3px;
}

.portfolio .portfolioList .item .title p {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.3;
  overflow:hidden;
  -webkit-line-clamp : 1;
  word-wrap:break-word;
  text-overflow:ellipsis;
  -webkit-box-orient:vertical;
  display:-webkit-box;

}

.portfolio .portfolioList .item .txt {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;

}

.seminar {
  padding: 160px 0;
  position: relative;
  background: #fff;
}
.seminar_wrap {
  position: relative;
  width: 100%;
  flex-wrap: wrap;
}

.seminar .sec_title_group {
}

.seminar .sec_title_group .title {
  margin-top: 30px;
}

.seminar .controller {
  position: absolute;
  right: 0;
  top: 160px;
  display: flex;
  justify-content: space-between;
  width: 100px;
}

.seminar .controller .control_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.seminar .controller .arrow_prev::before {
  content: "\e93b";
  font-family: "xeicon", sans-serif;
  font-size: 32px;
  color: rgba(61, 61, 61, 0.9);
}

.seminar .controller .arrow_next::before {
  content: "\e93e";
  font-family: "xeicon", sans-serif;
  font-size: 32px;
  color: rgba(61, 61, 61, 0.9);
}

.seminar .seminarList {
  position: relative;
  width: 100%;
  margin-top: 70px;
  z-index: 10;
  cursor: grab;
}

.seminar .slick-list {
  margin: 0 -20px;
}

.seminar .seminarList .item {
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 400px !important;
  height: 460px;
  /* padding: 40px 30px; */
  overflow: hidden;
  margin: 0 20px;
  flex-direction: column;
  justify-content: space-between;
}
.seminar .seminarList .item .top {
  width: 400px;
  height: 360px;
}
.seminar .seminarList .item .top img {
  height: 360px;
}
.seminar .seminarList .item .btm {
  padding-top: 15px;
}
.seminar .seminarList .item > div {
  position: relative;
}

.seminar .seminarList .item .title {
  margin-bottom: 3px;
}

.seminar .seminarList .item .title p {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.3;

  overflow:hidden;
  -webkit-line-clamp : 1;
  word-wrap:break-word;
  text-overflow:ellipsis;
  -webkit-box-orient:vertical;
  display:-webkit-box;


}

.seminar .seminarList .item .txt {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  /* white-space: pre-wrap; */
  word-break: break-all;
}
/* 솔루션 */
.solution {
  padding: 160px 0;
  background: #132f65;
}

.solution .solution_wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.solution .left_con {
  width: 540px;
  position: relative;
  z-index: 100;
}

.solution .left_con::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: #132f65;
  z-index: -1;
}

.solution .sec_title_group {
}

.solution .sec_title_group .title {
  margin-top: 30px;
}

.solution .sec_title_group .txt {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.solution .btn {
  display: none;
  margin-top: 30px;
}

.solution .btn img {
  cursor: pointer;
}

.solution .btn img:nth-child(1) {
  margin-right: 20px;
}

.solution .more {
  margin-top: 50px;
}

.solution .more a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 40px;
  font-weight: 400;
  letter-spacing: -0.5px;
  font-size: 18px;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 20px;
  transition: 0.2s;
}

.solution .more a:hover {
  color: #214a99;
  background-color: #fff;
  font-weight: 500;
}

.solution .solutionList_wrap {
  width: calc(100% - 540px);
}

.solution .solutionList {
  width: 100%;
}

.solution .solutionList .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 350px;
  height: 350px;
  border-radius: 20px;
  padding: 66px 40px;
  margin-right: 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 110px auto;
  background-position: right 20px bottom 55px;
}

.solution .solutionList .item.step1 {
  background-image: url("/home/images/main/icon_chart.png");
}

.solution .solutionList .item.step2 {
  background-image: url("/home/images/main/icon_note.png");
}

.solution .solutionList .item.step3 {
  background-image: url("/home/images/main/icon_video.png");
}

.solution .solutionList .item.step4 {
  margin-right: 0;
  background-size: 115px auto;
  background-position: right bottom 55px;
  background-image: url("/home/images/main/icon_employ.png");
}

.solution .solutionList .item .top {
}

.solution .solutionList .item .cate {
}

.solution .solutionList .item .cate span {
  display: block;
  color: #006ac6;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

.solution .solutionList .item .title {
  margin-top: 20px;
}

.solution .solutionList .item .title p {
  color: #222;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.solution .solutionList .item .txt {
  color: #646566;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

/* 인터뷰 */
.interView {
  padding-top: 110px;
  background: #ebecf5;
}

.interView .inner {
}

.interView .interView_wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-image: url("/home/images/interview_bg.png");
  background-repeat: no-repeat;
  background-position: right -59px bottom 20px;
  padding-bottom: 200px;
}

.interView .interView_list {
  width: 770px;
}

.interView .interView_list .item {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.interView .interView_list .item:nth-child(1) {
  width: 498px;
}

.interView .interView_list .item:nth-child(2) {
  width: 640px;
}

.interView .interView_list .item:nth-child(3) {
  width: 566px;
}

.interView .interView_list .item:nth-child(4) {
  width: 498px;
  margin-bottom: 0;
}

.interView .interView_list .item .img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin-right: -33px;
  position: relative;
  z-index: 10;
  background-color: #fff;
  /*background-image: url("https://www.himedia.co.kr/home/images/images/itpage/m_img_4.png?ver=4");*/
  background-image: url("");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 47px auto;
}

.interView .interView_list .item .txt_con {
  width: calc(100% - 33px);
  padding: 22px 45px 14px 45px;
  box-shadow: 5px 5px 5px rgba(102, 102, 102, 0.15);
  border-radius: 20px;
  background: #fff;
}

.interView .interView_list .item .title {
  height: 21px;
  font-size: 16px;
  font-weight: 700;
  word-break: keep-all;
  color: #214a99;
  letter-spacing: -0.025em;
}

.interView .interView_list .item .title p {
  overflow: hidden;
  -webkit-line-clamp: 1;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.interView .interView_list .item .info {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.interView .interView_list .item .info .userName {
}

.interView .interView_list .item .info .userName span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #4d4d4d;
  white-space: nowrap;
}

.interView .interView_list .item .info .userCourse {
    overflow: hidden;
    -webkit-line-clamp: 1;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: -webkit-box;
}
}

.interView .interView_list .item .info .userCourse span {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #4D4D4D;
}

.interView .interView_list .item .info i {
  display: inline-block;
  margin: 0 12px;
  width: 1px;
  height: 12px;
  background: #666;
}

.interView .interView_list .item .btm {
  margin-top: 12px;
}

.interView .interView_list .item .txt_b {
  line-height: 1.3;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  word-break: keep-all;
  height: 40px;
}

.interView .interView_list .item .txt {
  overflow: hidden;
  -webkit-line-clamp: 2;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.interView .right_con {
  position: static;
}

.interView .sec_title_group {
}

.interView .sec_title_group .cate {
}

.interView .sec_title_group .title {
}

.interView .sec_title_group .txt {
  margin-top: 36px;
  color: rgba(0, 0, 0, 0.8);
}

.interView .right_con .more {
  margin-top: 40px;
}

.interView .right_con .more a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-size: 18px;
  width: 160px;
  height: 40px;
  color: rgb(33, 74, 153);
  background: transparent;
  border-radius: 20px;
  border: 2px solid rgb(33, 74, 153);
}

/* 띠배너 */
.banner.pc_banner {
  display: block;
}

.banner {
  position: relative;
}

.banner .banner_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
}

.banner .banner_bg div {
  width: 50%;
  height: 160px;
}

.banner .banner_bg .left_b {
  background: url("/home/images/banner.png") no-repeat center/cover;
}

.banner .banner_bg .right_b {
  background: #48cdf8;
}

.banner .banner_wrap {
  position: relative;
  width: 100%;
  height: 160px;
  display: flex;
  padding-top: 48px;
  align-items: start;
}

.banner .left_con,
.banner .right_con {
  width: 50%;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
}

.banner .right_con {
  padding-left: 120px;
  justify-content: space-between;
}

.banner .left_con .title {
  margin-right: 90px;
}

.banner .title p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-all;
}

.banner .more {
  margin-bottom: 4px;
}

.banner .more a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.banner .more a.txt_b {
  color: #214a99;
  font-weight: 700;
  border: 2px solid #214a99;
}

.banner .title p.txt_b {
  letter-spacing: -0.5px;
  color: #214a99;
}

.banner.m_banner {
  display: none;
  background: url("/home/images/banner.png") no-repeat center/cover;
  padding: 30px 0 20px;
  text-align: center;
}

.banner.m_banner .banner_box {
  padding: 0 2%;
}

.banner.m_banner .banner_box .title {
}

.banner.m_banner .banner_box .title .txt_w {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

.banner.m_banner .banner_box .more {
  margin-top: 14px;
}

.banner.m_banner .banner_box .more a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  padding: 0;
}

/* 채용연계 */
.partner {
  padding: 150px 0;
  background-color: #fff;
}

.partner .inner .title {
  height: 300px;
  color: #fff;
  background-color: white;
}
.partner .interView_wrap {
  height: 205.45px;
}
.partner .partnerList {
  width: 100%;
  height: 65.45px;
  display: flex;
  flex-wrap: wrap;
}

.partner .partnerList_btm {
  margin-top: 70px;
}
.partner .partnerList .swiper-wrapper {
  width: 100%;
  height: 100%;
  transition-timing-function: linear;
}
.partner div .item {
  width: 180px;
  height: 65.45px;
  margin-right: 110px;
  background-color: #ffffff38;
}

#one_click {
  width: 1200px;
  margin: 0 auto;
}
footer {
  position: relative;
  width: 100%;
  background: #222;
  /*padding: 200px 0;*/
}

footer {
  line-height: 1;
}

footer .top_con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  /*padding: 40px 0 30px;*/
  border-bottom: 1px solid #ffffff10;
  /*border-bottom: 1px solid rgba(255,255,255,0.3);*/
}

footer .top_con .area1 {
}

footer .top_con .area1 ul {
}

footer .top_con .area1 ul li {
  display: flex;
  align-items: center;
}

footer .top_con .area1 ul li a {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 249, 0.6);
}

footer .top_con .area1 ul li a.w {
  color: #fff;
}

footer .top_con .area1 ul li i {
  display: inline-block;
  margin: 0 20px;
  width: 1px;
  height: 14px;
  background: #ffffff10;
}

footer .top_con .area1 ul li p {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 249, 0.6);
}

footer .top_con .area1 ul li p span {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  margin-left: 5px;
}

footer .top_con .area2 {
  display: flex;
}

footer .top_con .area2 .snsList {
  display: flex;
}

footer .top_con .area2 .snsList li {
  min-width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  margin-right: 10px;
}

footer .top_con .area2 .snsList li.sns_i {
  background-image: url("/home/images/sns_icon_i_nor.png");
}

footer .top_con .area2 .snsList li.sns_i:hover {
  background-image: url("/home/images/sns_icon_i_click.png?ver=1");
}


footer .top_con .area2 .snsList li.sns_y {
  background-image: url("/home/images/sns_icon_y.png");
}

footer .top_con .area2 .snsList li.sns_b {
  background-image: url("/home/images/sns_icon_b_nor.png");
  margin-right: 0;
}

footer .top_con .area2 .snsList li.sns_b:hover {
  background-image: url("/home/images/sns_icon_b_click.png");
  margin-right: 0;
}

footer .top_con .area2 .snsList li a {
  display: block;
  width: 100%;
  height: 100%;
}

footer .top_con .area2 .familySite {
  position: relative;
}

footer .top_con .area2 .familySite p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #393939;
  border-radius: 10px;
  width: 180px;
  height: 40px;
  padding: 0 20px;
  margin-left: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

footer .top_con .area2 .familySite p s {
  width: 12px;
  height: 12px;
  background: url("/home/images/plus_icon.png") no-repeat center center/100% auto;
}

footer .top_con .area2 .familySite .selectBox {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 5px;
  z-index:100;
}

footer .top_con .area2 .familySite.on .selectBox {
  display: block !important;
}

footer .top_con .area2 .familySite .selectBox ul {
  width: 180px;
  height: 150px;
  padding: 10px 20px 20px;
  margin-left: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 14.7px 0.3px rgba(231, 231, 231, 0.08);
  overflow-y: scroll;
  color: #4e4e4e;
  background-color: #fff;
}

footer .top_con .area2 .familySite .selectBox ul.scrollBox {
}

footer .top_con .area2 .familySite .selectBox ul.scrollBox::-webkit-scrollbar {
  width: 1.8rem;
  position: relative;
  margin-right: 1.6rem;
}

footer
  .top_con
  .area2
  .familySite
  .selectBox
  ul.scrollBox::-webkit-scrollbar-thumb {
  height: 45%;
  border-radius: 20px;
  border: 0.7rem solid transparent;
  background-color: #d0d0d0;
  background-clip: content-box;
}

footer
  .top_con
  .area2
  .familySite
  .selectBox
  ul.scrollBox::-webkit-scrollbar-track {
  width: 1rem;
  background-color: transparent;
  position: absolute;
  top: -50rem;
  right: -3rem;
}

footer .top_con .area2 .familySite .selectBox ul li {
}

footer .top_con .area2 .familySite .selectBox ul li:nth-child(n + 1) {
  margin-top: 16px;
}

footer .top_con .area2 .familySite .selectBox ul li a {
  color: #444444;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

footer .btm_con {
  padding: 40px 0 70px;
}

footer .btm_con p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}

footer .btm_con p span {
  font-weight: 200;
  color: rgba(255, 255, 249, 0.6);
}

footer .btm_con .companyName {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

footer .btm_con .info {
  margin-top: 20px;
}

footer .btm_con .info li {
  display: flex;
  flex-wrap: wrap;
}

footer .btm_con .info li:nth-child(2) {
  margin-top: 20px;
}

footer .btm_con .info li p {
  margin-right: 20px;
}

footer .btm_con .info li p span {
  margin-left: 8px;
}

footer .btm_con .copyright {
  margin-top: 20px;
}

footer .btm_con .copyright p {
  font-weight: 200;
  color: rgba(255, 255, 249, 0.6);
}
