/* ================================================
  CUSTOM FONTS
================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* ================================================
  CUSTOM CSS
================================================= */
:root {
  --rs-color: #ff1a18;
  --rs-color-2: #005470;
  --rs-color-sub: #460402;
  --rs-color-sub-2: #080809;
  --rs-color-sub-3: #808080;
  --rs-body-color: #363739;
  --rs-font-medium-small: 500;
  --rs-font-medium: 600;
  --rs-font-bold: 700;
  --rs-font-extralight: 200;
  --rs-border-card-color: #e6e6e6;
  --rs-line-height: 1.4258;
  --rs-bg-gray: #f1f1f1;
  --rs-color-smoke: #f6f6f6;
  --rs-font-heading: "Montserrat", sans-serif;
  --rs-font-content: "Open Sans", sans-serif;

  --rs-color-rgb: 255, 26, 24;
  --rs-color-2-rgb: 0, 84, 112;
}
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background-color: #fff;
  line-height: 27px;
  font-weight: 400;
  font-size: 16px;
  color: var(--rs-body-color);
}

/* ================================================
  REWRITE BOOSTRAP
================================================= */
h1, h2, h3, h4, h5, h6{
  line-height: var(--rs-line-height);
}
.start-auto{
  left: auto !important;
}
.end-auto{
  right: auto !important;
}
a{
  text-decoration: none;
  color: var(--rs-body-color);
  transition: color .25s ease-in-out;
}
a:hover,a:focus{
  color: var(--rs-color);
}
.cursor-pointer{
  cursor: pointer;
}
.btn{
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  padding: 10px 32px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: var(--rs-font-medium);
}
.bg-theme{
  background-color: var(--rs-color);
}
.color-theme{
  color: var(--rs-color);
}
.color-theme-2{
  color: var(--rs-color-2);
}
.color-theme-3{
  color: var(--rs-color-sub);
}
.color-theme-4{
  color: var(--rs-color-sub-3);
}
.btn-theme{
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--rs-color);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  padding: 19px 30px;
  min-width: 170px;
  border-radius: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-theme:hover{
  background-color: var(--rs-color);
  color: #fff;
}
.btn-theme:before,
.btn-theme:after{
  content: "";
  position: absolute;
  background-color: var(--rs-color-2);
  z-index: -1;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 0;
}
.btn-theme:before {
  left: -20px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn-theme:after {
  right: -20px;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  -ms-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
}
.btn-theme:hover:before{
  -webkit-animation:criss-cross-left 0.9s both;
  animation:criss-cross-left 0.9s both;
  -webkit-animation-direction:alternate;
  animation-direction:alternate
}
.btn-theme:hover:after{
  -webkit-animation:criss-cross-right 0.9s both;
  animation:criss-cross-right 0.9s both;
  -webkit-animation-direction:alternate;
  animation-direction:alternate
}
@-webkit-keyframes criss-cross-left {
  0% {
    left:-20px
  }
  50% {
    left:50%;
    height:20px;
    width:20px
  }
  100% {
    left:50%;
    height:calc(300px*1.5);
    width:calc(300px*1.5)
  }
}
@keyframes criss-cross-left {
  0% {
    left:-20px
  }
  50% {
    left:50%;
    height:20px;
    width:20px
  }
  100% {
    left:50%;
    height:calc(300px*1.5);
    width:calc(300px*1.5)
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right:-20px
  }
  50% {
    right:50%;
    height:20px;
    width:20px
  }
  100% {
    right:50%;
    height:calc(300px*1.5);
    width:calc(300px*1.5)
  }
}
@keyframes criss-cross-right {
  0% {
    right:-20px
  }
  50% {
    right:50%;
    height:20px;
    width:20px
  }
  100% {
    right:50%;
    height:calc(300px*1.5);
    width:calc(300px*1.5)
  }
}
.btn-theme-tpl{
  position: relative;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 0.8;
  padding: 0 0 5px;
  margin-bottom: -2px;
  text-transform: uppercase;
  color: var(--rs-color-sub-2);
}
.btn-theme-tpl:before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background-color: var(--rs-color);
  -webkit-transition:all ease 0.4s;
  transition:all ease 0.4s
}
.btn-theme-tpl:hover,
.btn-theme-tpl.active {
  color: var(--rs-color)
}
.btn-theme-tpl:hover:before{
  width:100%
}
.hidden{
  display: none !important;
}
.clearfix:before,
.clearfix:after{
  display: block;
  clear: both;
  content: "";
}

.form-control::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #aaaaaa;
  opacity: 1;
}
.form-control:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #aaaaaa;
  opacity: 1;
}
.form-control::-ms-input-placeholder,
input::-ms-input-placeholder {
  color: #aaaaaa;
  opacity: 1;
}
.form-control::placeholder,
input::placeholder {
  color: #aaaaaa;
  opacity: 1;
}

@media screen and (max-width: 575px){
  .hidden-xs{
    display: none !important;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px){
  .hidden-sm{
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px){
  .hidden-md{
    display: none !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px){
  .hidden-lg{
    display: none !important;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1439px){
  .hidden-xl{
    display: none !important;
  }
}
@media screen and (min-width: 1440px){
  .hidden-xxl{
    display: none !important;
  }
}
/*********************************************************************
**
**  DEFINE BOOTSTRAP
**
**  row-78
**
**  row
**  margin-left: -7px;
**  margin-right: -8px;
**
**  col
**  padding-left: 7px;
**  padding-right: 8px;
**
**  row-0
**
**  row
**  margin-left: 0;
**  margin-right: 0;
**
**  col
**  padding-left: 0;
**  padding-right: 0;
**
**********************************************************************/
.row-78{
  margin-left: -7px !important;
  margin-right: -8px !important;
}
.row-78 > div{
  padding-left: 7px !important;
  padding-right: 8px !important;
}
.row-0{
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.row-0 > div{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media screen and (max-width: 575px){
  .row-xs-78{
    margin-left: -7px !important;
    margin-right: -8px !important;
  }
  .row-xs-78 > div{
    padding-left: 7px !important;
    padding-right: 8px !important;
  }
}

/* ================================================
  FIXED - FLUID HEIGHT
================================================= */
.fixed-fluid-height{
  display: flex;
  flex-direction: column;
}
.fixed-fluid-height .fixed-height{
  flex: none;
}
.fixed-fluid-height .fluid-height{
  flex: 1 0 auto;
}


/* ================================================
  STYLE
================================================= */
/* logo brand */
.navbar-brand img{
  -webkit-transition: all ease .4s;
  transition: all ease .4s;
}
@media screen and (min-width: 992px){
  .navbar-brand{
    margin-right: 25px;
  }
  .navbar-brand img{
    height: 65px;
  }
}
@media screen and (min-width: 1200px){
  .navbar-brand{
    margin-right: 25px;
  }
  .navbar-brand img{
    height: 75px;
  }
}
@media screen and (min-width: 1400px){
  .navbar-brand{
    margin-right: 50px;
  }
}
@media screen and (max-width: 991px){
  .navbar-brand{
    margin-right: 0;
  }
  .navbar-brand img{
    height: 65px;
  }
}

/* body */
body.cke_editable{
  padding-top: 0 !important;
}

/* ==========================================================================================
  PAGINATION
========================================================================================== */
.pagination{
  margin-top: 10px;
  display: inline-block;
  background-color: #fff;
  padding: 5px;
  border-radius: 27px;
}
.pagination li{
  display: -webkit-inline-flex;
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
}
.pagination .page-link{
  color: #333;
  border-width: 0;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 35px;
}
.pagination li a:focus{
  box-shadow: none;
}
.pagination .page-item.active .page-link{
  background-color: var(--rs-color);
  border-color: var(--rs-color);
  color: #fff;
}

/* ================================================
  HEADER
================================================= */
.nav-header{
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.15);
  border-bottom: 5px solid var(--rs-bg-gray)
}
.nav-header .navbar-nav > .nav-item > .nav-link{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;

  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  color: var(--rs-color-sub-2);
  font-weight: var(--rs-font-medium-small);
  letter-spacing: 0px;
  font-size: 16px;
}
.nav-header .navbar-nav .nav-item:hover > .nav-link,
.nav-header .navbar-nav .nav-item > .nav-link.active{
  color: var(--rs-color) !important;
}
.nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link{
  color: var(--rs-color-sub-2);
  font-size: 16px;
  font-weight: 500;
}

.nav-header .navbar-nav .nav-item.dropdown .dropdown-menu{
  padding-top: 5px;
  padding-bottom: 5px;
  border-width: 0;
  border-radius: 0;
  
  -webkit-box-shadow: 0 8px 50px -6px rgba(84,84,120,.26);
  box-shadow: 0 8px 50px -6px rgba(84,84,120,.26);
}
.nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item:hover,
.nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item:active{
  background-color: transparent !important;
}

@media (max-width:1199px) and (min-width:992px) {
  .nav-header .navbar-nav > .nav-item > .nav-link{
    letter-spacing: 0px;
    font-size: 14px;
    padding: 24px 8px;
  }
}
@media (min-width:992px) {
  .nav-header .navbar-nav > .nav-item > .nav-link span:after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: rgba(95,56,20,1);
    width: 100%;
    height: 0;
    -webkit-transition: height 300ms linear 0ms;
    -khtml-transition: height 300ms linear 0ms;
    -moz-transition: height 300ms linear 0ms;
    -ms-transition: height 300ms linear 0ms;
    -o-transition: height 300ms linear 0ms;
    transition: height 300ms linear 0ms;
  }
  .nav-header .navbar-nav .nav-item.dropdown:hover .dropdown-menu{
    display: block;
  }
  .nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link.active,
  .nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link:hover,
  .nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link:focus{
    color: var(--rs-color-sub);
  }
  .nav-header .navbar-nav .nav-item.dropdown .dropdown-menu{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item{
    padding: 0;
  }
  .nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link{
    padding: 6px 20px;
  }
  .nav-header .navbar-nav .dropdown-menu .dropdown-menu{
    top: -10px !important;
    left: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    opacity: 0;
    visibility: hidden;
  }
  .nav-header .navbar-nav .dropdown-menu .nav-item:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
  }
  .nav-header .navbar-nav .dropdown-menu .dropdown-toggle::after {
    position: absolute;
    z-index: 1;
    right: 10px;
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: var(--web-font-regular);
    border: 0 !important;
  }
}
@media (max-width:1399px) and (min-width:1200px) {
  .nav-header .navbar-nav > .nav-item > .nav-link{
    font-size: 14px;
  }
}
@media (min-width:1200px) {
  .nav-header .navbar-nav > .nav-item > .nav-link{
    padding-top: 34px;
    padding-bottom: 34px;
    text-transform: uppercase;
  }
}
@media (max-width:991px) {
  .nav-header .collapse-header:not(.show){
    display: inherit;
  }
  .nav-header .collapse-header{
    position: absolute;
    left: 0;
    top: 75px;
    height: calc(100vh - 75px) !important;
    background-color: rgba(0,0,0,.75);
    width: 0;
    box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--rs-color-2);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
  }
  .nav-header .collapse-header.show{
    opacity: 1;
    visibility: visible;
    width: 100%;
  }
  .nav-header .over-menu{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .nav-header .navbar-nav.menu-main{
    background-color: #fff;
    display: inline-block;
    height: 100%;
    position: relative;
    z-index: 2;
    left: -300px;
    overflow: auto;
    padding-bottom: 50px;
    padding-top: 15px;
    -webkit-transition: left ease 1s;
    transition: left ease 1s;
  }
  .nav-header .collapse-header.show .navbar-nav.menu-main,
  .nav-header .collapse-header.collapsing .navbar-nav.menu-main{
    left: 0;
  }

  .nav-header .navbar-nav{
    padding-top: .25rem;
    padding-bottom: .25rem;
  }
  .line-header:after{
    bottom: -1px;
  }
  .nav-header .navbar-nav .nav-item{
    padding: 0 1rem;
  }
  .nav-header .navbar-nav .nav-item .nav-item{
    padding-right: 0;
  }
  .nav-header .navbar-nav > .nav-item > .nav-link{
    text-transform: uppercase;
  }
  .nav-header .navbar-nav .nav-item .nav-link{
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .nav-header .navbar-nav > .nav-item:last-child .nav-link{
    border-bottom-width: 0;
  }
  .nav-header .navbar-nav .nav-item .nav-link:after{
    position: absolute;
    z-index: 1;
    top: 20px;
    right: .75rem;
  }
  .nav-header .navbar-nav .nav-item.dropdown .dropdown-menu{
    display: block;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
  }
  .nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link{
    color: var(--rs-body-color);
  }
  .nav-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link{
    padding: 5px 15px 5px 0;
  }
}

/* ================================================
  HEADER FIXED
================================================= */
.header-fixed .header-top{
  display: none;
}
.header-fixed .nav-header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
@media screen and (min-width: 992px){
  .header-fixed{
    padding-top: 143.5px;
  }
}
@media (max-width:1199px) and (min-width:992px) {
  .header-fixed{
    padding-top: 123.5px;
  }
}
@media screen and (max-width: 991px){
  .header-fixed{
    padding-top: 75px;
  }
}


/* ================================================
  FOOTER
================================================= */
footer {
  padding-top: 70px;
  padding-bottom: 55px;
  background-color: var(--rs-color-sub-2);
  font-size: 14px;
}
footer a{
  color: #fff;
}
footer a:hover{
  color: var(--rs-color);
}
.f-company .fc-logo img{
  max-width: 100%;
  max-height: 90px;
}
.f-title{
  position: relative;
  font-size: 20px;
  font-weight: var(--rs-font-medium);
  line-height: 1em;
  padding-bottom: 28px;
  margin: -0.12em 0 40px 0;
  text-transform: capitalize;
}
.f-title:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  height: 2px;
  width: 110px;
  background-color: transparent;
  background-image: -webkit-linear-gradient(to right, #fff, transparent);
  background-image: linear-gradient(to right, #fff, transparent);
}
.f-news .rl-news .ci-news img{
  width: 100px;
}
.f-news .rl-news .ci-news .date{
  font-size: 12px;
  color: #fff;
  line-height: 24px;
}
.f-news .rl-news .ci-news .title{
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 0;
}
.f-news .rl-news .ci-news .title a{
  -webkit-line-clamp: 2;
}

@media (max-width: 767px){
  footer{
    padding-top: 40px;
    padding-bottom: 10px;
  }
}

/* ==========================================================================================
  COPYRIGHT
========================================================================================== */
.copyright-powered{
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--rs-color-2);
  color: #fff;
  font-size: 12px;
}
.copyright-powered a{
  color: #fff;
}
.copyright span{
  font-weight: var(--rs-font-bold);
}
.powered-by{
  text-align: right;
}
@media (max-width:991px) {
  .copyright-powered{
    padding-left: 0;
  }
}
@media (max-width: 1199px){
  .copyright-powered{
    font-size: 12px;
  }
}
@media (max-width:767px) {
  .copyright,
  .powered-by{
    text-align: center;
  }
  .powered-by{
    margin-top: 5px;
  }
}

/* ================================================
  SCROLL TOP
================================================= */
body {
  position: relative;
}
.scrollTop {
  opacity: 0;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  -webkit-transition: all 0.4s ease-in 0s;
  -ms-transition: all 0.4s ease-in 0s;
  transition: all 0.4s ease-in 0s; 
}
.scrollTop a {
  text-align: center;
  width: 50px;
  line-height: 44px;
  height: 50px;
  background-color: #fff;
  border-radius: 200px;
  color: #323232;
  border: 1px solid #ced4da;
  font-size: 1.25rem;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in 0s;
  -ms-transition: all 0.2s ease-in 0s;
  transition: all 0.2s ease-in 0s; 
}
.scrollTop a:hover {
  background-color: rgba(var(--web-color2-rgb),.75);
  border-color: transparent;
  color: #fff;
}

/* ==========================================================================================
  SLIDER BANNER
========================================================================================== */
section.slider-section {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}
.slider-wrapper {
  width: 100%;
}
.slider-wrapper .item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  float: left;
  width: 100%;
  /*min-height: 100vh;*/
}
.slider-wrapper .item:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  /*background-color: rgba(0,0,0,0.25);*/
}
.slider-wrapper .item .container{
  position: relative;
}
.slider-wrapper .owl-nav {
  position: absolute;
  top: 52vh;
  width: 100%;
  z-index:999;
  color:#fff;
  letter-spacing:3px;
  font-size:8px;
  text-transform:uppercase;
}
.slider-wrapper .owl-theme .owl-nav [class*='owl-'] {
  color: #fff;
  font-size: 10px;
  margin: 0px;
  display: inline-block;
  cursor: pointer;
  padding: 0px !important;
  background: transparent !important;
  border-radius: 0px !important;  
}
.slider-wrapper .owl-theme .owl-nav [class*="owl-"]{
  display: none;
}
.slider-wrapper .owl-prev {
  float: left;
  margin-left:20px !important;
  position: relative;
}
.slider-wrapper .owl-next {
  float: right;
  margin-right:20px !important;
  position: relative;
}
.slider-wrapper .owl-prev:after,
.slider-wrapper .owl-next:after{
  position:absolute;
  content:'';
  width:50%;
  height:1px;
  background-color:#878989;
  bottom:-1px;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
.slider-wrapper .owl-prev:after {
  right:0px ;
}
.slider-wrapper .owl-next:after {
  left:0px ;
}
.slider-wrapper .owl-prev:hover:after,
.slider-wrapper .owl-next:hover:after{
  width:100%; 
}
.slider-wrapper .owl-dots {
  position: absolute;
  bottom: 10px;
  z-index: 99;
  width: 100%;
  text-align: center;
}
.slider-wrapper .owl-dot {
  display: inline-block;
}
.slider-wrapper .owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 3px;
  margin: 5px 7px;
  background: #878989;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 0px;
}
.slider-wrapper .owl-theme .owl-dots .owl-dot.active span, 
.slider-wrapper .owl-theme .owl-dots .owl-dot:hover span {
  background: #ffffff !important;
}

.item-wrapper{
  height: calc(100vh - 138px);
  position: relative;
}
.item-wrapper .item-bg{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: 0 50%;
  transition: all 20s;
}
.slider-wrapper .owl-item.active .item-wrapper .item-bg{
  transform: scale(1.05);
}
.item-text{
  position: relative;
  z-index: 2;
}
.item-text h3{
  font-size: 78px;
  text-transform: uppercase;
  color: #fff;
  font-weight: var(--rs-font-bold);
  line-height: var(--rs-line-height);
}
.item-text h3 a{
  color: inherit;
}

/* BANNER PAGE */
.slider-wrapper.slider-wrapper-page .owl-item.active .item-wrapper .item-bg{
  transform: scale(1);
}
.slider-wrapper-page .item-wrapper{
  height: 500px;
}

@media (max-width: 991px){
  .item-wrapper{
    height: calc(100vh - 100vh*2/3) !important;
  }
}

/* ================================================
  HEADER CONTAINER
================================================= */
.h-container{
  z-index: 5;
}
@media screen and (min-width: 1440px){
  .h-container{
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (min-width: 992px){
  .h-container{
    max-width: 100%;
  }
}

/* ================================================
  HEADER TOP
================================================= */
.t-right a{
  color: #fff;
}
.t-right i{
  font-size: 14px
}
.t-right .tr-item{
  position: relative;
}
.t-right .tr-item + .tr-item:before{
  content: "";
  position: absolute;
  z-index: 1;
  left: -1px;
  top: 4px;
  width: 2px;
  height: 20px;
  background-color: var(--rs-border-card-color);
}
ul.t-social .list-inline-item:not(:last-child){
  margin-right: 0;
}
ul.t-social a{
  font-size: 15px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: block;
}
.t-lang .dropdown-toggle:after{
  position: relative;
  top: 2px;
  margin-left: 5px;
}
.t-lang .dropdown-menu{
  transform: translate(0px, 32px) !important;
  border-radius: 3px;
  min-width: auto;
}
.t-lang .dropdown-menu:before{
  border-radius: 0;
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background-color: #fff;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid #d2d2d2;
  border-left: 1px solid #d2d2d2;
}
.t-lang .dropdown-item{
  color: var(--rs-body-color);
}
.t-lang .dropdown-item.active,
.t-lang .dropdown-item:hover,
.t-lang .dropdown-item:focus{
  color: var(--rs-color);
}
.t-lang .dropdown-item:hover,
.t-lang .dropdown-item:focus{
  background-color: #fff;
}

/* ================================================
  HEADER BG LOGO
================================================= */
.header-top{
  position: relative;
  z-index: 4;
  background-color: var(--rs-color-2)
}
.nav-header{
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 992px){
  .nav-header .navbar-nav > .nav-item > .nav-link{
    letter-spacing: 0;
  }
  .header-top{
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px){
  
}
@media screen and (min-width: 1440px){
  .nav-header .navbar-nav > .nav-item > .nav-link{
    letter-spacing: 0px;
  }
  
}
@media screen and (min-width: 1600px){

}
@media screen and (min-width: 768px) and (max-width: 991px){
  
}
@media screen and (max-width: 991px){
  .header-top{
    display: none;
  }
}
@media screen and (max-width: 767px){
  
}

/* ================================================
  LANGUAGE MOBILE
================================================= */
.mobi-lang{
  
}
.mobi-lang .t-lang .dropdown-menu{
  top: 1px;
  left: -10px;
}
.mobi-lang .t-lang .dropdown-menu:before{
  top: -6px;
}
.mobi-lang .t-lang .dropdown-item{
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 0;
  line-height: var(--rs-line-height);
}
.mobi-lang .t-lang .dropdown-item img{
  height: 16px;
}

/* ================================================
  FOOT TOGGLER
================================================= */
.foot-toggler{
  background-color: transparent;
  width: 33px;
  font-size: 24px;
}
.foot-top{
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  background-color: rgba(0,0,0,.75);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.foot-top.show{
  width: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.foot-top .ft-container {
  position: relative;
  right: -500px;
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
}
.foot-top.show .ft-container {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.ft-container{
  width: 450px;
  background-color: #fff;
}
.ft-close a{
  display: inline-block;
  font-size: 50px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.ft-close a:hover{
  color: var(--rs-color);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ft-company .c-logo img{
  height: 100px;
}
.ft-company .c-name{
  font-weight: var(--rs-font-bold);
  text-transform: uppercase;
  font-size: 20px;
}
ul.social-tpl li{
  position: relative;
  padding-left: 25px;
}
ul.social-tpl li i{
  position: absolute;
  z-index: 1;
  top: 9px;
  left: 0;
  font-size: 14px;
}
.title-box{
  position: relative;
  font-size: 22px;
  font-weight: var(--rs-font-medium);
  line-height: 1em;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.title-box:before,
.title-box:after{
  content: '';
  height: 3px;
  width: 100%;
  background-color: #cdcdcd;
  position: absolute;
  bottom: 0;
  left: 0;
}
.title-box:after{
  width: 40px;
  background-color: var(--rs-color);
}
.rl-news .ci-news img{
  width: 130px;
}
.rl-news .ci-news .date{
  font-size: 14px;
  color: var(--rs-body-color);
  margin-bottom: 5px;
}
.rl-news .ci-news .title{
  font-weight: var(--rs-font-medium);
  font-size: 14px;
  line-height: 1.5;
  text-transform: capitalize;
}
.rl-news .ci-news .title a{
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  white-space: normal;
  -webkit-box-orient: vertical;
}
.ft-social ul.t-social a{
  font-size: 20px;
}

/* ================================================
  NEWSLETTER
================================================= */
.newsletter-form{
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.newsletter-form .btn-newsletter{
  padding-left: 20px;
  padding-right: 20px;
}
.newsletter-form input.form-control{
  border-width: 0;
  background-color: transparent;
}
.newsletter-form input.form-control:focus{
  box-shadow: none;
}
.newsletter-error{
  font-size: 12px;
}
.newsletter-error:empty{
  display: none;
}

/* ================================================
  SECTION
================================================= */
.section-padding{
  padding-top: 70px;
  padding-bottom: 55px;
}
.sub-title-line .left-line,
.sub-title-line .right-line{
  position: relative;
}
.sub-title-line .left-line:before,
.sub-title-line .right-line:after{
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  border-radius: 10px;
  height: 2px;
  width: 60px;
  background-color: transparent;
}
.sub-title-line .right-line:after{
  right: -80px;
  background-image: -webkit-linear-gradient(to right, var(--rs-color), transparent);
  background-image: linear-gradient(to right, var(--rs-color), transparent);
}
.sub-title-line .left-line:before{
  left: -80px;
  background-image: -webkit-linear-gradient(to left, var(--rs-color), transparent);
  background-image: linear-gradient(to left, var(--rs-color), transparent);
}
.sub-title{
  color: var(--rs-color);
  font-size: 16px;
  font-weight: var(--rs-font-medium);
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-block;
}
.section-title{
  font-size: 35px;
  font-weight: var(--rs-font-extralight);
  line-height: var(--rs-line-height);
  margin-bottom: 20px;
  letter-spacing: -1.7px;
  color: var(--rs-color-2);
}
.content{
  font-family: var(--rs-font-content);
}
.bg-section{
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-section,
.bg-section .section-title,
.bg-section a{
  color: #fff;
}
/*.bg-section:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.66;
}
.bg-section > .container{
  position: relative;
  z-index: 2;
}*/
.bg-section-gray{
  background-color: var(--rs-bg-gray);
}
@media screen and (min-width: 768px) and (max-width: 991px){
  .section-padding{
    padding-top: 50px;
    padding-bottom: 35px;
  }
  .section-title{
    font-size: 28px;
  }
}
@media (max-width: 767px){
  .section-padding{
    padding-top: 40px;
    padding-bottom: 25px;
  }
  .section-title{
    font-size: 24px;
    margin-bottom: 10px;
  }
}

/* ================================================
  PAGE
================================================= */
.title-page{
  font-size: 30px;
  font-weight: var(--rs-font-medium);
  color: var(--rs-color-2)
}
.title-recent{
  font-size: 20px;
  font-weight: var(--rs-font-medium);
}
.title-page.title-page-sub{
  font-size: 20px;
}
.date-page{
  color: var(--rs-color-2)
}
.content-detail{
  color: #525252;
  font-family: var(--rs-font-content);
}
.content-detail img{
  max-width: 100% !important;
}

@media (max-width: 767px){
  .title-page{
    font-size: 20px;
  }
  .title-recent{
    font-size: 16px;
  }
  .title-page.title-page-sub{
    font-size: 16px ;
  }
  .content-detail img{
    height: auto !important;
  }
}

/* ================================================
  SECTION SERVICE
================================================= */
.service-card {
  position:relative;
  border:1px solid var(--rs-border-card-color);
  background-color: #fff;
  padding:40px 40px 35px;
  height: 100%;
}
.service-card .box-img {
  border-radius:0px;
  overflow:hidden;
  position:absolute;
  right:0;
  top:0
}
.service-card .box-img img {
  width:100%;
  object-fit:cover;
  -webkit-transition:0.4s ease-in-out;
  transition:0.4s ease-in-out
}
.service-card .box-content {
  position:relative;
  z-index:2
}
.service-card .service-card-icon {
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
  -webkit-justify-content:space-between;
  -ms-flex-pack:justify;
  justify-content:space-between;
  -webkit-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-align:center;
  -webkit-align-items:center;
  -ms-flex-align:center;
  align-items:center;
  margin-bottom:30px
}
.service-card .service-card-icon .icon {
  height:100px;
  width:100px;
  line-height:100px;
  position:relative;
  text-align:center
}
.service-card .service-card-icon .icon img {
  width: 60px;
  height: 60px;
  -webkit-transition:0.4s;
  transition:0.4s
}
.service-card .service-card-icon .icon:after {
  content:'';
  position:absolute;
  inset:0;
  background-color: var(--rs-color);
  opacity:0.05
}
.service-card .service-card-num a{
  font-size:50px;
  /*font-family:var(--title-font);*/
  font-weight:var(--rs-font-bold);
  opacity:0.5;
  -webkit-text-stroke: 1px var(--rs-color-sub-2);
  color:transparent
}
.service-card .box-title {
  margin-bottom:15px;
  font-size: 22px;
  line-height: var(--rs-line-height);
  font-weight: var(--rs-font-medium);
}
.service-card .intro {
  margin-bottom:15px;
  color: var(--rs-body-color);
  font-family: var(--rs-font-content);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  white-space: normal;
  -webkit-box-orient: vertical;
}
.service-card:hover .service-card-icon .icon img {
  -webkit-transform:rotateY(180deg);
  transform:rotateY(180deg)
}
.service-card:hover .box-img img {
  -webkit-transform:scale(1.1);
  -ms-transform:scale(1.1);
  transform:scale(1.1)
}
@media (max-width: 1299px) {
  .service-card {
    padding:30px 30px 25px
  }
}
@media (max-width: 1199px) {
  .service-card {
    padding:20px 20px 15px
  }
}
@media (max-width: 767px) {
  .service-card {
    padding:30px 30px 25px
  }
}

@media (min-width: 1200px) {
  .service-card .box-title {
    /*min-height: 62.7333px;*/
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    white-space: normal;
    -webkit-box-orient: vertical;
  }
}
@media (min-width:768px) and (max-width: 1199px) {
  .service-card .box-title {
    /*min-height: 51.3333px;*/
    font-size: 18px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    white-space: normal;
    -webkit-box-orient: vertical;
  }
}
@media (min-width:768px) and (max-width: 991px) {
  .service-card {
    padding:15px 15px 10px
  }
  .service-card .box-title{
    font-size: 16px;
    /*min-height: 45.6333px;*/
  }
}

/* ================================================
  SECTION FEATURE
================================================= */
.counter-card-wrap {
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
  -webkit-justify-content:space-between;
  -ms-flex-pack:justify;
  justify-content:space-between;
  -webkit-box-align:center;
  -webkit-align-items:center;
  -ms-flex-align:center;
  align-items:center
}
.counter-card-wrap .col-counter-card{
  position: relative;
}
.counter-card-wrap .col-counter-card + .col-counter-card:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 0;
  width: 2px;
  height: 40%;
  border-left: 1px dashed rgba(183,183,183,0.5);
  border-right: 1px dashed rgba(183,183,183,0.5);
}
.counter-card .box-icon {
  width:90px;
  height:90px;
  border-radius:50%;
  position:relative;
  text-align:center;
  line-height:90px;
  z-index:1;
  margin:auto auto 30px
}
.counter-card .box-icon img {
  width: 50px;
  height: 50px;
  -webkit-transition:0.4s;
  transition:0.4s
}
.counter-card .box-icon:before,
.counter-card .box-icon:after {
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:100%;
  border-radius:50%;
  background-color: var(--rs-color);
  z-index:-1;
  opacity:0.08;
  -webkit-transition:0.4s;
  transition:0.4s
}
.counter-card .box-icon:before {
  background:transparent;
  opacity:1;
  border:1px dashed var(--rs-color);
  z-index:1
}
.counter-card .box-number {
  font-size:40px;
  font-weight:var(--rs-font-bold);
  margin-bottom:9px;
  margin-top:-0.2em
}
.counter-card .box-text {
  font-size:18px;
  font-weight:400;
}
.counter-card:hover .box-icon img {
  -webkit-transform:rotateY(180deg);
  transform:rotateY(180deg);
  -webkit-filter:brightness(99);
  filter:brightness(99)
}
.counter-card:hover .box-icon:after {
  opacity:1
}
.counter-card:hover .box-icon:before {
  -webkit-animation:spin 10s infinite;
  animation:spin 10s infinite;
  border:1px dashed #fff;
}
@media (max-width: 1199px) {
  .counter-card .box-number {
    font-size:30px
  }
  .counter-card .box-text {
    font-size:16px
  }
}
@media (max-width: 991px) {
  .counter-card .box-number {
    font-size:26px
  }
}
@media (max-width: 767px) {
  .counter-card {
    -webkit-box-flex:50%;
    -webkit-flex:50%;
    -ms-flex:50%;
    flex:50%;
    padding-left:10px;
    padding-right:10px
  }
  .counter-card-wrap {
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    position:relative
  }
  .counter-card-wrap .col-counter-card + .col-counter-card:before {
    display:none
  }
  .col-counter-card{
    padding-bottom:30px
  }
  .counter-card .box-icon{
    margin-bottom: 15px;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
  100% {
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg)
  }
}
@keyframes spin {
  0% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
  100% {
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg)
  }
}

/* ================================================
  SECTION NEWS
================================================= */
.news-card .info{
  padding: 0px 30px 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 0;
  border:1px solid var(--rs-border-card-color);
  border-top: 0;
}
.news-card .info .title{
  font-size: 18px;
  font-weight: var(--rs-font-medium);
  line-height: var(--rs-line-height);
}
.news-card .info .title a {
  background-image: -webkit-linear-gradient(right, var(--rs-color), var(--rs-color));
  background-image: linear-gradient(to left, var(--rs-color), var(--rs-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.news-card .info .title a:hover {
  background-size: 95% 2px;
}
.readmore-theme{
  font-weight: var(--rs-font-medium);
}
.readmore-theme:hover {
  color: var(--rs-color);
}
.news-card .img{
  position: relative;
  overflow: hidden;
}
.news-card .img img{
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.news-card:hover .img img {
  -webkit-transform:scale(1.08);
  -ms-transform:scale(1.08);
  transform:scale(1.08)
}
.news-card .info .intro{
  font-family: var(--rs-font-content);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  white-space: normal;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .news-card .info{
    padding-left: 15px;
    padding-right: 15px;
  }
  .news-card .info .title{
    font-size: 15px;
  }
  .news-card .info .title a {
    -webkit-line-clamp: 3;
  }
}

.news-slider .swiper{
  padding: 1px;
}
.news-slider .swiper-button-prev,
.news-slider .swiper-button-next{
  width: 40px;
  height: 40px;
  background-color: var(--rs-color);
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.33s ease-in-out;
  transition: 0.33s ease-in-out;
}
.news-slider:hover .swiper-button-prev,
.news-slider:hover .swiper-button-next{
  opacity: 1;
  visibility: visible;
}
.news-slider .swiper-button-prev:after,
.news-slider .swiper-button-next:after{
  font-size: 0;
}
@media (max-width: 767px) {
  .news-slider .swiper-button-prev,
  .news-slider .swiper-button-next{
    opacity: 1;
    visibility: visible;
    top: auto;
    bottom: 5px;
  }
  .news-slider .swiper-button-prev{
    left: auto;
    right: 60px;
  }
  .news-slider .swiper{
    padding-bottom: 50px;
  }
}

/* ================================================
  BREADCRUMB
================================================= */
.breadcumb-content .breadcrumb li,
.breadcumb-content .breadcrumb li a,
.breadcumb-content .breadcrumb-item + .breadcrumb-item:before{
  
}
.breadcumb-content{
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--rs-border-card-color)
}
.breadcumb-content .breadcrumb li{
  color: var(--rs-color-sub-3);
  text-transform: uppercase;
  font-size: 14px
}
.breadcumb-title{
  font-size: 50px;
  font-weight: var(--rs-font-bold)
}
@media (max-width: 767px) {
  .breadcumb-title{
    font-size: 40px;
  }
  .breadcumb-content{
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .breadcumb-content .breadcrumb li{
    font-size: 13px;
    text-transform: inherit;
  }
}

/* ================================================
  ACCORDION
================================================= */
.accordionVanhoa .accordion-item{
  background-color: transparent;
  border-radius: 0;
  border-top: 1px solid var(--bs-border-color);
}
.accordionVanhoa .accordion-item .accordion-button{
  background-color: transparent;
  font-weight: var(--rs-font-medium-small);
  font-size: 16px;
  box-shadow: none;
  color: var(--rs-body-color)
}
.accordionVanhoa .accordion-item .accordion-button:after{
  background-image: none;
  content: "\f06e";
  font-family: "Font Awesome 6 Pro";
  color: var(--rs-color);
}
.accordionVanhoa .accordion-item .accordion-button.collapsed:after{
  content: "\f070";
}
.accordionVanhoa .accordion-item .accordion-button:before{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 1.5rem;
  width: -webkit-calc(100% - 3rem);
  width: calc(100% - 3rem);
  height: 1px;
  background-color: var(--bs-border-color);
}
.accordionVanhoa .accordion-item .content-detail{
  color: var(--rs-color-sub-3)
}



.bg-section .accordionVanhoa .accordion-item{
  border-top: 1px solid #fff;
}
.bg-section .accordionVanhoa .accordion-item .accordion-button{
  color: #fff;
}
.bg-section .accordionVanhoa .accordion-item .accordion-button.collapsed:after{
  color: #fff;
}
.bg-section .accordionVanhoa .accordion-item .accordion-button:before{
  background-color: #fff;
}
.bg-section .accordionVanhoa .accordion-item .content-detail{
  color: #fff;
}

/* ================================================
  LICH SU
================================================= */
.lichsu-slider .lichsu-swiper{
  padding: 1px;
}
.lichsu-slider .swiper-button-prev,
.lichsu-slider .swiper-button-next{
  width: 40px;
  height: 40px;
  background-color: var(--rs-color);
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.33s ease-in-out;
  transition: 0.33s ease-in-out;
}
.lichsu-slider:hover .swiper-button-prev,
.lichsu-slider:hover .swiper-button-next{
  opacity: 1;
  visibility: visible;
}
.lichsu-slider .swiper-button-prev.swiper-button-disabled,
.lichsu-slider .swiper-button-next.swiper-button-disabled{
  opacity: 0.3333;
}
.lichsu-slider .swiper-button-prev:after,
.lichsu-slider .swiper-button-next:after{
  font-size: 0;
}
@media (max-width: 991px) {
  .lichsu-slider .swiper-button-prev,
  .lichsu-slider .swiper-button-next{
    opacity: 1;
    visibility: visible;
    top: auto;
    bottom: 5px;
  }
  .lichsu-slider .swiper-button-prev{
    left: auto;
    right: 60px;
  }
  .lichsu-slider .swiper{
    padding-bottom: 50px;
  }
}

.lichsu-card{
  position: relative;
  z-index: 2;
  cursor: grab;
}
.lichsu-card:after{
  content: '';
  position: absolute;
  z-index: 1;
  right: 0;
  top: calc(50% - 17px);
  width: 83px;
  height: 35px;
  background-image: url(images/lichsu_arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
}
.lichsu-card .lichsu-wrapper{
  padding: 20px;
}
.lichsu-card .box-lichsu{
  width: 276px;
  height: 276px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  padding: 50px 0;
  background-color: #f7f7f7;
}
.lichsu-card .box-lichsu:after{
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background-image: url(images/process-card-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  top: -20px;
  left: -20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
}
.lichsu-card .box-lichsu .number{
  font-size: 12px;
  font-weight: var(--rs-font-bold);
  margin: 0;
  color: #fff;
  background-color: var(--rs-color);
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 25px;
  height: 60px;
  width: 60px;
  line-height: var(--rs-line-height);
  border-radius: 50%;
  transition: 0.4s;
}
.lichsu-card .box-lichsu .number span{
  position: relative;
  z-index: 1;
  margin-top: 2px;
  font-size: 14px;
  padding-top: 1px;
}
.lichsu-card .box-lichsu .number span:before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 22px;
  height: 1px;
  top: 0;
  left: 5px;
  border-top: 1px dotted #fff;
}
.lichsu-card .box-lichsu:hover .number{
  background-color: var(--rs-color-2);
}
.lichsu-card .box-lichsu .img{
  margin-bottom: 30px;
}
.lichsu-card .box-lichsu .img img{
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  width: 60px;
}
.lichsu-card .box-lichsu:hover .img img{
  -webkit-transform:rotateY(180deg);
  transform:rotateY(180deg);
}
.lichsu-card .box-lichsu .title{
  margin-bottom: 6px;
  font-size: 14px;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: var(--rs-font-bold);
  line-height: var(--rs-line-height);
  text-transform: capitalize;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  white-space: normal;
  -webkit-box-orient: vertical;
}
.lichsu-card .box-lichsu .content-detail{
  font-size: 14px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: var(--rs-line-height);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  white-space: normal;
  -webkit-box-orient: vertical;
}

.lichsu-slider .lichsu-swiper .swiper-wrapper > .swiper-slide:nth-child(2n+0) .lichsu-card:after{
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.lichsu-slider .lichsu-swiper .swiper-wrapper > .swiper-slide:last-child .lichsu-card:after{
  display: none;
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .lichsu-card:after{
    right: -12px;
  }
  .lichsu-card .box-lichsu{
    width: 230px;
    height: 230px;
  }
  .lichsu-card .box-lichsu .number{
    top: -10px;
    right: 15px;
  }
  .lichsu-card .box-lichsu .title{
    font-size: 13px;
  }
  .lichsu-card .box-lichsu .img{
    margin-bottom: 20px;
  }
  .lichsu-card .box-lichsu .img img{
    height: 40px;
  }
  .lichsu-card .box-lichsu .content-detail{
    font-size: 12px;
  }
}
@media (min-width: 991px) and (max-width: 1199px) {
  .lichsu-card:after{
    right: -13px;
    width: 60px;
    height: 26px;
    top: calc(50% - 13px);
  }
  .lichsu-card .box-lichsu{
    width: 200px;
    height: 200px;
  }
  .lichsu-card .box-lichsu .number{
    top: -18px;
    right: 17px;
  }
  .lichsu-card .box-lichsu .title{
    font-size: 13px;
  }
  .lichsu-card .box-lichsu .img{
    margin-bottom: 10px;
  }
  .lichsu-card .box-lichsu .img img{
    height: 30px;
  }
  .lichsu-card .box-lichsu .content-detail{
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .lichsu-card:after{
    right: -12px;
  }
  .lichsu-card .box-lichsu{
    width: 230px;
    height: 230px;
  }
  .lichsu-card .box-lichsu .number{
    top: -10px;
    right: 15px;
  }
  .lichsu-card .box-lichsu .title{
    font-size: 13px;
  }
  .lichsu-card .box-lichsu .img{
    margin-bottom: 20px;
  }
  .lichsu-card .box-lichsu .img img{
    height: 40px;
  }
  .lichsu-card .box-lichsu .content-detail{
    font-size: 12px;
  }
}
@media (max-width: 767px){
  .lichsu-card:after{
    right: 0;
  }
  .lichsu-card .box-lichsu{
    width: 230px;
    height: 230px;
  }
  .lichsu-card .box-lichsu .number{
    top: -10px;
    right: 15px;
  }
  .lichsu-card .box-lichsu .title{
    font-size: 13px;
  }
  .lichsu-card .box-lichsu .img{
    margin-bottom: 20px;
  }
  .lichsu-card .box-lichsu .img img{
    height: 40px;
  }
  .lichsu-card .box-lichsu .content-detail{
    font-size: 12px;
  }
}

/* ================================================
  PAGE - LINH VUC
================================================= */
.cl-list .cl-item{
  margin-bottom: 1.5rem;
}
.cl-list > .cl-item:last-child{
  margin-bottom: 0;
}

.v-menu{
  padding: 40px 40px 20px;
  background-color: #f6f6f6;
  position: relative;
}
.ss-list .ss-item{
  position: relative;
}
.ss-list .ss-item:after{
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 0;
  top: 15px;
}
.ss-list .ss-item a{
  display: block;
  padding: 15px 45px 15px 0px;
  font-size: 16px;
  border-bottom: 1px solid #cdcdcd;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.ss-list > .ss-item:last-child a{
  border-bottom-width: 0;
}
.ss-list .ss-item a:hover{
  color: var(--rs-color);
  padding-left: 25px;
}
.ss-list .ss-item a i{
  position: absolute;
  left: 0;
  top: 21px;
  color: var(--rs-color);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.ss-list .ss-item a:hover i{
  opacity: 1;
}
.ss-list .ss-item a.active {
  color: var(--rs-color);
}

@media (max-width: 575px){
  .v-menu{
    padding: 25px 25px 10px;
  }
}

/* ================================================
  PAGE - CONTACT
================================================= */
.contact-feature {
  padding:25px;
  border:1px solid var(--rs-border-card-color);
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -webkit-align-items:center;
  -ms-flex-align:center;
  align-items:center;
  gap:15px
}
.contact-feature .box-icon {
  width:40px;
  height:40px;
  line-height:40px;
  font-size:18px;
  color: #fff;
  background-color: var(--rs-color);
  border-radius:50%;
  text-align:center
}
.contact-feature .box-title {
  font-size:18px;
  font-weight:var(--rs-font-medium);
  margin-bottom:8px
}
.contact-feature .box-text {
  font-size: 15px;
}
.contact-feature .box-text a {
  max-width:-webkit-fit-content;
  max-width:-moz-fit-content;
  max-width:fit-content;
  color:inherit
}
.contact-feature .box-text a:hover {
  color:var(--rs-color)
}
@media (max-width: 767px){
  .contact-feature{
    padding:15px;
  }
}

.map-wrapper iframe{
  width: 100% !important;
  height: 600px !important;
}
@media (max-width: 767px){
  .map-wrapper iframe{
    height: 350px !important;
  }
}

.contact-form{
  background-image: url('images/contact_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #f7f7f7;
  padding: 60px;
}
.contact-form .form-title{
  font-size: 36px;
  font-weight:var(--rs-font-medium);
}
.contact-form input.form-control,
.contact-form textarea.form-control,
.contact-form select.form-select{
  padding: 15px 40px 14px 20px;
  border: 1px solid transparent;
  border-radius: 0px;
  font-size: 16px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form .i-icon{
  position: absolute;
  z-index: 1;
  color: var(--rs-color);
  top: 16px;
  right: 13px;
}
/*.contact-form select.form-select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f84b26' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}*/
.form-control.is-valid, 
.was-validated .form-control:valid,
.form-control.is-invalid, 
.was-validated .form-control:invalid{
  background: none;
}

@media (max-width: 575px){
  .contact-form{
    padding: 25px;
  }
}

.c-social{
  border-top: 1px solid var(--rs-border-card-color);
}
.c-social .c-social-t{
  font-weight:var(--rs-font-bold);
  font-size: 16px;
}
.c-social .ft-social ul.t-social a{
  font-size: 30px;
  padding-left: 0;
  padding-right: 0;
  margin-right: .75rem;
}

/* ================================================
  PAGE - QHCD
================================================= */
.qhcd-card{
  border: 1px solid var(--rs-border-card-color);
  padding: 20px 30px;
  background-color: #fff;
}
.qhcd-card .img a{
  font-size: 30px;
  color: var(--rs-color);
}
.qhcd-card .img img{
  height: 45px;
}
.qhcd-card .info{
  padding-left: 30px;
}
.qhcd-card .title{
  font-size: 16px;
  font-weight: var(--rs-font-medium);
  line-height: var(--rs-line-height);
}
.qhcd-card .date,
.qhcd-card .qty,
.qhcd-card .qty-r,
.qhcd-card .ii{
  font-size: 14px;
  color: var(--rs-color-sub-3);
  line-height: var(--rs-line-height);
}
.qhcd-card .ii a{
  color: var(--rs-color-sub-3);
}
.qhcd-card .ii .ii-tlc{
  width: 80px;
}
.qhcd-card .ii .ii-tr{
  overflow: hidden;
}
.qhcd-card .ii .ii-trc{
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  white-space: normal;
  -webkit-box-orient: vertical;
}

@media (min-width: 992px){
  .qhcd-card{
    padding-right: 0;
  }
  .qhcd-card .title,
  .qhcd-card .date{
    padding-right: 120px;
  }
  .qhcd-card .qty{
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    min-width: 100px;
    text-align: center;
  }
  .qhcd-card .qty:before{
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--rs-border-card-color);
  }
  .qhcd-card .qtyn{
    font-size: 18px;
    font-weight: var(--rs-font-bold);
  }
}
@media (max-width: 575px){
  .qhcd-card{
    padding: 15px 20px;
  }
  .qhcd-card .info{
    padding-left: 15px;
  }
}

.qhcd-list-right .qhcd-card{
  padding: 15px 20px;
}
.qhcd-list-right .qhcd-card .title,
.qhcd-list-right .qhcd-card .date{
  padding-right: 0;
}
.qhcd-list-right .qhcd-card .title{
  font-size: 15px;
}
.qhcd-list-right .qhcd-card .info{
  padding-left: 20px;
}

.file-download-card .fd-title{
  font-size: 18px;
  font-weight: var(--rs-font-medium-small);
  color: var(--rs-color-2);
}
.file-download-card .fd-item{
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.file-download-card .fd-item a{
  font-size: 16px;
  font-style: italic;
}
.file-download-card .fd-item i{
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 0;
  font-size: 18px;
  color: var(--rs-color-2);
}

.qhcd-list-file .qhcd-card{
  padding: 10px 20px;
}

@media (min-width: 992px){
  .sticky-right{
    position: sticky;
    top: 120px;
  }
}
@media (max-width: 991px){
  .file-download-card .fd-title{
    font-size: 16px;
  }
}

/* ================================================
  PAGE - LICH SU
================================================= */
.timeline-ls{
  --bgColor: #f6f6f6;
}
.timeline-ls ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  margin-inline: auto;
}

/* line */
.timeline-ls ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background-color: var(--bgColor);
  border-radius: calc(var(--line-w) / 2);
}

/* columns*/
/* row gaps */
.timeline-ls ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}
/* card */
.timeline-ls ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

/* date */
.timeline-ls ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--rs-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.timeline-ls ul li .date:before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background-color: var(--rs-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.timeline-ls ul li .date:after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background-color: var(--bgColor);
  border: 0.3rem solid var(--rs-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.timeline-ls ul li .title,
.timeline-ls ul li .descr {
  background-color: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}
.timeline-ls ul li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: var(--rs-font-bold);
}
.timeline-ls ul li .descr {
  padding-block-end: 1.5rem;
  color: var(--rs-color-sub-3);
}

/* shadows */
.timeline-ls ul li .title:before,
.timeline-ls ul li .descr:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}
.timeline-ls ul li .title:before {
  bottom: calc(100% + 0.125rem);
}
.timeline-ls ul li .descr:before {
  z-index: -1;
  bottom: 0.25rem;
}

.timeline-ls ul > li:nth-child(2n+1) .date {
  background-color: var(--rs-color-2);
}
.timeline-ls ul > li:nth-child(2n+1) .date:before {
  background-color: var(--rs-color-2);
}
.timeline-ls ul > li:nth-child(2n+1) .date:after {
  border: 0.3rem solid var(--rs-color-2);
}

@media (min-width: 1200px) {
  .timeline-ls{
    padding-right: 100px;
  }
}
/*
@media (min-width: 768px) {
  .timeline-ls ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
  .timeline-ls ul:before {
    grid-column: 2;
  }
  .timeline-ls ul li:nth-child(odd) {
    grid-column: 1;
  }
  .timeline-ls ul li:nth-child(even) {
    grid-column: 3;
  }

  .timeline-ls ul li:nth-child(2) {
    grid-row: 2/4;
  }

  .timeline-ls ul li:nth-child(odd) .date:before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .timeline-ls ul li:nth-child(odd) .date:after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
  .timeline-ls ul li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }

  .timeline-ls ul > li:nth-child(4n) .date,
  .timeline-ls ul > li:nth-child(4n+1) .date {
    background-color: var(--rs-color-2);
  }
  .timeline-ls ul > li:nth-child(4n) .date:before,
  .timeline-ls ul > li:nth-child(4n+1) .date:before {
    background-color: var(--rs-color-2);
  }
  .timeline-ls ul > li:nth-child(4n) .date:after,
  .timeline-ls ul > li:nth-child(4n+1) .date:after {
    border: 0.3rem solid var(--rs-color-2);
  }
}
*/

/* ================================================
  SECTION PARTNER
================================================= */
.partner-slider .owl-stage-outer{
  padding-bottom: 2px;
}
.partner-item{
  background-color: #fff;
}
.partner-item .pi-img {
  height            : 100px;
  padding           : 10px;
  border            : 3px solid #f2f2f2;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition : all 200ms linear 0ms;
  -moz-transition   : all 200ms linear 0ms;
  -ms-transition    : all 200ms linear 0ms;
  -o-transition     : all 200ms linear 0ms;
  transition        : all 200ms linear 0ms;
}
.partner-item .pi-img:hover {
  border-color: var(--rs-color4);
}
.partner-item .pi-img img {
  /*-webkit-filter    : grayscale(100%);
  filter            : grayscale(100%);*/
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition : all 200ms linear 0ms;
  -moz-transition   : all 200ms linear 0ms;
  -ms-transition    : all 200ms linear 0ms;
  -o-transition     : all 200ms linear 0ms;
  transition        : all 200ms linear 0ms;
  max-width         : 100%;
  max-height        : 100%;
  width             : auto;
}
.partner-item .pi-img:hover img {
  -webkit-filter: grayscale(0%);
  filter        : grayscale(0%);
}

/* slide nav style */
.partner-slider .owl-nav .owl-prev,
.partner-slider .owl-nav .owl-next {
  position        : absolute;
  top             : calc(50% - 15px);
  width           : 30px;
  height          : 30px;
  line-height     : 26px;
  border-radius   : 50%;
  background-color: transparent;
  font-size       : 0;
  margin: 0;
  border          : 2px solid var(--rs-color-2);
  opacity: 0;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition : all 200ms linear 0ms;
  -moz-transition   : all 200ms linear 0ms;
  -ms-transition    : all 200ms linear 0ms;
  -o-transition     : all 200ms linear 0ms;
  transition        : all 200ms linear 0ms;
}
.partner-slider .owl-nav .owl-prev span,
.partner-slider .owl-nav .owl-next span{
  display: none;
}
.partner-slider:hover .owl-nav .owl-prev,
.partner-slider:hover .owl-nav .owl-next {
  border-color    : var(--rs-color-2);
  opacity: 1;
}
.partner-slider .owl-carousel .owl-nav.disabled {
  display: block;
}
.partner-slider .owl-nav .owl-prev:hover,
.partner-slider .owl-nav .owl-next:hover {
  opacity: 1;
}
.partner-slider .owl-nav .owl-prev.disabled,
.partner-slider .owl-nav .owl-next.disabled {
  opacity: .4;
  cursor : no-drop;
  display: none;
}
.partner-slider .owl-nav .owl-prev {
  left: -40px;
}
.partner-slider .owl-nav .owl-next {
  right: -40px;
}
.partner-slider .owl-nav .owl-prev:before,
.partner-slider .owl-nav .owl-next:before {
  font-family       : "Font Awesome 6 Pro";
  font-size         : 18px;
  color             : #666;
  position          : absolute;
  right             : 0;
  top               : 0;
  left              : 0;
  bottom            : 0;
  margin            : auto;
  width             : 100%;
  height            : 100%;
  text-align        : center;
  -webkit-transition: all 0.2s ease 0s;
  -ms-transition    : all 0.2s ease 0s;
  transition        : all 0.2s ease 0s;
}
.partner-slider .owl-nav .owl-prev:hover:before,
.partner-slider .owl-nav .owl-next:hover:before {
  color: var(--rs-color-2);
}
.partner-slider .owl-nav .owl-prev:before {
  content: "\f104";
}
.partner-slider .owl-nav .owl-next:before {
  content: "\f105";
}

@media screen and (max-width: 991px) {
  .partner-slider .owl-nav .owl-prev,
  .partner-slider .owl-nav .owl-next {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .partner-slider {
    padding-left : 30px;
    padding-right: 30px;
  }
  .partner-item .pi-img img {
    -webkit-filter: none;
    filter        : none;
  }
}

/* ================================================
  TEAM MODAL
================================================= */
.team-modal .modal-title{
  color: var(--rs-color-2)
}
@media (min-width: 576px) {
  .team-modal .modal-dialog {
    max-width: 740px;
  }
}

/* ================================================
  TEAM
================================================= */
.team-card {
  text-align:center;
  background-color:var(--rs-color-smoke);
  padding:30px
}
.team-card .img-wrap {
  margin-bottom:30px;
  position:relative;
  z-index:1
}
.team-card .img-wrap:before,
.team-card .img-wrap:after {
  content:'';
  position:absolute;
  width:80px;
  height:94px;
  background-color:var(--rs-color);
  top:-30px;
  right:-30px;
  opacity:0.1;
  z-index:-1;
  -webkit-transition:0.4s;
  transition:0.4s
}
.team-card .img-wrap:before {
  left:-30px;
  right:auto;
  bottom:-30px;
  top:auto
}
.team-card .img-wrap img {
  -webkit-transition:0.4s;
  transition:0.4s
}
.team-card .team-img img {
  width:100%;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1)
}
.team-card .box-title {
  font-size:20px;
  font-weight:600;
  margin-bottom:5px
}
.team-card .box-title a {
  /*color:var(--title-color)*/
}
.team-card .box-title a:hover {
  color:var(--rs-color)
}
.team-card .team-desig {
  font-size:14px;
  font-weight:400;
  margin-bottom:-0.4em;
  display:block;
  color:var(--rs-color)
}
.team-card .th-social {
  position:absolute;
  background-color: #fff;
  width:50px;
  left:30px;
  bottom:-50px;
  z-index:1;
  padding:7px 0 30px;
  border-radius:25px 25px 0 0;
  opacity:0;
  visibility:hidden;
  -webkit-transition:0.4s;
  transition:0.4s;
  -webkit-transform:scaleY(0.5);
  -ms-transform:scaleY(0.5);
  transform:scaleY(0.5)
}
.team-card .th-social a {
  display:block;
  text-align:center;
  height:35px;
  width:auto;
  padding:0;
  line-height:35px;
  color:var(--rs-body-color-2);
  margin:0;
  background:transparent
}
.team-card .th-social a:hover {
  color:var(--rs-color);
  background:transparent
}
.team-card .th-social a:last-child {
  border-bottom:0
}
.team-card .team-social-hover_btn {
  position:absolute;
  height:50px;
  width:50px;
  line-height:52px;
  border-radius:50%;
  background-color:var(--rs-color);
  left:30px;
  text-align:center;
  color:#fff;
  font-size:20px;
  -webkit-transform:translate(0, -50%);
  -ms-transform:translate(0, -50%);
  transform:translate(0, -50%);
  z-index:2
}
.team-card .team-social-hover_btn i {
  -webkit-transform:rotate(0deg);
  -ms-transform:rotate(0deg);
  transform:rotate(0deg);
  -webkit-transition:0.4s;
  transition:0.4s
}
.team-card .team-social-hover_btn i:before {
  -webkit-transition:0.4s;
  transition:0.4s
}
.team-card .team-social-hover:hover .team-social-hover_btn {
  background-color:var(--rs-color)
}
.team-card .team-social-hover:hover .team-social-hover_btn i {
  -webkit-transform:rotate(180deg);
  -ms-transform:rotate(180deg);
  transform:rotate(180deg)
}
.team-card .team-social-hover:hover .team-social-hover_btn i:before {
  content:"\f068"
}
.team-card .team-social-hover:hover .th-social {
  opacity:1;
  visibility:visible;
  -webkit-transform:scaleY(1);
  -ms-transform:scaleY(1);
  transform:scaleY(1);
  bottom:0
}
.team-card:hover .img-wrap img {
  -webkit-transform:scale(1.05);
  -ms-transform:scale(1.05);
  transform:scale(1.05)
}
.team-card:hover .img-wrap:before,
.team-card:hover .img-wrap:after {
  opacity:0.2
}

/* ================================================
  QHCD - Slider year
================================================= */
.year-swiper .swiper-slide{
  width: auto;
}
.label-year,.year-card{
  background-color: var(--rs-color-smoke);
  padding: 3px 13px;
  font-size: 20px;
  text-align: center;
}
.label-year{
  margin-right: 2px;
  width: 75px;
}
.year-card.active{
  /*background-color: var(--rs-color);*/
}
.year-card.active a,
.year-card:hover a{
  color: var(--rs-color-2)
}
.slider-year{
  max-width: calc(100%);
  padding-right: 68px
}
.slider-year .swiper-button-prev-year,
.slider-year .swiper-button-next-year{
  background-color: var(--rs-color-2);
  height: 100%;
  width: 31px;  
  margin-top: 0;
  top: 0px;
}
.slider-year .swiper-button-prev-year:after,
.slider-year .swiper-button-next-year:after{
  font-size: 12px;
  color: var(--bs-white)
}
.slider-year .swiper-button-prev-year{
  left: auto;
  right: 35px;
}
.slider-year .swiper-button-next-year{
  right: 3px;
}
.slider-year .swiper-slide{
  width: 75px !important
}

/* ================================================
  COMPANY MEMBER
================================================= */
.company-card{
  border: 1px solid var(--rs-border-card-color);
  height: 100%;
}
.company-card .img{
  overflow: hidden;
  border-bottom: 3px solid rgba(var(--rs-color-2-rgb),.4);
  padding-top: 75%;
  position: relative;
}
.company-card .img img{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
}
.company-card .info{
  padding: 20px;
}
.company-card .info .title{
  font-size: 16px;
  font-weight: var(--rs-font-medium)
}
.company-card .info .title a{
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  white-space: normal;
  -webkit-box-orient: vertical;
}
.company-card .info .link a{
  font-size: 14px;
  color: var(--rs-color-sub-3);
}

@media (max-width: 767px) {
  .company-card .info{
    padding-left: 15px;
    padding-right: 15px;
  }
  .company-card .info .title{
    font-size: 15px;
  }
  .company-card .info .title a {
    /*-webkit-line-clamp: 2;*/
  }
}

/* portfolio */
.tag-title{
  gap :20px;
}
.btn-tag-filter{
  border: 1px solid var(--rs-border-card-color);
  border-radius: 0;
}
.btn-tag-filter:hover{
  border-color: var(--rs-color);
  color: var(--rs-color);
}
.btn-tag-filter.active{
  border-color: var(--rs-color);
  background-color: var(--rs-color);
  color: #fff;
}
@media (max-width: 767px) {
  .tag-title{
    overflow-x: auto;
    gap: 10px;
  }
  .btn-tag-filter{
    white-space: nowrap;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* slider */
.company-swiper .swiper-slide{
  height: auto;
}

/* ================================================
  BAN LANH DAO - TAB
================================================= */
.tab-bangiamdoc .tab-bgd-head .nav-tabs{
  border-bottom: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.tab-bangiamdoc .tab-bgd-head .nav-link{
  color: var(--bs-btn-color);
  background-color: #fff;
  border: 1px solid var(--rs-border-card-color);
  border-radius: 0;
  padding-left: 32px;
  padding-right: 32px;
  font-weight: var(--rs-font-medium);
  font-size: 15px;
}
.tab-bangiamdoc .tab-bgd-head .nav-link.active{
  color: #fff;
  background-color: var(--rs-color);
  border-color: var(--rs-color);
}
.tab-bangiamdoc .tab-bgd-head .nav-link:hover{
  color: var(--rs-color);
  border-color: var(--rs-color);
}
.tab-bangiamdoc .tab-bgd-head .nav-link.active:hover{
  color: #fff;
}

@media screen and (min-width: 768px){
  .tab-bangiamdoc .tab-bgd-head .nav-tabs{
    justify-content: center;
    border-bottom: 0;
  }
  .tab-bangiamdoc .tab-bgd-head .nav-link{
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px){
  .tab-bangiamdoc .tab-bgd-head{
    overflow-x: auto;
  }
  .tab-bangiamdoc .tab-bgd-head .nav{
    flex-wrap: inherit;
    gap: 10px;
  }
  .tab-bangiamdoc .tab-bgd-head .nav-link{
    white-space: nowrap;
    padding-left: 15px;
    padding-right: 15px;
  }
}






