@charset "utf-8";

.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (hover: hover) {

    .btn_box button:hover {
        background-color: #1A1E29;
    }

    .con5 .send_btn:hover {
        background-color: #11A3F4;
        border: 1px solid transparent;
    }

    .con6 .btn_box button:hover {
        background-color: #313D5F;
    }
}


.btn_box {
    display: flex;
    justify-content: center;
}

.btn_box button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #252b3a;
    border-radius: 8px;
    height: 68px;
    width: 220px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    transition: all 0.5s;
}

.btn_box button .top {
    font-size: 12px;
}

.btn_box button .icon {
    width: 36px;
    height: 36px;
    display: block;
}

.btn_box button.g_btn {
    margin-right: 10px;
}

.btn_box button.g_btn .icon {
    background: url('http://smartclip.kr/image/main/g_icon.svg') no-repeat center / contain !important;
}

.btn_box button.a_btn .icon {
    background: url('http://smartclip.kr/image/main/a_icon.svg') no-repeat center / contain !important;
}






@media (max-width: 900px) {
    .btn_box {
        display: flex;
        flex-direction: column;
        gap: 10px; 
    }
    
    .btn_box button {
        width:100%;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        text-align: left;
        transition: all 0.5s;
    }
}