@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.text-main {
    color: #3490de !important;
}

body {
    background-color: #fff;
    font-size: 14px;
}

a {
    text-decoration: none !important;
}

section {
    padding: 30px 0;
}

section.section-grey {
    background: #F8F8FA;
}

section.section-main {
    background-color: #3490de;
}

.font-main {
    font-family: 'Open Sans', sans-serif;
}

.btn-rounded {
    border-radius: 30px;
}

.bg-main {
    background-color: #3490de;
}

.no-radius {
    border-radius: 0 !important;
}

.pointer-none {
    pointer-events: none !important;
}

.lmore {
    display: none;
}

.seperator {
    color: #ccc;
    width: 100%;
    margin: 10px auto;
    overflow: hidden;
    text-align: center;
    line-height: 1.2em;
}

.seperator:before {
    border-bottom: 1px solid #eee;
    content: "";
    display: inline-block;
    height: .65em;
    margin: 0 0 0 -100%;
    vertical-align: top;
    width: 50%;
}

.seperator:after {
    border-bottom: 1px solid #eee;
    content: "";
    display: inline-block;
    height: .65em;
    margin: 0 -100% 0 0;
    vertical-align: top;
    width: 50%;
}

.list-square {
    list-style: square;
    padding-left: 1.5rem;
}

header {
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

@media only screen and (max-width: 768px) {
    header {
        position: sticky;
        position: -webkit-sticky;
        top: 0;
    }
}

header .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

@media only screen and (max-width: 768px) {
    header .header-wrapper {
        align-items: center;
        flex-direction: column;
        padding: .5rem 0 0 0;
    }
}

@media only screen and (max-width: 768px) {
    header .header-wrapper .header-brand {
        margin-right: 0;
    }
}

header .header-wrapper .header-brand img {
    width: auto;
    height: 5rem;
}

header .header-wrapper .header-banner {
    width: 100%;
}

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

header .header-wrapper .header-toggle {
    display: none;
}

@media only screen and (max-width: 768px) {
    header .header-wrapper .header-toggle {
        display: block;
        color: #fff;
        background-color: #3490de;
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 50%;
        margin: .75rem .75rem .75rem 0;
        cursor: pointer;
    }

    header .header-wrapper .header-toggle:hover, header .header-wrapper .header-toggle:focus {
        outline: none !important;
    }
}

header .header-dismiss {
    display: none;
}

@media only screen and (max-width: 768px) {
    header .header-dismiss {
        display: block;
        color: #fff;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        font-size: 30px;
        margin-left: auto;
        cursor: pointer;
    }

    header .header-dismiss:hover, header .header-dismiss:focus {
        outline: none !important;
    }
}

header .header-nav {
    background-color: #3490de;
}

@media only screen and (max-width: 768px) {
    header .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: #3490de;
        width: 280px;
        height: 100%;
        align-items: flex-end;
        flex-direction: column;
        z-index: 999;
        box-shadow: 0 2px 7px rgba(0, 0, 0, 0.4);
        -webkit-transition: 0.3s cubic-bezier(0.86, -0.01, 0.03, 1.29);
        transition: 0.3s cubic-bezier(0.86, -0.01, 0.03, 1.29);
    }

    header .header-nav.active {
        left: 0;
    }
}

header .header-nav .nav-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    header .header-nav .nav-wrapper {
        flex-direction: column;
    }
}

header .header-nav .nav-wrapper .main-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 768px) {
    header .header-nav .nav-wrapper .main-menu {
        width: 100%;
        flex-direction: column;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
    header .header-nav .nav-wrapper .main-menu li:hover .sub-menu, header .header-nav .nav-wrapper .main-menu li:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    header .header-nav .nav-wrapper .main-menu li:not(:last-child) {
        border-right: 1px solid #2789dc;
    }
}

@media only screen and (max-width: 768px) {
    header .header-nav .nav-wrapper .main-menu li {
        position: relative;
    }
}

header .header-nav .nav-wrapper .main-menu li .btn-dropdown {
    display: none;
}

@media only screen and (max-width: 768px) {
    header .header-nav .nav-wrapper .main-menu li .btn-dropdown {
        display: block;
        position: absolute;
        top: 5px;
        right: .5rem;
        width: 30px;
        height: 30px;
        border-radius: .25rem;
        border: 1px solid #3490de;
        background: #fff;
        color: #3490de;
        cursor: pointer;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
    }

    header .header-nav .nav-wrapper .main-menu li .btn-dropdown.active {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    header .header-nav .nav-wrapper .main-menu li .btn-dropdown:hover, header .header-nav .nav-wrapper .main-menu li .btn-dropdown:focus {
        outline: none !important;
    }
}

header .header-nav .nav-wrapper .main-menu li a {
    display: block;
    color: #fff;
    font-weight: bold;
    padding: .75rem .75rem;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

header .header-nav .nav-wrapper .main-menu li a:hover {
    background-color: #1c69aa;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    header .header-nav .nav-wrapper .main-menu li a {
        color: #fff;
        border-bottom: 1px solid #1c69aa;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
    header .header-nav .nav-wrapper .main-menu li .sub-menu {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        transform-origin: top;
        position: absolute;
        list-style: none;
        padding: 0;
        top: 100%;
        left: auto;
        min-width: 260px;
        background-color: #fff;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        z-index: 99;
        -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    }

    header .header-nav .nav-wrapper .main-menu li .sub-menu li {
        position: relative;
    }

    header .header-nav .nav-wrapper .main-menu li .sub-menu li:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

    header .header-nav .nav-wrapper .main-menu li .sub-menu li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    header .header-nav .nav-wrapper .main-menu li .sub-menu li a {
        color: #000;
    }

    header .header-nav .nav-wrapper .main-menu li .sub-menu li a:hover {
        color: #fff;
        background-color: #3490de;
    }

    header .header-nav .nav-wrapper .main-menu li .sub-menu li > .sub-menu {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        position: absolute;
        top: 0;
        left: 100%;
        z-index: 99;
    }
}

@media only screen and (max-width: 768px) {
    header .header-nav .nav-wrapper .main-menu li .sub-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
        top: 0;
        width: 100%;
        background-color: #fff;
        display: none;
    }

    header .header-nav .nav-wrapper .main-menu li .sub-menu li a {
        color: #3490de;
    }

    header .header-nav .nav-wrapper .main-menu li .sub-menu li > .sub-menu {
        position: relative;
        top: 0;
        width: 100%;
        padding-left: .75rem;
        display: none;
    }

    header .header-nav .nav-wrapper .main-menu li .sub-menu li > .sub-menu li a {
        color: #3490de;
    }
}

header .header-nav .nav-wrapper .main-menu li .mega-menu .mega-title {
    display: block;
    background-color: #3490de;
    color: #fff;
    padding: .25rem .5rem;
    font-weight: bold;
}

header .header-nav .nav-wrapper .main-menu li .mega-menu .mega-title i {
    font-size: 10px;
}

header .header-nav .nav-wrapper .main-menu li .mega-menu .sub-mega-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .header-nav .nav-wrapper .main-menu li .mega-menu .sub-mega-menu li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

header .header-nav .nav-wrapper .main-menu li .mega-menu .sub-mega-menu li:hover {
    padding-left: .5rem;
}

header .header-nav .nav-wrapper .main-menu li .mega-menu .sub-mega-menu li a {
    color: #000;
}

header .header-nav .nav-wrapper .main-menu li .mega-menu .sub-mega-menu li a i {
    font-size: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
    header .header-nav .nav-wrapper .main-menu li .mega-menu {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        transform-origin: top;
        position: absolute;
        top: 90%;
        left: 0;
        width: 100%;
        background-color: #eee;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        z-index: 99;
    }
}

@media only screen and (max-width: 768px) {
    header .header-nav .nav-wrapper .main-menu li .mega-menu {
        position: relative;
        top: 0;
        width: 100%;
        background-color: #fff;
        display: none;
    }
}

header .searchbar {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 550px;
    margin: .75rem 0;
}

@media only screen and (max-width: 768px) {
    header .searchbar {
        margin-top: .75rem;
        width: 90%;
    }
}

header .searchbar-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

header .searchbar-group input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: .5rem .75rem;
    background-color: #fff;
    border: 2px solid #3490de;
    border-radius: 30px;
}

header .searchbar-group input:hover, header .searchbar-group input:focus {
    outline: none !important;
}

header .searchbar-group input::placeholder {
    color: #aaa;
    font-weight: bold;
}

header .searchbar-group .btn-searchbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3490de;
    height: 40px;
    width: 40px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    border: 2px solid #3490de;
    border-radius: 50%;
}

.timkiem {
    display: block;
    position: absolute;
    top: 2px;
    left: 0px;
    z-index: 1002;
    max-height: 500px;
    overflow-y: auto;
    background: #FFF;
    color: #666;
    width: 100%;
    opacity: 0;
    -webkit-box-shadow: 0px 4px 7px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 4px 7px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 4px 7px 0px rgba(50, 50, 50, 0.2);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    -webkit-transform: translate(0, 40px);
    -moz-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    transform: translate(0, 40px);
    opacity: 1;
    visibility: visible;
}

.timkiem img {
    max-width: 100%;
}

.timkiem .imageleft {
    float: left;
    width: 10%;
}

.timkiem .inforight {
    float: left;
    width: 90%;
    padding: 10px;
}

.inforight a {
    color: blue;
}

.timkiem li {
    border: 1px solid #E3E8EA;
    padding: 10px;
}

@-webkit-keyframes hover-ripple-out {
    100% {
        top: -7px;
        right: -7px;
        bottom: -7px;
        left: -7px;
        opacity: 0;
    }
}

@keyframes hover-ripple-out {
    100% {
        top: -7px;
        right: -7px;
        bottom: -7px;
        left: -7px;
        opacity: 0;
    }
}

.contact-module {
    text-align: center;
}

.contact-module-header > h3 {
    color: #111;
}

.contact-module-header .btn-contact-module {
    display: inline-block;
    background: #0095ff;
    border-radius: .5rem;
    padding: 10px 15px;
    color: #fff;
    font-weight: bold;
    margin-bottom: .5rem;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.contact-module-header .btn-contact-module:hover {
    background: #33aaff;
}

.contact-module-header .group-box {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.contact-module-header .group-box .input-group .input-group-text {
    border-radius: 0;
    border-right: none;
}

.contact-module-header .group-box .input-group .input-group-text .fa {
    font-size: 24px;
}

.contact-module-header .group-box .input-group input {
    border-radius: 0;
    border-left: none;
}

.contact-module-header .group-box .input-group button {
    border-radius: 0;
    background: #0095ff;
    color: #fff;
}

.contact-module-header .call-box .btn-call {
    background: #f16d6a;
    color: #fff;
    padding: 10px 30px;
    display: flex;
    border-radius: .5rem;
    max-width: 200px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: .5rem;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.contact-module-header .call-box .btn-call:hover {
    background: #f38481;
}

.contact-module-header .call-box .btn-call .fa {
    font-size: 30px;
    margin-right: 5px;
}

.contact-module-header .call-box p {
    font-size: 12px;
}

.contact-module-body .modal-content {
    border: none;
    background: transparent;
}

.contact-module-body .modal-body {
    position: relative;
    padding: 70px 30px;
    border-radius: 1.5rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2af598), to(#009efd));
    background-image: -webkit-linear-gradient(top, #2af598 0%, #009efd 100%);
    background-image: -o-linear-gradient(top, #2af598 0%, #009efd 100%);
    background-image: linear-gradient(180deg, #2af598 0%, #009efd 100%);
}

.contact-module-body .modal-body .btn-close-module {
    position: absolute;
    right: -11px;
    top: -11px;
    background: #fff;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    box-shadow: 2px 2px 8px #ddd;
    cursor: pointer;
}

.contact-module-body .modal-body .btn-close-module:focus, .contact-module-body .modal-body .btn-close-module:hover {
    outline: none !important;
}

.contact-module-body .modal-body .form-contact-module > h3 {
    color: #fff;
}

.contact-module-body .modal-body .form-contact-module .form-module-control {
    background: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 1.5rem;
    -webkit-box-shadow: 0px 3px 15px #666;
    box-shadow: 0px 3px 15px #666;
}

.contact-module-body .modal-body .form-contact-module .form-module-control:focus, .contact-module-body .modal-body .form-contact-module .form-module-control:hover {
    outline: none !important;
}

.contact-module-body .modal-body .form-contact-module .btn-module-send {
    background: #ef5350;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: 5px 40px;
    border-radius: 1.5rem;
    border: none;
    cursor: pointer;
    -webkit-box-shadow: 0px 3px 15px #666;
    box-shadow: 0px 3px 15px #666;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.contact-module-body .modal-body .form-contact-module .btn-module-send:hover {
    background: #f3817f;
}

.social-icons ul {
    padding: 0;
}

.text-center.social-icons ul {
    display: inline-block;
}

.social-icons li {
    float: left;
    list-style: none;
}

.social-icons li a {
    float: left;
    height: 32px;
    width: 32px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    margin: 0 4px 4px 0;
    border-radius: 4px;
    border: 0;
    background: transparent;
    color: #333;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.social-icons.social-icons-colored a,
.social-icons.social-icons-colored-hover a:hover {
    color: #fff;
    border: 0;
}

.social-icons.social-icons-colored .social-rss a,
.social-icons.social-icons-colored-hover .social-rss a:hover {
    background-color: #faa33d;
}

.social-icons.social-icons-colored .social-facebook a,
.social-icons.social-icons-colored-hover .social-facebook a:hover {
    background-color: #5d82d1;
}

.social-icons.social-icons-colored .social-twitter a,
.social-icons.social-icons-colored-hover .social-twitter a:hover {
    background-color: #40bff5;
}

.social-icons.social-icons-colored .social-vimeo a,
.social-icons.social-icons-colored-hover .social-vimeo a:hover {
    background-color: #35c6ea;
}

.social-icons.social-icons-colored .social-myspace a,
.social-icons.social-icons-colored-hover .social-myspace a:hover {
    background-color: #008dde;
}

.social-icons.social-icons-colored .social-youtube a,
.social-icons.social-icons-colored-hover .social-youtube a:hover {
    background-color: #ef4e41;
}

.social-icons.social-icons-colored .social-instagram a,
.social-icons.social-icons-colored-hover .social-instagram a:hover {
    background-color: #548bb6;
}

.social-icons.social-icons-colored .social-gplus a,
.social-icons.social-icons-colored-hover .social-gplus a:hover {
    background-color: #d68400;
}

.social-icons.social-icons-colored .social-stumbleupon a,
.social-icons.social-icons-colored-hover .social-stumbleupon a:hover {
    background-color: #ff5c30;
}

.social-icons.social-icons-colored .social-lastfm a,
.social-icons.social-icons-colored-hover .social-lastfm a:hover {
    background-color: #f34320;
}

.social-icons.social-icons-colored .social-pinterest a,
.social-icons.social-icons-colored-hover .social-pinterest a:hover {
    background-color: #e13138;
}

.social-icons.social-icons-colored .social-google a,
.social-icons.social-icons-colored-hover .social-google a:hover {
    background-color: #eb5e4c;
}

.social-icons.social-icons-colored .social-evernote a,
.social-icons.social-icons-colored-hover .social-evernote a:hover {
    background-color: #9acf4f;
}

.social-icons.social-icons-colored .social-dribbble a,
.social-icons.social-icons-colored-hover .social-dribbble a:hover {
    background-color: #f7659c;
}

.social-icons.social-icons-colored .social-skype a,
.social-icons.social-icons-colored-hover .social-skype a:hover {
    background-color: #13c1f3;
}

.social-icons.social-icons-colored .social-forrst a,
.social-icons.social-icons-colored-hover .social-forrst a:hover {
    background-color: #45ad76;
}

.social-icons.social-icons-colored .social-linkedin a,
.social-icons.social-icons-colored-hover .social-linkedin a:hover {
    background-color: #238cc8;
}

.social-icons.social-icons-colored .social-wordpress a,
.social-icons.social-icons-colored-hover .social-wordpress a:hover {
    background-color: #2592c3;
}

.social-icons.social-icons-colored .social-grooveshark a,
.social-icons.social-icons-colored-hover .social-grooveshark a:hover {
    background-color: #ffb21d;
}

.social-icons.social-icons-colored .social-delicious a,
.social-icons.social-icons-colored-hover .social-delicious a:hover {
    background-color: #377bda;
}

.social-icons.social-icons-colored .social-behance a,
.social-icons.social-icons-colored-hover .social-behance a:hover {
    background-color: #1879fd;
}

.social-icons.social-icons-colored .social-dropbox a,
.social-icons.social-icons-colored-hover .social-dropbox a:hover {
    background-color: #17a3eb;
}

.social-icons.social-icons-colored .social-soundcloud a,
.social-icons.social-icons-colored-hover .social-soundcloud a:hover {
    background-color: #ff7e30;
}

.social-icons.social-icons-colored .social-deviantart a,
.social-icons.social-icons-colored-hover .social-deviantart a:hover {
    background-color: #6a8a7b;
}

.social-icons.social-icons-colored .social-yahoo a,
.social-icons.social-icons-colored-hover .social-yahoo a:hover {
    background-color: #ab47ac;
}

.social-icons.social-icons-colored .social-flickr a,
.social-icons.social-icons-colored-hover .social-flickr a:hover {
    background-color: #ff48a3;
}

.social-icons.social-icons-colored .social-digg a,
.social-icons.social-icons-colored-hover .social-digg a:hover {
    background-color: #75788d;
}

.social-icons.social-icons-colored .social-blogger a,
.social-icons.social-icons-colored-hover .social-blogger a:hover {
    background-color: #ff9233;
}

.social-icons.social-icons-colored .social-tumblr a,
.social-icons.social-icons-colored-hover .social-tumblr a:hover {
    background-color: #426d9b;
}

.social-icons.social-icons-colored .social-quora a,
.social-icons.social-icons-colored-hover .social-quora a:hover {
    background-color: #ea3d23;
}

.social-icons.social-icons-colored .social-github a,
.social-icons.social-icons-colored-hover .social-github a:hover {
    background-color: #3f91cb;
}

.social-icons.social-icons-colored .social-amazon a,
.social-icons.social-icons-colored-hover .social-amazon a:hover {
    background-color: #ff8e2e;
}

.social-icons.social-icons-colored .social-xing a,
.social-icons.social-icons-colored-hover .social-xing a:hover {
    background-color: #1a8e8c;
}

.social-icons.social-icons-colored .social-wikipedia a,
.social-icons.social-icons-colored-hover .social-wikipedia a:hover {
    background-color: #b3b5b8;
}

.social-icons.social-icons-border li a {
    border: 1px solid #d7d7d7;
    background: transparent;
    color: #333;
}

.social-icons.social-icons-dark li a {
    background: #888;
    color: #fff;
}

.social-icons.social-icons-light li a {
    background: #fff;
    color: #333;
    border: 1px solid #eee;
}

.social-icons.social-icons-rounded li a {
    border-radius: 50%;
}

.social-icons.social-icons-medium li a {
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-size: 18px;
}

.social-icons.social-icons-large li a {
    height: 48px;
    width: 48px;
    line-height: 48px;
    font-size: 18px;
}

.social-icons:not(.social-icons-colored):not(.social-icons-colored-hover) li a:hover {
    background-color: #eee;
}

.social-icons li:hover i {
    -webkit-animation: toTopFromBottom 0.3s forwards;
    -moz-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards;
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@-moz-keyframes toTopFromBottom {
    49% {
        -moz-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

.drdtaikhoan > a {
    color: #111 !important;
    font-weight: bold;
}

.drdtaikhoan .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.drdtaikhoan .dropdown-menu li a {
    display: block;
    padding: 0 10px;
    color: #111;
}

.drdtaikhoan .dropdown-menu li a:hover {
    background: #111;
    color: #fff;
}

#topbar {
    position: relative;
    z-index: 200;
    background-color: #3490de;
}

#topbar .top-menu {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

#topbar .top-menu > li {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    padding: 0 5px;
    color: #fff;
}

#topbar .top-menu > li > a {
    display: block;
    color: #fff;
    height: 30px;
    margin-right: 16px;
    text-decoration: none;
}

#topbar .top-menu > li strong {
    color: #ff0000;
}

#topbar .top-links {
    position: relative;
}

#topbar .social-icons {
    float: right;
    height: 100%;
    overflow: hidden;
}

#topbar .social-icons li,
#topbar .social-icons li a {
    float: left;
    list-style: outside none none;
}

#topbar .social-icons li a {
    border-radius: 0px;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 35px;
    overflow: hidden;
    margin: 0;
    color: #fff;
}

div.footer {
    background: #3490de;
    padding: 3rem 0;
}

div.footer .btn-baogia {
    background: linear-gradient(#0053bc, #173a80);
    color: #fff;
    border: none;
    font-size: 16px;
    padding: 9px 45px;
    transition: 0.1s;
    cursor: pointer;
}

div.footer .btn-baogia:hover {
    transition: 0.1s;
    background: linear-gradient(#4090f5, #244280);
}

div.footer .btn-nhantin {
    background: linear-gradient(#0053bc, #173a80);
    color: #fff;
    border: none;
    font-size: 16px;
    padding: 9px 45px;
    transition: 0.1s;
    cursor: pointer;
}

div.footer .btn-nhantin:hover {
    transition: 0.1s;
    background: linear-gradient(#4090f5, #244280);
}

div.footer .footer-title {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

div.footer .footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

div.footer .footer-info li {
    color: #fff;
}

div.footer .footer-info li a {
    color: #fff;
}

div.footer .footer-info li a:hover {
    color: #ff0000;
}

div.footer p, div.footer a {
    color: #fff !important;
}

footer {
    border-top: none !important;
    font-weight: bold;
    background: #2384d6 !important;
}

@keyframes pulse_bt {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.copyright {
    color: #fff;
    font-weight: bold;
    font-size: .9rem;
    text-transform: uppercase;
}

.aPhone {
    width: 70px;
    height: 70px;
    position: fixed;
    z-index: 1000;
    bottom: 15px;
    left: 15px;
}

.aPhone .aPhone-1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    border: 2px solid #ff0000;
    border-radius: 50%;
    animation: animates 1.2s infinite ease-in-out;
}

.aPhone .aPhone-2 {
    width: 85%;
    height: 85%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(1);
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.5);
    opacity: 0.2;
    animation: animatess 2.3s infinite;
}

.aPhone .aPhone-3 {
    width: 45%;
    height: 45%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: scale(1);
    border-radius: 50%;
    opacity: 0.7;
    animation: animatesss 1s infinite;
    background: #ff0000 url(../img/phone.png) no-repeat center center;
    background-size: 80% auto;
}

@keyframes animates {
    0% {
        opacity: 0.3;
        transform: scale(0.5);
    }
    30% {
        opacity: 1;
        transform: scale(0.7);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

#chat-footer {
    display: none;
}

@media only screen and (max-width: 768px) {
    #chat-footer {
        display: block;
        max-width: 640px;
        margin: 0 auto;
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        background: #daf6ff;
        z-index: 99;
        transition: 1.5s;
        -webkit-transition: 1.5s;
    }

    #chat-footer.show {
        bottom: 47px;
    }

    #chat-footer h4 {
        background: #3490de;
        padding: 5px 5px;
        text-align: center;
        text-transform: uppercase;
        font-size: 14px;
        color: #fff;
        position: relative;
    }

    #chat-footer h4 strong {
        color: yellow;
    }

    #chat-footer h4 span.remove {
        position: absolute;
        right: 5px;
        width: 18px;
        height: 18px;
        line-height: 18px;
        background: #fff;
        color: #005e96;
        border-radius: 4px;
    }

    #chat-footer .content {
        padding: 0px 2%;
    }

    #chat-footer .content > ul {
        padding: 0;
        margin: 0;
    }

    #chat-footer .content > ul > li {
        display: inline-flex;
        margin: 8px 0;
        align-items: flex-start;
        width: 100%;
    }

    #chat-footer .content > ul > li img {
        width: 40px;
        min-width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    #chat-footer .content > ul > li > p {
        width: 100%;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 5px;
        line-height: 20px;
        border-bottom: 4px solid #3490de;
        background-image: -webkit-linear-gradient(#e3eef3, #b9e3f9);
        background-image: -o-linear-gradient(#e3eef3, #b9e3f9);
        background-image: linear-gradient(#e3eef3, #b9e3f9);
    }

    #chat-footer .content > ul > li > p > a {
        color: #222;
    }

    #chat-footer .btn-lienhe {
        display: flex;
        justify-content: space-between;
        padding: 5px 5%;
        background: #f1f1f1;
        border-top: 1px solid #cccc;
    }

    #chat-footer .btn-lienhe a {
        display: inline-block;
        padding: 5px;
        background: #e95d00;
        border-radius: 4px;
        width: 49%;
        text-align: center;
        color: #fff;
        font-size: 14px;
    }

    #chat-footer .btn-lienhe a.link-chat {
        background: #018ebd;
    }
}

.doitac {
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: .5rem;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .doitac {
        height: 250px;
    }
}

.doitac img {
    width: 100%;
}

.block-item {
    padding: 3rem .75rem;
    text-align: center;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.block-item.service {
    background: #3ec1d3;
}

.block-item.opening {
    background: #6639a6;
}

.block-item.stethoscope {
    background: #ff9a00;
}

.block-item.child {
    background: #ff165d;
}

.block-item .block-image img {
    width: 300px;
    max-width: 100%;
    height: auto;
}

.block-item h3 {
    margin-top: 1rem;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.block-item p {
    font-weight: bold;
}

.block-item ul {
    list-style: none;
}

.block-item ul li {
    font-weight: bold;
}

.block-item ul li a {
    color: #fff;
}

.service-index {
    background: #fff;
    border: 1px solid #eee;
    height: 350px !important;
    overflow: hidden;
    position: relative;
}

.service-index-item {
    display: flex;
    padding: .5rem;
    background: #fff;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.service-index-item:hover {
    background: #eee;
}

.service-index-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.service-index-item .service-image {
    width: 35%;
    overflow: hidden;
}

.service-index-item .service-image img {
    width: 100%;
}

.service-index-item .service-info {
    width: 65%;
    padding-left: .5rem;
}

.service-index-item .service-info .service-title {
    font-weight: bold;
    color: #000;
}

.service-index-item .service-info .service-title:hover {
    color: #3490de;
}

.service-index-item .service-info .service-short {
    text-align: justify;
    height: 50px;
    overflow: hidden;
}

.service-index .direction {
    border-top: 1px solid #eee;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.service-index .direction .btn-scroll-down {
    display: block;
    width: 100%;
    height: 40px;
    background: #fff;
    color: #111;
    border: none;
    text-align: center;
    cursor: pointer;
}

.service-index .direction .btn-scroll-down:hover, .service-index .direction .btn-scroll-down:focus, .service-index .direction .btn-scroll-down:active {
    outline: none !important;
}

.related-blog {
    list-style: square;
    padding-left: 1.5rem;
}

.related-blog li {
    color: #ff0000;
}

.related-blog li a {
    color: #111;
}

.related-blog li a:hover {
    color: #ff0000;
}

.category-item {
    position: relative;
}

.category-item .category-image {
    position: relative;
}

.category-item .category-image img {
    width: 100%;
}

.category-item .category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.category-item .category-info a {
    display: block;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
}

.img-quangcao {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-color: #fff;
    overflow: hidden;
}

.list-article {
    text-align: center;
    justify-content: center;
}

.list-article li {
    padding: 0 .25rem;
}

.list-article li a {
    display: block;
    background-color: #eee;
    padding: .5rem .75rem;
    font-weight: bold;
    color: #000;
}

.list-article li a.active {
    background-color: #3490de;
    color: #fff;
}

.product .title {
    font-size: 20px;
    text-transform: uppercase;
}

.product-item {
    border: 1px solid #ddd;
    margin-bottom: 2.5rem;
    border-radius: .75rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.product-item:hover {
    transform: translateY(-0.5rem);
}

.product-item-image {
    position: relative;
    overflow: hidden;
    border-radius: .75rem;
}

.product-item-image img {
    width: 100%;
}

.product-item-info {
    text-align: center;
    padding: .5rem;
}

.product-item-info .product-name {
    display: block;
    text-align: center;
    font-weight: bold;
    color: #3490de;
    height: 40px;
    overflow: hidden;
}

.product-item-info .product-price {
    color: #ff0000;
    font-weight: bold;
}

.product-item-info .product-price b {
    color: #000;
}

.product-item-info .product-short {
    height: 65px;
    overflow: hidden;
    color: #fff;
    background-color: #3490de;
    padding: 0 .5rem;
    margin-bottom: -35px;
    border-radius: .25rem;
}

.blog-item {
    background: #fff;
    margin-bottom: 25px;
    position: relative;
}

.blog-item .blog-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    background-color: #2384d6;
}

.blog-item .blog-image a:before {
    content: "\f002";
    font-family: 'fontawesome';
    background-color: #f88f2a;
    opacity: .8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.blog-item .blog-image a:hover:before {
    top: 0;
}

.blog-item .blog-image img {
    width: 100%;
}

.blog-item .blog-info {
    padding: .5rem;
    background-color: #2384d6;
}

.blog-item .blog-info .blog-title {
    display: block;
    color: #fff;
    font-weight: bold;
    text-align: center;
    height: 43px;
    text-transform: uppercase;
    overflow: hidden;
}

.blog-item .blog-info .blog-title:hover {
    color: #fff;
}

.blog-item .blog-info .blog-short {
    background-color: #fff;
    padding: .5rem;
    margin-bottom: -25px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.blog-item .blog-info .blog-short > div:first-child {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 65px;
    overflow: hidden;
    margin-bottom: .5rem;
}

.blog-item .blog-info .blog-short .readmore {
    display: inline-block;
    background-color: #3490de;
    color: #fff;
    padding: .25rem .75rem;
    border-radius: 5rem;
}

.blog-item-2 {
    background: #fff;
    margin-bottom: 25px;
    position: relative;
}

.blog-item-2 .blog-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-item-2 .blog-image a:before {
    content: "\f002";
    font-family: 'fontawesome';
    background-color: #f88f2a;
    opacity: .8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.blog-item-2 .blog-image a:hover:before {
    top: 0;
}

.blog-item-2 .blog-image img {
    width: 100%;
}

.blog-item-2 .blog-info {
    padding: .75rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    z-index: 9;
}

.blog-item-2 .blog-info .blog-title {
    display: block;
    color: #3490de;
    font-weight: bold;
    text-align: center;
    height: 43px;
    text-transform: uppercase;
    overflow: hidden;
}

.blog-item-2 .blog-info .blog-title:hover {
    color: #000;
}

.blog-item-2 .blog-info .blog-short > div:first-child {
    height: 65px;
    overflow: hidden;
    margin-bottom: .5rem;
}

.blog-item-2 .blog-info .blog-short .readmore {
    border: 1px solid #666;
    width: 100%;
    padding: 6px 0;
    text-align: center;
    text-decoration: none;
    color: #333;
    display: block;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: url(../img/ar_yellow.png) no-repeat right 15px center;
    cursor: pointer;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.blog-item-2 .blog-info .blog-short .readmore:hover {
    color: #fff;
}

.blog-item-2 .blog-info .blog-short .readmore:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    color: #fff;
    background: url(../img/ar_whi.png) no-repeat right 15px center, #3490de;
}

.blog-item-2 .blog-info .blog-short .readmore:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    background: #3490de;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.single-blog .title {
    background-color: #3490de;
    padding: 1rem .5rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.header-section {
    text-align: center;
    position: relative;
    margin-bottom: 1.75rem;
}

.header-section h2 {
    position: relative;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #3490de;
    margin-bottom: 0;
    padding: .5rem;
    transform: skewX(-20deg);
}

.header-section h2:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 100%;
    height: 4px;
    width: 30px;
    background-color: #3490de;
    transform: skewX(-20deg);
    z-index: 9;
}

.header-section h2:after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    height: 4px;
    width: 30px;
    background-color: #3490de;
    transform: skewX(-20deg);
    z-index: 9;
}

.header-section-2 {
    text-align: center;
}

.header-section-2 h2 {
    color: #fff;
    text-transform: uppercase;
}

.blog-single-title {
    font-size: 18px;
    color: #3490de;
    border-bottom: 1px solid #dcdcdc;
    position: relative;
    line-height: 32px;
    padding: 0 0 0 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-single-title:after {
    position: absolute;
    content: '';
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #0d9fb1;
}

.owl-main .owl-nav {
    width: 100%;
}

.owl-main .owl-nav button.owl-prev {
    position: absolute;
    top: calc(50% - 50px);
    left: 0;
    font-size: 50px;
    padding: 6px 3px !important;
    background-color: transparent;
    opacity: .7;
    color: #111;
}

.owl-main .owl-nav button.owl-next {
    position: absolute;
    top: calc(50% - 50px);
    right: 0;
    font-size: 50px;
    padding: 6px 3px !important;
    background-color: transparent;
    opacity: .7;
    color: #111;
}

.owl-main .owl-dots {
    text-align: center;
}

.owl-main .owl-dots .owl-dot.active span {
    background: #3490de;
}

.owl-main .owl-dots .owl-dot span {
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 7px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 7px;
}

.map {
    padding-top: unset;
}

.sidebar {
    background-color: #fff;
    border: 1px solid #eee;
    margin-bottom: 10px;
}

.sidebar .sidebar-title {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    color: #fff;
    background-color: #3490de;
    padding: .75rem .5rem;
}

.sidebar .sidebar-title h4 {
    margin-bottom: 0;
}

.sidebar .sidebar-content {
    padding: .5rem;
}

.sidebar .sidebar-content .sidebar-list-title {
    position: relative;
    display: block;
    text-align: left;
    color: #000;
    background-color: #fff;
    padding: .35rem .5rem;
}

.sidebar .sidebar-content .sidebar-list-title:not(:last-child) {
    border-bottom: 1px dotted #eee;
}

.sidebar .sidebar-content .sidebar-list-title a {
    display: block;
    text-align: left;
    color: #000;
    background-color: #fff;
    padding: .75rem .5rem;
}

.sidebar .sidebar-content .sidebar-list-title .sidebar-list-icon {
    font-size: 10px;
}

.sidebar .sidebar-content .sidebar-list-title .btn-side-down-sidebar {
    position: absolute;
    right: .5rem;
    top: calc(50% - 13px);
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #aaa;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.sidebar .sidebar-content .sidebar-list-title .btn-side-down-sidebar:hover, .sidebar .sidebar-content .sidebar-list-title .btn-side-down-sidebar:active {
    outline: none !important;
}

.sidebar .sidebar-content .sidebar-list {
    list-style-type: none;
    padding-left: 0;
}

.sidebar .sidebar-content .sidebar-list li a {
    position: relative;
    display: block;
    text-align: left;
    padding: .5rem .5rem .5rem 1.5rem;
    color: #000;
    background-color: #fff;
    margin-bottom: .25rem;
}

.sidebar .sidebar-content .sidebar-list li a:hover {
    color: #fff !important;
    background-color: #3490de !important;
}

.sidebar-2 {
    margin-bottom: 1rem;
}

.sidebar-2 .sidebar-title {
    display: block;
    text-align: left;
    text-transform: uppercase;
    color: #3490de;
    background-color: #fff;
    border-left: 8px solid #3490de;
    font-weight: bold;
    padding: .5rem;
    margin-bottom: .5rem;
}

.sidebar-2 .sidebar-title h4 {
    margin-bottom: 0;
}

.sidebar-2 .blog-item-mini {
    display: flex;
    margin-bottom: .75rem;
}

.sidebar-2 .blog-item-mini .blog-image {
    width: 30%;
}

.sidebar-2 .blog-item-mini .blog-info {
    width: 70%;
    padding-left: .5rem;
}

.sidebar-2 .blog-item-mini .blog-info .blog-title {
    display: block;
    color: #000;
    font-weight: bold;
    height: 45px;
    overflow: hidden;
}

.sidebar-2 .blog-item-mini .blog-info .blog-title:hover {
    color: #3490de;
}

.box-phone-tuvan {
    position: relative;
}

.box-phone-tuvan .box-phone {
    height: 135px;
    background-color: #0d9fb1;
}

.box-phone-tuvan .box-phone .label {
    text-align: center;
    margin-bottom: 10px;
}

.box-phone-tuvan .box-phone .label span {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    background-color: #00555f;
    font-size: 12px;
    color: #fff;
    vertical-align: top;
    padding: 2px 5px;
    position: relative;
}

.box-phone-tuvan .box-phone .label span:before {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-top: 22px solid #00555f;
    border-left: 12px solid transparent;
    border-right: 2px solid transparent;
    left: -12px;
}

.box-phone-tuvan .box-phone .label span:after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-top: 22px solid #00555f;
    border-left: 2px solid transparent;
    border-right: 12px solid transparent;
    right: -12px;
}

.box-phone-tuvan .box-phone .phone {
    text-align: center;
    font-size: 28px;
    color: #fff;
    position: relative;
    line-height: 1;
    margin-top: 5px;
}

.box-phone-tuvan .box-phone .phone span {
    position: relative;
    z-index: 2;
    background-color: #0d9fb1;
    padding-left: 8px;
    padding-right: 8px;
}

.box-phone-tuvan .box-phone .note {
    text-align: center;
    color: #eee;
    font-size: 13px;
    font-weight: 300;
}

.box-phone-tuvan .box-tuvan {
    margin-top: 2px;
    display: flex;
}

.box-phone-tuvan .box-tuvan > a {
    width: 100%;
    height: 45px;
    background-color: #008191;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    padding-top: 17px;
    text-align: center;
}

.box-phone-tuvan .box-tuvan > a.left {
    border-right: 1px solid #008191;
}

.box-phone-tuvan .box-tuvan > a.right {
    border-left: 1px solid #1ac4d9;
}

.box-phone-tuvan .icon-call {
    position: absolute;
    bottom: 19px;
    left: 0;
    right: 0;
    background-color: #eee;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 4px;
    margin: auto;
}

.fb-comments iframe {
    width: 100% !important;
}

/*# sourceMappingURL=main.css.map */
.aPhone {
    bottom: 110px;
}

.floating-zalo {
    position: fixed;
    left: 30px;
    bottom: 62px;
    z-index: 4;
}

.floating-calculate {
    position: fixed;
    bottom: 15px;
    z-index: 4;
    left: 30px;
    background-color: #c52626;
    color: #ffff;
    border-radius: 25px;
    padding: 8px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.35s ease-in;
    font-weight: 600;
}

.floating-calculate:hover {
    background-color: #a21a1a;
    color: #ffff;
}

.floating-calculate svg path {
    fill: white;
}

.floating-mobile {
    display: none;
}

@media (max-width: 768px) {
    .aPhone,
    .floating-zalo,
    .floating-calculate {
        display: none;
    }

    .floating-mobile {
        position: fixed;
        left: 0;
        width: 100%;
        bottom: 0;
        border-top: 2px solid var(--primary);
        background-color: #f5f5f5;
        display: flex;
        z-index: 5;
    }

    .floating-mobile .floating-item {
        display: flex;
        flex-direction: column;
        gap: 3px;
        align-items: center;
        justify-content: space-between;
        width: calc(100% / 3);
        padding: 6px;
        transition: all 0.35s ease-in;
    }
    .floating-mobile .floating-item:hover{
        background-color: #c8cdd11f;
    }

    .floating-mobile .floating-item:not(:first-child) {
        border-left: 1px solid rgba(128, 128, 128, 0.13);
    }

    .floating-mobile .floating-item .text {
        font-weight: 600;
        color: #2f2828;
    }
    .floating-mobile .floating-item .icon i{
        color:#0369ff !important;
    }
    .floating-mobile .floating-item .icon svg path{
        fill: #0369ff;
    }
}
@media(max-width: 320px) {
    .floating-mobile .floating-item .text {
       font-size: 12px;
    }
}


:root {
    --primary-color: #58c8e2;
    --secondary-color: #004579;
}

.heading-tool__title::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	border-radius: 3px;
	background-color: var(--primary-color);
}

.heading-tool__title-2{
    font-size: 1rem;
}

.tool-checkbox .form-check-label {
	font-weight: 700;
	font-size: 0.95rem;
}
.tool-checkbox .form-check {
    cursor: pointer;
}
.tool-checkbox .form-check__text,
.tool-form__text {
	color: rgba(32, 33, 36, 0.80);
}

.tool-checkbox .form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.tool-checkbox .form-check-input:disabled {
    opacity: 0.6;
}

.tool-checkbox .form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0,0,0,.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    border-radius: 2px;
}

.tool-checkbox .form-check-input[type=radio] {
    border-radius: 50%;
}

.tool-checkbox .form-check-input:checked[type=radio]{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.tool-checkbox .form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.tool-checkbox .form-check-input:focus {
	box-shadow: none;
}

.tool-checkbox .form-label {
    font-weight: 400;
}


.tool-form__label {
	font-size: 1rem;
	font-weight: 700;
}

.tool-form__select,
.tool-group-input {
	border-radius: 5px;
	border: 1px solid #d9dadb;
}

.tool-form__select:focus,
.tool-group-input:focus,
.tool-textarea:focus {
	box-shadow: none;
}

.tool-checkbox .form-check-input[type=checkbox],
.tool-checkbox .form-check-input[type=radio] {
	border: 1px solid var(--primary-color);
	cursor: pointer;
}

.tool-form__select {
	font-size: 0.9rem;
}

.form-select-border {
	border: 1px solid transparent;
	padding: 7px 15px;
	box-shadow: 0px 14px 64px -4px rgba(24, 39, 75, 0.12), 0px 8px 22px -6px rgba(24, 39, 75, 0.12);
}

.tool-group-input:focus-visible,
.tool-group-input:focus {
	border-color: #86b7fe !important;
	border-radius: 5px;
}

.tool-textarea {
	font-size: 0.9rem;
	resize: none;
}

.tool-local__title {
	background-color: var(--primary-color);
	color: var(--white);
	display: inline-flex;
	padding: 10px 15px;
	align-items: flex-start;
	gap: 10px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.tool-local__table {
	border-radius: 0px 5px 5px 5px;
	border: 1px solid var(--primary-color);
	padding: 25px 20px;
}

.tool-group__flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.tool-group__flex .tool-checkbox,
.tool-group__flex .tool-checkbox .form-label{
	cursor: pointer;
}

.tool-group__flex .tool-checkbox .form-label {
    font-weight: 400;
    margin-bottom: 0;
}

.tool-group__number {
	width: 30px;
	text-align: center;
}

.tool-button__contact {
	border-radius: 5px;
	border: 1px solid #202124;
	background: #FFF;
	display: flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	font-weight: 700;
	color: #202124;
	transition: .3s all ease;
	max-width: 200px;
	width: 100%;
	text-align: center;
	justify-content: center;
	outline: none !important;
	box-shadow: none !important;
	cursor: pointer;
	box-shadow: 0px 14px 64px -4px rgba(24, 39, 75, 0.12), 0px 8px 22px -6px rgba(24, 39, 75, 0.12);
}

.tool-button__contact:hover {
	color: var(--white);
	background-color: #051135;
}

.button-quantity {
	transition: .3s all ease;
	border-radius: 3px;
	border: 1px solid #202124;
	background-color: var(--white);
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	outline: none !important;
	box-shadow: none !important;
	cursor: pointer;
}

.button-quantity:hover {
	background-color: #d5d5d542;
}

.button-quantity.disabled {
	pointer-events: none;
	color: #919191;
}

.tool-group-input {
	border: 1px solid transparent;
}

.table-result-2 > tbody > tr > td {
	padding: 0;
	border-bottom: 0;
	box-shadow: none;
}

.table-result-2 > tbody > tr > td > table {
	margin-bottom: 0;
}

.table-result-2 > tbody > tr > td > table > thead > tr > th:first-child {
	width: 50%;
}

.table-result-2 > tbody > tr > td > table > thead > tr > th:last-child,
.table-result-2 > tbody > tr > td > table:last-child > tbody > tr > th:last-child {
	width: 20%;
}

.table-result-2 table,
.result__tool-1 table {
	border: 1px solid rgba(204, 204, 204, 0.82);
}

.table-result-2 .table-heading {
	background-color: var(--primary-color) !important;
	color: var(--white) !important;
	border-top: 1px solid var(--primary-color) !important;
	border-left: 1px solid var(--primary-color) !important;
	border-right: 1px solid var(--primary-color) !important;
	font-weight: 700 !important;
}

.table-tool__total table {
	border-top: 1px solid transparent;
}

.section-gap {
    --spacing: 2.5rem 0;
    padding: var(--spacing);
}

.theme-button {
	--btn-bg: var(--primary-color);
	--btn-bg-hover: var(--secondary-color);
	--btn-color: var(--white);

	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--btn-color);
	border-radius: 0.25rem;
	border: 1px solid transparent;
	outline: none !important;
	box-shadow: none !imporant;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	background-color: var(--btn-bg);
	transition: all 0.25s linear 0ms;
}

.theme-button.theme-button--sm {
	padding: 0.5rem 1rem;
}

.theme-button[aria-disabled=true],
.theme-button[disabled] {
	pointer-events: none;
	user-select: none;
	opacity: 0.5;
}

.theme-button > * {
	position: relative;
	z-index: 3;
}

.theme-button::before {
	content: '';
	display: block;
	width: 200%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -200%;
	z-index: 1;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, .4), transparent);
	transform: skew(-20deg);
	transition: inherit;
}

.theme-button:hover {
	background-color: var(--btn-bg-hover);
	color: var(--btn-color);
}


@keyframes btn-shine {
	100% {
		left: 200%
	}
}

.theme-button:hover::before {
	animation: btn-shine 1.2s ease;
}

@media (max-width: 1200px) {
	.theme-button {
		padding: 0.5rem 1rem;
	}
}

@media (max-width: 991px) {
	.theme-button {
		font-size: 0.8125rem;
	}
}

.gap-2 {
    gap: 0.5rem!important;
}

@media screen and (min-width: 768px) {
    .tool-button__flex {
        gap: 1rem!important
    }
}

.table-result-2,
.table-result-2 table {
    background: #fff !important;
    color: #212529 !important;
}

.table-result-2  th {
    color: #212529 !important;
    font-weight: 700 !important;
}


.row-custom {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x)/ -2);
    margin-left: calc(var(--bs-gutter-x)/ -2);
}

.row-custom > * {
    padding-right: calc(var(--bs-gutter-x)/ 2);
    padding-left: calc(var(--bs-gutter-x)/ 2);
    margin-top: var(--bs-gutter-y);
}

.g-3, .gy-3 {
    --bs-gutter-y: 1rem;
}

.g-3, .gx-3 {
    --bs-gutter-x: 1rem;
}

.g-5, .gy-5 {
    --bs-gutter-y: 3rem;
}
.g-5, .gx-5 {
    --bs-gutter-x: 3rem;
}

.text-end {
    text-align: right !important;
}


@media (min-width: 992px) {
    .g-lg-5, .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
    .g-lg-5, .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }
}

.breadcrumb-nav {
	padding: 1.25rem 0;
	color: var(--white);
	background-color: #051135;
}

.breadcrumb-nav .page-title {
	font-size: 1.375rem;
	font-weight: 600;
	text-align: center;
}

.breadcrumb-nav .breadcrumb {
	justify-content: center;
	background: transparent;
	border-radius: 0;
	padding: 0;
}

.breadcrumb-nav .breadcrumb .breadcrumb-link {
	color: #f2f2f2;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item.active > .breadcrumb-link {
	color: #f8f8f8;
	opacity: 0.75;
}

.breadcrumb-item + .breadcrumb-item::before {
	content: '\f105';
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 1em;
	color: currentColor;
	transition: inherit;
	margin-top: 2px;
	padding-right: 0;
}

@media (max-width: 1199px) {
	.breadcrumb-nav .page-title {
		font-size: 1.25rem;
	}
}

@media (max-width: 767px) {
	.breadcrumb-nav .page-title {
		font-size: 1.125rem;
	}

	.breadcrumb-item.active {
		display: none !important;
	}
}
