@charset "utf-8";

#contents {margin-top: -90px;}
#contents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#contents p {margin: 0;}
#contents > section {padding: 80px 0;}
#contents .title {
    margin-bottom: 50px;
    text-align: center;
}
#contents .title h2 {
    font-size: 30px;
    margin: 0 0 10px;
    font-weight: bold;
}
#contents .title p {
    font-size: 14px;
    word-break: keep-all;
}

#contents #visual {
    background: url(/img/custom/main_visual_bg.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 450px;
    position: relative;
    padding: 0;
}
#contents #visual::before {
    content: "";
    background: url(/img/custom/main_visual_wave.png) no-repeat center;
    background-size: cover;
    width: 779px;
    height: 398px;
    display: block;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
#contents #visual .txt {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 30px);
    color: #fff;
    text-align: center;
    z-index: 2;
}
#contents #visual .txt i {
    font-family: "Montserrat";
    font-size: 30px;
    font-weight: 100;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
}
#contents #visual .txt h2 {
    font-size: 50px;
    margin: 0 0 30px;
    font-weight: bold;
    line-height: 1;
}
#contents #visual .txt p {
    font-size: 16px;
    font-weight: 300;
}
#contents #visual .txt .moreBtn {
    font-size: 14px;
    border: 1px solid #fff;
    height: 42px;
    line-height: 38px;
    border-radius: 42px;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 50px;
    color: #fff;
    padding: 0 50px;
}
#contents #visual .txt .moreBtn:hover {
    background: #fff;
    color: #1694d4;
}

#contents #work {text-align: center;}
#contents #work .moreBtn {
    font-size: 14px;
    border: 1px solid #1694d4;
    height: 42px;
    line-height: 39px;
    border-radius: 42px;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 50px;
    color: #1694d4;
    padding: 0 50px;
}
#contents #work .moreBtn:hover {
    background: #1694d4;
    color: #fff;
}

#contents #contact {background: #f5f5f5;}
#contents #contact .boxWrap {overflow: hidden;}
#contents #contact .boxWrap > div {
    float: left;
    background: #fff;
    width: calc((100% - 20px)/2);
    margin-right: 20px;
    padding: 50px;
    min-height: 358px;
}
#contents #contact .boxWrap > div:last-child {margin-right: 0;}
#contents #contact .boxWrap .right {text-align: center;}
#contents #contact .boxWrap .left > div {
    margin-bottom: 44px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 44px;
    position: relative;
}
#contents #contact .boxWrap .left > div:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
#contents #contact .boxWrap .right > div {margin-bottom: 25px;}
#contents #contact .boxWrap .left h3 {
    font-family: "Noto Sans KR";
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px;
}
#contents #contact .boxWrap .left .mapBtn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    border: 1px solid #1694d4;
    color: #1694d4;
    display: block;
    height: 42px;
    line-height: 39px;
    border-radius: 42px;
    text-align: center;
    padding: 0 20px;
    transition: all .3s;
}
#contents #contact .boxWrap .left .mapBtn b::after {
    content: "";
    background: url(/img/custom/map.svg) no-repeat center;
    background-size: cover;
    width: 10px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -2px;
}
#contents #contact .boxWrap .left .mapBtn:hover {
    background: #1694d4;
    color: #fff;
}
#contents #contact .boxWrap .left .mapBtn:hover b::after {
    background: url(/img/custom/map_w.svg) no-repeat center;
    background-size: cover;
}
#contents #contact .boxWrap .right h3 {
    font-family: "Noto Sans KR";
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 10px;
}
#contents #contact .boxWrap .left p {
    font-size: 16px;
    font-weight: 500;
    word-break: keep-all;
    max-width: 270px;
    display: inline-block;
}
#contents #contact .boxWrap .right p {
    font-family: "Montserrat";
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}
#contents #contact .boxWrap .right p.telNumber {color: #1694d4;}
#contents #contact .boxWrap .right .moreBtn {
    font-size: 14px;
    border: 1px solid #1694d4;
    height: 42px;
    line-height: 39px;
    border-radius: 42px;
    transition: all 0.3s;
    display: inline-block;
    color: #1694d4;
    padding: 0 50px;
}
#contents #contact .boxWrap .right .moreBtn:hover {
    background: #1694d4;
    color: #fff;
}

@media all and (max-width: 991px) {
    #contents {margin-top: -60px;}
}
@media all and (max-width: 767px) {
    #contents > section {padding: 50px 0;}
    #contents .title {margin-bottom: 30px;}
    #contents .title h2 {font-size: 24px;}
    #contents #visual::before {width: 100%;}
    #contents #visual .txt i {font-size: 24px;}
    #contents #visual .txt h2 {font-size: 36px;}
    #contents #visual .txt .moreBtn {margin-top: 30px;}
    #contents #work .moreBtn {margin-top: 30px;}
    #contents #contact .boxWrap > div {
        float: none;
        width: 100%;
        margin: 0 0 15px;
        padding: 30px;
        min-height: auto;
    }
    #contents #contact .boxWrap > div:last-child {margin-bottom: 0;}
    #contents #contact .boxWrap .left {text-align: center;}
    #contents #contact .boxWrap .left > div {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    #contents #contact .boxWrap .left h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    #contents #contact .boxWrap .left p {
        font-size: 14px;
        max-width: none;
    }
    #contents #contact .boxWrap .left .mapBtn {
        position: relative;
        top: inherit;
        right: inherit;
        margin-top: 15px;
        display: inline-block;
        padding: 0 50px;
        width: auto;
    }
    #contents #contact .boxWrap .right p {font-size: 16px;}
}