@-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: #006838 !important;
}

body {
    background-color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

a {
    text-decoration: none !important;
}

section {
    padding: 30px 0 0 0;
}

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

section.section-main {
    background-color: #006838;
}

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

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

.bg-main {
    background-color: #006838;
}

.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 {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background-color: #fff;
    padding: 0;
    -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;
}

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

header .header-wrapper .header-brand img {
    width: auto;
    height: 5rem;
    -webkit-transition: all .25s ease-in;
    -moz-transition: all .25s ease-in;
    -ms-transition: all .25s ease-in;
    -o-transition: all .25s ease-in;
    transition: all .25s ease-in;
}

header.scroll .header-wrapper .header-brand img {
    height: 70px;
}

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

header .header-contact .btn-theme {
    background-color: #006838;
    color: var(--bs-white) !important;
    border-radius: 5px;
    padding: 14px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 21px;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    border: 0;
    text-transform: capitalize;
    transition:
            background-color .35s cubic-bezier(.2,.8,.2,1),
            color .35s cubic-bezier(.2,.8,.2,1),
            box-shadow .25s ease,
            transform .2s ease;
}

header .header-contact .btn-theme:hover{
    background-color:#00a056 !important;
}

.btn-theme .button-theme_text{
    position: relative;
    z-index: 1;
    overflow: hidden;
    line-height: 1;
    margin-bottom: -2px;
}

.btn-theme .button-theme_text::before{
    top: 0;
    left: 0;
    opacity: 1;
    display: block;
    transition: 0.5s;
    position: relative;
    content: attr(data-front);
    transform: translateY(0);
}

.btn-theme .button-theme_text::after{
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    display: block;
    transition: all 0.5s cubic-bezier(0.55, 0.085, 0, 0.99);
    position: absolute;
    content: attr(data-back);
    transform: translateY(100%);
}


.btn-theme:hover .button-theme_text::before {
    opacity: 0;
    transform: translateY(-240%);
}

.btn-theme:hover .button-theme_text::after {
    opacity: 1;
    transform: translateY(0%);
}


@media only screen and (max-width: 768px) {
    header .header-wrapper .header-brand img {
        height: 60px;
    }

    header.scroll .header-wrapper .header-brand img {
        height: 55px;
    }
}

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

@media only screen and (max-width: 1200px) {

    header .header-wrapper {
        justify-content: unset;
        gap: 15px;
    }

    header .header-wrapper .header-right{
        margin-left: auto;
    }

    header .header-wrapper .header-hamburger {
        display: block;
    }

    header .header-wrapper .header-toggle {
        display: block;
        color: #fff;
        background-color: #006838;
        height: 35px;
        border: none;
        margin-right: .5rem;
        cursor: pointer;
    }

    header .header-wrapper .header-toggle span {
        position: relative;
        width: 20px;
        height: 20px;
        -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
        transform: translateY(1px);
        display: block;
    }

    header .header-wrapper .header-toggle .toggle-button > i {
        background-color: var(--bs-white);
        width: 100%;
        height: 2px;
        position: absolute;
        display: block;
        -webkit-transition: 0.3s all ease-in-out;
        -o-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out;
        left: 0;
    }

    header .header-wrapper .header-toggle .toggle-button > i:nth-child(1) {
        top: 0;
    }

    header .header-wrapper .header-toggle .toggle-button > i:nth-child(2) {
        top: 8px;
    }

    header .header-wrapper .header-toggle .toggle-button > i:nth-child(3) {
        width: 15px;
        top: 16px;
        left: auto;
        right: 0;
    }


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

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

@media only screen and (max-width: 768px) {
    header .header-wrapper .header-dismiss {
        background-color: var(--bs-gray-300);
        border: 1px solid transparent !important;
        color: var(--bs-gray-700);
        font-size: 1.3em;
        width: 35px;
        height: 35px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
        margin: 25px 35px 10px 35px;
        display: flex;
    }

    header .header-wrapper .header-dismiss > svg {
        height: 28px;
        width: 28px;
    }

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

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

.header-overlay {
    position: fixed;
    top: 0;
    left: -130%;
    width: 100%;
    height: 200%;
    background: #3c4951d1;
    backdrop-filter: blur(5px);
    z-index: 4;
    -webkit-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

@media (max-width: 425px) {
    .header-right{
        visibility: hidden;
    }
}

@media only screen and (max-width: 1200px) {
    header .header-wrapper .header-nav {
        position: fixed;
        top: 0;
        left: -280px;
        background-color: #fff;
        width: 280px;
        height: 100%;
        align-items: flex-start;
        flex-direction: column;
        z-index: 999;
        -webkit-transition: all 0.45s ease-in-out;
        -o-transition: all 0.45s ease-in-out;
        transition: all 0.45s ease-in-out;
    }

    header .header-wrapper .header-nav.active {
        left: 0;
        -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-wrapper .header-nav.active ~ .header-overlay {
        left: 0;
    }
}

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

@media only screen and (max-width: 1200px) {
    header .header-wrapper .header-nav .main-menu {
        width: 100%;
        flex-direction: column;
        display: flex !important;
        gap: 0 !important;
        padding: 30px 35px;
    }
}

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

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

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

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

@media only screen and (max-width: 768px) {
    header .header-wrapper .header-nav .main-menu li .btn-dropdown {
        display: block;
        position: absolute;
        top: 10px;
        left: 13rem;
        width: 25px;
        height: 25px;
        border-radius: .25rem;
        border: none;
        background: #006838;
        color: var(--bs-white);
        cursor: pointer;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    header .header-wrapper .header-nav .main-menu li .btn-dropdown.active {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

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

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

@media (max-width: 992px) {

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

    header .header-wrapper .header-nav .main-menu li:not(:last-child) {
        border-bottom: 1px solid rgb(244 241 241);
    }

    header .header-wrapper .header-nav .main-menu li:hover > a{
        color: #006838;
    }

    header .header-wrapper .header-nav .main-menu li a {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px 0;
    }
}

@media (min-width: 992px) {
    header .header-wrapper .header-nav .main-menu > li > a:before {
        width: 0;
        height: 2px;
        display: inline-block;
        opacity: 0;
        position: absolute;
        content: "";
        bottom: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background-color: #006838;
    }

    header .header-wrapper .header-nav .main-menu li a:hover,
    header .header-wrapper .header-nav .main-menu li a.current {
        color: #006838;
    }

    header .header-wrapper .header-nav .main-menu > li:hover > a:before {
        width: 25px;
        opacity: 1;
    }
}

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

@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1440px) {
    header .header-wrapper .header-nav .main-menu li .sub-menu {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        transform-origin: top;
        position: absolute;
        top: 100%;
        left: 0;
        border-radius: 10px;
        min-width: 230px;
        background-color: #fff;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        z-index: 99;
        box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.4);
    }

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

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

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

    header .header-wrapper .header-nav .main-menu li .sub-menu > li > a:before {
        width: 0;
        height: 2px;
        display: inline-block;
        opacity: 0;
        position: absolute;
        content: "";
        bottom: 15px;
        left: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background-color: #006838;
    }

    header .header-wrapper .header-nav .main-menu li .sub-menu > li:hover > a:before {
        width: 10px;
        opacity: 1;
    }

    header .header-wrapper .header-nav .main-menu li .sub-menu li > a:hover {
        color: #006838;
        transform: translateX(10px);
    }

    header .header-wrapper .header-nav .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-wrapper .header-nav .main-menu li .sub-menu {
        position: relative;
        top: 0;
        margin-left: 15px;
        width: 100%;
        display: none;
    }


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

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

header .searchbar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    border-radius: 50px;
    background-color: #ddd;
}

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

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: 1px solid #ddd;
    border-radius: 30px;
}

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

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

.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;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 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: #f3f3f3;
}

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

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

#topbar .top-menu > li > a {
    display: block;
    color: #111;
    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;
}

.footer {
    background: #006838;
    padding: 45px 0;
}

.footer-decor {
    opacity: 0.07;
    width: 50%;
}

.footer .footer-cta {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #bdc1c736;
}

.z-1{
    z-index: 1;
}

.z-2{
    z-index: 2;
}


.footer .footer-cta .footer-cta_content .footer-cta_title {
    font-size: 1.6em;
    color: var(--bs-white);
    font-weight: 600;
}

.footer .footer-cta .footer-cta_content .footer-cta_desc {
    font-size: 1.075em;
    color: var(--bs-white);
    margin-top: 4px;
}

.footer .footer-cta .footer-cta_form {
    margin-top: 24px;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item {
    position: relative;
    overflow: hidden;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .form-control {
    width: 100%;
    border-radius: 12px;
    height: 50px;
    font-size: 1.075em;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 150px;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .form-control.is-invalid, .footer .footer-cta .footer-cta_form .was-validated .footer-cta_form__item .form-control:invalid {
    border-color: #dc3545 !important;
    background-position: right calc(.375em + 150px) center;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .footer-cta_form__button {
    position: absolute;
    top: 5px;
    right: 8px;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .footer-cta_form__button .button-theme {
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .footer-cta_form__button .button-theme:before {
    background: #006838;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .footer-cta_form__button .button-theme > span {
    color: var(--bs-white) !important;
}

.button-theme.button-theme_primary {
    background: #006838;
    border-color: #006838;
}

.footer-block {
    min-width: 150px;
    position: relative;
}

.footer-block .footer-block__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bs-white);
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: inherit;
}

.footer-block__text--sm,
.footer-block .footer-block__text,
.footer-block__text--sm a{
    color: #b4c2cf;
    font-size: 0.9rem;
    align-items: center;
    gap: 5px;
}

.footer-block + .footer-block {
    margin-top: 25px;
}

.footer a.footer-block__text {
    transition: all 0.3s ease-in-out;
}

.footer a.footer-block__text:hover {
    color: var(--bs-white);
    transform: translateX(5px);
}

.footer .footer-list li {
    margin-top: 10px;
}

.footer-block > .footer-block__text + .footer-block__text {
    margin-top: 5px;
}

.footer .footer-terms {
    padding: 20px 0;
    background-color: #07524b;
}

.footer .footer-socials a.item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: var(--bs-white);
    background-color: #1757b4;
}

.footer .footer-socials a.item:hover {
    background-color: #D18924;
    color: var(--bs-white);
}

.footer-statistical li:not(:first-child) {
    margin-left: 10px;
    padding-left: 10px;
}

.footer-statistical li:not(:first-child)::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff75;
    height: 20px;
    width: 1px;
    display: block;
}

.footer-terms {
    padding: 20px 0;
    background-color: #035b32;
}

.footer-socials a.item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: #ededed;
    background-color: #1757b4;
}

.footer-socials a.item:hover {
    background-color: #fdf3df;
    color: var(--bs-white);
}

.footer-statistical li:not(:first-child) {
    margin-left: 10px;
    padding-left: 10px;
}

.footer-statistical li:not(:first-child)::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff75;
    height: 20px;
    width: 1px;
    display: block;
}

.footer-social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.footer-social .footer-social__item{
    background: #013d8a;
}

.footer-social .footer-social_facebook {
    background-color: #013d8a;
    color: var(--bs-white) !important;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-600);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .footer-decor {
        width: 100%;
    }


}


.idex-alo-phone {
    right: -119px;
    top: auto;
    bottom: 440px;
    zoom: 0.8;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-img-circle {
    background-color: #e9393b !important;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-circle {
    border-color: #e9393b !important;
    opacity: 0.5;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-circle-fill {
    background-color: #e9393b !important;
    opacity: 0.75 !important;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-img-circle, .idex-alo-phone.idex-alo-green:hover .idex-alo-ph-img-circle {
    background-color: #81d742 !important;
}

.idex-alo-phone.idex-alo-hover .idex-alo-ph-circle,
.idex-alo-phone:hover .idex-alo-ph-circle {
    border-color: #81d742 !important;
    opacity: 0.5;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-circle-fill,
.idex-alo-phone.idex-alo-green:hover .idex-alo-ph-circle-fill {
    background-color: #81d742 !important;
    opacity: 0.75 !important;
}

.idex-alo-phone {
    position: fixed;
    visibility: hidden;
    background-color: transparent;
    width: 200px;
    cursor: pointer;
    z-index: 200 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility .5s;
    -moz-transition: visibility .5s;
    -o-transition: visibility .5s;
    transition: visibility .5s;
    left: 5px;
    bottom: 0;
}

.idex-alo-phone.idex-alo-show {
    visibility: visible;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

.idex-alo-phone.idex-alo-static {
    opacity: 0.6;
}

.idex-alo-phone.idex-alo-hover, .idex-alo-phone:hover {
    opacity: 1;
}

.idex-alo-ph-circle {
    width: 160px;
    height: 160px;
    bottom: -50px;
    right: 44%;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    border: 2px solid #bfebfc 9;
    opacity: .1;
    -webkit-animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.idex-alo-phone.idex-alo-active .idex-alo-ph-circle {
    -webkit-animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
    animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-static .idex-alo-ph-circle {
    -webkit-animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
    animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-hover .idex-alo-ph-circle, .idex-alo-phone:hover .idex-alo-ph-circle {
    border-color: #00aff2;
    opacity: 0.5;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-circle, .idex-alo-phone.idex-alo-green:hover .idex-alo-ph-circle {
    border-color: #75eb50;
    border-color: #baf5a7 9;
    opacity: 0.5;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-circle {
    border-color: #00aff2;
    border-color: #bfebfc 9;
    opacity: 0.5;
}

.idex-alo-ph-circle-fill {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: 60%;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .1;
    -webkit-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.idex-alo-phone.idex-alo-active .idex-alo-ph-circle-fill {
    -webkit-animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
    animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-static .idex-alo-ph-circle-fill {
    -webkit-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    opacity: 0 !important;
}

.idex-alo-phone.idex-alo-hover .idex-alo-ph-circle-fill, .idex-alo-phone:hover .idex-alo-ph-circle-fill {
    background-color: rgba(0, 175, 242, 0.5);
    background-color: #00aff2 9;
    opacity: 0.75 !important;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-circle-fill, .idex-alo-phone.idex-alo-green:hover .idex-alo-ph-circle-fill {
    background-color: rgba(117, 235, 80, 0.5);
    background-color: #baf5a7 9;
    opacity: 0.75 !important;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-circle-fill {
    background-color: rgba(0, 175, 242, 0.5);
    background-color: #a6e3fa 9;
    opacity: 0.75 !important;
}

.idex-alo-ph-img-circle {
    z-index: 9;
    width: 60px;
    height: 60px;
    bottom: 0px;
    right: 70%;
    position: absolute;
    background: rgba(30, 30, 30, 0.1) url(../images/phone.png) no-repeat center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.idex-alo-phone.idex-alo-active .idex-alo-ph-img-circle {
    -webkit-animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
    animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-static .idex-alo-ph-img-circle {
    -webkit-animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
    animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-hover .idex-alo-ph-img-circle, .idex-alo-phone:hover .idex-alo-ph-img-circle {
    background-color: #00aff2;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-img-circle, .idex-alo-phone.idex-alo-green:hover .idex-alo-ph-img-circle {
    background-color: #75eb50;
    background-color: #75eb50;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-img-circle {
    background-color: #00aff2;
    background-color: #00aff2;
}

@-moz-keyframes idex-alo-circle-anim {
    0% {
        -moz-transform: rotate(0) scale(0.5) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: 0.1;
    }
    30% {
        -moz-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: 0.5;
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: 0.1;
    }
}

@-webkit-keyframes idex-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        -webkit-opacity: 0.1;
    }
    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: 0.5;
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: 0.1;
    }
}

@-o-keyframes idex-alo-circle-anim {
    0% {
        -o-transform: rotate(0) kscale(0.5) skew(1deg);
        -o-opacity: 0.1;
    }
    30% {
        -o-transform: rotate(0) scale(0.7) skew(1deg);
        -o-opacity: 0.5;
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        -o-opacity: 0.1;
    }
}

@-moz-keyframes idex-alo-circle-fill-anim {
    0% {
        -moz-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        -moz-transform: rotate(0) -moz-scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        -moz-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-webkit-keyframes idex-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-o-keyframes idex-alo-circle-fill-anim {
    0% {
        -o-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        -o-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-moz-keyframes idex-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes idex-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);
    }
}

@-o-keyframes idex-alo-circle-img-anim {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@-moz-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@-o-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@-moz-keyframes idex-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-webkit-keyframes idex-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-o-keyframes idex-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@keyframes idex-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-moz-keyframes idex-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-webkit-keyframes idex-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-o-keyframes idex-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@keyframes idex-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-moz-keyframes idex-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes idex-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@-o-keyframes idex-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes idex-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

a.hotline-mb {
    display: none;
}

.phone {
    position: relative;
}

.phone-hotline {
    background: #9b2022;
    padding: 13px 30px 13px 70px;
    text-align: center;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0px;
    border-radius: 100px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.phone-hover {
    width: 260px;
    opacity: 0.9;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.phone-hotline a {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -moz-transition: all 1s ease;
}

.phone-hotline a:hover {
    color: #fff;
    text-decoration: none;
}

.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;
}

#sec_camket {
    width: 100%;
    background: url(../img/bg_camket.jpg) no-repeat left top;
    padding: 0;
    display: grid;
    height: 185px;
}

#sec_camket .box_camket {
    position: relative;
}

#sec_camket .box_camket:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    background: url(../img/img_camket.png) no-repeat;
    width: 181px;
    height: 215px;
}

@media only screen and (max-width: 768px) {
    #sec_camket .box_camket:after {
        width: 80px;
        height: 95px;
        background-size: 100%;
        top: unset;
        left: unset;
        bottom: 0;
        z-index: 1;
    }
}

#sec_camket .box_camket .col_ck_left {
    display: block;
    width: 50%;
    float: left;
    display: table;
    height: 185px;
}

@media only screen and (max-width: 768px) {
    #sec_camket .box_camket .col_ck_left {
        display: none;
    }
}

#sec_camket .box_camket .col_ck_left ul {
    height: 185px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
}

#sec_camket .box_camket .col_ck_left ul li {
    padding: 3px 0;
}

#sec_camket .box_camket .col_ck_left ul li:nth-child(1) {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
}

#sec_camket .box_camket .col_ck_left ul li:nth-child(2) {
    background: #006838;
    color: #000;
    padding: 5px 25px;
    font-size: 22px;
    display: inline-table;
    border-radius: 4px;
    font-weight: 700;
}

#sec_camket .box_camket .col_ck_right {
    width: 50%;
    float: left;
    display: table;
    height: 185px;
}

@media only screen and (max-width: 768px) {
    #sec_camket .box_camket .col_ck_right {
        width: 100%;
    }
}

#sec_camket .box_camket .col_ck_right ul {
    list-style: none;
    height: 185px;
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    padding-left: 120px;
}

@media only screen and (max-width: 768px) {
    #sec_camket .box_camket .col_ck_right ul {
        padding-left: 0;
        position: relative;
        z-index: 2;
    }
}

#sec_camket .box_camket .col_ck_right ul li span {
    font-size: 18px;
    font-weight: 700;
    color: #fefc62;
    margin-bottom: 10px;
    display: inline-table;
}

#sec_camket .box_camket .col_ck_right ul li p {
    padding: 2px 0 2px 25px;
    background: url(../img/ic01.png) no-repeat 0px 6px;
}

.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: #006838;
    color: #fff;
}

.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;
}

.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;
}

.blog-item .blog-info .blog-title {
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    height: 65px;
    text-transform: uppercase;
    overflow: hidden;
}

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

.blog-item .blog-info .blog-short {
    background-color: #fff;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    height: 85px;
    overflow: hidden;
    margin-bottom: .5rem;
}

.blog-item .blog-info .readmore {
    display: inline-block;
    background-color: #f15a29;
    color: #fff;
    font-weight: bold;
    padding: .25rem .75rem;
    border-radius: 5rem;
}

.single-blog {
    margin-top: .75rem;
}

.single-blog .title {
    padding: 1rem 0;
    color: #006838;
    font-weight: bold;
    text-align: left;
}

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

.header-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #006838;
    margin-bottom: 0;
}

.header-section:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    margin: 0 auto;
    background-color: #006838;
    z-index: 7;
}

.sidebar {
    background: #ffffff;
    padding: 15px;
    border-radius: 20px;
}

.sidebar .section-heading{
    margin-bottom: 10px !important;
}

.sidebar .heading-title{
    font-size: 1.6rem !important;
}

.sidebar .list-posts > a {
    font-size: 0.95rem;
    color: #5c727d;
    font-weight: 500;
    display: block;
    margin-top: 10px;
    padding-bottom: 10px;

}

.sidebar .list-posts > a:not(:last-child) {
    border-bottom: dashed 1px var(--bs-gray-400);
}

.sidebar .list-posts > a > strong {
    display: block;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.sidebar .list-posts > a:hover > strong {
    color: #006838;
}

.sidebar .list-posts > a > small {
    display: flex;
    align-items: baseline;
    color: var(--bs-gray-600);
    font-weight: 400;
}

.sidebar .list-category > a {
    display: block;
    padding: 10px 10px 5px 0;
    font-weight: 500;
    color: #42424a;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
}

.sidebar .list-category > a:hover {
    color: #006838;
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
}


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

.module-banggia {
    padding: 0 0px;
}

.module-banggia table {
    margin-bottom: 0;
}

.module-banggia-title {
    border-bottom: 4px solid #e74c3c;
    padding-bottom: 5px;
    font-size: 22px;
    color: #006838;
}

.module-info {
    padding: 60px 0 30px 0;
    background: linear-gradient(45.52deg, #008a4b, #085331);
}

.section-main__layer .layer {
    position: absolute;
    z-index: 2;
}

.section-main__layer .layer-1 {
    top: 0;
    left: -300px;
}

.section-main__layer .layer-1 > img {
    opacity: 0.2;
}

.block-counter .block-counter__top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #ffffff24;
    z-index: 3;
}

.module-info .section-main .row > .col:last-child .block-counter__top {
    border-right: none;
}

.block-counter .block-counter__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    padding: 15px;
    background: #ffffff;
}

.block-counter .block-counter__icon img {
    transition: 0.3s ease-in-out;
}

.block-counter:hover .block-counter__icon img {
    transform: rotateY(180deg);
}

.block-counter .block-counter__digit {
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffc927;
    position: relative;
}

.block-counter .block-counter__title {
    font-weight: 500;
    font-size: 0.95rem;
    color: #e7e5e5;
}

@media (max-width: 1280px) {
    .block-counter .block-counter__digit {
        font-size: 1.3rem;
    }

    .block-counter .block-counter__title {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {

    .block-counter .block-counter__digit {
        align-items: center;
        justify-content: center;
    }
}


@media screen and (max-width: 768px) {
    .module-banggia {
        padding: 15px;
    }
}
.section-hero .swiper .swiper-wrapper .swiper-slide .hero-image .pseudo:before {
    content: "";
    position: relative;
    display: block !important;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .15);
    z-index: 1;
    pointer-events: none
}

.section-hero .hero-pagination {
    right: 45px;
    left: unset;
    bottom: unset;
    width: auto;
    z-index: 10;
    gap: 15px;
}

.section-hero .hero-pagination .swiper-pagination-bullet {
    color: var(--bs-gray-200);
    font-size: 1.25em;
    font-weight: 400;
    text-align: center;
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
    opacity: .7;
    background: transparent;
    -webkit-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
    margin: 0;
    position: relative;
}

.section-hero .hero-pagination .swiper-pagination-bullet:before {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 0;
    height: 1px;
    display: block;
    content: "";
    background: var(--bs-white);
    opacity: .7;
    -webkit-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.section-hero .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: var(--bs-white);
    opacity: 1;
}

.section-hero .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    width: 25px;
}


@media (max-width: 576px) {
    .section-hero .hero-pagination {
        display: none;
    }
}

/*# tin tức */

.article-card .card-header:before {
    content: "";
    background-color: var(--bs-white);
    height: calc(100% + 150px);
    left: -40%;
    position: absolute;
    top: -75px;
    transform: rotate(35deg);
    transition: all 2600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 1;
    opacity: 0;
}


.article-card:hover .card-header::before {
    left: 140%;
    transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}


.article-card .limit {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--bs-white);
    line-height: 24px;
    transition: 0.3s all ease-in-out;
}

.text-article {
    z-index: 11;
    font-weight: 800;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--bs-white);
}

.article-card .article-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.article-card .stretched-link:after {
    z-index: 12;
}


/* section-intro */

.section-gap {
    padding: 40px 0;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading .heading-sub {
    color: #006838;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2em;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-heading .heading-title {
    color: var(--bs-black);
    font-size: 2.3em;
    font-weight: 700;
    line-height: 46px;
}

.section-heading .heading-title:after {
    content: "";
    left: -13px;
    position: absolute;
    top: -5px;
    height: 30px;
    width: 30px;
    opacity: 0.30;
    border-radius: 50%;
    z-index: 1;
    display: block;
    background-color: #006838;
}

.section-heading .heading-desc {
    margin-top: 12px;
    font-size: 1.1em;
    color: #575656;
}

.section-heading .heading-desc p:last-child,
.section-heading .heading-desc ol:last-child,
.section-heading .heading-desc ul:last-child {
    margin-bottom: 0;
}

.section-heading .heading-desc ol,
.section-heading .heading-desc ul {
    padding-left: 0;
}

.section-heading .heading-desc ol li,
.section-heading .heading-desc ul li {
    list-style: none;
}

.section-heading .heading-desc ol li:before,
.section-heading .heading-desc ul li:before {
    display: inline-block;
    margin-right: 6px;
    font-family: "Font Awesome 5 Pro";
    color: #006838;
    content: "\f1bb";
    font-size: 1.075em;
    font-weight: 900;
}

.section-heading .heading-desc ol li + li,
.section-heading .heading-desc ul li + li {
    margin-top: 6px;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .section-heading .heading-title {
        font-size: 2em;
        line-height: 38px;
    }
}

@media screen and (max-width: 992px) {
    .section-heading {
        margin-bottom: 20px;
    }

    .section-heading .heading-sub {
        font-size: 1em;
    }

    .section-heading .heading-title {
        margin-bottom: 20px;
        font-size: 1.5em;
        line-height: 26px;
    }

    .section-heading .heading-desc {
        font-size: 1em;
    }

    .section-introduction .section-heading .heading-desc{
        text-align: justify;
    }
}


.text-decor {
    color: #c9ab8170;
    width: max-content;
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(1.375rem, 4.2vw, 4rem);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: left;
}

@media (max-width: 1024px) {
    .text-decor {
        font-size: clamp(1.75rem, 6.5vw, 2.7rem);
    }
}

@media (max-width: 768px) {
    .text-decor {
        font-size: clamp(1.75rem, 9vw, 4.3rem);
    }
}

@media (max-width: 480px) {
    .text-decor {
        font-size: clamp(1.5rem, 11vw, 2.4rem);
    }
}

@media (max-width: 375px) {
    .text-decor {
        font-size: clamp(1.5rem, 13vw, 2.2rem);
    }
}

/*# vision */

.vision-image > img {
    position: relative;
    z-index: 2;
    clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
}

.vision-image::after {
    position: absolute;
    content: '';
    background: linear-gradient(45.52deg, #008a4b, #085331);
    height: calc(100% - 40px);
    width: 100%;
    clip-path: polygon(15% 0, 100% 0%, 81% 100%, 0% 100%);
    /* -webkit-transform: skewx(345deg); */
    -ms-transform: skewx(345deg);
    /* transform: skewx(345deg); */
    bottom: 0;
    top: 40px;
    right: -20px;
    z-index: 1;
}

.section-nav-tab {
    border-bottom: 2px solid #6D6E71;
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    position: relative;
}

#pills-tabContent {
    min-height: 220px;
}

.section-nav-tab .nav-item {
    flex: 1 0 0;
    position: relative;
}

.section-nav-tab .nav-item .nav-link {
    background: transparent;
    border: 0;
    border-radius: 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    color: #000;
    transition: .2s all ease;
    padding-bottom: 14px;
    white-space: nowrap;
}

.section-nav-tab .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 4px;
    background-color: #006838;
    width: 0;
    transition: .3s all ease;
}

.section-vision .section-main .section-nav-tab .nav-item .nav-link.active {
    color: #232323;
    font-weight: 700;
}

.section-vision .section-main .section-nav-tab .nav-item .nav-link.active::before {
    width: 100%;
}

.tab-content .tab-pane .section-heading .heading-title{
    font-size: 1.5rem !important;
}


#pills-tabContent {
    min-height: 400px !important;
}

.section-main .tab-content .section-heading .heading-desc ul {
    list-style: none;
    padding-left: 0;
}

.section-main .tab-content .section-heading .heading-desc ul > li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.section-main .tab-content .section-heading .heading-desc ul > li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #006838;
    font-size: 18px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .vision-image::after{
        right: -10px;
    }
    #pills-tabContent {
        min-height: 250px !important;
    }
}


/*# SECTION-ARCTICLE */

.page-main, .page-category{
    background-color: rgb(171 130 115 / 10%);
}

.section-article .article-bre {
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #006838;
}

.section-article .article-bre .bre-heading {
    position: relative;
    z-index: 3;
    font-size: 1.6em;
    font-weight: 700;
}

.section-article .article-bre .bre-link {
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.section-article .article-bre .bre-link a:hover {
    color: #fdf3df !important;
}


.section-article .article-bre .bre-heading:after {
    content: "";
    left: -13px;
    position: absolute;
    top: -5px;
    height: 30px;
    width: 30px;
    opacity: 0.30;
    border-radius: 50%;
    z-index: -1;
    display: block;
    background-color: #006838;
}


.blog-card__image .mark__img {
    width: 100%;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
}

.blog-card__image .mark__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease-in-out;
    transform-origin: center;
    will-change: transform;
}

.blog-card:hover .blog-card__image .mark__img img {
    transform: scale(1.05);
}

.blog-card .blog-card__image:before {
    content: "";
    background-color: var(--bs-white);
    height: calc(100% + 150px);
    left: -40%;
    position: absolute;
    top: -75px;
    transform: rotate(35deg);
    transition: all 2600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 1;
    opacity: 0;
}

.blog-card:hover .blog-card__image:before {
    left: 140%;
    transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.blog-card .card-body {
    color: var(--bs-black);
    font-size: 17px;
    font-weight: 600;
}

.blog-card .card-body .blog-card__text {
    color: var(--bs-gray-600);
    font-weight: 500;
}

.limit-line-2 {
    --lines: 2;
    --line-height: 1.5;
    --font-size: 0.95rem;
    --calc-max-height: calc(var(--line-height) * var(--lines) * var(--font-size) - 2);
    display: inline-block;
    display: -webkit-box;
    width: 100%;
    max-height: var(--calc-max-height);
    height: var(--calc-max-height);
    font-size: var(--font-size);
    line-height: var(--line-height);
    line-clamp: var(--lines);
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}


.limit-line-3 {
    --lines: 3;
    --line-height: 1.5;
    --font-size: 0.95rem;
    --calc-max-height: calc(var(--line-height) * var(--lines) * var(--font-size) - 2);
    display: inline-block;
    display: -webkit-box;
    width: 100%;
    max-height: var(--calc-max-height);
    height: var(--calc-max-height);
    font-size: var(--font-size);
    line-height: var(--line-height);
    line-clamp: var(--lines);
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blog-card .card-body .blog-card__action {
    color: var(--bs-gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    width: max-content;
}

.blog-card .card-body .blog-card__action::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    background-color: #006838;
}

.blog-card:hover .blog-card__action::after {
    width: 100%;
}

.blog-card:hover .blog-card__action {
    color: #006838;
}


@media (min-width: 768px) {
    .blog-card .card-body .blog-card__action {
        padding-top: 10px;
    }
}

@media (max-width: 576px) {
    .page-category .blog-card__image .mark__img {
        width: 100%;
        height: 150px;
    }
}


/*# SECTION-ARCTICLE-NEW */


.newpost-card {
    border: 1px solid #dae5ec;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.newpost-card__date {
    color: var(--bs-gray-600);
    padding: 8px 0;
    border-radius: 3px;
    z-index: 5;
    top: 5px;
    font-weight: 500;
    font-size: 0.8em;
}

.newpost-card__day {
    font-weight: 700;
    font-size: 1.05em;
    margin-bottom: 3px;
}

.newpost-card__year {
    font-size: 0.75em;
    white-space: nowrap;
    font-weight: 500;
}

.newpost-card__ratio > img {
    -webkit-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.newpost-card:hover .newpost-card__ratio > img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.newpost-card__body {
    padding: 1rem 0 0;
}

.newpost-card__title {
    font-size: 1.15em;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    color: var(--bs-gray-800);
    -webkit-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

.newpost-card:hover .newpost-card__title{
    color: #006838;
}


.section-articles__right .newpost-card {
    flex-direction: row;
    gap: 20px;
}

.section-articles__right .card-body {
    padding-top: 0 !important;
}

.section-articles__right .newpost-card__image {
    flex-shrink: 0;
    width: 220px;
}

.section-articles__right .newpost-card__image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
}

.section-articles__right .newpost-card__link {
    display: none;
}

@media (max-width: 576px) {
    .section-articles__right .newpost-card__image {
        width: 120px;
        flex-shrink: 0;
    }

    .newpost-card__title {
        font-size: 1.05em;
        line-height: 1.5;
    }

    .section-articles__left .card-article__desc,
    .section-articles__right .card-article__desc {
        display: none !important;
    }

}

/*# bre-thumb */

.bre-thumb {
    padding: 70px 0;
}
.bre-thumb::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #11231ae3;
}
.bre-thumb .bre-heading {
    position: relative;
    z-index: 3;
    font-size: 2.2em;
    font-weight: 700;
}
.bre-thumb .bre-link {
    position: relative;
    z-index: 2;
    font-weight: 700;
}
.bre-thumb .bre-link a:hover {
    color: #fdf3df !important;
}

.bre-thumb .bre-heading:after {
    content: "";
    left: -13px;
    position: absolute;
    top: -5px;
    height: 30px;
    width: 30px;
    opacity: 0.30;
    border-radius: 50%;
    z-index: -1;
    display: block;
    background-color: #006838;
}

.bre-thumb .breadcrumb > .breadcrumb-item {
    position: relative;
    z-index: 3;
    color: var(--bs-gray-200);
    position: relative;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease-in-out;
}

.bre-thumb .breadcrumb > .breadcrumb-item > a {
    color: var(--bs-white);
}

.bre-thumb .breadcrumb > .breadcrumb-item > a:hover {
    color: #006838;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-gray-200);
}

.bre-thumb .breadcrumb .breadcrumb-item:last-child {
    display: none !important;
}

/*# page */

.page-article .page-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-main__content,
.page-article .page-shares {
    padding-bottom: 1rem;
}

.page-article .page-shares .page-metas,
.page-article .page-shares .list-socials {
    display: inline-flex;
    align-items: center;
    margin: 0 -.25rem;
    font-size: 0.9rem;
}

.page-article .page-shares .list-socials li > .fb_iframe_widget{
    bottom: -4px;
}

.page-article .page-shares .page-metas > .meta,
.page-article .page-shares .list-socials > li {
    display: inline-block;
    padding: 0;
}

.page-article .page-shares .list-socials > li:last-child {
    margin-top: 5px;
}

.page-article .page-shares .page-metas > .meta {
    color: var(--bs-gray-600);
}

.page-article .page-shares .page-metas > .meta span {
    margin-left: 0.25rem;
}

.page-article .page-shares .page-metas > .meta + .meta {
    display: inline-grid;
    grid-template-columns: 0 1fr;
    grid-gap: 0.625rem;
    align-items: center;
}

.page-article .page-shares .page-metas > .meta + .meta::before {
    content: '/';
}

.page-main__content .content-shortDesc {
    padding: 20px;
    background-color: #008a4b12;
    margin-bottom: 1rem;
    border-radius: 5px;
    border-left: 3px solid #006838;
    color: var(--bs-gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}


@media (min-width: 991px) {
    .header.is-scroll + main .aside-widget-sticky {
        position: sticky;
        top: 125px;
        transition: all 0.3s ease-in-out;
    }

    .page-article .page-title {
        font-size: 1.6rem;
    }
}

.page-contact__left {
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 70, 108, .09);
    box-shadow: 0 0 50px 0 rgba(0, 70, 108, .09);
    padding: 1.8em;
}

.page-contact .heading-title-2 {
    font-size: 2em;
}

.page-contact__desc {
    font-size: 1.15em;
    color: var(--bs-gray-600);
}

.contact-right__icon {
    width: 55px;
    height: 55px;
    background-color: #006838;
    color: var(--bs-white);
    border-radius: 50%;
    font-size: 1.3em;
}

.contact-right__content .title {
    font-weight: 700;
    color: #006838;
    font-size: 1.2em;
    margin-bottom: 3px;
}

.contact-right__content .text {
    color: var(--bs-gray-600);
    font-weight: 500;
    -webkit-transition: all 3s ease-in-out;
    -o-transition: all 3s ease-in-out;
    transition: all 3s ease-in-out;
}

.contact-right__content .text:hover {
    color: var(--bs-gray-700);
}

.contact-right .form-label {
    font-weight: 600;
    font-size: 0.95em;
}

.contact-right .form-input {
    width: 100%;
    height: 45px;
    font-weight: 500;
    font-size: 1.05em;
    border: 1px solid rgba(223, 226, 231, 0.71);
}


.contact-right .form-textarea {
    resize: none;
}

.contact-map iframe {
    max-width: 100% !important;
    width: 100% !important;
    height: 450px !important;
}

input:focus, select:focus, textarea:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    border-color: #006838 !important;
}

/* Bỏ hoàn toàn style validation của Bootstrap */
.was-validated .form-control {
    background-image: none !important;
}

.was-validated .form-control:invalid {
    border-color: #dc3545 !important;
}

.was-validated .form-control:valid {
    border-color: #ced4da !important;
}

@media (max-width: 576px) {
    .page-contact__left {
        padding: 1em;
    }

    .contact-right__icon {
        width: 45px;
        height: 45px;
    }

}

.button-theme {
    padding: 8px 26px;
    border-radius: 6px;
    font-weight: 700;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
    -webkit-transition: all 3s ease-in-out;
    -o-transition: all 3s ease-in-out;
    transition: all 3s ease-in-out;
    font-size: 1.075em;
    overflow: hidden;
    border: 0;
    outline: none;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button-theme.button-theme_small {
    padding: 6px 16px;
    font-size: 1em;
}

.button-theme_primary {
    background: #006838;
    border-color: #006838;
    color: var(--bs-white);
}

.button-theme_primary:hover {
    background: #006839;
    border-color: #006838;
    color: var(--bs-white);
}

.button-theme:disabled,
.button-theme.disabled,
.button-theme.swiper-button-disabled {
    opacity: .7;
    cursor: not-allowed;
    pointer-events: none;
    background: #006838;
    border-color: #006838;
    color: var(--bs-white);
}

.sw-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 1.5rem 0;
}

.custom-bullet {
    width: 0.625rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: var(--bs-gray-500);
    margin: 0 0.25rem;
    transition: all 0.3s ease-in-out;
    transform-origin: 50% 100%;
    transform: scaleY(50%);
}

.custom-bullet.swiper-pagination-bullet-active {
    border-radius: 7px;
    width: 2em;
    background-color: #006838;
}


