/* css/style.css */

body{
    font-family:'Noto Sans KR',sans-serif;
    color:#222;
    overflow-x:hidden;
}

/* NAVBAR */

.custom-navbar{
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    padding:20px 0;
    transition:0.3s;
}

.logo{
    font-size:30px;
    font-weight:900;
}

.logo i{
    margin-right:8px;
}

.nav-link{
    margin-left:20px;
    font-weight:500;
    color:#222 !important;
}

/* HERO */

.hero{
    position:relative;
    background:url('../images/main_Back.png') center center/cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-inner{
    position:relative;
    z-index:2;
}

.hero-sub{
    font-size:22px;
    margin-bottom:20px;
    letter-spacing:2px;
}

.hero-title{
    font-size:78px;
    font-weight:900;
    line-height:1.25;
    margin-bottom:35px;
}

.hero-desc{
    font-size:20px;
    line-height:1.9;
}

/* SERVICE */

.service-section{
    padding:100px 0;
    background:#f7f5f2;
}

.service-box{
    background:#fff;
    border-radius:30px;
    padding:50px 30px;
    text-align:center;
    height:100%;
    transition:0.3s;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-icon{
    font-size:60px;
    color:#1c2745;
    margin-bottom:25px;
}

.service-box h4{
    font-weight:700;
    margin-bottom:20px;
}

.service-box p{
    color:#666;
    line-height:1.8;
}

/* SECTION */

.section-sub{
    color:#b28c67;
    letter-spacing:3px;
    margin-bottom:15px;
    font-weight:600;
}

.section-title{
    font-size:54px;
    font-weight:900;
    line-height:1.4;
    margin-bottom:30px;
}

.section-desc{
    font-size:18px;
    color:#666;
    line-height:1.9;
}

/* ABOUT */

.about-section{
    padding:140px 0;
}

.about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* WHY */

.why-section{
    padding:120px 0;
    background:#faf8f5;
}

.why-box{
    text-align:center;
    padding:40px 20px;
}

.why-icon{
    font-size:55px;
    color:#1c2745;
    margin-bottom:25px;
}

.why-box h4{
    font-weight:700;
    margin-bottom:15px;
}

/* PORTFOLIO */

.portfolio-section{
    padding:140px 0;
}

.portfolio-card{
    border-radius:30px;
    overflow:hidden;
    background:#fff;
    transition:0.3s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.portfolio-card:hover{
    transform:translateY(-10px);
}

.portfolio-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.portfolio-content{
    padding:35px;
}

.portfolio-content h4{
    font-weight:700;
    margin-bottom:15px;
}

/* CONTACT */

.contact-section{
    padding:140px 0;
    background:#1c2745;
}

.contact-title{
    font-size:60px;
    font-weight:900;
    line-height:1.5;
}

/* FOOTER */

.footer{
    background:#111;
    color:#fff;
    padding:80px 0 40px;
}

.footer-logo{
    font-size:36px;
    font-weight:900;
}

.footer-desc{
    color:#aaa;
    margin-top:10px;
}

.footer p{
    color:#bbb;
}

.footer hr{
    border-color:rgba(255,255,255,0.08);
    margin:40px 0;
}

/* MOBILE */

@media(max-width:991px){

    .hero-title{
        font-size:52px;
    }

    .section-title{
        font-size:40px;
    }

    .contact-title{
        font-size:42px;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:40px;
    }

    .hero-desc{
        font-size:16px;
    }

    .section-title{
        font-size:32px;
    }

    .contact-title{
        font-size:32px;
    }

}

/* 회사소계 hover popup */

.dropdown-hover{
    position:relative;
}

.hover-popup{
    position:absolute;
    top:100%;
    left:0;

    width:220px;

    background:#fff;

    border-radius:20px;

    padding:15px 0;

    box-shadow:0 15px 40px rgba(0,0,0,0.12);

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:all 0.3s ease;

    z-index:999;
}

.hover-popup a{
    display:block;

    padding:14px 25px;

    color:#222;

    text-decoration:none;

    font-weight:500;

    transition:0.2s;
}

.hover-popup a:hover{
    background:#f5f5f5;
    color:#1c2745;
}

/* 마우스 오버시 */

.dropdown-hover:hover .hover-popup{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


/* greeting page */

.sub-visual{
    position:relative;

    height:420px;

    background:url('../images/main_back.png') center center/cover;

    display:flex;
    align-items:center;
    justify-content:center;
}

.sub-visual .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.sub-title-page{
    font-size:64px;
    font-weight:900;
    margin-bottom:20px;
}

.sub-desc-page{
    font-size:20px;
}

.greeting-section{
    padding:120px 0;
}

.greeting-text{
    font-size:18px;
    line-height:2;
    color:#555;
}

.ceo-name{
    margin-top:40px;
    font-size:22px;
    font-weight:500;
}

.ceo-name strong{
    font-size:28px;
    margin-left:10px;
}

@media(max-width:991px){

    .sub-title-page{
        font-size:44px;
    }

}

@media(max-width:767px){

    .sub-title-page{
        font-size:34px;
    }

    .greeting-text{
        font-size:16px;
    }

}


/* MOBILE SECTION */

.location-section{
    padding:120px 0;
    background:#fff;
}

.map-box{
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

#map{
    width:100%;
    height:600px;
}

.location-info{
    margin-top:40px;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.info-box i{
    font-size:28px;
    color:#1c2745;
    margin-top:5px;
}

.info-box h5{
    font-weight:700;
    margin-bottom:10px;
}

.info-box p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/* CONTENT */

@media(max-width:991px){

    #map{
        height:450px;
    }

}

@media(max-width:767px){

    .location-section{
        padding:80px 0;
    }

    #map{
        height:350px;
    }

    .info-box{
        gap:15px;
    }

    .info-box i{
        font-size:22px;
    }

}

/* HISTORY */

.history-section{
    padding:120px 0;
    background:#faf8f5;
}

.history-title-wrap{
    margin-bottom:90px;
}

/* TIMELINE */

.timeline{
    position:relative;
    max-width:1100px;
    margin:0 auto;
}

.timeline::before{

    content:'';

    position:absolute;

    left:160px;
    top:0;
    bottom:0;

    width:2px;

    background:#d9d3cb;
}

/* ITEM */

.timeline-item{
    position:relative;
    display:flex;
    margin-bottom:80px;
}

.timeline-year{

    width:160px;

    font-size:52px;
    font-weight:900;

    color:#1c2745;

    flex-shrink:0;
}

.timeline-content{
    flex:1;
    padding-left:80px;
}

/* CARD */

.history-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:30px 35px;

    margin-bottom:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

    transition:0.3s;
}

.history-card:hover{
    transform:translateY(-5px);
}

/* DOT */

.history-card::before{

    content:'';

    position:absolute;

    left:-91px;
    top:38px;

    width:18px;
    height:18px;

    border-radius:50%;

    background:#1c2745;

    border:5px solid #fff;

    box-shadow:
    0 0 0 2px #1c2745;
}

.history-month{

    display:inline-block;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;

    color:#b28c67;

    margin-bottom:15px;
}

.history-card p{

    margin:0;

    font-size:18px;

    font-weight:500;

    color:#333;
}

/* MOBILE */

@media(max-width:991px){

    .timeline::before{
        left:25px;
    }

    .timeline-item{
        display:block;
        padding-left:60px;
    }

    .timeline-year{
        width:auto;
        margin-bottom:30px;
        font-size:40px;
    }

    .timeline-content{
        padding-left:0;
    }

    .history-card::before{

        left:-44px;
    }

}

@media(max-width:767px){

    .history-section{
        padding:80px 0;
    }

    .timeline-year{
        font-size:34px;
    }

    .history-card{
        padding:25px;
    }

    .history-card p{
        font-size:16px;
    }

}

.history-sub{

    padding-left:22px;

    color:#777;

    font-size:15px;

    margin-top:-8px;

    margin-bottom:18px;
}

/* POS SECTION */

.pos-section{

    padding:120px 0;

    background:#faf8f5;
}

/* TITLE */

.section-desc{

    margin-top:20px;

    color:#777;

    line-height:1.8;

    font-size:17px;
}

/* IMAGE */

.pos-image-wrap{

    position:relative;

    border-radius:30px;

    overflow:hidden;

    background:#fff;

    padding:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

.pos-image{

    width:100%;

    border-radius:20px;
}

/* FEATURE */

.pos-feature-wrap{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.pos-item{

    display:flex;

    gap:20px;

    background:#fff;

    border-radius:24px;

    padding:25px 28px;

    transition:0.3s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.pos-item:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
}

/* ICON */

.pos-icon{

    width:64px;
    height:64px;

    min-width:64px;

    border-radius:20px;

    background:#1c2745;

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:28px;
}

/* TEXT */

.pos-item h4{

    font-size:20px;

    font-weight:700;

    margin-bottom:10px;

    color:#222;
}

.pos-item p{

    margin:0;

    color:#666;

    line-height:1.8;

    font-size:15px;
}

/* MOBILE */

@media(max-width:991px){

    .pos-section{

        padding:90px 0;
    }

}

@media(max-width:767px){

    .pos-item{

        padding:20px;
    }

    .pos-icon{

        width:52px;
        height:52px;

        min-width:52px;

        font-size:22px;

        border-radius:16px;
    }

    .pos-item h4{

        font-size:18px;
    }

    .pos-item p{

        font-size:14px;
    }

}


/* MOBILE SECTION */

.mobile-section{

    padding:120px 0;

    background:#faf8f5;
}

/* CARD */

.mobile-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    height:100%;

    transition:0.3s;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.06);
}

.mobile-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.1);
}

/* IMAGE */

.mobile-image{

    background:#f5f5f5;

    padding:20px;

    text-align:center;
}

.mobile-image img{

    max-height:420px;

    object-fit:contain;

    border-radius:12px;
}

/* CONTENT */

.mobile-content{

    padding:30px;
}

.mobile-number{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    color:#b28c67;

    margin-bottom:12px;
}

.mobile-content h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    color:#222;
}

.mobile-content p{

    margin:0;

    color:#666;

    line-height:1.8;

    font-size:15px;
}

/* MOBILE */

@media(max-width:991px){

    .mobile-section{

        padding:90px 0;
    }

    .mobile-image img{

        max-height:340px;
    }

}

@media(max-width:767px){

    .mobile-content{

        padding:24px;
    }

    .mobile-content h4{

        font-size:19px;
    }

    .mobile-content p{

        font-size:14px;
    }

}


/* GMS SECTION */

.gms-section{

    padding:120px 0;

    background:#faf8f5;
}

/* IMAGE */

.gms-image-wrap{

    background:#fff;

    border-radius:30px;

    padding:20px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

.gms-image{

    width:100%;

    border-radius:18px;
}

/* FEATURE */

.gms-feature-wrap{

    display:flex;

    flex-direction:column;

    gap:20px;
}

/* ITEM */

.gms-item{

    display:flex;

    gap:20px;

    background:#fff;

    border-radius:24px;

    padding:25px 28px;

    transition:0.3s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.gms-item:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
}

/* ICON */

.gms-icon{

    width:64px;
    height:64px;

    min-width:64px;

    border-radius:20px;

    background:#1c2745;

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:28px;
}

/* TEXT */

.gms-item h4{

    font-size:20px;

    font-weight:700;

    margin-bottom:10px;

    color:#222;
}

.gms-item p{

    margin:0;

    color:#666;

    line-height:1.8;

    font-size:15px;
}

/* MOBILE */

@media(max-width:991px){

    .gms-section{

        padding:90px 0;
    }

}

@media(max-width:767px){

    .gms-item{

        padding:20px;
    }

    .gms-icon{

        width:52px;
        height:52px;

        min-width:52px;

        font-size:22px;

        border-radius:16px;
    }

    .gms-item h4{

        font-size:18px;
    }

    .gms-item p{

        font-size:14px;
    }

}

/* support.html */

body{
    font-family:'Noto Sans KR',sans-serif;
    color:#222;
    background:#f5f7fb;
    overflow-x:hidden;
}



/* PAGE HERO */

.page-hero{
    padding:120px 0 80px;
    background:linear-gradient(135deg,#0f172a,#2563eb);
    color:#fff;
    text-align:center;
}

.sub-title{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
    color:#93c5fd;
}

.hero-content h1{
    font-size:58px;
    font-weight:900;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    color:rgba(255,255,255,0.85);
    max-width:700px;
    margin:auto;
}



/* SUPPORT */

.support-section{
    padding:100px 0;
}

.support-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:0.3s;
}

.support-card:hover{
    transform:translateY(-10px);
}

.support-icon{
    width:90px;
    height:90px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.support-icon i{
    font-size:42px;
    color:#fff;
}

.support-icon.blue{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.support-icon.sky{
    background:linear-gradient(135deg,#06b6d4,#0284c7);
}

.support-card h3{
    font-size:34px;
    font-weight:800;
    margin-bottom:15px;
}

.support-desc{
    color:#666;
    margin-bottom:30px;
    min-height:50px;
}



/* STEP */

.step-box{
    background:#f8fafc;
    border-radius:20px;
    padding:25px;
    margin:35px; 
}

.step-box h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
}

.step-box ul{
    padding-left:20px;
    margin:0;
}

.step-box li{
    margin-bottom:12px;
    color:#555;
}



/* BUTTON */

.download-btn{
    width:100%;
    height:58px;
    border-radius:16px;
    background:#2563eb;
    color:#fff;
    font-size:17px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:0.3s;

    margin:0 auto;   /* 가운데 정렬 */
}

.download-btn:hover{
    background:#1d4ed8;
    color:#fff;
}



/* INFO */

.info-section{
    padding-bottom:100px;
}

.info-box{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    display:flex;
    justify-content:center;    
}

.info-item{
    text-align:center;
}

.info-item i{
    font-size:40px;
    color:#2563eb;
    margin-bottom:18px;
}

.info-item h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}

.info-item p{
    color:#666;
    margin:0;
}



/* MOBILE */

@media(max-width:991px){

    .hero-content h1{
        font-size:42px;
    }

    .support-card{
        padding:35px;
    }

}

@media(max-width:767px){

    .page-hero{
        padding:100px 0 70px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    .support-card h3{
        font-size:28px;
    }

    .info-box{
        padding:35px 20px;
    }

}

/* KIOSK */
/* SECTION */

.kiosk-section{

    padding:120px 0;
}

/* TITLE */

.section-sub{

    color:#b28c67;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;
}

.section-title{

    font-size:52px;

    font-weight:900;

    margin-bottom:20px;
}

.section-desc{

    color:#666;

    line-height:1.8;

    font-size:17px;
}

/* STEP */

.kiosk-step{

    background:#fff;

    border-radius:36px;

    padding:45px;

    margin-bottom:40px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.05);

    transition:0.3s;
}

.kiosk-step:hover{

    transform:translateY(-6px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

/* IMAGE */

.kiosk-image-wrap{

    background:#f4f4f4;

    border-radius:28px;

    padding:20px;

    text-align:center;
}

.kiosk-image{

    width:100%;

    max-height:550px;

    object-fit:contain;

    border-radius:18px;
}

/* NUMBER */

.step-number{

    width:80px;
    height:80px;

    border-radius:24px;

    background:#1c2745;

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:32px;

    font-weight:900;

    margin-bottom:30px;
}

/* TEXT */

.kiosk-step h3{

    font-size:32px;

    font-weight:800;

    margin-bottom:20px;
}

.kiosk-step p{

    color:#666;

    line-height:1.9;

    font-size:16px;
}

/* LIST */

.kiosk-list{

    list-style:none;

    padding-left:0;

    margin-top:20px;
}

.kiosk-list li{

    color:#555;

    margin-bottom:12px;

    line-height:1.8;
}

.kiosk-list i{

    color:#b28c67;

    margin-right:6px;

    font-size:20px;

    vertical-align:middle;
}

/* MOBILE */

@media(max-width:991px){

    .kiosk-section{

        padding:90px 0;
    }

    .section-title{

        font-size:42px;
    }

}

@media(max-width:767px){

    .kiosk-step{

        padding:28px;
    }

    .section-title{

        font-size:34px;
    }

    .step-number{

        width:64px;
        height:64px;

        font-size:24px;

        border-radius:18px;
    }

    .kiosk-step h3{

        font-size:24px;
    }

    .kiosk-step p{

        font-size:14px;
    }

}

/* SECTION */

.register-section{

    padding:120px 0;
}

.register-wrap{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

/* LEFT */

.section-sub{

    color:#b28c67;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:15px;
}

.register-title{

    font-size:56px;

    font-weight:900;

    margin-bottom:25px;
}

.register-desc{

    color:#666;

    line-height:1.9;

    font-size:17px;

    margin-bottom:40px;
}

.register-image-wrap{

    background:#fff;

    border-radius:32px;

    padding:25px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.06);
}

.register-image{

    width:100%;

    border-radius:20px;
}

/* CARD */

.register-card{

    background:#fff;

    border-radius:36px;

    padding:50px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);
}

.register-card h3{

    font-size:32px;

    font-weight:800;

    margin-bottom:40px;
}

/* FORM */

.form-group{

    margin-bottom:28px;
}

.form-group label{

    display:block;

    font-weight:700;

    margin-bottom:12px;
}

.input-box{

    position:relative;
}

.input-box i{

    position:absolute;

    top:50%;
    left:20px;

    transform:translateY(-50%);

    color:#999;

    font-size:18px;
}

.form-control{

    height:58px;

    border-radius:16px;

    border:1px solid #ddd;

    padding-left:55px;

    font-size:15px;

    box-shadow:none !important;
}

.form-control:focus{

    border-color:#1c2745;
}

/* GENDER */

.gender-wrap{

    display:flex;

    gap:15px;
}

.gender-box{

    flex:1;

    height:56px;

    border:1px solid #ddd;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    cursor:pointer;

    transition:0.3s;
}

.gender-box:hover{

    border-color:#1c2745;
}

/* AGREEMENT */

.agreement-box{

    margin-top:10px;

    margin-bottom:30px;
}

.agreement-box label{

    color:#666;

    font-size:14px;
}

/* BUTTON */

.register-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:18px;

    background:#1c2745;

    color:#fff;

    font-size:17px;

    font-weight:700;

    transition:0.3s;
}

.register-btn:hover{

    background:#111a33;
}

/* MOBILE */

@media(max-width:991px){

    .register-wrap{

        grid-template-columns:1fr;
    }

    .register-section{

        padding:90px 0;
    }

}

@media(max-width:767px){

    .register-title{

        font-size:40px;
    }

    .register-card{

        padding:35px 25px;
    }

    .register-card h3{

        font-size:26px;
    }

}


/* SECTION */

.scm-section{

    padding:120px 0;
}

/* TITLE */

.section-sub{

    color:#b28c67;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:15px;
}

.section-title{

    font-size:54px;

    font-weight:900;

    margin-bottom:20px;
}

.section-desc{

    color:#666;

    font-size:17px;

    line-height:1.9;
}

/* IMAGE */

.scm-image-wrap{

    background:#fff;

    border-radius:34px;

    padding:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.06);
}

.scm-main-image{

    width:100%;

    border-radius:24px;
}

/* CONTENT */

.scm-content{

    display:flex;

    flex-direction:column;

    gap:22px;
}

/* ITEM */

.scm-item{

    display:flex;

    gap:22px;

    background:#fff;

    border-radius:28px;

    padding:28px;

    transition:0.3s;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.04);
}

.scm-item:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */

.scm-icon{

    width:70px;
    height:70px;

    min-width:70px;

    border-radius:22px;

    background:#1c2745;

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:30px;
}

/* TEXT */

.scm-item h4{

    font-size:22px;

    font-weight:800;

    margin-bottom:10px;
}

.scm-item p{

    margin:0;

    color:#666;

    line-height:1.8;

    font-size:15px;
}

/* MOBILE */

@media(max-width:991px){

    .scm-section{

        padding:90px 0;
    }

    .section-title{

        font-size:42px;
    }

}

@media(max-width:767px){

    .section-title{

        font-size:34px;
    }

    .scm-item{

        padding:22px;
    }

    .scm-icon{

        width:56px;
        height:56px;

        min-width:56px;

        font-size:24px;

        border-radius:18px;
    }

    .scm-item h4{

        font-size:18px;
    }

    .scm-item p{

        font-size:14px;
    }

}

/* BUTTON */

.scm-btn-wrap{

    margin-top:1px;

    margin-bottom:30px;
}

.scm-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 34px;

    background:#1c2745;

    color:#fff;

    text-decoration:none;

    border-radius:18px;

    font-size:16px;

    font-weight:700;

    transition:0.3s;
}

.scm-btn:hover{

    background:#111a33;

    transform:translateY(-3px);

    color:#fff;
}

.scm-btn i{

    font-size:18px;
}