﻿@import url('css2-Montserratwght100200300400500600700800900_Poppinswght100200300400500600700800900_swap.css');
@import url('css2-NotoSansKRwght100300400500700900_swap.css');

/* 리셋 reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
  letter-spacing: -0.54px;
  color: #313131;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --point-color: #ff414b;
}

/* 공통 common */
.flex_wrap {
  display: flex;
  justify-content: space-between;
}

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

.more_btn {
  font-size: 14px;
  position: relative;
  font-weight: 600;
  margin-top: 30px;
  display: inline-block;
}

.more_btn::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: #313131;
  left: 0;
  bottom: 0;
}

/*header*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 99px;
  border-bottom: 1px solid #ffffff33;
  font-weight: 500;
  padding: 0 32px;
  transition: .5s;
  z-index: 99;
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: .5s;
}

.header .h_gnb {
  display: flex;
  height: 99px;
  line-height: 99px;
}

.header .h_gnb>li>a {
  position: relative;
  text-align: center;
  display: block;
  color: #fff;
  margin-right: 87px;
}

.header .h_gnb>li:nth-child(4)>a {
  margin-right: 0px;
}

.header .h_gnb>li>a::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: #fff;
  top: 50%;
  right: -44px;
  margin-top: -2px;
}

.header .h_gnb>li:last-child>a::after {
  display: none;
}

.header .h_gnb>li>ul,
.gnb_lang ul {
  position: absolute;
  margin-top: -8px;
  background: #fff;
  border-radius: 4px;
  transition: .5s;
  opacity: 0;
  visibility: hidden;
}

.header .h_gnb>li>ul {
  min-width: 165px;
  margin-left: -54px;
}

.header .h_gnb>li:hover ul,
.gnb_lang>li:hover ul {
  opacity: 1;
  visibility: visible;
  margin-top: -18px;
}

.header .h_gnb>li>ul::before,
.gnb_lang ul::before {
  position: absolute;
  content: '▲';
  top: -51px;
  left: 50%;
  margin-left: -6px;
  color: #fff;
}

.header .h_gnb>li>ul>li,
.gnb_lang ul li {
  padding: 0 16px;
  height: 47px;
  line-height: 47px;
  border-bottom: 1px solid #0000001a;
  color: #b0b0b0;
  font-weight: 400;
}

.header .h_gnb>li>ul>li>a,
.gnb_lang ul li a {
  display: block;
}

.header .h_gnb>li>ul>li:hover,
.gnb_lang ul li:hover {
  color: var(--point-color);
}

.header .right_gnb {
  display: flex;
  height: 99px;
  align-items: center;
}

.header .right_gnb span {
  color: #fff;
  cursor: pointer;
}

.gnb_lang {
  cursor: pointer;
}

.gnb_lang li {
  position: relative;
}

.header .gnb_lang>li {
  height: 99px;
  line-height: 99px;
  color: #fff;
}

.header .gnb_lang span {
  font-size: 18px;
  vertical-align: middle;
  margin-left: 5px;
}

.header .gnb_toggle_btn {
  position: relative;
  margin-left: 44px;
}

.header .gnb_toggle_btn span::before {
  position: absolute;
  content: '';
  top: 4px;
  left: -24px;
  width: 1px;
  height: 17px;
  background: #fff3;
}

.header.active {
  background: #fff;
  border-bottom: 1px solid #e9eaec;
}

.header.active .inner {
  width: 1200px;
}

.header.active .h_gnb>li>a,
.header.active .gnb_lang>li,
.header.active .right_gnb span {
  color: #313131;
}

.header.active .h_gnb>li>a::after {
  background: #313131;
}

.header.active .h_gnb>li>ul, .gnb_lang ul {
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.2));
}

.header .h_gnb>li>ul.h_gnb_eng1 {
  margin-left: -76px;
}

.header .h_gnb>li>ul.h_gnb_eng2 {
  margin-left: -71px;
}

.header .h_gnb>li>ul.h_gnb_eng3 {
  margin-left: -11px;
}

.header .h_gnb > li.on > a {
  color: #ff414b;
}

.header.active .h_gnb > li.on > a {
  color: #ff414b;
}

/*toggle*/
.toggle_gnb_wr {
  position: fixed;
  background: #31313169;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.gnb_toggle_btn {
  cursor: pointer;
  text-align: right;
}

.toggle_gnb_wr .gnb_toggle_btn span {
  font-size: 50px;
  color: #fff;
}

.toggle_gnb {
  width: 50%;
  height: 100%;
  background: #2e3335;
  margin-left: auto;
  padding: 50px 100px;
  transition: .5s;
  transform: translateX(100%);
}

.toggle_gnb .gnb_toggle_menu>li>a {
  font-size: 32px;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  display: block;
  margin: 22px 0 10px;
  line-height: 61px;
  color: #fff;
}

.toggle_gnb .gnb_toggle_menu li>ul>li {
  height: 39px;
}

.toggle_gnb .gnb_toggle_menu li>ul>li>a {
  font-size: 20px;
  font-weight: 300;
  color: #b6b6b6;
}

.toggle_gnb .gnb_toggle_menu li>ul>li>a:hover {
  color: #fff;
}

.toggle_gnb_wr.active {
  opacity: 1;
  visibility: visible;
}

.toggle_gnb_wr.active .toggle_gnb {
  transform: translateX(0);
}

/*main*/
section {
  padding: 146px 0;
}

section.section01 {
  padding: 0;
}

.section01 .swiper {
  width: 100%;
  height: 900px;
  position: relative;
  overflow: hidden;
}

.section01 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.section01 .swiper-slide.bg01 {
  background: url("../image/main_slide01.jpg")no-repeat center/cover;
}

.section01 .swiper-slide.bg02 {
  background: url("../image/main_slide02.jpg")no-repeat center/cover;
}

.section01 .swiper-slide .slide_text_wr {
  width: 1200px;
  text-align: left;
}

.section01 .swiper-slide .slide_text_wr h3 {
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -1.8px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 53px;
}

.section01 .swiper-slide .slide_text_wr p {
  font-size: 18px;
  line-height: 29px;
  color: #fff;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid #fff;
  border-radius: 100%;
  background-size: auto;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("../image/arrow_prev.png");
  left: 32px;
  right: auto;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("../image/arrow_next.png");
  right: 32px;
  left: auto;
}

.scroll {
  position: absolute;
  bottom: 68px;
  left: 50%;
  z-index: 1;
}

.scroll span {
  font-size: 13px;
  color: #fff;
}

.scroll ul {
  width: 22px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 50px;
  margin: 0 auto 9px;
}

.scroll ul li {
  width: 2px;
  height: 11px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  animation: 2s infinite scroll_wheel;
}

@keyframes scroll_wheel {
  from {
    margin-top: 20%;
  }

  to {
    margin-top: 90%;
  }
}

/*sec02*/
.main_sub_tit {
  font-size: 21px;
  margin-bottom: 21px;
  color: #8d8d8d;
}

.main_tit {
  font-size: 55px;
  letter-spacing: -1.67px;
  margin-bottom: 39px;
}

#eng .main_tit {
  margin-bottom: 24px;
}

.main_tit strong {
  color: var(--point-color);
}

p.txt {
  font-size: 18px;
  line-height: 35px;
  color: #8d8d8d;
}

.section02 .sect02_box {
  width: 50%;
  height: 490px;
  overflow: hidden;
}

.section02 .sect02_box:first-child {
  text-align: center;
  line-height: 490px;
}

.section02 .sect02_box:last-child {
  margin-left: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section02 .navi {
  display: flex;
  align-items: center;
}

.section02 .mySwiper2 .swiper-slide {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.swiper-button-next2, .swiper-button-prev2 {
  width: 14px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 100%;
  background-size: auto;
  margin-right: 24px;
}

.swiper-button-prev2, .swiper-container-rtl .swiper-button-next2 {
  background: url("../image/arrow_prev2.png")no-repeat;
}

.swiper-button-next2, .swiper-container-rtl .swiper-button-prev2 {
  background: url("../image/arrow_next2.png")no-repeat;
}

.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin-right: 17px;
}

.swiper-pagination-bullet-active {
  background: #313131;
}

/*sect03*/
.section03 {
  background: url("../image/section03_bg.jpg")no-repeat center/cover;
}

.section03 .sect03_box {
  display: flex;
}

.section03 .sect03_item .sect03_item_el {
  margin-top: 204px;
}

.section03 .sect03_item:last-child {
  margin-left: 64px;
  margin-top: 304px;
}

.section03 ul {}

.section03 ul h3 {
  font-size: 25px;
  margin: 18px 0;
}

.section03 ul p {
  line-height: 25px;
  margin-bottom: 20px;
}

.section03 ul .img_box {
  width: 375px;
  height: 424px;
  transition: .5s;
  position: relative;
}

.section03 ul .img_box.bg1 {
  background: url("../image/section03_img01.png");
  background-size: 100%;
  background-position: center;
}

.section03 ul .img_box.bg2 {
  background: url("../image/section03_img03.png");
  background-size: 100%;
  background-position: center;
}

.section03 ul .img_box.bg3 {
  background: url("../image/section03_img02.png");
  background-size: 100%;
  background-position: center;
}

.section03 ul .img_box::before {
  background: #313131;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  opacity: .0;
  transition: .5s;
}

.section03 ul:hover .img_box::before {
  opacity: .3;
}

.section03 ul:hover .img_box {
  background-size: 110%;
}

/*footer*/
.footer .f_custmor {
  background: var(--point-color);
  height: 100px;
}

.footer .f_custmor .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.footer .f_custmor .item1 span {
  font-weight: 600;
}

.footer .f_custmor .item1 .tit {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  margin-right: 48px;
}

.footer .f_custmor .item1 .tit::after {
  content: '';
  position: absolute;
  top: 5px;
  right: -24px;
  width: 2px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
}

.footer .f_custmor .item1 .call {
  font-size: 24px;
  color: #fff;
}

.footer .f_custmor .item2 {
  display: flex;
  align-items: center;
}

.footer .f_custmor .item2 p {
  font-size: 18px;
  color: #fff;
  margin-right: 50px;
}

#eng.footer .f_custmor .item2 p {
  font-size: 17px;
  margin-right: 30px;
}

.footer .f_custmor .item2 li {
  width: 130px;
  height: 46px;
  font-size: 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 46px;
}

.footer .f_info {
  background: #2e3335;
}

.footer .f_info .inner * {
  font-size: 13px;
  font-weight: 500;
}

.footer .f_info .inner {
  display: flex;
  padding: 68px 0;
  justify-content: space-between;
}

.footer .f_info .address span {
  color: #5c5e5f;
  margin-right: 11px;
}

.footer .f_info .address p {
  color: #aaaaaa;
}

.footer .f_info .address li {
  line-height: 24px;
}

.footer .f_info .address .item1 {
  display: flex;
}

#eng.footer .f_info .address .item1 {
  flex-wrap: wrap;
  width: 830px;
}

.footer .f_info .address .item1 p {
  margin-right: 30px;
}

.footer .f_info .address .item3 {
  margin-left: 40px;
}

#eng.footer .f_info .address .item3 {
  margin-left: 57px;
}

.footer .f_info .address .item4 {
  margin-top: 23px;
}

.footer .f_info .address .item4 strong {
  color: rgba(219, 32, 47, 0.5);
}

.footer .adm {
  background: #5c5e5f;
  border-radius: 5px;
  color: #2e3335;
  padding: 1px 4px;
  margin-left: 8px;
}

/**/
#sub .inner {
  text-align: center;
}

#sub_cont {
  padding: 131px 0 160px;
}

.sub_tit_wr {
  position: relative;
  height: 371px;
  z-index: 1;
}

.sub_tit_wr.bg01 {
  background: url("../image/sub_tit_bg01.jpg")no-repeat center/cover;
}

.sub_tit_wr.bg02 {
  background: url("../image/sub_tit_bg02.jpg")no-repeat center/cover;
}

.sub_tit_wr.bg03 {
  background: url("../image/sub_tit_bg03.jpg")no-repeat center/cover;
}

.sub_tit_wr.bg04 {
  background: url("../image/sub_tit_bg04.jpg")no-repeat center/cover;
}

.sub_tit_wr .sub_tit {
  font-size: 45px;
  color: #fff;
  padding-top: 173px;
  padding-left: 34px;
  text-align: left;
}

.sub_tit_wr .sub_gnb {
  height: 69px;
  border-radius: 50px;
  background-color: #1b1b1b;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 96px;
}

.sub_tit_wr .sub_gnb li {
  margin-right: 98px;
  color: #fff;
  font-weight: 500;
  height: 100%;
  line-height: 69px;
}

.sub_tit_wr .sub_gnb li.on {
  border-bottom: 5px solid var(--point-color);
}

.sub_tit_wr .sub_gnb li:last-child {
  margin-right: 0;
}

.cont_tit_wr h3 {
  font-size: 21px;
  color: var(--point-color);
  text-transform: uppercase;
}

.cont_tit_wr h1 {
  font-size: 50px;
  margin-bottom: 102px;
}

/*ceo*/
.ceo_wr {
  text-align: left;
}

.ceo_wr img {
  display: block;
}

.ceo_wr .flex_wrap:first-child {
  height: 336px;
}

.ceo_wr .flex_wrap:first-child .txt {
  background: #1b1b1b;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.b_tit {
  font-size: 35px;
  line-height: 51px;
  font-weight: 600;
  color: #fff
}

.ceo_wr .flex_wrap h3 {
  font-size: 20px;
  color: #fff;
}

.ceo_wr .flex_wrap .line {
  width: 2px;
  height: 36px;
  background: #db202f;
  margin-bottom: 5px;
}

.ceo_wr .flex_wrap .ceo_img {
  width: 28%;
}

.ceo_wr .flex_wrap:last-child .ceo_img {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 44px 30px;
}

.ceo_wr .flex_wrap:last-child {
  border-bottom: 2px solid #1b1b1b
}

.ceo_wr .flex_wrap .txt {
  width: 72%;
  padding: 44px;
}

/*history*/
.history_bg {
  background: url("../image/company02_bg.jpg");
  width: 100%;
  height: 250px;
}

.company02 .flex_wrap {
  justify-content: center;
}

.company02 .flex_wrap .main_tit {
  font-size: 40px;
  text-align: left;
  margin-right: 150px;
  padding-top: 50px;
}

.his_cont {
  border-left: 1px solid #ddd;
  padding: 50px 0 0 50px;
}

.his_cont ul {
  display: flex;
  margin-bottom: 40px;
}

.his_cont li.year {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  width: 70px;
}

.his_cont li.year::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border: 3px solid #b8b8b8;
  border-radius: 100%;
  top: 13px;
  left: -56px;
  background: #fff;
}

.his_cont li.txt {
  text-align: left;
  margin-left: 30px;
}

.his_cont li.txt span {
  width: 30px;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  margin-right: 20px;
  font-family: 'NotoSans KR'
}

.his_cont li.txt p {
  line-height: 32px;
}

/**/
.company03 {
  background: url("../image/company03_bg.jpg")no-repeat bottom/cover;
}

/**/
.product .flex_wrap {
  margin-bottom: 100px;
}

.product .flex_wrap:last-child {
  margin-bottom: 0;
}

.product .flex_wrap .b_img {
  width: calc(35% - 5px);
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product .flex_wrap .s_img {
  width: calc(65% - 5px);
  display: flex;
  flex-wrap: wrap;
}

.product .flex_wrap .s_img ul:nth-child(4n) {
  margin-right: 0;
}

.product .flex_wrap .s_img ul {
  width: calc(25% - 8px);
  margin-right: 10px;
}

.product .flex_wrap .s_img ul .img {
  background: #f3f3f3;
}

.product .flex_wrap .s_img ul .txt {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 10px;
}

.pro_tit {
  font-size: 28px;
  text-align: left;
  padding: 9px 23px;
  border-radius: 50px;
  background: #313131;
  color: #fff;
  margin-bottom: 10px;
}

/**/
.pro02_img00 {
  margin-bottom: 40px;
}

.product02 .flex_box {
  width: calc(25% - 10px);
}

.product02 .flex_box ul {
  padding: 20px;
  border-radius: 40px;
}

.product02 .flex_box ul.tit_box {
  background: #313131;
  margin-bottom: 10px;
}

.product02 .flex_box ul.tit_box li {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.product02 .flex_box ul.cont {
  border: 2px solid #313131;
  background: #fff;
  height: 380px;
}

.product02 .flex_box ul.cont li {
  border-bottom: 1px solid #e9eaec;
  padding: 20px 0;
  font-weight: 600;
  line-height: 1.5;
}

.product02 .flex_box ul.cont li:last-child {
  border-bottom: 0;
}

.product02 .flex_box ul.cont span {
  font-weight: 400;
  color: #8d8d8d;
}

/**/
.product.product02_01 .flex_wrap .s_img {
  width: 100%;
}

.product.product02_01 .flex_wrap .s_img img {
  display: block;
}

.product.product02_01 .flex_wrap .s_img ul .txt {
  margin-bottom: 30px;
}

/**/
.product.customer .flex_wrap .s_img {
  width: 100%;
}

.product.customer .flex_wrap .s_img ul {
  margin-bottom: 10px;
}

.product.customer .flex_wrap .s_img img {
  display: block;
  margin: 0 auto;
}

/*문의*/
.support_wr {
  height: 611px;
  background: url(../image/support_bg.jpg)no-repeat center / cover;
  background-position: 0 60px;
  display: flex;
  flex-direction: row-reverse;
}

.support_wr .support_box {
  width: 558px;
  background: linear-gradient(-24deg, #ff414b, #700d1b);
  height: fit-content;
  padding: 100px 50px;
  margin-right: 56px;
  filter: drop-shadow(8px 10px 9px rgba(226, 1, 33, .3));
  text-align: left;
}

.support_wr .support_box .txt {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.support_wr .support_box dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
}

.support_wr .support_box dt {
  width: 40%;
  color: var(--white-color);
  font-weight: 500;
}

.support_wr .support_box dd {
  width: 60%;
  color: #eee;
  font-weight: 300;
  font-family: var(--pop-font);
  letter-spacing: 0;
}

.support_wr .support_box p {
  width: 100%;
  color: var(--white-color);
  font-weight: 500;
  margin-bottom: 50px;
}

.support_wr .support_box .sub_call dt {
  color: #eee;
}

.support_wr .support_box .sub_call dt span {
  vertical-align: sub;
  color: #fff;
  margin-right: 8px;
}

.support_wr .support_box .sub_call>dt {
  line-height: 50px;
  border-bottom: 1px solid rgba(225, 225, 225, 0.5);
}

.support_wr .support_box .sub_call>dd {
  line-height: 50px;
  border-bottom: 1px solid rgba(225, 225, 225, 0.5);
}

.support_wr .support_box .sub_call .sub_call_eng {
  width: 100%;
}

.support_wr .support_box .sub_call .sub_call_eng .estimate {
  width: 100%;
  padding-top: 12px;
}

.support_wr .support_box .sub_call .sub_call_eng dd {
  border-bottom: 1px solid rgba(225, 225, 225, 0.5);
  width: 100%;
  padding: 6px 0 14px 32px;
}
