@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

body {
    background: #fff;
    font-size: 15px;
    color: #444;
    line-height: 22px;
    font-family: roboto;
}

hr {
    border-top: #c2c8d7 1px solid !important;
}

a:hover {
    color: #f39320 !important;
}

a.active {
    color: #f39320 !important;
}

i.fa {
    color: #7083b6;
    font-size: 24px;
}

.list_btn i.fa {
    color: #fff;
    font-size: 24px;
}

.bt {
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    border: 0;
    border-radius: 6px;
    padding: 0 15px !important;
    height: 32px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bt i {
    font-size: 13px;
    color: #fff !important;
}

.btn_green {
    background: #5ac04a;
}

.btn_green:hover {
    background: #7ccf6f;
    color: #fff !important;
}

.btn_green_line {
    background: #fff;
    color: #8cdb80 !important;
    border: #8cdb80 1px solid;
}

.btn_green_line:hover {
    background: #fff;
    border: #8cdb80 1px solid;
    color: #ff8c00 !important;
}

.bt_sm {
    border-radius: 15px;
    height: 26px;
    font-size: 12px;
    color: #1a2b58;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    text-decoration: none;
}

.btn_blue_light {
    background: #8fd0ec;
}

.btn_blue_light:hover {
    background: #70cef6;
    color: #1a2b58 !important;
}

.btn_gray_light {
    background: #d9d9d9;
}

.btn_gray_light:hover {
    background: #eee;
    color: #1a2b58 !important;
}

div.select_file {
    background: #8fd0ec;
    color: #1a2b58 !important;
    border-radius: 6px;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

div.select_file input {
    position: absolute;
    opacity: 0;
}

.btn_check_data {
    background: #d2dcf4;
    color: #1a2b58 !important;
}

.btn_check_data:hover {
    background: #b1c4f0 !important;
    color: #1a2b58 !important;
}

.btn_green.active {
    background: #7ccf6f;
    color: #fff !important;
}

.btnlogin {
    background: #f28c8c;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 16px;
    padding: 7px 15px !important;
    height: 36px !important;
}

.btnlogin:hover {
    background: #f46a6a !important;
    color: #fff !important;
}

.btn_red {
    background: #ff7979;
}

.btn_red:hover {
    background: #f28c8c !important;
    color: #fff !important;
}

.btn_red.active {
    background: #ff7979 !important;
    color: #fff !important;
}

.btn_gray_line {
    background: #fff url(../images/caret_down_ic.png) no-repeat right;
    background-size: 10px 5px;
    background-position: 60px;
    min-width: 80px;
    border: #dee2e6 1px solid;
    color: #666 !important;
    font-weight: normal;
    text-align: left;
    padding: 0 20px 0 0px !important;
}

.btn_gray_line:hover {
    background: #fff url(../images/caret_down_ic.png) no-repeat right;
    background-size: 10px 5px;
    background-position: 60px;
    min-width: 80px;
    border: #dee2e6 1px solid;
    color: #666 !important;
    font-weight: normal;
    text-align: left;
    padding: 0 20px 0 0px !important;
}

.btn_gray_line.active {
    background: #fff url(../images/caret_down_ic.png) no-repeat right;
    background-size: 10px 5px;
    background-position: 110px;
    min-width: 130px;
    border: #dee2e6 1px solid;
    color: #666 !important;
    font-weight: normal;
    text-align: left;
    padding: 0 20px 0 10px !important;
}

.required {
    color: #ff0000;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.btn_gr {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.form-control {
    font-size: 13px !important;
}

.img100 img {
    width: 100%;
}

.form-select {
    background-image: url(../images/caret_down_ic.png);
    background-size: 10px 5px;
    min-width: 80px;
}

.mt150 {
    margin-top: 150px;
}

.mt50 {
    margin-top: 50px;
}

.mt30 {
    margin-top: 30px;
}

/*----modal----*/

/* Modal Content */
#CrtWarehouse .modal-content {
    width: 100%;
}

/* Modal Content */
.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    /*  width: 80%;*/
    box-shadow:
        0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.btn-close {
    background: url(../images/times_icon.png) no-repeat center !important;
}

.modal-header {
    padding: 7px 16px !important;
    background-color: #fff;
    color: #1a2b58;
    height: 44px;
}

.modal-header h4 {
    color: #1a2b58;
    font-size: 20px;
    margin: 0;
}

.modal-body {
    padding: 10px 4px !important;
}

.modal-footer {
    padding: 2px 16px;
    justify-content: center !important;
}

div.modal_center {
    padding: 10px 15px;
    font-size: 13px !important;
    white-space: nowrap;
}

div.modal_add {
    padding: 4px;
    font-size: 13px !important;
    white-space: nowrap;
}

.modal-body label {
    color: #1a2b58 !important;
}

.modal-body h4 {
    color: #1a2b58 !important;
    font-size: 14px;
    text-transform: uppercase;
}

div#import_data .modal-body {
    padding: 0px 4px !important;
}

div#import_data .modal-body h4 {
    text-align: center;
}

div#import_data .progress {
    text-align: center;
}

div.form_prog {
    margin-top: 10px;
}

div.form_prog p {
    margin-bottom: 5px;
}

div.erro_report {
    margin-top: 10px;
    color: #dc3545;
}

.modal-body select,
input,
option {
    color: #999 !important;
}

td.select_mem select {
    background: url(../images/sort-down.png) no-repeat left;
    border: 0 !important;
    white-space: nowrap;
    font-size: 13px;
    padding: 0 0 0 15px;
    color: #57abdc !important;
    min-width: 80px;
}

select {
    font-size: 13px !important;
}

#CrtFromCate .modal-dialog {
    width: 100%;
    max-width: 90%;
}

#detail_asset .modal-dialog {
    width: 100%;
    max-width: 70%;
}

#CrtOutCate .modal-dialog {
    width: 100%;
    max-width: 50%;
}

/*----------------end index--------------------*/
div.wrapper {
    width: 100%;
    overflow-x: hidden;
}

div.container-fluid {
    width: 100%;
    padding: 0;
}

div.header,
.menu_center,
.content,
.menu_child {
    padding: 0 0%;
}

/*-------------------header menu ---------------*/
div.header {
    background: #fff;
}

div.header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
}

div.header_content .content span {
    display: block;
    font-size: 16px;
    color: #979797;
}

div.header_menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

div.menu_report {
    position: relative;
}

div.menu_report button {
    position: relative;
}

div.menu_report button span {
    position: absolute;
    background: #ff8c00;
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: -17px;
    right: -10px;
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.menu_setting {
    display: flex;
    align-items: center;
    gap: 10px;
}

div.menu_setting a {
    text-decoration: none;
}

div.menu_setting .hotline,
div.hotline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

div.menu_setting button span {
    position: absolute;
    background: #ff8c00;
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: -17px;
    right: -10px;
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*----------------menu center----------------------*/
div.menu_center {
    background: #fff;
}

div.menu_center_content {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 4px 0;
    gap: 5px;
}

div.menu_center_content .dropdown {
    height: 100%;
}

div.menu_center_content a,
div.menu_center_content button {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #1a2b58;
    text-decoration: none;
    text-transform: uppercase;
    padding: 8px 10px;
    background: transparent;
    border: 0;
    font-weight: 600;
}

div.menu_center_content a:hover,
.menu_center_content .nav-item .dropdown #dropdownMenuButton:hover {
    color: #f3931f;
    text-decoration: none;
    text-transform: uppercase;
    /* border-bottom: 2px solid #f3931f; */
}

div.menu_center_content a.active {
    /* background: #f3931f; */
    color: #f3931f !important;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
}

div.menu_center_content button.active {
    /* background: #f3931f; */
    color: #f3931f !important;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
}

div.menu_center_content .dropdown-menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

div.menu_center_content .dropdown-menu {
    display: none;
    padding: 10px;
    /* background: #243666 !important; */
    border-radius: 0 0 10px 10px;
    border-top: none;
    border-bottom: 3px solid #243666;
}

div.menu_center_content .dropdown-menu ul li {
    padding: 2px;
    color: #1a2b58;
    height: 60px;
    border-top: 0.5px solid #dddddd;
}

div.menu_center_content .dropdown-menu ul li:first-child {
    border-top: 0 !important;
}

div.menu_center_content .dropdown-menu ul li a {
    /* color: #fff; */
    color: #1a2b58;
    text-transform: capitalize;
    padding: 10px;
    /* background: #273969; */
    /* border: #304886 1px solid; */
    border-radius: 0px;
}

div.menu_center_content .dropdown-menu ul li a span {
    color: #1a2b58;
}

div.menu_item {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

div.menu_item div.img {
    background: #fff;
    padding: 2px 5px;
    border-radius: 6px;
}

div.menu_item div.img img {
    height: 40px;
    width: auto;
}

div.menu_item div.main_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

div.menu_item div.main_menu strong {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

div.menu_item div.main_menu span {
    font-size: 13px;
    color: #fff;
}

/*----------------------------------------------*/

/*----------------banner--------------*/
div.banner_home {
    background: url(../images/background/banner_01.jpg) no-repeat;
    height: 750px;
    box-shadow: 0px 3px 3px rgb(0, 0, 0, 0.1);
    background-size: cover; /* QUAN TRỌNG */
    width: 100%;
}

div.content_banner {
    display: grid;
    align-items: center;
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    position: relative;
}

div.content_banner_pro {
    display: grid;
    align-items: center;
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    background-image: url(../images/background/banner_for_subpage.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

div.content_banner_pro div.banner_center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

div.banner_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

div.banner_center {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    height: 100%;
}

div.banner_center > div > p {
    color: #fff;
    font-size: 16px;
}

div.banner_center div.number_cus {
    display: none !important;
}

div.banner_center div.number_cus {
    background: #fff;
    border: #b7e2fa 1px solid;
    border-radius: 50px;
    padding: 15px 30px;
    color: #767676;
    font-size: 24px;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

div.banner_center div.number_cus i {
    color: #1a2b58;
    font-size: 24px;
}

/*banner child*/
div.banner_page {
    background: url(../images/bg_banner.png) no-repeat;
    height: 600px;
    box-shadow: 0px 3px 3px rgb(0, 0, 0, 0.1);
}

div.banner_page div.banner_center {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

div.banner_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 5% 25px;
}

div.banner_center {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    height: 100%;
}

div.banner_center div.number_cus {
    background: #fff;
    border: #b7e2fa 1px solid;
    border-radius: 50px;
    padding: 15px 30px;
    color: #767676;
    font-size: 24px;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

div.banner_center div.number_cus i {
    color: #1a2b58;
    font-size: 24px;
}

.navbar-nav {
    display: flex;
    justify-content: space-between !important;
    width: 100% !important;
}

/*---*/

.pro_center_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
}

.pro_center_btn a {
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    gap: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro_center_btn a.trial30 {
    background: #fff;
    border: #f3931f 1px solid;
    color: #1a2b58;
    font-size: 18px;
}

div.pro_center_btn a.trial {
    background: #f3ae59;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
}

div.pro_center_btn a.about {
    /* background: #578fcc; */
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgb(0 107 179);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
}

div.pro_center_btn a.about:hover,
div.pro_center_btn a.trial:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

div.pro_center_btn a.about:hover,
div.pro_center_btn a.trial:hover {
    transform: translate(4px);
}

div.pro_center_btn a.about:hover::before,
div.pro_center_btn a.trial:hover::before {
    animation: shine 1.5s ease-out infinite;
}

div.pro_center_btn a.about::before,
div.pro_center_btn a.trial::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

div.pro_center_btn a i {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

div.pro_center_btn a.trial {
    background: #f3ae59;
}

.list_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.list_btn a {
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    color: #ffc107;
    text-decoration: none;
    /*padding: 10px 24px;
    height: 50px;*/
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_btn a.trial30 {
    /*background: #fff;
    border: #f3931f 1px solid;
    color: #1a2b58;
    z-index: 1;
    max-height: 30px;*/
    font-size: 16px;
}

.list_btn a.trial {
    background: #f3ae59;
}
.list_btn a.about {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    background-color: #000;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-size: 100%;
    font-weight: 900;
    line-height: 1.5;
    margin: 0;
    -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
    padding: 0;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.list_btn a.about,
.list_btn a.about *,
.list_btn a.about :after,
.list_btn a.about :before,
.list_btn a.about:after,
.list_btn a.about:before {
    /* background: #578fcc;0 */
    border: 0 solid;
    box-sizing: border-box;
}

.list_btn a.about:disabled {
    cursor: default;
}

.list_btn a.about:-moz-focusring {
    outline: auto;
}

.list_btn a.about svg {
    display: block;
    vertical-align: middle;
}

.list_btn a.about [hidden] {
    display: none;
}

.list_btn a.about {
    border-radius: 99rem;
    border-width: 2px;
    padding: 0.8rem 3rem;
    z-index: 0;
    display: flex;
}

.list_btn a.about:hover {
    /* -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards; */
    /* animation: none; */
}
.list_btn a.about:before,
.list_btn a.about:after {
    --skew: 0.2;
    background: #fff;
    content: "";
    display: block;
    height: 102%;
    left: calc(-50% - 50% * var(--skew));
    pointer-events: none;
    position: absolute;
    top: -104%;
    transform: skew(calc(150deg * var(--skew))) translateY(0);
    transition: transform 0.3s ease;
    width: 100%;
    z-index: -1;
}

.list_btn a.about:after {
    left: calc(50% + 50% * var(--skew));
    top: 102%;
    z-index: -1;
}

.list_btn a.about:after,
.list_btn a.about:before {
    --skew: 0.2;
    background: #fff;
    content: "";
    display: block;
    height: 102%;
    left: calc(-50% - 50% * var(--skew));
    pointer-events: none;
    position: absolute;
    top: -104%;
    transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
    transition: transform 0.2s ease;
    width: 100%;
}

.list_btn a.about:after {
    --progress: 0%;
    left: calc(50% + 50% * var(--skew));
    top: 102%;
    z-index: -1;
}

.list_btn a.about:hover:before {
    --progress: 100%;
}

.list_btn a.about:hover:after {
    --progress: -102%;
}

.list_btn a.download-apk {
    /* background: green; */
}

div.banner_center .list_btn a i {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

div.banner_center h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
    color: #f3931f;
    flex-direction: column;
    font-size: 36px;
    line-height: 50px;
}

div.banner_center p {
    color: #444;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

div.banner_center h1 .fs36 {
    font-size: 30px;
    color: #fff;
}

div.banner_center h1 .color_or {
    color: #fff;
}

div.banner_center h1 .fs60 {
    font-size: 48px;
}

.color_or {
    color: #f3931f;
}

div.banner_right {
    display: none;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    gap: 30px;
    padding-right: 30px;
    position: absolute;
    right: 0;
}

div.list_app {
    display: flex;
    align-items: flex-end;
    width: auto;
    flex-direction: column;
    gap: 25px;
}

div.list_app a {
    min-width: 240px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #fff;
    border-radius: 50px;
    padding: 10px 25px 10px 10px;
    box-shadow: 0px 3px 3px rgb(0, 0, 0, 0.2);
}

div.list_app a h4 {
    margin: 0;
    font-weight: bold;
    color: #1a2b58;
    text-transform: uppercase;
    font-size: 26px;
}

div.flex_center {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

div.gap25 {
    gap: 25px;
}

div.box_shadow {
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.15);
}

.btn_sm {
    font-size: 24px;
    color: #000;
    padding: 20px;
    font-weight: 500;
    border-radius: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mh80 {
    min-height: 80px;
}

/*----------------breadcrumb--------------*/
div.breadcrumb_bg {
    padding: 10px;
    border-bottom: #e0e0e0 1px solid;
}

ol.breadcrumb {
    margin: 0 !important;
    font-size: 13px;
}

ol.breadcrumb a {
    text-decoration: none;
    color: #7083b6;
}

.breadcrumb-item.active {
    color: #aaa;
}

ol.breadcrumb i {
    font-size: 18px;
    color: #7083b6 !important;
    margin-right: 5px;
}

/*----------------Content--------------*/
/*Banner*/
div.banner_child {
    background-image: url("/images/background/background_img_02.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

div.banner_child img {
    width: 100%;
}

div.content {
    padding: 50px 0;
}

.bg_gr,
#businessType,
.background_img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#businessType {
    background-image: url(../images/background/banner_02.jpg);
}

.bg_gr {
    background-image: url(../images/background/background_img_01.png);
}

.background_img {
    background-image: url(../images/background/background_img_03.jpg);
}

div.content_content {
    padding: 0px 0 50px 0;
    margin-top: 5px;
}

div.content_content h2,
p {
    text-align: justify;
}

/*TAB SOLUTION*/
div.tab_solu {
    background: #f3f3f3;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 2px 1px rgb(0, 0, 0, 0.3);
}

div.tab_solu button:first-child {
    border: 0;
    border-radius: 0;
    border-left: 6px solid;
    border-top: #fff 0px solid;
    border-bottom: #dfdfdf 1px solid;
    width: 100%;
    min-height: 100px;
    padding: 15px 10px;
    color: #4c5876;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.tab_solu button {
    border: 0;
    border-radius: 0;
    border-left: 6px solid;
    border-top: #fff 1px solid;
    border-bottom: #dfdfdf 1px solid;
    width: 100%;
    min-height: 100px;
    padding: 15px 10px;
    color: #4c5876;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.tab_solu button:last-child {
    border: 0;
    border-radius: 0;
    border-left: 6px solid;
    border-top: #fff 1px solid;
    border-bottom: #dfdfdf 0px solid;
    width: 100%;
    min-height: 100px;
    padding: 15px 10px;
    color: #4c5876;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.tab_solu button.active {
    border: 0;
    border-radius: 0;
    border-left: 6px solid #f3931f;
    width: 100%;
    padding: 15px 10px;
    color: #f3931f;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 0px rgb(0, 0, 0, 0.3);
}

div.tab_solu button.active span {
    color: #feba0d;
}

div.tab_solu button span {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 24px;
}

.btn.active {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 #ccc;
    border: 1px solid #ccc;
}

.content_solu {
    display: none;
}

.content_solu.active {
    /* display: block; */
}

div.tab_solu_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.tab_solu_content img {
    width: 100%;
}

div.tab_solu_content h2 {
    display: flex;
    color: #f3931f;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: bold;
}

div.tab_solu_content p {
    color: #666;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    width: 90%;
}

div.tab_solu_content a.btn_more {
    background: #f3f3f3;
    border-radius: 30px;
    border: #c8ddf3 1px solid;
    color: #1f62ac;
    font-size: 16px;
    padding: 10px 20px;
    text-decoration: none;
    margin-bottom: 30px;
}

div.tab_solu_content a.btn_more:hover {
    color: #f3931f;
    text-decoration: none;
}

div.title_home {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

div.title_home h2 {
    color: #1a2b58;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0px;
}

#businessType div.title_home h2 {
    color: #f3931f;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0px;
}

div.title_home img {
    height: 78px;
}

div.title_home h2 img {
    height: 48px;
}

div.title_home p {
    font-size: 19px;
    color: #fe0000;
}

div.content_pro form {
    width: 100%;
}

div.content_pro form div.row {
    width: 100%;
}

div.content_pro {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.content_pro div.col-md-4 {
    display: flex;
    justify-content: center;
    align-items: start;
}

div.content_pro ul {
    margin: 0;
    padding: 0 1px;
    display: flex;
    background: #fff;
    width: auto;
    border-radius: 25px;
    box-shadow: 0px 2px 4px rgb(0, 0, 0, 0.2);
}

div.content_pro ul a {
    padding: 10px 30px;
    border-radius: 25px;
    border: 0 !important;
    color: #000 !important;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    box-shadow: none;
    transition: all 0.5s ease;
}

div.content_pro ul a:hover {
    background: #1a2b58 !important;
    border: 0 !important;
    border-radius: 25px;
    padding: 10px 30px;
    color: #fff !important;
    text-transform: uppercase;
    box-shadow: none;
}

div.content_pro ul a.active {
    background: #f3931f !important;
    border: 0;
    border-radius: 25px;
    padding: 10px 30px;
    color: #fff !important;
    font-size: 18px;
    text-transform: uppercase;
    box-shadow: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

div.tab-content {
    width: 100%;
}

div.uti_img {
    padding: 15px;
    text-align: center;
}

div.uti_img img {
    width: 100%;
}

div.thumb_pro {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

div.thumb_pro img {
    width: 100%;
}

div.tab-content .row {
    margin-top: 20px;
}

div.list_uti .row {
    margin-top: 10px;
}

div.tab-content p.des {
    text-align: center;
    margin: 10px 0 50px 0;
}

p.des {
    text-align: center;
    margin: 10px 0 50px 0;
}

section#utilities {
    background-color: #fff;
    /* background-image: url("/images/background/background_img.jpg"); */
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

section#whyChoose {
    background-image: url("/images/background/background_img.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

div.pro_center {
    display: flex;
    /* margin: 0px -40px; */
    justify-content: center;
    flex-wrap: wrap;
}

div.pro_center a {
    width: calc(25% - 40px);
    margin: 0 12px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
}

div.pro_center a:hover {
    h3 {
        color: #f3931f !important;
    }

    span {
        border: #f3931f 1px solid;
    }
}

div.pro_center a span {
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0px 5px rgb(0, 0, 0, 0.2);
    padding: 10px;
    width: 100%;
    height: 165px;
}

div.pro_center a h3 {
    color: #454e64;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

div.pro_center_thumb {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0px 5px rgb(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    background: #fff;
    margin-left: 50px;
}

div.pro_center_thumb img {
    width: 100%;
}

div.list_uti {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 15px;
}

div.list_uti_item {
    display: flex;
    flex-direction: row;
    position: relative;
    height: 200px;
    border-radius: 14px;
    z-index: 1111;
    overflow: hidden;
    justify-content: center;
    box-shadow:
        0px 0px 10px #ddd,
        -10px -10px 10px #ffffff;
}

div.list_uti_item .bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 190px;
    height: 240px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
}

div.list_uti_item .blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ff0000;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}

div.list_uti_item div.uti_pic {
    display: flex;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
}

div.list_uti_item div.uti_pic img {
    width: fit-content;
    width: 60px;
    height: 60px;
}

div.list_uti_item div.uti_des {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0 15px;
}

div.list_uti_item div.uti_des h4 {
    color: #1a2b58;
    font-size: 14px;
    font-weight: bold;
}

div.list_uti_item div.uti_des p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.cate_item {
    color: #1a2b58;
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    text-decoration: none;
    padding: 15px;
}

.cate_item .img_cate {
    border-radius: 500px;
    border: #13c5ef 3px solid;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 162px;
}

.cate_item .img_cate img {
    height: 100%;
    width: fit-content;
}

.cate_item h4 {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.carousel-inner {
    margin-top: 40px;
}

.carousel button span.fa {
    color: #666 !important;
    font-size: 24px;
}

div.cus_why_img {
    border-radius: 10px;
    overflow: hidden;
    width: 90%;
    height: 96%;
    margin: 0 25px;
}

div.cus_why_des {
    margin: 10px 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px rgb(0, 0, 0, 0.1);
    padding: 40px;
    background: #fff;
    min-height: 600px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

div.cus_why_des h3 {
    font-size: 24px;
    color: #1a2b58;
    margin-bottom: 20px;
}

div.cus_why_img img {
    width: 100%;
    height: fit-content;
}

div.cus_why_des_item {
    display: flex;
    gap: 10px;
    flex-direction: row;
    margin-bottom: 20px;
}

div.cus_why_des_item i {
    font-size: 18px;
    color: #1a2b58;
}

div.cus_why_des_item span {
    line-height: 20px;
    color: #666;
}

.carousel-control-next,
.carousel-control-prev {
    width: 8%;
}

div.content_pro div.carousel {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

#partn div.carousel-inner {
    margin-top: 0;
    width: 90%;
}

div.show_content p {
    text-align: justify;
}

div.list_partner_item {
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.15);
    margin-bottom: 25px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    min-height: 120px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

div.list_partner_card {
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.15);
    margin-bottom: 25px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    max-height: 130px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

div.list_partner_card div.partner_pic img {
    width: 89px;
    height: 64px;
}

div.list_partner_item div.partner_pic {
    border-radius: 6px;
    width: 85px;
    height: 85px;
    overflow: hidden;
    display: table;
}

div.list_partner_item div.partner_pic img {
    width: auto;
    height: 85px;
}

div.list_partner_item div.exp {
    border-radius: 500px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    display: table;
}

div.list_partner_item div.exp img {
    height: 80px;
}

div.list_partner_item div.partner_des {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 200px;
}

div.list_partner_item div.partner_des p {
    margin: 0;
    text-align: left !important;
    letter-spacing: -0.5px;
}

div.list_partner_item h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 7px 0;
}

div.p15 {
    padding: 20px !important;
}

div.list_logo_part {
    display: flex;
    gap: 25px;
    width: 100%;
    justify-content: space-between;
    padding: 5px;
}

div.list_logo_part div.logo_part_child {
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
}

div.logo_part_child img {
    height: 60px;
}

div.partner_des .checked {
    color: orange;
}

div.content_news {
    display: flex;
    flex-direction: column;
}

div.content_news h3 {
    border-bottom: 1px solid #e8eaed;
    padding: 12px 0 11px;
    margin-bottom: 32px;
}

div.news_sm {
    display: flex;
    flex-direction: column;
}

div.content_news a {
    color: #1a2b58;
    text-decoration: none;
    cursor: pointer;
}

div.content_news a:hover {
    color: #f29220;
    text-decoration: none;
}

div.content_news a h5 {
    margin: 10px 0;
}

div.content_news a span {
    color: #888;
    font-size: 12px;
    display: flex;
    gap: 5px;
    align-items: center;
}

div.content_news a span i {
    color: #888;
    font-size: 12px;
}

div.content_news a p {
    margin-bottom: 0;
}

div.content_news a.news_sm_item p {
    text-align: justify;
}

div.news_sm .news_sm_item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    margin-bottom: 15px;
}

.news_sm_item h5 {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
}

.news_sm_item .news_sm_pic {
    display: flex;
    overflow: hidden;
    border-radius: 6px;
    /*min-height: 220px;
  max-height: 220px;*/
    aspect-ratio: 16 / 9;
    align-items: center;
    justify-content: center;
}

.news_sm_pic img {
    width: 100%;
}

.news_bg {
    padding: 0 0px;
    margin-bottom: 20px;
}

.news_bg a {
    display: flex;
    flex-direction: column;
}

div.pro_detail {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 50px;
}

.box_pro1 {
    border-radius: 0 50px 0 50px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 94%;
    min-height: 175px;
}

.box_pro1 .top {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.box_pro1 .top h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.box_pro1 p {
    line-height: 22px;
    font-size: 14px;
}

.box_pro1 .top img {
    width: 52px;
}

.box_pro2 {
    border-radius: 0 50px 0 50px;
    padding: 40px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    min-height: 275px;
}

.box_pro2 h2 {
    font-size: 24px;
    color: #1a2b58;
    font-weight: bold;
    text-transform: uppercase;
}

.box_pro2 p {
    line-height: 24px;
    font-size: 16px;
}

.box_pro3 {
    border-radius: 10px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.box_pro3 h4 {
    font-size: 18px;
    color: #1a2b58;
    font-weight: bold;
    text-transform: uppercase;
}

.box_pro3 p {
    line-height: 20px;
    font-size: 14px;
}

div.img_detail3 {
    text-align: center;
    background: #f3f6f9;
    border-radius: 6px;
}

div.img_detail3 img {
    width: auto;
    height: 280px;
}

div.img_detail {
    text-align: center;
}

div.img_detail img {
    width: 100%;
    max-height: 275px;
}

.box_pro {
    border-radius: 10px;
    padding: 60px 20px 30px 20px;
    margin-bottom: 120px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box_pro img {
    position: absolute;
    top: -60px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.box_pro h3 {
    font-size: 18px;
}

.box_pro a {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    padding: 6px 6px 6px 15px;
    background: #ffc700;
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    bottom: -15px;
}

.box_pro a i.fa {
    font-size: 20px;
    color: #fff;
}

.img img {
    width: 100%;
}

/*PRICE*/
div.list_pack {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-gap: 40px;
    align-items: center;
    margin-top: 40px;
}

/*-------Basic-----------*/
div.pack_basic {
    border-radius: 15px;
    padding: 15px;
    background: #fffdf2;
    border: #3b5998 1px solid;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    min-height: 450px;
    transition: 0.2s ease;
}

div.pack_basic:hover {
    transform: scale(1.1);
}

div.pack_basic h2 {
    color: #666;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bolder;
    display: flex;
    justify-content: center;
}

div.pack_basic_midd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div.pack_basic .datepack {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    background: #dadada;
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    width: 80%;
}

div.pack_basic .pricepack {
    color: #ff7a00;
    font-size: 40px;
    margin: 15px 0;
    padding: 15px 0;
    font-weight: bolder;
    position: relative;
}

div.pack_basic .pricepack i {
    font-size: 20px;
    position: absolute;
    right: -10px;
    top: 0;
}

div.pack_basic .despack {
    border-top: #cecece 1px solid;
}

div.pack_basic .buynow {
    border: #666 1px solid;
    border-radius: 50px;
    background: #fff;
    width: 90%;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
}

div.pack_basic .buynow:hover {
    border: #fbb03c 1px solid;
    border-radius: 50px;
    background: #fff;
    color: #ff7a00;
    text-decoration: none;
    width: 90%;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.despack ul {
    margin: 0 !important;
    padding: 10px !important;
    list-style-type: none;
    box-shadow: none !important;
    background: transparent !important;
    display: flex;
    flex-direction: column;
}

.despack ul li {
    background: url(../images/star.png) no-repeat left top;
    padding-left: 22px;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: left;
}

/*-------pro-----------*/
div.pack_pro {
    border-radius: 15px;
    background: #b5ffae;
    border: #fff 1px solid;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.4);
    transition: 0.2s ease;
}

div.pack_pro:hover {
    transform: scale(1.1);
}

div.pack_pro_title {
    border-bottom: #91dd8a 1px solid;
    text-decoration: none;
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: end;
}

div.pack_pro_title .pack_de {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

div.pack_pro_title h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bolder;
    color: #000;
    text-transform: uppercase;
}

div.pack_pro_title p {
    margin: 0;
}

div.pack_pro_title img {
    margin-right: 10px;
}

div.pack_pro_midd {
    border-top: #e9fde8 1px solid;
    text-decoration: none;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.border_right {
    border-right: #e9fde8 1px solid;
}

div.list_pack_pos {
    display: flex;
    justify-content: center;
    gap: 30px;
    min-height: 900px;
}

div.pack_basic_pos {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.25rem;
    border: 1px solid #1a2b58;
    border-radius: 15px;
    position: relative;
    min-width: 400px;
    min-height: 800px;
    margin-inline: auto;
}

div.pack_basic_pos div.title {
    border-radius: 15px 15px 0 0;
    padding: 15px 0;
    /* background: #b5ffae; */
    background-color: #1a2b58;
    border-bottom: #91dd8a 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-transform: uppercase;
}

div.pack_basic_pos div.title h2,
div.pack_basic_pos div.title h2 span {
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    margin: 0;
}

div.pack_basic_pos_midd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 20px;
}

div.pack_basic_pos_midd h3.datepack_des {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}

div.pack_basic_pos_midd .pri {
    display: grid;
    justify-content: center;
    width: 100%;
    border-bottom: 1px #cecece solid;
}

div.pack_basic_pos_midd div.datepack_des {
    font-size: 16px;
    color: #444;
    text-align: center;
    padding: 15px 0;
}

div.pack_basic_pos_midd .pricepack {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

div.pack_basic_pos_midd .pricepack .price {
    color: #ff7a00;
    font-size: 40px;
    font-weight: bolder;
    position: relative;
}

div.pack_basic_pos_midd .pri span.mth {
    color: #444;
    font-size: 22px;
    margin-left: 10px;
}

div.pack_basic_pos_midd .pri span.mth::before {
    content: "/";
    color: #444;
    font-size: 26px;
    margin-left: 10px;
    /* margin-right: 5px; */
}

div.pack_basic_pos_midd .pricepack i {
    font-size: 26px;
    position: absolute;
    right: -20px;
    top: 0;
}

div.list_year {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 15px 0;
    flex-direction: row;
}

div.pack_basic_pos_midd div.despack {
    min-height: 365px;
}

.color_gr {
    color: #3094c1;
}

div.list_year_box {
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: center;
}

div.list_year_box div {
    border-radius: 25px;
    border: #666 1px solid;
    padding: 10px 10px;
    color: #1a2b58;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bolder;
}

div.list_year_box p {
    color: #fd8900;
    font-size: 18px;
    margin: 0;
    text-align: center;
}

div.list_year_box p span.color_gr {
    font-size: 14px;
}

div.btn_pos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
    width: 100%;
    align-items: center;
    position: absolute;
    bottom: 0;
}

div.btn_pos .btntrial {
    border: #666 1px solid;
    border-radius: 50px;
    background-image: linear-gradient(to right, #ffd600, #f8a300);
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

div.btn_pos .btntrial:hover {
    border: #fbb03c 1px solid;
    border-radius: 50px;
    /* background: #fff; */
    color: #ff7a00;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
}

div.btn_pos .buynow {
    border: #666 1px solid;
    border-radius: 50px;
    background: #fff;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
    width: 100%;
    margin-top: 4px;
}

div.btn_pos .buynow:hover {
    border: #fbb03c 1px solid;
    border-radius: 50px;
    background: #fff;
    color: #ff7a00;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
}

div.procol_title h2 {
    color: #31b01c;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bolder;
    display: flex;
    justify-content: center;
}

div.procol_title h3 {
    color: #342c24;
    font-size: 20px !important;
    text-transform: uppercase;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    margin: 0;
}

div.pro_col {
    padding: 15px 20px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.pro_col .datepack {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    background-image: linear-gradient(to right, #ffd600, #f8a300);
    padding: 8px 15px;
    border-radius: 25px;
    margin: 15px 0;
    width: 70%;
    display: flex;
    justify-content: center;
}

.pri {
    display: grid;
    justify-content: center;
    flex-direction: column;
}

.pri p {
    margin: 15px 0 15px 0;
    font-weight: bolder;
}

div.pro_col .pricepack {
    color: #ff7a00;
    font-size: 40px;
    padding: 15px 0;
    font-weight: bolder;
    position: relative;
    width: auto;
    display: table;
}

div.pro_col .pricepack i {
    font-size: 20px;
    position: absolute;
    right: -10px;
    top: 0;
}

div.pro_col .despack {
    border-top: #cecece 1px solid;
    margin-bottom: 30px;
}

div.pro_col .buynow {
    border: #666 1px solid;
    border-radius: 50px;
    background: #fff;
    color: #ff7a00;
    width: 90%;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
}

div.pro_col .buynow:hover {
    border: #fbb03c 1px solid;
    border-radius: 50px;
    background: #fff;
    color: #ff7a00;
    text-decoration: none;
    width: 90%;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
}

/*-------vip-----------*/
div.pack_vip {
    border-radius: 15px;
    padding: 15px;
    background: #fffdf2;
    border: #31b01c 1px solid;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    min-height: 450px;
    transition: 0.2s ease;
}

div.pack_vip:hover {
    transform: scale(1.1);
}

div.pack_vip h2 {
    color: #31b01c;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bolder;
    display: flex;
    justify-content: center;
}

div.pack_vip .datepack {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    background: #c7f48d;
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    width: 80%;
}

div.pack_vip_midd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div.pack_vip .pricepack {
    color: #4dbd3b;
    font-size: 40px;
    margin: 15px 0;
    padding: 15px 0;
    font-weight: bolder;
    position: relative;
}

div.pack_vip .pricepack i {
    font-size: 20px;
    position: absolute;
    right: -10px;
    top: 0;
}

div.pack_vip .despack {
    border-top: #cecece 1px solid;
}

div.pack_vip .buynow {
    border: #666 1px solid;
    border-radius: 50px;
    background: #fff;
    width: 90%;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
}

div.pack_vip .buynow:hover {
    border: #fbb03c 1px solid;
    border-radius: 50px;
    background: #fff;
    color: #ff7a00;
    text-decoration: none;
    width: 90%;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
}

div.title_price {
    width: 100%;
    margin: 20px 0 40px 0;
    text-align: center;
}

div.title_price h1 {
    font-size: 32px;
    font-weight: bolder;
    color: #000;
    text-transform: uppercase;
}

div.title_price h2 {
    font-size: 32px;
    font-weight: bolder;
    color: #333;
}

div.title_price p {
    color: #000;
}

table.price_list {
    width: 100%;
    font-size: 14px;
    margin-top: 50px;
    background: #f9f9f9;
    border: #b8cadb 1px solid;
}

table.price_list tr.title td {
    border: #b8cadb 1px solid;
    padding: 8px;
    width: 20%;
    position: relative;
    font-weight: bolder;
}

table.price_list tr.fea td {
    border-right: #b8cadb 1px solid;
    padding: 8px;
    width: 20%;
    position: relative;
    background: #fff;
}

table.price_list tr.fea1 td {
    border-right: #b8cadb 1px solid;
    padding: 8px;
    width: 20%;
    position: relative;
    background: #f9f9f9;
}

div.combo {
    height: 200px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 15px;
}

div.combo div.title_combo {
    position: absolute;
    top: -69px;
    left: 0;
    background: #fbb03c;
    height: 68px;
    width: 100%;
    border-radius: 6px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

div.combo ul {
    list-style-type: none;
    margin-top: 10px;
    padding: 0;
}

div.combo ul i.fa-star {
    font-size: 11px;
    color: #fbb03c;
    margin-right: 5px;
}

div.combo div.combo0 {
    background: #9cb8d1;
    border-radius: 6px 0 0 0;
    height: 68px;
    top: -69px;
}

div.combo div.combo0 span {
    background: #fbb03c;
    border-radius: 6px;
    font-size: 12px;
    padding: 2px 10px;
}

div.combo div.combo1 {
    background: #fbb03c;
    border-radius: 0px 0 0 0;
}

div.combo div.combo2 {
    background: #506bb0;
    border-radius: 0px 0px 0 0;
    height: 68px;
    top: -69px;
}

div.combo div.combo2 span {
    background: #fbb03c;
    border-radius: 6px;
    font-size: 12px;
    padding: 2px 10px;
}

div.combo div.combo3 span {
    background: #e0fb3c;
    border-radius: 6px;
    font-size: 12px;
    padding: 2px 10px;
    color: #000;
    font-weight: bolder;
}

div.combo div.combo3 {
    background: #8cdb80;
    border-radius: 0 6px 0 0;
    height: 68px;
    top: -69px;
}

tr.prom {
    background: #fff;
}

tr.prom td {
    padding: 10px 5px !important;
}

span.promotion {
    text-transform: lowercase !important;
    font-weight: bolder;
    background: transparent !important;
    padding: 0 !important;
    font-size: 16px !important;
}

div.price_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
}

div.price_box_top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.price_box_top p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

div.price_box_top strong {
    font-size: 32px;
    position: relative;
    border-bottom: #eee 1px solid;
    line-height: 40px;
}

div.price_box_top strong i {
    font-size: 16px;
    position: absolute;
    right: -10px;
    top: 0;
}

div.bt_combo {
    width: 100%;
    text-align: center;
}

a.btn_contact {
    background: #506bb0;
    border-radius: 6px;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: bolder;
    text-decoration: none;
}

a.btn_contact:hover {
    color: #fbb03c;
}

.fea_title {
    background: #e1f1ff;
    border-bottom: #b8cadb 1px solid;
    text-align: center;
    padding: 15px 0;
}

.fea_title span {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    font-weight: bolder;
}

.fea_title p {
    font-size: 14px;
    color: #333;
    margin-bottom: 0;
}

.fea .check_on,
.fea1 .check_on {
    color: #31b01c;
}

.fea .fa-check {
    font-size: 16px;
}

.fea1 .fa-check {
    font-size: 16px;
}

div.map_cus {
    display: flex;
    align-items: center;
    justify-content: center;
}

div.cus_para {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

div.cus_para div.cus_para_item {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 2px 5px 5px rgb(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 120px;
}

div.cus_para div.cus_para_item strong {
    color: #f29220;
    font-size: 48px;
    display: contents;
}

div.cus_para div.cus_para_item p {
    color: #5e6d95;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
}

div.info_contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

div.info_contact_item {
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    /* box-shadow: 0px 4px 4px rgb(0, 0, 0, 0.15); */
}

div.info_contact_item h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #f29220;
    text-align: center;
}

div.info_contact_item h5 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

div.info_contact_item p {
    margin: 0;
}

div.info_contact_item .contact_ic {
    /* border: #d7ddec 1px solid; */
    width: 35px;
    height: 35px;
    border-radius: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_ic i {
    font-size: 18px;
    color: #f29220;
}

div.box_about {
    background: #fafafa;
    border-radius: 0 50px 0 50px;
    padding: 30px;
    box-shadow: 0px 4px 4px rgb(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 250px;
}

div.box_about h2 {
    color: #1a2b58;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bolder;
}

div.step_ab {
    position: relative;
    background: url(../images/bg_step.png) no-repeat center;
    background-position: 100% 10px;
}

div.step_ab .row {
    z-index: 9999;
}

div.step_ct {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

div.step_ct h4 {
    margin: 0;
}

div.step_ct div.ic_st {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #f4f4f4;
    border-radius: 500px;
}

.accordion {
    background: transparent;
    color: #222;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    height: 26px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
    background: transparent;
}

.active,
.accordion:click {
    border: none;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background: transparent;
    display: none;
    overflow: hidden;
    list-style-type: none;
    margin-bottom: 0px;
    background-color: #fff;
    border: 0px solid transparent;
    border-radius: 0px;
    -webkit-box-shadow: 0 0px 0px rgb(0 0 0 / 5%);
    box-shadow: 0 0px 0px rgb(0 0 0 / 5%);
}

button.accordion {
    border: transparent;
    font-size: 14px;
    font-weight: 450;
    height: 32px;
    border-bottom: #e6ecf6 1px solid;
}

button.accordion:after {
    content: url(../images/ic-plus.jpg);
    color: #222;
    font-weight: bold;
    float: left;
    margin-right: 7px;
}

ul.panel button.accordion {
    font-weight: normal;
}

ul.panel button.accordion.active:after {
    content: url(../images/arrow_dw.png);
}

ul.panel button.accordion:after {
    content: url(../images/arrow.png);
    color: #222;
    font-weight: normal;
    float: left;
    margin-right: 7px;
}

button.accordion.active:after {
    content: url(../images/ic-minus.jpg);
}

ul.panel li a {
    text-decoration: none;
    color: #666;
}

ul.panel li a:hover {
    color: #fc8108;
    text-decoration: none;
}

div.left_menu {
    border-right: #f2f6fd 2px solid;
    padding-right: 30px;
}

div.left_menu h4 {
    padding-right: 30px;
    padding-bottom: 15px;
    margin-bottom: 0px;
    text-transform: uppercase;
    background: url(../images/bg_line_title.jpg) repeat-x bottom;
}

div.left_menu ul {
    list-style-type: none;
}

div.left_menu ul li {
    background: url(../images/arrow.png) no-repeat left;
    padding-left: 10px;
    line-height: 36px;
    border-bottom: #e6ecf6 1px solid;
}

div.left_menu ul li a {
    color: #444;
}

div.left_menu ul li a:hover {
    color: #fc8108;
}

div.left_menu h3 {
    color: #304278;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

div.left_menu div.left_menu_midd {
    color: #304278;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

/*DEVICE*/
div.content_device a {
    text-decoration: none;
}

div.content_device a:hover {
    h2 {
        color: #f3931f;
    }
}

div.device_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

div.device_item div.device_img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

div.device_item div.device_img img {
    height: 260px;
    width: fit-content;
}

div.device_item h2 {
    color: #292e35;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

div.device_item div.device_price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    justify-content: space-between;
}

div.device_item div.device_price span {
    text-align: center;
}

div.device_price span.price_sale {
    color: #f3931f;
}

div.device_price span.price_old {
    color: #999;
    text-decoration: line-through;
}

div.trial_item {
    width: 100%;
}

div.trial_item a {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    background: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0px 3px 3px rgb(0, 0, 0, 0.2);
    text-decoration: none;
}

div.trial_item a:hover {
    background: #fbe9db;
    border-radius: 10px;
    text-decoration: none;
}

div.trial_item a.active {
    background: #fbe9db;
    border-radius: 10px;
    text-decoration: none;
}

div.trial_item a h3 {
    font-size: 16px;
    text-transform: uppercase;
}

div.trial_item a img {
    height: 100px;
    width: fit-content;
}

div.trial_chose {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px -10px;
}

div.trial_chose div.col-md-3 {
    width: calc(25% - 10px);
    margin: 10px 15px;
}

div.fr_dk {
    width: 60%;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

/*----------------Footer--------------*/
div.footer_top {
    /* background: #f1f1f1; */
    padding: 25px 0;
    background-image: url("/images/background/background_img_04.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

div.info_footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

div.info_footer h4 {
    margin-bottom: 0;
    margin-top: 10px;
}

div.info_footer p {
    margin: 0;
    display: flex;
    flex-direction: row;
    line-height: 18px;
    gap: 10px;
}

div.info_footer p i {
    font-size: 16px;
    color: #f29220;
}

div.menu_footer {
    display: flex;
    flex-direction: column;
}

div.menu_footer h4 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

div.menu_footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

div.menu_footer ul li {
    padding: 7px 0;
}

div.menu_footer ul li a {
    color: #444;
    font-size: 14px;
    text-decoration: none;
}

div.menu_footer ul li a:hover {
    color: #f29222;
}

div.footer_bottom {
    background: #1a2b58;
    padding: 10px 0;
    color: #fff;
}

div.content_social {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

/*-----social-----*/
#zalo-vr {
    position: fixed;
    bottom: 14%;
    z-index: 10;
}

.button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    left: 0;
    bottom: 0;
    display: block;
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

.phone-vr-img-circle {
    background-color: #2196f3;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

#zalo-vr a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

.phone-vr-img-circle img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 transparent;
    }
}

@-webkit-keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

.btn-phone-fixed {
    position: fixed;
    z-index: 2;
    bottom: 5%;
    left: 18px;
    width: 64px;
    height: 60px;
}

.btn-phone-fixed .icon-wrap {
    float: left;
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
}

.btn-phone-fixed .icon-wrap .border-1 {
    width: 105px;
    height: 105px;
    position: absolute;
    z-index: 1;
    top: -23px;
    left: -23px;
    border: solid 3px #2a87e8;
    border-radius: 50%;
    animation: vien-lon-zoom 1.2s infinite ease-in-out;
}

.btn-phone-fixed .icon-wrap .border-2 {
    width: 85px;
    height: 85px;
    position: absolute;
    z-index: 1;
    top: -12px;
    left: -12px;
    border: solid 2px #2a87e8;
    border-radius: 50%;
    animation: vien-nho-zoom 2.3s infinite ease-in-out;
}

.btn-phone-fixed .icon-wrap i.fa {
    width: 60px;
    height: 60px;
    font-size: 28px;
    color: #fff;
    background: radial-gradient(#2a87e8 60%, rgba(255, 255, 255, 1) 62%);
    box-shadow: 0 0 25px 3px #2a87e8;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    animation: icon-luc-lac 1.2s infinite ease-in-out;
}

@keyframes icon-luc-lac {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes vien-nho-zoom {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@keyframes vien-lon-zoom {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }

    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.1;
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

div.zalo_gr {
    position: fixed;
    bottom: 255px;
    right: 20px;
    z-index: 10;
}

div.zalo {
    position: fixed;
    bottom: 185px;
    right: 20px;
    z-index: 10;
}

div.faceB {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 10;
}

div.left_hotline {
    position: fixed;
    bottom: 135px;
    right: 20px;
    z-index: 10;
}

.content_center h3 {
    font-size: 24px;
}

.content_center h4 {
    font-size: 16px;
}

#downloadSection {
    transition: all 1s ease;
}

#downloadSection.hide {
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
}

.partnerSwiper {
    padding: 20px 0;
}

/*---------------REPONSIVE----------*/

@media screen and (max-width: 1280px) {
    #solutionSlider .content {
        margin-top: -18px !important;
        padding: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    div.banner_page div.banner_center {
        padding: 40px;
        align-items: center;
    }

    div.banner_page {
        height: max-content;
    }

    div.banner_home {
        background: url(../images/background/banner_01.jpg) no-repeat;
        height: auto;
        box-shadow: 0px 3px 3px rgb(0, 0, 0, 0.1);
    }

    .content_banner {
        grid-template-columns: 1fr !important;
    }

    div.banner_img {
        display: none !important;
    }

    div.banner_center h1 .fs36 {
        font-size: 18px;
    }

    div.banner_center h1 .fs60 {
        font-size: 36px;
        text-align: center;
    }

    div.banner_center p {
        color: #444;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    div.banner_center div.number_cus {
        background: #fff;
        border: #b7e2fa 1px solid;
        border-radius: 50px;
        padding: 6px 15px;
        color: #767676;
        font-size: 18px;
        gap: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0 0 0;
    }

    div.banner_center {
        padding: 20px;
    }

    div.banner_center div.number_cus i {
        color: #1a2b58;
        font-size: 18px;
    }

    div.menu_center_content a,
    div.menu_center_content button {
        height: 100%;
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #1a2b58;
        text-decoration: none;
        text-transform: uppercase;
        padding: 8px;
        background: transparent;
        border: 0;
    }

    div.pro_center a {
        margin: 0 12px 12px;
    }
}

/* Mobile menu fullscreen */
@media (max-width: 1200px) {
    .solution-track {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 15px;
    }

    div.list_partner_item div.partner_des {
        height: 300px;
    }

    .solution-track::-webkit-scrollbar {
        display: none;
    }

    /* button */

    .solu-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .solu-btn.prev {
        left: 5px;
        position: absolute;
    }

    .solu-btn.next {
        right: 5px;
        position: absolute;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .tableprice {
        width: 100%;
        overflow: auto;
    }

    table.price_list {
        width: 100%;
    }

    div.list_pack_pos {
        width: max-content;
    }

    div.banner_page div.banner_center {
        padding: 40px;
        align-items: center;
    }

    div.banner_page {
        height: max-content;
    }

    div.col-md-8 {
        flex: 0 0 auto;
        width: 100%;
    }

    /*Header*/
    div.header_content {
        display: table;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        width: 100%;
        background-color: #fff;
    }

    .menu_language {
        /* margin-bottom: -5px;
        position: absolute;
        right: 0px;
        top: 10px; */
    }

    .main-menu-top {
        margin-top: 36px !important;
        position: relative;
        width: 100%;
        padding: 0 !important;
        background: #132375;
        border-radius: 0px;
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    div.header_menu {
        justify-content: start;
        padding: 15px 0 10px 0;
    }

    .navbar-collapse.collapse {
        background: #1a2b58;
        padding-bottom: 0;
        overflow: visible !important;
        z-index: 1;
    }

    button.navbar-toggler {
        border-radius: 3px;
        border: #f3931f 1px solid !important;
        padding: 8px !important;
        color: #f3931f !important;
        margin-left: 10px;
    }

    button.navbar-toggler i.fa-bars {
        color: #f3931f !important;
        font-size: 24px;
    }

    ul.navbar-nav li {
        padding: 0px 0;
    }

    div.menu_center_content .dropdown-menu ul {
        grid-template-columns: 1fr;
    }

    div.menu_center_content a,
    div.menu_center_content button {
        height: 100%;
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #1a2b58;
        text-decoration: none;
        text-transform: uppercase;
        padding: 8px;
        background: transparent;
        border: 0;
    }

    .pMB {
        padding: 0 !important;
    }

    .list_btn {
        margin: 15px 0;
    }

    /*Banner*/
    div.banner_img {
        display: none;
    }

    div.banner_home {
        background: url(../images/background/banner_01.jpg) no-repeat;
        height: auto;
        box-shadow: 0px 3px 3px rgb(0, 0, 0, 0.1);
    }

    .content_banner {
        grid-template-columns: 1fr !important;
    }

    div.banner_right {
        padding: 15px;
        margin: 0;
        display: none;
    }

    div.banner_center h1 .fs36 {
        font-size: 18px;
    }

    div.banner_center h1 .fs60 {
        font-size: 36px;
        text-align: center;
    }

    div.banner_center p {
        color: #444;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    .list_btn a {
        border-radius: 50px;
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        padding: 4px 15px;
        gap: 10px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    div.banner_center div.number_cus {
        background: #fff;
        border: #b7e2fa 1px solid;
        border-radius: 50px;
        padding: 6px 15px;
        color: #767676;
        font-size: 18px;
        gap: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0 0 0;
    }

    div.banner_center {
        padding: 20px;
    }

    div.banner_center div.number_cus i {
        color: #1a2b58;
        font-size: 18px;
    }

    div.list_app {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    div.list_app a {
        min-width: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        background: #fff;
        border-radius: 50px;
        padding: 5px 10px;
        box-shadow: 0px 3px 3px rgb(0, 0, 0, 0.2);
    }

    div.list_app a img {
        width: 30px;
    }

    div.list_app a h4 {
        margin: 0;
        font-weight: bold;
        color: #1a2b58;
        text-transform: uppercase;
        font-size: 14px;
    }

    div.trialMB {
        position: absolute;
        right: 0;
        bottom: -55px;
    }

    div.content {
        padding: 15px 0;
    }

    div.content_content {
        padding: 0px 0 20px 0;
        margin-top: 5px;
    }

    /*--TAB SP --*/
    div.tab_solu {
        background: #f3f3f3;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: 0px 2px 1px rgb(0, 0, 0, 0.3);
    }

    div.tab_solu button:first-child {
        border: 0;
        border-radius: 0;
        border-left: 6px solid;
        border-top: #fff 0px solid;
        border-bottom: #dfdfdf 1px solid;
        width: 100%;
        min-height: 70px;
        padding: 0 10px;
        color: #4c5876;
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    div.tab_solu button {
        border: 0;
        border-radius: 0;
        border-left: 6px solid;
        border-top: #fff 1px solid;
        border-bottom: #dfdfdf 1px solid;
        width: 100%;
        min-height: 70px;
        padding: 0 10px;
        color: #4c5876;
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    div.tab_solu button:last-child {
        border: 0;
        border-radius: 0;
        border-left: 6px solid;
        border-top: #fff 1px solid;
        border-bottom: #dfdfdf 0px solid;
        width: 100%;
        min-height: 70px;
        padding: 0 10px;
        color: #4c5876;
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    div.tab_solu button.active {
        border: 0;
        border-radius: 0;
        border-left: 6px solid #f3931f;
        width: 100%;
        padding: 0 10px;
        color: #f3931f;
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 0px 0px rgb(0, 0, 0, 0.3);
    }

    div.tab_solu button.active span {
        color: #feba0d;
    }

    div.tab_solu button span {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 24px;
    }

    .content_solu {
        padding: 20px 0;
    }

    div.tab_solu_content h2 {
        font-size: 22px;
    }

    div.tab_solu_content p {
        font-size: 14px;
        width: 100%;
    }

    div.content_pro ul a {
        padding: 10px 20px;
        font-size: 14px;
    }

    div.content_pro ul a.active {
        padding: 10px 20px;
        font-size: 14px;
    }

    div.pro_center {
        margin: 0;
    }

    div.pro_center img {
        width: 100%;
    }

    div.pro_center a {
        width: calc(33% - 20px);
        margin: 0 10px 20px 10px;
    }

    div.pro_center a span {
        padding: 15px;
    }

    .pro_center_btn a {
        font-size: 14px;
        padding: 5px 10px;
        height: 100%;
    }

    div.pro_center_thumb {
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0px 5px rgb(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        background: #fff;
        margin-left: 0px;
        margin-top: 15px;
    }

    div.title_home h2 {
        text-align: center;
    }

    .carousel-inner {
        margin-top: 10px;
    }

    div.cus_why_des {
        margin: 10px 10px;
        padding: 30px 20px;
    }

    .pro_center_btn {
        margin-top: 5px;
    }

    p.des {
        text-align: center;
        margin: 0px 0 25px 0;
    }

    div.list_partner_item {
        margin-bottom: 10px;
    }

    div.list_logo_part {
        gap: 15px;
    }

    div.list_logo_part div.logo_part_child {
        width: 22%;
    }

    .news_bg {
        padding: 0 0px;
    }

    div.info_footer {
        gap: 5px;
    }

    div.info_footer .logo {
        margin-bottom: 10px;
    }

    div.info_footer span {
        line-height: 20px;
    }

    div.menu_footer {
        margin-top: 20px;
    }

    div.menu_footer ul li {
        padding: 5px 0;
    }

    .cate_item .img_cate {
        height: 150px;
        width: 150px;
    }

    div.tab-content .row {
        margin-top: 10px;
    }

    div.tab-content .row div.col-md-2 {
        width: 33%;
        max-width: 33%;
        flex: 0 0 50%;
    }

    .cate_item {
        align-items: center;
    }

    div.footer_bottom span {
        font-size: 13px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    div.trial_chose {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px -10px;
    }

    div.trial_chose div.col-md-3 {
        width: calc(100% - 10px);
        margin: 10px 15px;
    }

    div.fr_dk {
        width: 90%;
    }

    #zalo-vr {
        position: fixed;
        bottom: 17%;
        z-index: 10;
        right: 0;
    }

    .btn-phone-fixed {
        position: fixed;
        z-index: 2;
        bottom: 10%;
        right: 10px;
        left: auto;
        width: 64px;
        height: 60px;
    }
}

@media (min-width: 280px) and (max-width: 768px) {
    div.banner_center h1 {
        font-size: 25px;
    }
    .despack ul li {
        font-size: 14px;
    }

    div.pack_basic_pos {
        min-height: 950px;
    }

    div.pro_center a h3 {
        font-size: 15px;
    }

    div.list_partner_item h4 {
        font-size: 14px;
    }

    div.footer_bottom span {
        text-align: center;
    }

    div.content_social {
        justify-content: center;
    }

    .tableprice {
        width: 100%;
        overflow: auto;
    }

    table.price_list {
        width: 1000px;
    }

    div.list_pack_pos {
        width: max-content;
    }

    div.banner_page div.banner_center {
        /* padding: 40px; */
        align-items: center;
    }

    div.content_banner_pro {
        grid-template-columns: 1fr;
    }

    div.banner_page {
        height: max-content;
    }

    /*Header*/
    div.header_content {
        display: table;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        width: 100%;
    }

    .menu_language {
        margin-bottom: -5px;
        position: absolute;
        right: 0px;
        top: 10px;
    }

    .main-menu-top {
        margin-top: 36px !important;
        position: relative;
        width: 100%;
        padding: 0 !important;
        background: #132375;
        border-radius: 0px;
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    div.header_menu {
        justify-content: start;
        padding: 15px 0 10px 0;
    }

    .navbar-collapse.collapse {
        background: #1a2b58;
        padding-bottom: 0;
        overflow: visible !important;
        z-index: 1;
    }

    button.navbar-toggler {
        border-radius: 3px;
        border: #f3931f 1px solid !important;
        padding: 8px !important;
        color: #f3931f !important;
        margin-left: 10px;
    }

    button.navbar-toggler i.fa-bars {
        color: #f3931f !important;
        font-size: 24px;
    }

    ul.navbar-nav li {
        padding: 0px 0;
    }

    div.menu_center_content .dropdown-menu ul {
        grid-template-columns: 1fr;
    }

    div.menu_center_content a,
    div.menu_center_content button {
        height: 100%;
        display: flex;
        align-items: center;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        padding: 10px 20px;
        background: transparent;
        border: 0;
    }

    .pMB {
        padding: 0 !important;
    }

    .list_btn {
        margin: 15px 0;
    }

    /*Banner*/
    div.banner_img {
        display: none;
    }

    div.banner_home {
        background: url(../images/background/banner_01.jpg) no-repeat;
        height: auto;
        box-shadow: 0px 3px 3px rgb(0, 0, 0, 0.1);
    }

    .content_banner {
        grid-template-columns: 1fr !important;
    }

    div.banner_right {
        padding: 15px;
        margin: 0;
        display: none;
    }

    div.banner_center h1 .fs36 {
        font-size: 18px;
    }

    div.banner_center h1 .fs60 {
        font-size: 36px;
        text-align: center;
    }

    div.banner_center p {
        color: #444;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    .list_btn a {
        border-radius: 50px;
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        padding: 4px 15px;
        gap: 10px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    div.banner_center div.number_cus {
        background: #fff;
        border: #b7e2fa 1px solid;
        border-radius: 50px;
        padding: 6px 15px;
        color: #767676;
        font-size: 18px;
        gap: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0 0 0;
    }

    div.banner_center {
        padding: 20px;
    }

    div.banner_center div.number_cus i {
        color: #1a2b58;
        font-size: 18px;
    }

    div.list_app {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    div.list_app a {
        min-width: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        background: #fff;
        border-radius: 50px;
        padding: 5px 10px;
        box-shadow: 0px 3px 3px rgb(0, 0, 0, 0.2);
    }

    div.list_app a img {
        width: 30px;
    }

    div.list_app a h4 {
        margin: 0;
        font-weight: bold;
        color: #1a2b58;
        text-transform: uppercase;
        font-size: 14px;
    }

    div.trialMB {
        position: absolute;
        right: 0;
        bottom: -55px;
    }

    div.content {
        padding: 15px 0;
    }

    div.content_content {
        padding: 0px 0 20px 0;
        margin-top: 5px;
    }

    /*--TAB SP --*/
    div.tab_solu {
        background: #f3f3f3;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: 0px 2px 1px rgb(0, 0, 0, 0.3);
    }

    div.tab_solu button:first-child {
        border: 0;
        border-radius: 0;
        border-left: 6px solid;
        border-top: #fff 0px solid;
        border-bottom: #dfdfdf 1px solid;
        width: 100%;
        min-height: 70px;
        padding: 0 10px;
        color: #4c5876;
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    div.tab_solu button {
        border: 0;
        border-radius: 0;
        border-left: 6px solid;
        border-top: #fff 1px solid;
        border-bottom: #dfdfdf 1px solid;
        width: 100%;
        min-height: 70px;
        padding: 0 10px;
        color: #4c5876;
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    div.tab_solu button:last-child {
        border: 0;
        border-radius: 0;
        border-left: 6px solid;
        border-top: #fff 1px solid;
        border-bottom: #dfdfdf 0px solid;
        width: 100%;
        min-height: 70px;
        padding: 0 10px;
        color: #4c5876;
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    div.tab_solu button.active {
        border: 0;
        border-radius: 0;
        border-left: 6px solid #f3931f;
        width: 100%;
        padding: 0 10px;
        color: #f3931f;
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 0px 0px rgb(0, 0, 0, 0.3);
    }

    div.tab_solu button.active span {
        color: #feba0d;
    }

    div.tab_solu button span {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 24px;
    }

    .content_solu {
        padding: 20px 0;
    }

    div.tab_solu_content h2 {
        font-size: 22px;
    }

    div.tab_solu_content p {
        font-size: 14px;
        width: 100%;
    }

    div.content_pro ul a {
        padding: 10px 20px;
        font-size: 14px;
    }

    div.content_pro ul a.active {
        padding: 10px 20px;
        font-size: 14px;
    }

    div.pro_center {
        margin: 0;
    }

    div.pro_center img {
        width: 100%;
    }

    div.pro_center a {
        width: calc(50% - 20px);
        margin: 0 10px 20px 10px;
    }

    div.pro_center a span {
        padding: 15px;
    }

    .pro_center_btn a {
        font-size: 14px;
        padding: 5px 10px;
        height: 100%;
    }

    div.pro_center_thumb {
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0px 5px rgb(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        background: #fff;
        margin-left: 0px;
        margin-top: 15px;
    }

    div.title_home h2 {
        text-align: center;
    }

    .carousel-inner {
        margin-top: 10px;
    }

    div.cus_why_des {
        margin: 10px 10px;
        padding: 30px 20px;
    }

    .pro_center_btn {
        margin-top: 5px;
    }

    p.des {
        text-align: center;
        margin: 0px 0 25px 0;
    }

    div.list_partner_item {
        margin-bottom: 10px;
    }

    div.list_logo_part {
        gap: 15px;
    }

    div.list_logo_part div.logo_part_child {
        width: 22%;
    }

    .news_bg {
        padding: 0 0px;
    }

    div.info_footer {
        gap: 5px;
    }

    div.info_footer .logo {
        margin-bottom: 10px;
    }

    div.info_footer span {
        line-height: 20px;
    }

    div.menu_footer {
        margin-top: 20px;
    }

    div.menu_footer ul li {
        padding: 5px 0;
    }

    .cate_item .img_cate {
        height: 150px;
        width: 150px;
    }

    div.tab-content .row {
        margin-top: 10px;
    }

    div.tab-content .row div.col-md-2 {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
    }

    .cate_item {
        align-items: center;
    }

    div.footer_bottom span {
        font-size: 13px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    div.trial_chose {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px -10px;
    }

    div.trial_chose div.col-md-3 {
        width: calc(100% - 10px);
        margin: 10px 15px;
    }

    div.fr_dk {
        width: 90%;
    }

    #zalo-vr {
        position: fixed;
        bottom: 17%;
        z-index: 10;
        right: 0;
    }

    .btn-phone-fixed {
        position: fixed;
        z-index: 2;
        bottom: 10%;
        right: 10px;
        left: auto;
        width: 64px;
        height: 60px;
    }
}

.cke_notification.cke_notification_warning {
    display: none;
}

.buttonNext,
.buttonPrevious {
    display: none;
}

@media (max-width: 500px) {
    div.cus_para div.cus_para_item {
        height: max-content;
        padding: 16px;
    }

    div.cus_para div.cus_para_item strong {
        font-size: 34px;
    }

    div.cus_para div.cus_para_item p {
        font-size: 16px;
    }

    div.list_pack_pos {
        width: 100%;
    }

    .tableprice {
        width: 100%;
        overflow: auto;
    }

    div.btn_pos {
        padding: 0px 15px;
    }

    div.list_year {
        flex-direction: column;
    }

    .list_year,
    .list_year_box {
        width: 100%;
        gap: 0px;
    }

    div.list_year_box div {
        width: 50%;
        text-align: center;
    }
}

/* new interface */
.top-contact {
    display: flex;
    /* background: #f3f3f3; */
}

.contact-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 20px;
    border-right: 1px solid #ddd;
    height: 100px;
}

.contact-item:last-child {
    border-right: none;
}

.icon {
    font-size: 22px;
    color: #2d5fb8;
    margin-right: 15px;
}

.content span {
    display: block;
    font-size: 18px;
    color: #000;
}

.content strong {
    font-size: 18px;
    color: #222 !important;
    text-decoration: none;
}

.bi-facebook::before,
.bi-youtube::before {
    font-size: 24px;
}
.bi-youtube::before {
    color: #cd3545;
}

.main-bg {
    background: #1a2b58;
}

.menu_center_content {
    position: relative;
}

.navbar-toggler {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* card */
.card {
    position: relative;
    width: 300px;
    min-height: 254px;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #000;

    overflow: visible;
    isolation: isolate;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 10px;
    background: linear-gradient(-45deg, #1a2b58, #f3931f);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

/* blur glow */
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #f3931f, #1a2b58);
    filter: blur(20px);
    opacity: 0;
    transition:
        opacity 0.4s,
        transform 0.4s;
    transform: scale(0.9);
    z-index: -2;
}

.card:hover {
    transform: translateY(-10px) scale(0.9);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    opacity: 0.7;
    transform: scale(1);
}

.heading {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    line-height: 30px;
    margin-bottom: 0;
}

.card p:not(.heading) {
    font-size: 16px;
    text-align: center;
    color: #666;
}

.card p:last-child {
    color: #1a2b58;
    font-weight: 600;
}

.card:hover::after {
    filter: blur(10px);
}

.card:hover::before {
    transform: rotate(-90deg) scaleX(0.86) scaleY(1.24);
}

.card-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-number .number {
    font-size: 60px;
    font-weight: 700;
    color: #cfd6df;
    opacity: 0.6;
    letter-spacing: -1px;
}

/* From Uiverse.io by adamgiebl */
a.readMore {
    background: #eff1f5;
    color: #1a2b58;
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    /*box-shadow: inset 0 0 1.6em -0.6em #1a2b58;*/
    overflow: hidden;
    position: absolute;
    bottom: 10px;
    left: 12px;
    right: 12px;
    width: auto;
    height: 2.5em;
    padding-right: 3.3em;
    cursor: pointer;
    text-decoration: none;
}

a.readMore .icon {
    /*background: white;*/
    margin-left: 1em;
    position: absolute;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.8em;
    width: 2em;
    border-radius: 0.7em;
    /*box-shadow: 0.1em 0.1em 0.6em 0.2em #1a2b58;*/
    transition: all 0.3s;
}

a.readMore:hover .icon {
    width: calc(100% - 0.6em);
}

a.readMore .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #1a2b58;
}

a.readMore:hover .icon svg {
    transform: translateX(0.1em);
}

a.readMore:active .icon {
    transform: scale(0.95);
}

.solution-slider {
    overflow: hidden;
    width: 100%;
}

.solution-track {
    display: flex;
    transition: transform 0.5s ease;
}

.solution-item {
    padding: 10px;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

.list_partner {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.list_partner > div {
    flex: 0 0 100%;
}

.partnerSwiper,
.partnerLogoSwiper,
.businessTypeSwiper {
    width: 100%;
}

.partnerSwiper .swiper-slide,
.partnerLogoSwiper .swiper-slide,
.businessTypeSwiper .swiper-slide {
    height: auto;
}

@media (max-width: 575px) {
    .solution-item {
        flex: 0 0 100%;
    }
    .card {
        min-width: 280px;
    }
    div.list_partner_item div.partner_des {
        max-height: 200px;
    }
}
@media (min-width: 320px) and (max-width: 375px) {
    .solution-item {
        flex: 0 0 100%;
    }
    .card {
        min-width: 280px;
    }
    div.pack_basic_pos {
        min-width: 260px;
    }
}
@media (min-width: 376px) and (max-width: 425px) {
    .solution-item {
        flex: 0 0 100%;
    }
    .card {
        min-width: 330px;
    }
    div.pack_basic_pos {
        min-width: 320px;
    }
}
@media (min-width: 426px) and (max-width: 575px) {
    .solution-item {
        flex: 0 0 100%;
    }
    .card {
        min-width: 400px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .solution-item {
        flex: 0 0 50%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    div.list_partner_item {
        min-height: 280px;
    }
    .solution-item {
        flex: 0 0 33.333%;
    }

    .list_partner > div {
        flex: 0 0 33.3333% !important;
    }
}
@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto !important;
        width: 33.33333333%;
    }
    .col-md-6 {
        flex: 0 0 auto !important;
        width: 50%;
    }
}
@media screen and (max-width: 991px) {
    #navbarSupportedContent {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding: 30px 30px 30px;
        transition: all 0.4s ease;
        overflow-y: auto !important;
    }

    #navbarSupportedContent.show {
        top: 60px;
        z-index: 10000;
    }

    #navbarSupportedContent ul {
        flex-direction: column;
        gap: 20px;
    }

    #navbarSupportedContent .nav-item a,
    #navbarSupportedContent .nav-item #dropdownMenuButton {
        font-size: 20px;
        font-weight: 600;
        color: #1a2b58;
    }

    .mobile-close {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 28px;
        cursor: pointer;
    }
}
@media (min-width: 992px) {
    .solution-item {
        flex: 0 0 20%;
    }
    div.btn_pos {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 0 12px;
    }
    .col-lg-4 {
        flex: 0 0 auto !important;
        width: 33.33333333% !important;
    }

    div.box_about {
        min-height: 320px;
    }
}

.solution-slider {
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.content_solu {
    height: 100%;
}

.pro_center {
    width: 100%;
}

.pro_center .swiper-slide {
    text-align: center;
}

span.required {
    color: #cd3545;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
    background: #f3931f;
}

.header_bg {
    position: relative;
    transition: all 0.3s ease;
    z-index: 10000;
}

.header_bg.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    animation: headerSlide 0.3s ease;
}

@keyframes headerSlide {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* download apk button */
/* From Uiverse.io by andrew-demchenk0 */
.download-apk {
    position: relative;
    width: fit-content;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: green;
    overflow: hidden;
}

.download-apk,
.button__icon,
.button__text {
    transition: all 0.3s;
}

.download-apk .button__text {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-apk .button__icon {
    position: absolute;
    transform: translateX(109px);
    height: 100%;
    width: 39px;
    background-color: green;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-apk .svg {
    width: 20px;
    fill: #fff;
}

.download-apk:hover {
    background: green;
}

.download-apk:hover .button__text {
    color: transparent;
}

.download-apk:hover .button__icon {
    width: 148px;
    transform: translateX(0);
}

.download-apk:active .button__icon {
    background-color: green;
}

.download-apk:active {
    border: 1px solid green;
}

p a.btn_more {
    display: none;
}

.fa-facebook-f:before,
.fa-facebook:before {
    font-size: 44px;
}

#solutionSlider .content {
    margin-top: -60px;
    padding: 0;
}

/* Button call now */
a#callNow {
    --main-size: 24px;
    --color-text: #ffffff;
    --color-background: #f3931a;
    --color-background-hover: #1a2b58;
    --color-outline: #1a2b58;
    --color-shadow: #00000040;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: none;
    border-radius: calc(var(--main-size) * 100);
    padding: 0.33em 0 0.33em 0.66em;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: var(--main-size);
    color: var(--color-text);
    background: var(--color-background);
    box-shadow: 0 0 0.2em 0 var(--color-background);
    transition: 1s;
}

a#callNow:active {
    transform: scale(0.95);
}

a#callNow:hover {
    outline: 0.1em solid transparent;
    outline-offset: 0.2em;
    box-shadow: 0 0 1em 0 var(--color-background-hover);
    animation:
        ripple 1s linear infinite,
        colorize 1s infinite;
    transition: 0.5s;
}

a#callNow span {
    margin-right: 0.3em;
    transition: 0.5s;
}

a#callNow:hover span {
    color: var(--color-text);
    text-shadow: 5px 5px 5px var(--color-shadow);
}

a#callNow:active span {
    text-shadow: none;
}

a#callNow svg {
    height: 0.8em;
    fill: var(--color-text);
    margin-right: -0.16em;
    position: relative;
    transition: 0.5s;
}

a#callNow:hover svg {
    margin-right: 0.66em;
    transition: 0.5s;
    filter: drop-shadow(5px 5px 2.5px var(--color-shadow));
}

a#callNow:active svg {
    filter: none;
}

a#callNow svg polygon:nth-child(1) {
    transition: 0.4s;
    transform: translateX(-60%);
}

a#callNow svg polygon:nth-child(2) {
    transition: 0.5s;
    transform: translateX(-30%);
}

a#callNow:hover svg polygon:nth-child(1) {
    transform: translateX(0%);
    animation: opacity 1s infinite 0.6s;
}

a#callNow:hover svg polygon:nth-child(2) {
    transform: translateX(0%);
    animation: opacity 1s infinite 0.4s;
}

a#callNow:hover svg polygon:nth-child(3) {
    animation: opacity 1s infinite 0.2s;
}

@keyframes opacity {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes colorize {
    0% {
        background: var(--color-background);
    }
    50% {
        background: var(--color-background-hover);
    }
    100% {
        background: var(--color-background);
    }
}

@keyframes ripple {
    0% {
        outline: 0em solid transparent;
        outline-offset: -0.1em;
    }
    50% {
        outline: 0.2em solid var(--color-outline);
        outline-offset: 0.2em;
    }
    100% {
        outline: 0.4em solid transparent;
        outline-offset: 0.4em;
    }
}

.top-40 {
    top: 40% !important;
}

.end-20 {
    right: 20% !important;
}
