:root {
    --gray: #333;
    --lightGray: #f2f2f2;
    --blue: #4c5186;
    --blue-border: #868bb2;
    --exam-01: #37839b;
    --exam-02: #7280c1;
    --exam-03: #6d4589;
}


* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none !important;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1em;
    color: var(--gray);
}


h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px !important;
}

h3 {
    font-size: 20px;
}

.subtitle {
    font-size: 20px;
}





.wrapper_full {
    width: 100%;
}

.layer {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.layer:nth-child(odd) {
    background: #fff;
}

.wrapper {
    position: relative;
    width: calc( 100% - 50px );
    max-width: 850px;
    margin: 0 auto;
}




.button {
    position: relative;
    top: 0;
    display: inline-block;
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    background: var(--blue);
    cursor: pointer;
    transition: .3s;
}

.button:hover {
    top: -3px;
}

@media screen and (max-width: 1024px) {

    h2 {
        font-size: 20px;
        margin-bottom: 15px !important;
    }
    
    h3 {
        font-size: 14px;
    }    

    p {
        font-size: 12px;
    }

    .subtitle {
        margin-top: -10px;
        font-size: 14px;
    }

    .layer {
        padding: 50px 0;
    }

    .button {
        padding: 15px;
        font-size: 14px;
    }

}