        /********** Template CSS **********/
:root {
    --primary: #355EFC;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    /*.navbar .navbar-nav {*/
    /*    margin-top: 10px;*/
    /*    border-top: 1px solid rgba(0, 0, 0, .07);*/
    /*    background: #FFFFFF;*/
    /*}*/

    /*.navbar .navbar-nav .nav-link {*/
    /*    padding: 10px 0;*/
    /*}*/
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Css them*/
    
   .slide .swiper-slide {
        position: relative;
        min-height: 450px;
    }
    
    .slide .swiper-slide img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .slide .swiper-slide .text_slide {
        width: 100%;
        left: 0;
    }
    
    
    
    
    /* Css them */
    
    .header .bp_menu_hor_logo .navbar-brand img {
        width: 30px;
    }    
}

/*.page-header {*/
/*    padding-top: 12rem;*/
/*    padding-bottom: 6rem;*/
/*    background: url('/files_upload/gioi-thieu-tapato-02.jpg') top left no-repeat;*/
/*    background-size: cover;*/
/*}*/

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(/files_upload/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(/files_upload/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}




/* CSS thêm */


.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    transition: all 0.3s;
    background-color: #ffffff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)
}

.fixed .top-bar {
    display: none !important;
}

/*.header.fixed-top {*/
/*    position: fixed!important;*/
/*    top: 0;*/
    
/*}*/

.header .logo img {
    width: 48px;
}

.header .main_menu .navbar ul.navbar-nav > li {
    padding: 0 15px;
}
.header .main_menu .navbar ul.navbar-nav > li > a {
    padding: 26px 0;
}

.header .main_menu .navbar .navbar-nav {
    width: 100%;
    justify-content: flex-end;
}





/********* Megamenu *********/


.main_menu .megamenu .container .row {
    align-items: center;
}

.main_menu .megamenu .container .row > * {
    width: calc(100%/6);
    margin-bottom: 10px;
}

.megamenu h6 {
    text-align: center;
}

.main_menu .megamenu a:hover {
    color: var(--primary);
}

.megamenu h6 i {
    height: 40px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.megamenu .bp_megamenu_ads_content ul {
    padding: 0;
}

.megamenu .bp_megamenu_ads_content ul li {
    margin-bottom: 3px;
}

.megamenu .bp_megamenu_ads_content ul li img {
    transition: all 0.3s;
}

.megamenu h6:hover i,
.bp_megamenu_ads_content ul li:hover img {
    transform: scale(1.1);
    
}

.bp_megamenu_ads_content ul li a {
    color: var(--tertiary);
    cursor: pointer;
}



.megamenu .icon_domain {
    background-image: url(/files_upload/icon_menu/icon_domain.png);
    
}

.megamenu .icon_webhosting {
    background-image: url(/files_upload/icon_menu/icon_web_hosting.png);
    
}

.megamenu .icon_ssl {
    background-image: url(/files_upload/icon_menu/icon_ssl.png);
    
}

.megamenu .icon_email_hosting {
    background-image: url(/files_upload/icon_menu/email_3796651.png);
    
} 

.megamenu .icon_web_design {
    background-image: url(/files_upload/icon_menu/icon_web_design.png);
    
}

.megamenu .icon_vps {
    background-image: url(/files_upload/icon_menu/icon_vps.png);
    
}



/* Menu mẫu web*/



.main_menu .megamenu .bp_megamenu_ads_content {
    display: flex;
    justify-content: space-evenly;
}

.main_menu .bp_navbar_ul_menu > li .bp_megamenu_ads img {
    margin-right: 10px;
}

.megamenu .icon_templates {
    background-image: url(/files_upload/icon_menu/template_1.png);
    
}

.megamenu .icon_intro {
    background-image: url(/files_upload/icon_menu/icon_company.png);
    
}

.megamenu .icon_products {
    background-image: url(/files_upload/icon_menu/icon_cart.png);
    
}

.megamenu .icon_news {
    background-image: url(/files_upload/icon_menu/icon_news.png);
    
}

.megamenu .icon_techn {
    background-image: url(/files_upload/icon_menu/cong_nghe_icon.png);
    
}








/* Slide */

.slide .text_slide {
    width: 55%;
    bottom: unset;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
    left: 8%;
}


.slide .swiper-button-prev,
.slide .swiper-button-next{
    opacity: 0.5;
    width: 3rem;
}

.slide .swiper-button-prev {
    left: 0;
}

.slide .swiper-button-next {
    right: 0;
}

.slide .swiper-button-prev:after,
.slide .swiper-button-next:after {
    font-size: 0;
}

.slide .swiper-button-prev:hover,
.slide .swiper-button-next:hover {
    opacity: 0.9;
}
/* About us */

.about_us .ab_tab .nav-link {
    padding: 0.5rem 1rem;
    color: #355EFC;
}

.about_us .ab_tab .nav-tabs .nav-link.active, 
.about_us .ab_tab .nav-tabs .nav-item.show .nav-link {
    color: #495057;
}

/* Facts */

.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(/files_upload/bg.png);
}

.facts hr {
    color: #fff;
}


/* Callback */

.callback::before {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(/files_upload/bg.png);
}

.callback form > div {
    margin-top: 1rem;
}

.callback form #contact_button.mt-2 {
    margin-top: 1rem !important;
}

.callback form #contact_address,
.callback form #contact_reset,
.callback form label {
    display: none;
}

/*.callback form #contact_company,*/
/*.callback form #contact_email {*/
/*    width: 49.5%;*/
/*    display: inline-block;*/
/*}*/

.callback form .form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    border: 1px solid #DFE4FD;
}

.callback form textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
    height: 100%;
}


/* Project */

.projects .item .card-body .cls-click-xem {
    display: none;
}

.projects .item .card {
    position: relative;
    background: transparent;
    box-shadow: none !important;
}

.projects .item {
    padding: 0 5px;
    margin-bottom: 0 !important;
}

.projects #carousel_fav img {
    height: auto;
    
}

.projects .item .card .card-title h5 a {
    font-size: 1.5rem;
    color: var(--dark);
}

.projects  .project-item:hover .project-title h5 a{
    color: #FFFFFF;
}

.projects  .bp_hot_news_slide_img a {
    position: relative;
}

.projects  .project-item .icon_link_prj {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.projects .project-item:hover .icon_link_prj {
    opacity: 1;
}

.owl-nav button span {
    font-size: 0;
}

.projects .project-carousel  .owl-nav button {
    color: var(--primary);
    background: var(--light);
    font-size: 22px;
}

.projects  .owl-dots {
    display: none;
}


/* testimonial */

.testimonial .item.mb-4 {
    margin-bottom: 0 !important;
}

.testimonial .card.shadow {
    box-shadow: none !important;
}

.testimonial .cls-click-xem {
    display: none;
}

.testimonial #carousel_fav img {
    height: 100px;
}

.testimonial .card-title h5 a {
    font-family: "Jost",sans-serif;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.5rem;
}

.testimonial .card-text {
    color: var(--tertiary);
}

.testimonial .testimonial-carousel .owl-dot {
    display: inline-block;
    border: 1px solid var(--light) !important;
}

.testimonial .testimonial-carousel .owl-nav {
    display: none;
}

.testimonial .card-body {
    padding: 0;
}


/* Footer */

.footer .bp_menu_option_main {
    border: none;
}

.footer .bp_menu_option_main li {
    padding: 0;
}

.footer form label {
    display: none;
}

.footer form .short-contact-txt {
    width: 100%;
}

.footer form .short-contact-txt input {
    border: 0;
    border-radius: 8px
}

.footer form #btn_send_contact.m-3 {
    margin-top: 0.5rem !important;
    
}


/* Page_header  */

.page_header {
    position: relative;
}

.page_header img {
    width: 100%;
}

.page_header .bp_breadcrumb  {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8%;
}

.page_header .bp_breadcrumb h1 {
    margin-bottom: 20px;
    font-size: 48px;
}



/* TRANG CHI TIẾT TIN */

.details_news table td, 
.details_news table thead, 
.details_news table th {
    border: 1px solid var(--light);
    padding: 10px;
}

.details_news table thead {
    background: #dee3fa4f;
    text-align: center;
    font-size: 18px;
}

.details_news .content_text_details h2 {
    font-size: 22px;
    font-weight: 500 !important;
    margin: 25px 0 20px;
    display: block;
    color: var(--bs-primary);
}


.packages h2 {
    
    font-size: 22px;
    font-weight: 500 !important;
    margin: 25px 0 20px;
    display: block;
    color: var(--bs-primary);
}

.packages .package_item {
    margin-bottom: 23px;
    transition: all 0.3s;
}

.packages .package_item:hover {
    box-shadow: 0px 0px 7px 2px #dee2faed;
    margin-top: -10px;
}

.packages .package_item h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    color: var(--bs-primary);
    padding: 15px 10px;
    background: #dee3fa4f;
}

.packages .package_item > * {
    margin: 0;
    padding: 10px;
    border: 1px solid var(--light);
}

.packages .package_item > *:not(:last-child) {
    border-bottom: none;
}

.more-request {
    padding-top: 20px;
}

.more-request h3 {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

.more-request p {
    margin-bottom: 10px;
}

.bp_news_create_date {
    display: none;
}


/*  TRANG LIÊN HỆ */


.body_contact form > div {
    margin-top: 1rem;
}

.body_contact form #contact_address,
.body_contact form label {
    display: none;
}

.body_contact form .form-control {
    border: 1px solid #DFE4FD;
}

.body_contact #contact_reset {
    display: none;
}

.body_contact form .form-control::placeholder {
    color: var(--tertiary);
}

.body_contact form #contact_button {
    margin-top: 1rem !important;
}




 

/* Responsive */

@media (min-width: 1200px) {
    .projects .item .card .card-title h5 a {
        font-size: 1.5rem;
        
    }
}

@media (min-width: 768px) {
    .header .main_menu {
        order: inherit !important;
    }
}

@media (max-width: 1338px) {
    .header_menu .btn_web  a.px-lg-5 {
        padding-right: 1rem!important;
        padding-left: 1rem!important;
    }
    
    .header_menu .btn_web  a.py-lg-3 {
        padding-top: 0.5rem!important;
        padding-bottom: 0.5rem!important;
    }
}


@media (max-width: 1199px) {
    .page_header .bp_breadcrumb h1 {
        font-size: 42px;
    }
    
    .page_header .bp_breadcrumb  {
        left: 6%;
    }
    
}


/*@media (max-width: 1345px) and (min-width: 992px) {*/
/*    .header_menu .logo img {*/
/*        width: 100% !important;*/
/*    }*/
/*}*/


@media (max-width: 991px) {
    
   .page_header .bp_breadcrumb h1 {
        margin-bottom: 18px;
        font-size: 40px;
    }
    
    .header_menu {
        position: relative;
    }
    
    .main_menu .megamenu .container .row > * {
        width: 50%;
    }
    
    .header .main_menu .navbar-toggler {
        margin-left: auto;
    }
    
    
    .header .main_menu .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 2;
    }
    
    .header .main_menu .navbar .navbar-nav {
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }
    
    .header .main_menu .navbar .has-megamenu {
        position: relative!important;
    }
    
    .header .main_menu  .navbar .navbar-nav .nav-link {
        padding: 10px 0;
        width: unset;
    }
    
    .header .main_menu .navbar-nav .dropdown-menu {
        position: absolute;
    }
    
}

@media (max-width: 767px) {
    
   
    
   
    
    .header .logo img {
        width: 40px;
    }
    
    
    
    
    
    .megamenu > .container > .row {
        padding: 20px 0px;
    }
    
    .megamenu h6 a {
         font-size: 14px;
    }
    
    
    .megamenu h6 i {
        height: 60px;
    }
    
    .megamenu > .container {
        padding: 0;
    }
    
    
    .slide h1 {
        font-size: 35px;
    }
    
    .bp_slide_title_note p:first-child {
        padding: 0 !important;
        margin-bottom: 10px;
        font-size: 15px;
    }
    
    .page_header .bp_breadcrumb  {
        left: 4%;
    }
    
    
    .page_header .bp_breadcrumb h1 {
        font-size: 30px;
        margin-bottom: 12px;
    }

}


@media (max-width: 575px) {
    
    .page_header .bp_breadcrumb h1 {
        font-size: 26px;
    }
    
    .callback form .row>* {
        width: 100%;
        margin-top: 1rem;
    }
    
    .callback form #contact_company, 
    .callback form #contact_email {
        width: 100%;
    }
    
    .body_contact form #contact_telephone {
        margin-top: 1rem;
    }
    
    .slide h1 {
        font-size: 30px;
    }
    
    .slide .btn-primary {
        padding: 10px 25px !important;
        font-size: 15px;
    }
    
    .slide .swiper-button-prev, 
    .slide .swiper-button-next {
        width: 2rem;
    }
}

.bp_img_solotion {width:100%;}


/* Module template */

.template_web .items-link {
    display: inline-block;
}

.bp_news_info{display:none;}
















