body {
  /* font-family: 'Montserrat', sans-serif;
  font-family: 'Noto Sans KR', sans-serif;
  font-family: 'Poppins', sans-serif; */
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  letter-spacing: -0.025em;
  color: #333;
}

/* header */
header .gnb_wrap {
  position: fixed;
  width: 100%;
  height: 70px;
  padding: 0 50px;
  z-index: 100;
  background-color: #fff;
  min-width: 1200px;
}

header.on .gnb_wrap {
  box-shadow: 0 -3px 13px 0 rgb(0 0 0 / 12%);
}

header .gnb_wrap h1 a img {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  width: 66px;
  height: 20px;
}

header .gnb_wrap .gnb {
  float: right;
  padding-right: 200px;
}

header .gnb_wrap .gnb > li {
  position: relative;
  float: left;
  line-height: 70px;
  padding: 0 30px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

header .gnb_wrap .gnb > li:hover > a {
  color: #00305b;
}

header .gnb_wrap .gnb ul {
  text-align: left;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  padding: 20px 34px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

header .gnb_wrap .gnb li:hover ul {
  visibility: visible;
  opacity: 1;
}

header .gnb_wrap .gnb ul::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.5s;
}

header .gnb_wrap .gnb li:hover ul::before {
  left: 0;
  width: 100%;
}

header .gnb_wrap .gnb ul > li a {
  display: block;
  white-space: nowrap;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  color: #646464;
}

header .gnb_wrap .gnb ul > li:hover a {
  color: #00305b;
}

header .menu {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  cursor: pointer;
}

header .menu i {
  display: block;
  content: "";
  width: 21px;
  height: 3px;
  background-color: #000;
  margin: 5px;
}

header .menu i:last-child:after {
  margin-bottom: 0;
}

header .sub_menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #ffe100;
  padding: 0 50px;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

header .sub_menu.on {
  visibility: visible;
  opacity: 1;
}

header .sub_menu h2 {
  position: absolute;
  left: 50px;
  top: 20px;
}

header .sub_menu h2 img {
  width: 66px;
  height: 20px;
}

header .sub_menu .close {
  position: absolute;
  right: 50px;
  top: 18px;
}

header .sub_menu > ul {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  min-width: 1200px;
  padding: 70px 0 50px;
}

header .sub_menu > ul > li {
  float: left;
  width: 16.66%;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(100px);
}

header .sub_menu > ul > li a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
  opacity: 0.9;
}

header .sub_menu > ul > li > .sub {
  margin-top: 30px;
}

header .sub_menu > ul > li > .sub a {
  position: relative;
  display: inline-block;
}

/* 이것도 아까 gnb에서 만든 아래 line */
header .sub_menu > ul > li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.5s;
}

header .sub_menu ul li .sub a:hover:after {
  width: 100%;
}

header .sub_menu ul .index {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 25px;
}

header .sub_menu ul a.title {
  display: block;
  font-size: 37px;
  font-weight: 600;
  line-height: 50px;
  color: #00305b;
}

header .sub_menu ul a.index:hover,
header .sub_menu ul a.title:hover {
  text-decoration: none;
}

/* main */
.main .main_vs {
  position: relative;
  height: 470px;
  padding-top: 70px;
}

.main .main_vs h2 {
  position: absolute;
  font-size: 44px;
  top: 230px;
  left: 50px;
  line-height: 64px;
  font-weight: bold;
  z-index: 2;
}

.main .main_vs .bg_txt {
  position: absolute;
  top: 110px;
  left: 0;
}

.main .main_vs .more_btn {
  position: absolute;
  right: 50px;
  bottom: 80px;
  display: block;
  width: 180px;
  height: 60px;
  line-height: 56px;
  text-align: center;
  border: 2px solid #000;
  border-radius: 4px;
  font-size: 18px;
}

.main .main_vs .more_btn:hover {
  background-color: #00305b;
  color: #fff;
}

.main .main_slide_wrap {
  height: 524px;
}

.main .main_slide_wrap .main_slide {
  height: 100%;
}

.main .main_slide_wrap .img_wrap {
  height: 100%;
  overflow: hidden;
}

.main .main_slide_wrap .img_wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 20s;
}

.main .main_slide_wrap .main_slide .swiper-slide-active img {
  transform: scale(1.3);
}

.culture {
  padding: 160px 0;
  width: 1200px;
  margin: auto;
}

.culture_head {
  position: relative;
}

.culture_head h2 {
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 2px;
  font-weight: 600;
}

.culture_head a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  font-size: 16px;
  letter-spacing: 1px;
}

.culture_head a::after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 1px;
  margin-left: 14px;
  vertical-align: 4px;
  background-color: #333;
}

.culture_main {
  position: relative;
  height: 700px;
  margin-top: 41px;
}

.culture_main .left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
}

.culture_main .left ul li a {
  display: block;
  height: 17px;
  line-height: 17px;
  margin-bottom: 27px;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.5s;
}

.culture_main .left ul li.on a {
  font-size: 22px;
  color: #fee100;
  font-weight: bold;
}

.culture_main .video_con {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 499px;
  height: 700px;
}

.culture_main .video_con video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.culture_main .video_con video .video {
  object-fit: inherit;
}

.culture_main .right {
  position: absolute;
  right: 0;
  top: 130px;
  width: 300px;
}

.culture_main .right > div {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s, transform 1s;
}

.culture_main .right > div.on {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.culture_main .right strong {
  font-size: 35px;
  font-weight: 500;
  color: #333;
  line-height: 54px;
  letter-spacing: -3px;
}

.culture_main .right p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  color: #666;
}

.culture_main .prev_btn {
  position: relative;
  height: 775px;
}

/* kakao is */
.kakao_is {
  padding: 60px 0;
  background-color: #ffe100cc;
  text-align: center;
}

.kakao_is h2 {
  margin: 14px 0 10px;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -3px;
  color: #000;
}

.kakao_is h2 > span {
  font-weight: 500;
}

.kakao_is > span {
  font-size: 20px;
  font-weight: 700;
  color: #00305b;
  line-height: 1.2;
}

.kakao_is .box_wrap {
  width: 1200px;
  margin: 80px auto 0;
}

.kakao_is .box_wrap .box {
  position: relative;
  float: left;
  width: calc(33.33% - 40px);
  height: 490px;
  margin: 0 20px;
  padding: 80px 0;
  background-color: #fff;
  transition: background 0.25s;
}

.kakao_is .box_wrap .box:first-child {
  margin-left: 20px;
}

.kakao_is .box_wrap .box em {
  font-size: 22px;
  font-weight: 500;
  line-height: 2.45;
  letter-spacing: -1.65;
}

.kakao_is .box_wrap .box p {
  color: #595e6a;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.7px;
  line-height: 1.57;
}

.kakao_is .box_wrap .box::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.kakao_is .box_wrap .box:hover::before {
  background-color: #00305b;
  box-shadow: 20px 20px 30px 0 rgb(0 57 186 / 30%);
  transform: scaleY(1.02);
}

.kakao_is .box_wrap .box .wrap {
  position: relative;
}

.kakao_is .box .icon_box {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  position: relative;
}

.kakao_is .box_wrap .box img {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.kakao_is .box_wrap .box img.after {
}

.kakao_is .box_wrap .box img.before {
  visibility: hidden;
  opacity: 0;
}

.kakao_is .box_wrap .box:hover img.after {
  visibility: hidden;
  opacity: 0;
}

.kakao_is .box_wrap .box:hover img.before {
  visibility: visible;
  opacity: 1;
}

.kakao_is .box_wrap .box:hover em,
.kakao_is .box_wrap .box:hover p {
  color: #fff;
}

/* company */
.company {
  position: relative;
  padding: 150px 0;
  height: 1000px;
  color: #fff;
  overflow: hidden;
}

.company::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.company .bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: url("../images/main_vs.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
}

.company .inner {
  width: 1200px;
  margin: auto;
}

.company .company_info {
  padding-bottom: 45px;
}

.company .company_info h2 {
  font-size: 20px;
  color: #ffe100;
}

.company .company_info .txt_box {
  position: relative;
  margin: 26px 0 46px;
  display: inline-block;
}

.company .company_info strong {
  display: block;
  font-size: 40px;
  line-height: 1.4;
  font-weight: 300;
}

.company .company_info strong > span {
  font-weight: 600;
}

.company .company_info p {
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.company .company_info .btn_arrow {
  position: absolute;
  top: 10px;
  right: -120px;
  display: inline-block;
  width: 92px;
  height: 92px;
  line-height: 85px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  text-align: center;
}

.company_info .btn_arrow svg {
  overflow: visible;
  position: absolute;
  top: 0px;
  left: -1px;
  fill: none;
  stroke: #fff;
}

.company_info .btn_arrow svg circle {
  transform-origin: center;
  stroke: #fff;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  stroke-width: 3px;
  transition: 1s;
  transform: rotate(-90deg);
}

.company_info .btn_arrow:hover circle {
  stroke-dashoffset: 0;
}

.company .line {
  display: block;
  border-bottom: 1px solid #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.company .news {
  position: relative;
  padding: 45px 0;
}

.company .news_head {
  position: relative;
  height: 40px;
  margin-bottom: 35px;
}

.company .news h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  /* color: #ffe100; */
}

.company .news_head > .btn_box {
  position: absolute;
  left: 250px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.company .news .btn i {
  text-align: center;
  font-size: 20px;
}

.company .news .prev_btn i,
.company .news .next_btn i {
  opacity: 0.5;
  transition: 0.5s;
}

.company .news .prev_btn:hover i {
  transform: translateX(-3px);
  opacity: 1;
}

.company .news .next_btn:hover i {
  transform: translateX(3px);
  opacity: 1;
}

.company .news .menu_btn {
  margin: 0 30px;
}

.company .news_wrap {
  height: 400px;
  width: 390px;
}

.company .news .img_box {
  position: relative;
  display: block;
  width: 393px;
  height: 230px;
  overflow: hidden;
}

.company .news .img_box img {
  width: 100%;
  height: 100%;
  transition: 1s;
}

.company .news .img_box:hover img {
  transform: scale(1.2);
}

.company .news .txt_box {
  display: block;
  padding: 25px 0;
}

.company .news .txt_box strong {
  display: block;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}

.company .news .txt_box p {
  display: block;
  display: -webkit-box;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 25px;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 40px;
  line-height: 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.company .news .txt_box .date {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.2px;
}

/* contents */
.contents {
  padding: 60px;
  background-color: #ffe733;
}

.contents .content_wrap {
  width: 1200px;
  margin: auto;
}

.contents .contents_head h2 {
  color: #00305b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.contents .contents_head strong {
  display: block;
  margin-top: 14px;
  font-size: 40px;
  font-weight: 300;
}

.contents_inner {
  margin-top: 50px;
}

.contents .contents_head strong > span {
  font-weight: 500;
}

.contents .contents_inner .con {
  position: relative;
}

.contents .contents_inner .con a {
  display: block;
  height: 100%;
}

.contents .contents_inner .img_wrap {
  height: 100%;
}

.contents .contents_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contents .contents_inner .sub_txt_wrap {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
}

.sub_txt_wrap.main_txt em {
  color: #00305b;
  font-size: 18px;
  font-weight: 600;
}

.sub_txt_wrap.main_txt p {
  font-size: 25px;
  color: #333;
}

.sub_txt_wrap p {
  color: #fff;
  font-size: 20px;
  letter-spacing: -1.1px;
  margin-top: 10px;
  line-height: 1.4;
}

.sub_txt_wrap em {
  color: #ffe100;
  font-size: 14px;
  font-weight: 400;
  margin-top: 18px;
}

.con_left {
  position: relative;
  float: left;
  width: 520px;
  height: 533px;
}

.con_left .img_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.contents .con_left .sub_txt_wrap {
  position: absolute;
  z-index: 2;
  width: 400px;
  height: 300px;
  top: auto;
  bottom: 0;
  background-color: #ffe733;
}

.con_right {
  float: right;
  width: 670px;
  height: 533px;
  overflow: hidden;
}

.con_right li {
  float: left;
  height: calc(50% - 5px);
}

.con_right li:nth-child(1) {
  width: calc(60% - 5px);
}

.con_right li:nth-child(2) {
  width: calc(40% - 5px);
  float: right;
}

.con_right li:nth-child(3) {
  width: calc(70% - 5px);
}

.con_right li:nth-child(4) {
  width: calc(30% - 5px);
  float: right;
}

.con_right li:nth-child(n + 3) {
  position: relative;
  margin-top: 10px;
}

.con_right li:nth-child(n + 2) .sub_txt_wrap {
  position: absolute;
  z-index: 2;
}

.con_right li:nth-child(n + 2) .img_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.contents .btn_box {
  text-align: center;
}

/* newsletter */
.newsletter {
  text-align: center;
  margin: 60px 0;
}

.newsletter h2 {
  display: block;
}

.newsletter h2 a img {
  display: block;
  width: 66px;
  height: 20px;
  margin: 0 auto 20px;
}

.newsletter strong {
  display: block;
  font-size: 22px;
  letter-spacing: -1.1px;
  font-weight: 300;
  margin-bottom: 6px;
}

.newsletter strong > span {
  font-weight: 500;
}

.newsletter p {
  display: block;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.7px;
  color: #666;
  margin-bottom: 30px;
}

.newsletter form input:focus,
.newsletter form input:hover {
  outline: none;
  border-color: #00305b;
}

.newsletter form input {
  height: 44px;
  transition: 0.15s ease-in-out;
}

.newsletter .chk_area {
  position: relative;
  padding-left: 20px;
  background-image: url("http://lululab.ekmodoom.com/template/image/icon/ic_selected_off.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left;
}

.newsletter .chk_area.on {
  background-image: url("http://lululab.ekmodoom.com/template/image/icon/ic_selected_on.svg");
}

.newsletter .chk_area input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.newsletter form button {
  float: left;
  width: 120px;
  height: 44px;
  font-size: 14px;
  line-height: 3;
  letter-spacing: -0.7px;
  color: #fff;
  margin-left: 4px;
  background: #00305b;
  cursor: pointer;
}

.newsletter .agree {
  position: relative;
  margin: 30px 0 52px;
  text-align: center;
}

.newsletter .agree p {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: -0.7px;
  font-weight: 300;
  line-height: 18px;
}

.newsletter .agree p > span {
  font-weight: 700;
  color: #00305b;
}

.newsletter .email {
  position: relative;
}

.newsletter .email_area {
  display: inline-block;
}

.newsletter .email > form {
  text-align: center;
}

.newsletter form .name {
  float: left;
  width: 150px;
  border: 1px solid #ddd;
  letter-spacing: -0.8px;
  font-size: 15px;
  padding: 0 20px;
}

.newsletter form .address {
  float: left;
  width: 300px;
  border: 1px solid #ddd;
  letter-spacing: -0.8px;
  font-size: 15px;
  padding: 0 20px;
  margin-left: 4px;
}

.newsletter .sns_link .desc {
  float: left;
  font-weight: 700;
  color: #00305b;
  margin-left: 30px;
}

.newsletter .sns_link .desc > i {
  margin-left: 8px;
  vertical-align: -3px;
}

.newsletter .sns_link .desc::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  margin-top: -6px;
  margin-right: 30px;
  background: rgba(0, 0, 0, 0.3);
}

.newsletter .sns_link {
  text-align: center;
  display: inline-block;
  margin: 0 auto;
}

.newsletter .sns_link .sns {
  float: left;
}
.newsletter .sns_link .sns a {
  float: left;
  width: 30px;
  height: 30px;
}

.newsletter .sns_link .sns a img {
  height: 100%;
}

.newsletter .sns_link .sns .youtube {
  margin-left: 19px;
}

.newsletter .sns_link .sns .facebook {
  margin-left: 19px;
}

.newsletter .sns_link .sns .insta {
  margin-left: 19px;
}

/* footer */
footer {
  margin: auto;
}

.footer {
  position: relative;
  border-top: 1px solid #ccc;
  background: #fff;
}

footer .footer_info {
  margin: auto;
  padding: 60px;
}

footer .footer_info ul {
  margin-bottom: 10px;
}

footer .footer_info ul li {
  float: left;
  margin-right: 20px;
  font-size: 14px;
  color: #333;
  line-height: 36px;
}

footer .footer_info ul li .on {
  color: #00305b;
  font-weight: 700;
}

footer .footer_info .address span {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  color: #777;
}

footer .footer_info .copy span {
  font-size: 12px;
  font-weight: 300;
  color: #777;
  line-height: 22px;
  letter-spacing: 1px;
}

footer .family_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 80px;
  width: 240px;
}

footer .family_btn > a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 300;
  color: #333;
  border-bottom: 2px solid #333;
}

footer .family_btn a i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

footer .family_sub {
  position: absolute;
  right: 0;
  bottom: 50px;
  display: block;
  width: 100%;
  padding: 14px 20px;
  background-color: #ffe100;
  visibility: hidden;
}

footer .family_sub.on {
  visibility: visible;
}

footer .family_sub li {
  padding-top: 26px;
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  color: #333;
}

footer .family_sub li a {
  display: block;
}

footer .family_sub li:first-child {
  padding: 0;
}
