@charset "utf-8";
@font-face {
    font-family: Montserrat-Bold;
    src: url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: Montserrat-Regular;
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: Montserrat-Medium;
    src: url(../fonts/Montserrat-Medium.ttf);
}

*, :before, :after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
    color: #0099DA;
}

.hover {
    transition: all 0.3s;
}

.hover:hover {
    transition: all 0.3s;
    opacity: 0.7;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, main, menu, nav, output, section, summary, time, mark, audio, video {
    border: 0;
    line-height: 1.0;
    letter-spacing: 0;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, menu, main, nav, section {
    display: block;
}

body {
    font-family: Montserrat-Regular;
    font-size: 14px;
    color: #353535;
}

ul, ol {
    list-style: none;
}

br {
    letter-spacing: normal;
}

a, select, button, input[type="submit"], input[type="image"] {
    cursor: pointer;
}

img, iframe {
    vertical-align: bottom;
    width: 100%;
}

th {
    text-align: left;
}

html {
    overflow-x: hidden;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix {
    min-height: 1%;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    line-height: 0;
    font-size: 0;
}

img {
    height: auto;
}

.inner {
    width: 1170px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

/*----------Loading-------------*/

#pre-loader {
    background: #F5F5F5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.loader {
    position: relative;
    width: 2.5em;
    height: 2.5em;
    transform: rotate(165deg);
    position: absolute;
    top: calc(50% - 1.25em);
    left: calc(50% - 1.25em);
}

.loader:before, .loader:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-radius: 0.25em;
    transform: translate(-50%, -50%);
}

.loader:before {
    animation: before 2s infinite;
}

.loader:after {
    animation: after 2s infinite;
}

@keyframes before {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
    35% {
        width: 2.5em;
        box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
    }
    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
    }
    100% {
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
}

@keyframes after {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
    35% {
        height: 2.5em;
        box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
    }
    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
    }
    100% {
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
}

/*----------Loading-------------*/

#header {
    border-bottom: 1px solid #F2F2F2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 5;
}

#header.active {}

#header .logo {
    width: 120px;
    margin-bottom: 0;
}

#header .flex {
    align-items: center;
    justify-content: space-between;
}

#header nav#menu ul {
    margin-bottom: 0;
}

#header .socials ul li {
    width: 20px;
    margin-left: 8px;
}

#header .socials ul li.contact {
    display: none;
}

#header .socials ul li img {
    width: 100%;
}

#header nav ul {
    align-items: center;
}

#header nav .socials-menu {
    display: none;
}

#header nav .fa-window-close {
    display: none;
}

#header nav ul li {
    position: relative;
}

#header nav ul li.has-child i.fa-sort-desc {
    position: absolute;
    content: "";
    right: 5px;
    top: 50%;
    transform: translateY(-48%);
    color: #000000;
    font-size: 12px;
}

#header nav ul li a {
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    padding: 35px 20px;
    display: block;
    position: relative;
}

#header nav ul li a::after {
    background: none repeat scroll 0 0 transparent;
    top: 0;
    content: "";
    display: block;
    height: 5px;
    left: 50%;
    position: absolute;
    background: #0099DA;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

#header nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

#header nav ul li a:hover {
    color: #95a5a6;
}

#header nav ul li a:hover {
    color: #0099DA;
}

#header nav>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background: #2A3941;
    min-width: 240px;
    display: none;
}

#header nav>ul>li>ul li a {
    padding: 15px 20px;
    line-height: 20px;
    color: #fff;
    font-size: 13px;
}

#header nav>ul>li>ul li a:hover {
    background: #3D4E57;
    color: #fff;
}

#header .fa-bars {
    display: none;
    z-index: 3;
    cursor: pointer;
}

#header .right-header {
    justify-content: flex-end;
    align-items: center;
}

#header .right-header .icon-lang {
    margin-bottom: 0;
    margin-left: 30px;
    cursor: pointer;
    position: relative;
    z-index: 999999;
}

#header .right-header .icon-lang .box-lang {
    position: absolute;
    top: 100%;
    right: 0;
    width: 130px;
    padding: 15px;
    background: #0099DA;
    border-radius: 5px;
    display: none;
}

#header .right-header .icon-lang .box-lang span img {
    width: 25px;
    margin-right: 5px;
}

#header .right-header .icon-lang .box-lang span {
    display: block;
    margin-bottom: 10px;
}

#header .right-header .icon-lang .box-lang span:last-child {
    margin-bottom: 0;
}

#header .right-header .icon-lang .box-lang span a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

#header .right-header .btn-contact a {
    font-size: 14px;
    display: block;
    padding: 14px 50px;
    border: 1px solid #707070;
    color: #000000;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.2s;
}

#header .right-header .btn-contact a:hover {
    background: #0099DA;
    border: 1px solid #0099DA;
    color: #fff;
    transition: all 0.2s;
}

#slider {
    background: url(../img/banner2.png) no-repeat center center;
    background-size: cover;
    padding: 150px 0;
}

#slider.digital {
    background: url(../img/digital/banner1.png) no-repeat center center;
    background-size: cover;
}

#slider.digital h2 {
    color: #fff;
}

#slider.digital p.text {
    color: #fff;
}

#slider h2 {
    font-family: Montserrat-Bold;
    font-size: 79px;
    color: #0092DA;
    text-transform: uppercase;
    line-height: 80px;
    letter-spacing: 2px;
}

#slider p.text {
    font-size: 20px;
    line-height: 30px;
    margin: 20px 0 30px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    cursor: pointer;
}

p.btn-more a {
    display: inline-block;
    padding: 12px 30px;
    /* font-family: Montserrat-Bold; */
    border: 1px solid #0099DA;
    border-radius: 30px;
    transition: all 0.2s;
    text-decoration: none;
}

p.btn-more a:hover {
    background: #0099DA;
    color: #fff;
    transition: all 0.2s;
}

p.btn-more.white a {
    border: 1px solid #fff;
    color: #fff;
}

p.btn-more.white a:hover {
    background: #fff;
    color: #0099DA;
    transition: all 0.2s;
}

p.btn-more.black a {
    border: 1px solid #b8b8b8;
    color: #292929;
}

p.btn-more.black a:hover {
    background: #292929;
    color: #fff;
    transition: all 0.2s;
}

#slider .info-slider {
    width: 40%;
}

#about {
    background: #0099DA;
    padding: 60px 0;
    color: #fff;
    width: 85%;
    margin: 0 auto;
    position: relative;
}

#about:before {
    position: absolute;
    content: "";
    border-bottom: 30px solid #fff;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    top: -5px;
    right: -20px;
    z-index: 1;
    width: 0;
    height: 0;
    transform: rotateZ( 45deg);
}

#about h2 {
    font-size: 60px;
    font-family: Montserrat-Bold;
    color: #fff;
    letter-spacing: 2px;
}

/* #about .right-about p.img {
    width: 430px;
} */

#about .right-about {
    position: relative;
}

#about .right-about p.img {
    position: relative;
    z-index: 2;
}

#about .right-about p.img img {
    width: 360px;
}

.bubble_deco {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 82%;
}

#about .left-about h2 {
    text-transform: uppercase;
}

#about .left-about p.text {
    font-size: 24px;
    font-family: Montserrat-Bold;
    line-height: 30px;
    margin: 45px 0 25px;
}

#about .left-about p.des {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 50px;
}

#vision {
    background: #F0F6FE;
    padding: 95px 0 80px;
    width: 85%;
    margin: 0 auto 100px;
}

#vision .inner {
    width: 90%;
}

#vision .ar-vision h3 {
    font-size: 20px;
    font-family: Montserrat-Bold;
    position: relative;
    margin-bottom: 20px;
}

#vision .ar-vision h3:after {
    position: absolute;
    width: 56px;
    height: 8px;
    background: #fff;
    top: -35px;
    left: 0;
    content: "";
    z-index: 10;
}

#vision .ar-vision .info-vision .des p {
    font-size: 14px;
    color: #828282;
    line-height: 22px;
    margin-bottom: 0;
}

#vision .ar-vision .info-vision p.img img {
    width: 80%;
}

#solutions .top-solutions {
    background: url(../img/background_solutions.png) no-repeat center top fixed;
    text-align: center;
    color: #fff;
    padding: 110px 0 300px;
}

#solutions .top-solutions h2 {
    font-size: 30px;
    text-transform: uppercase;
    width: 75%;
    margin: 0 auto;
    font-family: Montserrat-Bold;
    line-height: 45px;
}

#solutions .top-solutions p.text {
    font-size: 16px;
    margin-top: 30px;
}

#box-solutions {
    margin-bottom: 60px;
}

#box-solutions .ar-solutions {
    text-align: center;
}

#box-solutions .content-solutions {
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 5%);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

#box-solutions {
    margin-top: -199px;
    position: relative;
    z-index: 1;
}

#box-solutions .btn-more {
    text-align: center;
    margin-top: 60px;
}

#box-solutions .ar-solutions .info {
    padding: 30px 25px 30px;
}

#box-solutions .ar-solutions h3 {
    font-size: 20px;
    font-family: Montserrat-Bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#box-solutions .ar-solutions p.img {
    margin-bottom: 0;
    background: #fff;
    border-radius: 10px 10px 0 0;
}

#box-solutions .ar-solutions p.slogan {
    font-size: 12px;
    color: #B3B3B3;
    margin: 15px 0;
}

#box-solutions .ar-solutions p.text {
    font-size: 13px;
    color: #3A3A3A;
    line-height: 20px;
    margin-bottom: 30px;
}

#box-solutions .ar-solutions i.fa-long-arrow-right {
    color: #0099DA;
    transition: transform 0.3s ease;
    transform: translateX(0px);
}

#box-solutions .ar-solutions i.fa-long-arrow-right:hover {
    transform: translateX(7px);
}

#subcribe .box-sub {
    background: #0099DA;
    padding: 60px 50px;
    color: #fff;
    position: relative;
}

#subcribe .box-sub:before {
    position: absolute;
    content: "";
    border-bottom: 30px solid #fff;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    top: -5px;
    right: -20px;
    z-index: 1;
    width: 0;
    height: 0;
    transform: rotateZ(45deg);
}

#subcribe .box-sub:after {
    background: url(../img/mail.png) no-repeat;
    left: 0;
    bottom: 20px;
    right: 0;
    margin: 0 auto;
    width: 107px;
    height: 109px;
    content: "";
    position: absolute;
}

#subcribe .box-sub .title {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}

#subcribe .box-sub h2 {
    font-size: 36px;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    line-height: 40px;
    margin-top: 15px;
}

#subcribe .box-sub input {
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    background: none;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 30px;
    outline: none;
    color: rgba(255, 255, 255, 0.7);
}

#subcribe .box-sub input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#subcribe .box-sub button {
    background: none;
    border: none;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-family: Montserrat-Bold;
    outline: none;
}

#subcribe .box-sub button i {
    margin-left: 5px;
}

#subcribe .box-sub .btn-submit {
    text-align: right;
    margin-top: 30px;
}

#why {
    padding: 100px 0 70px;
    background: #fff;
}

#why h2.title {
    font-size: 30px;
    font-family: Montserrat-Bold;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
}

#why .ar-why .info {
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 5%);
    padding: 30px 50px;
    text-align: center;
    margin: 5px;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

#why .ar-why p.text {
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    height: 104px;
    overflow: hidden;
    margin-bottom: 20px;
}

#why .ar-why p.icon-hangout {
    width: 24px;
    margin: 0 auto 25px;
}

#why .ar-why p.user {
    width: 40px;
    margin: 0 auto;
}

#why .ar-why p.name {
    color: #2A2D2E;
    font-size: 16px;
    font-family: Montserrat-Bold;
    margin: 15px 0 10px;
}

#why .ar-why p.des {
    color: #B9B9B9;
    font-size: 12px;
    text-transform: uppercase;
}

#footer {
    background: #2A3941;
    color: #fff;
    padding-bottom: 40px;
}

#footer nav#nav-footer {
    background: #34424A;
    padding: 20px 0;
}

#footer nav#nav-footer ul {
    margin-bottom: 0;
}

#footer nav#nav-footer ul li a {
    font-size: 14px;
    text-transform: uppercase;
    font-family: Montserrat-Bold;
    color: #fff;
    padding: 0 50px;
}

#footer nav#nav-footer ul li:first-child a {
    padding-left: 0;
}

#footer .left-footer .path {
    margin: 35px 0;
}

#footer .left-footer .path ul li a {
    font-size: 16px;
    color: #fff;
}

#footer .left-footer .path ul li {
    margin-bottom: 20px;
}

#footer .left-footer .social ul li {
    width: 25px;
    margin-right: 10px;
}

#footer .left-footer .logo-footer {
    width: 130px;
}

#footer .mid {
    padding: 40px 0;
}

#footer .right-footer .top-right>div {
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 35px;
}

#footer .right-footer .top-right>div p.icon img {
    width: 25px;
}

#footer .right-footer .top-right>div p.text {
    font-size: 14px;
    line-height: 23px;
    text-align: center;
}

#footer .right-footer .sub {
    margin-top: 60px;
}

#footer .right-footer .sub .title-sub {
    font-size: 16px;
    font-family: Montserrat-Bold;
    margin-bottom: 20px;
}

#footer .right-footer .sub input {
    width: 100%;
    height: 50px;
    padding-left: 30px;
    color: #fff;
    background: #41525C;
    border-radius: 45px;
    border: none;
    outline: none;
}

#footer .right-footer .sub input::placeholder {
    color: #fff;
}

#footer .right-footer .sub #send-mail {
    position: relative;
}

#footer .right-footer .sub #send-mail button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #0099DA;
    height: 50px;
    border: none;
    border-radius: 45px;
    color: #fff;
    padding: 0 40px;
    outline: none;
    font-family: Montserrat-Bold;
}

#footer .right-footer .sub #send-mail button:hover {
    opacity: 0.8;
}

#footer .copyright .language p.text i {
    margin-top: -2px;
    margin-left: 5px;
    display: block;
}

#footer .copyright .language p.icon {
    margin-right: 7px;
}

#footer .copyright .language p {
    margin-bottom: 0;
}

#footer .copyright .language {
    margin-right: 30px;
}

#footer .copyright ul.terms li a {
    color: #fff;
    padding: 0 15px;
}

#footer .copyright ul.terms li:first-child a {
    border-right: 1px solid #fff;
}

#footer .copyright ul.terms {
    margin-bottom: 0;
}

#footer .copyright small {
    display: block;
    font-size: 14px;
}

#footer a:hover {
    color: #0099DA !important;
    text-decoration: none;
}

#partner p img {}

#partner p {
    margin-bottom: 0;
}

#partner {
    padding: 30px 0;
}

#use {
    background: url(../img/digital/background_we_use.png) no-repeat center center;
    background-size: 100% 100%;
    text-align: center;
    padding: 70px 0;
}

#use h2.title {
    font-size: 36px;
    text-transform: uppercase;
    font-family: Montserrat-Bold;
    color: #fff;
}

#use p.slogan {
    color: #fff;
    width: 70%;
    font-size: 18px;
    line-height: 26px;
    font-family: Montserrat-Medium;
    margin: 30px auto 70px;
}

#use .ar-use p.img img {
    width: auto;
    min-height: 105px;
}

#use .ar-use h3 {
    font-size: 20px;
    font-family: Montserrat-Bold;
    color: #fff;
    margin: 30px 0 25px;
}

#use .ar-use p.text {
    font-size: 13px;
    color: #fff;
    line-height: 19px;
}

#service {
    padding: 100px 0 70px;
    background: url(../img/bg_bottom.png) no-repeat center top
}

#service .ar-service {
    text-align: center;
    margin-bottom: 30px;
}

#service .content-service {
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 5%);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

#service .btn-more {
    text-align: center;
    margin-top: 40px;
}

#service .ar-service .info {
    padding: 30px 25px 30px;
    min-height: 260px;
}

#service .ar-service h3 {
    font-size: 20px;
    font-family: Montserrat-Bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#service .ar-service p.img {
    margin-bottom: 0;
    background: #fff;
}

#service .ar-service p.slogan {
    font-size: 12px;
    color: #B3B3B3;
    margin: 15px 0;
}

#service .ar-service p.text {
    font-size: 13px;
    color: #3A3A3A;
    line-height: 20px;
    margin-bottom: 30px;
}

#service .ar-service i.fa-long-arrow-right {
    color: #0099DA;
    transition: transform 0.3s ease;
    transform: translateX(0px);
}

#service .ar-service i.fa-long-arrow-right:hover {
    transform: translateX(7px);
}

#service h2.title {
    font-size: 36px;
    font-family: Montserrat-Bold;
    text-align: center;
    text-transform: uppercase;
}

#service p.text-top {
    color: #5e5e5e;
    width: 70%;
    font-size: 18px;
    line-height: 27px;
    font-family: Montserrat-Medium;
    margin: 30px auto 70px;
    text-align: center;
}

#box-bottom h2 {
    font-size: 32px;
    font-family: Montserrat-Bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    width: 94%;
    margin: 0 auto;
    line-height: 46px;
}

#box-bottom {
    background: url(../img/digital/background_bottom.png) no-repeat center center;
    background-size: 100% 100%;
    padding: 80px 0;
}

#box-bottom .btn-more {
    text-align: center;
    margin-top: 40px;
}

#about-in .title-about {
    background: url(../img/about/background_top_about.png) no-repeat center top;
    background-size: 100% 100%;
    text-align: center;
    padding: 70px 0;
}

#about .inner {
    width: 90%;
}

#about-in h2 {
    font-size: 50px;
    font-family: Montserrat-Bold;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#about-in .about-breadcrumb {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

#about-in .right-about p.img {
    width: 420px;
    position: relative;
    z-index: 2;
}

#about-in .left-about h3 {
    text-transform: uppercase;
    font-size: 60px;
    color: #000;
    line-height: 60px;
    font-family: Montserrat-Bold;
}

#about-in .left-about p.text {
    font-size: 24px;
    font-family: Montserrat-Bold;
    line-height: 30px;
    margin: 45px 0 50px;
}

#about-in .left-about p.des {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
}

#about-in .about-info {
    padding: 100px 0;
    background: url(../img/bg_bottom.png) no-repeat center top;
    background-size: 100% 100%;
}

#about-in .bubble_deco {
    width: 100%;
}

#about-in .about-info .btn-more {
    margin-top: 60px;
}

#wrapper-main {
    background: url(../img/bg_bottom.png) no-repeat center top 199px;
}

#wrapper {
    margin-top: 85px;
}

/* new Maketing */

.tab-maketing {
    background: #EFEFEF;
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.tab-maketing ul li a {
    font-size: 14px;
    color: #484848;
    display: block;
    text-align: center;
    padding: 20px 40px;
    text-decoration: none;
    border-bottom: 7px solid #EFEFEF;
}

.tab-maketing ul li a:hover {
    background: #fff;
    font-family: Montserrat-Bold;
    position: relative;
    border-bottom: 7px solid #7FE25B;
    transition: all 0.3s;
}

.tab-maketing ul li a:hover:after {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-right: 10px solid transparent;
    border-top: 10px solid #7FE25B;
    border-left: 10px solid transparent;
    width: 0;
    height: 0;
    transition: all 0.3s;
}

.tab-maketing ul li a.active {
    background: #fff;
    font-family: Montserrat-Bold;
    position: relative;
    border-bottom: 7px solid #7FE25B;
    transition: all 0.3s;
}

.tab-maketing ul li a.active:after {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-right: 10px solid transparent;
    border-top: 10px solid #7FE25B;
    border-left: 10px solid transparent;
    width: 0;
    height: 0;
    transition: all 0.3s;
}

.tab-maketing ul {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

#main-maketing {
    padding-top: 60px;
}

#main-maketing .content-maketing {
    background: url(../img/marketing/banner.svg) no-repeat center top;
}

#main-maketing .content-maketing {
    text-align: center;
    color: #fff;
    padding: 70px 0 70px;
}

#main-maketing .content-maketing .title {
    font-size: 30px;
}

#main-maketing .content-maketing h2 {
    font-family: Montserrat-Bold;
    font-size: 50px;
    text-transform: uppercase;
    width: 90%;
    margin: 30px auto 40px;
    line-height: 60px;
}

#main-maketing .content-maketing .box {
    width: 172px;
    height: 172px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
    padding: 35px 25px 25px;
    margin: 0 30px;
}

#main-maketing .content-maketing .box:after {
    position: absolute;
    content: "";
    width: 85%;
    margin: 0 auto;
    height: 85%;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6) 95%) no-repeat;
    border-radius: 50%;
    left: 0;
    right: 0;
}

#main-maketing .content-maketing .box p.icon img {
    height: 36px;
    width: auto;
}

#main-maketing .content-maketing .box p.no {
    font-size: 22px;
    font-family: Montserrat-Bold;
    margin: 15px 0 7px;
}

#main-maketing .content-maketing .box p.text {
    font-size: 12px;
    font-family: Montserrat-Medium;
}

#main-maketing .content-maketing .box p {
    margin-bottom: 0;
}

p.btn-quote {
    margin-top: 50px;
}

p.btn-quote a {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid #7FE25B;
    border-radius: 30px;
    transition: all 0.2s;
    text-decoration: none;
    background: #7FE25B;
    color: #fff;
    font-family: Montserrat-Bold;
    font-size: 17px;
}

p.btn-quote a:hover {
    background: #fff;
    color: #7FE25B;
    transition: all 0.2s;
}

#ma-service .box-ser {
    border: 1px solid #BFE2F7;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    background: #fff;
}

#ma-service .box-ser p.icon {
    text-align: center;
}

#ma-service .box-ser p.icon img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

#ma-service .box-ser p.name {
    text-transform: uppercase;
    font-size: 20px;
    font-family: Montserrat-Bold;
    text-align: center;
    padding: 30px 0;
    position: relative;
    margin-bottom: 25px;
}

#ma-service .box-ser p.name:after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    background: #92C4FC;
    bottom: 0;
    left: 0;
}

#ma-service .box-ser p.text {
    font-size: 14px;
    color: #3A3A3A;
    line-height: 25px;
    min-height: 150px;
}

#ma-service .box-ser p.text span {
    font-family: Montserrat-Bold;
}

#ma-service .box-ser p {
    margin-bottom: 0;
}

#ma-service h2 {
    font-size: 32px;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    text-align: center;
}

#ma-service .slogan {
    font-size: 16px;
    font-family: Montserrat-Medium;
    text-align: center;
    line-height: 25px;
    margin: 30px 0 50px;
}

#ma-service {
    padding: 60px 0;
    background: url(../img/bg_main.png) no-repeat;
}

#regis-form p.btn-re {
    margin-bottom: 0;
}

#regis-form p.btn-re button {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid #7FE25B;
    border-radius: 30px;
    transition: all 0.2s;
    text-decoration: none;
    background: #7FE25B;
    color: #fff;
    font-family: Montserrat-Bold;
    font-size: 17px;
    margin-top: 40px;
    outline: none;
}

#regis-form p.btn-re button:hover {
    background: #fff;
    color: #7FE25B;
    transition: all 0.2s;
}

#regis-form h2 {
    font-size: 32px;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    text-align: center;
}

#regis-form .slogan {
    font-size: 16px;
    font-family: Montserrat-Medium;
    text-align: center;
    line-height: 25px;
    margin: 30px 0 50px;
}

#regis-form {
    padding: 60px 0;
}

#regis-form #box-form {
    width: 900px;
    margin: 0 auto;
    border: 1px solid #D0D0D0;
    border-radius: 20px;
    padding: 70px;
}

#regis-form #box-form label span {
    color: red;
}

#regis-form #box-form label[for="agree"] {
    display: initial;
    margin-bottom: 0;
    padding-left: 10px;
}

#regis-form #box-form label {
    font-size: 14px;
    font-family: Montserrat-Medium;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

#regis-form #box-form textarea {
    height: 100px;
    padding: 10px 0;
    width: 100%;
    border: none;
    border-bottom: 2px solid #E8E8E8;
    outline: none;
}

#regis-form #box-form input[type="text"] {
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 2px solid #E8E8E8;
    padding: 10px 0;
}

#regis-form #box-form .box-field {
    margin-bottom: 40px;
}

#regis-form #box-form input::-webkit-input-placeholder, #regis-form #box-form textarea::-webkit-input-placeholder {
    /* Edge */
    color: #E8E8E8;
}

#regis-form #box-form input:-ms-input-placeholder, #regis-form #box-form textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #E8E8E8;
}

#regis-form #box-form input::placeholder, #regis-form #box-form textarea::placeholder {
    color: #E8E8E8;
}

#reason .box-ser {
    border: 1px solid #BFE2F7;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    background: #fff;
}

#reason .box-ser p.icon {
    text-align: center;
}

#reason .box-ser p.icon img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

#reason .box-ser p.name {
    text-transform: uppercase;
    font-size: 20px;
    font-family: Montserrat-Bold;
    text-align: center;
    padding: 30px 0;
    position: relative;
    margin-bottom: 25px;
}

#reason .box-ser p.name:after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    background: #92C4FC;
    bottom: 0;
    left: 0;
}

#reason .box-ser p.text {
    font-size: 14px;
    color: #3A3A3A;
    line-height: 25px;
    min-height: 125px;
}

#reason .box-ser p.text span {
    font-family: Montserrat-Bold;
}

#reason .box-ser p {
    margin-bottom: 0;
}

#reason h2 {
    font-size: 32px;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    text-align: center;
}

#reason .slogan {
    font-size: 16px;
    font-family: Montserrat-Medium;
    text-align: center;
    line-height: 25px;
    margin: 30px 0 50px;
}

#reason {
    padding: 60px 0;
    background: #8DC6E9;
}

#reason h2 {
    margin-bottom: 50px;
    color: #fff;
}

/* Website */

#experience {
    padding-top: 60px;
}

#experience .content-experience {
    background: #0099DA;
    background-size: cover;
    padding: 110px 0;
    color: #fff;
    position: relative;
}

#experience .content-experience:after {
    position: absolute;
    content: "";
    width: 40%;
    height: 80%;
    background: url(../img/website/banner-img.png) no-repeat top right -30px;
    background-size: contain;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#experience .content-experience:before {
    position: absolute;
    content: "";
    width: 15%;
    height: 20%;
    background: url(../img/website/banner-wawe.svg) no-repeat top left;
    background-size: contain;
    left: 0;
    top: 0;
}

#experience .content-experience h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-family: Montserrat-Bold;
}

#experience .content-experience .title {
    font-size: 58px;
    text-transform: uppercase;
    font-family: Montserrat-Bold;
    line-height: 70px;
    margin: 30px 0 40px;
}

#customer {
    background: #0099DA url(../img/website/customer-bg.svg) no-repeat center top;
    background-size: cover;
    padding: 70px 0 0;
}

#customer h2 {
    font-size: 32px;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

#customer .slogan {
    font-size: 16px;
    font-family: Montserrat-Medium;
    text-align: center;
    line-height: 25px;
    margin: 30px 0 50px;
    color: #fff;
}

#customer .btn-quote {
    text-align: center;
}

#customer .img-slider {
    margin-bottom: 0;
}

#other {
    padding: 70px 0;
}

#other h2 {
    font-size: 32px;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#other dl dt {
    position: relative;
    font-size: 18px;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    cursor: pointer;
    padding: 20px 0;
}

#other dl dt:after, #other dl dt:before {
    position: relative;
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
    background-color: #707070;
    transition: transform 0.25s ease-out;
    cursor: pointer;
}

#other dl dt:after {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 2px;
}

#other dl dt:before {
    top: 50%;
    transform: translateY(-50%);
    right: 8.5px;
    width: 2px;
}

#other dl.active dt:before {
    transform: translateY(-50%) rotate(90deg);
}

#other dl dd {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 0;
    display: none;
    padding-bottom: 20px;
}

#other dl {
    padding: 0 20px;
    border-top: 1px solid #C4C4C4;
    margin-bottom: 0;
}

#other dl:hover {
    background: rgba(0, 0, 0, 0.05);
}

/*Icon hotline on Mobile*/

.call_now {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    float: left;
    position: fixed;
    bottom: 25px;
    right: -5px;
    z-index: 999;
}

.call_now_circle {
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
    position: absolute;
    border: 2px solid #1182fc;
    opacity: .5;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    -webkit-border-radius: 100%;
    transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    animation: call-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: call-circle-anim 1.2s infinite ease-in-out;
    -o-animation: call-circle-anim 1.2s infinite ease-in-out;
    -webkit-animation: call-circle-anim 1.2s infinite ease-in-out;
}

.call_now_circle_fill {
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
    position: absolute;
    opacity: .75;
    background: #1182fc none;
    border: 2px solid transparent;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    -webkit-border-radius: 100%;
    transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    animation: call-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: call-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: call-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-animation: call-circle-fill-anim 2.3s infinite ease-in-out;
}

.call_now_icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
    background-size: 24px 24px !important;
    background: #1182fc;
    border: 2px solid transparent;
    opacity: 1;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    -webkit-border-radius: 100%;
    transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    animation: call-icon-anim 1s infinite ease-in-out;
    -o-animation: call-icon-anim 1s infinite ease-in-out;
    -moz-animation: call-icon-anim 1s infinite ease-in-out;
    -webkit-animation: call-icon-anim 1s infinite ease-in-out;
}

.call_now_icon:before {
    content: "\f095";
    font-family: FontAwesome;
    line-height: 28px;
    text-align: center;
    display: block;
    font-size: 18px;
    color: #fff;
}

/*zalo */

.call_now2 {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    position: fixed;
    bottom: 90px;
    right: -5px;
    z-index: 999;
}

.call_now_icon2 {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
    background-size: 100% !important;
    background: #1182fc url(../img/zalo.jpeg) no-repeat;
    opacity: 1;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    -webkit-border-radius: 100%;
    transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
}

@keyframes call-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }
    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@keyframes call-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@keyframes call-icon-anim {
    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)
    }
}