@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: var(--font-preten);
    word-break: keep-all;
    line-height: 1;
    font-size: 16px;
}

:root {
    --main-color: #30A4DC;
    --font-preten: "Pretendard Variable", Pretendard, system-ui, sans-serif;
    --font-pop: "Poppins", "Pretendard Variable", Pretendard, system-ui, sans-serif;
    --default-pad: 360px;
    --header-height: 100px;
    --content-pad:40px;
}

body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

p {
    word-break: keep-all;
}

.page-wrap {
    position: relative;
}

.br500{
    display: block;
} 

/*head*/
.header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    padding: 0 var(--default-pad);
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
}

body.all_open .header {
    background-color: transparent;
}

body.all_open .func-btn {
    display: none;
}

.header .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.header .right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header .logo {
    display: block;
    width: 108px;
}

body.all_open .header .logo {
    display: none;
}

.top_nav {
    display: flex;
    align-items: center;
    gap: 60px;
}

.top_nav li {
    position: relative;
    height: var(--header-height);
    display: flex;
    align-items: center;
}


.top_nav li:hover .sub_detps {
    border-radius: 10px;
    background: var(--main-color);
}

.top_nav .main_deps {
    color: #1b1b1b;
    font-size: 18px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: var(--font-poppins);
}

.top_nav .main_deps.sub {
    color: #ffffff;
}

.all_btn {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 9999;
    display: none;
}

.all_btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #111;
    transition-duration: .5s;
    border-radius: 2px
}

.all_btn.sub span {
    background-color: #fff;
}

.all_btn span:nth-child(1) {
    top: 0;
    left: 0
}

.all_btn span:nth-child(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.all_btn span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 60%
}

.all_open .all_btn span:nth-child(1) {
    transform: rotate(45deg) translateY(calc(-50% + 1px));
    top: 50%;
}

.all_open .all_btn span:nth-child(2) {
    opacity: 0
}

.all_open .all_btn span:nth-child(3) {
    transform: rotate(-45deg) translateY(calc(-50% + 1px));
    top: 50%;
    bottom: auto;
    top: 50%;
    width: 100%
}

.top_nav .sub_detps {
    position: absolute;
    top: calc(100% - 23px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    overflow: hidden;
    visibility: hidden;
    transition-duration: .5s;
    opacity: 0;
    padding: 0;
    min-width: 150px;
    height: 1px;
}

.top_nav li:hover .sub_detps {
    padding: 32px 45px;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition-duration: .8s;
}

.top_nav .sub_detps a {
    font-size: 16px;
    color: #fff;
    opacity: .8;
    transition-duration: .5s;
    display: block;
    font-weight: 700;
    white-space: nowrap;
}

.top_nav .sub_detps a:hover {
    opacity: 1;
}

.top_nav .sub_detps a+a {
    margin-top: 20px;
}

body.all_open {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
}

.all_open .header:after {
    display: none
}

.all_open .header .top_nav {
    visibility: hidden;
    opacity: 0;
    transition-duration: .5s
}


.all_nav_are {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition-duration: 1s;
    height: 100vh;
    z-index: 9998;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.all_open .all_nav_are {
    opacity: 1;
    visibility: visible;
    top: 0
}

.all_nav_are .nav_are {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    width: 100%;
    height: 100vh;
    background: rgba(27, 27, 27, .8);
    padding-left: 5%;
}

.nav_are * {
    transition-duration: .5s
}

.nav_are li {
    gap: 45px;
    width: 100%;
}

.nav_are li .main_deps {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.nav_are li .main_deps.open_deps,
.nav_are li .main_deps:hover {
    color: #fff
}

.nav_are li .sub_detps {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.nav_are li .sub_detps a {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    transition-duration: .5s;
    opacity: .6;
    line-height: 120%;
}

.nav_are li .sub_detps a:hover {
    color: #fff;
    opacity: 1
}

.nav_are li .main_deps.open_deps+.sub_detps {
    height: auto;
    visibility: visible;
    opacity: 1;
}

.all_open .all_btn span{
    background-color: #ffff;
}

.all_open .header{
    border-bottom: 0;
}

/*footer*/
.footer {
    position: relative;
    background-color: #fff;
}

.footer-content {
    width: 100%;
    padding: 0 var(--default-pad);
    padding-top: 60px;
    padding-bottom: 70px;
    background-color: #323232;
}

.content-inner{
    display: flex;
    justify-content: space-between;
}

.footer-content .top {
    display: flex;
    align-items: center;
    gap: 40px;
}

.content-inner .top li a{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.content-inner .top li:last-of-type a{
    font-weight: 700;    
}

.content-inner .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.content-inner .bottom > .left > p{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.address {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.address ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.address ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.address ul li .border{
    width: 1px;
    height: 15px;
    background: rgba(221, 221, 221, 0.50);
}

.address ul li span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.address ul li p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.copyright {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;   
}

.customer p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    color: #ffffff;
}

.customer span{
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    color: var(--main-color);
} 





/* content */
.float-list{
    position: fixed;
    right: 0;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    border-radius: 20px 0 0 20px;
    border: 1px solid #E5E5E8;
    background: #FFF;
    border-right: 0;
    padding: 17px 10px;
    gap: 16px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.20);
    z-index: 999;
}

.float-list .border{
    width: 100%;
    height: 1px;
    background-color: #DDD;
}

.float-link{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.float-link .img{
    width: 40px;
    aspect-ratio: 1/1;
    margin-bottom: 10px;
}

.float-link p{
    color: #000;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.page-wrap{
    /* padding-top: calc(var(--header-height) + 40px); */
    padding-bottom: 150px;
    margin-top: 50px;
}

.subpage-wrap{
    margin-top: 80px;
}

.section{
    padding-top: 120px;
}

.container{
    padding: 0 var(--default-pad);
}

.content-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
}

.content-title span{
    display: inline-block;
    margin-bottom: 15px;
    color: var(--main-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 26px */
    display: inline-block;
}

.content-title p{
    margin-top: 30px;
    color: #414141;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 26px */
    letter-spacing: 1px;
}

.content-title p strong{
     color: #444444;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 26px */
}

.content-title h3{
    color: #0B0D0F;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 52px */
    display: inline-block;
}

.content-title h3 strong{
    font-size: 40px;
    font-weight: 800;
}

.content-title h3.point{
    position: relative;
    padding: 4px 16px;
}

.content-title h3.point::after{
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(135deg, #FF7A7A, #FF9A6C);
    z-index: -1;
}

.common-btn{
    display: inline-block;
    padding: 18px 28px;
    background-color: var(--main-color);
    border-radius: 40px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
}

.content-box{
    width: 100%;
    border-radius: 30px;
    border: 1px solid #DDD;
    background: #FFF;
    padding: var(--content-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-box .check{
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    background: #A6CE39;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.content-box p{
    color: #414141;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;    
}

.content-box .check-list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:20px;
    margin-top: 70px;
}

.content-box .check-list span{
    color: #222;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
}

.content-box .check-list .border{
    width: 1px;
    height: 15px;
    background: #DDD;
}

.footer-logo-wrap{
    margin-top: 30px;
    display: flex;
    align-items: center;
}
.footer-logo{
    display: block;
    max-width: 50px;
}

@media screen and (max-width:1620px) {
    :root {
        --default-pad: 15%;
    }
}


@media screen and (max-width:1280px) {
    :root {
        --default-pad: 10%;
        --content-pad:30px;
    }
    .section{
        padding-top: 100px;
    }
    .common-btn{
        padding: 14px 24px;    
        font-size: 16px;
    }
    .page-wrap{
        padding-bottom: 120px;
    }
    .content-title{
        margin-bottom: 50px;
    }
    .content-title span{
        font-size: 18px;
    }
    .content-title h3{
        font-size: 30px;
    }
    .content-title h3 strong{
        font-size: 30px;
    }
    .content-title p{
        font-size: 18px;
    }
    .footer-content{
        padding-top: 50px;
        padding-bottom: 60px;
    }
    .content-box .check{
        padding: 10px 24px;
        font-size: 20px;
    }
    .content-box .check-list{
        margin-top: 60px;
        gap: 15px;
    }
    .content-box .check-list span{
        font-size: 20px;
    }
    
}

@media screen and (max-width:991px) {
    :root {
        --default-pad: 5%;
    }
    .section{
        padding-top: 80px;
    }
    .float-list{
        padding: 10px 6px;
        gap: 10px;
        bottom: 5vh;
    }
    .float-link .img{
        width: 30px;
    }
    .float-link p{
        font-size: 10px;
    }
}

@media screen and (max-width:768px) {
    :root {
        --default-pad: 5%;
        --header-height:80px;
        --content-pad:20px;
    }
    .header .logo{
        max-width: 86px;
    }
    .common-btn{
        padding: 12px 20px;    
        font-size: 14px;
    }
    .header{
        height: var(--header-height)
    }
    .top_nav{
        display: none;
    }
    .all_btn{
        display: block;
    }
    .page-wrap{
        margin-top: 40px;
        padding-bottom: 100px;
    }
    .float-link .img{
        width: 24px;
    }
    .content-title{
        margin-bottom: 40px;
    }
    .content-title span{
        font-size: 16px;
    }
    .content-title h3{
        font-size: 24px;
    }
    .content-title h3 strong{
        font-size: 24px;
    }
    .content-title p{
        font-size: 16px;
    }
    .content-inner{
        flex-direction: column-reverse;
    }
    .footer-content .customer{
        text-align: left;
    }
    .footer-content{
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .footer-content .top{
        margin-top: 20px;
    }
    .content-inner .top li a{
        font-size: 14px;
    }
    .content-inner .bottom > .left > p{
        font-size: 14px;
    }
    .address ul li span{
        font-size: 14px;
    }
    .address ul li p{
        font-size: 14px;
    }
    .copyright{
        font-size: 12px;
    }
    .sub-title{
        margin-bottom: 60px;
    }
    .sub-title h3{
        font-size: 24px;
    }
    .sub-title p{
        font-size: 16px;
        margin-top: 16px;
    }
    .content-box .check{
        padding: 8px 20px;
        font-size: 18px;
    }
    .content-box{
        border-radius: 20px;
    }
    .content-box p{
        font-size: 16px;
    }
    .content-box .check-list{
        margin-top: 50px;
        gap: 10px;
    }
    .content-box .check-list span{
        font-size: 18px;
    }
}

@media screen and (max-width:500px){
    .br500{
        display: none;
    }
    .address ul{
        flex-direction: column;
        align-items: flex-start;
    }
    .address ul:last-of-type li:nth-of-type(2){
        display: none;
    }
    
}

@media screen and (max-width:400px){
    .content-box .check-list {
        flex-wrap: wrap;
    }
}


