@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: 'avo';
    color: #222;
    font-size: 16px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: #873434;
    text-decoration: none;
}

    a:hover {
        color: #873434;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'avo';
    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: #873434;
    --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);
    }
}
/*--------------------------------------------------------------
# Hotline
--------------------------------------------------------------*/
.share-wrap, .fab, .opacity-share {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-wrap {
    position: fixed;
    bottom: 140px;
    right: 10px;
    z-index: 9999;
}

@media(max-width: 767px) {
    .share-wrap {
        bottom: 120px
    }
}

.fab {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    -webkit-animation: 0.3s down forwards;
    animation: 0.3s down forwards;
    opacity: 0;
    will-change: animation;
    --top: 0;
    font-size: 32px;
    color: #fff
}

.opacity-share {
    z-index: 1;
    box-shadow: none;
    top: 0;
    -webkit-animation: none;
    animation: none;
    opacity: 1;
    color: #fff;
    background-color: #056cf2;
    will-change: unset;
}

.fab.phone {
    background: rgb(0 189 76) center/28px no-repeat;
    top: 4px;
}

.fab.zalo {
    background: rgb(2 143 227) center/28px no-repeat;
    top: -66px;
}

.fab.active {
    -webkit-animation: 0.48s up forwards;
    animation: 0.48s up forwards;
}

    .fab.active:nth-child(1) {
        -webkit-animation-delay: 0.39s;
        animation-delay: 0.39s;
    }

    .fab.active:nth-child(2) {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

.fab.no {
    -webkit-animation: none;
    animation: none;
}

@-webkit-keyframes up {
    50% {
        transform: translateY(-170%);
    }

    100% {
        opacity: 1;
        transform: translateY(-130%);
    }
}

@keyframes up {
    50% {
        transform: translateY(-170%);
    }

    100% {
        opacity: 1;
        transform: translateY(-130%);
    }
}

@-webkit-keyframes down {
    0% {
        opacity: 1;
        transform: translateY(-130%);
    }

    100% {
        opacity: 0;
        transform: translateY(0);
        top: 0;
    }
}

@keyframes down {
    0% {
        opacity: 1;
        transform: translateY(-130%);
    }

    100% {
        opacity: 0;
        transform: translateY(0);
        top: 0;
    }
}

/*--------------------------------------------------------------
# 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;
        height: 120px;
        display: flex;
        align-items: center;
    }

    #header .header-bottom {
        background-image: url('../img/bg/bg-header.jpg');
        background-repeat:no-repeat;
        background-size:cover;
    }

    #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: 100px;
        }

.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 {
    background-color: #e6fff2;
    padding: 8.5px 20px;
    border-radius: 10rem;
    border: 1px solid #873434;
    font-size: 16px
}

    .header-contact:hover {
        background-color: #873434;
        border: 1px solid #873434;
        color: #fff
    }

    .header-contact.datlich {
        background-image: url('../img/bg/bg-datlich.jpg');
        border: 0;
        padding: 5px;
    }
        .header-contact.datlich a {
            padding: 3.5px 40px;
            display: block;
            border: 2px solid #fff;
            border-radius: 10rem;
        }

        .header-contact.datlich:hover {
            background-image: url('../img/bg/bg-datlich.jpg');
            border: 0;
            color: #fff
        }

        .header-contact.datlich * {
            color: #fff;
            text-transform: uppercase;
        }

        .header-contact.datlich:hover * {
            color: #fff
        }

    .header-contact a {
        color: #873434
    }

    .header-contact:hover * {
        color: #fff
    }


    .header-contact i {
        color: #873434
    }

.header-search-wrap {
}

    .header-search-wrap .form-control {
        border: 0;
        background-color: transparent;
        padding-left: 20px;
    }

    .header-search-wrap .button-search {
        height: 46px;
        width: 46px;
        background-color: #873434;
        color: #fff;
        border-radius: 100% !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: #873434;
    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: #873434;
                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;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        border-color: transparent;
        transition: 0.3s;
        padding: 15px 25px;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            background: #f4c900;
            color: #fff;
            box-shadow: 0 0 10px rgb(0 0 0 / 19%);
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 10px 20px;
        margin-left: 30px;
        border-radius: 5px;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        background-color: #873434;
        justify-content: center;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: #4bc700;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 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: 4px;
        max-width: 500px;
        min-width: 500px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .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:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        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%;
    }
}

/**
* 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: 15px;
    color: #000;
    padding: 0
}

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #f4c900;
        background-color:transparent;
        box-shadow:unset
    }

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #fff;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: none;
}

    .navbar-mobile .dropdown ul li {
        min-width: unset;
        padding: 10px 0 10px
    }

        .navbar-mobile .dropdown ul li:last-child {
            padding: 10px 0 0px
        }

    .navbar-mobile .dropdown ul a {
        padding: 0 0;
    }

        .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: #47b2e4;
        }

.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;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    padding-bottom: 30px;
}

    .section-title .title {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 0;
        padding-bottom: 0;
        position: relative;
        color: #873434;
        font-family: 'Source Serif Pro', serif;
    }

        .section-title .title span {
            color: #873434;
        }

    .section-title .subtitle {
        position: relative;
        font-weight: bold;
        font-size: 26px;
        color: #873434;
        font-family: 'avo';
    }

    .section-title .desc {
        margin-bottom: 0;
    }

    .section-title .headline {
        color: #006277;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 700;
    }

@media(max-width: 767px) {
    .section-title .title {
        font-size: 26px;
    }
}

/*--------------------------------------------------------------
# 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;
    margin-bottom: 35px;
}
.about-us-content .about-img{
    width:80px;
    height:80px;
    border:1px solid #fff;
    position:relative;
}
    .about-us-content:hover .about-img {
        background-color: #f4c900;
        border-color: #f4c900
    }
    .about-us-content .about-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 10px;
    }
    .about-us-content .about-content {
        padding-left: 30px;
        width: calc(100% - 80px);
    }
    .about-us-content .about-content .title {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 0;
        padding-bottom: 0;
        position: relative;
        color: #fff;
        font-family: 'Source Serif Pro', serif;
    }
    .about-us-content .about-content .content  *{
        color:#fff
    }
    .about-us-content:hover .about-content .title {
        color: #f4c900
    }

        @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: #873434;
            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: #873434;
        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: none
}
@media (max-width: 556px) {
    .top-background {
        display: none
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #37517e;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol a {
        color: #222;
    }

    .breadcrumbs ol .active a {
        color: #873434;
    }

    .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: #873434;
    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: 60px 0 0px;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff
}

#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;
    }

        #footer .footer-contact p i {
            color: #fff;
        }

    #footer .footer-contact a {
        color: #222
    }
.footer-contact .logo {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 8px;
}
#footer .footer-title {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    font-family: 'avo';
}

    #footer .footer-title:after {
        content: "";
        width: 100px;
        height: 3px;
        background: #fff;
        display: block;
        margin-top: 12px;
    }

#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: 10px 0;
            display: flex;
            align-items: center;
        }

            #footer .footer-links ul li:first-child {
                padding-top: 0;
            }

        #footer .footer-links ul a {
            color: #fff;
            transition: 0.3s;
            display: inline-block;
            line-height: 1;
        }

            #footer .footer-links ul a:hover {
                text-decoration: underline;
                color: #fff;
            }

#footer .social-links a {
    font-size: 24px;
    display: inline-block;
    color: #fff;
    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: #fff;
        text-decoration: none;
    }

#footer .footer-bottom {
    padding: 40px 0 10px;
    color: #fff;
}

#footer .copyright {
    text-align: center;
    padding: 10px 0;
    color: #000;
    font-size: 13px;
    background-color: #f4c900
}

    #footer .credits a,
    #footer .copyright a {
        transition: 0.3s;
        color: #000;
    }

@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: 22px;
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
    padding: 40px 0 40px 0;
}

    .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: #873434;
        font-family: 'avo';
    }

    .blog .entry.entry-single .entry-title {
        font-size: 26px;
    }

    .blog .entry.entry-single .entry-content {
        font-size: 16px;
    }

    .blog .entry .entry-title a {
        color: #873434;
        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: #873434;
        font-family: 'avo';
        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: #873434;
        }

            .blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
                color: #fff;
            }

.header-search {
    position: relative;
}

    .header-search .search-toggle:hover {
        cursor: pointer;
    }

    .header-search .search-toggle .s-close,
    .header-search .search-toggle.open .s-open {
        display: none;
    }

    .header-search .search-toggle.open .s-close {
        display: block;
    }

    .header-search .search-wrap {
        position: absolute;
        top: 50%;
        right: 0%;
        width: 300px;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        z-index: 99;
        transition: all 0.3s ease 0s;
    }

        .header-search .search-wrap.open {
            opacity: 1;
            right: 150%;
            visibility: visible;
        }

        .header-search .search-wrap form {
            display: flex;
            border: 1px solid #E2DCDC;
        }

        .header-search .search-wrap .form-control {
            border-radius: 0;
            border: 0;
        }

        .header-search .search-wrap .button-search {
            border: 0;
            border-left: 1px solid #E2DCDC;
            padding: 0 15px;
        }

.btn-contact {
    padding: 9px 20px;
    background: #f4c900;
    color: #000;
    border-radius: 10rem;
    display: inline-block;
    font-weight: 500;
}

    .btn-contact:hover {
        background: #cc1f3c;
        color: #fff;
    }



.video {
    position: relative;
}

    .video img {
        width: 100%;
    }

    .video .icon-play {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }

        .video .icon-play i {
            width: 50px;
            height: 50px;
            background: #873434;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10rem;
            border: 3px solid #fff
        }

.dangky {
    background-image: url('../img/bg/bg_formlienhe.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0
}

    .dangky .form-dangky {
       
    }

    .dangky .form-control {
        background: #fff;
        border-radius: 10rem;
        text-align: left;
        border: 1px solid #873434;
        padding-left:25px;
        padding-right: 25px;
        font-size:16px;
    }

    .dangky input.form-control {
        height: 55px;
    }
    .dangky input.form-control {
        height: 55px;
    }
    .dangky input.form-control::placeholder {
        color:#000;
        font-style: italic;
    }

    .dangky label {
        color: #ff0000;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .dangky .submit,
    .contact-area .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;
    }

@media (min-width: 992px) {
    .dangky .col-lg-5 {
        flex: 0 0 auto;
        width: 45.66666667%;
    }
}

@media(max-width:767px) {
    .dangky .form-dangky {
        padding: 40px 15px
    }
}

.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: 'Source Serif Pro', serif;
        color: #873434;
        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 {
    background-image: url('../img/bg/layer 2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
}
@media(max-width: 767px){
    .about-us-area {
        background-color: #873434;
        background-image:unset;
    }
}
.visao {
    background-image: url('../img/bg/layer 3.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
}

.visao-content * {
    color: #000;
    font-size: 18px;
}

.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: #873434;
    text-transform: uppercase;
    position: relative;
    font-family: 'avo';
    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: #873434;
            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 .entry {
    text-align: center;
    border: 1px solid #e9e9e9;
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s
}

    .dichvu.blog .entry .entry-content {
        padding: 15px;
        position: relative;
        border: 1px dashed #873434;
        border-top: 0;
    }

        .dichvu.blog .entry .entry-content .entry-title{
            font-size: 20px;
            background-color: #fff;
            box-shadow: 0 0 18px rgb(0 0 0 / 20%);
            border-radius: 8px;
            padding: 0 20px;
            width: 80%;
            margin: -55px auto 20px;
            font-family: 'Source Serif Pro', serif;
            height: 80px;
            display: flex;
            align-items: center;
            align-content: center;
            justify-content: center;
            color: #873434;
            font-weight: 600;
            line-height: 1.3;
        }
            .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: #873434;
            }

            .blog .detailentry {
                margin-bottom: 20px;
                border-radius: 10px;
                overflow: hidden;
                border: 1px solid #e2e5f1;
            }

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: 30%
}

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: 16px;
    font-weight: 500;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid #377a14;
}

    .sidebar .widget-title span {
        display: inline-block;
        padding: 5px 15px;
        background-color: #377a14;
        position: relative;
    }

        .sidebar .widget-title span::after {
            content: "";
            position: absolute;
            top: 0;
            right: -22px;
            border-top: 33px solid transparent;
            border-left: 22px solid #274118;
        }

.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: #873434;
        }

@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: 15px;
        padding-right: 15px;
    }

        .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
}

.mobile-sidebar-active .sidebar-wrapper {
    left: 0%;
}

.shop-catigory a.active {
    color: #873434;
}

.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: #873434;
            font-family: 'Source Serif Pro', serif;
            font-weight: 700;
            line-height: 1.1;
        }

        .single-tienich-wrap .tienich-content .content {
            font-size: 18px;
        }

    .single-tienich-wrap.tienich-contact {
        background-color: #873434;
        border: 2px dashed #873434;
    }

        .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;
            }
        }
.lienhe-10nam {
    background-image: url('../img/bg/bg-lienhe10nam.jpg');
    background-repeat:no-repeat;
    background-size:cover;
}
    .lienhe-10nam .lienhe-btn {
        display: inline-flex;
        background-color: #fff;
        padding: 5px;
        justify-content: center;
        align-items: center;
        width: 254px;
        height: 60px;
    }
        .lienhe-10nam .lienhe-btn .link {
            background-color: #fff;
            border: 1px dashed #873434;
            color: #995859;
            width: 100%;
            height: 100%;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px
        }
        .lienhe-10nam .lienhe-btn:hover .link{
            background-color: #f4c900;
            border: 1px dashed #000;
            color: #000;
        }
        .lienhe-10nam .lienhe-btn:hover {
            background-color: #f4c900;
        }
        .dichvuhotro {
            background-image: url('../img/bg/bg-dichvuhotro.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }
    .dichvuhotro.blog .entry .entry-img {
        padding-top: 0;
        width: 115px;
        height: 115px;
        border: 1px solid #873434;
        border-radius: 100%;
        margin-left:auto;
        margin-right:auto;
        display:flex;
        justify-content:center;
        align-items:center;
        margin-bottom:18px
    }
    .dichvuhotro.blog .entry .entry-img img{
        position: relative;
        width: 50px;
        height:50px;
        object-fit:contain;
    }
    .dichvuhotro.blog .entry .entry-content {
        text-align:center;
    }
    .dichvuhotro.blog .entry .entry-content .entry-title {
        font-size: 20px;
        font-family: 'Source Serif Pro', serif;
        color: #873434;
        font-weight: 600;
        line-height: 1.3;
    }
@media(max-width:991px) {

    .dichvuhotro-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: #f2f2f2
}
.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: 'Source Serif Pro', serif;
    text-transform:uppercase;
    text-align:center;
}
@media(max-width: 767px){
    .about-content-wrap {
        background-color: #873434;
        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: 24px;
    }
}
.entry-single ul li:not(:last-child){
    margin-bottom:1rem;
}
.entry-single .entry-content {
    margin-bottom: 1rem;
}
.header-search {
    position: relative;
}

    .header-search .search-toggle,
    .header-search .search-toggle:hover {
        background-color: transparent;
        color: #0e8080;
        height: 45px;
        width: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0;
        box-shadow: unset;
        font-size: 22px;
        color: #fff;
    }

        .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: 1px;
        margin-right: 10px;
        border: 1px solid #ccc;
    }

        .header-search .search-wrap .form-control {
            border: 0;
            box-shadow: 0;
            height: 45px;
            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;
        }
.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
}
.blog .entry.entry-single .entry-content table{
    width:100% !important;
    text-align:center;
}
    .blog .entry.entry-single .entry-content table p{
        margin:0;
        padding:0 4px;
    }
    .blog .entry.entry-single .entry-content table, .blog .entry.entry-single .entry-content th, .blog .entry.entry-single .entry-content td {
        border: 1px solid black;
        border-collapse: collapse;
    }

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}
.header-mobile-device .zalo,
.header-top .zalo {
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}

#topbar .contact-info .contact-info-item:not(:last-child) i {
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}
.header-mobile-device .zalo{
    margin-right:20px;
}
.header-mobile-device .zalo svg{
    width:35px !important;
}