@import url('../vendor/fontawesome-free/css/all.css');
@import url('font.css');


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --bs-body-line-height: 1.7;
}
@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1170px;
    }
} 
body {
   font-family: 'Roboto';
    color: #222;
    font-size: 14px;
    line-height: 21px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: #2a3580;
    text-decoration: none;
}

    a:hover {
        color: #2a3580;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Roboto';
    font-weight: 700;
}

.h1, h1 {
    font-size: 26px;
}

.h2, h2 {
    font-size: 23px;
}

.h3, h3 {
    font-size: 20px;
}

.h4, h4 {
    font-size: 17px;
}

.h5, h5 {
    font-size: 14px;
}

.h6, h6 {
    font-size: 11px;
}

@media(max-width:767px) {
    body {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

    .h1, h1 {
        font-size: calc(26px * 0.8);
    }

    .h2, h2 {
        font-size: calc(23px * 0.8);
    }

    .h3, h3 {
        font-size: calc(20px * 0.8);
    }

    .h4, h4 {
        font-size: calc(17px * 0.8);
    }

    .h5, h5 {
        font-size: calc(14px * 0.8);
    }

    .h6, h6 {
        font-size: calc(11px * 0.8);
    }
}

@media (max-width: 1100px) {
    .container, .container-md, .container-sm {
        max-width: 100%;
    }
}

.form-control {
    font-size: 14px;
}
.form-control:focus {
   box-shadow:none;
}

.swiper-pagination {
    bottom: 0 !important
}

.swiper {
    --swiper-pagination-bullet-inactive-color: #2a3580;
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-color: #ff1a40
}

.swiper-pagination-bullet {
    transition: all .5s;
    border-radius: 10px;
    opacity: 1;
}


.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 10rem;
    font-size: 20px;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        color:#000;
        font-size:20px;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #37517e;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #37517e;
        border-top-color: #fff;
        border-bottom-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #47b2e4;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #6bc1e9;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
}

    #header .header-large-device {
        background: #fff;
    }

    #header .header-top {
        padding: 15px 0;
        background-image: url('../img/bg/bg-header.jpg');
        background-repeat: no-repeat;
        background-size: cover;
    }

    #header .header-bottom {
        background: rgb(0,15,201);
        background: linear-gradient(90deg, rgba(42, 53,128,1) 0%, rgb(42 53 128) 100%);
        border-bottom:3px solid #fff;
    }

    #header.header-scrolled .header-large-device,
    #header.header-scrolled .header-mobile-device {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1024;
        width: 100%;
        box-shadow: 0 0 3px rgb(0 0 0 / 30%);
    }
        #header.header-scrolled .header-mobile-device{
            background:#fff;
        }

        #header.header-scrolled .header-large-device .header-top {
            display: none
        }

    #header .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 85px;
        }

.header-large-device {
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-large-device {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .header-large-device {
        display: none;
    }
}

.header-mobile-device {
    display: none;
}

.header-contact {
    margin-right:15px;
    padding-right:15px;
    border-right:1px solid rgb(153 153 153/30%);
}
.header-contact a {
    color: #303d8c;
    font-weight: 600;
}
.header-contact a span{
    font-weight: 400;
}

#header .social-links a {
    color: #999999;
    line-height: 0;
    transition: 0.3s;
    display:inline-block;
}
    #header .social-links a:hover {
        color: #c43238;
    }
#header .social-links a:not(:last-child) {
    margin-right: 10px;
}
.language .lang-toggle {
    border: 1px solid rgb(0 0 0 / 20%);
    border-radius: 5px;
    background-color: transparent;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.language .lang-toggle img{
    margin-left: 5px;
}
.header-top .header-items:not(:last-child) {
    margin-right: 15px;
}
.header-mobile-device .header-search-wrap {
    border:1px solid #ccc;
    border-radius:5px
}

    .header-mobile-device .header-search-wrap .form-control {
        border: 0;
        background-color: transparent;
        padding-left: 20px;
        height:40px;
    }

    .header-mobile-device .header-search-wrap .button-search {
        height: 40px;
        width: 40px;
        background-color: #c43238;
        color: #fff;
        border-radius: 5px !important;
        border: 0;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-mobile-device {
        display: block;
    }
}

@media only screen and (max-width: 991px) {

    #header .header-mobile-device .logo img {
        max-height: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .header-mobile-device {
        display: block;
    }

    #header .header-mobile-device .logo img {
        max-height: 40px;
    }
}

#topbar {
    background: #2a3580;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
}

    #topbar .contact-info .contact-info-item:not(:last-child) {
        margin-right: 15px;
    }

    #topbar .contact-info i {
        font-style: normal;
        color: #fff;
    }

        #topbar .contact-info a, #topbar .contact-info i span {
            padding-left: 5px;
            color: #000;
        }

        #topbar .contact-info i a {
            line-height: 0;
            transition: 0.3s;
            transition: 0.3s;
        }

            #topbar .contact-info i a:hover {
                color: #2a3580;
                text-decoration: none;
            }

    #topbar .social-links a {
        color: #fff;
        line-height: 0;
        transition: 0.3s;
        padding: 10px 5px;
    }

        #topbar .social-links a:hover {
            color: #fff;
        }

@media(max-width: 1100px) {
    #topbar {
        display: none;
    }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        flex-wrap:wrap;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        font-weight: unset;
        color: #fff;
        white-space: nowrap;
        border-color: transparent;
        transition: 0.3s;
        padding: 12px 25px;
        font-family: 'Roboto';
        letter-spacing:1px;
        text-transform:uppercase;
        font-weight: 700;
    }
    @media(max-width:1200px){
        .navbar a,
        .navbar a:focus {
            padding: 15px 16px;
        }
    }

        .navbar a i,
        .navbar a:focus i {
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #fff;
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 10px 20px;
        margin-left: 30px;
        border-radius: 5px;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        background-color: #2a3580;
        justify-content: center;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: #4bc700;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: 100%;
        margin: 0;
        padding: 0px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 0;
        max-width: 280px;
        min-width: 280px;
        border-top: 3px solid #c43238;
    }


        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            font-weight: 500;
            color: #000;
            white-space: unset;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #000;
            }
        .navbar .dropdown ul li:hover > a {
            background: rgb(0,15,201);
            background: linear-gradient(90deg, rgba(42, 53,128,1) 0%, rgb(42 53 128) 100%);
            color:#fff
        }
    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

.navbar .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    visibility: hidden;
}

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

.rightmenu .getstarted {
    padding: 10px 30px;
    margin-left: 30px;
    border-radius: 10rem;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    background-color: #fff;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}
@media (min-width: 1200px) {
    .navbar .dropdown ul {
        width: 250px;
        left: 0;
    }
    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a{
        position:relative;
    }
    .navbar a.nav-link:hover:after, .navbar .nav-link.active:after, .navbar li:hover > a.nav-link:after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #c43238;
    }
}
.navbar .dropdown ul::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

.navbar .dropdown ul::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.navbar .dropdown ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c1c1c1;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}


@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    left: 0;
    bottom: 0;
    transition: 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav-active .navbar-mobile {
    right: 0%;
    opacity: 1;
    visibility: visible;
}

    .mobile-nav-active .navbar-mobile .bg-menu-active {
        right: 0%;
        opacity: 1;
        visibility: visible;
        background-color: rgb(0 0 0 / 50%);
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
    }

.navbar-mobile .mobile-nav-toggle {
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 15px;
    left: unset;
    padding: 10px 0;
    border-radius: 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    width: 300px;
    height: 100%;
    z-index: 1;
    overflow-x: hidden;
}

.mobile-nav-active .navbar-mobile ul {
    right: 0
}

.navbar-mobile li {
    padding: 10px 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    font-size: 14px;
    color: #2a3580;
    padding: 0
}

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #c73036;
        background-color: transparent;
        box-shadow: unset
    }

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #fff;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: block;
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 1;
    visibility: visible !important;
    background: #fff;
    box-shadow: none;
    border: 0;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 20px;
    min-width: 100%;
    max-width: 100%;
    border-left: 2px solid #dadada;
}
    .navbar-mobile .dropdown ul.submenu2 {
       display:none
    }
    .navbar-mobile .dropdown ul li {
        min-width: unset;
        padding: 10px 0
    }

        .navbar-mobile .dropdown ul li:last-child {
            padding: 10px 0 0px
        }

        .navbar-mobile .dropdown ul li:first-child {
            padding-top: 0
        }

    .navbar-mobile .dropdown ul a {
        padding: 0 0;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 14px;
        color: #2a3580;
    }

        .navbar-mobile .dropdown ul a i {
            font-size: 12px;
        }

        .navbar-mobile .dropdown ul a:hover,
        .navbar-mobile .dropdown ul .active:hover,
        .navbar-mobile .dropdown ul li:hover > a {
            color: #c73036;
            background:none
        }

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    background: #37517e;
}

    #hero .container {
        padding-top: 72px;
    }

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: #fff;
    }

    #hero h2 {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 50px;
        font-size: 24px;
    }

    #hero .btn-get-started {
        font-family: "Jost", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px 11px 28px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px 0 0 0;
        color: #fff;
        background: #47b2e4;
    }

        #hero .btn-get-started:hover {
            background: #209dd8;
        }

    #hero .btn-watch-video {
        font-size: 16px;
        display: flex;
        align-items: center;
        transition: 0.5s;
        margin: 10px 0 0 25px;
        color: #fff;
        line-height: 1;
    }

        #hero .btn-watch-video i {
            line-height: 0;
            color: #fff;
            font-size: 32px;
            transition: 0.3s;
            margin-right: 8px;
        }

        #hero .btn-watch-video:hover i {
            color: #47b2e4;
        }

    #hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

.single-hero-slider {
    position: relative;
}

    .single-hero-slider .hero-slider-content {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        background: rgba(0,0,0,.2);
    }

        .single-hero-slider .hero-slider-content * {
            color: #fff !important
        }

        .single-hero-slider .hero-slider-content .section-title {
            padding: 0
        }

            .single-hero-slider .hero-slider-content .section-title .title {
                font-size: 40px;
            }

        .single-hero-slider .hero-slider-content .content {
            font-size: 20px;
        }

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

        #hero .animated {
            -webkit-animation: none;
            animation: none;
        }

        #hero .hero-img {
            text-align: center;
        }

            #hero .hero-img img {
                width: 50%;
            }

    .single-hero-slider .hero-slider-content .section-title .title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }

/*    .hero-slider-img {
        height: 575px;
    }

        .hero-slider-img img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }*/
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}
.home section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    padding-bottom: 30px;
}

    .section-title .title {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 0;
        padding-bottom: 0;
        position: relative;
        color: #000fc9;
        font-family: 'Roboto';
        letter-spacing: 1px;
        background: linear-gradient(90deg, rgba(42, 53,128,1) 0%, rgb(42 53 128) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        text-transform: uppercase;
        display: inline-block;
        line-height: 1.7;
    }
        .section-title .title::after {
            content: "";
            position: relative;
            margin: 10px auto;
            width: 156px;
            height: 4px;
            display: block;
            background: rgb(204,0,0);
            background: linear-gradient(90deg, rgba(204,0,0,1) 0%, rgba(255,255,255,1) 100%);
        }

        .section-title .title span {
            color: #2a3580;
        }

    .section-title .subtitle {
        position: relative;
        font-weight: 400;
        font-size: 20px;
        color: #000;
        font-family: 'Roboto';
        text-transform: uppercase;
    }

    .section-title .desc {
        margin-bottom: 0;
    }

    .section-title .headline {
        color: #006277;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 700;
    }

@media(max-width: 991px) {
    section {
        padding: 40px 0;
    }
}
@media(max-width: 767px) {
    .section-title {
        padding-bottom: 15px;
    }
    .section-title .title {
        font-size: 22px;
    }
    .section-title .subtitle{
        font-size: 18px
    }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
    text-align: center;
}

    .clients img {
        max-width: 45%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
        filter: grayscale(100);
    }

        .clients img:hover {
            filter: none;
            transform: scale(1.1);
        }

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-left: 28px;
        position: relative;
    }

        .about .content ul li + li {
            margin-top: 10px;
        }

    .about .content ul i {
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 20px;
        color: #47b2e4;
        line-height: 1;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #47b2e4;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #47b2e4;
}

    .about .content .btn-learn-more:hover {
        background: #47b2e4;
        color: #fff;
        text-decoration: none;
    }

.about-us-img {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
}

    .about-us-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-us-content table {
    width: 100% !important;
}
.about-us-content{
    display:flex;

}
.about-us-area .about-us-content:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc
}
.about-us-content .about-img{
    width:80px;
    position:relative;
}
    .about-us-content .about-img img {
        height:65px;
        object-fit: contain;
    }
    .about-us-content .about-content {
        padding-left: 15px;
        width: calc(100% - 80px);
    }
        .about-us-content .about-content .title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 0;
            padding-bottom: 0;
            position: relative;
            font-family: 'Roboto';
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: flex-end;
        }
            .about-us-content .about-content .title::after {
                content: "";
                width: 45px;
                height: 3px;
                display: block;
                position: absolute;
                bottom: 7px;
                right: -50px;
            }
.about-us-content:nth-child(2n+1) .about-content .title::after {
    background: #f3753f;
}
.about-us-content:nth-child(2n+2) .about-content .title::after {
    background: #ffc524;
}
.about-us-content:nth-child(2n+3) .about-content .title::after {
    background: #6dbe45;
}
.about-us-content .about-content .content * {
    color: #000;
    font-size: 14px;
}

        @media(max-width:767px) {
            .about-us-content table, .about-us-content table tbody, .about-us-content table tr, .about-us-content table td {
        display: block;
    }

        .about-us-content table td {
            margin-bottom: 10px;
        }
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
    padding: 60px 100px 0 100px;
}

    .why-us .content h3 {
        font-weight: 400;
        font-size: 34px;
        color: #37517e;
    }

    .why-us .content h4 {
        font-size: 20px;
        font-weight: 700;
        margin-top: 5px;
    }

    .why-us .content p {
        font-size: 15px;
        color: #848484;
    }

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

    .why-us .accordion-list ul {
        padding: 0;
        list-style: none;
    }

    .why-us .accordion-list li + li {
        margin-top: 15px;
    }

    .why-us .accordion-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
    }

    .why-us .accordion-list a {
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        padding-right: 30px;
        outline: none;
        cursor: pointer;
    }

    .why-us .accordion-list span {
        color: #47b2e4;
        font-weight: 600;
        font-size: 18px;
        padding-right: 10px;
    }

    .why-us .accordion-list i {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .why-us .accordion-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

    .why-us .accordion-list .icon-show {
        display: none;
    }

    .why-us .accordion-list a.collapsed {
        color: #343a40;
    }

        .why-us .accordion-list a.collapsed:hover {
            color: #47b2e4;
        }

        .why-us .accordion-list a.collapsed .icon-show {
            display: inline-block;
        }

        .why-us .accordion-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #37517e;
    font-family: "Poppins", sans-serif;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

    .skills .content ul li {
        padding-bottom: 10px;
    }

    .skills .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #47b2e4;
    }

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

    .skills .progress .skill {
        padding: 0;
        margin: 0 0 6px 0;
        text-transform: uppercase;
        display: block;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        color: #37517e;
    }

        .skills .progress .skill .val {
            float: right;
            font-style: normal;
        }

.skills .progress-bar-wrap {
    background: #e8edf5;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
}

    .services .icon-box .icon {
        margin-bottom: 10px;
    }

        .services .icon-box .icon i {
            color: #47b2e4;
            font-size: 36px;
            transition: 0.3s;
        }

    .services .icon-box h4 {
        font-weight: 500;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .services .icon-box h4 a {
            color: #37517e;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        transform: translateY(-10px);
    }

        .services .icon-box:hover h4 a {
            color: #47b2e4;
        }

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

    .cta h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    .cta p {
        color: #fff;
    }

    .cta .cta-btn {
        font-family: "Jost", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid #fff;
        color: #fff;
    }

        .cta .cta-btn:hover {
            background: #47b2e4;
            border: 2px solid #47b2e4;
        }

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# hinhanh
--------------------------------------------------------------*/
.hinhanh #hinhanh-flters {
    list-style: none;
    margin-bottom: 20px;
}

    .hinhanh #hinhanh-flters li {
        cursor: pointer;
        display: inline-block;
        margin: 10px 5px;
        font-size: 15px;
        font-weight: 500;
        line-height: 1;
        color: #444444;
        transition: all 0.3s;
        padding: 8px 20px;
        border-radius: 8px;
        font-family: "Poppins", sans-serif;
    }

        .hinhanh #hinhanh-flters li:hover,
        .hinhanh #hinhanh-flters li.filter-active {
            background: #2a3580;
            color: #fff;
        }

.hinhanh .hinhanh-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem
}

.hinhanh .hinhanh-item .hinhanh-img {
    overflow: hidden;
    border-radius: 10px
}

    .hinhanh .hinhanh-item .hinhanh-img img {
        transition: all 0.6s;
    }

.hinhanh .hinhanh-item .hinhanh-info {
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    right: 0;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hinhanh .hinhanh-item .hinhanh-info .preview-link,
    .hinhanh .hinhanh-item .hinhanh-info .details-link {
        font-size: 20px;
        color: #fff;
        transition: 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #2a3580;
        width: 50px;
        height: 50px;
        border-radius: 10rem;
    }

        .hinhanh .hinhanh-item .hinhanh-info .preview-link:hover,
        .hinhanh .hinhanh-item .hinhanh-info .details-link:hover {
            color: #fff;
        }

    .hinhanh .hinhanh-item .hinhanh-info .details-link {
        right: 10px;
    }

.hinhanh .hinhanh-item:hover .hinhanh-img img {
    transform: scale(1.15);
}

.hinhanh .hinhanh-item:hover .hinhanh-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# hinhanh Details
--------------------------------------------------------------*/
.hinhanh-details {
    padding-top: 40px;
}

    .hinhanh-details .hinhanh-details-slider img {
        width: 100%;
    }

    .hinhanh-details .hinhanh-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .hinhanh-details .hinhanh-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #47b2e4;
        }

        .hinhanh-details .hinhanh-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #47b2e4;
        }

    .hinhanh-details .hinhanh-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
    }

        .hinhanh-details .hinhanh-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .hinhanh-details .hinhanh-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .hinhanh-details .hinhanh-info ul li + li {
                margin-top: 10px;
            }

    .hinhanh-details .hinhanh-description {
        padding-top: 30px;
    }

        .hinhanh-details .hinhanh-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hinhanh-details .hinhanh-description p {
            padding: 0;
        }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
}

    .team .member .pic {
        overflow: hidden;
        width: 180px;
        border-radius: 50%;
    }

        .team .member .pic img {
            transition: ease-in-out 0.3s;
        }

    .team .member:hover {
        transform: translateY(-10px);
    }

    .team .member .member-info {
        padding-left: 30px;
    }

    .team .member h4 {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 20px;
        color: #37517e;
    }

    .team .member span {
        display: block;
        font-size: 15px;
        padding-bottom: 10px;
        position: relative;
        font-weight: 500;
    }

        .team .member span::after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 1px;
            background: #cbd6e9;
            bottom: 0;
            left: 0;
        }

    .team .member p {
        margin: 10px 0 0 0;
        font-size: 14px;
    }

    .team .member .social {
        margin-top: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .team .member .social a {
            transition: ease-in-out 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            width: 32px;
            height: 32px;
            background: #eff2f8;
        }

            .team .member .social a i {
                color: #37517e;
                font-size: 16px;
                margin: 0 2px;
            }

            .team .member .social a:hover {
                background: #47b2e4;
            }

                .team .member .social a:hover i {
                    color: #fff;
                }

            .team .member .social a + a {
                margin-left: 8px;
            }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #37517e;
}

.pricing h4 {
    font-size: 48px;
    color: #37517e;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

    .pricing h4 sup {
        font-size: 28px;
    }

    .pricing h4 span {
        color: #47b2e4;
        font-size: 18px;
        display: block;
    }

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

    .pricing ul li {
        padding: 10px 0 10px 30px;
        position: relative;
    }

    .pricing ul i {
        color: #28a745;
        font-size: 24px;
        position: absolute;
        left: 0;
        top: 6px;
    }

    .pricing ul .na {
        color: #ccc;
    }

        .pricing ul .na i {
            color: #ccc;
        }

        .pricing ul .na span {
            text-decoration: line-through;
        }

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #47b2e4;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #47b2e4;
}

    .pricing .buy-btn:hover {
        background: #47b2e4;
        color: #fff;
    }

.pricing .featured {
    border-top-color: #47b2e4;
}

    .pricing .featured .buy-btn {
        background: #47b2e4;
        color: #fff;
    }

        .pricing .featured .buy-btn:hover {
            background: #23a3df;
        }

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

    .faq .faq-list ul {
        padding: 0;
        list-style: none;
    }

    .faq .faq-list li + li {
        margin-top: 15px;
    }

    .faq .faq-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
        position: relative;
    }

    .faq .faq-list a {
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        padding: 0 30px;
        outline: none;
        cursor: pointer;
    }

    .faq .faq-list .icon-help {
        font-size: 24px;
        position: absolute;
        right: 0;
        left: 20px;
        color: #47b2e4;
    }

    .faq .faq-list .icon-show,
    .faq .faq-list .icon-close {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .faq .faq-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

    .faq .faq-list .icon-show {
        display: none;
    }

    .faq .faq-list a.collapsed {
        color: #37517e;
        transition: 0.3s;
    }

        .faq .faq-list a.collapsed:hover {
            color: #47b2e4;
        }

        .faq .faq-list a.collapsed .icon-show {
            display: inline-block;
        }

        .faq .faq-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

    .contact .info i {
        font-size: 20px;
        color: #47b2e4;
        float: left;
        width: 44px;
        height: 44px;
        background: #e7f5fb;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #37517e;
    }

    .contact .info p {
        padding: 0 0 10px 60px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #6182ba;
    }

    .contact .info .email p {
        padding-top: 5px;
    }

    .contact .info .social-links {
        padding-left: 60px;
    }

        .contact .info .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #333;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
            margin-right: 10px;
        }

            .contact .info .social-links a:hover {
                background: #47b2e4;
                color: #fff;
            }

    .contact .info .email:hover i,
    .contact .info .address:hover i,
    .contact .info .phone:hover i {
        background: #47b2e4;
        color: #fff;
    }

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form .form-group {
        margin-bottom: 20px;
    }

    .contact .php-email-form label {
        padding-bottom: 8px;
    }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: #47b2e4;
        }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type=submit] {
        background: #47b2e4;
        border: 0;
        padding: 12px 34px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #209dd8;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f3f3f3;
    min-height: 40px;
}
.top-background {
    display: block;
    min-height: 330px;
    position:relative;
}
    .top-background.has-search {
       
    }
    .top-background .top-background-img img,
    .top-background .top-background-content {
        position:absolute;
        top:0;
        left:0;
    }
    .top-background .top-background-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .top-background .top-background-content {
        width: 100%;
        height: 100%;
        display:flex;
        align-items:center;
        align-content:center;
    }    
    .top-background .top-background-content:before {
        content:"";
        position: absolute;
        top: 0;
        left: 0;
        background:rgb(0 0 0 / 30%);
        width: 100%;
        height: 100%;
    }
        .top-background .top-background-content .top-background-title {
            color: #fff;
            font-size: 35px;
            text-shadow: -1px 14px 9px rgba(0, 0, 0, 0.78);
            font-weight: 900;
            text-transform: uppercase;
            font-family: 'Roboto';
        }
    .top-background.has-search .top-background-content {
        align-items:end;
        align-content:end;
        padding-bottom: 40px;
    }
    .top-background .top-background-search {
        margin-top: 30px;
    }
.top-background-search .top-background-search_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
}
    .top-background-search .top-background-search_form .form-select {
        font-size: 14px;
    }
.top-background-search_form-button .form-button_submit {
    border-radius: 5px;
    width: 100%;
    background: rgb(204,0,0);
    background: linear-gradient(90deg, rgb(199 48 54) 0%, rgb(199 48 54) 100%);
    color: #fff;
    text-align: center;
    height: 38px;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.top-background-search_form-item {
    width: 21.5%;
    position: relative;
}

.top-background-search_form-button {
    width: 12%;
}
@media (min-width: 1200px) {
    .top-background-search_form-item {
        width: 21.5%;
        position: relative;
    }
    .top-background-search_form-button {
        width: 12%;
    }
}
@media (max-width: 767px) {
    .top-background-search .top-background-search_form{
        display:block
    }
    .top-background-search_form-item {
        width: 85%;
        position: relative;
        margin: auto;
        margin-bottom: 10px;
    }
    .top-background-search_form-button {
        width: 30%;
        margin:0 auto;
    }
    .top-background.has-search{
        min-height: 460px;
    }
}
@media (max-width: 767px) {
    .top-background .top-background-content .top-background-title {
        text-align: center;
        font-size: 28px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #37517e;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
}

    .breadcrumbs ol a {
        color: #222;
    }

    .breadcrumbs ol .active a {
        color: #2a3580;
    }
    .breadcrumbs ol .active {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #4668a2;
            content: "/";
        }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: #fff;
    color: #222;
    background-position: bottom;
}

.footer-newsletter .form-control {
    border-radius: 0rem;
    height: 44px;
    padding: 12px 20px;
}

.footer-newsletter .submit {
    background: #4bc700;
    color: #fff;
    font-weight: 700;
    border: 0;
    height: 44px;
    padding: 12px 40px;
    text-transform: uppercase;
}

#footer .footer-top {
    padding: 50px 0 15px;
    background-size: cover;
    background-repeat: no-repeat;
    color: #666666
}

#footer .footer-contact {
    margin-bottom: 20px;
}

    #footer .footer-contact h3 {
        font-size: 28px;
        margin: 0 0 10px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        text-transform: uppercase;
        font-weight: 600;
        color: #37517e;
    }

    #footer .footer-contact p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 8px;
        display:flex;
    }

        #footer .footer-contact p i {
            color: #666;
            margin-top: 4px;
            flex: 0 0 18px;
            width: 18px;
        }

    #footer .footer-contact a {
        color: #222
    }
.footer-contact .logo {

}
#footer .footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a3580;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Roboto';
    text-transform: uppercase;
    letter-spacing: 1px;
}

#footer .footer-links {
    margin-bottom: 30px;
}

    #footer .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #footer .footer-links ul i {
            padding-right: 2px;
            color: #47b2e4;
            font-size: 18px;
            line-height: 1;
        }

        #footer .footer-links ul li {
            padding: 6px 0;
            display: flex;
            align-items: center;
        }

            #footer .footer-links ul li:first-child {
                padding-top: 0;
            }

        #footer .footer-links ul a {
            color: #666;
            transition: 0.3s;
            display: inline-block;
            line-height: 1;
            font-size:15px;
        }

            #footer .footer-links ul a:hover {
                text-decoration: underline;
                color: #666;
            }

#footer .social-links a {
    font-size: 24px;
    display: inline-block;
    color: #666;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

    #footer .social-links a:hover {
        color: #c43238;
        text-decoration: none;
    }

#footer .footer-bottom {
   
    color: #666;
}
    #footer .footer-bottom .member-company {
        display: flex;
        font-family: 'Roboto';
        letter-spacing: 1px;
        font-size: 14px;
        padding: 20px 0 20px;
        border-top: 1px solid rgb(0 0 0 / 20%);
        text-align: center;
        color: #c73036
    }
    #footer .footer-bottom .member-company .item{
        
    }
        #footer .footer-bottom .member-company .item.title {
            border-right: 1px solid rgb(0 0 0 / 20%);
            padding: 0 12px;
            
        }
        #footer .footer-bottom .member-company .member-item {
            text-transform: uppercase;
            padding: 0 12px;
            
        }
            #footer .footer-bottom .member-company .member-item:hover {
                color: #2a3580
            }

#footer .copyright {
    text-align: center;
    padding: 10px 0;
    color: #fff;
    font-size: 13px;
    background: rgb(0,15,201);
    background: linear-gradient(90deg, rgba(42, 53,128,1) 0%, rgb(42 53 128) 100%);
}

    #footer .credits a,
    #footer .copyright a {
        transition: 0.3s;
        color: #fff;
    }

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 0;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }

    #footer .footer-title {
        font-size: 16px;
    }
    #footer .footer-bottom .member-company {
        display: block;
        
    }
        #footer .footer-bottom .member-company .item.title {
            margin-bottom: 8px;
        }
        #footer .footer-bottom .member-company .member-item {
            display: block;
            margin-bottom: 5px;
        }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

    .blog .entry {
        margin-bottom: 24px;
    }

        .blog .entry:last-child {
            margin-bottom: 0;
        }

    .blog.blog-article .entry .row {
        --bs-gutter-x: 0;
    }

    .blog .entry .entry-img {
        overflow: hidden;
        position: relative;
        padding-top: 56.25%;
        display: block;
    }

    .blog.blog-article .entry .entry-img {
        overflow: hidden;
        position: relative;
        padding-top: 65%;
        display: block;
    }

    .blog .entry .entry-img img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        transition: all 0.5s;
    }

    .blog .entry:hover .entry-img img {
        transform: scale(1.2);
    }

    .blog.blog-article .entry .entry-content {
        padding: 20px 0;
        color: #000;
        height: 100%;
        border-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-right: 20px;
    }

    .blog .entry .entry-title {
        font-size: 16px;
        font-weight: 600;
        padding: 0;
        margin: 0 0 10px 0;
        color: #2a3580;
       font-family: 'Roboto';
    }

    .blog .entry.entry-single .entry-title {
        font-size: 22px;
    }

    .blog .entry.entry-single .entry-content {
        font-size: 14px;
    }
        .blog .entry.entry-single .entry-content a {
            color: #1b38ff;
        }
        .blog .entry.entry-single .entry-content blockquote {
            padding-left: 12px;
            font-size: 14px;
        }

    .blog .entry .entry-title a {
        color: #2a3580;
        transition: 0.3s;
    }

        .blog .entry .entry-title a:hover {
            color: #0a57ff;
        }

    .blog .entry .entry-decription {
        margin-bottom: 0;
        color: #222;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .blog .entry .entry-link a {
        color: #2a3580;
       font-family: 'Roboto';
        font-weight: 700;
        font-size: 16px;
    }

@media(max-width: 767px) {
    .blog.blog-article .entry .entry-content {
        padding: 15px;
        display: block;
    }
}

.blog .blog-pagination {
    color: #4bc700;
    padding-top: 30px;
}

    .blog .blog-pagination ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .blog .blog-pagination li {
        margin: 0 5px;
        transition: 0.3s;
    }

        .blog .blog-pagination li a {
            color: #000;
            padding: 7px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .blog .blog-pagination li.active, .blog .blog-pagination li:hover {
            background: #2a3580;
        }

            .blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
                color: #fff;
            }

.header-search {
    position: relative;
}

    .header-search .search-toggle,
    .header-search .search-toggle:hover {
        background-color: transparent;
        color: #c43238;
        height: 35px;
        width: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0;
        box-shadow: unset;
        font-size: 17px;
        border: 1px solid rgb(0 0 0 / 20%);
        border-radius: 5px;
    }
        .header-search .search-toggle:hover {
            border: 1px solid #c43238;
            cursor:pointer;
        }

        .header-search .search-toggle.open .s-open {
            display: none;
        }

        .header-search .search-toggle .s-close {
            display: none;
        }

        .header-search .search-toggle.open .s-close {
            display: block;
        }

    .header-search .search-wrap.open {
        opacity: 1;
        right: 100%;
        visibility: visible;
        z-index: 99;
    }

    .header-search .search-wrap {
        background-color: #fff;
        opacity: 0;
        position: absolute;
        right: 0;
        top: 48%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        visibility: hidden;
        width: 340px;
        z-index: -99;
        padding-bottom: 0;
        margin-right: 10px;
        border: 1px solid #ccc;
    }

        .header-search .search-wrap .form-control {
            border: 0;
            box-shadow: none;
            height: 38px;
            font-size: 14px;
        }

        .header-search .search-wrap .input-group-append {
            border-left: 1px solid #ccc;
            margin-left: 0;
        }

        .header-search .search-wrap .form-control:focus {
            border: 0;
            box-shadow: 0;
        }
.btn-contact {
    padding: 7px 14px;
    background: #d4d5d5;
    color: #000;
    border-radius: 0;
    display: inline-flex;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    align-items: center;
    justify-content: center;
    align-content: center;
}
    .btn-contact svg {
        fill: #cc0000;
        height: 15px;
        width: 15px;
        transform: scale(1.8);
        margin-left: 5px;
    }

    .btn-contact:hover {
        background: rgb(204,0,0);
        background: linear-gradient(90deg, rgb(199 48 54) 0%, rgb(199 48 54) 100%);
        color: #fff;
    }
        .btn-contact:hover svg {
            fill: #fff;
        }



.video {
    position: relative;
    border:8px solid #fff;
    box-shadow:7px 7px 10px rgb(0 0 0 /20%);
}

    .video img {
        width: 100%;
    }

    .video .icon-play {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }

        .video .icon-play i {
            color: #fff;
            opacity: 0.68;
        }

.dangky {
    background-image: url('../img/bg/bg-lienhe.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    background-position:center;

}

    .dangky .form-dangky .section-title .title::after {
        margin-left:0
    }

    .dangky .form-control {
        background: #fff;
        border-radius: 5px;
        text-align: left;
        padding-left:25px;
        padding-right: 25px;
        font-size:14px;
        box-shadow: 0 0 13px rgb(0 0 0/13%)
    }

    .dangky input.form-control {
        height: 55px;

    }
    .dangky input.form-control {
        height: 42px;
    }
    .dangky .form-control::placeholder {
        color:#000;
        font-style: italic;
    }

    .dangky label {
        color: #ff0000;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .dangky .submit,
    .contact-area .submit {
        padding: 7px 14px;
        background: rgb(204,0,0);
        background: linear-gradient(90deg, rgb(199 48 54) 0%, rgb(199 48 54) 100%);
        color: #fff;
        border-radius: 0;
        display: inline-flex;
        font-weight: 400;
        font-size: 12px;
        text-transform: uppercase;
        line-height: 1;
        align-items: center;
        justify-content: center;
        align-content: center;
        border: 0;
    }
        .dangky .submit svg,
        .contact-area .submit svg {
            height: 15px;
            width: 15px;
            fill: #fff;
            transform: scale(1.5);
            margin-left: 5px;
        }
        .dangky .submit span,
        .contact-area .submit span {
            display: flex;
            align-items: center;
        }


        @media (min-width: 992px) {
            .dangky .col-lg-5 {
                flex: 0 0 auto;
                width: 45.66666667%;
            }
        }

        @media(max-width:991px) {
            .dangky {
                background:#fff
            }
        }
        @media(max-width:767px) {
            .dangky .form-dangky {
                padding: 40px 15px
            }
            .dangky {
                background:#fff
            }
        }

        .skitter .box_clone img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    height: inherit !important;
}

@media screen and (max-width: 1024px) {
    .container_skitter, .banner-home, .banner .image {
        --height-skitter: 346px;
        height: var(--height-skitter) !important;
        width: auto !important;
        object-fit: cover;
        min-height: var(--height-skitter);
    }

        .container_skitter .image img, .container_skitter .box_clone img {
            object-fit: cover;
        }

    .skitter .box_clone img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
        height: var(--height-skitter);
    }
}

@media screen and (max-width: 991px) {
    .container_skitter, .banner-home, .banner .image {
        --height-skitter: 277px;
        height: var(--height-skitter) !important;
        width: auto !important;
        object-fit: cover;
        min-height: var(--height-skitter);
    }

        .container_skitter .image img, .container_skitter .box_clone img {
            object-fit: cover;
        }

    .skitter .box_clone img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
        height: var(--height-skitter);
    }
}

@media screen and (max-width: 600px) {
    .container_skitter, .banner-home, .banner .image {
        --height-skitter: 135px;
        height: var(--height-skitter) !important;
        width: auto !important;
        object-fit: cover;
        min-height: var(--height-skitter);
    }

        .container_skitter .image img, .container_skitter .box_clone img {
            object-fit: cover;
        }

    .skitter .box_clone img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
        height: var(--height-skitter);
    }
}

.entry .entry-img .zoom-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-content: center;
    align-items: center;
    justify-content: center;
    background-color: rgb(12 50 133 / 50%)
}

.entry:hover .entry-img .zoom-icon {
    display: flex
}

.entry .entry-img .zoom-icon i {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 22px;
}

.entry-feature {
    position: relative;
}

.blog-tintuc .entry .entry-img {
    padding-top: 56.25%;
    margin-bottom: 23px;
}
.blog-tintuc .entry .entry-content {
   text-align:center;

}
    .blog-tintuc .entry .entry-content .entry-title {
        font-size: 20px;
        font-family: 'Roboto';
        color: #2a3580;
        font-weight: 600;
        line-height: 1.3;
        text-transform:uppercase;
    }

.blog-tintuc .entry.entry-feature .entry-img {
    padding-top: 74%;
}

.blog .entry.entry-feature .entry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    padding: 15px;
    background: rgb(12,50,133);
    background: linear-gradient(0deg, rgba(1,165,79,1) 70%, rgba(255,255,255,0) 100%);
    width: 100%;
}

@media(max-width:991px) {
    .blog-tintuc .entry .entry-img {
        padding-top: 56.25%;
    }

    .blog-tintuc .entry.entry-feature .entry-img {
        padding-top: 45%;
    }
}

@media(max-width:556px) {

    .blog-tintuc .entry.entry-feature .entry-img {
        padding-top: 100%;
    }
}

.blog-tintuc .entry .entry-content .link,
.blog-tintuc .entry .entry-content .link:hover {
    color: #ff1a40
}
.about-us-area {

}
@media(max-width: 767px){
    .about-us-area {
        background-image:unset;
    }
}
.visao {
    background-image: url('../img/bg/bg_gioithieu.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
    .visao .section-title .title::after{
        margin-left:0;
        margin-right:auto
    }

    .visao-content * {
        color: #000;
        font-size: 14px;
    }

.visao-content ul {
    list-style-type: none;
    padding: 0;
}

    .visao-content ul li {
        display: flex;
        align-items: center;
        align-content: center;
        padding-left: 30px;
        position: relative;
    }

        .visao-content ul li:not(:last-child) {
            margin-bottom: 15px;
        }

        .visao-content ul li:before {
            content: "";
            background-image: url(../img/icon/check-mark.png);
            background-repeat: no-repeat;
            background-size: contain;
            width: 24px;
            height: 24px;
            display: inline-block;
            position: absolute;
            top: 0;
            left: 0;
        }

.visao-content .section-title .title span {
    color: #fff;
    font-size: 30px;
    display: block;
}
@media(max-width: 767px) {
    .visao {
        background-image: unset;
        background-color:#fff;
    }
    .visao-content *{
        font-size: 14px;
    }
}
.map iframe {
    width: 100%;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-10 {
    padding-top: 10px;
}

.sidebar-toggle-button {
    position: fixed;
    padding: 2px 10px;
    top: 40%;
    left: 0;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 20px;
    z-index: 1;
}



/*test-cssmk*/
.sidebar-wrapper .sidebar-widget {
    margin-bottom: 24px;
    border: 1px solid #e2e5f1;
    padding: 15px;
    border-radius: 10px;
}

    .sidebar-wrapper .sidebar-widget:last-child {
        margin-bottom: 0px;
    }

.sidebar-widget {
    margin-bottom: 40px;
    background-color: #fff;
}

    .sidebar-widget .sidebar-search {
        margin-top: 20px;
    }

.mt-0 {
    margin-top: 0;
}

.mt-0, .my-0 {
    margin-top: 0 !important;
}

.sidebar-widget .sidebar-search .sidebar-search-form {
    position: relative;
}

    .sidebar-widget .sidebar-search .sidebar-search-form input {
        background: transparent none repeat scroll 0 0;
        border: 1px solid #e6e6e6;
        font-size: 14px;
        height: 43px;
        padding: 2px 55px 2px 18px;
        color: #000;
        border-radius: 13px;
    }

input {
    background: #eceff8;
    border: 2px solid #eceff8;
    height: 45px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 10px;
    font-size: 14px;
    color: #737373;
    width: 100%;
}

.sidebar-widget .sidebar-search .sidebar-search-form button {
    background: transparent none repeat scroll 0 0;
    border-color: #a1a5aa;
    -webkit-border-image: none;
    -o-border-image: none;
    border-image: none;
    border-style: none;
    border-width: medium medium medium 1px;
    padding: 1px 15px 0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    color: #000;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    font-size: 17px;
}

.sidebar-widget h4.sidebar-widget-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
    margin-bottom: 20px;
}

.sidebar-widget .sidebar-widget-title {
    font-size: 16px;
    color: #2a3580;
    text-transform: uppercase;
    position: relative;
   font-family: 'Roboto';
    font-weight: 700 !important;
}

.sidebar-widget .news-catigory {
    margin-top: 18px;
}

    .sidebar-widget .news-catigory ul li {
        margin-bottom: 0;
    }

        .sidebar-widget .news-catigory ul li + li {
            border-top: 1px solid #ececec;
        }

        .sidebar-widget .news-catigory ul li a {
            padding: 7px 5px 7px 0;
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            display: block;
            color: #333333;
            text-transform: capitalize;
        }

        .sidebar-widget .news-catigory ul li:last-child {
            margin-bottom: 0;
        }

        .sidebar-widget .news-catigory ul li + li {
            border-top: 1px solid #ececec;
        }

        .sidebar-widget .news-catigory ul li a.active {
            color: #2a3580;
            font-weight: 600;
        }

        .sidebar-widget .news-catigory ul li a.active {
            color: #ff2f2f;
            font-weight: 600;
        }

        a, .sidebar-cart-active .sidebar-cart-all .cart-content ul li .cart-title h4 a:hover, .single-contact-info-3 > i, .single-contact-info-3 ul li i, .breadcrumb-content ul li, .shop-topbar-wrapper .shop-topbar-left .view-mode a.active, .sidebar-widget .sidebar-widget-list ul li a:hover, .single-product-wrap .product-content-position h3 a:hover, .sidebar-widget .news-catigory ul li a:hover, .breadcrumb-content ul li a:hover, .main-menu > nav > ul > li > ul li:hover > a, .header-action .same-style-2 a:hover, .mobile-header-active .clickalbe-sidebar-wrap .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover > a, .dec-review-topbar a.active {
            color: var(--themes-color);
        }

a, button, img, input, span {
    -webkit-transition: all .1s ease 0s;
    -o-transition: all .1s ease 0s;
    transition: all .1s ease 0s;
}

.hotline {
    text-align: right;
}

.sidebar-widget .news-catigory ul li.hotline {
    border-radius: 6px;
    border: 2px dashed #000;
    color: #004488;
    margin: 8px;
    display: grid;
    align-items: center;
    padding: 8px 10px;
    grid-template-columns: 24px 1fr;
    grid-gap: 10px;
    text-align: left;
}

    .sidebar-widget .news-catigory ul li.hotline a {
        padding: 0;
        background: none;
        flex: unset;
    }

.sidebar-widget .news-catigory ul li a {
    padding: 7px 5px 7px 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
    color: #333333;
    text-transform: capitalize;
}

li.hotline strong {
    color: #000;
}

.dichvu.blog {
    background-image: url('../img/bg/bg-linhvuc.jpg');
    background-repeat:no-repeat;
    background-size:cover;
}
    .dichvu.blog .entries {
       margin: -10px;
    }
        .dichvu.blog .entries .dichvuSwiper {
            padding: 10px;
        }
.dichvu.blog .entry {
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
    transition: all 0.3s;
    border-radius:10px;
}
.dichvu.blog .entry:hover {
    box-shadow:0 0 10px rgb(0 0 0 / 13%);
    background:#fff;
}
    .dichvu.blog .entry .entry-img {
        padding-top: 82%;
        border-radius: 10px;
    } 
    .dichvu.blog .entry:hover .entry-img {
        border-radius: 0;
    }
    .dichvu.blog .entry .entry-img img {
        object-position: right;
    }
.dichvu.blog .entry .entry-content {
    padding: 15px 10px;
    position: relative;
    border-top: 0;
}


        .dichvu.blog .entry .entry-content .entry-title {
            font-size: 14px;
            text-transform: uppercase;
            font-family: 'Roboto';
            height: 45px;
            display: flex;
            align-items: start;
            align-content: start;
            justify-content: center;
            color: #000;
            font-weight: 900;
            letter-spacing: 1px;
            margin-bottom: 0
        }
    .dichvu.blog .entry:hover .entry-content .entry-title {
        color: #0016c9
    }
            .dichvu.blog .entry .entry-content .entry-title span {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
            }
        .dichvu.blog .entry .entry-content .entry-decription {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: unset;
            text-align:left;
        }
            .dichvu.blog .entry .entry-content .entry-decription a:hover {
                color: #dcbc37;
                font-weight: 700;
            }
        .dichvu.blog .entry .entry-content .entry-decription ul{
           padding-left: 20px;
        }
        .dichvu.blog .entry .entry-content .entry-decription ul li:not(:last-child){
           margin-bottom: 10px;
        }
            .dichvu.blog .entry .entry-content .entry-decription ul li::marker {
                color: #2a3580;
            }

            .blog .detailentry {
                margin-bottom: 20px;
                border-radius: 10px;
                overflow: hidden;
                border: 1px solid #e2e5f1;
            }
            @media(max-width: 767px){
                .dichvu.blog .entry .entry-img {
                    padding-top: 61%;
                } 
            }
article.entry.detailentry:hover {
    background: #F2F2F2;
    transition: 0.5s;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: pointer;
    pointer-events: unset;
}

.dichvu .swiper-button-next, .dichvu .swiper-button-prev {
    top: 50%
}

section#trangchu_tintuc {
    background-color: #fff;
}

.dangky select#Specialist-select {
    font-size: 15px;
    text-align: left;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 33px 14px;
    background-position: right 0.75rem center;
}


@media screen and (max-width: 1392px) {
    .dangky select#Specialist-select {
        font-size: 14px;
        background-size: 12px 14px;
    }
}

@media screen and (max-width: 1190px) {
    .dangky select#Specialist-select {
        font-size: 12px;
        background-size: 0px 0px;
    }
}

@media screen and (max-width: 1164px) {
    .dangky select#Specialist-select {
        font-size: 12px;
        background-size: 0px 0px;
    }
}

@media screen and (max-width: 991px) {
    .dangky .form-control {
        text-align: left;
    }

    .dangky select#Specialist-select {
        font-size: 14px;
        background-size: 14px 19px;
    }
}

span.detail-xemthem {
    position: relative;
    width: 100px;
    height: 100px;
    top: 26px;
    left: 31rem;
}

@media screen and (max-width: 1196px) {
    span.detail-xemthem {
        top: 16px;
        left: 26rem;
    }
}

@media screen and (max-width: 1400px) {
    span.detail-xemthem {
        top: 16px;
        left: 24rem;
    }
}

@media screen and (max-width: 1200px) {
    span.detail-xemthem {
        top: 16px;
        left: 20rem;
    }
}

@media screen and (max-width: 500px) {
    span.detail-xemthem {
        top: 6px;
        left: 6rem;
    }
}

@media(max-width: 991px) {
    .sidebar-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 300px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
        background-color: #fff;
        padding: 15px;
        height: 100vh;
        overflow-y: scroll;
        margin-top: 0;
    }

    .mobile-sidebar-active .sidebar-wrapper {
        left: 0%;
    }
}

.container {
    position: relative;
}

.contact-infos {
    border-radius: 10px;
    background-color: #fff;
    padding: 25px;
}

    .contact-infos .title {
        border-bottom: 3px solid #d7d8d9;
        text-transform: uppercase;
        padding-bottom: 8px;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 22px;
        margin-bottom: 8px;
        color: #000;
        font-family: 'Roboto';
    }

    .contact-infos .list-menu li {
        font-size: 15px;
    }

.sidebar .widget-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(42, 53,128,1);
}

    .sidebar .widget-title span {
        display: inline-block;
        padding: 9px 15px 7px;
        background: rgb(0,15,201);
        background: linear-gradient(90deg, rgba(42, 53,128,1) 0%, rgb(42 53 128) 100%);
        position: relative;
    }

        .sidebar .widget-title span::after {
            content: "";
            position: absolute;
            top: 0;
            right: -22px;
            border-top: 38px solid transparent;
            border-left: 22px solid #2a3580;
        }

.sidebar .recent-posts .post-item + .post-item {
    margin-top: 15px;
}

.sidebar .recent-posts .post-item {
    display: flex;
    align-content: center;
    align-items: center;
}

.sidebar .recent-posts img {
    width: 65px;
    height: 56.25px;
    float: left;
    object-fit: cover
}

.sidebar .recent-posts .post-title {
    width: calc(100% - 65px);
    font-size: 15px;
    margin-left: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

    .sidebar .recent-posts .post-title a {
        color: #000;
        transition: 0.3s;
    }

        .sidebar .recent-posts .post-title a:hover {
            color: #2a3580;
        }
.sidebar .recent-posts .post-item.active .post-title a {
    color: #2a3580;
    font-weight: 600;
}
@media (min-width: 1200px) {
    .entries-blog .col-xl-9 {
        flex: 0 0 auto;
        width: 70%;
    }

    .entries-blog .col-xl-3 {
        flex: 0 0 auto;
        width: 30%;
    }
}

.sidebar-widget .shop-catigory ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .sidebar-widget .shop-catigory ul li {
        padding-left: 8px;
        padding-right: 8px;
    }
        .sidebar-widget .shop-catigory ul li a {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        .sidebar-widget .shop-catigory ul li:not(:first-child) {
            margin-top: 7.5px;
            border-top: 1px solid #eee;
            padding-top: 7.5px;
        }

.entry-single .entry-content img {
    max-width: 100%;
    height: auto !important;
}

.sidebar-toggle-button {
    position: fixed;
    padding: 6px 10px;
    top: 40%;
    left: 0;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 20px;
    z-index: 1;
    display:none !important;
}
.mobile-sidebar-active .sidebar-wrapper {
    left: 0%;
}

.shop-catigory a.active {
    color: #2a3580;
    font-weight: 600;
}

.fb_iframe_widget iframe {
    position: absolute;
    width: 100% !important;
}

.fb_iframe_widget_fluid span {
    width: 100% !important;
}

.tienich {
    background-image: url('../img/bg/bg-tienich.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.tienich {
    background-image: url('../img/bg/bg-tienich.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.single-tienich-wrap {
    border: 2px dashed #9b8b80;
    padding-top: 56.25%;
    position: relative;
}

    .single-tienich-wrap .tienich-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

        .single-tienich-wrap .tienich-content .title {
            font-size: 60px;
            color: #2a3580;
            font-family: 'Roboto';
            font-weight: 700;
            line-height: 1.1;
        }

        .single-tienich-wrap .tienich-content .content {
            font-size: 18px;
        }

    .single-tienich-wrap.tienich-contact {
        background-color: #2a3580;
        border: 2px dashed #2a3580;
    }

        .single-tienich-wrap.tienich-contact .tienich-content .title {
            color: #fff000;
        }

            .single-tienich-wrap.tienich-contact .tienich-content .title span {
                font-size: 30px;
            }

        .single-tienich-wrap.tienich-contact .tienich-content .content {
            color: #fff;
            font-weight: 700;
        }

        .single-tienich-wrap.tienich-contact .tienich-content .link {
            padding: 7px 20px;
            background: #fff;
            color: #8f4444;
            border-radius: 10rem;
            display: inline-block;
            font-weight: 500;
            text-transform: uppercase;
        }
        @media(max-width:991px){
            .single-tienich-wrap-item:not(:last-child){
                margin-bottom: 20px;
            }
        }
.home section.introduction {
    background-image: url('../img/bg/bg-introduction.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 22.5px;
    font-family: 'Roboto';
    letter-spacing: 1px;
    text-align: justify;
    padding: 30px 0;
    line-height: 1.5;
}
    .introduction .form-dangky {
        background-image: url('../img/icon/pngegg.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: right;
    }
    .introduction .lienhe-btn {
        display: inline-flex;
        background-color: #fff;
        padding: 5px;
        justify-content: center;
        align-items: center;
        width: 254px;
        height: 60px;
    }
        .introduction .lienhe-btn .link {
            background-color: #fff;
            border: 1px dashed #2a3580;
            color: #995859;
            width: 100%;
            height: 100%;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px
        }
        .introduction .lienhe-btn:hover .link{
            background-color: #f4c900;
            border: 1px dashed #000;
            color: #000;
        }
        .introduction .lienhe-btn:hover {
            background-color: #f4c900;
        }
        @media(max-width: 991px){
            .introduction .form-dangky {
                background-size: 15%;
                background-position: bottom right;
            }
        }
        @media(max-width: 767px){
            .introduction p{
                font-size:18px;
            }
            .introduction .form-dangky {
                background-size: 25%;
                background-position: bottom right;
            }
        }
.duantieubieu {
    background-image: url('../img/bg/bg-duantieubieu.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
    .duantieubieu-item {
        margin-bottom:24px;
    }
        .duantieubieu-item .entry {
            position: relative;
            transition: all 0.5s;
            overflow:hidden;
        }
            .duantieubieu-item .entry .entry-img {
                position: relative;
                padding-top: 61%;
                border-radius: 10px;
            }
                .duantieubieu-item .entry .entry-img:after {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    background-color: rgb(0 0 0/50%);
                    width: 100%;
                    height: 100%;
                }
                .duantieubieu-item .entry .entry-img img {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    top: 0;
                    left: 0;
                }
        .duantieubieu-item .entry .entry-content {
            text-align: left;
            position: absolute;
            width: 100%;
            bottom: 5px;
            left: 0;
            padding: 0 15px;
            height: 42px;
            transition: all 0.5s;
        }
    .duantieubieu-item .entry .entry-content .entry-title {
        font-size: 14px;
        font-family: 'Roboto';
        color: #fff;
        font-weight: 700;
        line-height: 1.5;
        text-transform:uppercase;
        letter-spacing:1px;
        border-bottom:1px solid #fff;
        padding-bottom:6px;
        position:relative;

    }
        .duantieubieu-item .entry .entry-content .entry-title span {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
        }
        .duantieubieu-item .entry .entry-content .entry-title:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 125px;
            height: 6px;
            background: rgb(204,0,0);
            background: linear-gradient(90deg, rgb(199 48 54) 0%, rgb(199 48 54) 100%);
        }
    .duantieubieu-item .entry:hover .entry-img:after {
        opacity:0;
    }
    .duantieubieu-item .entry:hover .entry-content {
        height: 0;
        opacity: 0;
        overflow:hidden;
    }
@media(max-width:991px) {

    .duantieubieu-item:not(:last-child) {
        margin-bottom: 20px;
    }
}
.hinhanh .gallery-img{
    position:relative;
    width: 100%;
    padding-top:100%;
}
.hinhanh{
    padding: 24px 0
}

.hinhanh .gallery-img img{
   position: absolute;
   top:0;
   left:0;
   width:100%;
   height:100%;
   object-fit:cover;
}
    .hinhanh .gallery-img .xemthem {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:rgb(0 0 0 / 58%);
        color:#fff;
        text-transform:uppercase;
        display:flex;
        justify-content:center;
        align-items:center;
        align-content:center;
        text-align:center;
    }
    @media(max-width:767px){
        .hinhanh .row {
            --bs-gutter-x: 10px;
        }
    }
.doitac {
    background-image: url('../img/bg/bg_doitac.jpg');
    background-repeat:no-repeat;
    background-size:cover;
}
.single-brand{
    position:relative;
    width:100%;
    padding-top:56.25%;
    background:#fff;
}
.single-brand img{
   position:absolute;
   top:0;
   left:0;
   width:100%;
   height: 100%;
   object-fit:contain;
   padding:8px;
}
.gioithieu {
    background-image: url('../img/bg/bg-gioithieu.jpg');
    background-size:cover;
    background-repeat:no-repeat;
    background-position:bottom;
}
.taisao-content {
    background-color: #fff6f0;
    border: 8px solid #ebb792;
    padding: 24px 53px;
}
.taisao-entry{
    text-align:center;
    padding: 40px
}
.taisao-entry-img {
    margin-bottom: 20px;
}
.taisao-entry-img img{
    height:86px
}
.lienhe .single-tienich-wrap .tienich-content .title{
    font-size:35px;
}
.lienhe .single-tienich-wrap {
    padding-top: 45.25%;
}
    .lienhe .single-tienich-wrap .tienich-content .content{
        font-size: 16px;
    }
    .lienhe .email-form {
        background: #f6f6f6;
        padding: 47px 50px;
    }
.lienhe .form-control {
    border:0;
    padding-left: 20px;
    padding-right: 20px;
}
.lienhe .submit {
    background: #f4c900;
    color: #000;
    font-weight: 700;
    border: 0;
    padding: 10px 30px;
    border-radius: 10rem;
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: auto;
}
.gallery-img {
    overflow: hidden;
}
.gallery-row .gallery-img {
    position: relative;
    display: block;
    padding-top: 100%;
    width: 100%;
}

.gallery-row > .col-12 > .gallery-img {
    padding-top: 50%;
    margin-bottom: 10px;
}

.gallery-img a img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.gallery-img a:hover img {
    transform: rotate(-1deg) scale(1.1);
    transition: all 1s;
}

.gallery-img a text {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}

@media(max-width:991px) {
    .gallery-row .col-12 .gallery-img a {
        padding-top: 34%;
    }
}

@media(max-width:767px) {
    .gallery-img {
        margin-bottom: 10px;
    }
}
.terminal-item {
    text-align: center;
}

.terminal-img {
    margin-bottom: 20px;
}

    .terminal-img .img {
        width: 77px;
        height: 77px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        border-radius: 10rem;
        border: 2px solid #fff;
    }

        .terminal-img .img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 100%;
        }
.terminal-content {
   text-align:center;
}
.terminal-content .title {
    color: #fee900;
    font-size: 19px;
}
.terminal-content .content *{
    color:#fff;
    font-size: 14px;
}
.danhgia {
    background-image: url('../img/bg/bg-danhgia.jpg');
    background-repeat: no-repeat;
    padding: 30px 30px 10px;
    background-size: cover;
}
.danhgia-title {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    color: #fff;
    font-family: 'Roboto';
    text-transform:uppercase;
    text-align:center;
}
@media(max-width: 767px){
    .about-content-wrap {
        background-color: #2a3580;
        padding-top:59px;
    }
    .gallery-row {
        --bs-gutter-x: 10px;
    }
    .lienhe .email-form {
        background: #f6f6f6;
        padding: 47px 40px;
        margin-top: 20px;
    }
    .about-us-content .about-content .title{
        font-size: 16px;
    }
}
.entry-single ul li:not(:last-child){
    margin-bottom:1rem;
}
.entry-single .entry-content {
    margin-bottom: 1rem;
}

.hoatdong .row {
    --bs-gutter-x: 10px;
}
.hoatdong .swiper-pagination{
    position: relative;
    margin-top:7px;
}
@media (max-width: 767px) {
    .page-gioithieu .section-title .title {
        font-size: 19px;
    }
    .page-gioithieu .about-us-content .about-content .title {
        font-size: 19px;
    }
}
@media(min-width: 991px){
    .blog-tintuc.blog .entry .entry-decription {
        height: 81px
    }
}
.blog-tintuc.blog .entry .entry-content .link-xemthem{
    color: #007abb;
    fill: #007abb
}
.relatedprojectSwiper .swiper-button-next, .relatedprojectSwiper .swiper-button-prev {
    background-color: rgb(255 255 255  / 50%);
}
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background-color: rgb(0 0 0 / 50%);
    padding: 5px;
    height: 35px;
    width: 35px;
    border-radius: 0;
    box-shadow: none;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        display: none
    }

    .swiper-button-next svg, .swiper-button-prev svg {
        fill: #ffffff;
        height: 35px;
        width: 35px;
    }

    .swiper-button-prev svg {
        transform: rotate(-180deg)
    }
.menu-project {
    fill: #8d8989;
    border:1px solid rgb(0 0 0 / 20%);
    border-radius:5px;
    margin-right: 15px;
    display:flex;
    align-items:center;
    align-content:center;
    justify-content:center;
    width: 45px;
    height: 35px;
}
    .menu-project:hover {
        border: 1px solid #c43238;
    }
.project-menu__side-close {
    position: absolute;
    right: 30px;
    top: 15px;
    z-index: 1;
    width: 33px;
    height: 33px;
    color: #818181;
    text-align: center;
    line-height: 31px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.menu-project * {
    fill: #8d8989;
    color: #8d8989;
    width: 23px;
    height: 23px;
}
.project-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;;
}
.menu-project-toggle{
    cursor:pointer;
}
.menu-project-active .project-menu {
    right:0
}
.project-menu__side-logo{
    margin-bottom:30px;
}
.project-menu__side-title {
    font-family: 'Roboto';
    letter-spacing: 1px;
    background: linear-gradient(90deg, rgba(42, 53,128,1) 0%, rgb(42 53 128) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}
.project-menu__side-wrap {
    height: calc(100% - 30px);
    overflow-y: scroll;
    padding-right:20px;
}
    .project-menu__side-wrap::-webkit-scrollbar-track {
        background-color: #F5F5F5;
    }

    .project-menu__side-wrap::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }

    .project-menu__side-wrap::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #c1c1c1;
    }
.project-menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    cursor:unset;
}
.menu-project-active .project-menu-bg {
    opacity: 1;
    visibility: visible;
}
.product-details-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}
    .product-details-title .product-details-name {
        color: #17498b;
        font-size: 26px;
        display: inline-block;
        vertical-align: middle;
    }
    .product-details-title .line {
        display: block;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: 2px;
        opacity: 1;
        background-color: #d4d5d5;
        margin: 0 15px;
    }
    .product-details-title .status {
        font-size: 18px;
        color: #229d4e;
        font-weight: 600;
    }
.project__detail-col2-content-wrap {
    background: #fff;
}

.project__detail-col2-item {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid #d3d3d3;
}

@media (max-width: 767px) {
    .project__detail-col2-item {
        display: block;
    }
}

.project__detail-col2-item:first-child {
    padding-top: 20px;
}

.project__detail-col2-item:last-child {
    border-bottom: none;
    padding-bottom: 35px;
}

.project__detail-col2-item *:nth-child(1) {
    width: 120px;
    font-weight: 600;
    color: #464646;
}

.project__detail-col2-item *:nth-child(2) {
    width: calc(100% - 120px);
    color: #464646;
}

@media (max-width: 767px) {
    .project__detail-col2-item *:nth-child(2),
    .project__detail-col2-item *:nth-child(1) {
        width: 100%;
    }

}
.product-description-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.product-description-title .product-description-name {
    color: #17498b;
    font-size: 20px;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    text-transform:uppercase;
}

.product-description-title .line {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2px;
    opacity: 1;
    background-color: #d4d5d5;
    margin: 0 15px;
}
.product-details-img {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
    display: block;
}
    .product-details-img img,
    .product-details-img iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
.related .section-title {
   padding-bottom: 15px;
}
.related .section-title .title{
   font-size: 20px;
}
.related .section-title .title::after{
    display:none;
}
.description-review-wrapper .description-item{
    margin-bottom: 30px;
}
.description-wrap .video{
    box-shadow:unset;
}
.language .dropdown-menu {
    font-size: 14px;
}
@media(max-width: 767px){
    .language .dropdown-menu img{
        width: 25px;
    }
}
@media(min-width: 1366px){
    .entry-single {
        min-height: 250px;
    }
}
.detail-xemthem{
    font-size: 14px;
}
.detail-xemthem i{
    margin-left:5px;
}