@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');


body,html{
    overflow-x: hidden;
}

.wrap{
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}
/*퀵메뉴*/
.qucik{
    position: fixed;
    right: 50%;
    bottom: 50%;
    transform: translate(614px,350px);
    z-index: 11;
}
.qucik .call{
    width: 180px;
    cursor: pointer;
    position: absolute;
    right: 84px;
    transform: translateX(50%);
}
.qucik .call .call_bg{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e60012;
    position: absolute;
    right: 0;
    top: 0;
}
.qucik .call:hover .call_bg{
    width: 180px;
    border-radius: 180px;
    transition: all 0.3s;
}
.qucik .call img{
    width: 30px;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 11.5px;
}
.qucik .call p{
    position: absolute;
    left: 16px;
    top: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 46px;
    color: #fff;
    opacity: 0;
}
.qucik .call:hover p{
    opacity: 1;
    transition: all 0.4s;
}

.qucik2{
    position: fixed;
    right: 50px;
    bottom: 50px;
    width: 50px;
    height: 76px;
    z-index: 11;
}
.qucik2 .call{
    width: 180px;
    cursor: pointer;
    position: absolute;
    right: 84px;
    transform: translateX(50%);
}
.qucik2 .call .call_bg{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e60012;
    position: absolute;
    right: 0;
    top: 0;
}
.qucik2 .call img{
    width: 30px;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 11.5px;
}
.qucik2 .top{
    width: 50px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-16px);
}
.qucik2 .top img{
    display: block;
    float: left;
}
.qucik2 .top p{
    float: left;
    line-height: 1.4;
    color: #ccc;
}

/*헤더 스타일*/
header{
    width: 100%;
    height: 60px;
    position: fixed;
    z-index: 10;
    background-color: #fff;
}
header h1{
    width: 154px;
    float: left;
    margin-top: 10px;
}
header h1 a{
    display: block;
    width: 100%;
    height: 100%;
}
header h1 a img{
    width: 100%;
}
nav{
    float: right;
}
nav ul.gnb{
    
}
nav ul.gnb>li{
    float: left;
    margin-left: 60px;
    position: relative;
}
nav ul.gnb>li>a{
    font-size: 18px;;
    font-weight: 500;
    line-height: 60px;
    color: #333;
}
nav ul.gnb>li>p{
    position: absolute;
    right: 0;
    margin-right: -10px;
    bottom: 22px;
    width: 6px;
    height: 6px;
    background-color: #e60012;
    border-radius: 50%;
    display: none;
}
nav ul.gnb>li:hover>p,nav ul.gnb>li.on>p{
    display: block;
}
nav ul.gnb>li>ul.sub{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    width: 180%;
    display: none;
}
nav ul.gnb>li:hover>ul.sub{
    display: block;
}
nav ul.gnb>li>ul.sub>li{
    position: relative;
    width: 100%;
    height: 40px;
}
nav ul.gnb>li>ul.sub>li>a{
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    text-align: center;
    border-bottom: 3px solid #fff;
    box-sizing: border-box;
}
nav ul.gnb>li>ul.sub>li:hover>a{
    border-bottom: 3px solid #e60012;
}

/*헤더 스타일 끝*/


footer {
    width: 100%;
    padding: 50px 0;
    box-sizing: border-box;
    background: #111;
    position: absolute;
    left: 0;
    bottom: 0;
}

footer .f_logo {
    float: left;
}

footer p {
    float: right;
    text-align: left;
    font-size: 16px;
    color: #ccc;
}














