@charset "utf-8";

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
      opacity: 0;
      margin-top: 30px;
    }

    to {
      opacity: 1;
      margin-top:0;

    }
}




* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif
}


body {
    overflow-x: hidden
}

#wrap {
    width: 1920px;
    margin: 0 auto;
    position: relative;
}

.inner {
    width: 1300px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

a {
    color: #fff;
    text-decoration: none;
}

div {box-sizing: border-box;}

/* 메인 */
#main {
    width: 100%;
    height: 720px;
    background-image: url(../../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.header {
    width: 100%;
    height: 126px;
    position: relative;
}

.logo {
    line-height: 110px;
    position: absolute;
    top: 30px;
    left: 300px;
}

.logo img {
    width: 100%;
    height: 40px;
}



.menu {
    position: absolute;
    margin: 0 auto;
    display: block;
    top: 60px;
    right: 355px;
}

.menu>li {
    float: left;
    width: 150px;
    display: block;
    height: 80px;
    font-size: 1.2rem;font-weight: bold;
}
.menu>li>a:hover {
    color: #E9A410;
    text-decoration: none;
}

.menu>:first-child>a:after {
    display: block;
    width: 40px;
    content: '';
    border-bottom: solid 2px #E9A410;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;

}


.menu>:nth-child(2)>a:after {
    display: block;
    width: 60px;
    content: '';
    border-bottom: solid 2px #E9A410;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.menu>li:nth-child(3)>a:after {
    display: block;
    width: 40px;
    content: '';
    border-bottom: solid 2px #E9A410;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.menu>li>a:hover:after {
    transform: scaleX(1);
}

.login img {
    height: 53px;
    right: 250px;
    top: 50px;
    position: absolute;
    list-style-type: none;
    text-align: center;
}

.menu a:hover:after {
    transform: scaleX(1);
}

.main_t {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 15%;
    color: #fff;
    text-align: center;
}

.main_t>h2 {
    font-size: 35px;
    padding-bottom: 4%;
    font-family: 'GODO M', sans-serif;
    font-weight: lighter;
    animation-name:fade;
    animation-duration: 0.5s;
}

.main_t>h4 {
    font-size: 22.5px;
    padding-bottom: 4%;
    animation-name:fadeUp;
    animation-duration:1s;
    animation-delay: 0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}

.main_t>p {
    font-size: 18px;
    line-height: 35px;
    animation-name:fadeUp;
    animation-duration: 1s;
    animation-delay: 0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}

.header::before {
    content: '';
    display: block;
    clear: both;
}

.logo::after {
    content: '';
    display: block;
    clear: both;
}

.menu::after {
    content: '';
    display: block;
    clear: both;
}

/* 콘택트 */
.box {
    width: 1100px;  
    height: 456px;
    margin:150px auto;
    animation-name:fade;
    animation-duration:0.5s;
    animation-delay: 1.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}

.box_l {
    color: #fff;
    width: 425px;
    background-color: #0C79BE;
    float: left;
    padding: 45px 30px;
}


.box_l>h2 {
    font-size: 35px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: bolder;
}

.box_l div {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

.box_l div>img {
    margin-right: 5px;
    vertical-align: inherit;
}

.phone_n>li>a:hover {
    color: #fff;
    text-decoration: underline;
}

.kakao {margin-bottom: 0;}

ul {
    list-style-type: none;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

ul>li {
    display: block;
    line-height: 25px;
    font-size: 18px;
}

.box_r {
    width: 675px;
    float: right;
}

.box::before {
    content: '';
    display: block;
    clear: both;
}

.box_l::after {
    content: '';
    display: block;
    clear: both;
}

.box_r::after {
    content: '';
    display: block;
    clear: both;
}
