:root {
  --color-primary: #0065ad;
  --color-second: #22a7d4;
  --gray-bg: rgba(250, 250, 250, 1);
  --gray-dark: rgba(0, 0, 0, 0.6);
  --gray-light: rgba(0, 0, 0, 0.1);
  --white-text: rgba(255, 255, 255, 0.85);
  --black-dark: #171717;
  --black-text: #262626;
  --black-light: rgba(19, 19, 19, 0.6);
  --green-bg: rgba(0, 82, 56, 0.72);
  --red-light: #ff4949;
  --yellow-light: #fffbf9;
  --bg-footer: #F6F7F9;
  --bg-body: #e4fdff;
  --bg-menu: #F1F4F5;
  --border-color: #c8c8c8;
  --theme-radius-small: 6px;
  --theme-radius-base: 12px;
  --theme-radius-large: 28px;
  --font-awesome: 'FontAwesome';
  --font-primary: 'Lexend', Arial, Helvetica, sans-serif;
}

html {
    height: 100%;
    margin: 0!important;
    scroll-behavior: smooth;
}
body {
	color:var(--black-text);
    font-size: 17px;
	font-family: var(--font-primary);
    font-weight: 300;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    top: 0!important;
    overflow-y: auto;
    overflow-x: hidden!important;
    background-color: white;
}
a,button,[role="button"],input,label,select,textarea{
    touch-action:manipulation
}
a {
	text-decoration: none;
	color:var(--black-text);
	outline:none;
	cursor:pointer;
    transition: color 0.2s;
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
}
a:hover { color: black; }

.hidden, [hidden] {display: none!important;}
img {
    display: inline-block; max-width: 100%; height: auto!important;
    border-radius: inherit;
    object-fit: cover;
    object-position: center;
}
img[src=""] {display: none;}
.bg-red,
.bg-yellow,
.bg-blue {
  color: white!important;
}

.bg-gray {
  color: black;
  background-color: #d2d6de !important;
}
.bg-red {
  background-color: var(--red) !important;
}
.bg-yellow {
  background-color: #febe10 !important;
}
.bg-blue {
  background-color: var(--blue) !important;
}
.bg-green {
    color: black;
  background-color: var(--color-primary) !important;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    white-space: normal;
}
 {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.btn img {
    width: 24px;
    height: 24px;
    border-radius: unset;
}
.btn-lg img {
    width: 30px;
    height: 30px!important;
}
.btn.box_shadow {
    -webkit-box-shadow: 0 10px 15px -3px #65e2ee,0 4px 6px -4px #65e2ee;
    -moz-box-shadow: 0 10px 15px -3px #65e2ee,0 4px 6px -4px #65e2ee;
    box-shadow: 0 10px 15px -3px #65e2ee,0 4px 6px -4px #65e2ee;
}
.btn-primary,.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
    color: white;
    border-color: transparent;
    background: var(--color-primary);
    background: linear-gradient(90deg, rgba(0, 100, 175, 1) 0%, rgba(31, 169, 208, 1) 100%);
    -webkit-transition: opacity 1s, -webkit-transform 1s; 
    transition: opacity 1s, transform 1s;
}
.btn-primary:hover {
    border-color: transparent;
    background: var(--color-primary);
    background: linear-gradient(90deg, rgba(0, 100, 175, 1) 0%, rgba(31, 169, 208, 1) 100%);
    opacity: 1;
    -webkit-transform: scaleX(1.1) scaleY(1.1);  
    transform: scaleX(1.1) scaleY(1.1);
}
.btn-link,.btn-link:not(:disabled):not(.disabled).active, .btn-link:not(:disabled):not(.disabled):active {
    color: var(--color-primary);
    background-color: transparent;
    border-color: var(--color-primary);
}
.btn-link:hover {
    opacity: .8;
    text-decoration:none;
}
.text-link{
    display:inline;
    border:0 none;
    background:none;
    padding:0;
    margin:0
}
.text-link:focus,.text-link:active {
    outline: none;
    box-shadow: none;
}
::-webkit-input-placeholder {
    color: inherit;
    opacity: .35
}
.viewall .btn {padding: .35rem 1.5rem;}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

@-webkit-keyframes autofill {
    0%,100% {
        color: #666;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-delay: 1s; /* Safari support - any positive time runs instantly */
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}
/******************************Layout****************************************/
.front-page::before {
    display: none;
    content: 'mobile';
}
.box_shadow {
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.15);
}
.box_border {
    border: 1px solid #ddd;
}
.box_radius {
    -webkit-border-radius:var(--theme-radius-small);
    border-radius:var(--theme-radius-small);
}
.box_small_radius {
    -webkit-border-radius: var(--theme-radius-small);
    border-radius: var(--theme-radius-small);
}
.box_base_radius {
    -webkit-border-radius: var(--theme-radius-base);
    border-radius: var(--theme-radius-base);
}
.box_large_radius {
    -webkit-border-radius: var(--theme-radius-large);
    border-radius: var(--theme-radius-large);
}

.box_white {
    background-color: white;
} 
#masthead {
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index:1021;
    position: relative;
    background-position: center top;
    background-size: cover;
    background-color: white;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(224,56,56,.1);
    -moz-box-shadow: 0px 6px 20px 0px rgba(224,56,56,.1);
    box-shadow: 0px 6px 20px 0px rgba(224,56,56,.1);
}
#masthead.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

@-webkit-keyframes underline-link {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  50% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }

  50.01% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
}

@keyframes underline-link {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  50% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }

  50.01% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
}
.header-lang {
    position: relative;
    margin-left: 1rem;
    padding-left: 1rem;
}
.nav-control .header-lang {
    margin-left: 0; padding-left: 0;
    display: none;
}
.header-lang .lang {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}
.header-lang .lang svg {
    width: 20px;
    height: 20px;
}
.header-lang .lang:focus {
    box-shadow: none;
    outline: none;
}
.header-lang .dropdown-menu {
    min-width: 7rem;
    border-radius: 0;
    margin-top: 0.35rem;
    padding: 0;
}
.header-lang .dropdown-menu:before {
    position: absolute;
    top: -0.25rem;
    left: 0.35rem;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-bottom: 4px dashed var(--color-primary);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.header-lang .dropdown-menu.dropdown-menu-right:before {
    left: auto;
    right: 0.35rem;    
}
.header-lang .dropdown-item {
    display: flex;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: black;
}
.header-lang .dropdown-item img {
    width: 16px;
    height: 16px;
}

.site-header {position: relative;}
.site-header .titleSeo {
    display: block;
    font-size: 12px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -999px;
    left: -999px;
}
/*layout*/
.box,.box-heading,#masthead .on_menu_left,.navigationMenu .nav-heading,.sub-list a{position: relative;}
/*color*/
.breadcrumb li a:hover,.pageNumber a {text-decoration: none;}
.sub-list a:not(.fa):before,
.box-category li a.title:before,
.article-grid .tx-Content .readmore a:after,.breadcrumb>li+li:before,.tx-Content .date:before {font-family: var(--font-awesome);}
/*end*/
.navbar-brand {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.brandnav .navbar-brand a.logo {
    display: flex;
    align-items: center;
    max-width: 80px;
}
#masthead.fixed .brandnav .navbar-brand a.logo {}

#masthead .on_menu_left {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
}
#masthead .on_menu_left:focus {
    outline: none;
    box-shadow: none;
}
#masthead .on_menu_left svg {
    width: 28px;
    height: 28px;
}

/**/
#panel {
    height: 100%;
    overflow-y: auto;
    background: white;
    z-index: 10019!important;
    position: fixed;
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
    top: 0;
    left: 0;
    width: 320px;
    -webkit-transform: translateX(-320px);
    -ms-transform: translateX(-320px);
    transform: translateX(-320px);
}
#panel.nav-is-visible {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
#panel .account {
    padding: 5px 40px 5px 5px;
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
#panel .account .close_panel{
    background-color: var(--bg-menu);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}
#panel .account a {
    display: flex;
    padding: 0 .25rem;
    position: relative;
    align-items: center;
}
#panel .account a img {
    height: 45px!important;
}
#panel .account a:last-child:before {
    content: '';
    position: absolute;
    left: 0;
    width: 1px;
    height: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: var(--black-light);
}

.navigationMenu li:active a {
    color: white
}
.navigationMenu li:active .fa {
    color: white
}
.navigationMenu .panel {border: none;}
.navigationMenu .nav-link {
    -webkit-box-shadow: 0px 0 1px 0px rgb(0 0 0 / 70%);
    -moz-box-shadow: 0px 0 1px 0px rgba(0,0,0,.7);
    box-shadow: 0px 0 1px 0px rgb(0 0 0 / 70%);
    background: #ededed;
    display: block;
    text-align: center;
    padding: 1.125rem .75rem;
    font-size: .838rem;
    text-transform: uppercase;
}
.navigationMenu .nav-link img {max-height: 45px;}
.navigationMenu .nav-link span {
    display: block;
    margin-top: 5px;
}
.navigationMenu .nav-heading {
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 400;
    height: 43px;
    line-height: 42px;
    margin: 0;
    padding: 0 50px 0 15px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
}
.navigationMenu .nav-heading button {
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    white-space: nowrap;
    padding: 0;
}
.navigationMenu .nav-heading button:focus,.navigationMenu .nav-heading button:active {
    outline: none;
    box-shadow: none;
}
.navigationMenu .nav-heading a {display: block;color: #333;}
.navigationMenu .nav-heading [data-toggle="collapse"] {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    line-height: 40px;
    margin: 0;
    padding: 0 15px 0 30px;
    width: auto;
    font-size: 1rem;
}
.navigationMenu .nav-heading [data-toggle="collapse"] svg {
    width: 16px;
    height: 16px;
}
.navigationMenu .nav-heading [data-toggle="collapse"]:not(.collapsed) svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.navigationMenu .navi-nofollow {
    color: #333;
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
    height: 40px;
    line-height: 40px;
    display: block;
    padding: 0 15px;
    font-size: 14px
}
.sub-list {
    border-bottom: 1px solid var(--gray-light);
    padding: 0;
    margin-bottom: 0;
    background: var(--bg-menu);
}
.panel .sub-list {background-color: var(--gray-light);}
.panel .sub-list .sub-list {
    background-color: #eee;
}
.sub-list li {
    border-bottom: 1px solid rgba(0,0,0,.1);
    position: relative;
}
.sub-list li:last-child {border-bottom-width: 0;}
.sub-list a {
    display: block;
    padding: 8px 0 8px 32px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}
.sub-list a:active {
    color: white
}
.sub-list .sub-list a {
    padding-left: 46px;
}
.sub-list a:not(.fa):before {
    position: absolute;
    content: "\f138";
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--color-primary);
}
.sub-list .sub-list a:not(.fa):before {
    left: 30px;
    content: "\f10c";
}
.sub-list .fa-chevron-right {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    line-height: 37px;
    margin: 0;
    padding: 0 15px 0 25px;
    width: auto;
    font-size: 11px;
}
.panel .sub-list .nav-level-sub {
    position: relative;
    padding-right: 50px;
}

/**/
.section-element {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.section-element.section-element-page {
    padding: 20px 0;
}
.section-element.section-element-0 {margin-top: 30px;}
.section-element.section-element-0+.section-element-0 {margin-top: 30px;}
.section-element.section-element-1 {margin-top: 35px; padding-bottom: 20px;}
.section-slider {
    position: relative;
    padding: 20px 0;
}
.master-slider-parent {z-index: 0;}
.element-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .35);
}
/*.master-slider {min-height: 480px;}*/
.master-slider, .banner-slider {border-radius: var(--theme-radius-small);} 
.master-slider .swiper-slide {height: 100%;}
.master-slider .item_slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
}
.banner-slider .swiper-slide {
    display: flex;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 9px;
}
.swiper-slide .item_slide {
    display: block;
    height: 0;
    padding-bottom: 42.25%;
    position: relative;
    overflow: hidden;
} 

/**/
.brandnav.navbar{padding: .75rem 0; gap: 2rem}
.nav-control {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
}
.nav-control .nav-info {
    display: flex;
    align-items: center;
    position: relative;
    gap: .5rem;
    font-weight: 400;
}
.nav-control .hotline { padding-left: 2.25rem; padding-right: 2.25rem;}
.nav-control .hotline::after {
    content: attr(data-phone);
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.nav-control .hotline:hover::after {opacity: 1;}
.nav-control .nav-info .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: var(--theme-radius-small);
    background-color: var(--bg-menu);
}
.nav-control .nav-info svg {
    width: 20px;
    height: 20px;
}
.nav-control .hotline:hover .text {color: transparent;}
.nav-control a:hover {text-decoration:none;}
/**/
.nav-search {flex: 1;}
.search-form-inner {
    width: 100%;
    position: relative;
}
.nav-search form {
    position: relative;
}
.nav-search .form-control {
    background: var(--bg-menu);
    border: 0;
    height: 40px;
    line-height: 40px;
    padding-left: 1.125rem;
    padding-right: 3.875rem;
    outline: 0;
    border-radius: var(--theme-radius-small);
    border: 0px solid transparent;
    transition: all .3s;
}
.nav-search .form-control:focus,.nav-search .form-control:active {
    outline: none;
    box-shadow: none;
}
.nav-search .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 48px;
    border: 0;
    padding: 0;
    font-size: 1.25rem;
    text-align: center;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--theme-radius-small);
    background-color: var(--color-primary);
}
.nav-search .btn svg {
    width: 18px; 
    height: 18px;
}
.popular_keyword {
    display: flex;
    gap: .75rem;
    margin-top: 10px;
}
.popular_keyword a {color: var(--blue);}
/**/
.nav-control .sgvicon {
    height: 40px;
    width: 40px;
    font-size: 1.5rem;
    color: black;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-control .sgvicon svg {
    height: 26px;
    width: 26px;
}

/*mega menu*/
.box-special-menu ul.main-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-content: center;
}
.main-navigation > li {
    position: relative;
}
.main-navigation > li.root {
    text-align: center;
}
.main-navigation > li.root+li {
    margin-left: 1.25rem;
}
.main-navigation > li > a {
    padding: 10px 15px;
    display: block;
    line-height: 26px;
    position: relative;
    text-decoration:none;
    color: black;
}
.main-navigation > li.root > button,.main-navigation > li.root > a {
    white-space: nowrap;
    transition: all .3s ease;
    padding: 10px 15px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
}
.main-navigation > li.root > button {cursor: pointer;}
.main-navigation > li.root > button:active,.main-navigation > li.root > button:focus {
    outline: none;
    box-shadow: none;
}
.main-navigation > li.root > button:hover {
    color: var(--color-primary);
    font-weight: 600;
}
.main-navigation > li.root > a .fa {margin-left: 8px; font-size: 16px;}
.main-navigation > li.root > a img {max-height: 32px;}
.main-navigation > li.root > a span {display: block;}
.main-navigation > li.root > a:hover,.main-navigation > li.root:hover > a,.main-navigation > li > a.current {
    color: red;
}
.rootmenu-hovercate {
    min-width: 220px;
    line-height: 22px;
    list-style: none;
    font-weight: 400;
    padding: 0;
    position: absolute;
    top: 100%;
    z-index: 20;
    margin-top: 30px;
    opacity: 0;
    visibility: hidden;
    display: none;
    background: white;
    border-top: 0;
    transition: all 0.5s ease;
    -webkit-box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, .16);
    -moz-box-shadow:    7px 6px 40px 0px rgba(204, 204, 223, .16);
    box-shadow:         7px 6px 40px 0px rgba(204, 204, 223, .16);
}
.main-navigation > li.root:hover .rootmenu-hovercate{
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}
.rootmenu-hovercate ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.rootmenu-hovercate:not(.mega) ul {
    background-color: white;
    box-shadow:0 0 10px var(--gray-light);
    -moz-box-shadow:0 0 10px var(--gray-light);
    -webkit-box-shadow:0 0 10px var(--gray-light);
}
.rootmenu-hovercate:not(.mega) ul li {text-align: left;}
.rootmenu-hovercate ul li {position: relative;}
.rootmenu-hovercate ul li a {
    padding: 8px 15px 8px 10px;
    font-weight: 400;
    position: relative;
    white-space: nowrap;
    display: block;
}
.rootmenu-hovercate ul li+li a {border-top: 1px solid rgba(0, 0, 0, 0.10);}
.rootmenu-hovercate ul li a:before {
    position: absolute;
    content: "\f105";
    font-family: var(--font-awesome);
    left: 0;
    opacity: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--c-alter);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.rootmenu-hovercate ul li a:hover:before {
    left: 10px;
    opacity: 1;
}
.rootmenu-hovercate ul li a:hover {
    text-decoration: none;
    padding-left: 20px;
    padding-right: 5px;
    color: var(--color-primary);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.rootmenu-hovercate ul li:last-child a {border-bottom: 0;}
.rootmenu-hovercate ul li ul {min-width: 200px;}
.rootmenu-hovercate:not(.mega) ul li ul {
    visibility:hidden;
    opacity:0;
    position:absolute;
    left:100%;
    top:0;
    z-index:22;
    padding: 0;
    transition:transform 0.4s ease 0s;
    -webkit-transition:-webkit-transform 0.4s ease 0s;
    -moz-transition:-moz-transform 0.4s ease 0s;
    transform:scale(0.7, 1);
    -webkit-transform:scale(0.7, 1);
    -moz-transform:scale(0.7, 1);
    transform-origin:0 0 0;
    -webkit-transform-origin:0 0 0;
    -moz-transform-origin:0 0 0;
}
.rootmenu-hovercate ul li:hover ul {
    visibility:visible;
    opacity:1;
    transform:scale(1,1);
    -webkit-transform:scale(1, 1);
    -moz-transform:scale(1, 1);
}
.rootmenu-hovercate ul li a span {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 11px;
    text-align: right;
    font-weight: 400;
}
/**/
.box {clear: both; margin-bottom: 1rem;}
.box-heading {
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 1.75rem;
    position: relative;
    z-index: 8;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
}
.box-heading.text-center {
    align-items: center;
    justify-content: center;
}
.box-heading > * {
    line-height: 1.4;
}
.box-heading .name {
    font-size: 1.75rem;
    font-size: clamp(1.75rem, 1.5rem + 1.25vw, 3rem);
    line-height: 1.2;
    margin: 0;
}
.box-heading .viewall {
    font-size: 85%;
    display: inline-block;
    align-items: center;
    padding: 5px 0;
}
.box-content:before, .box-content:after {
    content: " ";
    display: table;
}
.box-content:after {
    clear: both;
}
.box-heading span {
    display: inline-block;
    position: relative;
}
.left-column .box-heading {
    margin-bottom: 0;
    overflow: hidden;
}
.left-column .box-heading .name {
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    padding-bottom: 8px;
    position: relative;
    border-bottom: 1px solid var(--gray-light);
}
.left-column .box-heading .name span {margin-right: 0;}
.box-heading .heading-widget {
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 0;
    color: #788079;
}
.box-heading.line-heading span {padding-bottom: 20px;}
.box-heading.line-heading span:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 10px;
    height: 2px;
    width: 60px;
    background: var(--color-primary);
    background-size: contain;
}
.box-heading.line-heading.text-right .name span {padding-left: 0;}
.box-heading.line-heading.text-right span:before {
    right: 0;
    left: unset;
}
.box-heading.line-heading.text-center span:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.box-heading .sub-heading {
    flex: 1;
    margin: 0;
    height: 100%;
    font-size: 125%;
    font-weight: 400;
    overflow: hidden;
    padding-top: .5rem;
    max-width: 1160px;
}
.box-heading.text-center .sub-heading {margin: 0 auto;}
.line-clamp,.line-clamp-2,.line-clamp-3 {
    text-overflow: ellipsis;
}
.line-clamp {-webkit-line-clamp:1}
.line-clamp-2 {-webkit-line-clamp:2!important}
.line-clamp-3 {-webkit-line-clamp:3!important}
.box-heading .sub-heading li {
    display: inline;
    margin-left: 1rem;
}
.box-heading .sub-heading li h3 {margin: 0; font-size: .857rem; display: initial; font-weight: 400;}
.box-heading .sub-heading li a {color: #08588b;}

.bg-breadcrumb .box-heading {text-align: center; margin-bottom: 0; color: white; letter-spacing: 2px;}
.bg-breadcrumb .box-heading span:after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: white;
    margin: 10px auto 3px;
}
.box-info {position: relative; margin: 25px 0;}
.box-img {overflow: hidden;}
.box-img a {display: block;}
.box-img img {transition: all .8s linear;}
.box-info .info-bottom {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
}

#box-vertical-megamenus .box-category .nav-heading {
    display: block;
    font-size: .875rem;
    height: 36px;
    line-height: 36px;
    margin: 0;
    padding: 0 35px 0 0;
    position: relative;
}
#box-vertical-megamenus .box-category .nav-heading.selected, #box-vertical-megamenus .box-category .nav-heading:hover {font-weight: 600;}
#box-vertical-megamenus .box-category .nav-heading:last-child:hover {border-bottom-left-radius: 3px; border-bottom-right-radius: 3px;}
#box-vertical-megamenus .box-category .nav-heading a {
    display: block;
    color: black;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#box-vertical-megamenus .box-category .nav-heading i.fa {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 35px;
    height: 41px;
    font-size: .714rem;
    line-height: 41px;
    text-align: center;
}
#box-vertical-megamenus .box-category .nav-heading i.fa:not(.collapsed):before {
    content: '\f077';
}
.box-category {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.box-category li {
    padding: 0;
    position: relative;
    display: block;
}
.box-category li a {
    line-height: 20px;
    padding: 10px 0;
    display: block;
    position: relative;
}
.box-category li a.title {padding-left: 32px;}
.box-category a:hover {color: var(--color-primary)!important; text-decoration:none;}
.box-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.box-category li li {
    background-color: white;
}
.box-category li li a {
    color: #007ec4;
    font-weight: 400;
}
.box-category .sub-list a {
    padding: 8px 0 8px 28px;
}
.box-category a.title:before {
    position: absolute;
    content: '\f0f6';
    top: 8px;
    left: 10px;
}
.box-category li li a.title:before {display: none;}
/**/
.slider.slider-horizontal {height: 14px;}
.slider.slider-horizontal .slider-track {
    height: 2px;
    margin-top: -1px;
}
.slider-selection {
    background-color: var(--color-primary);
    background-image: none;
}
.slider-handle {
    background-color: var(--color-primary);
    background-image: none;
    width: 14px;
    height: 14px;
}
.slider.slider-horizontal .slider-tick, .slider.slider-horizontal .slider-handle {
    margin-left: 0;
}
.slider.slider-horizontal .slider-handle.max-slider-handle {margin-left: -14px;}
/**/
.fearured-about {
    padding: 4rem 0;
}
.fearured-about .container {
    background-image: url(../images/background/bg-hero.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}
.fearured-about .box-heading .name {
    font-weight: 700;
}
.fearured-about .box-content {
    font-size: 1rem;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    color: rgb(120, 121, 143);
    margin-bottom: 2rem;
}
.fearured-about .row {row-gap: 2rem;}
.box-action a+a {
    margin-left: 20px;
}
.fearured-about .about-image { 
    display: flex;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}
.fearured-about .about-image img {
    object-fit: cover;
}
.fearured-about .box-img {
    border-radius: 50%;
    background: #F7F6F4;
    background: linear-gradient(0deg, rgba(247, 246, 244, 1) 0%, rgba(34, 167, 212, 1) 100%);
    width: 30rem;
    height: 30rem;
}
.fearured-about .box-img img{
    position: absolute;
    border-radius: unset;
    top: 0;
    left: 0;
    z-index: 2;    
}
.fearured-about .box-img video{
    position: absolute;
    top:0;
    right: 7rem;
    z-index: 1;
    border-radius: var(--theme-radius-large);
}
@media only screen and (min-width: 960px){
    .fearured-about .box-img img {top: -16px;}
    .fearured-about .box-img video {top: -12px;}
}
.bottom_shape {
    position: absolute;
    left: 0;
    right: 0;
    height: 5.5rem;
    bottom: -1rem;
    background-image: linear-gradient(to bottom, rgba(247, 247, 245, 0), #e4fdff);
    z-index: 5;
}
.about-benefit {
    padding: 3rem 0;
}
.absolute-img.right {right: 0;}
.whychoose {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}
.whychoose li {
    display: flex;
    gap: 1.25rem;
    position: relative;
    font-size: 120%;
    padding: 1rem;
    border: 1px solid rgba(194,194,194,.25);
    background-color: white;
}
.whychoose li:nth-child(odd) {
    border-color: transparent;
    background-color: var(--bg-body);    
}
.whychoose li img {
    width: 32px!important;
    height: 32px!important;
}
.whychoose li p {
    color: var(--gray-dark);
}
/**/
.element-page-nav {background-color: var(--bg-menu);}
.wrap-scroll-nav {position: relative;}
.element-page-nav .nav-tabs {
    justify-content: center;
    border-bottom-width: 0;
    position: relative;
}
.element-page-nav .nav-tabs .nav-item + .nav-item {margin-left: 1.5rem;}
.element-page-nav .nav-tabs .nav-item .nav-link {
    font-size: 16px;
    line-height: 28px;
    background-color: transparent;
    padding: .75rem .125rem;
    text-transform: uppercase;
    position: relative;
}
.element-page-nav .nav-tabs .nav-item .nav-link:before {
    position: absolute;
    visibility: hidden;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    content: "";
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
}
.element-page-nav .nav-tabs .nav-item.show .nav-link, .element-page-nav .nav-tabs .nav-link.active,.element-page-nav .nav-tabs .nav-link:focus, .element-page-nav .nav-tabs .nav-link:hover {border-color: transparent;}
.element-page-nav .nav-tabs .nav-item .nav-link:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
/**/
.element-about .about-info {margin-top: 3rem;}
.element-about .about-info .info1{text-align: center;}
.about-info .info1 .img {margin-bottom: 1rem;}
.about-info .info1 .name {
    font-weight: 600;
    margin-bottom: .75rem;
    text-transform: uppercase;
}
.about-info .info1 .text p {
    display: block;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 0;
    color: var(--gray-dark);
}
.about-guide,.about-interface,.about-intro2 {
    padding: 3rem 0;
    background-color: var(--bg-body);
}
.about-intro {padding: 3rem 0;}
.about-guide p {margin-bottom: 0;}
.about-guide .btn {
    margin-top: 1.5rem;
}
.about-banner {
    padding: 5rem 0 1rem;
}
.about-banner .container {position: relative;}
.about-banner .about-img {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    max-width: 35%;
}
.about-banner .about-inner {
    background: url(../images/background/download_2.png) no-repeat center center; 
    background-color: var(--color-second);
    background-size: cover;
    overflow: hidden;
    padding: 5rem 3.5rem;
    border-radius: var(--theme-radius-base);
    color: white;
    margin: 5rem 0;
}
/**/
.magnifyarea img {max-width: unset; height: unset!important;}

.modal .modal-header {
    padding: 0;
    border-bottom: none;
    position: relative;
    z-index: 9;
}
.modal .modal-header button {
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: black;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 99;
    padding: 0;
}
.modal .modal-header button:focus {
    outline: none;
    box-shadow: none;
}
.modal .modal-header button i {
    color: white;
    font-size: 12px;
    display: block;
    line-height: 28px;
    vertical-align: top;
}
.modal .modal-header .close {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}
.modal .modal-header .close svg {
    width: 14px;
    height: 14px;
    fill: white;
}

/**/
.section-faqs {
    padding: 3rem 0;
}
.section-faqs .card {
    border-width: 0;
    background-color: white;
    border-radius: var(--theme-radius-base);
    -webkit-box-shadow: 0 0 20px 0 rgba(224,56,56,.2);
    box-shadow: 0 0 20px 0 rgba(224,56,56,.2);
    overflow: hidden;
}
.section-faqs .card .card-header {
    border: 0;
    padding: 0;
    background-color: transparent;
}

.section-faqs .card .card-header .btn-header-link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1.75rem;
    border: none;
    background-color: transparent;
}
.section-faqs .card .card-header .btn-header-link:focus {
    outline: none;
    box-shadow: none;
}
.section-faqs .card .card-header .btn-header-link:after {
    content: "\f068";
    font-family: 'FontAwesome';
    font-weight: 400;
    margin-left: auto;
}
.section-faqs .card .card-header .btn-header-link.collapsed {color: black;}
.section-faqs .card .card-header .btn-header-link.collapsed:after {
  content: "\f067";
}

.section-faqs .card .card-body {
    padding: 1rem 1.75rem;
}

/******************************Center****************************************/
.ms-layer .name {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    color: white;
}
.ms-layer .summary {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}
.ms-layer .ext-link {
    display: inline-flex;
    letter-spacing: 2px;
    margin-top: 1.5rem;
    padding: .75rem 2rem;
    border-radius: 0;
    line-height: 16px;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s;
    align-items: center;
    color: var(--white-text);
    background-color: transparent;
    border: 1px solid white;
}
.ms-layer .ext-link img {margin-right: .35rem;}
.ms-layer .ext-link+.ext-link {margin-left: .75rem;}
.ms-layer .ext-link:hover {
    color: white;
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    text-decoration:none;
}
.ms-layer.mc {text-align: center;}
/**/
#column-left #box-vertical-megamenus {
    position:relative;
}

/**/
.social-share .social-share-item{
    float: left;
    position: relative;
    top: 0;
    margin-left: 20px;
}
.social-share .social-share-item.first {margin-left: 0;}
/**/
.support .content_box {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    padding: 25px 15px;
    align-items: center;
    -webkit-transition: border .25s linear .25s;
    -moz-transition: border .25s linear .25s;
    -ms-transition: border .25s linear .25s;
    -o-transition: border .25s linear .25s;
    transition: border .25s linear .25s;
}
.support .content_box:hover {border-color: black;}
.support .content_box .content_text {text-align: center;}
.support .content_box .content_text .text{
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 22px;
}
.support .content_box .content_text .title{
    font-weight: 400;
    color: black;
    font-size: 18px;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 22px;
}
.support .content_box .content_text .title:after{
    content: "";
    height: 1px;
    width: 42px;
    border-bottom: 1px solid;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
}

/*clients*/
.cms-our-clients {padding: 1.5rem 0;}
.cms-our-clients.element-bg:after {
    background-color: rgba(3, 23, 37, .6);
}
.cms-our-clients.element-bg .box-heading {color: white;}
.cms-our-clients .view-carousel {padding-bottom: 0;}
.cms-our-clients .article-grid .items {
    border: 0 solid #cdcdcd;
    background-color: white;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: .5rem;
}
.cms-our-clients .article-grid .items a {
    display: block;
    padding: .25rem;
}
/**/
.article-section {position: relative;}
.article-section.box_white {padding: 1rem;}
.article-contact .fa {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    line-height: 26px;
    font-size: 14px;
    text-align: center;
    border: 1px solid var(--gray-light);
    margin-right: 5px;
}
.article-grid {list-style: none; padding: 0; margin-bottom: 0;}
.article-grid.row {
    row-gap: 2rem;
}
.article-grid .items {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .75rem; 
}
.article .article-grid .items {padding-bottom: 1.25rem;}
.view-carousel .article-grid .items {
    padding-bottom: 0;
    margin-bottom: 0;
}
.article-grid .i-Thumbs,.article-list .i-Thumbs {display:block; overflow: hidden; position: relative;}
.article-grid .i-Thumbs .date {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: .5rem;
    background-color: white;
    color: black;
    font-size: 11px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    top: 5px;
    left: 5px;
    padding: 5px;
    z-index: 3;
    line-height: 1.3;
    letter-spacing: 0;
}
.article-grid .i-Thumbs .date span{
    font-size: 20px;
    font-weight: 600;
}
.article-grid .i-Thumbs a {display: block; position: relative; overflow: hidden; z-index: 2;}
.article-grid .items.box_radius .i-Thumbs a {
    border-top-left-radius: var(--theme-radius-small);
    border-top-right-radius: var(--theme-radius-small);
}
.article-grid .i-Thumbs a img,.article-list .i-Thumbs a img {
    object-fit: cover;
    -webkit-transition: opacity 1s, -webkit-transform 1s; transition: opacity 1s, transform 1s;
}
.article-grid .i-Thumbs a:hover img,.article-list .i-Thumbs a:hover img {-webkit-transform: scale3d(1.1,1.1,1);  transform: scale3d(1.1,1.1,1);}

.article-grid .tx-Content,.article-list .tx-Content {
    display:flex;
    flex-direction: column; 
    position:relative; 
    overflow: hidden;
}
.article-grid .article-block {
    height: 100%;
    background-color: white;
    border: 1px solid #d8d8d8;
    border-radius: inherit;
}
.article-block .tx-Content {padding: .75rem;}
.section-element.testimonial { padding: 3rem 0 1.5rem;}
.section-element.section-element-news {
    padding: 2rem 0 1rem;    
}
.section-element.about-story {
    padding: 3rem 0;
    background-color: var(--bg-body);
}
.about-story .row {
    row-gap: 1rem;
}
.about-story .items .title {
    color: transparent;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: .375rem;
    line-height: 50px;
    background: linear-gradient(90deg, rgba(0, 100, 175, 1) 0%, rgba(31, 169, 208, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-story .items .title span {
    font-size: 2rem;
    font-size: clamp(2rem, 1.8rem + 1vw, 3rem); 
    font-weight: 500;
}
.about-story .items svg {
    width: 85px;
    height: 85px;
    fill: white;
}
.section-element.about-info {
    padding: 2.5rem 0 2rem;
    background-color: var(--gray-bg);
}
.section-element.about-story p {font-size: 18px; line-height: 1.6; margin-bottom: 0;}
.section-element.about-story .btn {margin-top: 30px;}
.about-story .about-image { 
    display: block;
    border-radius: 50%;
    overflow: hidden;
}
.about-story .about-image img {
    object-fit: cover;
    border-radius: 50%;
}
/**/
.about-img {
    display: block;
    overflow: hidden;
    margin-bottom: 0;
}
.about-img >img {
    object-fit: cover;
    width: 100%!important;
}
.about-info .info_img { display: block;}
.about-info .info_img img {width: 100px!important;}
.about-info .info_name {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
}
.about-info .info_name:hover {color: var(--color-primary); text-decoration:none;}
.about-info p {
    color: var(--black-light);
    font-size: .875rem;
}
.section-element.testimonial:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    background-color: rgba(0,0,0,.4);
}
.section-element .container { z-index: 5;}
.testimonial .article-block .article-author .i-Thumbs img{
    border-radius: 50%;
    border: 4px solid white;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.testimonial .article-block .article-author span {color: var(--yellow);}
.testimonial .article-block .article-author {
    margin-top: 2rem;
    color: white;
}
.testimonial .article-block .article-meta {
    padding: 1rem 1.875rem;
    min-height: 136px;
    font-weight: 400;
    position: relative;
    border-radius: 10px;
    color: white;
}
.testimonial .article-block .article-meta blockquote{
    padding: 0;
    max-width: 970px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: .9px;
    font-size: 1.188rem;
    line-height: 1.52;
    margin-bottom: 2.688rem;
    font-style: italic;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.testimonial__name {margin-top: .75rem;}
.testimonial__name .name {font-family: var(--font-open-sans);}
/**/
.about-intro2 .about-content .box-heading .name {
    font-weight: bold;
    font-size: 2rem;
    font-size: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);    
}
.about-intro2 .about-img{
    width: 320px;
    height: 550px;
    display: flex;
    align-items: flex-end;
    border-radius: var(--theme-radius-base);
    overflow: hidden;
}
.about-intro2 .about-img > img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto!important;
    height: 90%!important;
}
.about-item, .about-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.about-list li {
    display: flex;
    gap: .5rem;
    font-size: 120%; 
}
.about-list li+li {margin-top: 1.5rem;}
.about-list li img {
    width: 24px!important;
    height: 24px!important; 
}
.about-item li {
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
    line-height: 1.2;
    gap: .5rem;
}
.about-item li+li {
    margin-top: 2rem;
}
.about-item li .title {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.about-item p {margin-bottom: 0;}
.about-item .icon {display: block; text-align: center; margin-bottom: .75rem;}
.about-item .icon > img {
    object-fit: cover;
}
.article-list .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 0;
}
.article-list .items+.items {
    margin-top: .75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}
.article-list .tx-Content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.tx-Content .date {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: var(--gray-dark);
    letter-spacing: .1em;
    font-size: 12px;
    position: relative;
}
.tx-Content .date:before {
    content: '\f073';
}

.article-grid .tx-Content .cat-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gray-dark);
    padding-bottom: 5px;
}
.article-grid .tx-Content .readmore {
    display: block;
    font-size: 12px;
}
.article-grid .tx-Content .readmore a{
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-weight: 600;
    position: relative;
    margin-top: 1rem;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.article-grid .tx-Content .readmore a:hover{
    color: var(--color-primary);
    text-decoration:none
}
.article-grid .tx-Content .readmore a svg{
    width: 14px;
    height: 14px;
    fill: var(--color-primary)!important;
}
.tx-Content .title {
    line-height: 1.2;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.article-block .tx-Content .title {
    font-weight: 600;
}
.tx-Content .title.small {font-size: 1rem;}
.tx-Content .title:hover {color: var(--color-primary); text-decoration:none;}
.article-list .tx-Content .title {
    font-size: 1rem;
    font-weight: 400;
    -webkit-line-clamp: 3;
    line-height: 1.2;
}
.article-grid .tx-Content p,.article-list .tx-Content p {
    max-height: 84px;
    margin-top: 15px;
    margin-bottom: 0;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    color: var(--black-light);
}
.article-grid .tx-Content p+p {margin-top: .35rem;}
.article-list .tx-Content p {
    -webkit-line-clamp: 3;
}
/**/
.form-control {font-size: 14px;}
.content-map {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}
.content-map iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.video-wrapper,.maps-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe, .maps-wrapper iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* site map */
.siteMapUl,.siteMapUl li,.siteMapUl ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.siteMapUl{
    margin: 25px 0 0 0;
}
.siteMapUl li {
    line-height: 26px;
}

.siteMapUl .folder {
    background: url(../images/folder.gif) 0 2px no-repeat;
    padding-left: 19px;
}

.siteMapUl .page {
    background: url(../images/page.gif) 0 6px no-repeat;
    padding-left: 19px;
}
.element-breadcrumb {
    height: 30vh;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    background-color: var(--gray-bg);
}
.element-breadcrumb .container {
    position: relative;
    z-index: 1;
}
.element-breadcrumb:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    background-color: var(--gray-dark);
}
.element-breadcrumb .breadcrumb {
    justify-content: center;
    color: white;
}
.element-breadcrumb .box-heading { margin-bottom: 0; }
.element-breadcrumb .box-heading .name {
    font-size: 1.875rem;
    font-size: clamp(1.875rem, 1.65rem + 1.125vw, 3rem);
}
.element-breadcrumb .box-heading .name,.element-breadcrumb .breadcrumb a {color: white;}
.breadcrumbs {
    margin-bottom: 0;
}
.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: .5rem 0;
    border-radius: 0;
    font-size: .813rem;
    display: flex;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.breadcrumb::-webkit-scrollbar { display: none;}
.breadcrumb>li+li:before {content: '\f105'; padding: 0 8px;}
.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}
.breadcrumb a svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}
label.error {font-size: 11px; font-style: italic; color: red; display: block;}
.article {position: relative; min-height: 500px;}
.article-list {list-style: none; margin: 0; padding: 0;}
.article-list li {margin-top: 20px; position: relative; display: block;}
.article-list li:first-child {margin-bottom: 0;}
.article-list li a.title {display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px;}

.form-group #securityImg,.form-group #reloadImg {margin-left: 8px;}
.form-group #reloadImg {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: .375rem;
    display: inline-block;
    height: 100%;
}
.form-group .form-control {font-size: .813rem;}
.form-group .form-control:focus {outline: none; box-shadow: none;}
.contact-form .form-group .form-control {
    height: calc(2.75rem + 2px);
}
.contact-form .form-group textarea.form-control {
    height: auto;
}
.contactForm .row {
    row-gap: 1rem;
}

.material-field {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.material-field label {
    position: absolute;
    z-index: 101;
    font-size: 13px;
    padding: 0 10px;
    pointer-events: none;
    -o-transition: .1s ease all;
    transition: .1s ease all;
    left: 0;
    margin-bottom: 0;
    top: 14px;
    color: #999;
}
.material-field input,.material-field .field__input {
    position: relative;
    top: 0;
    box-sizing: border-box;
    float: left;
    border: none;
    color: #333;
    background: transparent;
    height: 48px;
    padding: 16px 10px 10px;
    width: 100%;
    font-size: 13px;
    box-shadow: none;
    z-index: 100;
}
.material-field input[type=date]{
    width:100%
}
.material-field input[type=date]::-webkit-calendar-picker-indicator{
    -webkit-appearance:none
}
.material-field.is-dirty input~label,.material-field.is-dirty .field__input~label,.material-field input:focus~label{
    font-size:10px;
    top:6px;
    color:#999
}
.material-field.is-dirty input~label,.material-field.is-dirty .field__input~label,.material-field input:focus~label span.required{color:#999}
.material-field.material-disabled{
    background:#ddd;
    color:#999
}
.material-field.readonly{
    background:#ddd;
    color:#999
}
.material-radio__input>* {
    display: inline-block;
    vertical-align: middle;
}
.material__required {
    margin-left: 2px;
    color: var(--red);
}
.material-field input.form-control:disabled, .material-field input.form-control[readonly] {background-color: transparent;}
.material-field input:focus,.material-field .field__input:focus {
    outline: 0;
    background-color: transparent;
    box-shadow: none;
}
.formError {margin-top: -36px!important;}
/**/
.view-carousel {position: relative; padding-bottom: 42px;}
.view-carousel:not(.pagination-swiper) {
    padding-bottom: 0;
}
.view-carousel .swiper-gallery {overflow: hidden;}
.swiper-container {overflow: hidden;}
.swiper-button-next, .swiper-button-prev {
    color: black;
    border: 0 solid var(--border-color);
    border-radius: .25rem;
    width: 40px;
    height: 40px;
    background-color: white;
    margin-: 0;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .15);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-button-next:hover,.swiper-button-prev:hover {color: var(--green);}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '';
    background-image: url(../images/icons/swiper_prev.png);
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '';
    background-image: url(../images/icons/swiper_next.png);
}
.swiper-horizontal>.swiper-pagination-bullets {bottom: 0;}
.swiper-pagination-bullet {background-color: var(--gray-light); opacity: 1;}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    opacity: 1;
    width: 30px;
    border-radius: 4px;
}

/**/
.article__title {
    font-size: 1.75rem;
    font-size: clamp(1.75rem, 1.55rem + 1vw, 2.75rem);
    text-align: center;
    padding-bottom: 20px;
    width: 80%;
    line-height: 1.1;
    margin: 0 auto;
}
.col-xl-7 .article__title {width: 100%;}
.article__entry {margin-bottom: 20px;}
.article__entry .article_quote {align-items: center; position: relative;}
.article_quote .quote_img {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
}
.article_quote .quote_img img {
    max-width: 100px!important;
    max-height: 100px!important;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.article_quote .quote_text {
    border-radius: 1rem;
    overflow: hidden;
    background-color: #d9ecf9;
    padding: 1rem;
}
.article__info {
    padding: .5rem .75rem;
    margin-bottom: 1rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    background-color: var(--bg-menu);
    border-radius: var(--theme-radius-small);
    gap: .75rem;
}
.article__img {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-second);
}
.article__author {
    display: flex;
    flex-direction: column;
    color: #909090;
    font-size: 12px;
}
.article__author .name {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
}
.author_info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}
.author_info .author_img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.author_info .author_text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.author_info .author_text b {
    font-size: 1.125rem;
    color: red;
}
.article__share {
    position: relative;
    height: 20px;
    display: flex;
}
.billing-fields {padding-bottom: 2rem;}

/**/
.pageNumber {
    display:-webkit-flex;
    display:-ms-flexbox;
	display:flex;
    align-items: center;
    justify-content: center;
	text-align:center;
    position: relative;
    padding:0;
    margin-top: 30px;
	margin-bottom: 30px;
}
.pageNumber a {
	display: block;
	width:40px;
	height:40px;
    line-height: 40px;
	text-align:center;
	margin: 0 3px;
	background: gray;
	font-weight:700;
	color: white;
    border-radius: 6px;
	border:1px solid var(--gray-light);
}
.pageNumber a:hover {
	color: white;
    background: var(--color-second);
	border-color: var(--color-second);
}
.pageNumber a.current {
	color: black;
    background: var(--color-second);
    border-color: var(--color-second);
}
/******************************FOOTER****************************************/
#footer{
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-image: url(../images/background/footer.svg);
    display:block;
    padding: 120px 0 30px 0;
    margin-top: 10px;
    position: relative;
    color: white;
}
.footer-item h3, .footer-item .title{
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 15px;
    display: block;
    position: relative;
}
.footer-item a:hover {color: var(--black-light); text-decoration:none;}
.footer-item .footer-address p {
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
}
.footer-item .footer-address .fa {color: var(--black-light);}
.footer-item .title:before {
    display: none;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    border-bottom: 2px solid var(--color-primary);
}
.footer-item .title a[data-toggle="collapse"] {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-item .title a.fa-plus-circle:not(.collapsed):before {content: '\f056';}
.footer-item .content ul {list-style: none; padding: 0;}
.footer-item .content .link-list h3 {margin: 0;}
.footer-item .content .info, .footer-item .content .link-list a{
    text-transform: capitalize;
    display: block;
    line-height: 20px;
}
.footer-item .content .link-list li+li {margin-top: 5px;}
.footer-item .content .link-list a{
    padding: 3px 0px;
    transition: all 0.3s;
}
.footer-item .content .link-list a:hover{ padding-left: 3px;}
.footer-item .content .fa {text-align: center; width: 18px; margin-right: 5px;}
.footer-item:first-child .content li{margin-bottom: 10px}
.footer-item p:last-child {margin-bottom: 0;}
.footer-item p .fa {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 22px;
    margin-right: 5px;
    text-align: center;
}
.footer-subscribe {}
.box-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.box-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
}

.footer-item .box-social a {color: white;}
.box-social a:hover {text-decoration: none}
.box-social a .fa {margin-right: 0!important;}
.box-social a:hover .fa-facebook {color: var(--blue);}
.box-social a:hover .fa-youtube {color: var(--red);}
.box-social a:hover .fa-pinterest {color: var(--red);}
.ft-copyright {
    margin-top: 20px;
    position: relative;
    z-index: 2;
    padding: 1rem 0;
    font-size: .835rem;
    border-top: 1px solid var(--gray-light);
}
.ft-copyright b,.ft-copyright strong {color: black;}


.scrolltop {
    position: fixed;
    right: 5px;
    bottom: 5px;
    background: var(--color-primary);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    line-height: 40px;
    text-align: center;
    display: none;
    cursor: pointer;
    z-index: 993;
    border: 2px solid white!important;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
/******************************Button****************************************/
.resultSearch {position: relative;}
.text-white {color: white;}
.text-red {color: red;}
.text-blue {color: #007ec4;}
.text-green {color: #00c633;}
.text-gray {color: #888;}
.text-orange {color: orange;}
.gt3_preloader {background-color: white;}

.backdrop__body {
    visibility: hidden;
    position: fixed;
    opacity: 0;
    width: 100%;
    left: 0;
    top: 0 !important;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.55);
    z-index: 9999;
    transition: opacity .5s ease;
}
.backdrop__body.nav-is-visible {
    transition: opacity .5s ease;
    visibility: visible;
    opacity: 1;
}
/**/
.grecaptcha-badge {visibility: hidden; opacity: 0;}
/**/
.aml_dk-wrap {
    font-size: 14px !important;
    position: fixed;
    z-index: 2147483647;
    bottom: 54px;
    overflow: visible !important;
    transition: transform 0.2s ease 0s;
}
@media only screen and (max-width: 767px){
    .aml_dk-wrap {bottom: 104px;}
}
div.aml_dk-wrap div {
    overflow: visible !important;
}
.aml_dk-wrap.aml_dk-bottom-right {
    right: 0;
}
.aml_dk-wrap .aml_dk-flex-container {
    flex-direction: column;
    display: flex;
    justify-content: center;
}
.aml_dk-flex-container > a {
    width: 48px!important;
    height: 48px!important;
    margin: 5px!important;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    position: relative;
    overflow: visible !important;
    background-size: 100%!important;
    border: 2px solid white!important;
    border-radius: 50%!important;
}
.aml_dk-channel-facebook {
    background-image: url(../images/widget_icon_messenger.svg);
}
.aml_dk-channel-zalo {
    background-image: url(../images/widget_icon_zalo.svg);
}
.aml_dk-channel-click_to_call {
    background-image: url(../images/widget_icon_click_to_call.svg);
}
.aml_dk-channel-contact_form {
    background-image: url(../images/widget_icon_contact_form.svg);
}
.aml-tooltip .aml-tooltiptext {
    visibility: hidden;
    font-size: 12px !important;
    line-height: 16px !important;
    text-align: center;
    white-space: nowrap;
    border-radius: 4px;
    padding: 8px;
    position: absolute;
    top: calc(50% - 16px);
    z-index: 1;
    opacity: 0;
    transition: opacity .5s;
}
.aml-tooltip .aml-tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
}
.aml-tooltip .aml-tooltiptext {
    background-color: rgba(255, 170, 19, 1);
    color: white;
}

.aml_dk-bottom-right .aml-tooltip .aml-tooltiptext {
    right: 120%;
}
.aml_dk-bottom-right .aml-tooltip .aml-tooltiptext::after {
    border-color: transparent transparent transparent #ffaa13;
    left: 100%;
}
.aml-tooltip:hover .aml-tooltiptext {
    visibility: visible;
    opacity: 1;
}
#google_translate_element2,.skiptranslate {display:none!important;}
.template-shutdown {
    height: 100vh;
    text-align: center
}

.shutdown-page__wrapper {
    display: table;
    height: 100%;
    width: 100%;
    background-image: url(../images/password-page-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff
}

.shutdown-page__header {
    display: table-row;
    height: 1px
}

.shutdown-page__header__inner {
    display: table-cell;
    padding: 15px 30px
}

.shutdown-page__logo {
    margin-top: 90px;
    color: inherit
}

.shutdown-page__main {
    display: table-row;
    width: 100%;
    height: 100%;
    margin: 0 auto
}

.shutdown-page__main__inner {
    display: table-cell;
    vertical-align: middle;
    padding: 15px 30px
}

.shutdown-page__hero {
    font-family: "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: 500;
    font-size: 3.75rem;
    line-height: 1.4;
    color: yellow;
    text-transform: none;
    letter-spacing: 0;
    text-rendering: optimizeLegibility
}

.shutdown-page__message {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px
}
.box-title, .box-text {letter-spacing: 0;}
.table-bordered td, .table-bordered th {border-color: #aaa;}
/**/
.widget-toc {
    background-color: #F9F9F9;
    border: 1px solid #e6e6e6;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.widget-toc.float-right,.widget-toc.float-left {width: 280px;}
.widget-toc.float-right {float: right; margin-left: 10px;}
.widget-toc.float-left {float: left; margin-right: 10px;}
.toc-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    position: relative;
}
.toc-title .toc_toggle {
    position: absolute;
    right: 0;
    color: white;
    background-color: black;
    border-radius: 3px;
}
.widget-toc ol {
    padding-left: 1rem;
    list-style: none;
    counter-reset: item;
    font-size: .875rem;
    margin-bottom: 0;
    overflow: hidden;
    height: auto;
    opacity: 1;
    transition: opacity 1s ease-out;
}
.widget-toc ol.closed {
    opacity: 0;
    height: 0;
}
.widget-toc ol li {
    display: block;
    margin: 4px 0;
    position: relative;
}
.widget-toc  ol li:before {
    /*content: counters(item, ".");
    counter-increment: item;*/
    position: absolute;
    margin-right: 100%;
    right: 0.5rem;
}
.widget-toc ol li a {color: var(--blue);}
.widget-toc ol li a:hover {color: var(--color-primary);}