.icon-title h4.heading-title {
    font-size: 28px;
    color: #ee4923;
}
p.content-title{font-size:16px;}
.btn-outline-primary.active{
	color:#ff5938;
}
/********MENU**********/
nav#cd-nav {
    position: relative;
    z-index: 10000;
}
#cd-nav ul{display:block;}
#cd-nav ul li {
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#cd-nav ul.is-visible {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}
#cd-nav ul.is-visible li:nth-child(1) {
  /* list items animation */
  -webkit-animation: cd-slide-in 0.2s;
  -moz-animation: cd-slide-in 0.2s;
  animation: cd-slide-in 0.2s;
}
#cd-nav ul.is-visible li:nth-child(2) {
  -webkit-animation: cd-slide-in 0.3s;
  -moz-animation: cd-slide-in 0.3s;
  animation: cd-slide-in 0.3s;
}
#cd-nav ul.is-visible li:nth-child(3) {
  -webkit-animation: cd-slide-in 0.4s;
  -moz-animation: cd-slide-in 0.4s;
  animation: cd-slide-in 0.4s;
}
#cd-nav ul.is-visible li:nth-child(4) {
  -webkit-animation: cd-slide-in 0.5s;
  -moz-animation: cd-slide-in 0.5s;
  animation: cd-slide-in 0.5s;
}
#cd-nav ul.is-visible li:nth-child(5) {
  -webkit-animation: cd-slide-in 0.6s;
  -moz-animation: cd-slide-in 0.6s;
  animation: cd-slide-in 0.6s;
}
#cd-nav li:last-child a {
  border-bottom: none;
}
nav#cd-nav.main-nav{
	display:none;
}
nav#cd-nav.main-nav.is-fixed{
	display:block;
}

  #cd-nav li {
    display: inline-block;
  }
  #cd-nav li a:hover {
    color: #f05b39;
  }
 #cd-nav.is-fixed ul {
    position: fixed;
    width: 100%;
    max-width: 290px;
    bottom: 30px;
    /* top: 0; */
    background: white;
    visibility: hidden;
    box-shadow: 0 0 10px rgb(232 74 100 / 40%);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    right: 30px;
}
  #cd-nav.is-fixed ul li {
    display: block;
  }
  #cd-nav.is-fixed ul li a {
    padding: 1.6em;
    margin-left: 0;
    border-bottom: 1px solid #eff2f6;
  }
  #cd-nav ul.has-transitions {
    /* this class is used to bring back transitions when the navigation moves at the bottom right */
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
    transition: transform 0.3s, visibility 0s 0.3s;
  }
  #cd-nav ul.is-visible {
    /* this class is used to bring back the navigation animation - as on touch devices */
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
    transition: transform 0.3s, visibility 0s 0s;
  }
  #cd-nav ul.is-hidden {
    /* this class is used to animate the scale down the navigation when the user scrolls down with the navigation still open */
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }

.cd-nav-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
	width: 50px;
    height: 45px;
    background: white;
    border-radius: 0.25em;
    box-shadow: 0 0 10px rgb(232 74 100 / 40%);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 2;
    border: 0;
    text-indent: -9999px;
}
.cd-nav-trigger span {
  /* the span element is used to create the menu icon */
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e84a64;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -10px;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  content: '';
  position: absolute;
  left: 0;
  background: inherit;
  width: 100%;
  height: 100%;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, background 0s;
  -moz-transition: -moz-transform 0.3s, background 0s;
  transition: transform 0.3s, background 0s;
}
.cd-nav-trigger span::before {
  top: -6px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.cd-nav-trigger span::after {
  bottom: -6px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.cd-nav-trigger.menu-is-open {
  box-shadow: none;
}
.cd-nav-trigger.menu-is-open span {
  background: rgba(232, 74, 100, 0);
}
.cd-nav-trigger.menu-is-open span::before, .cd-nav-trigger.menu-is-open span::after {
  background: #e84a64;
}
.cd-nav-trigger.menu-is-open span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-nav-trigger.menu-is-open span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 1170px) {
  .cd-nav-trigger {
    /* the the menu triger is hidden by default on desktop devices */
    visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
    transition: transform 0.3s, visibility 0s 0.3s;
  }
  .is-fixed .cd-nav-trigger {
    visibility: visible;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-animation: cd-bounce-in 0.3s linear;
    -moz-animation: cd-bounce-in 0.3s linear;
    animation: cd-bounce-in 0.3s linear;
  }
}

#cd-gallery-items li {
  margin-bottom: 1.5em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0.25em;
}
#cd-gallery-items li img {
  width: 100%;
  display: block;
  border-radius: 0.25em;
}
@media only screen and (min-width: 768px) {
  #cd-gallery-items li {
    width: 48%;
    float: left;
    margin-bottom: 2em;
    margin-right: 4%;
  }
  #cd-gallery-items li:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1170px) {
  #cd-gallery-items li {
    width: 31%;
    float: left;
    margin-bottom: 2.5em;
    margin-right: 3.5%;
  }
  #cd-gallery-items li:nth-child(2n) {
    margin-right: 3.5%;
  }
  #cd-gallery-items li:nth-child(3n) {
    margin-right: 0;
  }
}

@-webkit-keyframes cd-slide-in {
  0% {
    -webkit-transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes cd-slide-in {
  0% {
    -moz-transform: translateX(100px);
  }

  100% {
    -moz-transform: translateY(0);
  }
}
@keyframes cd-slide-in {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes cd-bounce-in {
  0% {
    -webkit-transform: scale(0);
  }

  60% {
    -webkit-transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-in {
  0% {
    -moz-transform: scale(0);
  }

  60% {
    -moz-transform: scale(1.2);
  }

  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-in {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }

  60% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

/*********MENU*********/
body .mobile-menu li a{font-size:1.2rem}
button.mobile-menu-toggle {
    position: absolute;
    z-index: 100;
    right: 0;
    top: 0;
}
.section-6 .splide-4-image img{
	width:100%;
}
.mobile-menu-wp{
    /*position: fixed;
    top: 6%;
    right: 6%;
    z-index: 100;*/
	display:none;
}
.bg-banner-home header.header nav.main-nav{
    position: relative;
    top: 3pc;
}
header.header-menu {
    position: relative;
    z-index: 1000;
    width: 100%;
}
.is-sticky header.header-menu{
	background: #fff;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
}
.select2-container--bootstrap-5 .select2-dropdown{
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
}
.caculator_system_list_img{font-size:48px; color:#f05b39;}
.caculator_system_list_content .number{
    color: #f05b39;
    font-size: 25px;
    white-space: nowrap;
	font-weight:bold;
}
.caculator_system_list_content h4{margin:0;}
.caculator_system_list_content .number b{
	color:#333;
	font-size:20px;
}
.splide-terminal .splide__arrow--prev{
	left:0;
}
.splide-terminal .splide__arrow--next {
    right: 0;
}
.p-description {
    font-size: 14px;
    text-align: justify;
    line-height: 1.5em;
    text-align: left;
}
a.play-video-terminal {
    width: 30px;
    height: 30px;
    background: #ccc;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-image: linear-gradient(to left,#f6542f,#d62800);
    color: #ffffff;
    line-height: 1.5em;
}
.sl-region{
	position:relative;
	z-index:1000;
}
.sl-type{
	position:relative;
	z-index:100;
}
.jarallax,.jarallax-keep-img,.jarallax-keep-img-left{
    position: relative;
    z-index: 0;
}
.jarallax > .jarallax-img, .jarallax-keep-img > .jarallax-img, .jarallax-keep-img-left > .jarallax-img{
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#section-5 .select2-container--bootstrap-5 .select2-selection--single{
	border-radius: 50rem!important;
}
#section-5 .select2-container--bootstrap-5 .select2-selection{
	background-color:#f1f1f1;
}
.col-md-6{
	position:relative;
}
label.error {
    font-size: 10px;
    position: absolute;
    left: 16px;
    bottom: 0;
    font-weight: 500;
	color: red;
	    z-index: 1000000;
}
#section-4 .select2-container--bootstrap-5 .select2-selection{
	border-radius: 50rem;
	border: 1px solid #ccc;
}
.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection,.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection{
	border: 1px solid #f05b39;
	border-radius: 20px;
}
.select2-container--bootstrap-5 .select2-selection--single{
	border-radius: 20px;
}
.select2-dropdown{margin-top:5px;}
.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection,.select2-search__field:focus, .select2-search__field:hover,.select2-search__field:active,.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
    border-color: #f05b39;
    box-shadow: 0 0 0 0.25rem rgb(240 91 57 / 25%);
}
.select2-container--open .select2-dropdown--above{
	border-bottom:1px solid #ced4da;
}
.select2-container--open .select2-dropdown--above{
	border-bottom-right-radius: .25rem; 
     border-bottom-left-radius: .25rem;
}
.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--above{
	border-bottom-right-radius: .25rem; 
     border-bottom-left-radius: .25rem;
	 
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option:first-child{
	border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option:last-child{
	border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below{
	border-radius: 10px;
	border: 1px solid #ccc;
	overflow:hidden;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted {
    color: #000;
    background-color: #f1f1f1;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected {
    color: #fff;
    background-color: #f05b39;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-search {
    padding: 15px;
}
.list-icon-footer-items a{color:#333;}
.list-icon-footer-items a:hover{color:rgba(240, 91, 57,1);}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
	color:#022b45;
}
.modal .form-control, .modal .form-select{
	background:#ffffff;
}
.btn-send-form {
    padding: 10px 30px;
}
.close-modal {
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    font-size: 40px;
    line-height: 1rem;
    transform: translateX(14px) translateY(-15px);
    -webkit-transform: translateX(14px) translateY(-15px);
color: #f4f3f3;
    background-color: #e80606;
    font-size: 30px;
    width: 30px;
    height: 30px;
    border-radius: 60px 60px 60px 60px;
    z-index: 100;
    border: 0;
	font-size:24px;
}
.modal-header {
    padding: 1.5rem 1rem;
    background-color: #f05b39;
    color: #fff;
    text-align: center;
    justify-content: center;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    position: relative;
}
.select2-container--bootstrap-5,.select2-container{
    display: block;
    z-index: 100000;
	max-width:100%;
}
.modal-title{
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}
.elementor-icon {
    color: rgba(255, 255, 255, 0.27);
    border-color: rgba(255, 255, 255, 0.27);
    font-size: 93px;
    position: absolute;
    left: -6px;
    top: -5px;
}
.modal-content {
    border-radius: 20px;
}

body{font-size:14px;}
.list-price li span{font-size:14px;}
.note-table{font-style:italic; font-size:11pt;}
div.splide-4 {
    padding: 0 4rem;
}
.splide__arrow i {
    color: #003d65;
}
.section-6 .splide__arrow i {
	font-size:48px;
}
.table-compare {
    color: #ffffff;
    width: calc(100% - 2px);
    margin: 0 auto;
}
.secondary-slider.splide--slide>.splide__track>.splide__list>.splide__slide{border:0;}
.secondary-slider.splide--slide>.splide__track>.splide__list>.splide__slide .nav-link{
	background: #ffffff;
    color: #022b45;
    filter: grayscale(100%);
	border: 1px solid #ccc !important;
}
.secondary-slider.splide--slide>.splide__track>.splide__list>.splide__slide .nav-link .content-tabs{
	opacity: 0.7;
}
.secondary-slider.splide--slide>.splide__track>.splide__list>.splide__slide.is-active .nav-link{
	background: #ffffff;
box-shadow: 0 .5rem 1rem rgba(38,31,68,.5)!important;
    border-color: #003d65 !important;
	filter: grayscale(0%);
}
.secondary-slider.splide--slide>.splide__track>.splide__list>.splide__slide.is-active .nav-link .content-tabs{
	opacity: 1;
}
.splide__arrow{background:transparent;}
.splide__arrow svg{fill:#a9a9a9;}
.splide__pagination__page{background:#585858;}
.splide__pagination__page.is-active{
	background: #003d65;
}

.splide-icon .splide__pagination__page{background:#ccc;}
.splide-icon .splide__pagination__page.is-active{background:#ffffff;}
.header .navbar-brand{display:inline-block;}
.logo-end .navbar-brand{padding:0; margin:0;}
.btn-support {
    padding: 10px 30px;
    font-weight: 500;
    box-shadow: 0 0 10px 5px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 10px 5px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 0 10px 5px rgb(0 0 0 / 20%);
}
.btn-click{color:#ffffff; padding:10px 30px;font-weight: bold;}
.btn-primary{background:#003d65;border-color:#003d65;}
.btn-click.btn-hide {
    background: #ccd8e0;
    border-color: #ccd8e0;
}
.btn-orange,.btn-click{
	background:#ee4923;
	border-color:#ee4923;
}

.btn-orange:focus,.btn-orange:hover,.btn-orange:active,.btn-click{
	outline:none;
	/*border:0;
	box-shadow:none;*/
}
.section-image-lap-dat .container{
	background: rgb(12,62,101);
	background: linear-gradient(90deg, rgba(12,62,101,0) 0%, rgba(12,62,101,0.7) 35%, rgba(12,62,101,0.8) 50%, rgba(12,62,101,0.7) 65%, rgba(12,62,101,0) 100%);
}

footer .splide-2 .splide__arrow{background:transparent;}
footer .splide-2 .splide__arrow svg{fill:#444;}
.enewsletter-icon {
    position: absolute;
    left: 16px;
    top: 12px;
    font-size: 21px;
    color: #ea441e;
}
.form-wp  input.form-control{
    padding-left: 50px;
    padding-right: 126px;
}
button.btn-send{
    position: absolute;
    top: 0;
    right: 0;
	height:100%;
}
.form-control, .form-select{
    font-weight: 400;
    font-size: 14px;
	background-color: #f1f1f1;
}
.icon-link {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    text-align: center;
    border: 3px solid #ff5938;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.icon-link:nth-child(2){margin-right:10px}
.icon-link:hover{
	background-image: linear-gradient(to left,#f6542f,#d62800);
	color:#ffffff;
}
.icon-bocongthuong {
    width: 150px;
    padding: 0;
}
.btn-send{
	background-image: linear-gradient(to left,#f6542f,#d62800);
}
.btn-gradient,.btn-send{
    background-image: linear-gradient(to left,#f6542f,#d62800);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border: 0;
    text-transform: capitalize;
}
.btn-gradient:hover,.btn-send:hover{
	background-image: linear-gradient(to left,#d62800,#f6542f);
}
.list-icon-footer-title a{color:inherit;}
.widget-p,.icon-list-items .icon-list-text{font-size:16px;}
.title-item{
    margin: 0;
    padding: 2px 0 2px 10px;
    border-style: solid;
    border-width: 0 0 0 3px;
    border-color: #ef4923;
    font-size: 16px;
    font-weight: bold;
}
.icon-list-items{
	list-style-type: none;
	margin: 0;
	padding: 0 0 0 15px;
}
.icon-list-items .icon-list-text{
    padding-left: 5px;
}
.icon-list-items .icon-image{
	padding-left:6px;
}
.icon-list-items .icon-image img {
    width: 90px;
}
.icon-list-items .icon-list-item {
    margin: 0;
    padding: 0;
    position: relative;
}
.icon-list-item, .icon-list-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.icon-list-icon {
    color: #ff5938;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.icon-list-icon i {
    font-size: 14px;
}
.container-button{
    background: #ff5938;
    color: #fff;
}
h4.splide-4-title {
    font-size: 26px;
    font-weight: 500;
    color: #003d65;
}
.splide-4-content{
	color: #003d65;
	font-weight:500;
}
.section-6 .splide-4-content{
	font-size:16px;
}
.splide-4-image{margin-bottom:1rem;}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
	letter-spacing: 0; 
}
.title-section-sub {
    font-weight: 700;
    font-size: 24pt;
    color: #003d65;
}
.title-section-sub-orange{color:#ee4923;}
.title-section-4 {
    font-size: 20px;
    font-weight: 500;
    color: #003d65;
}
.table-compare{color:#ffffff;}
.table.table-compare tbody td {
	font-size:11pt;
	text-align:center;
	vertical-align: middle;
}
.table.table-compare thead th {
    font-size: 12pt;
    font-weight: 400;
    text-align: center;
	vertical-align: middle;
}
.image-table{width:230px;}
.title-compare{
    color: #ffffff;
    font-weight: 400;
}
.splide-icon-title{
	font-weight:400;
	line-height:1.3em;
}
.splide-icon-title span{
	line-height:1.5em;
}
.splide-icon-title {
    font-weight: 400;
    color: #ffffff;
    font-size: 12pt;
	margin-top:1rem;
}
.content-tabs-desc{font-weight:400;}
.header-tabs{
	z-index:100;
}
.bottom-tabs{
	z-index:10;
}
.custom-pill .nav-pills .nav-item .nav-link {
    background: #ffffff;
	color:#333;
	filter: grayscale(100%);
}
.custom-pill .nav-pills .nav-item .nav-link .content-tabs{opacity:0.7;}
.custom-pill .nav-pills .nav-item .nav-link.active{ filter: grayscale(0%);}
.custom-pill .nav-pills .nav-item .nav-link.active .content-tabs{ opacity:1;}
.custom-pill .tab-content{
	background:transparent;
	padding:0;
}
.custom-pill .tab-content .jarallax-tabs{
	
}
.icon-tab-top{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.title-tabs {
    font-size: 22pt;
    font-weight: 700;
    color: #003d65;
}
.spec-tabs {
    font-size: 11pt;
    font-weight: 400;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
	color:#333333;
}
.custom-pill .nav-pills .nav-item .nav-link.active{
	background:#ffffff;
    box-shadow: 0 .5rem 1rem rgba(38,31,68,.5)!important;
    border-color: #003d65 !important;
}
.image-full img{
	width:100%;
}
.splide-item .splide__pagination__page{
	width: 15px;
    height: 15px;
}
.splide-item .splide__pagination__page.is-active{
	background:#ee4923;
}
.splide-item .splide__pagination {
    bottom: -3rem;
}


.link-download .title{
    color: #ee4923;
	font-weight:600;
}
.dowload-faq .link-download .title{
    color: #0c3e65;
}
.list-desc,.list-content ul li{
	font-size:14px;
	font-weight: 400;
}
.list-title {
    font-weight: 500;
    color: #003d65;
	line-height:1.5em;
}
.list-group-item-action:focus, .list-group-item-action:hover{background:transparent;}
.content-info{font-size:12pt; font-weight:400;}
.section-second .title-section .title-number,.section-second .desc-section,.section-second .title-section span.icon-section {
	color:#003d65;
}
.section-second .title-section span.icon-section {
    background: #003d65;color:#ffffff;
}
body{
	font-family:Montserrat,"sans-serif";
	color:#022b45;
	font-weight:400;
}
.bar-style-1 {
    background: #f1f1f1;
    border-radius: 100px;
    padding: 3px;
    border: 1px solid #eee;
}
.tool-bar-wrap {
    position: relative;
	border-radius: 25px;
    overflow: hidden;
}
.tool-bar {
    overflow: hidden;
    padding-right: 26px;
    background: #f1f1f1;
    border-radius: 100px;
    border: 2px solid #eee;
    position: relative;
}
.bar-style-1 .tool-bar {
    padding-right: 41px;
    border: none;
    border-radius: 25px;
    overflow: hidden;
}
.tool-bar .noUi-target {
    background: 0 0;
    border-radius: 100px;
    border: none;
    box-shadow: none;
    height: 26px;
	height:41px;
}
.tool-bar .noUi-connects {
    border-radius: 100px;

}
.bar-style-1  .noUi-handle:after, .bar-style-1 .noUi-handle:before{display:none;}
.tool-bar .noUi-horizontal .noUi-handle {
    border: none;
    border-radius: 100px;
    background: #fff;
    cursor: pointer;
    box-shadow: none;
    width: 20px;
    height: 20px;
    top: 3px;
    right: -23px;
}
html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
    right: -17px;
    left: auto;
}
.bar-style-1 .tool-bar .noUi-horizontal .noUi-handle {
    background: url(../images/btn-play-35.png) center no-repeat;
	background-color: #fff;
    background-size: contain;
    width: 35px;
    height: 35px;
    top: 3px;
    right: -38px;
}

.noUi-handle::after{
    content: "\f04b";
	font-size:20pt;
	color:#000;
	font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}
.tool-bar .noUi-handle .noUi-touch-area {
    position: absolute;
    width: 900px;
    height: auto;
    background: #000;
    right: -3px;
    top: -3px;
    bottom: -3px;
    border-radius: 100px;
    z-index: -1;
    background: linear-gradient(to right,#bd2800,#f6542f);
}
.bar-style-1 .tool-bar .noUi-handle .noUi-touch-area {
	background: linear-gradient(to right,#ee4923,#003d65);
}
.bar-style-1 .tool-bar.tool-bar-color .noUi-handle .noUi-touch-area{
	    background:#ee4923;
}
.flex-1 {
    flex: 1;
}
.hili {
    background-color: #f9f9f9;
    border-radius: 100px;
    padding: 5px 5px;
    border: 1px solid #eee;
}
.hili .txt {
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    margin:0 10px 0 10px;
	line-height:1.4em;
}
.hili .vlu {
    color: #ee4822;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 100px;
    padding: 5px 20px;
    width: 186px;
    display: block;
    text-align: center;
}

.hili .vlu strong, .hili .vlu .hili-title{
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3em;
    display: block;
	    color: #ee4923;
}
.title-section.title-section-start{
	padding-left:0;
}
.title-wp {
    position: relative;
	padding-left:80px;
}
.hili .vlu i {
    font-size: 12px;
    font-weight: 500;
    vertical-align: middle;
}
.hili .icon i {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ee4923;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
}
.bar-style-1 .input-tool-vl {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: inherit;
    line-height: 30px;
    margin-left: 15px;
    padding-right: 12px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.bar-style-1 .input-tool-vl span {
    font-weight: 700;
}
.sm-tit {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.bigk-highlight .sm-tit {
	color:#ee4923;
}
.title-section{position:relative; padding-left:80px;}
.title-section span.icon-section {
    position: absolute;
    font-size: 26pt;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
	background: #003d65;
    color: #ffffff;
    border-radius: 50%;
    left: 0;
    top: 1px;
}
.title-section .title-number {
    font-size: 48pt;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    width: auto;
    color: #003d65;
}
.desc-section {
    font-size: 18pt;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5em;
    letter-spacing: normal;
    margin: 0;
    color: #003d65;
}
.title-section .desc-section {
	width: calc(100% - 95px);
	padding-left:10px;
}
.rounded {
    border-radius: 0.75rem!important;
}
img{max-width:100%;}
.bg-banner-home{
	min-height:760px;
}
.navbar-brand{width:180px;}
.navbar-brand img{max-width:100%;}
.navbar-brand.navbar-enterprise {
    width: 100%;
    max-width: 350px;
}
/*=================== back-top ===============*/
#back-top {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 9998;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 25px;
    background-color: rgb(238,73,35,.9);
    padding: 0 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
#back-top svg{
	    display: block;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
}
#back-top:hover {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}
/*=================== back-top ===============*/
.container-bg{
	/*background: rgb(255,255,255);
	background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);*/
	position:relative;
	z-index:100;
}
.bg-banner-home:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
	top:0;
	left:0;
    background: radial-gradient(circle, rgba(255,255,255,.8) 0%, rgba(255,255,255,0) 100%);
}
.section-second .list-group-item{padding:0}
.note-table{font-size:13px;}
.btn-hide {
    pointer-events: none;
}
@media(min-width:576px){
	.list-content .list-icon{
		width:47px;
	}
}
.list-title{
	font-size:16px;
}
.btn-hover-none{font-weight:500;}
.btn-hover-none:hover {
    color: #ff5938;
}
@media(min-width:992px){
	.section-first-header>.container:before {
		content: "";
		width: 100%;
		height: 224px;
		background: rgba(0,61,101,0.7);
		position: absolute;
		top: 0;
		left:0;
		border-radius: 10px 10px 0 0;
	}
	.title-section span.icon-section{
		background: #ffffff;
		color: #ee4923;
	}
	.desc-section,.title-section .title-number{color:#ffffff;}
}
@media(min-width:1199px){
	.section-first-header>.container:before {
		width: 68%;
	}
}

@media(max-width:1400px){
	.section-first-header>.container:before {
		height: 352px;	
	}
	.navbar-brand.navbar-enterprise {
		max-width: 260px;
	}
	.navbar-brand {
		width: 155px;
	}
}
@media screen and (max-width: 1400px) and (min-width: 768px){
	.btn-click{padding:10px 20px;}
	.hili .vlu {
		width: 110px;
	}
	.hili .icon i {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
}
@media(max-width:1200px){
	.bg-banner-home  header.header nav.main-nav {
		position: static;
		margin-left: auto;
		padding-right: 4pc;
	}
	.hili .vlu strong, .hili .vlu .hili-title{
		font-size:14px;
	}
	.hili .txt{font-size:14px;}
}
@media(max-width:992px){
	.bg-banner-home header.header nav.main-nav{padding:0;}
	.hili .vlu {
		width: 110px;
	}
	.hili .vlu strong {
		font-size: 16px;
	}
	.list-title{
		font-size:12pt;
	}
	.section-first-header>.container:before {
		width: 100%;
	}
	.title-section span.icon-section{left:0;}
	.title-section {
		position: relative;
		padding-left: 70px;
	}
	.splide-item .splide__pagination{left:0; transform: translateX(0%); bottom:-2rem;}
	.title-section-start:before{left:0; width:100%;}
	.bg-banner-home {
		min-height: 555px;
	}
	.navbar-brand.navbar-enterprise {
		max-width: 250px;
	}
	.navbar-brand {
		width: 130px;
	}
	.banner-images img {
		width: 85%;
	}
}
@media(max-width:767px){
	.bg-banner-home header.header nav.main-nav{margin:0 auto;}
	.menu>li {
		margin-right: 1rem;
	}
	.splide-terminal .p-description{text-align:center;}
	.title-section .desc-section{width:100%;}
	.btn-click{width:100%;}
	.title-section-sub,.desc-section{
		font-size: 16pt;
	}
	.title-section .title-number{font-size:38pt;}
	.hili {
		border-radius: 10px;
		padding: 0;
	}
	.icon-infor {
		width: 100%;
		padding: 15px;
	}
	.hili .vlu{width:100%; border-radius:10px;}
	.hili .vlu strong, .hili .vlu .hili-title{font-size:14pt;}
	.btn-click{
		padding:7px 20px;
	}
	.title-section span.icon-section{margin-right:10px;}
	.title-section span.icon-section{position:relative;}
	.title-wp,.title-section{padding-left:0;}
	.list-desc {
		text-align: left;
	}
	.title-section-sub, .desc-section{margin-top:10px;}
	.bg-banner-home {
		min-height: 486px;
	}

	.navbar-brand.navbar-enterprise {
		max-width: 200px;
	}
	.navbar-brand {
		width: 115px;
	}
	.image.splide-icon-image img, .image.splide-4-image img{
		width:60px;
	}
	div.splide-4{
		padding:0 2rem;
	}
	.link-download img {
		width: 100px;
	}
	h4.splide-4-title {
		font-size: 17px;
		font-weight: bold;
	}
	p,.list-desc, .list-content ul li,.p-description{font-size:13px;}
	.title-section-4,.title-cus{font-size:16px;}
	.splide-icon-title{font-size:15px;}
	.section-6 .splide__arrow i {
		font-size: 22px;
	}
	.note-table{font-size:11px;}
	.caculator_system_list_content h4,.caculator_system_list_content .number b{
		font-size: 16px;
	}
	.caculator_system_list_content .number {
		font-size: 22px;
	}
}
@media(max-width:576px){
	.image-cus-stay,.cus-stay-info{text-align:center;}
	.image-cus-stay img{max-width:100px;}
	.splide-terminal.splide-item .splide__pagination__page{
		width: 6px;
		height: 6px;
	}
	.splide-terminal.splide-item .splide__pagination__page.is-active{
		background:#ee4923;
	}
	a.play-video-terminal {
		width: 20px;
		height: 20px;
		font-size: 10px;
	}
}
@media(max-width:500px){
	.navbar-brand.navbar-enterprise {
		max-width: 280px;
	}
	.navbar-brand {
		width: 155px;
	}
	a.link-download .title {
		font-size: 10.2pt;
	}
	.content-info{font-size:11pt; text-align:justify;}
	.bar-style-1 .input-tool-vl,.hili .vlu strong, .hili .vlu .hili-title,.sm-tit{font-size:12pt;}
	.title-section span.icon-section {
		font-size: 18pt;
		width: 45px;
		height: 45px;
	}
	.title-section .title-number {
		font-size: 32pt;
	}
	.title-section-sub, .desc-section {
		font-size: 15px;
		font-weight:bold;
	}
	.btn-click{
		font-size: 10pt;
	}
	.list-price li span{font-size:13px;}
	.title-section .desc-section{width:100%;padding-left:0;}
	h4.splide-4-title {
		font-size: 17px;
		font-weight: bold;
	}
	p,.list-desc, .list-content ul li,.p-description{font-size:13px;}
	.title-section-4,.title-cus{font-size:16px;}
	.splide-icon-title{font-size:13px;}
	.section-6 .splide__arrow i {
		font-size: 22px;
	}
	.image-full-tabs-solarsco{width:260px;}
}
@media(max-width:330px){
	.list-price li span{font-size:11px;}
}