
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap'); /* font-family: 'Poppins', sans-serif; */

:root {
  --color-primary:#2A3890;
}

/* common */
html {font-family: 'Noto Sans KR', sans-serif; scroll-behavior: smooth;}

img { 
    image-rendering: -moz-auto;
    image-rendering: -o-auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -ms-interpolation-mode: nearest-neighbor;
    /* image-rendering: crisp-edges; */
}


.inner {
  max-width: 1240px;
  min-width: 1240px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {max-width: 150px; min-width: 150px; position: relative; z-index: 1; overflow: hidden;}
.logo h1 { position: absolute; opacity: 0; left: 100%;}

.menu-warp {
  max-width: 628px;
  height: 50px;
  display: flex;
}
.menu-warp  li {
  flex: 1;
  border: 1px solid var(--color-primary);
  background-color: #fff;
}
.menu-warp  li:hover {
  background-color: var(--color-primary);
}
.menu-warp li:hover > a,
.menu-warp li:hover > div 
{
  color: #fff;
}
.menu-warp > li:nth-of-type(1) {
  margin-right: -8px;
}
.menu-warp > li:nth-of-type(2) {
  transform: skew(-15deg);
  overflow: hidden;
}
.menu-warp > li:nth-of-type(2) span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  display: flex; justify-content: center; align-items: center;
  transform: translate(-50%, -50%) skew(15deg);
}
.menu-warp > li:nth-of-type(3) {
  margin-left: -8px;
}
.menu-warp > li a,
.menu-warp > li div {
  display: inline-block;
  color: #2A3890;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu__product__subs {
  display: flex;
  position: fixed;
  left: -195px;
  width: 300%;
  max-width: 628px;
  transform: skew(15deg);
  opacity: 1;
  display: none;
}

.menu__product__subs li { 
  cursor: pointer;
  height: 50px;
  background-color: #F1F3FF;
  border: 1px solid #2a389031;
}
.menu__product__subs li a {
  display: inline-block;
  color: #404040;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}
.menu__product__subs li:nth-of-type(1) {
  margin-right: -7px;
}
.menu__product__subs li:nth-of-type(2),
.menu__product__subs li:nth-of-type(3)  {
  transform: skew(-15deg);
}
.menu__product__subs li:nth-of-type(2) span,
.menu__product__subs li:nth-of-type(3) span {
  width: fit-content;
}
.menu__product__subs li:nth-of-type(4) {
  margin-left: -7px;
}
.menu-warp > li:nth-of-type(2):hover .menu__product__subs {
  opacity: 1; transition: .65s ;
  display: flex;
}
.menu-warp > li:nth-of-type(2):hover  {
  overflow: unset;
}
.menu-warp > li:nth-of-type(2).active .menu__product__subs {
  opacity: 1; transition: .65s ;
  display: flex;
}
.menu-warp > li:nth-of-type(2).active {
  overflow: unset;
}

/* index Page */
.index {
  background: center/cover no-repeat url(../images/index-bg.png);
  max-width: 1920px;
  height: 100%;
  padding-bottom: 120px;
  margin: 0 auto;

}
.index .inner {padding-top: 60px;}

.index .logo {
  margin-bottom: 61px;
}
.index .menu-warp {
  margin-bottom: 67px;
}
.index main .main__tit {
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-weight: 600;
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 10px;
}
.index main .main__tit span{
  font-weight: 700;
  color: var(--color-primary);
}

.index main .main__des {
  color: #333;
  font-size: 20px;
  font-weight: 300;
}
.index main .main__des strong{
  font-weight: 500;
  font-size: 20px;
}

.product-intro {
  display: inline-block;
  position: relative;
  margin-top: 334px;
}

.product-intro::before {
  content: "";
  display: inline-block;
  background-color: #404040;
  width: 61px;
  height: 2px;
  transition: .55s;
}
.product-intro::after {
  content: "";
  display: inline-block;
  background-color: #404040;
  width: 15px;
  height: 2px;
  transform: rotate(30deg);
  position: absolute;
  right: 0%;
  bottom: 35%;
}
.product-intro:hover::before,
.product-intro:hover::after {
  background-color: var(--color-primary);
}
.product-intro:hover::before {
  width: 150px;
}
.fadein-up {
  opacity: 0;
  transition: .85s;
  transform: translateY(30px);
}


/* common-page */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:#fff;
  z-index: 99;
}

.page-header-inner {
  max-width: 1240px;
  min-width: 1240px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-header-inner nav {
  width: 100%;
  max-width: 628px;
  min-width: 628px;
  align-self: flex-end;
}
.page-main {
  background-color: #F7F7F7;
  width: 100%; 
  height: 100%;
  margin-top: 80px;
  /* padding: 40px 0 80px; */
  padding-bottom: 80px;
  min-width: 1240px;
}
.page-main .inner {
  padding: 0;
}

.top-arrow {
  position: fixed;
  bottom: 50px;
  right: 107px;
  width: 60px;
  height: 60px;
  border: 1px solid #2a389020;
  background-color: #fff;
  border-radius: 100%;
  transition: all 350ms;
}
.top-arrow a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}

.top-arrow a::before,
.top-arrow a::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  background-color: var(--color-primary);
}
.top-arrow a::before {
  transform: rotate(-45deg) translate(-10px, -3px);
  top: 39%;
}
.top-arrow a::after {
  transform: rotate(45deg) translate(-2.5px, 0px);
}

.top-arrow:hover {
  background-color: var(--color-primary);
}
.top-arrow:hover a::before,
.top-arrow:hover a::after {
  background-color: #fff;
}

/* company */
.company .inner {
  padding-top: 40px;
}
.company .sec1 {
  margin-bottom: 20px;
}

/* product */
.product .sec {
  margin-bottom: 20px;
  position: relative;
}

/* .product .sec .tag {
  display: inline-block;
  position: absolute;
  left: 4px;
  top: -15px;
  width: 200px;
  height: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  background-color:var(--color-primary);
  text-align: center;
  line-height: 30px;
  transform: skew(-15deg);
} */

/* .product .sec .tag  span {
  display: inline-block;
  transform: skew(15deg);
} */
.head-tap {
  position: sticky;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #F7F7F7;
    top: 80px;
}
.head-tap__tit {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-tap__tit::after, 
.head-tap__tit::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 13.25px;
  background-color: var(--color-primary);
  transform: skew(-15deg) translateY(50%);
}

.head-tap__tit h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 23px;
  margin-left: 31px;
  margin-right: 31px;
}
.head-tap .menu-warp {
  max-width: 100%; height: 60px;
  position: relative;
  z-index: 20;
  /* top: 80px; */
}
.head-tap .menu-warp li {
  flex: 1;
}

.head-tap .menu-warp::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: var(--color-primary);
}

.head-tap .menu-warp > li:nth-of-type(3) {
  transform: skew(-15deg);
  overflow: hidden;
}
.head-tap .menu-warp > li:nth-of-type(3) span {
  position: absolute; 
  top: 50%;
  left: 50%;
  width: 100%;
  display: flex; justify-content: center; align-items: center;
  transform: translate(-50%, -50%) skew(15deg);
}

.head-tap .menu-warp > li:nth-of-type(4) {
  margin-left: -8px;
}

.head-tap .menu-warp > li a, .head-tap .menu-warp > li div {
  font-size: 20px;
}

.head-tap .menu-warp > li:hover a, .head-tap .menu-warp > li:hover div {
  color: #fff;
}

.head-tap .menu-warp li {
  border-bottom: unset;
}

/* customer Page */
.customer .inner {
  padding-top: 40px;
}
.customer .sec1 {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 227px;
  padding: 50px 20px;
}
.customer .sec1 h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
}
.customer .sec1 h2 span {
  font-weight: 500;
}
.customer .sec1 a {
  display: inline-block; 
  border: 1px solid var(--color-primary);
  padding: 12px 30px 14px;
  border-radius: 30px;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-primary);
}
.customer .sec1 a::after {
  content: "";
  display: inline-block;
  width: 19.66px;
  height: 20.39px;
  background: center/cover no-repeat url(../images/airplane.svg);
  position: relative;
  bottom: -4px;
  top: 2px;
  margin-left: 10px;
}

.customer .sec1 a:hover {
  border: 1px solid var(--color-primary);
  color: #fff;
  background-color: var(--color-primary);
}

.customer .sec1 a:hover::after {
  filter: brightness(0) invert(1);
}
.customer .sec2 {
  background-color: #E9EBF7;
  width: 100%;
  height: 100%;
  padding: 30px 50px 60px 50px;
}
.customer .sec2 img {
  margin-left: -11px;
  max-width: 102.6%;
}
.map {
  padding-top: calc(481 / 1180 * 100% );
  background-color: aquamarine;
}

.map__address {
  width: 100%;
  background-color: var(--color-primary);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.map__address a {
  display: inline-block; width: 100%; height: 100%;   
  color: #fff; font-size: 14px; font-weight: 500;
}
.map__address  a span { font-size: 16px; margin-right: 10px;}