* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: "Microsoft Jhenghei", sans-serif;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

p,
li {
    margin-bottom: 5px;
    line-height: 1.5;
}

ol,
ul {
    list-style: none;
}

:root {
    --primary: #7b34c6;
    --secondary: #93DA49;
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}

.fix-btn {
    position: fixed;
    z-index: 9999;
    top: calc(100% - 240px);
    right: 20px;
    animation: neon 3s linear infinite both;
}

.fix-btn img {
    max-width: 160px;
}


.text-right {
    text-align: right;
}

.fw-bold {
    font-weight: bold;
}

.mb-40 {
    margin-bottom: 40px ;
}

.logo-bg-outer {
    background: #fff;
    text-align: left;
    position: relative;
    z-index: 1;
}

.logo-bg {
    width: 100%;
}

.logo-bg img {
    display: inline;
}

.logo1 {
    float: left;
}

.kv {
    position: relative;
    background: #000 url("../images/kv-bg.jpg") no-repeat center/100%;
    overflow: hidden;
    padding-bottom: 51%;
}

.kv-title {
    position: absolute;
    width: 80%;
    top: 10%;
    left: 10%;
}

.kv-meteor {
    position: absolute;
    mix-blend-mode: screen;
}

.kv-meteor.l1 {
    width: 14%;
    top: 55%;
    left: 3%;
    animation: meteor 1.5s 1s linear infinite;
}

.kv-meteor.r1 {
    width: 8%;
    top: 5%;
    right: 22%;
    animation: meteor 1.2s .5s linear infinite;
}

.kv-meteor.r2 {
    width: 12%;
    top: 70%;
    right: 12%;
    animation: meteor 1.3s .8s linear infinite;
}

.kv-img-m,
.img-m {
    display: none;
    max-width: 100%;
}

@keyframes meteor {
    0% {
        opacity: 1;
        transform: translate(100%, -100%);
    }
    50%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
}

.content {
    width: 100%;
    position: relative;
    background: #1e2134 url(../images/sec-bg.png) no-repeat center 40%/contain;
    margin-top: -1px;
    text-align: center;
}

.light-bg {
    position: relative;
    overflow: hidden;
    margin: 0 40px;
    padding-bottom: 120px;
}

.light-bg .section:last-child {
    margin-bottom: 0;
}

.section {
    width: 100%;
    overflow: hidden;
    margin: auto;
    padding: 0 5% 180px;
    position: relative;
}

.section.sec2 {
    background: #1e2134 url(../images/sec-bg.png) no-repeat center/contain;
}

.section.sec3 {
    padding: 0 5% 100px;
}

.title {
    margin: 120px auto 60px;
    max-width: 750px;
    width: 100%;
}

.title.title-sm {
    max-width: 220px
}

.section .sec2-content {
    background: url(../images/sec2-bg.svg) no-repeat top/contain;
    padding: 80px 0;
    position: relative;
    backdrop-filter: blur(6px);
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
    height: 6px;
    background: #ccc;
}

input[type="range"]:focus {
    outline: none;
}

/* 滑軌 */
input[type="range"]::-webkit-slider-runnable-track {
    border-radius: 15px;
}

input[type="range"]::-moz-range-track {
    border-radius: 15px;
    height: 10px;
}

/* 控制點 */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--secondary);
    border-radius: 100%;
    box-shadow: 0 0 8px var(--secondary);
    height: 24px;
    width: 24px;
}

input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 10px rgba(185, 164, 223, 0.2);
}

input[type="range"]::-moz-range-thumb {
    background-color: var(--secondary);
    border: none;
    border-radius: 100%;
    height: 20px;
    width: 20px;
}
input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 10px rgba(185, 164, 223, 0.2);
    /*   outline: 3px solid #D271FF;
    outline-offset: 0.125rem; */
}

.swipehint {
    width: 50px;
    padding: 10px;
    border-radius: 50px;
    background-color: rgba(210, 113, 255, 0.5);
    box-shadow: 0px 0px 8px 0px #D271FF;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    animation: finger ease-in-out 2s infinite;
    transition: 1s;
}

@keyframes finger {
    0% {
        left: 45%;
    }
    50% {
        left: 55%;
    }
    100% {
        left: 45%;
    }
}

.bar-list {
    max-width: 800px;
    margin: 75px auto 110px;
    position: relative
}

.bar-list > li {
    align-items: center;
    margin-bottom: 50px;
}

.bar-list > li .label img {
    margin-left: 0
}

.bar-outer {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    height: 4rem;
    border-radius: 10px;
    position: relative;
}

.bar-outer .value {
    position: absolute;
    /*   transform: translateX(-50%); */
    top: calc(50% + 25px);
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    color: #7b34c6;
    display: flex;
    padding: 0 15px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.num-result {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 5rem;
    color: var(--secondary);
}

.num-month-result {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 2.2rem;
    color: #fff;
}

.calc-content {
    max-width: 800px;
    margin: auto;
}

.save-money {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

.pay-money {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.save-money img,
.pay-money img {
    margin: 0 10px;
}

/* 移動光源 */
/* .light {
    animation: light 5s infinite linear;
    background: radial-gradient(circle, white, transparent 25%) 0 0 / 25% 25%, radial-gradient(circle, white, black 25%) 50% 50% / 12.5% 12.5%;
    left: -100%;
    mix-blend-mode: color-dodge;
} */

.sec3-img,
.sec3-img .group { 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.sec3-light img {
    max-width: 350px;
}

.sec3-light {
    position: relative;
}

.sec3-light::before {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    background: url(../images/sec3-light.png) no-repeat;
    mix-blend-mode: color-dodge;
    position: absolute;
    top: 45px;
    right: 30px;
    animation: sec3light 3s linear infinite;
}

.sec5-light {
    position: relative;
    display: inline-block;
    margin: auto;
}

.sec5-thumb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 28%;
    animation: neon 2.5s linear infinite both;
}

@keyframes sec3light {
    0% {
        transform: translate(-30px,-35px) scale(0.9);
        opacity: .5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    80% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.button {
    position: relative;
    margin: 60px 0 200px;
    overflow: hidden;
}

.button > span {
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    left: -100%;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: linear-gradient(90deg, transparent, #ffe900 96%, #fff 99%);
    animation: toRight 3s linear infinite;
}

.cta {
    display: block;
}

.cta-btn {
    width: 80%;
    max-width: 400px;
    animation: neon 2s linear infinite both;
}

.more img {
    margin: 0;
    height: 17px;
}

@keyframes toRight {
    0% {
        left: -100%;
    }
    70%,
    100% {
        left: 100%;
    }
}


@keyframes neon {
    0%,
    24%,
    50%,
    74% {
        opacity: 1;
        filter: drop-shadow(0 0 0px #ffe900);
    }

    25%,
    49%,
    75%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 8px #ffe900);
    }
}

/* 財力證明指南新增樣式 */
.btn-group {
    position: relative;
    margin: 60px auto;
    width: 90%;
    max-width: 1200px;
}

.sub-title {
    width: 90%;
    max-width: 650px;
    padding-top: 60px;
}
  
.fin-doc-btn {
    position: absolute;
    width: 18%;
    transform: translateX(-50%);
    bottom: 4%;
}
  
.fin-doc-btn.btn-mydata {
    left: 25%;
}
  
.fin-doc-btn.btn-app {
    right: 8%;
}

.step1 {
    position: relative;
}

.app-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4%;
    width: 25%;
}

.slide .app-link img {
    margin-bottom: 8px;
    max-width: 100%;
}

/* 專案說明 */
.info-outer {
    max-width: 1300px;
    margin: auto;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list > li {
    margin-bottom: 20px;
}

.purple {
    color: #805DC3;
    font-weight: bold;
    font-size: 20px
}

.info-list .info-title {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary);
    border-radius: 15px;
    cursor: pointer;
}

.info-list .title-img-prod {
    height: 30px;
    margin: 0;
}

.info-list .btn-collapse,
.info-list .btn-open {
    display: none;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: relative;
    background: #fff;
    border-radius: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 500ms all;
    -o-transition: 500ms all;
    transition: 500ms all;
}

.info-list .btn-collapse:hover,
.info-list .btn-open:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.info-list .btn-open {
    display: block;
}

.info-list .btn-open:after,
.info-list .btn-open:before {
    content: "";
    display: block;
    width: 5px;
    height: calc(100% - 10px);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--primary);
}

.info-list .btn-open:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.info-list .btn-collapse:before {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    height: 5px;
    width: calc(100% - 15px);
    background-color: var(--primary);
}

.info-list .open .content {
    display: block;
}

.info-list .open .btn-collapse {
    display: block;
}

.info-list .open .btn-open {
    display: none;
}

.info-list .open .info-title {
    border-radius: 15px 15px 0 0;
}

.info-list .content {
    background: #fff;
    text-align: left;
    padding: 15px 30px 25px;
    display: none;
    border-radius: 0 0 25px 25px;
}

.info-list .content a {
    color: #888;
    text-decoration: underline;
}

.info-list .content li {
    line-height: 1.8;
}

.info-list .content p {
    font-size: 16.5px;
    line-height: 2;
}

.info-list .content strong {
    color: red;
}

.note_DotList {
    list-style: disc;
    margin: 0;
    padding: 0 0 0 2em;
}

.note_NumList {
    list-style: decimal;
    padding: 0 0 0 2em;
    margin: 0;
}

.note_NumList2 {
    counter-reset: list;
    list-style: none;
}

.note_NumList2 > li {
    text-indent: -1.5em;
    padding-left: 1.5em;
}

.note_NumList2 > li::before {
    content: "(" counter(list) ")";
    counter-increment: list;
}

.code {
    color: #c10d23;
    font-weight: bold;
}

.qa-outer {
    max-width: 1300px;
    margin: auto;
    text-align: left;
    padding-bottom: 5%;
}
.qa-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.qa-list > li {
    margin-bottom: 10px;
    background: #ededed;
    border-radius: 10px;
}
.qa-list .btn-collapse,
.qa-list .btn-open {
    display: none;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: relative;
    background: #fff;
    border-radius: 100%;
    border: 2px solid #595757;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 500ms all;
    -o-transition: 500ms all;
    transition: 500ms all;
}
.qa-list .btn-collapse:hover,
.qa-list .btn-open:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.qa-list .btn-open {
    display: block;
}
.qa-list .btn-open:after,
.qa-list .btn-open:before {
    content: "";
    display: block;
    width: 5px;
    height: calc(100% - 10px);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #595757;
}
.qa-list .btn-open:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.qa-list .btn-collapse:before {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #595757;
    content: "";
    display: block;
    height: 5px;
    width: calc(100% - 15px);
}
.qa-list .open .btn-collapse {
    display: block;
}
.qa-list .open .btn-open {
    display: none;
}
.qa-list .open .q {
    border-bottom: 1px solid #c9c9c9;
}
.qa-list .open .a {
    display: block;
}
.qa-list .q-num {
    font-family: Arial, Helvetica, sans-serif;
    color: #805db8;
    font-size: 20px;
    margin-right: 10px;
    letter-spacing: 1px;
}
.qa-list .q {
    font-size: 20px;
    font-weight: bold;
    padding: 20px 35px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}
.qa-list .q .txt {
    margin-right: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 15px;
}
.qa-list .a {
    display: none;
    padding: 25px 35px 30px;
    font-size: 16px;
    line-height: 1.7;
}
.qa-list .a .a-num {
    display: inline-block;
    width: 30px;
    vertical-align: top;
}
.qa-list .a .txt {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 35px);
}

/* 步驟說明滑動 */
.slider {
    padding: 60px 0 180px;
}

.slick-dots {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    top: auto;
    bottom: -5%;
}

.step-group .slick-list {
    padding: 0 15% !important;
}

.step-group .slide {
    position: relative;
    /*opacity: 0.2;*/
	padding:0 2%;
    transition: 0.3s;
}

.step-group .slick-prev,
.step-group .slick-next {
    width: 70px;
    height: 70px;
    background-color: rgba(210, 113, 255, .5);
    border-radius: 50%;
    top: 56%;
}

.step-mydata .slick-prev, 
.step-mydata .slick-next {
  top: 45%
}

.step-group .slick-prev {
    left: 20px;
}

.step-group .slick-next {
    right: 20px;
}

.step-group .slick-prev:before {
    top: 11px;
    left: 13px;
}

.step-group .slick-next:before {
    top: 11px;
    right: 13px;
}

/* .step-group .slick-prev,
.step-group .slick-next {
    width: 50px;
    height: 50px;
    top: 58%;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.step-group .slick-prev {
    left: 5px;
}

.step-group .slick-next {
    right: 5px;
}

.step-group .slick-prev:before {
    top: 18px;
    left: 8px;
    content: url("../images/arrow-prev.svg");
    opacity: .5;
}

.step-group .slick-next:before {
    top: 18px;
    right: 8px;
    content: url("../images/arrow-next.svg");
    opacity: .5;
} */

.step-group .slick-dots {
    bottom: -10%;
}

.step-app img {
    max-width: 75%;
}

.step-group .slick-active {
    opacity: 1;
    transition: 0.3s;
}

/* .slide.next::after {
    content: "";
    display: block;
    width: 42px;
    height: 87px;
    background: url("../images/next.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 57%;
    right: -40px;
} */

.slide.next::after {
    content: "";
    display: block;
    width: 50px;
    height: 32px;
    background: url("../images/next.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 60%;
    right: -30px;
}

/* 會員好評滑動 */
.customer-group {
    max-width: 1300px;
    margin: auto;
}

.customer-group .slide {
    background: #fff;
    padding:30px 20px 30px 20px;
    margin:30px;
    font-size: 16px;
    text-align: left;
    line-height: 1.6;
    position: relative;
    border-radius: 10px;
	border-left:30px solid rgba(30,33,52,1);
	border-right:30px solid rgba(30,33,52,1);
}

.customer-group .slick-prev,
.customer-group .slick-next {
    top: 45%;
}

.title-share {
    position: absolute;
    top: -20px;
    width: 40%;
    background: var(--primary);
    border-radius: 5px;
    padding: 10px 20px;
    -webkit-transition: 500ms all;
    -o-transition: 500ms all;
    transition: 500ms all;
}

.img-txt {
    height: 18px;
    display: inline;
    margin-right: 12px;
    vertical-align: text-bottom;
}

.name {
    border-bottom: 1px solid var(--primary);
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    padding-top: 0px;
    margin-bottom: 20px;
}

.exp,
.require {
    margin-bottom: 15px;
}

.exp .img-txt,
.require .img-txt {
    margin-bottom: 5px;
}

.percent,
.quota,
.years {
    margin-bottom: 8px;
}

.save {
    background-color: var(--primary);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-image: url(../images/share-arrow.svg);
    color: #fff;
    display: block;
    padding: 5px 10px 5px 35px;
    margin-top: 15px;
}

.save .num {
    font-family: Arial, Helvetica, sans-serif
}

@media screen and (max-width: 1366px) {    
    .sec3-light img {
        max-width: 300px;
    }

    .sec3-light::before {
        top: 35px;
        right: 20px;
    }
}

@media screen and (max-width: 1280px) {
    .section .sec2-content {
        background: url(../images/sec2-bg-pad.svg) no-repeat top/contain;
        padding: 60px 0;
    }

    .sec2-img {
        width: 75%;
        max-width: 700px;
    }

    .sec2-img.sec2-img-info {
        max-width: 400px;
    }

    .bar-list {
        max-width: 600px;
    }
}

@media screen and (max-width: 1024px) {
    .kv {
        background-image: url("../images/kv-bg-m.jpg");
        padding-bottom: 110%;
        background-position-y: bottom;
    }

    .kv-title {
        width: 90%;
        left: 5%;
        top: 5%;
    }
    
    .kv-meteor.l1 {
        width: 20%;
        top: 25%;
        left: -5%
    }

    .kv-meteor.r1 {
        width: 15%;
        top: 10%;
        right: 13%;
    }

    .kv-meteor.r2 {
        width: 13%;
        top: 75%;
        right: 60%;
    }
}

@media screen and (min-width: 769px) {
    .customer-group .slide {
        transform: translateY(10px);
    }

    .customer-group .slick-active .title-share {
        background: #CDBFE4;
    }
    
    .customer-group .inner {
        opacity: .3;
    }
    
    .customer-group .slick-center {
        transform: translateY(-10px);
        transition: .3s;
    }
    
    .customer-group .slick-center .title-share {
        background: var(--primary);
    }
    
    .customer-group .slick-center .inner {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {

    .img-d {
        display: none;
    }

    .img-m {
        display: block;
    }

    .section {
        padding: 0 20px 80px;
        margin: 0;
    }

    .section.sec3 {
        padding: 0 20px 60px;
    }

    .title {
        margin: 60px auto;
        width: 85%;
    }

    .title-sm {
        width: 40%;
        max-width: 180px;
    }

    .sec-img {
        width: 90%;
    }

    .section .sec2-content {
        padding: 35px 0;
    }

    .calc-content {
        max-width: calc(100% - 80px);
    }

    .bar-outer {
        width: 85%;
        height: 2.5rem;
    }
    
    .bar-outer .value {
        font-size: 18px;
    }

    .bar-list {
        margin: 20px auto 80px;
        max-width: 500px;
    }

    .bar-list li {
        margin-bottom: 50px;
    }

    .bar-list .label {
        width: 85%;
        margin: auto;
    }

    .save-money {
        margin-bottom: 30px;
    }

    .num-result {
        font-size: 2.5rem;
    }

    .pay-money {
        margin-bottom: 12px;
    }

    .save-money img, .pay-money img {
        height: 24px;
    }

    .save-money img {
        max-width: 24px;
    }

    .num-month-result {
        font-size: 1.5rem;
    }

    /* 財力證明指南新增樣式 */
    .btn-group {
        margin: 30px auto 0;
    }

    .fin-doc-btn {
        width: 35%;
      }
      
    .fin-doc-btn.btn-mydata {
        left: 51%;
        bottom: 41%;
    }
    
    .fin-doc-btn.btn-app {
        right: 14%;
        bottom: 2%;
    }    

    .app-link {
        width: 30%;
    }

    .slide img {
        max-width: 100%;
    }

    .slide.next::after {
        width: 20px;
        height: 30px;
        right: -15px;
    }

    .customer-group .slide {
        margin: 20px 10px;
    }


}

@media screen and (max-width: 600px) {
    .logo-bg img {
        height: 35px;
    }

    .fix-btn img {
        max-width: 80px;
    }

    .fix-btn {
        top: 50%;
        transition: .5s linear;
    }

    .fix-btn.fixed {
        top: calc(100% - 130px);
    }

    .sec2-img {
        width: 90%;
        max-width: 350px;
    }

    .sec2-img.sec2-img-info {
        max-width: 280px;
    }

    .num-month-result {
        font-size: 1.25rem;
    }

    .pay-money {
        margin-bottom: 8px;
    }

    .sec3-light img {
        max-width: 160px;
    }

    .sec3-light::before {
        width: 40px;
        height: 40px;
        background-size: 100%;
        top: 20px;
        right: 6px;
    }

    .cta-btn {
        width: 100%;
        max-width: 200px;
        margin: 10px auto;
    }

    .slider {
        padding: 20px 0 60px;
    }

    .button {
        margin: 30px auto 120px;
    }

    .section.sec3 + .button {
        margin: 0 auto 60px;
    }

    .info-list .info-title {
        padding: 15px 20px;
    }

    .info-list .content {
        padding: 15px 20px;
    }

    .info-list .title-img-prod {
        height: 20px;
        margin: 0;
    }

    .qa-list .q {
        font-size: 16px;
        padding: 15px;
    }

    .qa-list .a {
        font-size: 14px;
        padding: 15px;
    }

    .step-group .slick-prev, 
    .step-group .slick-next {
        width: 50px;
        height: 50px;
    }

    .step-group .slick-prev:before {
        content: "";
        background: url(../images/btn-previous.svg) no-repeat center/100%;
        width: 25px;
        height: 28px;
    }

    .step-group .slick-next:before {
        content: "";
        background: url(../images/btn-next.svg) no-repeat center/100%;
        width: 25px;
        height: 28px;
    }
}

@media screen and (max-width: 540px) {
    .content,
    .section.sec2 {
        background: #1e2134;
    }

    .section.sec2 {
        padding: 0 0px 80px;
    }

    .section .sec2-content {
        background: url(../images/sec2-bg-m.svg) no-repeat top/contain;
    }

    .bar-list {
        max-width: 340px;
    }

    .save-money img, .pay-money img {
        height: 18px;
    }

    .sec2-img.sec2-img-info {
        height: 45px;
    }

    .save-money {
        margin-top: 10px;
    }

}

@media screen and (max-width: 330px) {
    .section .sec2-content {
        background-size: cover;
    }
}
