* {
    padding: 0;
    margin: 0;
    word-break: keep-all;
    scroll-behavior: smooth;
}

*,
::before,
::after {
    background-repeat: no-repeat;
    box-sizing: border-box;
}

img{
    aspect-ratio: attr(width) / attr(height);
}

body {
    font-family: 'Spoqa Han Sans Neo', sans-serif;
    line-height: 1.5;
    color: #171130;
}

.container {
    max-width: 1080px;
    padding: 0 30px;
    margin: 0 auto;
}

@import './section/section-benefit.css';

ul,
ol {
    list-style: none;
}

/* HEADER */
.toggleMenu {
    display: none;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.header-home .header {
    position: absolute;
}

.header.is-sticky {
    position: fixed;
    animation: slideDown 0.35s ease-out;
    background: #fff;
    border-bottom: 1px solid #eee;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.header_content .logo {
    width: 200px;
    height: 34px;
}

.header_content .logo a {
    display: block;
    max-width: 146px;
}

.header_content .logo img {
    display: block;
}

.header-home .header_content .logo .logo-black {
    display: none;
}

.header-home .header_content .logo .logo-white {
    display: block;
}

.header-home .header.is-sticky .header_content .logo .logo-black {
    display: block;
}

.header-home .header.is-sticky .header_content .logo .logo-white {
    display: none;
}

.header-home .header_nav li a {
    color: #fff;
}

.header_content .logo .logo-white {
    display: none;
}

.header.is-sticky .header_nav li a {
    color: #8089A0;
}

.header.is-sticky .header_nav li a:hover {
    color: #000;
}

.header_info {
    display: flex;
    align-items: center;
    justify-content: end;
    width: calc(100% - 200px);
    padding-right: 100px;
    position: relative;
}

.header_user {
    position: absolute;
    right: 0;
    z-index: 10;
}

.header_user_text {
    display: none;
}

.header_nav li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 50px;
}

.header_nav li a {
    color: #8089A0;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: block;
    line-height: 21px;
    border-radius: 50px;
}

.header_nav li a.active {
    padding: 0;
    /* min-width: 78px; */
    text-align: center;
    color: #000;
    pointer-events: none;
    background: none;
}

.header.is-sticky .header_nav li a.active {
    color: #000;
}

.header_nav li a:hover {
    color: #00A05E;
}

.header_user a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    position: relative;
    background: #00A05E;
    padding: 10px 21px;
    border-radius: 30px;
}






/* Body */
.section_banner {
    position: relative;
}

.section_banner img {
    width: 100%;
    display: block;
}

.section_banner .content_banner .container {
    width: 100%;
}

.section_banner .content_banner h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.4;
}

.section_banner .content_banner h1 span {
    font-weight: 200;
    display: block;
}

.section_intro {
    margin: 100px 0 0;
    padding: 0 50px;
}

.section_intro .content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content .box_img {
    width: 50%;
    text-align: center;
}

.content .box_info {
    width: 50%;
    padding: 0 75px;
}

.section_intro .content .box_info {
    padding-right: 0;
}

.section_intro .box_info .title {
    font-weight: 600;
    font-size: 40px;
    line-height: 55px;
    color: #171130;
    margin-bottom: 20px;
}

.section_intro .box_info .des .action {
    margin: 35px 0 0;
}

.link_btn {
    background: #00A05E;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
}

.link_btn span {
    display: inline-block;
    vertical-align: middle;
}

.link_btn span.mdi {
    font-size: 21px;
    font-weight: 400;
    padding-left: 15px;
}

.section_advantage {
    margin: 0;
    padding: 140px 0 100px;
    background: #F0F3F9;
}

.content .item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.content .item.item_iamges_left .box_img {
    text-align: left;
}

.content .item.item_iamges_left .box_img img {
    margin: 0;
}

.content .item.item_iamges_right .box_img {
    text-align: right;
}

.content .item.item_iamges_right img {
    margin: 0;
    display: inline-block;
}

.content .item:nth-child(2n) .box_info {
    order: -1;
}

.content .box_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.content .box_info h3.title {
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    color: #00A05E;
    margin: 0 0 10px;
}

.content .box_info .sub_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #171130;
    margin: 0 0 15px;
}

.content .box_info .des p {
    font-size: 18px;
    line-height: 27px;
    color: #959595;
    font-weight: 400;
}

.section_intro .box_info .des p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #00A05E;
}

.content .box_info .des .action {
    margin: 25px 0 0;
}

.link_btn_icon {
    background: #00A05E;
    display: inline-block;
    color: #fff;
    height: 48px;
    width: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    font-size: 24px;
}

.section_membership {
    text-align: center;
    padding: 120px 50px;
    position: relative;
    background-image: url(../images/wise_bg_1.webp);
    background-size: cover;
    background-position: center;
}

.section_membership .img_bg img {
    width: 100%;
}

.section_membership .caption_content h2 {
    font-weight: 200;
    font-size: 44px;
    line-height: 1.4;
    color: #fff;
}

.section_membership .caption_content h2 b {
    font-weight: 700;
}

.section_membership .caption_content h4 {
    color: #00A05E;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section_membership .caption_content .items {
    margin: 50px auto 0;
    max-width: 1000px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section_membership .caption_content .items li {
    font-weight: 200;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    margin: 0 10px 20px;
    width: calc(50% - 20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    min-height: 236px;
    padding: 40px;
    text-align: left;
}

.section_membership .caption_content .items li span {
    font-size: 18px;
    font-weight: 400;
}

.section_membership .caption_content .items li span.icon {
    display: flex;
    margin-bottom: 20px;
    background: #3B73DE;
    width: 60px;
    height: 60px;
    align-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    justify-content: center;
}

.section_membership .caption_content .items li .icon.handshake {
    background: #0FA7B0;
}

.section_membership .caption_content .items li span.icon img {
    display: block;
}

.section_benefits {
    padding: 84px 0;
    position: relative;
    background-image: url(../images/mask_bg.webp);
    background-size: cover;
    background-position: center;
}

.section_benefits .img_bg img {
    width: 100%;
}

.section_benefits .caption_content .content {
    text-align: center;
}

.section_benefits .caption_content .content h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 55px;
    color: #fff;
    margin-bottom: 25px;
}

.section_interger {
    padding: 140px 0;
    text-align: center;
}

/* .section_interger .container {
    padding: 140px 0;
    text-align: center;
} */


.section_interger .section_title {
    margin: 0 auto;
    padding: 0 16px;
    max-width: 1250px;
}

.section_title {
    text-align: center;
}

.section_title h2,
.section_title h4 {
    font-size: 44px;
    line-height: 1.4;
}

.section_title h4 {
    font-weight: 200;
}

.section_title p {
    font-size: 16px;
    color: #8089A0;
    margin-top: 20px;
}

.section_interger_content .list_brand {
    margin: 40px 0;
}

.section_interger_content .list_brand ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.section_interger_content .list_brand li {
    display: inline-block;
    margin: 0 30px;
}

.section_interger_box {
    background: #F0F3F9;
    border-radius: 20px;
    padding: 30px;
}

.section_interger_box h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 30px;
}

.section_interger_box ul  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.section_interger_box ul .icon  {
    flex-shrink: 0;
}

.section_interger_box ul .text  {
    flex-grow: 1;
    white-space: nowrap;
}

.section_interger_box ul li {
    display: inline-block;
    margin: 0 10px;
    font-size: 16px;
    color: #000;
}

.section_interger_box ul p {
    display: flex;
    justify-content: flex-start;
    gap:10px;
    font-size: 16px;
    width: 100%;
}

.section_interger_box ul p .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
}

.section_interger_box ul p .icon img{
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.number {
    width: 28px;
    height: 28px;
    display: inline-block;
    background: #00A05E;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    line-height: 28px;
    margin-right: 12px;
}

.section_advantage .section_title {
    margin-bottom: 60px;
}

.section_advantage_box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.section_box_top {
    margin-bottom: 20px;
    display: flex;
}

.section_box_top .section_box_title,
.section_box_top .section_box_title h3 {
    font-size: 22px;
}

.section_box_top .section_box_title .wrapper-text {
    display: flex;
    align-items: flex-start;
}

.section_box_top .section_box_title .wrapper-text .link_btn {
    border-radius: 10px;
    margin-left: 10px;
}

.section_box_top .section_box_title span {
    font-size: 22px;
}

.section_advantage .section_advantage_box .section_box_top .section_box_title h3 {
    margin-bottom: 20px;
}

.section_box_top .section_box_title p {
    color: #8089A0;
    font-size: 18px;
}

.section_box_top .section_box_title h3 span {
    color: #00A05E;
    display: block;
}

@media (min-width: 600px) {
    .section_advantage .section_advantage_box .section_box_top .section_box_title h3 {
        margin-bottom: 10px;
        font-size: 32px;
    }

    .section_advantage .section_advantage_box .section_box_top .section_box_title h3 span {
        display: inline;
        font-size: 32px;
    }
}

.box_images_gruop {
    display: flex;
    margin: 0 -10px;
}

.box_images_gruop .box_images_gruop_item {
    width: 100%;
    margin: 0 10px;
}

.section_advantage_box.section_advantage_box_nopadding {
    padding-bottom: 0;
}

.section_box_content img {
    display: block;
}

.slide-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 111;
    color: #fff;
    font-size: 12px;
}

.slide-scroll::before {
    height: 40px;
    width: 1px;
    background: #fff;
    display: block;
    content: "";
    margin: 0 auto 10px;
}

.page-title {
    text-align: center;
    margin: 70px 0 60px;
}

.page-title h1 {
    font-size: 48px;
    margin-bottom: 5px;
}

.page-title h3 {
    font-size: 20px;
    color: #8089A0;
    font-weight: 400;
}


/* Footer */
.footer-container {
    border-top: 1px solid #E0E5EF;
}

.footer_content {
    padding: 35px 0;
}

.footer_content .f_info {
    text-align: left;
    color: #656D80;
    font-size: 14px;
    margin-top: 20px;
}

.footer_content .f_info h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer_bottom {
    border-top: 1px solid #E0E5EF;
    overflow: hidden;
    padding: 20px 0;
}

.footer_content .f_info li {
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: #171130;
    margin-left: 28px;
}

.footer_content .f_info li a {
    color: #171130;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.footer_content .f_info li:last-child {
    display: block;
    margin: 8px 0 0;
}

.footer_content .f_info p span {
    margin: 0 10px;
}

.copyright {
    text-align: center;
    float: left;
}

.copyright p {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #656D80;
}

.overlay {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: none;
    transition: 0.3s;
}

.open_menu .overlay {
    display: block;
}

.footer_bottom ul {
    float: right;
}

.footer_bottom ul li {
    display: inline-block;
    margin-left: 25px;
}

.footer_bottom ul li a {
    text-decoration: none;
    color: #656D80;
    font-size: 14px;
}



/* Intro Page */

.section_intro_shipping {
    margin: 80px 0 0;
    text-align: center;
}

.head_title {
    text-align: center;
    margin: 0 0 50px;
}

.head_title h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 1.5;
    color: #8089A0;
}

.head_title h2 b {
    color: #000;
}

.section_wisexpress_top {
    margin-bottom: 100px;
}

.section_business {
    margin: 50px 0 0;
    text-align: center;
}

.section_business h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 55px;
    color: #00A05E;
    margin: 0 0 35px;
}

.process_box li {
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    margin-right: 20px;
    padding-right: 62px;
    position: relative;
}

.process_box li:last-child {
    margin: 0;
    padding: 0;
}

.process_box li:after {
    content: "";
    background-image: url(../images/icon_line.png);
    background-size: auto;
    background-position: center;
    width: 35px;
    height: 16px;
    position: absolute;
    top: 10px;
    right: 0;
}

.process_box li:last-child:after {
    content: "";
    background: 0;
}

.section_shipping_easy {
    margin: 80px;
}

.head_title .action {
    margin: 40px 0 0;
}

.section_shipping_easy .content {
    margin: 130px 0 0;
}

.section_shipping_easy .content .box_info {
    padding: 0 100px;
}

.content .box_info.text_right {
    text-align: right;
}

.content .box_info.text_right .des {
    float: right;
    max-width: 240px;
}

.section_shipping_easy .content .item {
    margin-bottom: 90px;
}

/* Wise Express Page */
.section_wisexpress_top img {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.12);
    border: 5px solid rgba(255, 255, 255, 0.5);
    border-radius: 26px;
}

.section_wisexpress {
    margin: 0;
    text-align: center;
    background-image: url(../images/img_wisexpress_bg.png);
    background-size: 100% auto;
    background-position: top;
    padding: 60px 0;
}

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

.section_function {
    background: #fff;
    padding: 120px 0;
    margin: 0;
}

.section_function.section_function_process {
    background: #F0F3F9;
}

.section_function_process .section_title h2 {
    font-size: 36px;
    color: #000;
}

.section_function.section_function_process .list_items .item .item_content {
    min-height: 195px;
    background: #fff;
    color: #4B5671;
}

.section_function_process .section_interger_box ul li {
    margin: 0 15px;
    color: #4B5671;
}

.section_function.section_function_process .list_items .item .info p {
    color: #4B5671;
}

.section_function_process .section_interger_box {
    background: none;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 10px;
}

.section_function .list_items {
    display: flex;
}

.section_function .list_items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section_function .list_items .item {
    width: 33.33%;
    padding: 0 10px;
}

.section_function .list_items .item .info {
    margin: 10px 0 0;
}

.section_function .list_items .item .item_content {
    border: 1px solid #fff;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    backdrop-filter: blur(6px);
    height: 190px;
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
}

.section_function .list_items .item .item_content .info p {
    color: #4B5671;
    font-size: 20px;
}

.section_function .list_items {
    margin-bottom: 20px;
    color: 20px;
}

.section_function .item_content {
    text-align: center !important;
    background: #F0F3F9 !important;
}

.section_function .list_items .item .info h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    text-align: left;
    color: #000;
    margin-left: 0;
    margin-bottom: 5px;
}

.section_function .list_items .item .info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #8089A0;
}

.section_membership .caption_content .items li span.icon.no-icon {
    background: none;
}

.section_membership.wisexpress {
    padding: 0;
}

.section_membership.wisexpress .caption_content .items {
    max-width: 100%;
}

.section_choose_plan {
    padding: 100px 0;
    background: #F0F3F9;
}

.section_choose_plan .container {
   max-width: 1300px;
}


.section_choose_plan .head_title h2 {
    color: #000;
    font-size: 44px;
    font-weight: 700;
}

.section_question {
    text-align: center;
    background: #F0F3F9;
    padding: 80px 0;
}

.section_question .head_title {
    margin: 0;
}

.section_question .head_title h2 {
    color: #000;
}

.section_question .head_title h2 span {
    display: block;
    color: #00A05E;
}

.section_choose_plan .list_plan {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    margin: 0 -10px;
}

.section_choose_plan .list_plan .box_content {
    margin: 0 10px;
    min-width: 240px;
    text-align: center;
}

.section_choose_plan .list_plan .box_plan {
    border: 1px solid #ffffff;
    transition: 0.5s;
    background: #ffffff;
    border-radius: 20px;
}

.section_choose_plan .list_plan .box_plan .box_name_title {
    background: #8089A0;
    border-radius: 20px 20px 0px 0px;
    padding: 20px 0px;
}

.section_choose_plan .list_plan .box_plan:hover {
    box-shadow: 0px 10px 10px rgb(0 0 0 / 10%);
    transform: scale(1.03);
    border-radius: 15px;
}

.section_choose_plan .list_plan .box_plan .name {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    margin: 0;
    transition: 0.5s;
}

.section_choose_plan .list_plan .box_plan .price {
    color: #F6832F;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
}

.section_choose_plan .list_plan .box_plan .for {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #8089A0;
    margin: 10px 0 0;
}

.section_choose_plan .list_plan .box_plan .btn_buy {
    cursor: pointer;
    background: #4B5671;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    padding: 10px 25px;
    border-radius: 20px;
    display: block;
    margin: 25px auto 0;
    text-decoration: none;
    box-shadow: 0px 8px 16px rgba(112, 123, 150, 0.2);
}

.section_choose_plan .list_plan .box_plan .btn_buy:hover {
    background: #00A05E;
}

.section_choose_plan .list_plan .box_plan .btn_buy .mdi {
    font-size: 20px;
    margin-left: 10px;
}

.section_choose_plan .list_plan .box_plan .box_name {
    padding: 20px;
}

.section_choose_plan .list_plan .box_plan .box_name .unlimited {
    margin-top: 25px;
    color: #fff;
    font-size: 18px;
}

.section_choose_plan .list_plan .box_content .label_value {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #8089A0;
    padding: 10px 0;
    text-align: left;
}

.section_choose_plan .list_plan .box_content.box_label .box_name {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_choose_plan .list_plan .box_content .label_value .label {
    background-image: url(../images/check.png);
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: left center;
}

.section_choose_plan .list_plan .box_content.box_label .label_value {
    background: 0;
}

.section_choose_plan .list_plan .box_content .label_value .value {
    float: right;
    color: #4B5671;
    margin-left: 20px;
}

.section_choose_plan .list_plan .box_plan .plan_have {
    margin-top: 20px;
}

.section_choose_plan .list_plan .box_content.box_label .box_name .label_name {
    font-size: 20px;
    color: #171130;
    font-weight: 700;
}

.section_choose_plan .list_plan .box_content.box_label .box_name .label_value {
    margin-top: 20px;
}

.section_choose_plan .list_plan .box_label .plan_have {
    margin-top: 40px;
}

.section_choose_plan .list_plan .box_plan.box_plan_advanced .box_name_title {
    background: #2D6CE7;
}

.section_choose_plan .list_plan .box_plan.box_plan_pro .box_name_title {
    background: #05AAB5;
}

.section_choose_plan .list_plan .box_plan.box_plan_enterprise .box_name_title {
    background: #5653E5;
}

.section_shipping_easy .content .item_intro_left .box_info {
    padding-right: 0;
}

.cms-content h3 {
    margin-top: 20px;
    margin-bottom: 20px;
}

#MainResult {
    text-align: center;
    margin-top: 30px;
}

.section_membership_list {
    padding: 100px 0;
    text-align: center;
}

.section_membership_list .items {
    max-width: 900px;
    text-align: left;
    margin: 0 auto;
}

.section_membership_list .items li {
    padding: 20px 0;
    font-size: 20px;
    color: #000;
    display: block;
    clear: both;
    overflow: hidden;
}

.section_membership_list .items .icon {
    background: #00A05E;
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    vertical-align: middle;
    margin-right: 5px;
    float: left;
}

.section_membership_list .items .icon+span {
    float: left;
    width: calc(100% - 42px);
    padding-left: 10px;
}

.section_membership_list .items .icon img {
    margin-top: 3px;
}

.section_forwarding_form .color-black,
.section_forwarding_form .color-black span {
    color: #000;
    font-size: 44px;
}

.section_forwarding_form .color-black span {
    display: block;
}

/* Forwarding Page */

.section_forwarding_form {
    margin: 70px 0;
}

.form_forwarding {
    position: relative;
    padding: 40px;
    max-width: 940px;
    background: #F0F3F9;
    border-radius: 20px;
    margin: 0 auto;
}

.form_forwarding .loading_form {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.v-image {
    max-width: 200px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: 0 auto;
}

.v-image img {
    max-width: 100%;
}

.section_forwarding_form .note {
    padding: 0 40px;
    margin-top: 20px;
    color: #8089A0;
    font-size: 14px;
}

.form_forwarding .text_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    margin: 0 0 10px;
}

.form_forwarding>p {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: #959595;
}

.content_form {
    margin: 35px 0 0;
}

.form_forwarding .loading_form {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.v-image {
    max-width: 200px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: 0 auto;
}

.v-image img {
    max-width: 100%;
}

.content_form form .content {
    border-bottom: 1px solid #E0E5EF;
    padding: 30px 0;
    border-top: 1px solid #E0E5EF;
    margin-bottom: 30px;
}

.content_form form .fields_box {
    display: flex;
    justify-content: space-between;
}

.content_form form .fields_box .label {
    width: 185px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #4B5671;
    font-size: 14px;
}

.form_forwarding .section_title h2 {
    font-size: 32px;
}

.form_forwarding .section_title h3 {
    font-size: 16px;
}

.form_forwarding .section_title p {
    font-size: 18px;
}

@media (min-width: 991px) {
    .form_forwarding .section_title h3 {
        font-size: 24px;
    }

    .form_forwarding .section_title p {
        font-size: 24px;
    }
}

.content_form form .fields_box .fields {
    width: calc(100% - 185px);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content_form form .fields_box:last-child .label {
    border-bottom: 0;
}

.content_form form .fields_box .label svg {
    margin-right: 6px;
}

.content_form form .fields_box:last-child .fields {
    border-bottom: 0;
}

.content_form .select2 {
    font-size: 14px;
    color: #A0AAC2;
    width: 200px !important;
}

.content_form .select2-container--default .select2-selection--single {
    border: 1px solid #E0E5EF;
    border-radius: 20px;
    height: 40px;
    line-height: 40px;
}

.content_form #select2-country-container {
    text-align: left;
}

.content_form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #A0AAC2;
    line-height: 40px;
    font-size: 14px;
}

.content_form .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 20px;
}

.content_form .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
    right: 8px;
}

.select2-results__options {
    font-size: 14px;
    color: #A0AAC2;
}

.select2-container .select2-dropdown {
    border: 1px solid #E0E5EF;
}

.select2-container .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #E0E5EF;
}

.content_form form .fields_box .fields span.line {
    width: 120px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: #171130;
}

.content_form form .fields_box .fields select {
    width: 176px;
    max-width: 100%;
    color: #A0AAC2;
}

.content_form form .fields_box .fields select#country {
    appearance: none;
    background-position-x: 90%;
    background-position-y: 50%;
    background-image: url('../images/icon/arrow_drop_down.svg');
    background-repeat: no-repeat;
}

.content_form form .fields_box .fields input.entry {
    width: calc(50% - 50px);
    border: 1px solid #DEE1E6;
    height: 50px;
    border-radius: 5px;
}

.content_form form .fields_box .fields input {
    width: 100%;
}

.content_form form .note {
    font-size: 24px;
    line-height: 36px;
    color: #959595;
    margin: 35px 0;
    font-weight: 400;
}

.content_form form .action_submit {
    text-align: center;
}

.content_form form .action_submit button {
    background: #00A05E;
    color: #fff;
    border: 0;
    padding: 0 25px;
    height: 40px;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
}

.section_shipping_process {
    margin: 0;
    position: relative;
    padding-bottom: 140px;
}

.section_shipping_process img {
    width: 100%;
}

.section_shipping_process .head_title {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
}

.section_shipping_process .box_process img {
    width: auto;
}

.section_shipping_process .box_process .box_content {
    display: flex;
    max-width: 1070px;
    margin: 0 auto;
    background: linear-gradient(108.74deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 0px 0px 50px -25px rgb(0 0 0 / 50%);
    backdrop-filter: blur(50px);
    border-radius: 26px;
}

.section_shipping_process .box_process .box_content .item {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    width: 33.33%;
}

.section_shipping_process .box_process .box_content .item:after {
    content: "";
    height: 90px;
    width: 1px;
    background: #C0C0C0;
    position: absolute;
    right: 0;
    top: 60px;
}

.section_shipping_process .box_process .box_content .item:last-child::after {
    content: "";
    background: transparent;
}

.section_shipping_process .box_process .box_content .item p {
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    color: #000000;
    text-align: left;
    min-height: 145px;
}

.section_shipping_process .box_process .box_content .item img {
    margin: 60px 0 -140px;
}

.cms-content table {
    width: 100%;
    max-width: 100%;
    margin: 25px 0;
    background-color: transparent;
    border-collapse: collapse;
}

.cms-content table td,
.cms-content table th {
    padding: .75rem;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

.cms-content table th {
    background: #eee;
}

.cms-content p,
.cms-content li {
    margin-bottom: 10px;
}

.cms-content ul {
    padding-left: 10px;
}

/* Contact Us */
form input,
form textarea,
form select {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #E0E5EF;
    color: #A0AAC2;
    line-height: inherit;
    padding: 9px 20px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Spoqa Han Sans Neo', sans-serif;
}

#MyContactForm {
    text-align: left;
}

#MyContactForm .field span {
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

input:focus,
textarea:focus {
    border-color: #171130;
}

::-webkit-input-placeholder {
    color: #171130;
}

#MyContactForm .field label {
    cursor: text;
    display: block;
    margin: 0;
    position: relative;
    top: 0;
    width: 100%;
}

#MyContactForm .field .field_lb {
    color: #4B5671;
    font-size: 14px;
    margin-bottom: 10px;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #A0AAC2;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #A0AAC2;
}

:-ms-input-placeholder {
    color: #A0AAC2;
}

::placeholder {
    color: #A0AAC2;
}

#form-wrapper #MyContactForm .error {
    color: #FF0000;
    font-family: inherit;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0;
    position: static;
    text-transform: none;
    width: auto;
    display: none;
    margin-top: 10px;
}

.contact-btn {
    background: #00A05E;
    border: 1px solid #00A05E;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    margin: 20px auto 0;
    padding: 12px 20px;
    width: auto;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Spoqa Han Sans Neo', sans-serif;
}

#MyContactForm .field {
    position: relative;
    margin-bottom: 20px;
}

#MyContactForm #message {
    min-height: 240px;
}

.contact-form {
    max-width: 860px;
    margin: 0 auto 120px;
    background: #F0F3F9;
    padding: 40px;
    border-radius: 20px;
}

.contact-form .section_intro_shipping {
    margin: 0;
}

.contact-form .section_intro_shipping .sub_title {
    color: #000;
}

.contact-form .section_intro_shipping .sub_title span {
    color: #00A05E;
}

.fields-col-2 {
    display: flex;
    margin: 0 -15px;
}

.fields-col-2 .field {
    width: 50%;
    padding: 0 15px;
}

.fields-col-2.fields-col-checkbox {
    display: block;
    text-align: center;
}

#MyContactForm .fields-col-checkbox .field {
    display: inline-block;
    width: auto;
    text-align: left;
    vertical-align: top;
}

.fields-col-checkbox .field input {
    width: auto;
    display: inline-block;
}

#MyContactForm .fields-col-checkbox .field label {
    display: inline-block;
    width: auto;
    color: #4B5671;
    font-size: 14px;
}

.head_title .sub_title {
    color: #00A05E;
    font-size: 32px;
}

.response {
    border: 0;
}

#MyContactForm .field label a {
    color: #2D6CE7;
}

.fields-recaptcha {
    text-align: center;
}

.fields-recaptcha .g-recaptcha {
    display: inline-block;
}

.terms-item {
    margin-top: 30px;
}

.terms-item h2 {
    margin-bottom: 30px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 111;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, .4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}

.modal-content h3 {
    margin-bottom: 20px;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-action {
    text-align: center;
    margin-top: 20px;
}

.close.btn-close {
    float: none;
    background: #ccc;
    border: 1px solid #ccc;
    color: #000;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.section_banner_cms img {
    max-height: 656px;
    object-fit: cover;
}

#fullpage .home-slider-item,
#fullpage .home-slider,
#fullpage .section_banner,
#fullpage .home-slider .slick-list,
#fullpage .home-slider .slick-list .slick-track {
    height: 100%;
}

#fullpage .section_banner img {
    height: 100%;
    object-fit: cover;
}

.flip {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-slider img {
    transform: scale(2, 2);
    transition: all 3.5s ease;
}

.slick-active .flip img {
    transform: scale(1, 1);
}

.content_banner_home,
.content_banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    color: #fff;
    opacity: 1;
    visibility: visible;
    width: 100%;
    text-align: center;
}

.content_banner_home.content_banner h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.content_banner_home.content_banner h1 span {
    font-weight: 200;
    display: block;
}

#fullpage .fp-overflow {
    height: 100%;
}

.fp-warning,
.fp-watermark {
    display: none;
}

.content_banner_home.content_banner h1 span br {
    display: none;
}

.section_wisexpress_banner .lazy.entered.loaded {
    width: 100%;
}

.header_nav li svg {
    display: none;
}

.basic_price .label {
    font-size: 14px;
    color: #4B5671;
    display: flex;
    align-content: center;
    align-items: center;
    float: left;
}

.basic_price .label svg {
    margin-right: 6px;
}

.basic_price {
    overflow: hidden;
    margin-bottom: 15px;
    display: none;
}

.basic_price .value {
    float: right;
    color: #00A05E;
    font-size: 14px;
    font-weight: 500;
}

.basic_price.active {
    display: block;
}

.cms-content {
    margin-bottom: 50px;
    font-size: 15px;
}

.content_form form .fields_box.error .select2-selection.select2-selection--single {
    border-color: #f00;
}

.content_form form .fields_box.error input {
    border-color: #f00;
}

.section_benefits_home .content h2 {
    font-size: 36px;
}

.section_review {
    margin: 0 auto;
    padding: 144px 20px;
}

.section_review .box_wrapper {
    width: 1024px;
    max-width: 90%;
    margin: 0 auto;
}

.section_review .row_wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: flex-start;
}

.section_review .row_wrapper:not(:last-child) {
    margin-bottom: 60px;
}

.section_review .row_wrapper .row_wrapper-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.section_review .row_wrapper .row_wrapper-content {}

.section_review .row_wrapper .row_wrapper-content .title {
    color: #000;
    font-size: 32px;
    font-weight: 500;
}

.section_review .row_wrapper .row_wrapper-content .message {
    color: #A5B8CD;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .section_review {
        padding: 64px 20px;
    }

    .section_review .row_wrapper:not(:last-child) {
        margin-bottom: 40px;
    }

    .section_review .row_wrapper .row_wrapper-content .title {
        font-size: 22px;
    }

    .section_review .row_wrapper .row_wrapper-content .mesage {
        font-size: 16px;
    }
}

.section-benefit {
    position: relative;
}

.section-benefit .container{
    padding: 60px 15px ;
}

@media (min-width: 1024px) {
    .section-benefit .container {
        padding: 120px 15px;
    }
   
}

.section-benefit .box-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
}

@media (min-width: 1024px) {
    .section-benefit .box-gradient {
        height: 400px;
    }
}

.section-benefit .box-gradient img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-benefit .box-image {
    position: relative;
}

.section-benefit .box-image img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 650px;
}

.section-benefit .box-title {
    width: 95%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.section-benefit .box-title .title,
.section-benefit .box-title .sub-title {
    text-align: center;
    font-weight: 700;
}

.section-benefit .box-title .title {
    color: #000;
    font-size: 22px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.section-benefit .box-title .sub-title {
    color: #8089a0;
    font-size: 16px;
}

@media (min-width: 1024px) {
    .section-benefit .box-title .box-title {
        width: 75%;
        margin-top: 70px;
    }

    .section-benefit .box-title .title {
        font-size: 44px;
    }

    .section-benefit .box-title .sub-title {
        font-size: 32px;
    }
}

.section-benefit .box-content {
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .section-benefit .box-content {
        margin-top: 80px;
        width: 80%;
    }
}

.section-benefit .box-content .row_wrapper {
    display: flex;
    gap: 16px;
}

.section-benefit .box-content .row_wrapper:last-child .box-number::before {
    display: none;
}

.section-benefit .box-content .row_wrapper:last-child .box-text {
    padding-bottom: 0;
}

.section-benefit .box-content .row_wrapper .box-number {
    position: relative;
}

.section-benefit .box-content .row_wrapper .box-number::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 1px;
    height: 100%;
    background-color: #00a05e;
}

.section-benefit .box-content .row_wrapper .box-number .number-rounded {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #00a05e;
}

.section-benefit .box-content .row_wrapper .box-number .number-rounded span {
    color: #fff;
    font-size: 16px;
}

@media (min-width: 1024px) {
    .section-benefit .box-content .row_wrapper .box-number .number-rounded .box-number {
        width: 32px;
        height: 32px;
    }

    .section-benefit .box-content .row_wrapper .box-number .number-rounded .box-number span {
        font-size: 20px;
    }
}

.section-benefit .box-content .row_wrapper .box-text {
    padding-bottom: 30px;
    margin-top: -3px;
}

.section-benefit .box-content .row_wrapper .box-text h6 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 4px;
    margin-top: 4px;
}

.section-benefit .box-content .row_wrapper .box-text p {
    color: #8089a0;
    font-size: 16px;
}

@media (min-width: 1024px) {
    .section-benefit .box-content .row_wrapper .box-text {
        margin-top: -5px;
    }

    .section-benefit .box-content .row_wrapper .box-text h6 {
        font-size: 20px;
    }

    .section-benefit .box-content .row_wrapper .box-text p {
        font-size: 16px;
    }
}

.section-benefit-2 .box-image {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.section-benefit-2 .container{
    max-width: 1200px;
}

.section-benefit-2 .box-title{
    width: 100%;
}


@media (min-width: 768px) {
    .section-benefit-2 .box-image {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Responsive */
@media (min-width: 992px) {
    .section_banner_cms.section_banner .content_banner h1 {
        font-size: 42px;
    }
}

@media (max-width: 1350px) {
    .section_membership .img_bg img {
        width: 100%;
        height: 479px;
        object-fit: cover;
        object-position: right;
    }
}

@media (max-width: 1200px) {
    .section_shipping_process .box_process .box_content .item p {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {

    .section_banner .content_banner h1,
    .content_banner_home.content_banner h1 {
        font-size: 32px;
    }

    .section_intro {
        padding: 0;
    }

    .content .box_info {
        padding: 0 50px;
    }

    .section_intro .box_info .title {
        font-size: 32px;
        line-height: 42px;
    }

    .content .box_info h3.title {
        font-size: 28px;
        line-height: 36px;
    }

    .section_membership .caption_content .items li {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 15px;
    }

    .section_membership .caption_content .items li span.icon {
        margin-right: 15px;
    }

    .section_benefits .caption_content {
        right: 30px;
    }

    .section_shipping_process .box_process .box_content .item p br {
        display: none;
    }


}


@media (max-width: 991px) {
    #section5 {
        padding: 0;
    }

    .section_membership_title h4 {
        font-weight: 600;
    }

    .section_choose_plan .head_title h2 {
        font-size: 20px;
    }

    .header_content {
        display: block;
        padding: 20px;
    }

    .header_content .logo {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header_content .logo a {
        max-width: 110px !important;
    }

    .header_content .logo a img {
        width: 100%;
    }

    .header_info {
        position: fixed;
        background: #fff;
        width: calc(100% - 100px);
        max-width: 500px;
        right: -500px;
        top: 0;
        bottom: 0;
        z-index: 99;
        transition: 0.3s;
        padding-right: 0;
        padding-top: 70px;
        display: flex;
        flex-wrap: wrap;
        align-content: start;
        justify-content: start;
        align-items: start;
    }

    .open_menu .header_info {
        right: 0;
    }

    .toggleMenu {
        display: block;
        color: #fff;
        height: 35px;
        line-height: 35px;
        width: 35px;
        text-align: center;
        font-size: 26px;
        cursor: pointer;
        position: relative;
        z-index: 111;
    }

    .toggleMenu .line {
        position: absolute;
        background: #000;
        width: 25px;
        height: 2px;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
    }

    .toggleMenu .line:before {
        content: "";
        position: absolute;
        background: #000;
        width: 25px;
        height: 2px;
        left: 0;
        top: -7px;
        transition: 0.3s;
    }

    .toggleMenu .line:after {
        content: "";
        position: absolute;
        background: #000;
        width: 25px;
        height: 2px;
        left: 0;
        top: 7px;
        transition: 0.3s;
    }

    .header-home .line:before,
    .header-home .line:after,
    .header-home .line {
        background: #fff;
    }

    .header.is-sticky .line:before,
    .header.is-sticky .line:after,
    .header.is-sticky .line {
        background: #000;
    }

    .open_menu .toggleMenu .line {
        background: transparent;
    }

    .open_menu .toggleMenu .line:before {
        content: "";
        background: #000;
        transform: rotate(45deg);
        top: 0px;
    }

    .open_menu .toggleMenu .line:after {
        content: "";
        background: #000;
        transform: rotate(-45deg);
        top: 0px;
    }

    body.open_menu {
        overflow: hidden;
    }

    .header_nav li {
        display: block;
        margin: 0;
    }

    .header_nav li a {
        border-radius: 0;
        padding: 10px 20px;
    }

    .header_nav li a.active {
        padding: 10px 20px;
        text-align: left;
    }

    .header_user {
        padding: 20px;
        position: static;
        order: 0;
        width: 100%;
        margin-bottom: 10px;
        background: #F0F3F9;
    }

    .header_nav {
        order: 1;
    }

    .header_nav li svg {
        display: inline-block;
        margin: 0 5px 0 0;
        position: relative;
        top: 5px;
    }

    .header_user .header_user_text {
        display: inline-block;
        color: #000;
        font-weight: 700;
    }

    .header_user .login {
        float: right;
        padding: 10px 12px;
        margin-top: 4px;
        font-weight: 700;
    }

    .section_shipping_process .section_shipping_process_banner img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        object-position: center;
    }

    .section_shipping_process .head_title {
        top: 30px;
    }

    .section_shipping_process .box_process .box_content .item p {
        font-size: 20px;
    }

    .section_title h2,
    .section_title h4 {
        font-size: 26px;
    }

    .section_title p {
        font-size: 14px;
    }

    .section_forwarding_form .color-black,
    .section_forwarding_form .color-black span {
        font-size: 20px;
    }

    .section_interger {
        padding: 110px 0 70px;
    }

    .section_interger_box ul li,
    .section_function_process .section_interger_box ul li {
        margin: 10px 20px 10px;
        font-size: 14px;
    }

    .section_interger_box h3 {
        font-size: 18px;
    }

    .section_advantage {
        padding: 64px 0 30px;
    }

    .section_box_top .section_box_title p {
        font-size: 16px;
        color: #8089A0;
    }

    .section_membership .caption_content h2 {
        font-size: 26px;
    }

    .section_membership {
        padding: 65px 30px;
    }

    .header-home .header_nav li a {
        color: #8089A0;
    }

}

@media (max-width: 768px) {
    .section_function .list_items .item .item_content {
        height: 96px;
        display: flex;
        align-items: center;
        gap: 16px;
        width: 90%;
    }

    .section_function .list_items .item .item_content .info p {
        font-size: 16px;
        text-align: left;
    }

    .section_banner {
        position: relative;
    }

    .section_intro {
        margin: 50px 0 0;
    }

    .section_intro .content {
        display: block;
    }

    .content .box_img {
        width: 100%;
        margin-bottom: 30px;
    }

    .content .box_info {
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .content .item {
        display: block;
    }

    .content .item .box_info .des {
        max-width: 100%;
    }

    .section_membership .img_bg img {
        min-height: 320px;
    }

    .section_benefits .img_bg img {
        min-height: 250px;
        object-fit: cover;
        object-position: center;
    }

    .section_benefits .caption_content {
        left: 0;
        right: 0;
    }

    .section_benefits .caption_content .content {
        display: block;
        text-align: center;
    }

    .section_benefits .caption_content .content h2 {
        margin-right: 0;
    }

    .footer {
        margin: 0;
    }

    .footer_content {
        display: block;
        padding: 40px 0 25px;
    }

    .f_logo {
        margin-bottom: 20px;
    }

    .footer_content .f_info li {
        margin: 0 10px 0 10px;
    }

    .footer_content .f_info li:last-child {
        margin: 15px 0 0 0;
    }

    .section_membership .caption_content .items li span.icon img {
        max-width: 32px;
    }

    .content .item.item_iamges_left .box_img,
    .content .item.item_iamges_right .box_img {
        text-align: center;
    }

    .content .item.item_iamges_left .box_img img {
        margin: 0 auto;
    }

    .head_title h2 {
        font-size: 24px;
        line-height: 1.7;
    }

    img {
        max-width: 100%;
    }

    .section_business h3 {
        font-size: 24px;
        margin: 0 0 20px;
        line-height: 1.5;
    }

    .content .box_info.text_right {
        text-align: center;
    }

    .content .box_info.text_right .des {
        float: none;
    }

    .section_shipping_easy .content .box_info {
        padding: 0 15px;
    }

    .section_function .list_items {
        display: block;
    }

    .section_function {
        padding: 60px 0 40px;
    }

    .section_function .list_items .item {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
    }

    .section_function .list_items .item .item_content {
        min-height: inherit;
    }

    .section_membership_list {
        padding: 60px 0;
    }

    .section_choose_plan .list_plan {
        display: block;
        margin: 0;
    }

    .section_choose_plan .list_plan .box_content {
        margin: 0 auto 30px;
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .section_choose_plan .list_plan .box_content.box_label {
        display: none;
    }

    .section_shipping_process .box_process .box_content {
        display: block;
    }

    .section_shipping_process .box_process .box_content .item img {
        margin: 30px 0 0;
    }

    .section_shipping_process .box_process .box_content .item {
        padding: 30px;
        width: 100%;
    }

    .head_title .sub_title {
        font-size: 18px;
    }

    .fields-col-2.fields-col-checkbox {
        text-align: left;
    }

    .fields-recaptcha {
        text-align: left;
    }

    .section_membership .caption_content .items li {
        align-items: start;
    }

    .section_shipping_process .box_process .box_content .item p {
        text-align: center;
    }

    .copyright {
        text-align: left;
        float: none;
        width: 100%;
        order: 2;
        margin-top: 15px;
    }

    .footer_bottom ul {
        float: none;
    }

    .footer_bottom ul li {
        margin-left: 0;
        margin-right: 20px;
    }

    .footer_bottom {
        padding: 20px 0 35px;
        display: flex;
        flex-wrap: wrap;
    }

    .section_benefits .caption_content .content h2 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .section_membership .caption_content .items li {
        margin: 0 0 15px;
        width: 100%;
        min-height: inherit;
        padding: 20px;
    }

    .section_box_top {
        margin-bottom: 30px;
        display: block;
    }

    .section_box_top .section_box_title {
        width: 100%;
    }

    .section_box_top .section_box_title {
        margin-bottom: 15px;
    }

    .section_advantage_box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .section_advantage .section_title {
        margin-bottom: 32px;
    }

    .box_images_gruop {
        display: block;
        margin: 0;
    }

    .box_images_gruop .box_images_gruop_item {
        margin: 0 0 20px;
        width: 100%;
    }

    .box_images_gruop .box_images_gruop_item:last-child {
        margin-bottom: 0;
    }

    .section_banner img {
        max-height: 780px;
        object-fit: cover;
    }

    .fp-overflow {
        height: 100%;
    }

    #fullpage .section_banner img {
        max-height: 100%;
    }

    .section_membership_title {
        /* max-width: 275px; */
        margin: 0 auto;
    }

    .section_membership_title h4 {
        font-weight: 700;
    }

    .footer_content .f_info p span {
        display: block;
        height: 0;
        visibility: hidden;
        opacity: 0;
    }

    .page-title {
        margin: 35px 0 40px;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .page-title h3 {
        font-size: 18px;
    }

    .section_wisexpress_top {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .section_membership_list .items li {
        padding: 15px 0;
        font-size: 18px;
    }

    .section_membership_list .items .icon {
        width: 30px;
        height: 30px;
        float: left;
    }

    .section_choose_plan {
        padding: 60px 0;
    }

    .section_wisexpress_bottom {
        padding: 0 20px;
        text-align: center;
    }

    .section_function_process .section_title h2 {
        font-size: 26px;
    }

    .section_forwarding_form {
        margin: 60px 0;
    }

    .form_forwarding .section_title h2 {
        font-size: 18px;
    }

    .content_form form .fields_box {
        display: block;
    }

    .content_form form .fields_box .fields,
    .content_form form .fields_box .fields select {
        width: 100%;
    }

    .section_forwarding_form .note {
        padding: 0;
    }

    .form_forwarding {
        padding: 20px;
    }

    .section_function.section_function_process .list_items .item .item_content {
        min-height: inherit;
    }

    .section_forwarding_form .note {
        font-size: 12px;
    }

    .content_form form .content {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .head_title {
        margin: 0 0 30px;
    }

    .content_form .select2 {
        font-size: 14px;
        color: #A0AAC2;
        width: 100% !important;
    }

    .content_form .select2 {
        width: 100% !important;
    }

}

@media (max-width: 640px) {

    .section_intro .box_info .title {
        font-size: 24px;
        line-height: 34px;
    }

    .content .box_info .des p {
        font-size: 14px;
        line-height: 21px;
    }

    .link_btn {
        font-size: 14px;
        line-height: 24px;
        padding: 10px 20px;
    }

    .section_advantage>h2 {
        font-size: 24px;
        line-height: 34px;
        margin: 0 0 30px;
    }

    .content .box_info h3.title {
        font-size: 21px;
        line-height: 26px;
    }

    .content .box_info .sub_title {
        font-size: 18px;
        line-height: 30px;
    }

    .section_membership .caption_content .items li {
        font-size: 16px;
    }

    .section_membership .caption_content h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .section_membership .caption_content .items {
        margin: 30px auto 0;
    }

    .box_images_gruop .box_images_gruop_item img {
        max-height: 460px !important;
        width: 100%;
        border-radius: 6px;
    }

    .section_interger_box ul {
        overflow: hidden;
        text-align: left;
    }

    .section_interger_box {
        padding: 25px 20px;
    }

    .section_interger_box ul li,
    .section_function_process .section_interger_box ul li {
        margin: 10px 0;
        font-size: 12px;
        width: 50%;
        float: left;
    }

    .number {
        width: 22px;
        height: 22px;
        font-size: 12px;
        line-height: 22px;
        margin-right: 5px;
    }

    .section_interger_content .list_brand li {
        margin: 0 10px;
    }

    .section_title p br {
        display: none;
    }

    .section_benefits {
        padding: 40px 20px;
    }

    .section_benefits .caption_content .content {
        /* max-width: 230px; */
        margin: 0 auto;
    }

    .footer_content .f_info {
        font-size: 12px;
        line-height: 20px;
    }

    .footer_bottom ul li a,
    .copyright p {
        font-size: 12px;
    }

    .section_membership .caption_content .items li span.icon {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
    }

}

@media (max-width: 479px) {
    .container {
        max-width: 1253px;
        padding: 0 15px;
        margin: 0 auto;
    }

    .header_info {
        width: calc(100% - 65px);
    }

    .section_banner img {
        min-height: 300px;
    }

    .section_shipping_easy {
        margin: 60px 20px;
    }

    .head_title h2 {
        font-size: 18px;
    }

    .process_box li {
        font-size: 18px;
    }

    .section_shipping_process .section_shipping_process_banner img {
        height: 420px;
    }

    .section_banner .content_banner h1 br {
        display: none;
    }

    .section_interger_content .list_brand li {
        margin: 0;
        width: 49%;
    }

    .content_banner_home.content_banner h1 span br {
        display: block;
    }

    .section_wisexpress_banner .lazy.entered.loaded {
        height: 200px;
        object-fit: cover;
    }

    .contact-form {
        margin: 0 auto 60px;
        padding: 20px;
    }

    .fields-col-2 {
        display: block;
    }

    .fields-col-2 .field {
        width: 100%;
    }

    #MyContactForm #message {
        min-height: 200px;
    }

    .section_forwarding_form .color-black br {
        display: none;
    }

    .section_choose_plan .list_plan .box_content {
        max-width: 100%;
    }



}

@media (max-width: 375px) {
    .section_banner img {
        min-height: 250px;
    }
}

@media (max-width: 330px) {
    .section_banner img {
        min-height: 200px;
    }
}

body img {
    height: auto;
    max-width: 100%;
}

.link_btn svg,
.btn_buy svg {
    display: inline-block;
    vertical-align: middle;
}

img.img-mobile {
    display: none;
}

@media (max-width:767px) {
    img.img-mobile {
        display: inline-block;
    }

    img.img-desktop {
        display: none;
    }
}

.section_choose_plan .list_plan .box_plan .price.basic_price {
    font-size: 36px;
    margin: 31px 0 10px;
}

.section_benefits.section_benefits_wisexpress {
    padding: 0;
}

.section_benefits.section_benefits_wisexpress .caption_content {
    right: 20px;
    left: 20px;
}