@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

@font-face {
    font-family: "iCiel Helvetica Now Text";
    src: url("../font/iCielHelveticaNowText-Regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: "iCiel Helvetica Now Text";
    src: url("../font/iCielHelveticaNowText-Medium.otf") format("opentype");
    font-style: normal;
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: "iCiel Helvetica Now Text";
    src: url("../font/iCielHelveticaNowText-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html,
body {
    font-size: 62.5%;
    font-family: "Inter", sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
    color: #191919;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    transition: 0.3s;
}

body ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(225, 225, 225, 0.3);
    border-radius: 10px;
}

body ::-webkit-scrollbar {
    width: 3px;
    border-radius: 3px;
    background: #bdbe7000;
}

body ::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #e9ecef;
    border-radius: 6px;
}

.rs {
    margin: 0;
    padding: 0;
}

* {
    outline: none !important;
}

strong {
    font-weight: 700;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    position: absolute;
    top: 22px;
    right: 0;
    z-index: 5;
    display: none;
}

@media only screen and (max-width: 1024px) {
    .hamburger {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .hamburger {
        top: 18px;
    }
}

.hamburger-box {
    width: 34px;
    height: 25px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
    width: 33px;
    height: 2px;
    background: white;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
    opacity: 1 !important;
}

.hamburger-inner::after {
    width: 33px;
    height: 2px;
    background: white;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
    opacity: 1 !important;
    content: "";
    display: block;
    opacity: 1 !important;
    bottom: -8px;
}

.hamburger-inner::before {
    width: 33px;
    height: 2px;
    background: white;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
    opacity: 1 !important;
    content: "";
    display: block;
    opacity: 1 !important;
    top: -8px;
}

.hamburger--3dx .hamburger-box {
    perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dx-r .hamburger-box {
    perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy .hamburger-box {
    perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy-r .hamburger-box {
    perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy .hamburger-box {
    perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy-r .hamburger-box {
    perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--squeeze .hamburger-inner {
    transition-duration: 75ms;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 75ms 0.12s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 75ms 0.12s ease, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 75ms ease;
    background: white;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 75ms ease, transform 75ms 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.positionLeft50,
.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .h3_title::after,
.pageAboutTK::after,
.home-tools .box_wrap .tab__wrap .nav-tools .items.active::after,
.home-stepStart .box_wrap .group_step .step_item .step_text .txt_title::before {
    position: absolute;
    left: 50%;
}

.bgContain,
.chatSupport,
.backTop,
.footer .footer_top .box_wrap .f-col .group_social .social_item,
.footer .footer_top .box_wrap .f-col .f-logo,
.pageCarrer .box_wrap .carrer_item .carrer_info .item .item_icon,
.header_carrer .box_wrap .group_nav .icon_arr,
.pageAboutTK .box_wrap .group_feature .feature_list .feature_item .icon,
.pageAboutTK .box_wrap .group_intro .box_text .group_detail .icon,
.pageAboutTK .box_wrap .group_intro .box_text::after,
.header_aboutTk .box_wrap .group_nav .icon_arr,
.pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate .rate_item .icon,
.pageSupportCategory .box_wrap .box_type .group_type .type_item::after,
.pageSupportCategory .box_wrap .box_type .group_type .type_item .icon,
.pageSupportCenter .box_wrap .box_type .group_type .type_item .icon,
.list_question .item::after,
.supportHeader .box_wrap .box_search .form_search .search_wrap .search_submit,
.group_news .new_item .new_img-txt .viewMore .icon_arr-right,
.group_news .new_item .new_img-txt .group_info .info_item .icon,
.home-tools .box_wrap .tab__wrap .content-tools .swiper-button-next,
.home-tools .box_wrap .tab__wrap .content-tools .swiper-button-prev,
.home-stepStart .box_wrap .btn_start .icon_arr_green,
.home-stepStart .box_wrap .group_step .step_item .step_text .txt_p::before,
.home-stepStart .box_wrap .group_step .step_item .step_num .icon,
.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text .icon,
.home-product .box_wrap .group_prd .prd_item_logo,
.home-product .box_wrap .group_prd .prd_item_0 .num,
.home-product .box_wrap .useNow .icon_arr_white,
.box_experience .box_wrap .box_text .group_exp .exp_item .icon,
.box_experience::before,
.banner_home .box_wrap .group_dl_mb .btn_dl,
.banner_home .box_wrap .box_text .group_dl .dl_text .btn_dl,
.banner_home .box_wrap .box_text .group_dl .qr_code,
.banner_home .box_wrap .box_text .open_account .icon_arr_white,
.banner_home .box_wrap .box_text .group_person .person_item .person_icon,
.header .header__wrap .header_search .form_search .search_wrap .search_submit,
.header .header__wrap .menu ul li.hasSub > .menu_item .icon_caret,
.header .header__wrap .h1_logo .logo {
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
}

::-webkit-input-placeholder {
    color: #BDBDBD;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #BDBDBD;
    font-weight: 400;
}

::placeholder {
    color: #BDBDBD;
    font-weight: 400;
}

.cf:after,
.cf:before {
    content: "";
    display: table;
    clear: both;
}

.swiper-wrapper,
.swiper-slide {
    height: auto;
}

.imgWrap {
    overflow: hidden;
    display: block;
    position: relative;
}

.imgWrap:before {
    content: "";
    display: block;
}

.imgWrap .imgWrap-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.imgWrap .imgWrap-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.imgWrap.img--contain img {
    object-fit: contain;
}

.imgWrap.img--cover img {
    object-fit: cover;
}

.imgWrap:hover img {
    transform: scale(1.1);
}

.imgWrap.noHover:hover img {
    transform: none !important;
}

.pt_63::before {
    padding-top: 63%;
}

.w-1200 {
    max-width: 123rem;
    padding: 0 1.5rem;
    margin: auto;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 1024px) {
    .w-1200 {
        max-width: 67rem;
    }
}

@media only screen and (max-width: 1024px) {
    .w-1200.mb--auto {
        max-width: 100%;
    }
}

.w-1200.is--inherit {
    overflow: unset;
}

.w-1680 {
    max-width: 147rem;
    padding: 0 1.5rem;
    margin: auto;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 1024px) {
    .w-1680.mb--auto {
        max-width: 100%;
    }
}

.w-1680.is--inherit {
    overflow: unset;
}

.swiper--dots {
    padding-bottom: 7rem;
}

@media only screen and (max-width: 767px) {
    .swiper--dots {
        padding-bottom: 5rem;
    }
}

.swiper--dots .swiper-pagination {
    bottom: 0.5rem;
}

.swiper--dots .swiper-pagination .swiper-pagination-bullet {
    width: 1.4rem;
    height: 1.4rem;
    background: #fff;
    margin: 0 0.7rem;
    opacity: 1;
    border-radius: 50%;
}

@media only screen and (max-width: 767px) {
    .swiper--dots .swiper-pagination .swiper-pagination-bullet {
        width: 1rem;
        height: 1rem;
    }
}

.swiper--dots .swiper-pagination .swiper-pagination-bullet-active {
    background: #153F17;
    border-radius: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swiper--dots-white .swiper-pagination .swiper-pagination-bullet {
    background: #ADADAD;
}

.swiper--dots-white .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper--dots.hideDots {
    padding-bottom: 0.6rem;
}

.swiper--dots.hideDots .swiper-pagination {
    display: none !important;
}

.custom-swiper-btn {
    width: 4.8rem;
    height: 4.8rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 2px 4px rgba(1, 18, 34, 0.1);
}

@media only screen and (max-width: 767px) {
    .custom-swiper-btn {
        width: 3.6rem;
        height: 3.6rem;
    }
}

.custom-swiper-btn::after {
    background-image: url("https://cdn.smobgame.com/template/Tickop/images/icon_next.svg");
    background-size: 2.4rem;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    text-indent: -9999px;
}

@media only screen and (max-width: 767px) {
    .custom-swiper-btn::after {
        -webkit-background-size: 2rem;
        background-size: 2rem;
    }
}

.custom-swiper-btn.swiper-button-prev::after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.hideNav .custom-swiper-btn {
    display: none;
}

.paginations {
    margin-top: 4rem;
}

.paginations ul {
    text-align: center;
}

.paginations ul li a {
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #191919;
    width: 2.4rem;
    height: 2.4rem;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    margin-right: 0.6rem;
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
}

.paginations ul li.active a {
    background: #8FD26C;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .showWeb {
        display: none;
    }
}

.showMb {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .showMb {
        display: block;
    }
}

.section-title {
    margin-bottom: 4rem;
}

@media only screen and (max-width: 767px) {
    .section-title {
        margin-bottom: 3rem;
    }
}

.section-title .h2_title span {
    color: #153F17;
    display: inline-block;
    font-size: 4.8rem;
    font-weight: 700;
}

@media only screen and (max-width: 1024px) {
    .section-title .h2_title span {
        font-size: 3.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .h2_title span {
        font-size: 8vw;
    }
}

.section-title .h2_title.hasLine span {
    position: relative;
    padding-bottom: 2.4rem;
}

.section-title .h2_title.hasLine span::after {
    content: "";
    display: block;
    width: 7.5rem;
    height: 0.8rem;
    background: #8FD26C;
    position: absolute;
    left: 50%;
    margin-left: -3.75rem;
    bottom: 0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.tab--content {
    display: none;
}

.tab--content.active {
    display: block;
}

.ios {
    background-image: url("../images/ios.png");
}

.android {
    background-image: url("../images/android.png");
}

@keyframes sliderShape {
    0%,
    100% {
        border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    34% {
        border-radius: 70% 30% 46% 54%/30% 29% 71% 70%;
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }
    50% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    67% {
        border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

@keyframes stretch {
    0% {
        transform: scale(0.7);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes vibrate {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1.1);
    }
    10% {
        transform: translate(-10px, 0) rotate(-20deg) scale(1.1);
    }
    20% {
        transform: translate(10px, 0) rotate(20deg) scale(1.1);
    }
    30% {
        transform: translate(-10px, 0) rotate(-10deg) scale(1.1);
    }
    40% {
        transform: translate(10px, 0) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translate(-10px, 0) rotate(-5deg) scale(1.1);
    }
    60% {
        transform: translate(10px, 0) rotate(5deg) scale(1.1);
    }
    70% {
        transform: translate(-10px, 0) rotate(-2deg) scale(1.1);
    }
    80% {
        transform: translate(10px, 0) rotate(2deg) scale(1.1);
    }
    90%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes lonbay {
    0% {
        top: 0;
    }
    10% {
        top: 5px;
    }
    20% {
        top: 7px;
    }
    30% {
        top: 9px;
    }
    40% {
        top: 11px;
    }
    50% {
        top: 11px;
    }
    60% {
        top: 9px;
    }
    70% {
        top: 7px;
    }
    80% {
        top: 5px;
    }
    90%,
    100% {
        top: 2px;
    }
}

body.open .header {
    background: white;
}

body.open .hamburger .hamburger-box .hamburger-inner::before,
body.open .hamburger .hamburger-box .hamburger-inner::after {
    background: #8FD26C;
}

.header {
    position: fixed;
    z-index: 80;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
}

@media only screen and (max-width: 1024px) {
    .header {
        background: #8FD26C;
    }
}

.header .header_top {
    background: #191919;
    height: 3rem;
}

@media only screen and (max-width: 1024px) {
    .header .header_top {
        display: none;
    }
}

.header .header_top .w-1680 {
    height: 100%;
}

.header .header_top .box_wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.header .header_top .p_txt {
    font-size: 1.2rem;
    color: #fff;
    margin-right: 1.7rem;
}

.header .header_top .p_txt a {
    font-size: 1.2rem;
    color: #fff;
    display: inline-block;
}

.header .header_top .p_txt:last-of-type {
    margin-right: 0;
}

.header .header__wrap {
    height: 7rem;
    padding-left: 10rem;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .header .header__wrap {
        height: 6rem;
    }
}

.header .header__wrap .h1_logo {
    color: transparent;
    text-indent: -9999px;
    height: 0;
    width: 0;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .h1_logo {
        top: 0.2rem;
    }
}

@media only screen and (max-width: 767px) {
    .header .header__wrap .h1_logo {
        top: -0.1rem;
    }
}

.header .header__wrap .h1_logo .logo {
    background-image: url("../images/logo.svg");
    height: 5rem;
    width: 5rem;
    display: block;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .header .header__wrap .h1_logo .logo {
        width: 4.6rem;
        height: 4.6rem;
    }
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .h1_logo .logo::after {
        content: "tikop.vn";
        display: block;
        color: #fff;
        font-size: 1.8rem;
        font-weight: 500;
        position: absolute;
        left: 100%;
        top: 0;
        background: #000;
    }
}

.header .header__wrap .menu {
    height: 100%;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu {
        position: fixed;
        background: white;
        width: 100%;
        top: 7rem;
        z-index: 4;
        left: 0;
        height: calc(100vh - 7rem);
        padding: 2rem 2rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: 0.4s;
        visibility: hidden;
        opacity: 0;
    }

    .header .header__wrap .menu.show {
        visibility: visible;
        opacity: 1;
        z-index: 20;
        transform: translateX(0%);
    }
}

@media only screen and (max-width: 767px) {
    .header .header__wrap .menu {
        top: 6rem;
        height: calc(100vh - 6rem);
    }
}

.header .header__wrap .menu ul {
    height: 100%;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul {
        height: auto;
    }
}

.header .header__wrap .menu ul li {
    height: 100%;
    margin-right: 2.4rem;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li {
        display: block;
        width: 100%;
        height: auto;
    }
}

.header .header__wrap .menu ul li .menu_item {
    color: #191919;
    height: 100%;
    line-height: 7rem;
    font-family: 'Inter';
    display: block;
    font-size: 14px;
    font-weight: 500;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li .menu_item {
        font-size: 1.8rem;
        font-weight: 600;
        height: auto;
        line-height: 4.8rem;
    }
}

.header .header__wrap .menu ul li.active .menu_item {
    color: #8FD26C;
}

.header .header__wrap .menu ul li.hasSub {
    height: auto;
    position: relative;
}

.header .header__wrap .menu ul li.hasSub > .menu_item {
    padding-right: 3rem;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li.hasSub > .menu_item {
        color: #153F17;
    }
}

.header .header__wrap .menu ul li.hasSub > .menu_item .icon_caret {
    display: block;
    background-image: url("../images/icon_arr_bottom_green.svg");
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    margin-top: -1.2rem;
    width: 2.4rem;
    height: 2.4rem;
    transition: 0.3s;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li.hasSub > .menu_item .icon_caret {
        -webkit-filter: brightness(0%);
        filter: brightness(0%);
    }
}

.header .header__wrap .menu ul li.hasSub .menuSub {
    position: absolute;
    height: auto;
    z-index: 5;
    width: 20rem;
    background: #191919;
    border-radius: 0px 20px 20px 20px;
    padding: 1.3rem 1rem;
    display: none;
    top: 5.5rem;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li.hasSub .menuSub {
        position: static;
        box-shadow: none;
        width: 100%;
        padding: 1rem 0 1rem 2.4rem;
        background: transparent;
    }
}

.header .header__wrap .menu ul li.hasSub .menuSub .li-menuSub {
    height: auto;
    margin-right: 0;
    margin-bottom: 1.2rem;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li.hasSub .menuSub .li-menuSub {
        margin-bottom: 1.7rem;
    }
}

.header .header__wrap .menu ul li.hasSub .menuSub .li-menuSub > .menu_item .icon_caret {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: center center;
}

.header .header__wrap .menu ul li.hasSub .menuSub .li-menuSub .menu_item {
    color: #FFFFFF;
    height: auto;
    font-family: 'Inter';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header .header__wrap .menu ul li.hasSub .menuSub .li-menuSub .menu_item:hover {
    color: #8FD26C;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li.hasSub .menuSub .li-menuSub .menu_item {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 22.4px;
        font-family: 'Inter';
        color: #191919;
        margin-left: 24px;
    }
}

.header .header__wrap .menu ul li.hasSub .menuSub .li-menuSub:last-of-type {
    margin-bottom: 0;
}

.header .header__wrap .menu ul li.hasSub .menuSub-level2 {
    top: 0;
    left: 100%;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li.hasSub .menuSub-level2 {
        padding: 1.8rem 0 1rem 2.4rem;
    }
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li.hasSub .menuSub-level2 .li-menuSub .menu_item {
        color: #153F17;
        font-size: 16px;
        font-weight: 400;
        font-family: 'Inter';
        line-height: 22.4px;
        font-style: normal;
    }
}

.header .header__wrap .menu ul li.hasSub:hover > .menuSub {
    display: block;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .menu ul li.hasSub:hover > .menuSub {
        display: none;
    }
}

.header .header__wrap .menu ul li.hasSub.active > .menu_item .icon_caret {
    filter: unset;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.header .header__wrap .menu ul li.hasSub.active .menuSub-level1 {
    display: block;
}

@media only screen and (max-width: 850px) {
    .header .header__wrap .menu ul li.hasSub .menuSub .li-menuSub .menu_item {
        color: #4B4E55 !important;
    }
}

@media only screen and (min-width: 850px) {
    .social_media_list a {
        margin: 0px 8px 0px 0px;
    }

    .social_media_list a:nth-last-of-type(1) {
        margin: 0px 14px 0px 0px;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub-level1 {
        padding: 20px;
    }

    .header .header__wrap .menu {
        margin-left: auto;
        margin-right: auto;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub {
        top: 100% !important;
        left: -50% !important;
        border-radius: 10px !important;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub.product-service {
        left: -10% !important;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub:before {
        content: "";
        display: block;
        position: absolute;
        right: 50%;
        top: -4px;
        border-bottom: 10px solid #191919;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub-level1.blog {
        width: 824px;
        left: -380px !important;
        padding: 29.5px 25px 32.5px 30.5px !important;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub-level1.blog .li-menuSub-level1 {
        float: left;
        margin-right: 48px;
        margin-bottom: 0px !important;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub-level1.blog .li-menuSub-level1:last-child {
        margin-right: 0px;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub-level1.blog .li-menuSub-level1 > a {
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        width: fit-content;
        border-bottom: 2px solid #8FD26C;
        padding-bottom: 8px;
        color: #FFFFFF;
        font-family: 'Inter' !important;
        padding-right: 0px !important;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub-level1.blog .li-menuSub-level1 ul {
        margin-top: 16px;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub-level1.blog .li-menuSub-level1 .li-menuSub-leve2 {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 8px 0px 8px 0px;
        color: #FFFFFF;
        font-family: 'Inter' !important;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub-level1.blog .li-menuSub-level1 .li-menuSub-leve2:last-child {
        margin-bottom: 0px !important;
    }

    .header .header__wrap .menu ul li.hasSub .menuSub-level1.blog .menu_item .icon_caret {
        display: none !important;
    }

}


.header .header__wrap .menu ul li.hasSub.active .menuSub-level1 .hasSub.active > .menu_item .icon_caret {
    -webkit-filter: brightness(0%);
    filter: brightness(0%);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.header .header__wrap .menu ul li.hasSub.active .menuSub-level1 .hasSub.active .menuSub-level2 {
    display: block;
}

.header .header__wrap .menu ul li:last-of-type {
    margin-right: 0;
}

@media only screen and (max-width: 1024px) {
    .header .header__wrap .header_search {
        display: none;
    }

    .header .header__wrap .social_media_list {
        display: none;
    }
}

.header .header__wrap .header_search .form_search .search_wrap {
    width: 25rem;
    height: 4rem;
    background: #F2F2F2;
    border-radius: 176px;
    display: flex;
    justify-content: space-between;
}

.header .header__wrap .header_search .form_search .search_wrap .search_input {
    color: #191919;
    font-size: 1.4rem;
    box-shadow: none;
    background: transparent;
    border: 0;
    height: 100%;
    padding: 0 1.6rem;
}

.header .header__wrap .header_search .form_search .search_wrap .search_submit {
    -webkit-background-size: 2.2rem;
    background-size: 2.2rem;
    background-color: #F0FFE2;
    box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
    border-radius: 36px;
    background-image: url("../images/icon_search_blog.svg");
    min-width: 6rem;
    height: 100%;
    border: 0;
    box-shadow: none;
}

.header.boxShadow {
    background-color: #153F17;
    box-shadow: 0 3px 4px #0000000F;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

@media only screen and (max-width: 1024px) {
    .header.boxShadow {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        background: #8FD26C;
    }
}

.header.boxShadow .header__wrap .menu ul li .menu_item {
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .header.boxShadow .header__wrap .menu ul li .menu_item {
        color: #153F17;
    }
}

.headerHeight {
    height: 10rem;
}

@media only screen and (max-width: 1024px) {
    .headerHeight {
        height: 7rem;
    }
}

@media only screen and (max-width: 767px) {
    .headerHeight {
        height: 6rem;
    }
}

.pageHeight {
    min-height: calc(100vh - 10rem);
}

.banner_home {
    position: relative;
    background-image: url("../images/bg_banner.jpg");
    -webkit-background-size: 1920px;
    background-size: 1920px;
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 86rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1024px) {
    .banner_home {
        background-image: url("../images/bg_banner_mb.jpg");
        -webkit-background-size: 100vw;
        background-size: 100vw;
        background-color: #08501e;
        min-height: fit-content;
        padding: 5rem 0;
        flex-direction: column;
    }
}

.banner_home .box_wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap {
        flex-direction: column;
        height: unset;
        max-width: 600px;
        margin: auto;
    }
}

.banner_home .box_wrap .box_text {
    max-width: 54.6rem;
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap .box_text {
        max-width: 100%;
        margin-left: 0;
    }
}

.banner_home .box_wrap .box_text .text_title {
    background: linear-gradient(135.35deg, #8FD26C 10.41%, #DAF092 83.93%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 100px 67px rgba(0, 0, 0, 0.19), 0px 36.5016px 24.4561px rgba(0, 0, 0, 0.131096), 0px 17.7209px 11.873px rgba(0, 0, 0, 0.105695), 0px 8.6871px 5.82036px rgba(0, 0, 0, 0.0843048), 0px 3.43489px 2.30138px rgba(0, 0, 0, 0.0589035);
    font-size: 5.6rem;
    font-weight: 700;
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap .box_text .text_title {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .banner_home .box_wrap .box_text .text_title {
        font-size: 9vw;
    }
}

.banner_home .box_wrap .box_text .text_des {
    font-size: 1.8rem;
    margin-top: 2.4rem;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap .box_text .text_des {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .banner_home .box_wrap .box_text .text_des {
        font-size: 4.5vw;
        margin-top: 5vw;
        padding: 0 3vw;
    }
}

.banner_home .box_wrap .box_text .text_des span {
    color: #8FD26C;
}

.banner_home .box_wrap .box_text .group_person {
    margin-top: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap .box_text .group_person {
        justify-content: center;
    }
}

.banner_home .box_wrap .box_text .group_person .person_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 3rem;
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap .box_text .group_person .person_item {
        margin-right: 5vw;
    }
}

.banner_home .box_wrap .box_text .group_person .person_item .person_icon {
    width: 4.6rem;
    min-width: 4.6rem;
    height: 4.6rem;
    margin-right: 1.3rem;
}

@media only screen and (max-width: 767px) {
    .banner_home .box_wrap .box_text .group_person .person_item .person_icon {
        width: 10vw;
        min-width: 10vw;
        height: 10vw;
        margin-right: 3vw;
    }
}

.banner_home .box_wrap .box_text .group_person .person_item .person_icon1 {
    background-image: url("../images/icon_users.svg");
}

.banner_home .box_wrap .box_text .group_person .person_item .person_icon2 {
    background-image: url("../images/icon_employer.svg");
}

.banner_home .box_wrap .box_text .group_person .person_item .person_num p {
    font-size: 1.4rem;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .banner_home .box_wrap .box_text .group_person .person_item .person_num p {
        font-size: 3.3vw;
    }
}

.banner_home .box_wrap .box_text .group_person .person_item .person_num p:first-of-type {
    color: #8FD26C;
    font-size: 2.4rem;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .banner_home .box_wrap .box_text .group_person .person_item .person_num p:first-of-type {
        font-size: 5.5vw;
    }
}

.banner_home .box_wrap .box_text .group_person .person_item:last-of-type {
    margin-right: 0;
}

.banner_home .box_wrap .box_text .open_account {
    color: #153F17;
    display: block;
    margin-top: 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 2.5rem 8rem 2.5rem 4.6rem;
    background: #8FD26C;
    position: relative;
    width: fit-content;
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap .box_text .open_account {
        margin: 4rem auto;
    }
}

@media only screen and (max-width: 767px) {
    .banner_home .box_wrap .box_text .open_account {
        margin: 7vw auto;
        font-size: 4vw;
        padding: 4vw 14vw 4vw 10vw;
    }
}

.banner_home .box_wrap .box_text .open_account .icon_arr_white {
    display: inline-block;
    background-image: url("../images/icon_arr_right_white.svg");
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 1.7rem;
    height: 1.7rem;
    right: 4.6rem;
    margin-top: -0.8rem;
}

@media only screen and (max-width: 767px) {
    .banner_home .box_wrap .box_text .open_account .icon_arr_white {
        right: 7vw;
    }
}

.banner_home .box_wrap .box_text .open_account:hover {
    background: #153F17;
    color: #8FD26C;
}

.banner_home .box_wrap .box_text .group_dl {
    margin-top: 12.4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap .box_text .group_dl {
        display: none;
    }
}

.banner_home .box_wrap .box_text .group_dl .qr_code {
    background-image: url("../images/qr.png");
    width: 10.6rem;
    height: 13rem;
    margin-right: 1.8rem;
}

.banner_home .box_wrap .box_text .group_dl .qr_code img {
    display: block;
    width: 89%;
    height: auto;
    margin: 3% auto;
}

.banner_home .box_wrap .box_text .group_dl .dl_text p {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8FD26C;
    margin-bottom: 0.8rem;
}

.banner_home .box_wrap .box_text .group_dl .dl_text .btn_dl {
    display: block;
    width: 11.9rem;
    height: 4rem;
    margin-bottom: 1rem;
}

.banner_home .box_wrap .box_text .group_dl .dl_text .btn_dl:last-of-type {
    margin-bottom: 0;
}

.banner_home .box_wrap .box_img {
    width: calc(100% - 54.6rem);
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap .box_img {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    .banner_home .box_wrap .box_img {
        width: 95vw;
    }
}

.banner_home .box_wrap .box_img picture img {
    display: block;
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 1024px) {
    .banner_home .box_wrap .group_dl_mb {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2rem;
    }
}

.banner_home .box_wrap .group_dl_mb .btn_dl {
    display: block;
    width: 15rem;
    height: 5.2rem;
    margin: 0 1rem;
}

@media only screen and (max-width: 767px) {
    .banner_home .box_wrap .group_dl_mb .btn_dl {
        width: 31vw;
        height: 11vw;
        margin: 0 2vw;
    }
}

.banner_home .box_wrap .group_dl_mb .btn_dl:last-of-type {
    margin-bottom: 0;
}

.box_experience {
    padding: 6rem 0;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .box_experience {
        padding: 6rem 1.5rem;
    }
}

.box_experience::before {
    content: "";
    display: block;
    background-image: url("../images/home_page2_lineGray.png");
    width: 19vw;
    height: 13vw;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
}

@media only screen and (max-width: 1024px) {
    .box_experience::before {
        display: none;
    }
}

.box_experience .box_wrap {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.box_experience .box_wrap .box_img {
    position: relative;
    width: 49vw;
    min-width: 49vw;
}

@media only screen and (max-width: 1024px) {
    .box_experience .box_wrap .box_img {
        display: none;
    }
}

.box_experience .box_wrap .box_img picture img {
    display: block;
    width: 100%;
    height: auto;
}

.box_experience .box_wrap .box_img .phone {
    position: absolute;
    z-index: 2;
    width: 36%;
    top: 22%;
    left: 36%;
    -webkit-animation: vibrate 2s linear infinite;
    animation: vibrate 2s linear infinite;
}

.box_experience .box_wrap .box_img .phone img {
    display: block;
    width: 100%;
    height: auto;
}

.box_experience .box_wrap .box_img .pig {
    position: absolute;
    z-index: 2;
    width: 28%;
    right: 0;
    top: 0;
    -webkit-animation: lonbay 2s linear infinite;
    animation: lonbay 2s linear infinite;
}

.box_experience .box_wrap .box_img .pig img {
    display: block;
    width: 100%;
    height: auto;
}

.box_experience .box_wrap .box_text {
    padding-left: 5.4rem;
    width: 70.4rem;
}

@media only screen and (max-width: 1024px) {
    .box_experience .box_wrap .box_text {
        width: 100%;
        padding-left: 0;
    }
}

.box_experience .box_wrap .box_text .epx_title {
    color: #153F17;
    font-size: 3.6rem;
    font-weight: 700;
    max-width: 55rem;
}

@media only screen and (max-width: 1024px) {
    .box_experience .box_wrap .box_text .epx_title {
        margin: auto;
        text-align: center;
        position: relative;
        padding-bottom: 2.4rem;
    }
}

@media only screen and (max-width: 767px) {
    .box_experience .box_wrap .box_text .epx_title {
        font-size: 3.2rem;
    }
}

@media only screen and (max-width: 1024px) {
    .box_experience .box_wrap .box_text .epx_title::after {
        background: #8FD26C;
        position: absolute;
        left: 50%;
        z-index: 1;
        content: "";
        display: block;
        width: 4.5rem;
        height: 0.5rem;
        border-radius: 20px;
        margin-left: -2.25rem;
        bottom: 0;
    }
}

.box_experience .box_wrap .box_text .group_exp {
    margin-top: 5.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 10rem;
}

@media only screen and (max-width: 767px) {
    .box_experience .box_wrap .box_text .group_exp {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .box_experience .box_wrap .box_text .group_exp .exp_item {
        padding: 4rem 3rem;
        background: #FFFFFF;
        box-shadow: 2px 3px 20px -5px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        max-width: 30rem;
        margin: 0 auto 3.6rem;
    }
}

.box_experience .box_wrap .box_text .group_exp .exp_item .icon {
    width: 8.7rem;
    height: 8.7rem;
    animation: sliderShape 5s linear infinite;
    -webkit-animation: sliderShape 5s linear infinite;
    background-color: #8fd26c;
}

@media only screen and (max-width: 767px) {
    .box_experience .box_wrap .box_text .group_exp .exp_item .icon {
        width: 6rem;
        height: 6rem;
    }
}

.box_experience .box_wrap .box_text .group_exp .exp_item .icon1 {
    background-image: url("../images/home_page3_icon1.svg");
}

.box_experience .box_wrap .box_text .group_exp .exp_item .icon2 {
    background-image: url("../images/home_page3_icon2.svg");
}

.box_experience .box_wrap .box_text .group_exp .exp_item .icon3 {
    background-image: url("../images/home_page3_icon3.svg");
}

.box_experience .box_wrap .box_text .group_exp .exp_item .icon4 {
    background-image: url("../images/home_page3_icon4.svg");
}

.box_experience .box_wrap .box_text .group_exp .exp_item .icon5 {
    background-image: url("../images/home_page3_icon5.svg");
}

.box_experience .box_wrap .box_text .group_exp .exp_item .icon6 {
    background-image: url("../images/home_page3_icon6.svg");
}

.box_experience .box_wrap .box_text .group_exp .exp_item .txt {
    margin-top: 1.6rem;
    font-size: 2rem;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .box_experience .box_wrap .box_text .group_exp .exp_item .txt {
        font-size: 1.8rem;
    }
}

.box_experience .box_wrap .box_text .group_exp .exp_item .des {
    color: #76787D;
    font-size: 1.4rem;
    margin-top: 0.8rem;
}

@media only screen and (max-width: 767px) {
    .box_experience .box_wrap .box_text .group_exp .exp_item:last-of-type {
        margin-bottom: 0;
    }
}

.box_experience .box_wrap .box_text .group_exp .exp_item:hover .txt {
    color: #8FD26C;
}

.home-partner {
    position: relative;
    z-index: 2;
    padding: 10.5rem 0 10.8rem;
    overflow: hidden;
}

@media only screen and (max-width: 1024px) {
    .home-partner {
        padding: 5rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-partner {
        padding: 2.4rem 0 4rem;
    }
}

.home-product {
    position: relative;
    z-index: 1;
    padding: 6rem 0 60rem;
    background: #f8f8f8;
    background: linear-gradient(180deg, rgba(54, 71, 206, 0) 0%, #f8f8f8 63%);
}

@media only screen and (max-width: 767px) {
    .home-product {
        padding: 6rem 0 46rem;
    }
}

.home-product::before {
    content: "";
    display: block;
    background-image: url(../images/home_sp_lineGray.png);
    height: 35rem;
    -webkit-background-size: 1920px;
    background-size: 1920px;
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    top: -22rem;
    width: 100%;
    z-index: 0;
}

@media only screen and (max-width: 767px) {
    .home-product::before {
        -webkit-background-size: 1024px;
        background-size: 1024px;
        top: -9rem;
        height: 20rem;
    }
}

.home-product::after {
    content: "";
    display: block;
    background-color: #f8f8f8;
    background-image: url("../images/home_sp_lineGreen.png");
    -webkit-background-size: 1920px;
    background-size: 1920px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    width: 192rem;
    margin-left: -96rem;
    height: 69.7rem;
    top: 12rem;
}

@media only screen and (max-width: 1024px) {
    .home-product::after {
        background-image: url("../images/home_sp_lineGreen_mb.png");
        -webkit-background-size: 100vw;
        background-size: 100vw;
    }
}

@media only screen and (max-width: 767px) {
    .home-product::after {
        width: 100vw;
        height: calc(100% - 7vw);
        left: 0;
        margin-left: 0;
        top: 7rem;
        background-position: top 25% center;
    }
}

.home-product .box_wrap {
    position: relative;
    z-index: 5;
    margin-top: 3rem;
}

.home-product .box_wrap .useNow {
    color: white;
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 2.4rem 5.2rem 2.4rem 2.8rem;
    background: #8FD26C;
    position: relative;
    width: fit-content;
    margin: auto;
}

@media only screen and (max-width: 767px) {
    .home-product .box_wrap .useNow {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
}

.home-product .box_wrap .useNow .icon_arr_white {
    display: inline-block;
    background-image: url("../images/icon_arr_right_white.svg");
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 1.6rem;
    height: 1.6rem;
    right: 2.8rem;
    margin-top: -0.8rem;
}

.home-product .box_wrap .useNow:hover {
    background: #153F17;
    color: #8FD26C;
}

.home-product .box_wrap .group_prd {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 3rem;
}

@media only screen and (max-width: 1024px) {
    .home-product .box_wrap .group_prd {
        height: 73rem;
    }
}

.home-product .box_wrap .group_prd .prd_item {
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation-name: stretch;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-delay: 0;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
}

@media only screen and (max-width: 1024px) {
    .home-product .box_wrap .group_prd .prd_item {
        position: absolute;
        left: 50%;
        z-index: 1;
    }
}

@media only screen and (max-width: 767px) {
    .home-product .box_wrap .group_prd .prd_item {
        -webkit-transform: scale(0.74);
        transform: scale(0.74);
        transform-origin: top center;
    }
}

.home-product .box_wrap .group_prd .prd_item .num.color--green {
    color: #153F17;
}

.home-product .box_wrap .group_prd .prd_item .num.color--white {
    color: white;
}

.home-product .box_wrap .group_prd .prd_item .time {
    position: relative;
    padding-bottom: 0.6rem;
}

.home-product .box_wrap .group_prd .prd_item .time::after {
    content: "";
    display: block;
    /* width: 1.1rem;
    height: 0.2rem;
    background-color: #3D8F12; */
    border-radius: 10px;
    position: absolute;
    left: 50%;
    margin-left: -0.55rem;
    bottom: 0;
}

.home-product .box_wrap .group_prd .prd_item .percent {
    margin-top: 0.5rem;
}

.home-product .box_wrap .group_prd .prd_item_2week {
    background: #C0EC73;
    width: 12.2rem;
    min-width: 12.2rem;
    height: 12.2rem;
    margin-top: 35rem;
    margin-right: 5rem;
}

@media only screen and (max-width: 1024px) {
    .home-product .box_wrap .group_prd .prd_item_2week {
        margin-top: 7rem;
        margin-right: 0;
        margin-left: -20rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-product .box_wrap .group_prd .prd_item_2week {
        margin-top: 8rem;
        margin-left: -14rem;
    }
}

.home-product .box_wrap .group_prd .prd_item_2week .num {
    font-size: 2.7rem;
}

.home-product .box_wrap .group_prd .prd_item_2week .time {
    color: #3D8F12;
    font-size: 1.5rem;
}

.home-product .box_wrap .group_prd .prd_item_2week .percent {
    color: #153F17;
    font-size: 3.5rem;
}

.home-product .box_wrap .group_prd .prd_item_2week .percent .span_percent {
    font-size: 1.8rem;
}

.home-product .box_wrap .group_prd .prd_item_2week .year {
    color: #3D8F12;
    font-size: 1.5rem;
}

.home-product .box_wrap .group_prd .prd_item_1month {
    background: #A8E43F;
    width: 13.7rem;
    min-width: 13.7rem;
    height: 13.7rem;
    margin-top: 18rem;
    margin-right: 6rem;
    animation-delay: 0.5s;
}

@media only screen and (max-width: 1024px) {
    .home-product .box_wrap .group_prd .prd_item_1month {
        margin-top: 41rem;
        margin-right: 0;
        margin-left: -24rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-product .box_wrap .group_prd .prd_item_1month {
        margin-top: 34rem;
        margin-left: -16rem;
    }
}

.home-product .box_wrap .group_prd .prd_item_1month .num {
    font-size: 3rem;
}

.home-product .box_wrap .group_prd .prd_item_1month .time {
    color: #3D8F12;
    font-size: 1.7rem;
}

.home-product .box_wrap .group_prd .prd_item_1month .percent {
    color: #153F17;
    font-size: 3.8rem;
}

.home-product .box_wrap .group_prd .prd_item_1month .percent .span_percent {
    font-size: 2rem;
}

.home-product .box_wrap .group_prd .prd_item_1month .year {
    color: #3D8F12;
    font-size: 1.7rem;
}

.home-product .box_wrap .group_prd .prd_item_3month {
    background: #306B1B;
    width: 17.3rem;
    min-width: 17.3rem;
    height: 17.3rem;
    margin-top: 36rem;
    margin-right: 5rem;
    animation-delay: 0.9s;
}

@media only screen and (max-width: 1024px) {
    .home-product .box_wrap .group_prd .prd_item_3month {
        margin-top: 54rem;
        margin-right: 0;
        margin-left: -8.1rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-product .box_wrap .group_prd .prd_item_3month {
        margin-top: 48rem;
        margin-left: -9.1rem;
    }
}

.home-product .box_wrap .group_prd .prd_item_3month .num {
    font-size: 3.8rem;
}

.home-product .box_wrap .group_prd .prd_item_3month .time {
    color: #8FD26C;
    font-size: 2.1rem;
}

.home-product .box_wrap .group_prd .prd_item_3month .time::after {
    width: 1.5rem;
    margin-left: -0.75rem;
    background-color: #8FD26C;
}

.home-product .box_wrap .group_prd .prd_item_3month .percent {
    color: #fff;
    font-size: 4.8rem;
}

.home-product .box_wrap .group_prd .prd_item_3month .percent .span_percent {
    font-size: 2.6rem;
}

.home-product .box_wrap .group_prd .prd_item_3month .year {
    font-size: 2rem;
    color: #8FD26C;
}

.home-product .box_wrap .group_prd .prd_item_5month {
    background: #153F17;
    width: 16.2rem;
    min-width: 16.2rem;
    height: 16.2rem;
    margin-top: 11rem;
    margin-left: 10rem;
    animation-delay: 1.2s;
}

@media only screen and (max-width: 1024px) {
    .home-product .box_wrap .group_prd .prd_item_5month {
        margin-top: 37rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-product .box_wrap .group_prd .prd_item_5month {
        margin-top: 32rem;
        margin-left: 0.5rem;
    }
}

.home-product .box_wrap .group_prd .prd_item_5month .num {
    font-size: 3.8rem;
}

.home-product .box_wrap .group_prd .prd_item_5month .time {
    color: #8FD26C;
    font-size: 2rem;
}

.home-product .box_wrap .group_prd .prd_item_5month .time::after {
    width: 1.5rem;
    margin-left: -0.75rem;
    background-color: #8FD26C;
}

.home-product .box_wrap .group_prd .prd_item_5month .percent {
    color: #fff;
    font-size: 4.8rem;
}

.home-product .box_wrap .group_prd .prd_item_5month .percent .span_percent {
    font-size: 2.6rem;
}

.home-product .box_wrap .group_prd .prd_item_5month .year {
    color: #8FD26C;
    font-size: 2rem;
}

.home-product .box_wrap .group_prd .prd_item_0 {
    background: #E4FF9F;
    width: 10.6rem;
    min-width: 10.6rem;
    height: 10.6rem;
    margin-top: 26rem;
    margin-left: 8rem;
    animation-delay: 1.5s;
}

@media only screen and (max-width: 1024px) {
    .home-product .box_wrap .group_prd .prd_item_0 {
        margin-top: 4rem;
        margin-left: 4rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-product .box_wrap .group_prd .prd_item_0 {
        margin-top: 4rem;
        margin-left: 2rem;
    }
}

.home-product .box_wrap .group_prd .prd_item_0 .num {
    width: 3.3rem;
    height: 1.7rem;
    background-image: url("../images/icon_khongkyhan.svg");
    margin-bottom: 0.3rem;
}

.home-product .box_wrap .group_prd .prd_item_0 .time {
    font-size: 1.3rem;
    color: #3D8F12;
}

.home-product .box_wrap .group_prd .prd_item_0 .percent {
    color: #153F17;
    font-size: 3rem;
}

.home-product .box_wrap .group_prd .prd_item_0 .percent .span_percent {
    font-size: 1.6rem;
}

.home-product .box_wrap .group_prd .prd_item_0 .year {
    font-size: 1.3rem;
    color: #3D8F12;
}

.home-product .box_wrap .group_prd .prd_item_hide {
    width: 13rem;
    height: 0rem;
}

@media only screen and (max-width: 1024px) {
    .home-product .box_wrap .group_prd .prd_item_hide {
        display: none;
    }
}

.home-product .box_wrap .group_prd .prd_item_logo {
    background-image: url("../images/logo.svg");
    width: 15rem;
    min-width: 15rem;
    height: 15rem;
    margin-top: 17rem;
}

@media only screen and (max-width: 1024px) {
    .home-product .box_wrap .group_prd .prd_item_logo {
        position: absolute;
        left: 50%;
        z-index: 1;
        margin-left: -7.5rem;
        margin-top: 24rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-product .box_wrap .group_prd .prd_item_logo {
        width: 11rem;
        min-width: 11rem;
        height: 11rem;
        margin-left: -5.5rem;
        margin-top: 21rem;
    }
}

.home-review {
    position: relative;
    z-index: 3;
    margin-top: -79rem;
    min-height: 70rem;
    padding-top: 41rem;
    padding-bottom: 8rem;
}

@media only screen and (max-width: 1024px) {
    .home-review {
        margin-top: -69rem;
        min-height: 55rem;
        padding-top: 27rem;
        padding-bottom: 6rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-review {
        margin-top: -56rem;
        min-height: unset;
        padding-top: 19rem;
        padding-bottom: 6rem;
    }
}

.home-review::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-image: url(../images/bg_review.png);
    -webkit-background-size: 1920px;
    background-size: 1920px;
    background-repeat: no-repeat;
    background-position: top center;
}

@media only screen and (max-width: 1024px) {
    .home-review::before {
        -webkit-background-size: 1200px;
        background-size: 1200px;
    }
}

@media only screen and (max-width: 767px) {
    .home-review::before {
        -webkit-background-size: 768px;
        background-size: 768px;
    }
}

.home-review::after {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background-color: #8fd26c;
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .home-review::after {
        height: calc(100% - 50vw);
    }
}

.home-review .box_wrap {
    position: relative;
    z-index: 5;
}

.home-review .box_wrap .section-title .h2_title span {
    color: #fff;
}

.home-review .box_wrap .section-title .h2_title span::after {
    background: #153F17;
}

.home-review .box_wrap .swiper-review {
    margin-top: 7rem;
}

@media only screen and (max-width: 1024px) {
    .home-review .box_wrap .swiper-review {
        margin-top: 5rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-review .box_wrap .swiper-review {
        margin: 2rem 1rem 0;
    }
}

.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item {
    position: relative;
    padding: 8rem 0 0 7rem;
}

@media only screen and (max-width: 767px) {
    .home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item {
        padding: 4rem 0 0 3rem;
    }
}

.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_img {
    width: 12.7rem;
    height: 12.7rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

@media only screen and (max-width: 767px) {
    .home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_img {
        width: 10rem;
        height: 10rem;
    }
}

.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_img img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text {
    position: relative;
    background: #FFFFFF;
    border-radius: 10px;
    text-align: center;
    padding: 7.6rem 5rem 1.5rem;
}

@media only screen and (max-width: 767px) {
    .home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text {
        padding-left: 2.4rem;
        padding-right: 2.4rem;
    }
}

.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text::after {
    background: #8FD26C;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 6rem;
    height: 0.3rem;
    margin-left: -3rem;
}

.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text .icon {
    background-image: url(../images/home_review_icon.svg);
    width: 9rem;
    height: 7.7rem;
    position: absolute;
    top: -3.5rem;
    left: 50%;
    margin-left: -4.5rem;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text .icon {
        width: 6rem;
        height: 5rem;
        margin-left: -3rem;
        top: 1rem;
    }
}

.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text .des {
    color: #76787D;
    font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
    .home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text .des {
        font-size: 1.4rem;
    }
}

.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text .name {
    color: #153F17;
    margin-top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.home-review .box_wrap .swiper-review .swiper-wrapper .swiper_item .review_item .box_text .position {
    color: #8FD26C;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 0.3rem;
}

.home-newspaper {
    padding: 4.5rem 0;
}

@media only screen and (max-width: 767px) {
    .home-newspaper {
        padding: 3rem 0;
    }
}

.home-stepStart {
    padding: 9.2rem 0 7rem;
    background: #EAFFE6;
    border-radius: 0px 465px 465px 0px;
}

@media only screen and (max-width: 1024px) {
    .home-stepStart {
        background: transparent;
    }
}

@media only screen and (max-width: 767px) {
    .home-stepStart {
        padding: 3rem 0;
    }
}

.home-stepStart .box_wrap {
    padding: 0 3.3rem;
}

@media only screen and (max-width: 1024px) {
    .home-stepStart .box_wrap {
        padding: 0;
    }
}

.home-stepStart .box_wrap .group_step {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: flex-start;
    gap: 0 9.6rem;
}

@media only screen and (max-width: 1024px) {
    .home-stepStart .box_wrap .group_step {
        grid-template-columns: 1fr;
        gap: 6rem 0;
        max-width: 42rem;
        margin: auto;
    }
}

.home-stepStart .box_wrap .group_step .step_item {
    display: flex;
    height: 100%;
    flex-direction: column;
}

@media only screen and (max-width: 767px) {
    .home-stepStart .box_wrap .group_step .step_item {
        max-width: 28rem;
        margin: auto;
    }
}

.home-stepStart .box_wrap .group_step .step_item .step_num {
    position: relative;
    margin: auto;
    width: 14.8rem;
    height: 14.8rem;
}

@media only screen and (max-width: 767px) {
    .home-stepStart .box_wrap .group_step .step_item .step_num {
        width: 11rem;
        height: 11rem;
    }
}

.home-stepStart .box_wrap .group_step .step_item .step_num .num {
    color: #153F17;
    border: 0.7rem solid #8FD26C;
    font-weight: 700;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    font-size: 3.2rem;
    width: 7rem;
    height: 7rem;
    margin-top: -3.5rem;
    left: -5.2rem;
}

@media only screen and (max-width: 767px) {
    .home-stepStart .box_wrap .group_step .step_item .step_num .num {
        border: 0.4rem solid #8FD26C;
        font-size: 2rem;
        width: 4.4rem;
        height: 4.4rem;
        margin-top: -2.2rem;
        left: -3.2rem;
    }
}

.home-stepStart .box_wrap .group_step .step_item .step_num .icon {
    width: 100%;
    height: 100%;
}

.home-stepStart .box_wrap .group_step .step_item .step_num .icon1 {
    background-image: url("../images/home_iconStart1.svg");
}

.home-stepStart .box_wrap .group_step .step_item .step_num .icon2 {
    background-image: url("../images/home_iconStart2.svg");
}

.home-stepStart .box_wrap .group_step .step_item .step_num .icon3 {
    background-image: url("../images/home_iconStart3.svg");
}

.home-stepStart .box_wrap .group_step .step_item .step_text {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0px 0px 32.94px #CCFFCD;
    padding: 4.6rem 5rem 6.4rem;
    margin-top: 2.4rem;
    position: relative;
    flex: 1;
}

@media only screen and (max-width: 767px) {
    .home-stepStart .box_wrap .group_step .step_item .step_text {
        padding: 2.6rem 2rem;
    }
}

.home-stepStart .box_wrap .group_step .step_item .step_text::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 21px solid white;
    position: absolute;
    z-index: 1;
    top: -16px;
    left: 50%;
    margin-left: -20px;
}

.home-stepStart .box_wrap .group_step .step_item .step_text .txt_title {
    color: #153F17;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.8rem;
    position: relative;
    padding-bottom: 1.2rem;
}

@media only screen and (max-width: 767px) {
    .home-stepStart .box_wrap .group_step .step_item .step_text .txt_title {
        font-size: 2rem;
        margin-bottom: 1.8rem;
    }
}

.home-stepStart .box_wrap .group_step .step_item .step_text .txt_title::before {
    background: #8FD26C;
    z-index: 1;
    content: "";
    display: block;
    border-radius: 10px;
    width: 2.8rem;
    height: 0.4rem;
    margin-left: -1.4rem;
    bottom: 0;
}

.home-stepStart .box_wrap .group_step .step_item .step_text .txt_p {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3.7rem;
    font-size: 1.4rem;
}

.home-stepStart .box_wrap .group_step .step_item .step_text .txt_p::before {
    content: "";
    display: block;
    background-image: url("../images/icon_tick_green.svg");
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 2.1rem;
    height: 2.5rem;
}

.home-stepStart .box_wrap .group_step .step_item .step_text .txt_p:last-of-type {
    margin-bottom: 0;
}

.home-stepStart .box_wrap .btn_start {
    background: #153F17;
    color: #fff;
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 2.2rem 8rem 2.2rem 5.3rem;
    position: relative;
    width: fit-content;
    margin: 3.6rem auto 0;
}

@media only screen and (max-width: 767px) {
    .home-stepStart .box_wrap .btn_start {
        padding: 1.4rem 8rem 1.4rem 5.3rem;
        margin-top: 2rem;
    }
}

.home-stepStart .box_wrap .btn_start .icon_arr_green {
    display: inline-block;
    background-image: url("../images/icon_arr_right_green.svg");
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 1.7rem;
    height: 1.7rem;
    right: 5.3rem;
    margin-top: -0.8rem;
}

.home-stepStart .box_wrap .btn_start:hover {
    color: #153F17;
    background: #8FD26C;
}

.home-tools {
    position: relative;
    z-index: 3;
    padding: 6rem 0;
}

@media only screen and (max-width: 767px) {
    .home-tools {
        padding: 3rem 0;
    }
}

.home-tools .box_wrap .tab__wrap .nav-tools {
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

@media only screen and (max-width: 1024px) {
    .home-tools .box_wrap .tab__wrap .nav-tools {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .nav-tools {
        display: none;
        justify-content: flex-start;
    }
}

.home-tools .box_wrap .tab__wrap .nav-tools::-webkit-scrollbar {
    display: none;
}

.home-tools .box_wrap .tab__wrap .nav-tools .items {
    color: #153F17;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 4.8rem;
    position: relative;
    padding-bottom: 0.7rem;
    cursor: pointer;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .nav-tools .items {
        margin-right: 2.4rem;
        font-size: 1.6rem;
    }
}

.home-tools .box_wrap .tab__wrap .nav-tools .items.active {
    color: #8FD26C;
}

.home-tools .box_wrap .tab__wrap .nav-tools .items.active::after {
    background: #153F17;
    z-index: 1;
    content: "";
    display: block;
    border-radius: 10px;
    width: 2rem;
    height: 0.3rem;
    margin-left: -1rem;
    bottom: 0;
}

.home-tools .box_wrap .tab__wrap .nav-tools .items:last-of-type {
    margin-right: 0;
}

.home-tools .box_wrap .tab__wrap .content-tools {
    position: relative;
    margin-top: 7rem;
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools {
        margin-top: 4rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .title_mb {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .title_mb {
        color: #153F17;
        display: block;
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_img {
    margin-right: 15rem;
}

@media only screen and (max-width: 1024px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_img {
        display: none;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_img picture img {
    display: block;
    width: 100%;
    height: auto;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .title {
    color: #153F17;
    font-size: 3.2rem;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .title {
        font-size: 2rem;
        display: none;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount {
    margin-top: 2.4rem;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .form-group {
    margin-bottom: 1.6rem;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .form-group label {
    color: #333333;
    font-size: 1.4rem;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .form-group .input_tool {
    color: #333333;
    font-weight: 600;
    font-size: 2.4rem;
    height: 4rem;
    line-height: 4rem;
    outline: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #DCDCDC;
    padding: 0.4rem 0;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .form-group select.input_tool {
    font-size: 1.6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
    background-image: url(../images/icon_arr_bottom_green.svg);
    background-repeat: no-repeat;
    background-position: right top 0.5rem;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .form-group select.input_tool option {
    padding: 0 1rem;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .p_txt {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .p_num {
    color: #8FD26C;
    font-size: 3.6rem;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .p_num {
        font-size: 2.4rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .group_btn {
    margin-top: 2.4rem;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .group_btn .savingNow {
    color: #8FD26C;
    background: #153F17;
    display: inline-block;
    font-size: 1.6rem;
    padding: 2rem 5rem;
    font-weight: 600;
}

@media only screen and (max-width: 1024px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .group_btn .savingNow {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .group_btn .savingNow {
        padding: 1.2rem 2rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_toolCount .box_text .form_toolCount .form_wrap .group_btn .savingNow:hover {
    background: #8FD26C;
    color: #153F17;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_data iframe {
    display: block;
    margin: auto;
    max-width: 100%;
    overflow-x: auto;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1024px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj {
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj {
        background: #FFFFFF;
        box-shadow: 0px 0px 26px #D9D9D9;
        border-radius: 10px;
        padding: 1.6rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_img {
    position: relative;
    padding-right: 4.5rem;
    margin-right: 4.5rem;
}

@media only screen and (max-width: 1024px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_img {
        padding-right: 0;
        margin-right: 0;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_img picture img {
    display: block;
    width: 100%;
    height: auto;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_img::after {
    content: "";
    display: block;
    width: 0.2rem;
    height: 9.8rem;
    background: #BDBDBD;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4.9rem;
}

@media only screen and (max-width: 1024px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_img::after {
        display: none;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1024px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt {
        border-top: 1px solid #BDBDBD;
        padding-top: 3rem;
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt {
        padding-top: 2.2rem;
        margin-top: 1rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item {
    margin-right: 4.5rem;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item .num {
    font-size: 3.6rem;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item .num {
        font-size: 2rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item .num.color--green {
    color: #8FD26C;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item .num.color--yellow {
    color: #F4B400;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item .num sup {
    font-size: 2.3rem;
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item .num sup {
        font-size: 1.6rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item .txt_note {
    color: #828282;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item .txt_note {
        font-size: 1.4rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .group_pnj .pnj_txt .txt_item:last-of-type {
    margin-right: 0;
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .btn_viewMore {
    color: #153F17;
    background: #8FD26C;
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 2.1rem 6.8rem;
    position: relative;
    width: fit-content;
    margin: 5rem auto 0;
}

@media only screen and (max-width: 767px) {
    .home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .btn_viewMore {
        padding: 1.2rem 4rem;
        margin-top: 3rem;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .content_item .group_research .btn_viewMore:hover {
    background: #153F17;
    color: #8FD26C;
}

.home-tools .box_wrap .tab__wrap .content-tools .swiper .swiper-wrapper .swiper-slide {
    height: fit-content !important;
}

.home-tools .box_wrap .tab__wrap .content-tools .swiper-button-next,
.home-tools .box_wrap .tab__wrap .content-tools .swiper-button-prev {
    width: 3.6rem;
    height: 3.6rem;
    background-image: url("../images/icon_nav_green.svg");
    top: 1.6rem;
    display: none;
}

@media only screen and (max-width: 1024px) {

    .home-tools .box_wrap .tab__wrap .content-tools .swiper-button-next,
    .home-tools .box_wrap .tab__wrap .content-tools .swiper-button-prev {
        display: block;
    }
}

.home-tools .box_wrap .tab__wrap .content-tools .swiper-button-next::after,
.home-tools .box_wrap .tab__wrap .content-tools .swiper-button-prev::after {
    display: none;
}

.home-tools .box_wrap .tab__wrap .content-tools .swiper-button-next {
    right: 0;
}

.home-tools .box_wrap .tab__wrap .content-tools .swiper-button-prev {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    transform-origin: center;
    left: 0;
}

.group_news {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

@media only screen and (max-width: 1024px) {
    .group_news {
        grid-template-columns: 1fr 1fr;
        gap: 5rem 3rem;
    }
}

@media only screen and (max-width: 767px) {
    .group_news {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

.group_news .new_item {
    display: flex;
    flex-direction: column;
}

.group_news .new_item .new_item-img {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.group_news .new_item .new_img-txt {
    position: relative;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 3rem 3rem 1.8rem 3rem;
    margin: -4.5rem 2.4rem 0;
    flex: 1;
}

@media only screen and (max-width: 1024px) {
    .group_news .new_item .new_img-txt {
        background: #F8F8F8;
    }
}

@media only screen and (max-width: 767px) {
    .group_news .new_item .new_img-txt {
        margin: -4.5rem 2rem 0;
        padding: 3rem 1.6rem 1.8rem 1.6rem;
    }
}

.group_news .new_item .new_img-txt .tag {
    color: #8FD26C;
    background: #153F17;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    position: absolute;
    z-index: 1;
    left: 3rem;
    top: -1.6rem;
}

.group_news .new_item .new_img-txt .group_info {
    display: flex;
}

.group_news .new_item .new_img-txt .group_info .info_item {
    font-size: 1.4rem;
    margin-right: 1.6rem;
    display: flex;
    align-items: center;
}

.group_news .new_item .new_img-txt .group_info .info_item .icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.8rem;
}

.group_news .new_item .new_img-txt .group_info .info_item .icon.icon_clock {
    background-image: url("../images/icon_clock_black.svg");
}

.group_news .new_item .new_img-txt .group_info .info_item .icon.icon_user {
    background-image: url("../images/icon_user_black.svg");
}

.group_news .new_item .new_img-txt .group_info .info_item:last-of-type {
    margin-right: 0;
}

.group_news .new_item .new_img-txt .name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #153F17;
    display: block;
    margin-top: 0.8rem;
    font-size: 2rem;
    font-weight: 600;
    max-height: 5.6rem;
}

@media only screen and (max-width: 767px) {
    .group_news .new_item .new_img-txt .name {
        font-size: 1.8rem;
        max-height: 5rem;
    }
}

.group_news .new_item .new_img-txt .des {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #76787D;
    font-size: 1.5rem;
    margin-top: 0.8rem;
    max-height: 4.2rem;
}

@media only screen and (max-width: 767px) {
    .group_news .new_item .new_img-txt .des {
        font-size: 1.3rem;
        max-height: 3.6rem;
    }
}

.group_news .new_item .new_img-txt .viewMore {
    color: #153F17;
    display: flex;
    align-items: center;
    margin-top: 1.6rem;
    font-size: 1.6rem;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .group_news .new_item .new_img-txt .viewMore {
        font-size: 1.2rem;
    }
}

.group_news .new_item .new_img-txt .viewMore .icon_arr-right {
    display: inline-block;
    background-image: url(../images/icon_arr_right_green.svg);
    width: 1.6rem;
    height: 1.6rem;
    margin-left: 0.8rem;
}

@media only screen and (max-width: 767px) {
    .group_news .new_item .new_img-txt .viewMore .icon_arr-right {
        width: 1rem;
        height: 1rem;
    }
}

.group_news .new_item:hover .new_item-img .imgWrap img {
    transform: scale(1.1);
}

.group_news .new_item:hover .new_img-txt .name {
    color: #8FD26C;
}

.home-news {
    background-image: url(../images/bg_new.png);
    -webkit-background-size: 1920px;
    background-size: 1920px;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    z-index: 2;
    padding-top: 26rem;
    margin-top: -10rem;
    padding-bottom: 10rem;
}

@media only screen and (max-width: 1024px) {
    .home-news {
        background-image: none;
        margin-top: 0;
        padding-top: 8rem;
    }
}

@media only screen and (max-width: 767px) {
    .home-news {
        padding: 3rem 0 5rem;
    }
}

.supportHeader {
    background: linear-gradient(296.32deg, #8FD26C 0%, #DAF092 66.91%);
}

@media only screen and (max-width: 767px) {
    .supportHeader {
        background: transparent;
        padding: 2.2rem 0;
    }
}

.supportHeader .box_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 15rem;
}

@media only screen and (max-width: 767px) {
    .supportHeader .box_wrap {
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.supportHeader .box_wrap .box_text .title {
    color: #153F17;
    font-size: 3.6rem;
    font-weight: 600;
}

@media only screen and (max-width: 1024px) {
    .supportHeader .box_wrap .box_text .title {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 767px) {
    .supportHeader .box_wrap .box_text .title {
        font-size: 2.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .supportHeader .box_wrap .box_search {
        margin-top: 2.2rem;
        width: 100%;
    }
}

.supportHeader .box_wrap .box_search .form_search .search_wrap {
    width: 46rem;
    height: 4.8rem;
    background: #F2F2F2;
    border-radius: 176px;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
    .supportHeader .box_wrap .box_search .form_search .search_wrap {
        width: 38rem;
    }
}

@media only screen and (max-width: 767px) {
    .supportHeader .box_wrap .box_search .form_search .search_wrap {
        width: 100%;
    }
}

.supportHeader .box_wrap .box_search .form_search .search_wrap .search_input {
    color: #191919;
    font-size: 1.4rem;
    box-shadow: none;
    background: transparent;
    border: 0;
    height: 100%;
    padding: 0 1.6rem;
}

.supportHeader .box_wrap .box_search .form_search .search_wrap .search_submit {
    background-color: #153F17;
    -webkit-background-size: 2.2rem;
    background-size: 2.2rem;
    box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
    border-radius: 36px;
    background-image: url("../images/icon_search_green.svg");
    min-width: 9rem;
    height: 100%;
    border: 0;
    box-shadow: none;
}

@media only screen and (max-width: 767px) {
    .supportHeader .box_wrap .box_search .form_search .search_wrap .search_submit {
        min-width: 4.8rem;
        width: 4.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .list_question {
        border: 1px solid #E0E0E0;
        -webkit-border-radius: 1.5rem;
        -moz-border-radius: 1.5rem;
        border-radius: 1.5rem;
    }
}

.list_question .item {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333333;
    padding: 2.4rem 6rem 2.4rem 0;
    border-bottom: 1px solid #E0E0E0;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .list_question .item {
        padding: 2rem 5.6rem 2rem 1.2rem;
    }
}

.list_question .item::after {
    content: "";
    display: block;
    background-image: url("../images/icon_arr_bottom_green.svg");
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    -webkit-filter: brightness(0%);
    filter: brightness(0%);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: center;
    margin-top: -0.8rem;
    width: 2.4rem;
    height: 2.4rem;
}

@media only screen and (max-width: 767px) {
    .list_question .item::after {
        right: 1rem;
    }
}

.list_question .item:last-of-type {
    border-bottom: 0;
}

.list_question .item:hover {
    color: #8FD26C;
}

.list_question .item:hover::after {
    filter: none;
}

.pageSupportCenter {
    padding: 4rem 0 6rem;
}

.pageSupportCenter .box_wrap .support_title {
    color: #153F17;
    font-size: 2.4rem;
    font-weight: 600;
    padding-left: 1.5rem;
    position: relative;
}

.pageSupportCenter .box_wrap .support_title::before {
    background-color: #8FD26C;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1.6rem;
    width: 0.5rem;
    height: 3.2rem;
}

.pageSupportCenter .box_wrap .box_type .group_type {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3.6rem 3rem;
    margin-top: 4.2rem;
}

@media only screen and (max-width: 767px) {
    .pageSupportCenter .box_wrap .box_type .group_type {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.6rem 0.8rem;
        margin-top: 2.8rem;
    }
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item {
    display: inline-block;
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    padding: 3.8rem 1.5rem 3.5rem;
}

@media only screen and (max-width: 1024px) {
    .pageSupportCenter .box_wrap .box_type .group_type .type_item {
        padding: 0;
        border: 0;
        border-radius: 0;
    }
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item .icon {
    width: 9.3rem;
    height: 9.3rem;
    display: block;
    margin: auto;
}

@media only screen and (max-width: 767px) {
    .pageSupportCenter .box_wrap .box_type .group_type .type_item .icon {
        width: 7rem;
        height: 7rem;
    }
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item .icon1 {
    background-image: url("../images/icon_support_type1.svg");
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item .icon2 {
    background-image: url("../images/icon_support_type2.svg");
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item .icon3 {
    background-image: url("../images/icon_support_type3.svg");
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item .icon4 {
    background-image: url("../images/icon_support_type4.svg");
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item .icon5 {
    background-image: url("../images/icon_support_type5.svg");
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item .icon6 {
    background-image: url("../images/icon_support_type6.svg");
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item .txt {
    color: #333333;
    display: block;
    font-weight: 600;
    text-align: center;
    font-size: 1.8rem;
    margin-top: 1.4rem;
}

@media only screen and (max-width: 767px) {
    .pageSupportCenter .box_wrap .box_type .group_type .type_item .txt {
        font-size: 1.4rem;
        margin-top: 0.8rem;
    }
}

.pageSupportCenter .box_wrap .box_type .group_type .type_item:hover .txt {
    color: #8FD26C;
}

.pageSupportCenter .box_wrap .box_question {
    display: flex;
    margin-top: 5.6rem;
}

@media only screen and (max-width: 1024px) {
    .pageSupportCenter .box_wrap .box_question {
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .pageSupportCenter .box_wrap .box_question {
        margin-top: 3.6rem;
    }
}

.pageSupportCenter .box_wrap .box_question .box_title {
    width: 42.5%;
    padding-right: 2rem;
}

@media only screen and (max-width: 1024px) {
    .pageSupportCenter .box_wrap .box_question .box_title {
        width: 100%;
        padding-right: 0;
    }
}

.pageSupportCenter .box_wrap .box_question .box_title .des {
    color: #76787D;
    margin-top: 2rem;
    font-size: 1.8rem;
}

.pageSupportCenter .box_wrap .box_question .list_question {
    width: 57.5%;
}

@media only screen and (max-width: 1024px) {
    .pageSupportCenter .box_wrap .box_question .list_question {
        width: 100%;
        margin-top: 2.4rem;
    }
}

.pageSupportCategory {
    padding: 4.6rem 0 6rem;
}

@media only screen and (max-width: 767px) {
    .pageSupportCategory {
        padding: 1.6rem 0 3rem;
    }
}

.pageSupportCategory .box_wrap {
    display: flex;
}

.pageSupportCategory .box_wrap .box_type {
    width: 35%;
    padding-right: 13rem;
}

@media only screen and (max-width: 1024px) {
    .pageSupportCategory .box_wrap .box_type {
        display: none;
    }
}

.pageSupportCategory .box_wrap .box_type .support_title {
    color: #153F17;
    font-size: 2.4rem;
    font-weight: 600;
    padding-left: 1.5rem;
    position: relative;
}

.pageSupportCategory .box_wrap .box_type .support_title::before {
    background-color: #8FD26C;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1.6rem;
    width: 0.5rem;
    height: 3.2rem;
}

.pageSupportCategory .box_wrap .box_type .group_type {
    margin-top: 3rem;
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
    padding-right: 4rem;
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item .icon {
    width: 4rem;
    height: 4rem;
    display: block;
    margin-right: 1.9rem;
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item .icon1 {
    background-image: url("../images/icon_support_type1.svg");
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item .icon2 {
    background-image: url("../images/icon_support_type2.svg");
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item .icon3 {
    background-image: url("../images/icon_support_type3.svg");
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item .icon4 {
    background-image: url("../images/icon_support_type4.svg");
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item .icon5 {
    background-image: url("../images/icon_support_type5.svg");
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item .icon6 {
    background-image: url("../images/icon_support_type6.svg");
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item .txt {
    color: #333333;
    display: block;
    font-weight: 600;
    font-size: 1.8rem;
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item::after {
    content: "";
    display: block;
    background-image: url("../images/icon_arr_bottom_green.svg");
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: center;
    margin-top: -0.8rem;
    width: 2.4rem;
    height: 2.4rem;
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item:last-of-type {
    margin-bottom: 0;
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item:hover .txt {
    color: #8FD26C;
}

.pageSupportCategory .box_wrap .box_type .group_type .type_item.active .txt {
    color: #8FD26C;
}

.pageSupportCategory .box_wrap .box_content {
    width: 65%;
}

@media only screen and (max-width: 1024px) {
    .pageSupportCategory .box_wrap .box_content {
        width: 100%;
    }
}

.pageSupportCategory .box_wrap .box_content .backPage {
    color: #153F17;
    font-size: 1.8rem;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-left: 2.2rem;
}

.pageSupportCategory .box_wrap .box_content .backPage::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 9px solid #8FD26C;
    border-bottom: 7px solid transparent;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.65rem;
}

.pageSupportCategory .box_wrap .box_content .backPage:hover {
    color: #8FD26C;
}

.pageSupportCategory .box_wrap .box_content .title_type {
    color: #153F17;
    margin-top: 3rem;
    font-size: 2.4rem;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .pageSupportCategory .box_wrap .box_content .title_type {
        margin-top: 2.2rem;
    }
}

@media only screen and (max-width: 767px) {
    .pageSupportCategory .box_wrap .box_content .title_type.fz--20 {
        font-size: 2rem;
    }
}

.pageSupportCategory .box_wrap .box_content .list_question {
    margin-top: 3rem;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
}

@media only screen and (max-width: 767px) {
    .pageSupportCategory .box_wrap .box_content .list_question {
        margin-top: 2.2rem;
    }
}

.pageSupportCategory .box_wrap .box_content .list_question .item {
    padding: 2rem 6rem 2rem 1.6rem;
}

.pageSupportCategory .box_wrap .box_content .list_question .item::after {
    right: 1.6rem;
}

.pageSupportCategory .box_wrap .box_content .box_detail {
    background: #F4F6FA;
    border-radius: 15px;
    margin-top: 2.4rem;
}

.pageSupportCategory .box_wrap .box_content .box_detail .post_detail {
    font-size: 1.6rem;
    color: #333333;
    padding: 3rem;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    background: #fff;
}

@media only screen and (max-width: 767px) {
    .pageSupportCategory .box_wrap .box_content .box_detail .post_detail {
        padding: 3rem 2rem;
    }
}

.pageSupportCategory .box_wrap .box_content .box_detail .post_rate {
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .pageSupportCategory .box_wrap .box_content .box_detail .post_rate {
        flex-direction: column;
        padding: 2rem;
    }
}

.pageSupportCategory .box_wrap .box_content .box_detail .post_rate .txt {
    color: #153F17;
    font-size: 1.8rem;
    font-weight: 600;
}

.pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate {
        width: 100%;
        margin-top: 1.6rem;
    }
}

.pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate .rate_item {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000;
    min-width: 16.2rem;
    height: 5rem;
    background: #FFFFFF;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1.6rem;
}

@media only screen and (max-width: 767px) {
    .pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate .rate_item {
        min-width: unset;
        width: calc((100% - 1.6rem) / 2);
    }
}

.pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate .rate_item .icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    margin-right: 1.6rem;
}

.pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate .rate_item .icon1 {
    background-image: url("../images/icon_smile.svg");
}

.pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate .rate_item .icon2 {
    background-image: url("../images/icon_sad.svg");
}

@media only screen and (max-width: 767px) {
    .pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate .rate_item:first-of-type {
        margin-left: 0;
    }
}

.pageSupportCategory .box_wrap .box_content .box_detail .post_rate .group_rate .rate_item:hover {
    background: #8FD26C;
}

.header_aboutTk {
    background-image: url("../images/header_aboutTikop.jpg");
    -webkit-background-size: 1920px;
    background-size: 1920px;
    background-repeat: no-repeat;
    background-position: top center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25.5rem;
}

@media only screen and (max-width: 1024px) {
    .header_aboutTk {
        height: 15rem;
    }
}

@media only screen and (max-width: 767px) {
    .header_aboutTk {
        display: none;
    }
}

.header_aboutTk .box_wrap .group_nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_aboutTk .box_wrap .group_nav .link_home {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.6rem;
}

.header_aboutTk .box_wrap .group_nav .icon_arr {
    background-image: url("../images/icon_arr_home.svg");
    width: 1.1rem;
    height: 0.8rem;
    margin: 0 1rem;
}

.header_aboutTk .box_wrap .group_nav .p_txt {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.6rem;
}

.header_aboutTk .box_wrap .about-title {
    margin-top: 0.8rem;
    font-size: 4.8rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .header_aboutTk .box_wrap .about-title {
        font-size: 3.6rem;
    }
}

.pageAboutTK {
    position: relative;
    padding: 7rem 0;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK {
        padding: 4rem 0;
    }
}

.pageAboutTK::after {
    content: "";
    display: block;
    background-image: url("../images/bg_ft_about.png");
    height: 45rem;
    -webkit-background-size: 1920px;
    background-size: 1920px;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 0;
    bottom: 0;
    width: 192rem;
    margin-left: -96rem;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK::after {
        display: none;
    }
}

.pageAboutTK .box_wrap {
    position: relative;
    z-index: 5;
}

.pageAboutTK .box_wrap .group_intro {
    display: flex;
    align-items: flex-start;
    padding: 0 14rem;
}

@media only screen and (max-width: 1024px) {
    .pageAboutTK .box_wrap .group_intro {
        padding: 0;
        flex-direction: column-reverse;
    }
}

.pageAboutTK .box_wrap .group_intro .box_img {
    width: 45%;
}

@media only screen and (max-width: 1024px) {
    .pageAboutTK .box_wrap .group_intro .box_img {
        width: 50%;
        margin: 6rem auto 0;
    }
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_intro .box_img {
        width: 70%;
        margin: 4rem auto 0;
    }
}

.pageAboutTK .box_wrap .group_intro .box_img img {
    display: block;
    width: 100%;
    height: auto;
}

.pageAboutTK .box_wrap .group_intro .box_text {
    position: relative;
    width: 55%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 3rem;
    padding-left: 8rem;
}

@media only screen and (max-width: 1024px) {
    .pageAboutTK .box_wrap .group_intro .box_text {
        width: 100%;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_intro .box_text {
        grid-template-columns: 1fr;
    }
}

.pageAboutTK .box_wrap .group_intro .box_text::after {
    position: absolute;
    z-index: 0;
    content: "";
    display: block;
    background-image: url(../images/line_aboutTikop.png);
    width: 62.6rem;
    height: 27.3rem;
    bottom: -30rem;
    left: -5rem;
}

@media only screen and (max-width: 1024px) {
    .pageAboutTK .box_wrap .group_intro .box_text::after {
        display: none;
    }
}

.pageAboutTK .box_wrap .group_intro .box_text .group_txt {
    grid-area: 1/span 2;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_intro .box_text .group_txt {
        grid-area: 1/span 1;
    }
}

.pageAboutTK .box_wrap .group_intro .box_text .group_txt .h3_txt {
    color: #153F17;
    font-size: 3rem;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_intro .box_text .group_txt .h3_txt {
        text-align: center;
    }
}

.pageAboutTK .box_wrap .group_intro .box_text .group_txt .des {
    color: #76787D;
    margin-top: 2.4rem;
    font-size: 1.6rem;
}

.pageAboutTK .box_wrap .group_intro .box_text .group_txt .des strong {
    color: #333;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_intro .box_text .group_detail {
        max-width: 26.8rem;
        margin: auto;
    }
}

.pageAboutTK .box_wrap .group_intro .box_text .group_detail .icon {
    width: 7.2rem;
    height: 8rem;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_intro .box_text .group_detail .icon {
        margin: auto;
    }
}

.pageAboutTK .box_wrap .group_intro .box_text .group_detail .icon1 {
    background-image: url("../images/icon_about1.svg");
}

.pageAboutTK .box_wrap .group_intro .box_text .group_detail .icon2 {
    background-image: url("../images/icon_about1.svg");
}

.pageAboutTK .box_wrap .group_intro .box_text .group_detail .p_txt {
    color: #153F17;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1.6rem;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_intro .box_text .group_detail .p_txt {
        text-align: center;
    }
}

.pageAboutTK .box_wrap .group_intro .box_text .group_detail .p_des {
    color: #76787D;
    font-size: 1.6rem;
    margin-top: 1.6rem;
}

.pageAboutTK .box_wrap .group_feature {
    margin-top: 17rem;
}

@media only screen and (max-width: 1024px) {
    .pageAboutTK .box_wrap .group_feature {
        margin-top: 9rem;
    }
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_feature {
        margin-top: 6rem;
    }
}

.pageAboutTK .box_wrap .group_feature .h3_title {
    color: #153F17;
    font-size: 3.6rem;
    font-weight: 700;
    max-width: 52rem;
    margin: auto;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_feature .h3_title {
        font-size: 3rem;
    }
}

.pageAboutTK .box_wrap .group_feature .h3_title span {
    color: #8FD26C;
}

.pageAboutTK .box_wrap .group_feature .feature_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.6rem;
    padding: 1rem 0 2rem;
    max-width: 87.6rem;
    margin: 6rem auto 0;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_feature .feature_list {
        grid-template-columns: 1fr;
        margin-top: 4rem;
        gap: 5rem 0;
    }
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 42px 17px rgba(143, 210, 108, 0.01), 0px 24px 14px rgba(143, 210, 108, 0.05), 0px 11px 11px rgba(143, 210, 108, 0.09), 0px 3px 6px rgba(143, 210, 108, 0.1), 0px 0px 0px rgba(143, 210, 108, 0.1);
    border-radius: 8px;
    padding: 4rem 3rem;
    transition: 0.3s;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .pageAboutTK .box_wrap .group_feature .feature_list .feature_item {
        max-width: 26.8rem;
        margin: auto;
    }
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item::before {
    background: #153F17;
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    transition: 0.3s;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item div {
    position: relative;
    z-index: 2;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item .name {
    color: #153F17;
    font-size: 1.8rem;
    font-weight: 700;
    transition: 0.3s;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item .icon {
    margin-top: 2.6rem;
    width: 6rem;
    height: 6rem;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item .icon1 {
    background-image: url("../images/icon_about3.svg");
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item .icon2 {
    background-image: url("../images/icon_about4.svg");
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item .icon3 {
    background-image: url("../images/icon_about5.svg");
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item .line {
    background: #000;
    width: 2.4rem;
    height: 0.2rem;
    margin-top: 2.6rem;
    transition: 0.3s;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item .des {
    margin-top: 1.2rem;
    color: #4F4F4F;
    font-size: 1.3rem;
    transition: 0.5s;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item:hover {
    background: #153F17;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item:hover::before {
    height: 100%;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item:hover .name {
    color: #fff;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item:hover .line {
    background: #fff;
    width: 4.4rem;
}

.pageAboutTK .box_wrap .group_feature .feature_list .feature_item:hover .des {
    color: #8FD26C;
}

.pageNew-slide {
    padding: 3rem 0;
}

@media only screen and (max-width: 767px) {
    .pageNew-slide {
        padding: 2rem 0;
    }
}

.pageNew-slide .box_wrap .swiper-container {
    padding-bottom: 0;
}

.pageNew-slide .box_wrap .swiper-container .swiper-pagination {
    bottom: 1.6rem;
}

@media only screen and (max-width: 767px) {
    .pageNew-slide .box_wrap .swiper-container .swiper-pagination {
        bottom: 0.6rem;
    }
}

.pageNew-slide .box_wrap .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background: #8FD26C;
}

.group_pagination {
    margin-top: 5rem;
}

@media only screen and (max-width: 767px) {
    .group_pagination {
        margin-top: 2.8rem;
    }
}

.group_pagination .pagination {
    justify-content: center;
    flex-wrap: wrap;
}

.group_pagination .pagination .page-item .page-link {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    font-size: 1.6rem;
    color: black;
    padding: 0;
    text-align: center;
    border: 0;
    border-radius: 50%;
    margin: 0.5rem 0.8rem;
}

@media only screen and (max-width: 767px) {
    .group_pagination .pagination .page-item .page-link {
        margin: 0.2rem 0.2rem;
        width: 3.2rem;
        height: 3.2rem;
        line-height: 3.2rem;
        font-size: 1.4rem;
    }
}

.group_pagination .pagination .page-item.active .page-link {
    background: #F2F2F2;
}

.pageNew {
    padding: 3rem 0 7rem;
}

@media only screen and (max-width: 767px) {
    .pageNew {
        padding: 1rem 0 4rem;
    }
}

.pageNew .box_wrap .new_search .form_search .search_wrap {
    height: 5.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .pageNew .box_wrap .new_search .form_search .search_wrap {
        height: 4rem;
    }
}

.pageNew .box_wrap .new_search .form_search .search_wrap .search_input {
    color: #191919;
    font-size: 1.6rem;
    box-shadow: none;
    border: 0;
    height: 100%;
    padding: 0 1.6rem 0 5.8rem;
    background-color: #F2F4F8;
    border-radius: 12px;
    max-width: 69rem;
    background-image: url("../images/icon_search_black.svg");
    background-size: 2.4rem;
    background-repeat: no-repeat;
    background-position: 2rem center;
}

@media only screen and (max-width: 767px) {
    .pageNew .box_wrap .new_search .form_search .search_wrap .search_input {
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        font-size: 1.4rem;
        -webkit-background-size: 1.8rem;
        background-size: 1.8rem;
        background-position: 1rem center;
        padding: 0 1.2rem 0 3.8rem;
    }
}

.pageNew .box_wrap .new_search .form_search .search_wrap .search_submit {
    background-color: #000;
    border-radius: 12px;
    min-width: 11.8rem;
    height: 100%;
    border: 0;
    box-shadow: none;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    margin-left: 2rem;
}

@media only screen and (max-width: 767px) {
    .pageNew .box_wrap .new_search .form_search .search_wrap .search_submit {
        margin-left: 0.8rem;
        font-size: 1.4rem;
        min-width: 7.8rem;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
}

.pageNew .box_wrap .group_news {
    margin-top: 4.8rem;
}

@media only screen and (max-width: 767px) {
    .pageNew .box_wrap .group_news {
        margin-top: 2.8rem;
    }
}

.header_carrer {
    background-image: url("../images/header_aboutTikop.jpg");
    -webkit-background-size: 1920px;
    background-size: 1920px;
    background-repeat: no-repeat;
    background-position: top center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25.5rem;
}

@media only screen and (max-width: 767px) {
    .header_carrer {
        background-image: none;
        height: auto;
        padding: 3rem 0 1rem;
    }
}

.header_carrer .box_wrap .group_nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .header_carrer .box_wrap .group_nav {
        display: none;
    }
}

.header_carrer .box_wrap .group_nav .link_home {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.6rem;
}

.header_carrer .box_wrap .group_nav .icon_arr {
    background-image: url("../images/icon_arr_home.svg");
    width: 1.1rem;
    height: 0.8rem;
    margin: 0 1rem;
}

.header_carrer .box_wrap .group_nav .p_txt {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.6rem;
}

.header_carrer .box_wrap .about-title {
    margin-top: 0.8rem;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .header_carrer .box_wrap .about-title {
        color: #153F17;
        font-size: 2.4rem;
    }
}

.header_carrer .box_wrap .carrer_search {
    background: #FFFFFF;
    box-shadow: 0px 0px 21px -5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.6rem;
    margin-top: 1.6rem;
}

@media only screen and (max-width: 767px) {
    .header_carrer .box_wrap .carrer_search {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
}

.header_carrer .box_wrap .carrer_search .form_search .search_wrap {
    height: 4.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .header_carrer .box_wrap .carrer_search .form_search .search_wrap {
        height: auto;
        flex-direction: column;
    }
}

.header_carrer .box_wrap .carrer_search .form_search .search_wrap .search_input {
    color: #191919;
    font-size: 1.6rem;
    font-weight: 500;
    box-shadow: none;
    border: 0;
    height: 100%;
    padding: 0 1.6rem 0 5.8rem;
    background-color: #F2F4F8;
    border-radius: 12px;
    width: 63rem;
    max-width: 100%;
    background-image: url("../images/icon_search_black.svg");
    background-size: 2.4rem;
    background-repeat: no-repeat;
    background-position: 2rem center;
}

@media only screen and (max-width: 767px) {
    .header_carrer .box_wrap .carrer_search .form_search .search_wrap .search_input {
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        font-size: 1.4rem;
        -webkit-background-size: 1.8rem;
        background-size: 1.8rem;
        background-position: 1rem center;
        padding: 0 1.2rem 0 3.8rem;
        height: 4.6rem;
    }
}

.header_carrer .box_wrap .carrer_search .form_search .search_wrap .select_carrer {
    font-size: 1.6rem;
    font-weight: 500;
    border: 2px solid #F2F4F8;
    border-radius: 12px;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
    background-image: url(../images/icon_arr_bottom_green.svg);
    background-repeat: no-repeat;
    background-position: right 0.8rem top 1rem;
    display: block;
    height: 100%;
    margin-left: 1.6rem;
    width: 30.4rem;
    padding: 0 4rem 0 1.2rem;
}

@media only screen and (max-width: 767px) {
    .header_carrer .box_wrap .carrer_search .form_search .search_wrap .select_carrer {
        height: 4.6rem;
        margin-top: 1.2rem;
        width: 100%;
        margin-left: 0;
        border-radius: 4px;
    }
}

.header_carrer .box_wrap .carrer_search .form_search .search_wrap .search_submit {
    background-color: #000;
    border-radius: 12px;
    min-width: 11.8rem;
    height: 100%;
    border: 0;
    box-shadow: none;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    margin-left: 2rem;
}

@media only screen and (max-width: 767px) {
    .header_carrer .box_wrap .carrer_search .form_search .search_wrap .search_submit {
        margin-left: 0;
        width: 100%;
        margin-top: 1.2rem;
        height: 4.6rem;
        line-height: 4.6rem;
        border-radius: 4px;
    }
}

.pageCarrer {
    padding: 4rem 0 6rem;
}

@media only screen and (max-width: 767px) {
    .pageCarrer {
        padding: 3rem 0 4rem;
    }
}

.pageCarrer .box_wrap {
    max-width: 112rem;
    margin: auto;
}

.pageCarrer .box_wrap .carrer_item {
    border-bottom: 1px solid #00000014;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 1024px) {
    .pageCarrer .box_wrap .carrer_item {
        padding-bottom: 1.6rem;
        margin-bottom: 1.6rem;
    }
}

.pageCarrer .box_wrap .carrer_item .carrer_name {
    color: #8FD26C;
    font-size: 3rem;
    font-weight: 500;
    display: inline-block;
}

@media only screen and (max-width: 1024px) {
    .pageCarrer .box_wrap .carrer_item .carrer_name {
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 767px) {
    .pageCarrer .box_wrap .carrer_item .carrer_name {
        font-size: 1.8rem;
    }
}

.pageCarrer .box_wrap .carrer_item .carrer_info {
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .pageCarrer .box_wrap .carrer_item .carrer_info {
        display: block;
        margin-top: 0.8rem;
    }
}

.pageCarrer .box_wrap .carrer_item .carrer_info .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .pageCarrer .box_wrap .carrer_item .carrer_info .item {
        display: inline-block;
        position: relative;
        border-right: 1px solid #828282;
        padding-right: 0.8rem;
        margin-right: 0.8rem;
        margin-bottom: 0.8rem;
    }
}

.pageCarrer .box_wrap .carrer_item .carrer_info .item .item_icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.8rem;
}

@media only screen and (max-width: 1024px) {
    .pageCarrer .box_wrap .carrer_item .carrer_info .item .item_icon {
        width: 2rem;
        height: 2rem;
        margin-right: 0.4rem;
    }
}

@media only screen and (max-width: 767px) {
    .pageCarrer .box_wrap .carrer_item .carrer_info .item .item_icon {
        display: none;
    }
}

.pageCarrer .box_wrap .carrer_item .carrer_info .item .item_icon1 {
    background-image: url("../images/icon_carrer1.svg");
}

.pageCarrer .box_wrap .carrer_item .carrer_info .item .item_icon2 {
    background-image: url("../images/icon_carrer2.svg");
}

.pageCarrer .box_wrap .carrer_item .carrer_info .item .item_icon3 {
    background-image: url("../images/icon_carrer3.svg");
}

.pageCarrer .box_wrap .carrer_item .carrer_info .item .item_icon4 {
    background-image: url("../images/icon_carrer4.svg");
}

.pageCarrer .box_wrap .carrer_item .carrer_info .item .item_text {
    font-size: 1.6rem;
}

@media only screen and (max-width: 1024px) {
    .pageCarrer .box_wrap .carrer_item .carrer_info .item .item_text {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 767px) {
    .pageCarrer .box_wrap .carrer_item .carrer_info .item:last-of-type {
        border-right: 0;
        padding-right: 0;
        margin-right: 0;
    }
}

.footer {
    background: #153F17;
    padding: 3.6rem 0 0;
    color: #fff;
}

.footer .is-tablet {
    display: none;
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .footer .is-tablet {
        display: block;
    }

    .footer .is-mobile-pc {
        display: none;
    }
}


@media only screen and (max-width: 1024px) {
    .footer {
        padding-top: 6rem;
    }
}

.footer .footer_top {
    padding-bottom: 3.4rem;
}

.footer .footer_top .box_wrap {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

@media only screen and (max-width: 1024px) {
    .footer .footer_top .box_wrap {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 5rem;
    }
}

@media only screen and (max-width: 767px) {
    .footer .footer_top .box_wrap {
        grid-template-columns: 1fr;
    }
}

.footer .footer_top .box_wrap .f-col .f-logo {
    display: block;
    width: 8.2rem;
    height: 8.2rem;
    background-image: url("../images/logo.svg");
}

.footer .footer_top .box_wrap .f-col .name {
    color: #8FD26C;
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer .footer_top .box_wrap .f-col .p_txt {
    margin-top: 1.4rem;
    font-size: 1.4rem;
}

.footer .footer_top .box_wrap .f-col .group_social {
    margin-top: 2.3rem;
}

.footer .footer_top .box_wrap .f-col .group_social .social_item {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    margin-right: 1.1rem;
}

.footer .footer_top .box_wrap .f-col .group_social .social_item-fb {
    background-image: url("../images/icon_footer_fb.svg");
}

.footer .footer_top .box_wrap .f-col .group_social .social_item-yt {
    background-image: url("../images/icon_footer_yt.svg");
}

.footer .footer_top .box_wrap .f-col .group_social .social_item-group {
    background-image: url("../images/icon_footer_group.svg");
}

.footer .footer_top .box_wrap .f-col .group_social .social_item-tiktok {
    background-image: url("../images/icon_footer_tiktok.svg");
}

.footer .footer_top .box_wrap .f-col .group_social .social_item:last-of-type {
    margin-right: 0;
}

.footer .footer_top .box_wrap .f-col .f-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    margin-top: 3.2rem;
}

.footer .footer_top .box_wrap .f-col .f-title:first-of-type {
    margin-top: 0;
}

.footer .footer_top .box_wrap .f-col .f-ul li {
    margin-bottom: 0.9rem;
}

.footer .footer_top .box_wrap .f-col .f-ul li a {
    color: #fff;
    display: block;
    font-size: 1.4rem;
}

.footer .footer_top .box_wrap .f-col .f-ul li a:hover {
    color: #8FD26C;
}

.footer .footer_top .box_wrap .f-col .f-ul li:last-of-type {
    margin-bottom: 0;
}

.footer .footer_top .box_wrap .f-col .hotline_item {
    margin-bottom: 2.4rem;
}

.footer .footer_top .box_wrap .f-col .hotline_item .hl_txt {
    font-size: 1.4rem;
}

.footer .footer_top .box_wrap .f-col .hotline_item .hl_txt .span_note {
    display: block;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer .footer_top .box_wrap .f-col .hotline_item .hl_info {
    color: #8FD26C;
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.footer .footer_top .box_wrap .f-col .hotline_item .registerNow {
    color: #153F17;
    background: #8FD26C;
    padding: 1.1rem 1.5rem;
    margin-top: 1.2rem;
    font-size: 1.6rem;
    font-weight: 600;
    display: block;
    text-align: center;
    max-width: 21.4rem;
}

.footer .footer_top .box_wrap .f-col .hotline_item .registerNow:hover {
    background: #153F17;
    color: #8FD26C;
}

.footer .footer_top .box_wrap .f-col .hotline_item:last-of-type {
    margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
    .footer .footer_top .box_wrap .f-col:first-of-type {
        grid-area: 1/span 2;
    }
}

@media only screen and (max-width: 767px) {
    .footer .footer_top .box_wrap .f-col:first-of-type {
        grid-area: 1/span 1;
    }
}

.footer .footer_bottom .box_wrap .txt_copyright {
    border-top: 1px solid white;
    color: #fff;
    font-size: 1.4rem;
    padding: 2.2rem 0 2.8rem;
}

.pageCarrerDetail {
    padding: 4.5rem 0 6rem;
}

@media only screen and (max-width: 767px) {
    .pageCarrerDetail {
        padding: 3rem 0 4rem;
    }
}

.pageCarrerDetail .box_wrap {
    max-width: 120rem;
    margin: auto;
}

.pageCarrerDetail .box_wrap .carrer_title {
    color: #153F17;
    font-size: 3.6rem;
    font-weight: 600;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .pageCarrerDetail .box_wrap .carrer_title {
        font-size: 2.4rem;
    }
}

.pageCarrerDetail .box_wrap .carrer_info {
    text-align: center;
    margin-top: 1.8rem;
}

.pageCarrerDetail .box_wrap .carrer_info .item {
    display: inline-block;
    border-right: 1px solid #828282;
    padding-right: 1rem;
    margin-right: 1rem;
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

@media only screen and (max-width: 767px) {
    .pageCarrerDetail .box_wrap .carrer_info .item {
        font-size: 1.3rem;
        padding-right: 0.5rem;
        margin-right: 0.5rem;
    }
}

.pageCarrerDetail .box_wrap .carrer_info .item .item-title {
    display: inline-block;
    color: #828282;
    margin-right: 0.6rem;
}

@media only screen and (max-width: 767px) {
    .pageCarrerDetail .box_wrap .carrer_info .item .item-title {
        display: none;
        margin-right: 0;
    }
}

.pageCarrerDetail .box_wrap .carrer_info .item .item-des {
    display: inline-block;
    color: #333333;
    font-weight: 600;
}

.pageCarrerDetail .box_wrap .carrer_info .item:last-of-type {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

.pageCarrerDetail .box_wrap .nav_mb {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .pageCarrerDetail .box_wrap .nav_mb {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2.4rem;
    }
}

.pageCarrerDetail .box_wrap .nav_mb .item {
    color: #76787D;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    margin-right: 1.6rem;
}

.pageCarrerDetail .box_wrap .nav_mb .item:last-of-type {
    margin-right: 0;
}

.pageCarrerDetail .box_wrap .nav_mb .item.active {
    color: #153F17;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: #8FD26C;
    text-decoration-thickness: 2px;
}

.pageCarrerDetail .box_wrap .nav_mb.fixed {
    position: fixed;
    width: 100%;
    z-index: 30;
    background: #fff;
    padding: 2rem 0;
    left: 0;
    margin-top: 0;
}

@media only screen and (max-width: 1024px) {
    .pageCarrerDetail .box_wrap .nav_mb.fixed {
        top: 7rem;
    }
}

@media only screen and (max-width: 767px) {
    .pageCarrerDetail .box_wrap .nav_mb.fixed {
        top: 6rem;
    }
}

.pageCarrerDetail .box_wrap .carrer_post {
    margin-top: 4.2rem;
    display: flex;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_content {
    font-size: 1.6rem;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .pageCarrerDetail .box_wrap .carrer_post .carrer_content {
        display: none;
    }
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_content.active {
    display: block;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form {
    background: #153F17;
    border-radius: 20px;
    padding: 3.2rem;
    min-width: 34rem;
    max-width: 34rem;
    margin-left: 3rem;
    height: fit-content;
}

@media only screen and (max-width: 1024px) {
    .pageCarrerDetail .box_wrap .carrer_post .carrer_form {
        display: none;
        margin-left: 0;
        width: 100%;
        max-width: unset;
        min-width: unset;
    }
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .h3_title {
    color: #fff;
    text-align: center;
    font-size: 3.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 2.1rem;
    margin-bottom: 1.6rem;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .h3_title::after {
    background: #8FD26C;
    content: "";
    display: block;
    z-index: 1;
    width: 5rem;
    height: 0.5rem;
    bottom: 0;
    margin-left: -2.5rem;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .form-group {
    margin-bottom: 1.6rem;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .form-group .txt_label {
    color: #8FD26C;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .form-group .input_carrer {
    border: 1px solid #8FD26C;
    box-shadow: 0px 4px 16px rgba(51, 51, 51, 0.08);
    border-radius: 5px;
    font-size: 1.5rem;
    height: 4.6rem;
    padding: 0 1.5rem;
    font-weight: 500;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .form-group .input_file {
    padding: 1rem 1.5rem;
    height: auto;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .form-group .input_file::-webkit-file-upload-button {
    background: #fff;
    border: 1px solid #8FD26C;
    border-radius: 40px;
    cursor: pointer;
    font-size: 15px;
    outline: none;
    padding: 0.6rem 1rem;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .form-group .input_file::-webkit-file-upload-button:hover {
    background: #8FD26C;
    color: #fff;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .form-group textarea.input_carrer {
    padding: 1.2rem 1.5rem;
    height: auto;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .form-group .label_error {
    color: red;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form .form_wrap .submit_carrer {
    background: #8FD26C;
    color: #153F17;
    display: block;
    width: 100%;
    height: 5.8rem;
    line-height: 5.8rem;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    border: 0;
    outline: none;
    box-shadow: none;
}

.pageCarrerDetail .box_wrap .carrer_post .carrer_form.active {
    display: block;
}

.backTop {
    background-image: url("../images/icon_backToTop.svg");
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    position: fixed;
    right: 4.5rem;
    bottom: 8rem;
    z-index: 50;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 767px) {
    .backTop {
        width: 4rem;
        height: 4rem;
        right: 1rem;
        bottom: 5rem;
    }
}

.backTop.show {
    opacity: 1;
    visibility: visible;
    bottom: 12rem;
}

@media only screen and (max-width: 767px) {
    .backTop.show {
        bottom: 7rem;
    }
}

.chatSupport {
    background-image: url("../images/icon_support.svg");
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    position: fixed;
    z-index: 50;
    right: 4.4rem;
    bottom: 5rem;
}

@media only screen and (max-width: 767px) {
    .chatSupport {
        right: 0.7rem;
        bottom: 1rem;
    }
}

@media only screen and (max-width: 576px) {

    .restyle-mobile *,
    .restyle-mobile #body_content div.content strong {
        font-family: "iCiel Helvetica Now Text" !important;
    }
    /*Fix máº¥t icon cá»§a FontAwesome do Ä‘á»•i font-family*/
    .restyle-mobile i.fa, restyle-mobile i.fas, .restyle-mobile i[class^='fa-'], .restyle-mobile i[class*=' fa-'] {
        font-family: 'Font Awesome\ 5 Free' !important;
    }

    .restyle-mobile .interest_title span {
        color: var(--Gray-08, #495057) !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .restyle-mobile #body_content_collapese .content strong,
    .restyle-mobile #body_content_collapese .content span,
    .restyle-mobile #body_content_collapese .content p {
        font-size: 14px !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 20px !important; /* 142.857% */
        color: var(--Gray-08, #495057) !important;
    }

    .restyle-mobile #body_content_collapese .content a {
        font-size: 14px !important;
        font-style: normal !important;
        line-height: 20px !important; /* 142.857% */
    }

    .restyle-mobile #body_content_collapese .content h2 {
        color: var(--Primary-04, #23B701) !important;
        font-size: 20px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
    }

    .restyle-mobile #body_content_collapese .content h3 {
        color: var(--Gray-10, #212529) !important;
        font-size: 16px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        line-height: 20px !important; /* 125% */
        margin-top: 8px !important;
    }

    .restyle-mobile #body_content_collapese .content .box-info p {
        color: var(--Primary-06, #153F17) !important;
        font-size: 16px !important;
    }

    .restyle-mobile .interest_title p {
        color: var(--Gray-10, #212529) !important;
        font-size: 24px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        line-height: 32px !important;
    }

    .restyle-mobile .interest_step_title,
    .restyle-mobile .interest_step_title p {
        color: #83E214 !important;
        font-size: 18px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        line-height: 24px !important; /* 125% */
    }

    .restyle-mobile .interest_step_des_label,
    .restyle-mobile .interest_step_des_label p {
        color: var(--green-1, #153F17) !important;
        font-size: 14px !important;
        font-style: normal !important;
        font-weight: 500 !important;
        line-height: 160% !important;
    }

    .restyle-mobile .interest_step_des_input p {
        color: var(--Gray-3, #828282) !important;
        font-size: 14px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 20px !important;
    }

    .restyle-mobile .interest_content_posts_title {
        color: var(--Grey-Black-95, #292929) !important;
        font-size: 18px !important;
        font-style: normal !important;
        font-weight: 500 !important;
        line-height: 24px !important;
    }

    .restyle-mobile .interest_content_posts_title {
        border-left: 4px solid #83E214 !important;
    }

    .restyle-mobile .interest_content_posts_item p a {
        color: var(--Gray-10, #212529) !important;
        font-size: 16px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        line-height: 160% !important; /* 22.4px */
    }

    .restyle-mobile .interest_content_posts_item div.post_date_source,
    .restyle-mobile .interest_content_posts_item div.post_date_source p {
        color: var(--Gray-3, #828282) !important;
        font-family: Mulish;
        font-size: 12px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 140% !important; /* 16.8px */
    }

    .restyle-mobile .interest_content_posts_item .post_date_source .box_dot {
        top: 0 !important;
        bottom: 0;
    }

    .restyle-mobile .interest_action button {
        background: var(--Primary-03, #83E214) !important;
        color: var(--Primary-06, #153F17) !important;
        text-align: center !important;
        font-size: 18px !important;
        font-style: normal !important;
        font-weight: 500 !important;
        line-height: 24px !important; /* 133.333% */
    }

    .restyle-mobile #body_content_collapese .content h1 {
        color: var(--Primary-05, #066000) !important;
        font-size: 24px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        line-height: 32px !important; /* 133.333% */
    }

    .restyle-mobile #body_content_collapese .box-info {
        padding: 16px !important;
    }

    .restyle-mobile #body_content_collapese .box-info,
    .restyle-mobile #body_content_collapese div.box-info p {
        background: var(--Primary-01, #F0FFE2) !important;
        color: var(--Primary-06, #153F17) !important;
        text-align: center !important;
        font-size: 16px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        line-height: 20px !important; /* 125% */
    }

    .restyle-mobile .interest_step_des_row {
        margin: 8px 16px 16px 16px !important;
    }

    .restyle-mobile .interest_step_des_row:last-child {
        padding-bottom: 16px !important;
        margin-bottom: 0 !important;
    }

    .restyle-mobile .interest_step_des_label p {
        color: var(--Gray-10, #212529) !important;
        font-weight: 700 !important;
        line-height: 20px !important; /* 142.857% */
    }

    .restyle-mobile .interest_step_des_label span {
        color: var(--Gray-07, #868E96) !important;
        font-weight: 400 !important;
        line-height: 20px !important; /* 142.857% */
    }

    .restyle-mobile .interest_step_des_label {
        margin-bottom: 0 !important;
    }

    .restyle-mobile .interest_step_des_label span {
        margin: 8px 0 !important;
        display: block;
    }

    .restyle-mobile .interest_step_des_input .form-select input {
        text-align: left !important;
        color: var(--Gray-10, #212529) !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        line-height: 20px !important; /* 142.857% */
    }

    .restyle-mobile .interest_step_des_input input {
        text-align: left !important;
        padding: 16px 8px !important;
    }

    .restyle-mobile .interest_step_des_select {
        padding: 0 8px !important;
    }

    .restyle-mobile .interest_step_des_input:not(.date) img, .restyle-mobile .interest_step_des_input:not(.date) p {
        display: none;
    }

    .restyle-mobile .body_content {
        margin: 0 !important;
    }

    .restyle-mobile #body_content_collapese table {
        width: 100% !important;
    }

    .restyle-mobile #body_content_collapese {
        margin-bottom: 10px !important;
    }
    .restyle-mobile .box-convert1 .title-box {
        color: #23B701;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 8px;
    }
    .restyle-mobile .box-article-realed {
        background-color: #F0FFE2;
        padding: 16px;
    }
    .restyle-mobile .list_item_view_more li::marker {
        color: #23B701;
    }
    .restyle-mobile .list_item_view_more li a {
        font-weight: 400;
        color: #212529;
    }
    .restyle-mobile .title-box {
        color: #212529;
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
    }

}

/*# sourceMappingURL=style.css.map */