@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
/* font-family: 'Noto Sans KR', sans-serif; */
/* Light 300 */
/* Regular 400 */
/* Medium 500 */
/* Bold 700 */
/* Black 900 */

/* scroll Event */
.ani {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
.ani-L {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s;
}
.ani-R {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s;
}

.ani-in {
  opacity: 1;
  transform: translateY(0);
}
.ani-in-L {
  opacity: 1;
  transform: translateX(0);
}
.ani-in-R {
  opacity: 1;
  transform: translateX(0);
}

.t-delay0_1 {
  transition-delay: 0.1s;
}
.t-delay0_2 {
  transition-delay: 0.2s;
}
.t-delay0_3 {
  transition-delay: 0.3s;
}
.t-delay0_4 {
  transition-delay: 0.4s;
}
.t-delay0_5 {
  transition-delay: 0.5s;
}
.t-delay0_6 {
  transition-delay: 0.6s;
}
.t-delay0_7 {
  transition-delay: 0.7s;
}
.t-delay0_8 {
  transition-delay: 0.8s;
}
.t-delay0_9 {
  transition-delay: 0.9s;
}
.t-delay1 {
  transition-delay: 1s;
}

html {
  font-family: "Noto Sans KR", sans-serif;
}
body {
  color: #000;
}
#wrap {
  width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
}
section {
  position: relative;
  overflow: hidden;
}
a {
  text-decoration: none;
  color: #000;
}

/* header */
.header{
  width: 100%;
  height: 18.1vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background: white;
}
.header .inner{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .inner .logo{
  width: 44.4444vw;
  /* margin-left: 3vw; */
}
.header .inner .logo a{
  width: 100%;
}
.header .inner .logo a img{
  width: 100%;
  margin-left: 5.56vw;
}
.header-cont{
  width: 32%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-cont .call{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #004ea2;
}
.header-cont .call img{
  width: 30%;
}
.header-cont .call,
.header .inner .logo,
.header-cont .menu{
  position: relative;
  z-index: 10000;
}
.header-cont .menu{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.header-cont .menu span{
  width: 4.5vw;
  height: 0.56vw;
  position: absolute;
  background: #004ea2;
  transition: 0.3s;
}
.header-cont .menu span:nth-child(1){
  top: 40%;
}
.header-cont .menu span:nth-child(2){
  top: 50%;
}
.header-cont .menu span:nth-child(3){
  top: 50%;
}
.header-cont .menu span:nth-child(4){
  top: 60%;
}

.header-cont .menu.active span:nth-child(1),
.header-cont .menu.active span:nth-child(4){
  width: 0;
  opacity: 0;
}
.header-cont .menu.active span:nth-child(2){
  transform: rotate(45deg);
}
.header-cont .menu.active span:nth-child(3){
  transform: rotate(-45deg);
}
.meun-bar{
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: 0.3s;
  opacity: 0;
  background: white;
}
.meun-bar.active{
  transform: translateX(0);
  opacity: 1;
}
.menu-box{
  width: 100%;
  margin-top: 18vw;
}
.menu-box li{
  width: 100%;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.menu-box li:nth-child(1){
  border-top: 1px solid rgba(204, 204, 204, 0.5);
}
.menu-box li a{
  width: 100%;
  height: 100%;
  padding: 5vw 8vw;
  font-size: 4vw;
  font-weight: 600;
  display: block;
}
.menu-box .link {
  cursor: pointer;
  display: block;
  padding: 4vw 10vw;
  color: #4D4D4D;
  font-size: 4.5vw;
  font-weight: 700;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  position: relative;
  transition: all 0.4s ease;
}
.menu-box li:nth-child(1) .link {
  /* border-top: 1px solid #ccc; */
}
.submenu {
  display: none;
  background: #09553f;
}
.submenu li {
  width: 100%;
  height: 100%;
  /* border-bottom: 1px solid #fff; */
}
.submenu li a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #d9d9d9;
  font-size: 3.8vw;
  padding: 4vw 4vw 4vw 11vw;
  transition: all 0.25s ease;
  
  background: #005064;
}

/* .submenu a:hover {
  background: #004ea2;
  color: #FFF;
} */
/* footer */
.footer{
  width: 100%;
  height: 37.78vw;
  background: #ededed;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer .desc{
 /*  width: 90%; */
 width: 52%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: 1px solid black; */
}
.footer .desc img{
  width: 24.72vw;
  margin: 0;
}
.footer img{
  width: 64.86vw;
  margin: 5.56vw 0 0;
}
.footer a{
  width: 23.19vw;
  margin-top: 2.1vw;
}
.footer a img{
  width: 100%;
  margin: 0;
}