@font-face {
    font-family: 'Manrope-Regular';
    src: url('../fonts/Manrope-Regular.woff2') format('woff2'),
        url('../fonts/Manrope-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope-Bold';
    src: url('../fonts/Manrope-Bold.woff2') format('woff2'),
        url('../fonts/Manrope-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    --default-color-text: #262626;
}
*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
html,body{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Manrope-Regular';
    font-size: 15px;
    color: var(--default-color-text);
}
body{
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}
input{
    box-sizing: border-box;
}
img{
    display: block;
    width: 100%;
    overflow-clip-margin: unset;
    overflow: clip;
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
    color: #000;
}
.mc-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.mc-header{
    padding: 32px 0; 
    position: relative;
    z-index: 99;
    transition: 0.3s all;
}
.mc-header.active{
    position: fixed;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e9b4435c;
    transition: 0.3s all;
}
.mc-header .mc-header-cover{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.mc-header .mc-header-cover .main-logo img{
    display: block;
    max-width: 166px;
}
.mc-header .mc-header-cover .main-logo{
    flex: 0 0 15%;
    max-width: 15%;
    width: 100%;
}
.mc-header .mc-header-cover .main-menu{
    flex: 0 0 70%;
    max-width: 70%;
    width: 100%;
}
.mc-header .mc-header-cover .right-btn{
    flex: 0 0 15%;
    max-width: 15%;
    width: 100%;
}
.mc-header .mc-header-cover .main-menu .main-menu-cover{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.mc-header .mc-header-cover .main-menu .main-menu-cover .item{
    margin: 0 5px;
    position: relative;
}
.mc-header .mc-header-cover .main-menu .main-menu-cover .item a{
    padding: 6px 14px;
    border-radius: 30px;
    transition: 0.3s all;
    font-size: 16px;
    display: block;
}
.mc-header .mc-header-cover .main-menu .main-menu-cover .item a:hover{
    background: #DBEAFE;
    transition: 0.3s all;
}
.mc-header .mc-header-cover .main-menu .main-menu-cover .mc-sub-menu{
    display: none;
    position: absolute;
    width: 780px;
    left: -268px;
    padding: 16px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0px 0px 12px 0px #10182812;
    top: 34px;
}
.mc-header .mc-header-cover .main-menu .main-menu-cover .item a.active{
    background: #DBEAFE;
}
.mc-header .right-btn .btn-trng{
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 16px;
    color: #fff;
    background: #2767F2;
    background: linear-gradient(270deg, #5D8AEB 0%, #5D8AEB 50%, #2767F2 100%);
    border: 0;
    cursor: pointer;
    outline: none;
    box-shadow: 1px 2px 9px 1px #2767F2;
    display: block;
    margin-left: auto;
    text-align: center;
}
.mc-header .mc-header-cover .main-menu .main-menu-cover .mc-sub-menu .mc-sub-menu-cover{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.main-menu .main-menu-cover .mc-sub-menu .mc-sub-menu-cover .sub-left{
    flex: 0 0 40%;
    max-width: 39%;
    width: 100%;
}
.main-menu .main-menu-cover .mc-sub-menu .mc-sub-menu-cover .sub-right{
    flex: 0 0 60%;
    max-width: 59%;
    width: 100%;
}
.main-menu .main-menu-cover .mc-sub-menu .mc-sub-menu-cover .sub-left a{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-radius: 8px;
    margin-bottom: 25px;
}
.main-menu .main-menu-cover .mc-sub-menu .mc-sub-menu-cover .sub-left a:last-child{
    margin-bottom: 0;
}
.main-menu .main-menu-cover .mc-sub-menu .mc-sub-menu-cover .sub-left a .icon{
    flex: 0 0 18%;
    max-width: 18%;
    width: 100%;
}
.main-menu .main-menu-cover .mc-sub-menu .mc-sub-menu-cover .sub-left a .icon img{
    max-width: 36px;
}
.main-menu .main-menu-cover .mc-sub-menu .mc-sub-menu-cover .sub-left a .name-and-desc{
    flex: 0 0 82%;
    max-width: 82%;
    width: 100%;
}
.main-menu .main-menu-cover .mc-sub-menu .mc-sub-menu-cover .sub-left a .name-and-desc .desc{
    font-size: 13px;
    color: #737373;
}
.mc-header .mc-header-cover .main-menu .main-menu-cover .item:hover .mc-sub-menu{
    display: block;
}
@-webkit-keyframes fade-in-bottom{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-bottom{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}
.fade-in-bottom{-webkit-animation:fade-in-bottom .3s cubic-bezier(.39,.575,.565,1.000) both;animation:fade-in-bottom .3s cubic-bezier(.39,.575,.565,1.000) both}
.bar-mob{
    display: none;
}
.close-mob{
    display: none;
}
.mc-menu-mob{
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 16px 16px 50px 16px;
    z-index: 5;
}
.mc-menu-mob .btn-trn a{
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 16px;
    color: #fff;
    background: #EBC55D;
    background: linear-gradient(270deg, rgba(235, 197, 93, 1) 0%, rgba(242, 164, 39, 0.93) 50%, rgba(242, 164, 39, 1) 100%);
    border: 0;
    cursor: pointer;
    outline: none;
    box-shadow: 1px 2px 9px 1px #ffc95dd1;
    display: block;
    margin: 0 auto;
    width: 160px;
    text-align: center;
}
.mc-menu-mob-cover .item a{
    display: block;
    padding: 10px 0;
    font-size: 24px;
}
.mc-menu-mob-cover .item{
    position: relative;
}
.mc-menu-mob-cover .mc-sub-menu-cover{
    padding-left: 40px;
}
.mc-menu-mob-cover .mc-sub-menu-cover a{
    font-size: 20px;
}
.mc-menu-mob-cover .item .arrow{
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
     transition: 0.3s all;
}
.mc-menu-mob-cover .item .arrow.active{
    transform: rotate(180deg);
    transition: 0.3s all;
}
.mc-menu-mob-cover .mc-sub-menu{
    display: none;
}
.mc-menu-mob-cover .mc-sub-menu.active{
    display: block;
}
.mc-menu-mob{
    display: none;
}
.overlay-menu-mob{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000069;
    z-index: 1;
    display: none;
}
.blur-1{
    position: absolute;
    top: 0;
    right: 0;
    max-width: 400px;
    z-index: 2;
}
.blur-2{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    max-width: 340px;
}
.mc-first-solution{
    padding-top: 80px;
    background-image: url("../images/bg-solution.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.mf-solution-cover .title{
    font-size: 60px;
    font-family: 'Manrope-Bold';
    max-width: 876px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
}
.mf-solution-cover .title .highlight{
    color: #3B82F6;
    position: relative;
}
.mf-solution-cover .title .highlight:after{
    color: #3B82F6;
    content: "";
    width: 100%;
    height: 11px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url("../images/highlight.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.mf-solution-cover .desc{
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 28px;
    text-align: center;
    color: #737373;
    font-size: 16px;
    line-height: 28px;
}
.mf-solution-cover .btn-tn a{
    display: block;
    width: 214px;
    margin: 0 auto;
    margin-bottom: 28px;
    background: #262626;
    position: relative;
    padding: 14px 28px;
    border-radius: 40px;
    color: #fff;
    font-size: 16px;
}
.mf-solution-cover .btn-tn a .icon{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}
.mc-all-in-one{
    padding: 80px 0;
    background-image: url("../images/bg-all-in-one.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mc-all-in-one .title{
    font-size: 30px;
    text-align: center;
    font-family: 'Manrope-Bold';
    margin-bottom: 18px;
}
.mc-all-in-one .desc{
    text-align: center;
    color: #737373;
    font-size: 16px;
    margin-bottom: 48px;
}
.mc-all-in-one .aio-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mc-all-in-one .aio-box .item{
    flex: 0 0 50%;
    max-width: 49%;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 20px;
}
.mc-all-in-one .aio-box .item .icon img{
    width: 40px;
}
.mc-all-in-one .aio-box .item .icon{
    margin-bottom: 18px;
}
.mc-all-in-one .aio-box .item .sm-title{
    font-size: 22px;
    font-family: 'Manrope-Bold';
    margin-bottom: 18px;
}
.mc-all-in-one .aio-box .item .sm-desc{
    color: #737373;
    line-height: 24px;
}
.mc-professional{
    padding: 80px 0;
}
.mc-professional .title{
    font-size: 30px;
    text-align: center;
    font-family: 'Manrope-Bold';
    margin-bottom: 18px;
}
.mc-professional .desc{
    text-align: center;
    color: #737373;
    font-size: 16px;
    margin-bottom: 48px;
}
.mc-professional .list-professional .item{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px;
}
.mc-professional .list-professional .item .item-info{
    flex: 0 0 50%;
    max-width: 48%;
    width: 100%;
}
.mc-professional .list-professional .item .item-img{
    flex: 0 0 50%;
    max-width: 48%;
    width: 100%;
}
.mc-professional .list-professional .item.mc-swap .item-info{
    order: 2;
}
.mc-professional .list-professional .item.mc-swap .item-img{
   order: 1;
}
.mc-professional .list-professional .item .item-info h3{
    font-size: 28px;
    font-family: 'Manrope-Bold';
    margin-bottom: 18px;
}
.mc-professional .list-professional .item .item-info p{
    color: #737373;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 26px;
}
.mc-professional .list-professional .item .item-info ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.mc-professional .list-professional .item .item-info ul li:before{
    content:"";
    position: absolute;
    background-image: url("../images/ico-li.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
}
.mc-efficiency{
    padding-bottom: 80px;
}
.mc-efficiency .title{
    font-size: 30px;
    text-align: center;
    font-family: 'Manrope-Bold';
    margin-bottom: 50px;
}
.mc-efficiency .list-efficiency{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.mc-efficiency .list-efficiency .item{
    margin: 0 70px;
}
.mc-efficiency .list-efficiency .item .num{
    color: #3B82F6;
    font-size: 55px;
    text-align: center;
    font-family: 'Manrope-Bold';
}
.mc-efficiency .list-efficiency .item .txt{
    text-align: center;
    color: #737373;
    font-size: 16px;
}
.mc-tnn{
    position: relative;
}
.mc-tnn .mc-tnn-contain{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 19%;
    width: 400px;
}
.mc-tnn .mc-tnn-contain .title{
    font-size: 30px;
    font-family: 'Manrope-Bold';
    margin-bottom: 20px;
}
.mc-tnn .mc-tnn-contain .desc{
    font-size: 20px;
    margin-bottom: 20px;
}
.mc-tnn .btn-tnn a{
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 16px;
    color: #fff;
    background: #2767F2;
    background: linear-gradient(270deg, #5D8AEB 0%, #5D8AEB 50%, #2767F2 100%);
    border: 0;
    cursor: pointer;
    outline: none;
    box-shadow: 1px 2px 9px 1px #2767F2;
    display: block;
    width: 230px;
    text-align: center;
}
.mc-customer-home{
    padding: 80px 0;
    background: #F5F5F5;
}
.mc-customer-home .title{
    font-size: 30px;
    text-align: center;
    font-family: 'Manrope-Bold';
    margin-bottom: 18px;
}
.mc-customer-home .desc{
    text-align: center;
    color: #737373;
    font-size: 16px;
    margin-bottom: 48px;
}
.mc-customer-home .list-customer-talk{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mc-customer-home .list-customer-talk .item{
    flex: 0 0 33.33%;
    max-width: 32%;
    width: 100%;
    background: #fff;
    margin-bottom: 25px;
    border-radius: 18px;
    padding: 30px;
}
.mc-customer-home .list-customer-talk .item .info{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
}
.mc-customer-home .list-customer-talk .item .avatar{
    flex: 0 0 20%;
    max-width: 20%;
    width: 100%;
}
.mc-customer-home .list-customer-talk .item .txt{
    flex: 0 0 80%;
    max-width:80%;
    width: 100%;
    padding-left: 15px;
}
.mc-customer-home .list-customer-talk .item .txt .name{
    font-family: 'Manrope-Bold';
}
.mc-customer-home .list-customer-talk .item .txt .position{
    color: #737373;
}
.mc-customer-home .list-customer-talk .item .cs-talk{
    line-height: 25px;
    color: #737373;
}
.mc-choose-home{
    padding: 80px 0;
}
.mc-choose-home .title{
    font-size: 30px;
    text-align: center;
    font-family: 'Manrope-Bold';
    margin-bottom: 18px;
}
.mc-choose-home .desc{
    text-align: center;
    color: #737373;
    font-size: 16px;
    margin-bottom: 90px;
}
.choose-contain{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.choose-contain .item{
    flex: 0 0 33.33%;
    max-width: 31.5%;
    width: 100%;
    position: relative;
}
.choose-contain .item .item-cover{
    padding: 24px;
    border-radius: 18px;
    border: 1px solid #8080802e;
    box-shadow: 1px 8px 16px 0px #8080801f;
    position: relative;
    z-index: 2;
    background: #fff;
} 
.choose-contain .item.item-pack-1 .name-package{
    font-size: 20px;
    font-family: 'Manrope-Bold';
    color: #15803D;
    margin-bottom: 6px;
}
.choose-contain .item.item-pack-2 .name-package{
    font-size: 20px;
    font-family: 'Manrope-Bold';
    color: #3B82F6;
    margin-bottom: 6px;
}
.choose-contain .item.item-pack-3 .name-package{
    font-size: 20px;
    font-family: 'Manrope-Bold';
    color: #3B82F6;
    margin-bottom: 6px;
}
.choose-contain .item .desc-package{
    color: #737373;
    font-size: 15px;
    margin-bottom: 28px;
}
.choose-contain .item .chitu{
    margin-bottom: 8px;
}
.choose-contain .item .price{
    margin-bottom: 8px;
}
.choose-contain .item .dis-price{
    font-size: 24px;
    font-family: 'Manrope-Bold';
    color: #000;
}
.choose-contain .item .main-price{
    font-size: 24px;
    color: #D4D4D4;
}
.choose-contain .item .year{
    margin-bottom: 16px;
}
.choose-contain .item .btn-action a{
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid #80808033;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 1px 1px 8px #8080802b;
}
.choose-contain .item.item-pack-2 .btn-action a{
    background: #000;
    color: #fff;
}
.choose-contain .content-package li{
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}
.choose-contain .content-package li::before{
    content:"";
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
.choose-contain .item-pack-1 .content-package li::before{
     background-image: url("../images/li-1.png");
}
.choose-contain .item-pack-2 .content-package li::before{
     background-image: url("../images/li-3.png");
}
.choose-contain .item-pack-3 .content-package li::before{
     background-image: url("../images/li-3.png");
}
.choose-contain .highligh-choose{
    position: absolute;
    z-index: 1;
    height: calc(100% + 50px);
    top: -40px;
    width: calc(100% + 20px);
    left: -9px;
    background: #2767F2;
    background: linear-gradient(
0deg, #5D8AEB 0%, #5D8AEB 50%, #2767F2 100%);
    border-radius: 26px;
    text-align: center;
    padding-top: 10px;
    font-family: 'Manrope-Bold';
    color: #fff;
}
.mc-footer{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mc-footer .mc-footer-cover{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mc-footer .mc-footer-cover .left{
    flex: 0 0 65%;
    max-width: 65%;
    width: 100%;
}
.mc-footer .mc-footer-cover .center{
    flex: 0 0 15%;
    max-width: 15%;
    width: 100%;
}
.mc-footer .mc-footer-cover .right{
    flex: 0 0 20%;
    max-width: 20%;
    width: 100%;
}
.mc-footer .mc-footer-cover .left .logo-footer{
    width: 166px;
    margin-bottom: 20px;
}
.mc-footer .mc-footer-cover{
    padding: 110px 0 40px 0;
}
.mc-footer .mc-footer-cover .info-footer{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 8px;
    color: #fff;
}
.mc-footer .mc-footer-cover .info-footer .info-detail{
    padding-left: 10px;
}
.mc-footer .mc-footer-cover .social-footer{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
}
.mc-footer .mc-footer-cover .social-footer a{
    margin-right: 20px;
}
.mc-footer .mc-footer-cover .fbox-st h3{
    font-size: 18px;
    color: #fff;
    font-family: 'Manrope-Bold';
    margin-bottom: 20px;
}
.mc-footer .mc-footer-cover .fbox-st ul li a{
    color: #A3A3A3;
    margin-bottom: 12px;
    display: block;
}
.mc-footer .mc-footer-cover .fbox-st ul li a:hover{
    color: #fff;
}
.sub-footer{
    padding: 25px 0;
    color: #fff;
    text-align: center;
    border-top:1px solid #ffffff2b;
}
.mc-pricing .mc-choose-home .title{
    display: none;
}
.mc-pricing .mc-choose-home .desc{
    display: none;
}
.nameVal6, .phoneVal6{
    color: red;
    font-size: 13px;
    display: none;
}