/* Header */

:root {
    --bg-gradien: linear-gradient(270deg, #10BDF9 0, #1C48C1 100%);
}

ul.header-nav.header-nav-main.nav.nav-left {
    justify-content: center;
}

#masthead .header-inner {
    padding-left: 0;
}

#masthead div#logo {
    height: 100%;
    /* background: #fff; */
    padding: 0 0 0 15px;
    display: inline-flex;
    align-items: center;
}

.header-main .nav>li>a {
    color: #fff;
}

#masthead div#logo:before {
    content: '';
    border-top: 82px solid #fff;
    border-left: 0px solid transparent;
    border-right: 40px solid transparent;
    height: 0;
    width: 241px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

ul.header-nav.header-nav-main.nav.nav-left ul.sub-menu {
    padding: 8px;
}

ul.header-nav.header-nav-main.nav.nav-left ul.sub-menu li>a {
    color: #434343;
    font-size: 16px;
    padding: 0 16px;
    border-radius: 5px;
    line-height: 40px;
    font-weight: 600;
    font-size: 15px;
}

ul.header-nav.header-nav-main.nav.nav-left ul.sub-menu li:hover>a {
    color: var(--primary-color);
    background-color: #1159da42;
}

.mobile_nav-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mobile_nav-icon .icon {
    width: 25px;
    position: relative;
    text-align: right;
    display: flex;
    justify-content: end;
    flex-flow: column;
    align-items: end;
    gap: 5px;
}

.mobile_nav-icon .icon span {
    position: relative;
    transition: all 0.3s ease-in-out;
    transition-delay: 40ms;
    width: 16px;
    height: 2px;
    background: #fff;
    display: inline-block;
}

.mobile_nav-icon .icon:before,
.mobile_nav-icon .icon:after {
    content: "";
    height: 2px;
    transition: all 0.3s ease-in-out;
    transition-delay: 40ms;
    background: #fff;
    display: inline-block;
}

.mobile_nav-icon .icon:before {
    width: 20px;
}

.mobile_nav-icon .icon:after {
    width: 23px;
}

.mobile_nav-icon.rotate-mb .icon *,
.mobile_nav-icon.rotate-mb .icon:after,
.mobile_nav-icon.rotate-mb .icon:before {
    background-color: var(--primary-color);
    width: 25px;
}

div#menu_bar {
    position: absolute;
    top: 0;
    background: linear-gradient(135deg, #0055a8 0%, #002e5b 100%);
    z-index: 99999;
    -webkit-box-shadow: 0 1px 8px #555555;
    -moz-box-shadow: 0 1px 8px #555555;
    -o-box-shadow: 0 1px 8px #555555;
    box-shadow: 0 1px 8px #555555;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    transform: translateX(-350px);
    transition: .5s;
}

div#menu_bar.scroll-menu {
    transform: translateX(0);
    transition: .5s;
}

div#menu_bar .bar_close {
    text-align: center;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

div#menu_bar .bar_close i.fa.fa-times {
    font-size: 16px;
    margin-right: 5px;
}

div#menu_bar ul#header_menu>li {
    border: none;
    position: relative;
    margin: 0
}

div#menu_bar ul#header_menu>li:not(:last-child) {
    border-bottom: 1px solid #ffffff;
}

div#menu_bar ul#header_menu>li>a {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 10px;
    text-transform: uppercase;
}

div#menu_bar ul#header_menu>li button.toggle {
    position: absolute;
    right: 0;
    margin: 0;
    opacity: 1;
    color: #fff;
    top: 3px
}

div#menu_bar ul.sub-menu {
    border: none;
    padding: 0;
    margin: 0
}

div#menu_bar ul.sub-menu li a {
    color: #fff;
    font-size: 14px;
    height: 34px;
    display: flex;
    align-items: center;
    position: relative
}

div#menu_bar ul.sub-menu li a::before {
    content: "\f0da";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
    font-size: 14px;
    color: #fff;
}

div#menu_bar ul.sub-menu li {
    list-style: none;
    margin: 0;
    position: relative;
}

div#menu_bar ul#header_menu button.toggle:after {
    content: "\f067";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
    font-size: 12px;
    color: #fff;
    top: 50%;
    position: absolute;
    left: 50%;
    margin: 0;
    width: 13px;
    height: 13px;
    transform: translate(-50%, -50%)
}

div#menu_bar i.icon-angle-down {
    display: none
}

div#menu_bar ul#header_menu button.toggle {
    width: 30px;
    min-height: 30px;
    height: 30px;
    -webkit-transition: transform .3s ease-out;
    -moz-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    right: 5px
}

div#menu_bar ul#header_menu .active>.toggle {
    transform: rotate(-180deg);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg)
}

div#menu_bar ul#header_menu ul.sub-menu {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    max-height: 0;
    -webkit-transition: max-height .3s, -webkit-transform .3s;
    transition: max-height .3s, -webkit-transform .3s;
    -o-transition: max-height .3s, transform .3s;
    transition: max-height .3s, transform .3s;
    transition: max-height .3s, transform .3s, -webkit-transform .3s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    overflow-y: hidden;
    display: block!important;
    padding-left: 15px!important
}

div#menu_bar ul#header_menu li.active>ul.sub-menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    max-height: 100vh
}

html.js.active body {
    overflow: hidden;
}


/* Footer */

.ss_footer .logo_ft img {
    height: 50px;
    width: auto;
}

.pad_none {
    padding-bottom: 0 !important;
}

p {
    line-height: 24px;
}

.ss_footer .icon-box img {
    padding: 0;
}

.absolute-footer {
    padding: 10px;
}

.copyright-footer {
    color: #fff;
}

.ss_footer h5.title-form {
    color: #434343;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

.ss_footer .form_news {
    display: flex;
    gap: 10px;
}

span.wpcf7-spinner {
    display: none;
}

.ss_footer .form_news .wpcf7-form-control.wpcf7-submit {
    width: 100px;
    height: 44px;
    border-radius: 4px;
    border: none;
    margin: 0;
    text-transform: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 44px;
    font-weight: 400;
}

.ss_footer .form_news .left {
    flex: 1;
}

.ss_footer .form_news input.wpcf7-form-control.wpcf7-email {
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 44px;
    box-shadow: none;
    padding-left: 3rem;
    margin: 0;
    line-height: 44px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M4.20039 6.60078L11.3173 11.5279C11.7283 11.8124 12.2725 11.8124 12.6834 11.5279L19.8004 6.60078M4.80039 19.2008H19.2004C20.5259 19.2008 21.6004 18.1263 21.6004 16.8008V7.20078C21.6004 5.8753 20.5259 4.80078 19.2004 4.80078H4.80039C3.47491 4.80078 2.40039 5.8753 2.40039 7.20078V16.8008C2.40039 18.1263 3.47491 19.2008 4.80039 19.2008Z" stroke="%2364748B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg>');
    background-repeat: no-repeat;
    background-position: 11px center;
}

.ss_footer .social-icons.follow-icons a {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.ss_footer .social-icons.follow-icons {
    display: flex;
    align-items: center;
    color: #000;
}

.ss_footer .icon-box p {
    margin: 0;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "fl-icons" !important;
    content: "";
    text-align: center;
    font-size: 24px;
    color: #fff;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--primary-color);
    border-radius: 99px;
    top: 50%;
    transform: translateY(-50%);
    height: 38px;
    width: 38px;
    line-height: 35px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    background-color: #333;
}

.progress-wrap::before {
    position: absolute;
    font-family: "fl-icons" !important;
    content: "";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: var(--primary-color);
    /* --- Pijl hover kleur --- */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
    /* --- Lijn progres kleur --- */
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.page_contact .wpcf7-form-control {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.024px;
    width: 100%;
    border: 1px solid #C7C7C7;
    color: #434343;
    padding: 10px;
    height: 54px;
    border-radius: 4px;
}

.page_contact input.wpcf7-form-control.wpcf7-submit {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.04px;
    border-radius: 5px;
    display: inline-flex;
    width: 229px;
    height: 50px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    margin-top: 30px;
    margin-bottom: 0;
}

.page_contact form {
    margin: 0;
}


/* Page liên hệ */

.header_title {
    color: #fff;
    font-size: 48px;
    width: 100%;
    text-align: center;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}

.ss_bread {
    padding: 36px 0;
}

.ss_bread p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.ss_bread p span.last {
    color: var(--primary-color);
}

.border_8 {
    border-radius: 8px;
    overflow: hidden;
}

.contact_title h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 24px;
}

.page_contact .content_text .item_title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.page_contact .content_text p {
    margin-bottom: 8px;
    font-size: 16px;
}

.page_contact .content_text .item_mail {
    font-size: 16px;
    font-weight: 700;
}

.page_contact .content_text:not(:last-child) {
    margin-bottom: 32px;
}

.tab_office h4.uppercase.text-left {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 900;
    text-transform: initial;
}

.tab_office ul.nav {
    width: calc(50% - 15px);
}

.tab_office ul.nav li {
    border: none;
}

.tab_office ul.nav li a:before {
    display: none;
}

.tab_office ul.nav li a span span {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    position: relative;
    align-items: center;
    margin-top: 12px;
}

.tab_office ul.nav li a span span:before {
    content: "\f111";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 7px;
    color: #000;
}

.tab_office ul.nav li a>span {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.tab_office .tab-panels {
    padding: 0 !important;
    border: none !important;
}

.tab_office ul.nav li.active a {
    color: var(--primary-color);
}


/* Blog */

.list_post .post_item .box {
    border-radius: 12px;
    border: 1px solid #E1E4ED;
    background: #fff;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 1px 4px 0px rgba(26, 33, 61, 0.08);
    overflow: hidden;
}

.list_post .post_item .box .box-text {
    padding: 24px 12px 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 5px solid transparent;
    transition: all 0.2s ease-in-out;
    border-radius: 12px;
}

.list_post .post_item .box .box-text h5.post-title {
    color: #262626;
    text-align: justify;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
}

.list_post .post_item .box .box-text .box-date {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    padding: 2px 0;
}

.list_post .post_item .box .box-text .box-date span {
    font-size: 14px;
    color: #434343;
    margin-bottom: 0;
}

.list_post .post_item .box .box-text .excerpt {
    color: #434343;
    line-height: 150%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
}

.list_post .post_item .box:hover .box-text {
    border-bottom: 5px solid var(--primary-color) !important;
}

ul.cate_menu {
    border-radius: 12px;
    background: #F5F5F5;
    width: 100%;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 4px;
    display: inline-flex;
    list-style: none;
    justify-content: center;
    gap: 8px;
}

ul.cate_menu li.cat-item {
    margin: 0;
}

ul.cate_menu li.cat-item.active a {
    font-weight: 700;
    color: #fff;
    border-radius: 8px;
    background: var(--primary-color);
    box-shadow: 0px 2px 4px -2px rgba(17, 12, 34, 0.12);
}

ul.cate_menu li.cat-item a {
    color: #8C8C8C;
    transition: all 0.2s ease-in-out;
    padding: 8px 16px;
    display: inline-flex;
    line-height: 24px;
    font-size: 16px;
    border-radius: 4px;
}


/* single */

.blog-wrapper.blog-single {
    background-color: #F8F8FA;
}

.blog-wrapper.blog-single article {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 10px 20px;
}

.blog-wrapper.blog-single article h1.entry-title {
    color: var(--primary-color) !important;
    font-weight: 900;
    font-size: 40px !important;
    line-height: 56.37px;
    border-left: 2px solid var(--primary-color);
    padding: 0 16px;
    margin-bottom: 10px;
}

.blog-wrapper.blog-single article .entry-divider.is-divider {
    display: none;
}

.entry-header-text {
    padding: 0 !important;
}

.post-date-single {
    color: rgba(67, 67, 67, 1);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding-top: 10px;
}

.post-date-single span {
    line-height: 1;
}

span.widget-title {
    color: #262626;
    text-align: justify;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 24px !important;
}

.sider_new {
    display: flex;
    flex-flow: column;
    gap: 24px;
}

.sider_new .box {
    flex-flow: row;
    display: flex;
    gap: 16px;
}

.sider_new .box .box-image {
    min-width: 100px;
}

.sider_new .box .box-image .image-zoom.image-cover {
    padding-top: 100% !important;
    border-radius: 4px;
}

.sider_new .box .box-text.text-left {
    padding: 0;
}

.sider_new .box h5.post-title {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.014px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: auto !important;
    margin: 0;
}

.sider_new .box .box-date {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.01px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.entry-header nav.rank-math-breadcrumb span.last {
    color: var(--primary-color);
}

.sider_new .box .box-date svg {
    width: 13px;
}

.sider_new .box .excerpt {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.012px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: auto !important;
}


/* Home */

.home_title h2 {
    font-size: 30px !important;
    line-height: 36px;
    font-weight: 800;
}

.home_enviroment .gallery-col {
    flex-basis: 40% !important;
    max-width: 40% !important;
    padding-bottom: 0 !important;
}

.home_blog .nav {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #d6d6d6;
    gap: 30px;
}

.home_blog .nav li {
    margin: 0;
}

.home_blog .nav li a {
    color: #91a1b9;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.home_blog .nav li.active a,
.home_blog .nav li:hover a {
    color: var(--primary-color);
}

.home_blog .nav li.active a:after,
.home_blog .nav li:hover a:after {
    background-color: var(--primary-color);
}

.home_blog .nav li a:after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
}

.home_blog .blog_top .box {
    display: flex;
    gap: 30px;
}

.home_blog .blog_top .box .box-image {
    min-width: calc(50% - 15px) !important;
    border-radius: 10px;
}

.home_blog .blog_top .box h5.post-title a {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.box-blog-post .is-divider {
    display: none;
}

.home_blog .blog_top .box .post-meta {
    margin-bottom: 12px !important;
    font-size: 14px;
    padding-left: 25px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="14" viewBox="0 0 13 14" fill="none"><g clip-path="url(%23clip0_4316_5474)"><path d="M7.47852 4.25V7.75C7.47852 7.82292 7.45508 7.88281 7.4082 7.92969C7.36133 7.97656 7.30143 8 7.22852 8H4.72852C4.6556 8 4.5957 7.97656 4.54883 7.92969C4.50195 7.88281 4.47852 7.82292 4.47852 7.75V7.25C4.47852 7.17708 4.50195 7.11719 4.54883 7.07031C4.5957 7.02344 4.6556 7 4.72852 7H6.47852V4.25C6.47852 4.17708 6.50195 4.11719 6.54883 4.07031C6.5957 4.02344 6.6556 4 6.72852 4H7.22852C7.30143 4 7.36133 4.02344 7.4082 4.07031C7.45508 4.11719 7.47852 4.17708 7.47852 4.25ZM10.1582 9.13281C10.1582 9.13281 10.2533 8.97005 10.4434 8.64453C10.6335 8.31901 10.7285 7.77083 10.7285 7C10.7285 6.22917 10.5384 5.51823 10.1582 4.86719C9.778 4.21615 9.26237 3.70052 8.61133 3.32031C7.96029 2.9401 7.24935 2.75 6.47852 2.75C5.70768 2.75 4.99674 2.9401 4.3457 3.32031C3.69466 3.70052 3.17904 4.21615 2.79883 4.86719C2.41862 5.51823 2.22852 6.22917 2.22852 7C2.22852 7.77083 2.41862 8.48177 2.79883 9.13281C3.17904 9.78385 3.69466 10.2995 4.3457 10.6797C4.99674 11.0599 5.70768 11.25 6.47852 11.25C7.24935 11.25 7.96029 11.0599 8.61133 10.6797C9.26237 10.2995 9.778 9.78385 10.1582 9.13281ZM11.6738 3.98828C11.6738 3.98828 11.8079 4.2181 12.0762 4.67773C12.3444 5.13737 12.4785 5.91146 12.4785 7C12.4785 8.08854 12.2103 9.09245 11.6738 10.0117C11.1374 10.931 10.4095 11.6589 9.49023 12.1953C8.57096 12.7318 7.56706 13 6.47852 13C5.38997 13 4.38607 12.7318 3.4668 12.1953C2.54753 11.6589 1.81966 10.931 1.2832 10.0117C0.746745 9.09245 0.478516 8.08854 0.478516 7C0.478516 5.91146 0.746745 4.90755 1.2832 3.98828C1.81966 3.06901 2.54753 2.34115 3.4668 1.80469C4.38607 1.26823 5.38997 1 6.47852 1C7.56706 1 8.57096 1.26823 9.49023 1.80469C10.4095 2.34115 11.1374 3.06901 11.6738 3.98828Z" fill="%238C8C8C"></path></g><defs><clipPath id="clip0_4316_5474"><rect width="12" height="14" fill="white" transform="matrix(1 0 0 -1 0.478516 14)"></rect></clipPath></defs></svg>');
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 0 center;
}

.home_blog .blog_top .box p.from_the_blog_excerpt {
    margin: 0;
    font-size: 16px;
    color: #434343;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
}

.home_blog .blog_top .box a.button {
    background-color: var(--primary-color) !important;
    display: flex;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: fit-content;
    line-height: 24px;
    letter-spacing: .016px;
    border-radius: 4px;
    border: 1px solid;
    text-transform: inherit;
    font-size: 16px;
}

.home_blog .blog_bottom .box .box-image {
    border-radius: 8px;
}

.home_blog .blog_bottom .box .box-text {
    padding: 8px 0 !important;
}

.home_blog .blog_bottom .box .box-text h5.post-title a {
    color: #262626;
    text-align: justify;
    font-size: 16px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
}

.home_blog .blog_bottom .box .post-meta {
    margin: 8px 0;
    font-size: 14px;
    padding-left: 25px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><path d="M3.85547 7.4375H16.9805M5.5519 2.04688V3.4533M15.1055 2.04688V3.45312M15.1055 3.45312H5.73047C4.17717 3.45312 2.91797 4.71232 2.91797 6.26562V15.6407C2.91797 17.194 4.17717 18.4532 5.73047 18.4532H15.1055C16.6588 18.4532 17.918 17.194 17.918 15.6407L17.918 6.26562C17.918 4.71232 16.6588 3.45312 15.1055 3.45312ZM8.07422 13.0625L9.48047 14.4688L12.7617 11.1875" stroke="%23434343" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"></path></svg>');
    background-repeat: no-repeat;
}

.home_blog .blog_bottom .box p.from_the_blog_excerpt {
    color: rgb(140, 140, 140);
    line-height: 150%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: auto;
}

.ss_company .col_info {
    flex-basis: 20% !important;
    max-width: 20% !important;
}

.ss_company .col_info .box .box-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 10px;
}

.ss_company .col_info .box .box-text .box-text-inner {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.ss_company .col_info .box h4 {
    color: #fff;
    font-size: 30px;
}

.ss_company .col_info .box a.button {
    border-bottom: 1px solid #fff !important;
    color: #fff !important;
    width: max-content;
    margin: 0 auto;
    display: inline-block;
}

.ss_company .col_right {
    flex-basis: 80% !important;
    max-width: 80% !important;
}

.ss_company .col_right .box .box-text {
    padding: 40px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
}

.ss_company .col_right .box .box-text a.button.primary {
    background-color: #fff !important;
    width: max-content;
    display: inline-block;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 12px;
    margin: 0 auto;
}

.ss_company .col_right .box .box-text .ux-logo-link {
    padding: 5px !important;
    background: #fff;
    border-radius: 5px;
    width: fit-content;
    min-width: 72px;
}

.ss_company .col_right .box .box-text .ux-logo-link img {
    height: 20px !important;
}

.home_sliderblog {
    position: absolute;
    display: flex;
    bottom: 30px;
    left: 0;
    right: 0;
    gap: 20px;
}

.home_sliderblog .box-title {
    border-radius: 26px;
    background: #EA6F3A;
    padding: 4px 12px;
    margin: 0;
    color: #FFF;
    font-size: 14px;
    height: 29px;
    line-height: 20px;
    display: inline-flex;
    min-width: 78px;
    justify-content: center;
    font-weight: 600;
    align-items: center;
}

.home_sliderblog marquee.box_list a {
    color: #fff;
    text-decoration: none;
    padding: 1px 10px;
    border-right: 2px solid #FFF;
    line-height: 1;
    text-transform: uppercase;
    height: 16px;
    display: inline-flex;
    font-size: 14px;
}

.rowlinhvuc .icon-box:hover .text3linhvuc h3 {
    color: #FDFDFD!important;
}

.rowlinhvuc .icon-box:hover .textplinhvuc p {
    color: #FDFDFD!important;
}

.rowlinhvuc .icon-box:hover .imglinhvuc img {
    transition: opacity 0.5s;
}

.rowlinhvuc .icon-box:hover .btnbluewhite {
    opacity: 1;
}

.rowlinhvuc .icon-box:before {
    background: var(--primary-color);
    content: "";
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: .5s;
    z-index: -1;
}

.rowlinhvuc .imglinhvuc {
    border-radius: 8px;
    overflow: hidden;
}

.rowlinhvuc h3 {
    color: var(--primary-color);
}

.rowlinhvuc p {
    font-size: 15px;
    font-weight: 600;
}

.rowlinhvuc .icon-box:hover .icon-box-text * {
    color: #fff !important;
}

.rowlinhvuc .icon-box:hover:before {
    height: 100%;
}

.rowlinhvuc .icon-box {
    position: relative;
    z-index: 1;
    background: #FDFDFD;
    box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.06);
    border-bottom: 4px inset var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    padding-bottom: 25px;
    transition: 0.5s;
}


/* .rowlinhvuc .icon-box:hover{
	background: #0251EB;
	transform: matrix(1, 0, 0, -1, 0, 0);
} */


/* .rowlinhvuc .flickity-viewport {
    overflow: visible!important;
} */


/* Tuyeemr dung */


/* Tuyển dụng */

.category-tuyen-dung main#main {
    background-color: #f3fbff;
}

.search-job {
    padding: 20px 0;
    background-position: 0 0, 100% 0, 50%;
    background-repeat: no-repeat;
    background-size: auto 340px, auto 340px, 100% 100%;
}

.search-job form {
    display: flex;
    margin: 0;
    gap: 20px;
}

.search-job form .form_group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #fff;
    border-radius: 4px;
    min-height: 48px;
}

.form_group input,
.form_group select {
    margin: 0;
    border: none !important;
    border-radius: 6px!important;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .01em;
    line-height: 22px;
    padding: 0 10px;
    height: 34px;
    color: #000 !important;
    box-shadow: none !important;
}

.form_group input::-webkit-input-placeholder {
    /* Edge */
    color: #000 !important;
    font-size: 14px;
}

.form_group input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000 !important;
    font-size: 14px;
}

.form_group input::placeholder {
    color: #000 !important;
    font-size: 14px;
}

.search-job input.fillter-button {
    border: unset;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    height: 48px;
    letter-spacing: .0125em;
    line-height: 22px;
    padding: 0 12px;
    text-align: center;
    width: 128px;
    margin: 0;
    text-transform: initial;
}

.ss_tuyendung {
    background: #10baf70d;
}

.job-body {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.job-list-main {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.job-item-default {
    border: 1px solid #f4f4f4;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    gap: 16px;
    padding: 16px;
    position: relative;
    transition: all .1s;
    background-color: #f2fbf6;
}

.job-item-default .avatar {
    align-items: center;
    aspect-ratio: 1/1;
    background: #fff;
    background-color: #fff;
    border: 1px solid #e9eaec;
    border-radius: 8px;
    display: flex;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    position: relative;
    width: 100px;
    background-image: linear-gradient(201.63deg, #003e86 14.36%, #02d15e 95.71%);
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 2px;
    position: relative;
}

.job-item-default .avatar a {
    height: 100%;
    display: flex;
}

.body-content {
    flex: 1;
}

.body-content .title-block {
    display: flex;
}

.body-content .title-block h3.title a {
    color: #212f3f;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.body-content .title-block .box-right {
    width: max-content;
    min-width: fit-content;
    align-items: center;
    color: var(--primary-color);
    display: flex;
    font-size: 14px;
    font-weight: bold;
    gap: 10px;
    justify-content: flex-end;
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 0;
    white-space: nowrap;
}

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

.info .label-content {
    display: flex;
    align-items: center;
    gap: 5px;
}

.info .label-content label {
    background: #e9eaec;
    border-radius: 3px;
    color: #212f3f;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 0;
    margin-top: 0;
    padding: 4px 8px;
}

.body-content .title-block h3 {
    margin: 0;
}

.company span {
    color: red;
}

.company {
    margin-bottom: 23px;
    font-weight: bold;
    font-size: 12px;
}

a.ungtuyen {
    align-items: center;
    border-radius: 3px;
    color: #fff;
    display: flex;
    font-size: 12px;
    font-weight: 400;
    height: 28px;
    line-height: 16px;
    outline: none;
    padding: 6px 16px;
    background: var(--bg-gradien);
}

.job-item-default:hover {
    border: 1px solid var(--primary-color);
}

.job-item-default:hover h3.title a {
    color: var(--primary-color);
}

.blog-single {
    padding-top: 0;
}

.job-detail__body {
    display: flex;
    gap: 24px;
}

.job-detail__body-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 67%;
}

.job-detail__info {
    height: -moz-fit-content;
    position: relative;
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px 24px;
    width: 100%;
}

h1.job-detail__info--title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #263a4d;
    display: -webkit-box;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.2px;
    line-height: 28px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-detail__info--sections {
    align-items: center;
    display: flex;
}

.job-detail__info--section {
    flex: 1;
    align-items: center;
    display: flex;
    gap: 16px;
}

.job-detail__info--section-icon {
    align-items: center;
    background: var(--bg-gradien);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 40px;
    justify-content: center;
    padding: 10px;
    width: 40px;
}

.job-detail__info--section-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.job-detail__info--section-content-title {
    color: #263a4d;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .14px;
    line-height: 22px;
}

.job-detail__info--section-content-value {
    color: #212f3f;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .175px;
    line-height: 22px;
}

.job-detail__info--deadline {
    align-items: center;
    background: #f2f4f5;
    border-radius: 4px;
    color: #263a4d;
    display: flex;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    gap: 6px;
    letter-spacing: .14px;
    line-height: 22px;
    padding: 2px 8px 2px 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

a.job-detail__info--actions-button {
    background: #00b14f;
    color: #fff;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    gap: 6px;
    height: 40px;
    justify-content: center;
    letter-spacing: .175px;
    line-height: 22px;
    padding: 8px 16px 8px 12px;
}

h2.job-detail__information-detail--title {
    border-left: 6px solid #2651c3;
    color: #212f3f;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.2px;
    line-height: 28px;
    margin: 0;
    padding-left: 10px;
    margin-bottom: 20px;
}

.job-detail__information-detail--content .job-description__item h2,
.job-detail__information-detail--content .job-description__item h3 {
    color: #212f3f;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -.16px;
    line-height: 24px;
    margin: 0;
}

.job-detail__box--left ul {
    padding-left: 16px;
}

.job-detail__box--left {
    height: -moz-fit-content;
    position: relative;
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px 24px;
    width: 100%;
    font-size: 14px;
}

.job-detail__body-right {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: calc(33% - 24px);
}

.job-detail__box--right {
    flex: 1;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.job-detail__box--right h2.box-title {
    color: #212f3f;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.2px;
    line-height: 28px;
    margin-bottom: 16px;
}

.box-general-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box-general-content .box-general-group {
    align-items: center;
    display: flex;
    gap: 16px;
}

.box-general-group-icon {
    align-items: center;
    background: var(--bg-gradien);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 40px;
    justify-content: center;
    padding: 10px;
    width: 40px;
}

.box-general-group-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.box-general-group-info-title {
    color: #4d5965;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .14px;
    line-height: 22px;
}

.box-general-group-info-value {
    color: #212f3f;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .175px;
    line-height: 22px;
}


/* Pc      --------------------------------------------- */

@media(min-width: 766px) {}

@media (width: 1024px) {}

@media (max-width: 1024px) {}

@media (min-width: 990px) and (max-width: 1100px) {}


/*************** ------------------------PC và Tablet  --------------------------  ***************/

@media (min-width: 740px) {}


/*************** ------------------------Tablet  --------------------------  ***************/

@media (min-width: 740px) and (max-width: 1023px) {}

@media (max-width:990px) {}


/*************** ------------------------Mobile và Tablet --------------------------  ***************/

@media (max-width: 1023px) {
    .ss_footer .col_logo .col-inner {
        text-align: center;
    }
    .logo_ft {
        margin: 0 auto;
    }
    .ss_footer h5.title-form {
        font-size: 16px;
    }
    .ss_footer .social-icons.follow-icons {
        flex-flow: wrap;
        align-items: start;
    }
    .ss_footer .social-icons.follow-icons>span {
        width: 100%;
        margin-bottom: 10px;
    }
    #masthead div#logo:before {
        border-left: 40px solid transparent;
        width: 280px;
        right: 0;
        margin: 0 auto;
    }
    .header-main li.html.custom {
        display: block !important;
    }
    .ss_bread {
        padding: 24px 0;
    }
    .contact_title h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .page_contact .content_text:not(:last-child) {
        margin-bottom: 20px;
    }
    .tab_office .tab-panels {
        max-width: 50%;
        padding-left: 30px !important;
        width: 100% !important;
    }
    .tab_office ul.nav {
        width: 50%;
    }
    .blog-wrapper.blog-single article h1.entry-title {
        font-size: 24px !important;
        line-height: normal !important;
        padding-right: 0;
    }
    .home_title h2 {
        font-size: 16px !important;
        text-align: center;
        line-height: 24px;
        letter-spacing: .016px;
    }
    .home_blog .blog_top .box .box-image .image-cover {
        padding-top: 70% !important;
    }
    .home_blog .nav {
        border: none;
        justify-content: center;
        gap: 8px;
    }
    .home_blog .nav li a {
        font-size: 14px;
        border-radius: 3px;
        background: #F0F0F0;
        padding: 6px 10px !important;
        color: #434343 !important;
    }
    .home_blog .nav li a:after {
        display: none;
    }
    .home_blog .nav li.active a,
    .home_blog .nav li:hover a {
        background-color: var(--primary-color);
        color: #fff !important;
    }
    .ss_company .col_right {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }
}


/*************** ------------------------ Mobile   --------------------------  ***************/

@media screen and (max-width: 549px) {
    .ss_footer .logo_ft {
        width: 100%;
    }
    .transparent .header-main {
        height: 70px !important;
    }
    #masthead div#logo:before {
        border-left: 30px solid transparent;
        width: 240px;
        right: 0;
        margin: 0 auto;
        border-top: 70px solid #fff;
        border-right: 30px solid transparent;
    }
    .header_title {
        font-size: 32px;
    }
    .ss_bread {
        padding: 15px 0;
    }
    .contact_title h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .page_contact .content_text:not(:last-child) {
        margin-bottom: 16px;
    }
    .page_contact .content_text .item_title {
        font-size: 16px;
        margin-bottom: 0;
        font-weight: 700;
    }
    .page_contact .content_text p {
        font-size: 14px;
        margin: 0;
    }
    .page_contact .content_text .item_mail {
        font-size: 16px;
        color: var(--primary-color);
        font-weight: 400;
    }
    .tab_office h4.uppercase.text-left {
        font-size: 16px;
        margin-top: 0;
    }
    .tab_office ul.nav {
        width: 100%;
    }
    .tab_office .tab-panels {
        padding: 0 !important;
        max-width: 100%;
    }
    .tab_office ul.nav li a>span {
        font-size: 14px;
        line-height: 20px;
    }
    .tab_office ul.nav li a span span {
        font-size: 14px;
        margin-top: 4px;
    }
    ul.cate_menu {
        background: transparent;
        padding: 4px 0;
        margin-bottom: 12px !important;
        flex-flow: wrap;
    }
    ul.cate_menu li.cat-item a {
        font-size: 13px;
        color: #434343;
        background: #F0F0F0;
    }
    .blog-wrapper.blog-single article h1.entry-title {
        font-size: 16px !important;
        font-weight: 700;
        line-height: 24px !important;
        letter-spacing: 0.016px;
    }
    .entry-header nav.rank-math-breadcrumb * {
        font-size: 14px;
        font-weight: bold;
        line-height: 20px !important;
    }
    .blog-wrapper.blog-single article {
        background: none;
        padding: 0;
    }
    .home_enviroment .gallery-col {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }
    .home_blog .blog_top .box {
        flex-flow: column;
        gap: 10px;
    }
    .home_blog .blog_top .box h5.post-title a {
        font-size: 14px !important;
        letter-spacing: .014px;
        line-height: 24px;
    }
    .blog_bottom .col.post-item {
        flex-basis: 70% !important;
        max-width: 70% !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
    }
    .search-job form {
        flex-flow: column;
    }
    .job-item-default .avatar {
        height: 60px;
        padding: 4px;
        width: 60px;
    }
    .body-content .title-block {
        flex-flow: column;
        gap: 10px;
    }
    .body-content .title-block h3 {
        line-height: 1;
    }
    .body-content .title-block h3.title a {
        line-height: 1;
    }
    .company {
        margin-bottom: 10px;
    }
    .info {
        flex-flow: column;
        gap: 10px;
    }
    .info .label-content {
        flex-wrap: wrap;
    }
    .job-detail__body {
        flex-flow: column;
    }
    .job-detail__body-left {
        width: 100%;
    }
    .job-detail__body-right {
        width: 100%;
    }
    .job-detail__info--sections {
        flex-flow: wrap;
        align-items: baseline;
    }
    .job-detail__info--section {
        min-width: 50%;
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: linear-gradient(180deg, #10BDF9 0, #1C48C1 100%);
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background-color: #c3c3c3;
}

::-webkit-scrollbar-track-piece {
    background-color: #E6F4EB;
}

::-webkit-scrollbar-thumb {
    height: 50px;
    background: linear-gradient(180deg, #10BDF9 0, #1C48C1 100%);
    border-radius: 3px;
}

::-webkit-scrollbar-corner {
    background-color: #E6F4EB;
}