body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #33475b;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.47;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #33475b;
}

.container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width: 576px) {
    .container {
        padding-right: 15px;
        padding-left: 15px
    }
}

@media (min-width: 768px) {
    .container {
        padding-right: 15px;
        padding-left: 15px
    }
}

@media (min-width: 992px) {
    .container {
        padding-right: 15px;
        padding-left: 15px
    }
}

@media (min-width: 1200px) {
    .container {
        padding-right: 15px;
        padding-left: 15px
    }
}

@media (min-width: 576px) {
    .container {
        width: 540px;
        max-width: 100%
    }
}

@media (min-width: 768px) {
    .container {
        width: 90%;
        max-width: 100%
    }
}

@media (min-width: 992px) {
    .container {
        width: 960px;
        max-width: 100%
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1140px;
        max-width: 100%
    }
}

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

.menu-list {
    background: #fff;
    height: 100%;
}

.main-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.main-menu li {
    margin-left: 44px;
}

.rim-right {
    transform: rotateY(180deg);
    position: relative;
    top: 3px;
    right: 3px;
}

@media (min-width: 992px) {
    .main-menu li a.active {
        background: #ff7a59;
        color: #fff;
        border-radius: 20px;
        height: auto;
        padding: 11px 30px;
        min-width: 120px;
        border: 1px solid #ff7a59;
        transition: all .3s;
    }
    .main-menu li a.active:hover {
        color: #ff7a59;
        background: #fff;
    }
}

.rim-left {
    position: relative;
    left: 3px;
    top: 3px;
}

.banner-title {
    font-size: 36px;
    margin: 0;
}

.banner-des {
    width: 90%;
    line-height: 1.8;
}

.banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 150px 0 100px;
    color: #33475b;
}

.banner-top {
    flex: 1;
    padding: 0 15px;
    margin-right: 5%;
}

.banner a {
    display: inline-block;
    background: #ff7a59;
    padding: 10px 16px;
    color: #fff;
    border-radius: 4px;
    margin-top: 32px;
}

.banner-img img {
    width: 100%;
}

.banner-img {
    width: 50%;
}

.section-title {
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    margin: 50px 0 13px;
}

.home-client {
    margin-top: 80px;
}

.section-desc {
    width: 515px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
}

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

.list-client li {
    width: 130px;
    height: 130px;
    padding: 0 15px;
}

.list-client li img {
    border-radius: 50%;
    width: 100%;
    border: 1px solid #ccc;
    transition: all .3s;
    filter: grayscale(100%) opacity(.5);
}

.list-client li:hover img {
    filter: grayscale(0%) opacity(1);
}

.feature-items:hover .border-box-item {
    -webkit-box-shadow: 0 0 30px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 15%);
}

.border-box-item {
    position: relative;
    padding: 20px 10px 20px 10px;
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    height: 260px;
    box-shadow: 0 5px 62px 0 rgba(2, 55, 102, .09);
    background: #fff;
    border: 1px solid #f2f2f2;
    margin-bottom: 30px;
    margin-top: 40px;
}

.list-feature {
    display: flex;
    flex-wrap: wrap;
}

.feature-items {
    width: calc(100% / 3);
}

.box-item img {
    margin-top: -60px;
    width: 70px;
    height: 70px;
}

.box-item {
    padding: 0 15px;
}

.box-item b {
    font-size: 20px;
    margin: 20px 0 12px;
}

.box-item p {
    margin: 0;
    line-height: 1.47;
}

.box-detail-img {
    position: relative;
    overflow: hidden;
}

.box-detail-img::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.box-detail-img:hover:before {
    -webkit-animation: shine 1.1s;
    animation: shine 1.1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

@-webkit-keyframes sticky_header_animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.items-campaign a {
    display: block;
    overflow: hidden;
}

.heading {
    margin-bottom: 32px;
}

.home-feature {
    padding: 50px 0;
}

.box-difference {
    max-width: 64%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.heading-difference {
    padding: 15px;
    background-color: rgb(51 71 91);
    color: #fff;
    font-weight: 500;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    display: flex;
    justify-content: flex-end;
}

.heading-difference span {
    width: 16%;
    display: inline-block;
    text-align: center;
}

.items-difference {
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: space-between;
    border-bottom: 1px solid #e9ecef;
    box-sizing: border-box;
}

.items-difference:last-child {
    border-bottom: 0;
}

.items-difference .check-difference {
    width: 16%;
    text-align: center;
}

.name-difference {
    flex: 1;
}

.list-difference {
    border: 1px solid #e9ecef;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
}

.items-detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.detail-right {
    flex: 1;
    padding: 0 15px;
}

.items-detail img {
    width: 627px;
}

.box-detail {
    margin: 0 0 30px 48px;
}

.box-detail ul {
    padding: 0;
}

.items-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.detail-difference {
    padding: 50px 0 20px;
}

.list-campaign {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.items-campaign {
    position: relative;
    max-height: 350px;
    margin-bottom: 30px;
    overflow: hidden;
}

.items-campaign a {
    display: inline-block;
    overflow: hidden;
}

.items-campaign a img {
    width: 100%;
    transition: ease-in-out 1s;
}

.items-campaign a:hover img {
    transform: scale(1.05);
}

.desc-campaign {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: calc(100% - 30px);
    background-color: rgb(51 71 91);
    color: #fff;
    padding: 15px;
    margin: 0;
}

.home-tab {
    padding-bottom: 45px;
}

.box-tab {
    padding-top: 10px;
}

.tab-heading {
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.tab-heading-items {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
}

.tab-heading-items b {
    font-size: 14px;
    transition: all .3s ease;
}

.tab-heading-items span {
    font-size: 10px;
    color: #6D6D6D;
}

.list-tab {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 -7.5px;
}

.tab-items {
    width: calc(100% / 4);
    padding: 0 7.5px;
}

.tab-items-content {
    background: #f6f6f6;
    border: 1px solid #e9e9e9;
    box-sizing: border-box;
    border-radius: 6px;
    padding: 30px 0;
    height: 100%;
    box-shadow: 4px 6px 10px rgb(0 0 0 / 5%);
}

.tab-items-heading {
    background: rgb(51 71 91);
    border-radius: 6px 6px 0 0;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 0;
    text-align: center;
}

.tab-items-content h3 {
    margin: 0;
    font-size: 28px;
    text-align: center;
    color: #ff7a59;
}

.tab-items-content p:not(.primary-price) {
    margin: 0 0 15px;
    text-align: center;
    padding-bottom: 20px;
}

.tab-price .primary-price {
    font-size: 35px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

.tab-price span {
    position: relative;
    font-size: 12px;
    color: #969696;
}

.tab-price {
    display: flex;
    justify-content: center;
    margin-left: 22%;
    margin-bottom: 30px;
}

.currency {
    right: -2px;
    top: 7px;
}

.package {
    top: 24px;
    right: 22px;
    text-transform: uppercase;
}

.tab-list {
    padding: 0 0 0 20px;
}

.tab-list li {
    position: relative;
    font-size: 14px;
    color: #6d6d6d;
    padding: 0 20px 15px 24px;
    left: 5px;
}

.tab-list li::before {
    position: absolute;
    content: '';
    top: 4px;
    left: 0;
    background-image: url('img/checkmark.svg');
    width: 14px;
    height: 14px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.color-span {
    font-weight: 600;
    color: #008c41;
}

.color-span>strong {
    color: #006b93;
}

.send-tab {
    background: #fff;
    border: 1px solid #33475b;
    color: #33475b;
    border-radius: 100px;
    display: block;
    margin: 0 15px;
    text-align: center;
    padding: 8px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 50px;
    transition: ease-in .3s;
}

.send-tab.active,
.send-tab:hover {
    color: #fff;
    border: 1px solid #33475b;
    background: #33475b;
}

.tab-heading-items.active::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40px;
    height: 2px;
    transform: translateX(-50%);
    background: #ff7a59;
}

.tab-heading-items:hover b {
    color: #ff7a59;
}

.home-question {
    margin: 50px 0;
    padding-bottom: 50px;
    background-color: #f8f9fc;
    padding-top: 30px;
}

.list-question {
    font-weight: normal;
    display: flex;
    flex-wrap: wrap;
}

.items-question {
    width: 50%;
}

.show-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease;
    padding: 0 10px;
}

.show-answer.active {
    max-height: 500px;
    padding: 25px 10px;
}

.home-list-question {
    padding: 0 15px;
}

.box-question {
    padding: 32px 0;
    border-bottom: 1px solid #ccc;
}

.icon-toggle {
    position: relative;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-toggle.active::before {
    width: 0;
}

.icon-toggle::after,
.icon-toggle::before {
    position: absolute;
    content: '';
    background-color: #000;
}

.icon-toggle::after {
    width: 15px;
    height: 2px;
}

.icon-toggle::before {
    height: 15px;
    width: 2px;
}

.toggle-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
}

.shape-arrow {
    display: flex;
    justify-content: center;
}

.shape-arrow img {
    transform: rotate(-180deg);
}

.home-question .section-title {
    margin-top: 20px;
}

.run-arrow {
    position: absolute;
    margin-top: 7px;
    display: block;
    width: 16px;
    height: 16px;
}

.mover {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

.send-contact {
    position: relative;
    top: 5px;
    display: inline-block;
    width: 43px;
    height: 43px;
    margin-right: 35px;
}

.contact-left {
    width: 50%;
}

.form-contact {
    display: flex;
}

.title-left-contact {
    display: flex;
}

.text-left-form h3 {
    margin: 0;
    font-size: 28px;
    margin-bottom: 3px;
}

.text-left-form p {
    margin: 0;
}

.contact-right {
    width: 50%;
}

.box-contact-home {
    padding: 50px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    background-color: #f1f1f1;
    border-bottom: 3px solid #adb5bd;
}

.form-group .form-control {
    border-radius: 3px;
    border: 1px solid #d2d2d2;
    width: 100%;
    height: 42px;
    padding-left: 12px;
    box-sizing: border-box;
    outline: 0;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.btn-contact {
    width: 100%;
    text-transform: uppercase;
    padding: 15px;
    border-radius: 50px;
    border: 2px solid #ff7a59;
    background-color: #ff7a59;
    color: #fff;
    font-size: 16px;
}

.form-group textarea {
    height: 120px !important;
    padding-top: 8px;
}

.home-contact {
    padding-bottom: 50px;
}

.footer {
    background: #1b1e2d;
    color: #fff;
}

.logo-footer {
    height: 30px;
}

.social svg {
    width: 30px;
    height: 30px;
}

.social {
    display: flex;
    align-items: center;
}

.social li {
    margin-right: 13px;
}

.title-social {
    font-size: 25px;
    margin: 28px 0 0 0;
}

.reserved {
    margin: 20px 0 0 0;
    font-size: 14px;
    color: #9d9d9d;
}

.items-footer-logo,
.items-footer-service,
.items-footer-info {
    padding: 0 15px
}

.title-footer {
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
}

.list-footer-top {
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
}

.footer-top-items {
    width: 25%;
}

.footer ul {
    padding: 0;
    margin: 0;
}

footer a {
    color: #9d9d9d;
}

.footer-top-info {
    width: calc(50% / 3);
}

.footer-bottom-area .copyright p:first-child {
    font-weight: 700;
    margin-bottom: 13px;
}

.footer-bottom-area p {
    color: #9d9d9d;
    font-size: 10px;
}

.list-footer-icon li {
    display: inline-block;
    padding-left: 9px;
}

.bottom-area-list {
    border-top: 1px solid rgba(187, 187, 187, .1);
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.img-footer-bot {
    width: 41.6%;
}

.text-bottom-footer {
    width: 58.4%;
}

.list-footer-icon {
    text-align: right;
}

.list-footer-icon img {
    height: 35px;
}

.hidden {
    display: none !important;
}

.navbar {
    position: relative;
    padding: 10px 70px;
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.navbar .logo {
    width: 100px;
}

.nav-right {
    position: absolute;
    right: 70px;
}

.nav-login,
.nav-trial {
    font-weight: 600;
    font-size: 14px;
    padding: 18px 25px;
    background-color: #ff7a59;
    border-radius: 6px;
    margin-left: 15px;
    color: #fff;
}

.nav-trial {
    background-color: #33475b;
    color: #fff;
}

.nav-login:hover {
    color: #fff !important;
}

.nav-trial:hover {
    color: #fff !important;
}

.nav-menu {
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .header.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #fff;
        box-shadow: 0 0 16px 0 rgb(0 0 0 / 8%);
        animation: goDown .8s ease-in-out forwards;
    }
    .header.sticky .rim-menu {
        display: none;
    }
    .header.sticky .border-menu {
        top: 10px;
    }
    .header.sticky .border-menu .menu-list {
        background: transparent;
    }
    .header a {
        font-weight: 600;
        transition: ease-in-out .3s;
    }
    .header a:hover {
        color: #ff7a59;
    }
    @keyframes goDown {
        0% {
            top: -100%;
        }
        100% {
            transform: translateY(0);
        }
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 10px 20px;
    }
    .main-menu li {
        margin-left: 20px;
    }
    .nav-right {
        right: 20px;
    }
}

@media (max-width: 992px) {
    .nav-trial {
        display: none;
    }
    .title-left-contact {
        padding-right: 20px;
    }
    .box-difference {
        max-width: 100%;
    }
    .list-question {
        font-size: 15px;
    }
    .banner-img img {
        width: 100%;
    }
    .items-detail img {
        width: 400px;
    }
}

.show-menu {
    display: none;
}

@media (max-width: 820px) {
    .items-detail {
        flex-wrap: wrap;
    }
    .rim-menu {
        display: none;
    }
    .title-footer {
        margin-top: 0;
    }
    .show-menu {
        display: flex;
        width: 25px;
        height: 19px;
        align-items: center;
        justify-items: center;
        border-top: 3px solid #000;
        border-bottom: 3px solid #000;
        box-sizing: border-box;
    }
    .toggle-menu {
        width: 100%;
        height: 3px;
        background-color: #000;
        position: relative;
        transition: ease .3s;
    }
    .toggle-menu::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
        background-color: #000;
        transition: ease .3s;
    }
    .show-menu.active {
        border: 0;
    }
    .show-menu.active .toggle-menu::after {
        transform: rotate(90deg);
    }
    .show-menu.active .toggle-menu {
        transform: rotate(-45deg);
    }
    .menu-list {
        min-width: unset;
    }
    .border-menu {
        position: fixed;
        top: 68px;
        left: 0;
        transform: unset;
        width: 55vw;
        height: 100vh;
        transform: translateX(-150%);
        transition: ease-in .5s;
        z-index: 9999;
    }
    .border-menu.active {
        transform: translateX(0);
    }
    .menu-list {
        width: 100%;
    }
    .main-menu li {
        width: 100%;
        padding: 10px;
    }
    .main-menu {
        padding: 15px;
    }
    .login-sm {
        position: fixed;
        bottom: 50px;
        z-index: 99999;
        background: #ff7a59;
        padding: 10px 23px;
        border-radius: 44px;
        color: #fff;
        font-size: 14px;
    }
    .overlay {
        position: fixed;
        top: 68px;
        left: 0;
        bottom: 0;
        z-index: 99;
        right: 0;
        background-color: rgba(0, 0, 0, .5);
        display: none;
    }
    .overlay.active {
        display: block;
    }
    .banner-img {
        width: 70%;
        margin: 0 auto;
    }
    .banner-title {
        padding-left: 10px;
        padding-right: 10px;
    }
    .home-feature {
        padding-top: 10px;
        padding-bottom: 0;
    }
    .detail-right {
        width: auto;
        flex: 1;
    }
    .items-detail img {
        width: 100%;
    }
    .box-detail-img {
        width: 45%;
    }
    .footer-top-items,
    .footer-top-info {
        width: 50%;
    }
    .footer-top-info {
        margin-top: 30px;
    }
    .login-sm {
        left: -500px;
        transition: ease-in .5s;
    }
    .login-sm.active {
        left: 0;
    }
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        background: #fff;
        z-index: 9999;
        box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .1);
    }
    .main {
        padding-top: 57px;
    }
}

@media (max-width: 720px) {
    .section-desc,
    .banner-des {
        width: auto;
        padding: 0 30px;
    }
    .tab-conent {
        overflow: auto;
        padding-bottom: 20px;
    }
    .list-tab {
        width: 295vw;
    }
    .tab-items {
        width: 80vw;
    }
    .banner-title {
        font-size: 30px;
        margin-bottom: 17px;
    }
    .list-client {
        flex-wrap: wrap;
        padding: 0 20px;
    }
    .list-client li {
        width: calc(100% / 3);
        padding: 0;
    }
    .list-client li img {
        width: 85%;
    }
    .feature-items {
        width: 100%;
    }
    .home-difference .section-title {
        margin-top: 20px;
    }
    .box-detail-img {
        width: 100%;
    }
    .box-detail {
        margin: 0 0 50px 0;
    }
    .detail-difference {
        padding: 0;
    }
    .items-campaign {
        width: 100%;
    }
    .home-tab {
        padding-bottom: 0;
    }
    .section-title {
        font-size: 29px;
    }
    .items-question {
        width: 100%;
    }
    .toggle-question {
        width: 95%;
    }
    .icon-toggle {
        right: -15px;
    }
    .contact-left,
    .contact-right {
        width: 100%;
    }
    .contact-left {
        margin-bottom: 30px;
    }
    .form-contact {
        flex-wrap: wrap;
    }
    .title-social {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .text-bottom-footer,
    .img-footer-bot {
        width: 100%;
        text-align: center;
    }
    .footer ul.list-footer-icon {
        text-align: center;
        padding-top: 10px;
    }
    .tab-heading {
        margin-bottom: 30px;
    }
    .overlay,
    .border-menu {
        top: 53px;
    }
    .border-menu {
        width: 75vw;
    }
    .border-box-item {
        padding-bottom: 30px;
    }
    .home-feature {
        padding-bottom: 50px;
    }
    .items-detail img {
        padding: 0;
    }
    .navbar {
        padding: 0;
    }
    .navbar .logo {
        width: 100px;
    }
    .logo-footer {
        height: 30px;
    }
    footer a {
        font-size: 15px;
    }
    .box-contact-home {
        padding: 20px;
    }
    .box-tab {
        padding: 0;
    }
}

@media (max-width: 360px) {
    .banner-title {
        font-size: 28px;
    }
    body {
        font-size: 15px;
    }
    .tab-heading-items {
        padding: 10px;
    }
}

.more-diffen {
    background: #ff7a59;
    padding: 10px 20px;
    color: #fff;
    border-radius: 100px;
    margin-top: 5px;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff7a59;
    z-index: 9999;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px 0 rgb(0, 0, 0, .15);
    cursor: pointer;
    transform: translateX(500px);
    transition: ease 1s;
}

.back-to-top.active {
    transform: translateX(0);
}

.back-to-top svg {
    width: 15px;
    fill: #fff;
    height: 15px;
}

.more-feature {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    padding: 9px 23px;
    border-radius: 25px;
    font-size: 15px;
    line-height: 1;
    margin-top: 60px;
    transition: ease-in .3s;
}

.arrow-more {
    width: 12px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.more-feature:hover {
    border: 1px solid #ff7a59;
    background: #ff7a59;
    color: #fff;
}

.more-feature:hover svg {
    fill: #fff;
    stroke: #fff;
}

@media (max-width: 720px) {
    .heading-difference span {
        font-size: 13px;
    }
    .name-difference span {
        font-size: 14px;
    }
}

.box-content-tab {
    display: none;
}

.question-left {
    width: 30%;
}

.question-right {
    width: 70%;
}

.home-list-question {
    padding: 0 0 0 50px;
}

.question-img {
    width: 230px;
    height: 230px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-svg {
    width: 75px;
    height: 75px;
}

.question-svg svg {
    width: 100%;
    height: 100%;
}

.question-left p {
    margin-bottom: 30px;
    color: #747c87;
}

.title-question {
    font-size: 28px;
    text-transform: uppercase;
    margin: 0;
}

.box-detail h3 {
    font-size: 32px;
    margin: 0 0 24px 0;
}

.items-detail:nth-child(even) .box-detail {
    margin: 0 48px 30px 0;
}

.list-campaign.owl-carousel .owl-nav .owl-prev,
.list-campaign.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 37%;
    width: 35px;
    height: 45px;
    box-shadow: 0 0 7px 1px #ccc;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: ease .5s;
}

.list-campaign.owl-carousel button.owl-next {
    right: -100px;
}

.list-campaign.owl-carousel button.owl-prev {
    left: -100px;
}

.list-campaign:hover .owl-nav .owl-prev {
    left: 0;
}

.list-campaign:hover .owl-nav .owl-next {
    right: 0;
}

@media (max-width: 992px) {
    .nav-right {
        right: 20px;
    }
    .navbar {
        padding: 10px 20px;
    }
    .main-menu li {
        margin-left: 25px;
    }
    .banner-img,
    .banner-des {
        width: 100%;
    }
    .banner {
        text-align: center;
        padding: 150px 50px 50px;
    }
    .banner-top {
        margin-right: 0;
    }
}

@media (max-width: 820px) {
    .navbar {
        border: 0;
        justify-content: space-between;
        padding: 15px;
    }
    .main-menu li {
        margin-left: 0;
    }
    .question-left,
    .question-right {
        width: 100%;
    }
    .question-img {
        display: none;
    }
    .question-left {
        text-align: center;
    }
    .question-left p {
        padding: 0 40px;
    }
    .home-list-question {
        padding: 0;
    }
}

@media (max-width: 720px) {
    .question-left p {
        padding: 0 10px;
    }
    .banner {
        padding: 100px 0px 50px;
    }
    .section-desc,
    .banner-des {
        padding: 0;
    }
    .banner a {
        margin: 10px 0 20px;
    }
    .box-detail h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .list-campaign .items-campaign {
        margin-left: -30px;
    }
}

.title-left-contact {
    display: flex;
    flex-wrap: wrap;
}

.support-top {
    display: flex;
}

.support-top,
.contact-sup {
    width: 100%;
}

.contact-sup {
    padding: 0;
    margin: 0;
}

.contact-sup {
    padding-left: 75px;
    margin: 30px 0 0;
}

.contact-sup li {
    padding: 10px 0;
}

.contact-sup li i {
    font-size: 17px;
    color: #ff7a59;
    margin-right: 5px;
}

@media (max-width: 820px) {
    .contact-sup {
        padding-left: 60px;
    }
}

.header a.des_logo {
    font-size: 24px;
    margin: 0 15px;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 820px) {
    .des_logo {
        position: absolute;
        left: 115px;
    }
}