@import url(font.css);
@import url(reset.css);


/* html {
    scroll-behavior: smooth;
} */

.centerbox {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 헤더 */

header .centerbox {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

header{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background:#fff;
  border-bottom:1px solid #eee;
}

header h1 {
    display: flex;
    align-items: center;
}

header nav {
    display: flex;
    text-align: center;
    align-items: center;
}

header nav .gnb {
    display: flex;
    gap: 70px;
}

header nav .gnb li a {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    width: 100%;
    height: 100%;
}

/* header nav .gnb li a:hover {
} */

header nav .gnb li {
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
}

header nav .gnb li:before {
    /* content: "";
    position: absolute;
    height: 2.2px;
    background: #093E6D;
    opacity: 60%;
    left: 0;
    bottom: -10px;
    transition: .5s; */
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #093E6D;
    opacity: .6;
    left: 0;
    bottom: -10px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

header nav .gnb li:hover:before {
    width: 100%;
    transform: scaleX(1)
}

header nav .gnb li.active a {
    color: #093E6D;
    font-weight: bold;
}

header nav .gnb li.active:before {
    width: 100%;
    transform: scaleX(1)
}

.scroll {
    position: absolute;
    right: 5vw;
    top: 90vh;
    z-index: 50;
    display: none;
}

/* 푸터 */

footer {
    margin-top: 150px;
    width: 100%;
    height: 250px;
    background: #171F2A;
    color: #fff;
}

footer .contact {
    display: flex;
    gap: 75px;
    margin-bottom: 32px;
    padding-top: 60px;
}

footer .address {
    line-height: 30px;
}

