@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lalezar&display=swap');
/*
Common style
*/

body {
    font-family: 'Inter', sans-serif;
    color: #414141;
    font-size: 25px;
}

a {
    transition: all .3s ease-in-out;
}

img {
    max-width: 100%;
    width: auto;
}

input, select { font-size: 100%; }

input[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

.p-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.p-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pb-40 {
    padding-bottom: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media (print), (prefers-reduced-motion: reduce) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

@-webkit-keyframes stuckMoveDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes stuckMoveDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.container_1920 {
    max-width: 1670px;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}


.custom-tooltip {
    --bs-tooltip-bg: #797979;
    --bs-tooltip-max-width: 500px;
    --bs-tooltip-tooltip-opacity: 1;
}

.icon_menu span {
    width: 38px;
    height: 3px;
    border-radius: 5px;
    background-color: #414141;
    display: block;
    margin-bottom: 10px;
}

header .header_top {
    background-color: #F4F4F4;
}

header .header_top .item {
    /* width: 100%; */
    position: relative;
}

header .header_top .item:first-child {
    width: calc(100% - 90px);
}

header .header_top .item:last-child {
    flex: 0
}

header .header_top .item p {
    color: #797979;
    margin-bottom: 0;
    font-size: 18px;
}

header .header_top .item .socical_list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 7px;
}

header .header_top .item .socical_list li {
    margin: 0 10px;
    position: relative;
    padding-right: 10px;
}

header .header_top .item .socical_list li:last-child::before {
    display: none;
}

header .header_top .item .socical_list li::before {
    content: "";
    height: 20px;
    width: 1px;
    background-color: #D6D6D6;
    position: absolute;
    top: 11px;
    right: -6px;
}

header .header_main {
    max-width: 1800px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

header .header_main .logo {
    max-width: 245px;
    width: 100%;
}

header .header_main .logo .logo_link {
    text-decoration: none;
}

header .header_main .logo .logo_link img {
    max-width: 106px;
}

header .header_main .logo .logo_link h1 {
    margin-left: -20px;
    margin-bottom: 0;
}

header .header_main .logo .logo_link h1 span {
    display: block;
}

header .header_main .logo .logo_link h1 span:first-child {
    color: #46B580;
    font-size: 36px;
    font-family: 'Lalezar', cursive;
    line-height: 28px;
}

header .header_main .logo .logo_link h1 span:last-child {
    font-size: 16px;
    color: #696969;
}

header .header_main .menu_main {
    width: 100%;
    margin-left: 150px;
}

header .header_main .menu_main ul {
    list-style: none;
    margin-bottom: 0;
}

header .header_main .menu_main ul li {
    position: relative;
}

header .header_main .menu_main>ul>li {
    margin: 0 50px;
    position: relative;
}

header .header_main .menu_main ul li>a {
    text-decoration: none;
    color: #414141;
    font-size: 22px;
    display: flex;
    align-items: center;
}

header .header_main .menu_main ul li.active>a {
    font-weight: 700;
    color: #34AD73;
}

header .header_main .menu_main ul li a:hover {
    color: #34AD73;
}

header.header-solid {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
    -webkit-animation: stuckMoveDown .6s;
    animation: stuckMoveDown .6s;
    background-color: #fff;
    height: 104.5px;
    position: fixed;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 6;
    max-width: 100%;
}

/*submenu*/
header .header_main .menu_main ul li ul {
    display: block;
    min-width: 225px;
    position: absolute;
    top: 100%;
    z-index: 9999;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .1s linear, transform .1s linear;
    transition: opacity .1s linear, transform .1s linear;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    list-style: none;
    padding: 0;
}

header .header_main .menu_main ul li.menu-item-has-children>a::after {
    content: '';
    position: relative;
    width: 9px;
    height: 5px;
    margin-left: 8px;
    /* background-image: url(./../images/arr_down_icon.svg); */
}

header .header_main .menu_main ul li ul li a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid #d6d6d6;
}

header .header_main .menu_main ul li ul li a:hover {
    background-color: #34AD73;
    color: #fff;
}

header .header_main .menu_main ul li ul li:last-child a {
    border-bottom: 0;
}

header .header_main .menu_main ul li:hover ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    transform: translate(0);
    display: block;
    box-shadow: 3px 3px 45px 0 rgba(0, 0, 0, .05);
}

/*search form*/

header .header_main .search_form {
    display: flex;
    align-items: center;
}

header .header_main .search_form input {
    border: 1px solid #D9D9D9;
    border-radius: 28px;
    font-size: 18px;
    padding: 10px 15px 10px 50px;
    background: transparent url(./../images/icon_search.svg) no-repeat 13px center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
}

header .header_main .search_form input:focus,
header .header_main .search_form input:focus-visible {
    border: 1px solid #34AD73;
}

/*--- Home Page ---*/
/*
* Banner slider
*/
.home_banner {
    max-height: 770px;
    /* height: calc(100vw * 0.4010416667); */
    position: relative;
}

.home_banner .owl-carousel .item {
    /* height: calc(100vw * 0.4010416667); */
    z-index: 2;
    position: relative;
}

.home_banner .owl-carousel .item img {
    width: 100%;
}

.home_banner .owl-carousel .owl-dots {
    margin-top: -46px !important;
    z-index: 2;
    position: relative;
    margin-bottom: 28px;
    height: 18px;
    border: none;
}

.home_banner .owl-carousel .owl-dots .owl-dot {
    border: none;
    outline: none;
}

.home_banner .owl-carousel .owl-dots .owl-dot span {
    border: 1px solid #ffff;
    width: 18px;
    height: 18px;
    margin: 0 10px 0;
    background: none;
}

.home_banner .owl-carousel .owl-dots .owl-dot.active span {
    background: #fff;
}

.home_banner .owl-carousel .owl-dots .owl-dot:hover span {
    background: #fff;
}

.home_banner .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.home_banner .owl-carousel .owl-nav .owl-prev,
.home_banner .owl-carousel .owl-nav .owl-next {
    position: absolute;
    z-index: 3;
    background: none;
}

.home_banner .owl-carousel .owl-nav .owl-prev {
    left: 60px;
}

.home_banner .owl-carousel .owl-nav .owl-next {
    right: 60px;
}

/*
* Service
*/

.home_service .title {
    font-weight: 700;
    font-size: 44px;
}

.home_service .service_list {
    display: grid;
    grid-auto-rows: minmax(min-content, max-content);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 150px;
}

.home_service .service_list .item .photo {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.home_service .service_list .item .photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.home_service .service_list .item .title {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    margin: 25px 0;
}

.home_service .service_list .item .summary {
    text-align: justify;
}

.home_service .service_list .item .summary p {
    margin-bottom: 0;
}

/*Feature*/
.home_feature {
    background-color: #F3EFEE;
}

.home_feature .list_feat .feature_item:last-child {
    margin-bottom: 0;
}

.home_feature .feature_item {
    display: flex;
    margin-bottom: 30px;
}

.home_feature .feature_item .icon {
    margin-right: 30px;
    max-width: 74px;
    display: flex;
    width: 100%;
    justify-content: center;
}

.home_feature .feature_item .desc .title {
    margin: 0;
    font-weight: 600;
    color: #414141;
    line-height: 39px;
}

.home_feature .feature_item .desc .summary {
    line-height: 29px;
}

.home_feature .feature_item .desc .summary p {
    margin-bottom: 0;
}

/*Home about*/

.home_about {
    padding: 130px 0;
}

.home_about .title {
    color: #34AD73;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 10px;
}

.home_about .desc {
    max-width: 829px;
    width: 100%;
}

.home_about .desc p {
    text-align: justify;
    font-size: 32px;
}

.home_about .desc a.btn {
    background: #46B580;
    border-radius: 8px;
    width: 258px;
    height: 66px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 26px;
    line-height: 31px;
    color: #ffff;
    margin-top: 75px;
    transition: all .3s ease-in-out;
}

.home_about .desc a.btn svg {
    margin-right: 10px;
}

.home_about .desc a.btn:hover {
    opacity: 0.7;
}

/*home statistical*/
.home_statistical {
    background-color: #46B580;
}

.home_statistical .list_statistical {
    display: flex;
    justify-content: center;
}

.home_statistical .list_statistical .item {
    width: 100%;
    text-align: center;
    display: flex;
}

.home_statistical .list_statistical .item .title {
    font-weight: 700;
    font-size: 44px;
    color: #fff;
    margin: 10px 0;
}

.home_statistical .list_statistical .item .note {
    font-weight: 500;
    font-size: 25px;
    color: #fff;
    margin-bottom: 0;
}

.home_statistical .list_statistical .item:first-child {
    max-width: 280px;
}

.home_statistical .list_statistical .item:first-child .content {
    max-width: 190px;
}

.home_statistical .list_statistical .item:nth-child(2),
.home_statistical .list_statistical .item:nth-child(3) {
    justify-content: center;
}

.home_statistical .list_statistical .item:nth-child(2) .content {
    max-width: 240px;
    max-width: 305px;
}

.home_statistical .list_statistical .item:last-child {
    justify-content: right;
}

/*Our partner*/
.home_ourpartner .title_main {
    font-weight: 700;
    font-size: 44px;
    margin-bottom: 80px;
}

.home_ourpartner .owl-carousel .item {
    height: 100%;
    max-height: 129px;
    width: auto;
    position: relative;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.home_ourpartner .owl-carousel .item img {
    max-width: 100%;
    display: block;
    object-fit: scale-down;
    height: 127px;
}

.home_ourpartner .owl-carousel .owl-nav {
    position: absolute;
    top: 30%;
    width: 100%;
}

.home_ourpartner .owl-carousel .owl-nav .owl-prev {
    left: -60px;
}

.home_ourpartner .owl-carousel .owl-nav .owl-next {
    right: -60px;
}

.home_ourpartner .owl-carousel .owl-nav .owl-prev,
.home_ourpartner .owl-carousel .owl-nav .owl-next {
    position: absolute;
    z-index: 3;
    background: none;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block;
}

/*Footer*/
footer {
    background: #222429;
}

footer .title {
    color: #fff;
    font-weight: 700;
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 40px;
}

footer p {
    margin-bottom: 0;
    color: #fff;
}

footer a {
    text-decoration: none;
    color: #fff;
}

footer a:hover {
    color: #34AD73;
}

footer .item {
    align-items: center;
    margin-bottom: 20px;
}

footer .item:last-child {
    margin-bottom: 0;
}

footer .item svg {
    margin-right: 15px;
}

footer .content {
    max-width: 1370px;
    margin: 0 auto;
    width: 100%;
}

footer .content .item_col:first-child {
    margin-right: 255px;
}

footer .content .item_col:last-child {
    justify-content: flex-end;
}


/* Responsive */

@media (max-width: 767.98px) {
    marquee{
        /* width: 100%; */
        display: flex;
        flex-wrap: nowrap;
        flex: 1;
        /* max-width: 240px; */
    }
    header .header_top {
        position: relative;
        width: 100%;
        display: block;
    }
    header .header_main .search_form {
        display: none;
    }

    footer .content {
        flex-direction: column;
    }

    header .header_top .item p {
        font-size: 14px;
    }

    header .header_main .menu_main {
        justify-content: right;
        max-width: 100px;
        margin-left: 0;
    }

    .home_banner .owl-carousel .owl-nav {
        top: 40%;
    }

    .home_banner .owl-carousel .owl-nav .owl-prev {
        left: 10px;
    }

    .home_banner .owl-carousel .owl-nav .owl-next {
        right: 10px;
    }

    .home_banner .owl-carousel .owl-nav .owl-next svg,
    .home_banner .owl-carousel .owl-nav .owl-prev svg {
        max-width: 15px;
    }

    .icon_menu {
        margin-right: 15px;
    }

    header .header_main .logo {
        max-width: 100%;
    }

    .home_banner .owl-carousel .owl-dots .owl-dot span {
        width: 13px;
        height: 13px;
        margin: 0 6px 0;
    }

    .home_service {
        padding: 30px 0;
    }

    .home_service .title {
        padding-bottom: 30px;
    }

    .home_service .service_list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .home_service .service_list .item .title {
        font-size: 18px;
        margin: 10px 0;
        line-height: 20px;
        padding-bottom: 0;
    }

    .home_service .service_list .item .summary p {
        font-size: 14px;
    }

    .home_feature .feature_item .desc .summary p {
        font-size: 14px;
        line-height: 20px;
    }

    .home_feature .list_feat {
        padding-top: 0px;
    }

    .home_feature .feature_item .desc .title {
        font-size: 18px;
    }

    .home_about {
        padding: 40px 0;
    }

    .home_about .title {
        font-size: 22px;
    }

    .home_about .desc p {
        font-size: 16px;
    }

    .home_about .desc a.btn {
        width: 160px;
        height: 50px;
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .home_about .desc a.btn svg {
        max-width: 15px;
    }

    .home_statistical .list_statistical {
        display: grid;
        grid-auto-rows: minmax(min-content, max-content);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 15px;
    }

    .home_statistical .list_statistical .item .title {
        font-size: 20px;
    }

    .home_statistical .list_statistical .item svg {
        max-width: 32px;
    }

    .home_statistical .list_statistical .item .note {
        font-size: 16px;
    }

    .home_statistical .list_statistical .item:first-child .content {
        max-width: 100%;
    }

    .home_statistical .list_statistical .item:first-child {
        max-width: 100%;
        justify-content: center;
    }

    .home_statistical .list_statistical .item:last-child svg {
        max-width: 28px;
        max-height: 54px;
    }

    .home_ourpartner .title_main {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .home_ourpartner {
        padding: 30px 0;
    }

    .home_ourpartner .owl-carousel .owl-nav .owl-next svg,
    .home_ourpartner .owl-carousel .owl-nav .owl-prev svg {
        max-width: 12px;
    }

    .home_ourpartner .owl-carousel .owl-nav {
        top: 20%;
    }

    footer {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    footer .title {
        font-size: 22px;
        line-height: 28px;
    }

    footer .content .item_col:first-child {
        margin-right: 0;
    }

    footer p {
        font-size: 16px;
    }

    footer .item:last-child {
        margin-bottom: 20px;
    }

    header .header_top .item .socical_list li:last-child {
        padding-right: 0;
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .icon_menu {
        display: none;
    }

    .home_ourpartner .owl-carousel .item img {
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        filter: grayscale(100%);
        filter: gray;
        /* IE 6-9 */
    }

    .home_ourpartner .owl-carousel .item img:hover {
        -webkit-filter: none;
        -moz-filter: none;
        -ms-filter: none;
        filter: none;
    }
}

@media (min-width: 1200px) and (max-width: 1700.98px) {
    .container_1920 {
        max-width: 1200px;
    }

    header .header_main {
        max-width: 1200px;
    }

    header .header_main .menu_main {
        margin-left: 30px;
    }

    header .header_main .menu_main>ul>li {
        margin: 0 20px;
    }

    header .header_main .menu_main ul li>a {
        font-size: 18px;
    }

    header .header_main .search_form input {
        padding: 8px 15px 8px 50px;
    }

    header .header_top .item p {
        font-size: 15px;
    }

    .home_service .service_list {
        grid-gap: 85px;
    }

    .home_service .service_list .item .title,
    .home_feature .feature_item .desc .title {
        font-size: 25px;
    }

    .home_service .service_list .item .summary p,
    .home_feature .feature_item .desc .summary p {
        font-size: 20px;
    }

    .home_about .title {
        font-size: 30px;
    }

    .home_about .desc p {
        font-size: 26px;
    }

    .home_about .desc {
        max-width: 670px;
    }

    .home_about {
        padding: 100px 0;
    }

    .home_about .desc a.btn {
        margin-top: 40px;
        font-size: 20px;
        width: 210px;
        height: 50px;
    }

    .home_statistical .list_statistical .item .title {
        font-size: 30px;
    }

    .home_statistical .list_statistical .item:first-child {
        max-width: 210px;
    }

    .home_statistical .list_statistical .item .note {
        font-size: 20px;
    }

    .home_statistical .list_statistical .item svg {
        max-width: 45px;
    }

    .home_service .title,
    .home_ourpartner .title_main {
        font-size: 30px;
    }

    .home_ourpartner .title_main {
        margin-bottom: 60px;
    }

    .home_ourpartner .owl-carousel .owl-nav .owl-prev {
        left: -60px;
    }

    .home_ourpartner .owl-carousel .owl-nav .owl-next {
        right: -60px;
    }

    footer .title {
        font-size: 25px;
    }

    footer p {
        font-size: 20px;
    }

    header .header_main .logo .logo_link h1 span:first-child {
        font-size: 33px;
    }

    header .header_main .logo .logo_link h1 span:last-child {
        font-size: 15px;
    }

    .home_banner .owl-carousel .item img {
        max-height: 600px;
        object-fit: cover;
    }

    .home_banner .owl-carousel .owl-dots .owl-dot span {
        border: 1px solid #ffff;
        width: 14px;
        height: 14px;
        margin: 0 8px 0;
        background: none;
    }

    .home_banner .owl-carousel .owl-nav {
        top: 47%;
    }

    .home_banner .owl-carousel .owl-nav .owl-next {
        right: 30px;
    }

    .home_banner .owl-carousel .owl-nav .owl-prev {
        left: 30px;
    }

    .home_ourpartner .owl-carousel .owl-nav{
        top: 20%;
    }
}

@media (max-width: 991.98px) {
    header .header_main .menu_main ul {
        display: none !important;
    }

    header .header_main .logo .logo_link h1 span:last-child {
        font-size: 14px;
    }

    header .header_main .search_form {
        width: 100%;
        justify-content: center;
    }

    header .header_top .item:last-child {
        flex: 0
    }

    .home_service .title {
        font-size: 26px;
    }

    .home_service .service_list {
        grid-gap: 30px;
    }

    .home_service .service_list .item .photo {
        height: 250px;
    }

    .home_ourpartner .owl-carousel .item img {
        height: 85px;
    }

    .home_ourpartner .owl-carousel .owl-nav .owl-next {
        right: 0px;
    }

    .home_ourpartner .owl-carousel .owl-nav .owl-prev {
        left: 0px;
    }

    header .header_top .item .socical_list {
        align-items: center;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    header .header_main .logo {
        max-width: 230px;
    }

    header .header_main .logo .logo_link h1 span:first-child {
        font-size: 30px;
    }

    header .header_main .logo .logo_link h1 span:last-child {
        font-size: 13.5px;
    }

    header .header_main .menu_main {
        margin-left: 50px;
    }

    header .header_main .menu_main>ul>li {
        margin: 0 10px;
    }

    header .header_main .menu_main ul li>a {
        font-size: 18px;
    }

    header .header_main .search_form {
        max-width: 255px;
        width: 100%;
    }

    header .header_main .search_form input {
        width: 100%;
    }

    .home_service .title {
        font-size: 30px;
    }

    .home_service .service_list {
        grid-gap: 50px;
    }

    .home_service .service_list .item .title {
        font-size: 25px;
    }

    .home_service .service_list .item .summary p {
        font-size: 18px;
    }

    .home_feature .feature_item .desc .summary p {
        font-size: 18px;
    }

    .home_feature .feature_item .desc .title {
        font-size: 20px;
    }

    .home_about .title {
        font-size: 30px;
    }

    .home_about .desc p {
        font-size: 18px;
    }

    .home_about .desc {
        max-width: 529px;
    }

    .home_about .desc a.btn {
        width: 190px;
        height: 50px;
        font-size: 18px;
        line-height: 31px;
        margin-top: 30px;
    }

    .home_about .desc a.btn svg {
        max-width: 15px;
        width: 100%;
    }

    .home_about {
        padding: 60px 0;
    }

    .home_statistical .list_statistical .item svg {
        max-width: 50px;
    }

    .home_statistical .list_statistical .item .title {
        font-size: 30px;
    }

    .home_statistical .list_statistical .item .note {
        font-size: 20px;
    }

    .home_statistical .list_statistical .item:first-child {
        max-width: 170px;
    }

    .home_ourpartner .title_main {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .home_ourpartner {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .home_ourpartner .owl-carousel .item img {
        height: 96px;
        max-width: 150px;
    }

    footer .title {
        font-size: 30px;
    }

    footer .content .item_col:first-child {
        margin-right: 100px;
    }

    footer p {
        font-size: 16px;
    }

    footer .content {
        max-width: 845px;
    }

    header .header_main .menu_main {
        margin-left: 11px;
    }
}


@media (min-width: 768px) and (max-width: 991.98px) {
    .home_ourpartner .title_main {
        margin-bottom: 40px;
    }

    .home_service .service_list .item .summary p {
        font-size: 16px;
    }

    .home_service .service_list .item .title {
        font-size: 20px;
        margin: 15px 0;
    }

    .home_banner .owl-carousel .owl-nav .owl-next {
        right: 30px;
    }

    header .header_main .logo .logo_link h1 span:first-child {
        font-size: 31px;
    }

    header .header_main .menu_main {
        margin-left: 50px;
        order: 2;
        justify-content: flex-end;
        max-width: 40px;
    }

    .home_banner .owl-carousel .owl-nav .owl-prev {
        left: 30px;
    }

    .home_feature .feature_item .desc .summary p {
        font-size: 16px;
        line-height: 22px;
    }

    footer p {
        font-size: 14px;
    }

    footer .title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    footer .content .item_col:first-child {
        margin-right: 50px;
    }

    footer .content .item_col .item svg {
        max-width: 20px;
    }

    footer .item {
        margin-bottom: 15px;
    }

    .home_about {
        padding: 100px 0;
    }

    .home_about .desc {
        max-width: 380px;
    }

    .home_about .desc p {
        font-size: 22px;
    }

    .home_about .title {
        font-size: 26px;
    }

    .home_about .desc p {
        font-size: 16px;
    }

    .home_about .desc a.btn {
        width: 187px;
        height: 50px;
        font-size: 16px;
        line-height: 31px;
        color: #ffff;
        margin-top: 35px;
    }

    .home_statistical .list_statistical {
        display: grid;
        grid-auto-rows: minmax(min-content, max-content);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 30px;
    }

    .home_statistical .list_statistical .item:first-child .content {
        max-width: 100%;
        width: 100%;
    }

    .home_statistical .list_statistical .item:first-child {
        max-width: 100%;
    }

    .home_statistical .list_statistical .item:nth-child(2) .content {
        max-width: 100%;
    }

    .home_statistical .list_statistical .item:last-child {
        justify-content: center;
    }

    .home_statistical .list_statistical .item .title {
        font-size: 30px;
    }

    .home_statistical .list_statistical .item .note {
        font-size: 20px;
    }

    .home_ourpartner .title_main {
        font-size: 26px;
    }

    .home_ourpartner .owl-carousel .owl-nav {
        top: 15%;
    }

    header .header_main .menu_main {
        order: 2;
        justify-content: center;
        max-width: 100px;
    }
}

/**sidebar menu mobile**/

/*
* Menu mobile
*/

#sidebar {
    position: fixed;
    z-index: 9;
    height: 100%;
    width: 300px;
    background: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 0;
    left: -300px;
    top: 0;
    transition: left 300ms ease;
}

#sidebar #mobile-nav ul {
    margin: 0;
    padding: 0;
}

#sidebar #mobile-nav>ul>li {
    position: relative;
    border-top: 0px solid trandsparent;
    border-bottom: 0px solid trandsparent;
    float: left;
    list-style: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid #444444;
    overflow: hidden;
    cursor: pointer;
    -webkit-transform: scale(0.75, 0.75);
    transform: scale(0.75, 0.75);

    transition: left 300ms linear 2s, opacity 100ms ease-in 600ms;
    transition: -webkit-transform 0.3s cubic-bezier(0.45, 1.8, 0.5, 0.75) 500ms;
    transition: transform 0.3s cubic-bezier(0.45, 1.8, 0.5, 0.75) 500ms;
    transition: transform 0.3s cubic-bezier(0.45, 1.8, 0.5, 0.75) 500ms, -webkit-transform 0.3s cubic-bezier(0.45, 1.8, 0.5, 0.75) 500ms;
    transition: border-top 40 ease 0ms, border-bottom 40 ease 0ms, box-shadow 150 ms ease-in;
}

#sidebar #mobile-nav>ul>li .form-search {
    display: flex;
    padding: 10px;
}

#sidebar #mobile-nav>ul>li .form-search input {
    border: 1px solid #fff;
    padding: 5px 10px;
    outline: none;
    width: 100%;
    font-size: 20px;
    border-radius: 0;
    border-right: 0px;
}

#sidebar #mobile-nav>ul>li .form-search input:focus {
    border: 1px solid #34AD73;
}

#sidebar #mobile-nav>ul>li .form-search .search-submit {
    padding: 7px 10px;
    background-color: #ffff;
    color: #fff;
    border: none;
    outline: none;
}

#sidebar #mobile-nav>ul>li:last-child a {
    display: none;
}

#sidebar #mobile-nav ul li a {
    display: block;
    color: #fff;
    padding: 12px 10px;
    text-decoration: none;
    font-size: 17px;
    text-transform: uppercase;
}

#sidebar #mobile-nav ul .sub-menu {
    margin: 0;
    padding: 0;

}

#sidebar #mobile-nav ul>.sub-menu>li {
    position: relative;
    float: left;
    list-style: none;
    width: 100%;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    border-top: 1px solid #e4e4e4;
}

#sidebar #mobile-nav ul>li>.sub-menu>li:first-child {
    border-top: 0;
}

#sidebar #mobile-nav ul>li>.sub-menu>li {
    border-top: 1px solid #444444
}

#sidebar #mobile-nav ul .sub-menu {
    padding-left: 10px;
}

#sidebar.nav-slide {
    left: 0 !important;
    background: linear-gradient(154deg, #5a606f 0%, #1b1d23 100%);
}

#mobile-nav>ul>.item-slide {
    -webkit-transform: scale(1, 1) !important;
    transform: scale(1, 1) !important;
    opacity: 1 !important;
}

#mobile-nav>ul>li.menu-item-has-children>a:after {
    content: '+';
    width: 25px;
    height: 25px;
    color: #ffffff;
    float: right;
    background-color: #a7a7a7;
    text-align: center;
    font-size: 14px;
    align-items: center;
    display: flex;
    justify-content: center;
}

#mobile-nav>ul .selected:after {
    content: "-" !important;
    width: 25px;
    height: 25px;
    color: #f1f1f1;
    font-size: 20px;
    top: 4px;
}

.sidebar_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 8;
    background: rgba(0, 0, 0, 0.2);
}