.page-loader {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
}

.loader {
  width: 48px;
  height: 48px;
  display: block;
  margin: 15px auto;
  position: relative;
  color: #ccc;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: scale(0.5) translate(0, 0);
  background-color: #ccc;
  border-radius: 50%;
  animation: animloader 1s infinite ease-in-out;
}
.loader::before {
  background-color: #000;
  transform: scale(0.5) translate(-48px, -48px);
}

.post-block {
  margin-bottom: 25px;
}

.post-block--cate {
  border: 1px solid var(--primary-color);
}

.post-block__title {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding: 8px 5px;
}

.post-block__title:not(.post-block__title--cate) { 
  border-bottom: 1px solid  var(--primary-color);
}

.post-block__title--cate {
  color: #fff;
  background-color: var(--primary-color);
}

.post-block-list {
  margin: 0;
  padding: 0;
 
}

.post-block-list li { 
  list-style: none;
}

.post-block-list li a:not(.post-item) { 
  padding: 8px 5px;
  display: block;
} 

.post-block-list li a.active { 
  background: #ced4dd;
  color: #333;
} 

.post-item {
  display: flex;
  padding: 8px 0;
}

.post-item-img { 
  width: 30%;
  margin-right: 10px;
  flex: 0 0 30%;
}


/* copy css old */
.active-noti {
  display:block !important;
}

.noti-sendmail {
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:300px;
  height:110px;
  background:whitesmoke;
  z-index:9999;
  border-radius:5px;

  display:none;
}
.noti-sendmail .pass,.noti-sendmail .fail {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:block;
  display:none;
  padding: 1rem;
}
.noti-sendmail .pass a,.noti-sendmail .fail a {
  width:fit-content;
  height:fit-content;
  padding: 1rem;
  border-radius:50%;

  color:white;
  margin: 0 auto;
  display:block;
  font-size:1rem;
  line-height:100%;
}
.noti-sendmail .pass a {
  background:green;
}
.noti-sendmail .fail a {
  background:darkred;
}
.noti-sendmail .pass p,.noti-sendmail .fail p {
  text-align:center;
  margin: .5rem 0; 
}

.btn-modalContactForm-des {
  opacity: .8;
  position: fixed;
  display: flex;
  width:fit-content;
  height: 60px;
  text-align:center;
  z-index: var(--z-index-widget);
  bottom: 0;
  right: 0;
  background: var(--primary-color);
  border-top-left-radius: 5px;
  box-shadow:rgb(0 0 0 / 35%) 0px -50px 36px -28px inset;
  transition:300ms;
}
.btn-modalContactForm-des button {
  background:transparent;
  color: white;
  width:100%;
  font-size: 1rem;
  padding-right:1.5rem;
  line-height:130%;
  border:none;
}
.modalContactForm-Des {
  width: 600px;
  padding: 1rem;
  height: fit-content;
  display:block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background-color: #fff;
  z-index: var(--z-index-widget);
  pointer-events: none;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  overflow:hidden;
}

.modalContactForm-Des.show {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.modalContactForm-Des>.close-modal {
  padding: 1rem 1.2rem;
  
  color: var(--primary-color);
  
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  line-height: 100%;
  font-weight: bold;
  transition:200ms;
}
.modalContactForm-Des>.close-modal:hover {
  background: var(--primary-color);
  color:white;
  transition:200ms;
}
.modalContactForm-Des>h3 {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 2rem;
  padding: 1rem 0;
  text-align: center;
}

.modalContactForm-Des>.form-detail {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 1rem;
}

.modalContactForm-Des>.form-detail>div {
  width: 47%;
}

.modalContactForm-Des>.form-detail>div input,
.modalContactForm-Des>.form-detail>textarea,
.modalContactForm-Des>.form-detail>select {
  width: 100%;
  height: 42px;
  border:1px solid #03030342;
  box-sizing: border-box;
  padding-left:1rem;
}
.modalContactForm-Des>.form-detail>textarea {
  padding-top:1rem;
  min-height: 79px;
}
.modalContactForm-Des>.form-detail>div input:focus {
  background:#fbfbfbb8;
  border:1px solid #0303038f;
}
.modalContactForm-Des>.gr-btn {
  display: flex;
  width: 100%;
  justify-content: space-around;
  
}

.modalContactForm-Des>.gr-btn a {
  display: flex;
  height: 42px;
  width:50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
  position:relative;

  overflow:hidden;
  transition:300ms;
}
.modalContactForm-Des>.gr-btn a.send:hover {
  background:green;
  color:white;
  transition:300ms;
}
.modalContactForm-Des>.gr-btn a.cancel:hover{
  background:darkred;
  color:white;
  transition:300ms;
} 

.hotline-phone-ring-wrap {
  position: fixed;
  bottom: 0;
  left: 0;

}

.widget-button {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 80px;
  height: 80px;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility .5s;
  display: block;
}

.widget-button__circle { 
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  /* border: 2px solid #1564a7; */
  -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: .5;
}

.widget-button__circle--phone {
  border: 2px solid #1564a7;
}

.widget-button__circle--contact { 
  border: 2px solid #dc3545;
}

.widget-button__circle--zalo { 
  border: 2px solid #0068ff;
}

.widget-button__circle--cart { 
  border: 2px solid #00623d;
}

.widget-button__circle-fill { 
  width: 80px;
  height: 80px;
  top: 0px;
  left: 0px;
  position: absolute;
  /* background-color: rgba(21, 100, 167, .7); */
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.widget-button__circle-fill--phone {
  background-color: rgba(21, 100, 167, .7);
}


.widget-button__circle-fill--contact {
  background-color: #ed505f;
}

.widget-button__circle-fill--zalo {
  background-color: #2f82ff;
}

.widget-button__circle-fill--cart {
  background-color: #1bb97c;
}

.widget-button__img-circle { 
  /* background-color: #1564a7; */
  width: 44px;
  height: 44px;
  top: 18px;
  left: 18px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-button__img-circle--phone { 
  background-color: #1564a7;
}

.widget-button__img-circle--zalo { 
  background-color: #0068ff;
}

.widget-button__img-circle--contact { 
  background-color: #dc3545;
  color: #fff;
  font-size: 22px;
}

.widget-button__img-circle--cart { 
  background-color: #00623d;
  color: #fff;
  font-size: 22px;
}

/* .hotline-bar {
  display: none !important;
  position: absolute;
  background: #1564a7;
  height: 45px;
  width: 165px;
  line-height: 40px;
  border-radius: 3px;
  padding: 0 10px;
  background-size: 100%;
  cursor: pointer;
  transition: all .8s;
  -webkit-transition: all .8s;
  z-index: 9;
  border-radius: 50px;
  left: 42px;
  bottom: 31px;
}

.hotline-bar>a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-indent: 32px;
  letter-spacing: 1px;
  display: block;
  line-height: 45px;
  font-family: Arial;
}

.hotline-bar>a:hover,
.hotline-bar>a:active {
  color: #fff;
} */

span.background-zalo-ib,
span.background-call {
  width: 25px;
  height: 25px;
  background-size: cover;
}

span.background-call {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAolBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8ELnaCAAAANXRSTlMA/fnwB9f2sUzq5dLDrDUi+t27jWpmXzALBOHNtJ6Dd1hUR0I9OB8Cx5mSiH1wGxkWEaWjUGLgVpsAAAFWSURBVDjLdZPpkoIwEIQn4RIFFA+8EURBXY+98v6vtrkYki38fqWmO0yqZwCDJjnsvHASbuPsC3oYjBhC4vF/+RwRxhwHLTRfm/I4IL4WkcA19CHrIVqB5pmqSjixHVetf3pMcnkVxHYMpL7Sr9/zngvbkDYAbZFs5JumtuMXOKrB8AMER9swFfno8wIkI8vg8zAifT4IebmjzGIJY/Nrruczmww7UN/lBoaJYeO5PjnshC8wmKOB58ANyYTZFFDq+5xKDHUjxvSDT60h6QypGM76nNU8/ZnSh7wirugR3KAjl5WYn4RX7wJ5QEfUhvN0ZAvFHfWEqJw4c2YgJyIjUx0Ezc50XOSl9U2Gpzd3JdwI2eaPu6rMcOFZLyH+HftenRSgedE+nZbQMuvT/SPqtRrQ9krM/icl4hpGA4AKl2GUudDxzbdJ+d0ySCn14gosgiCB9/wB7hZ8KfMqBEkAAAAASUVORK5CYII=);
}

span.background-zalo-ib {
  background-image: url(data:image/png;base64,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);
}

.zalo-ben-phai {
  position: fixed;
  left: 0;
  bottom: 95px;
  z-index: 999999;
}

.page-item.active .page-link {
  background-color: #002B5B;
  border-color: #002B5B;
}

/*! CSS Used keyframes */
@-webkit-keyframes phonering-alo-circle-anim {
  0% {
      -webkit-transform: rotate(0) scale(.5) skew(1deg);
      -webkit-opacity: .1;
  }

  30% {
      -webkit-transform: rotate(0) scale(.7) skew(1deg);
      -webkit-opacity: .5;
  }

  100% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
      -webkit-opacity: .1;
  }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
  0% {
      -webkit-transform: rotate(0) scale(.7) skew(1deg);
      opacity: .6;
  }

  50% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
      opacity: .6;
  }

  100% {
      -webkit-transform: rotate(0) scale(.7) skew(1deg);
      opacity: .6;
  }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
  0% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
  }

  10% {
      -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
      -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
      -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
      -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }

  50% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
  }

  100% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}

.custom-zl {
  display:block;
  width: fit-content;
  height: 100%;
  position: relative;
}
.custom-zl a{
  padding: 0 1rem;
  width: fit-content!important;
  height: 100%!important;
  transform: scale(.79);
  transition:300ms;
  display:flex;
}
.custom-zl a svg {
  width:69px;
}
.btn-modalContactForm-des:hover {
  opacity: 1;
  transition:300ms;
}
.btn-modalContactForm-des .zalo-chat-widget:hover {
  transform: scale(.86)!important;
  transition:300ms;
}
.btn-modalContactForm-des button:hover  {
  font-weight:bold;
}

.slider-newfeeds {
  padding: 30px 0;
}

.slider-newfeeds .swiper-slide,
#slider-partners .swiper-slide {
  height: auto;
}

#slider-partners .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-newfeed .badge{
  position: absolute;
  top: -18px;
  left: 0;
}

.badge-main {
  color: #fff;
  background-color: #002B5B; 
}

.border-main {
  border: 1px solid #002B5B;
}

.user { font-size: 12px;} 
.user .user-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: gainsboro;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
} 

.limited-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 4);
}
/* #slider-newfeeds {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

#slider-newfeeds>.swiper-wrapper>.swiper-slide>img {
  width: 100%;
  height: auto;
}

#slider-newfeeds>div>div>a.item-newfeeds {
  width: 100%;
  background: white;
  position: relative;
}

#slider-newfeeds>div>div>a.item-newfeeds>img {

  display: block;
  width: 95%;
  height: 170px;
  border: 2px solid var(--primary-color);
}

#slider-newfeeds>div>div>a.item-newfeeds>span {

  background: var(--primary-color);
  color: white;
  font-size: 10px;
  font-weight: bold;
  width: fit-content;
  height: 20px;
  line-height: 100%;
  padding: 0 .5rem;
  display: flex;
  align-items: center;
}

#slider-newfeeds>div>div>a.item-newfeeds>h5 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  padding: .5rem 0;
} */

.list-item-footer> div> div >img.logo-company-custom02 {
  width:80%;
  padding-top:2rem;
}
.list-item-footer> div> div >img.logo-company-custom01 {
  width:50%;
  padding-top:2rem;
}

#banner-primary {
  width: 100%;
  height: auto;
}
#banner-primary>.swiper-wrapper>.swiper-slide>img {
  width:100%;
  height:auto;
}

#slider-team {
  width: 100%;
  height: auto;
  margin-top: 2rem;
}


.item-staff {
  margin-bottom: 20px;
  position: relative;
  padding: 10px 0;
  box-shadow: 0 0 2px rgba(0,0,0, .3);
  background: white;
  border-radius: 15px;
}

.item-staff:before,
.item-staff:after { 
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #000;
  box-shadow: 0 15px 15px rgba(0,0,0,.5);
  transform: rotate(-3deg);
}

.item-staff:after {
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

.item-staff img {
  width: 110px;
  height: auto;
  border: 5px solid #fff;
  border-radius: 50%;
  margin: 0px auto;
  display: block;
  box-shadow: 0 0 2px rgba(0,0,0, .2);
}

.item-staff h5 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
}


.item-staff_badge {
  display: block;
  background: var(--primary-color);
  border-radius: 5px;
  color: white;
  margin: 15px 10px;
  padding: 0.3rem 1.5rem;
  text-align: center;
}

#slider-partners {
  width: 100%;
  height: auto;
  margin: 1rem 0;
}

#slider-partners>.swiper-wrapper>.swiper-slide>img {
  width: 100%;
  height: auto;
}

#slider-partners .item-partners h5,
#slider-partners .item-partners p {
  text-align: center;
}

#slider-partners .item-partners img {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

.mb-60px {
  margin-bottom: 60px;
}

.text-center {
  text-align: center;
}

.desc-content {
  padding: 20px 0;
}

.widget-header {
  font-size: 18px;
  font-weight: 700;
}

.block-intro {
  padding: 20px;
  border: 1px solid #002B5B;
  border-radius: 20px;
}

.fs-17 {
  font-size: 17px;
}

.round-10px {
  border-radius: 10px;
}

.block-policy ul {
  list-style: none;
  margin: 0;
  //padding: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, 1fr);
  height: auto;
}

.grid-item {
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #002B5B;
  border-radius: 20px;
  color: #002B5B;
  margin-bottom: 15px;
}

.text-main {
  color: #002B5B;
}

.bg-main {
  background-color: #002B5B;
}

.border-2 {
  border-width: 2px !important;
}

.card {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, .32);
  height: 100%;
}

.card-number {
  font-size: 22px;
  font-weight: 700;
}
/* .card img { 
  height: 100%;
} */

.card--main {
 background-color: #2980b9;
}

.card--info {
  background-color: #002B5B;
  color: #fff;
}

.card--main,
.card--info { 
  border-radius: 20px;
  overflow: hidden;
}

.nav-tabs .nav-link--custom {
  outline: none;
}

.nav-tabs .nav-link--custom.active { 
  background-color: #002B5B;
  color: #fff;
}

.contact-block__title {
  text-transform: uppercase;
  font-weight: 600
}

.mobile-menu__opener {
  z-index: 300;
  height: 1.2em;
  width: 1.8em;
  border: none;
  text-align: center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  position: relative;
}

.mobile-menu__screen {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #f9f9f9;
  overflow: hidden;
  z-index: 200;
}

.mobile-menu__screen:after {
  content: '';
  height: 2px;
  position: absolute;
  left: 1.5em;
  right: 1.5em;
  bottom: 0;
  background: #002B5B;;
  background-image: linear-gradient(to right, #002B5B, #002B5B);
}

.mobile-menu__opener:before {
  top: 0;
}

.mobile-menu__opener:after {
  top: 100%;
}

.mobile-menu__opener:before, .mobile-menu__opener:after {
  display: block;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #002B5B;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  -moz-transform-style: flat;
}

.mobile-menu__opener span {
  display: block;
  width: 100%;
  height: 2px;
  background: #002B5B;
  position: absolute;
  top: 50%;
  text-indent: -9999px;
  letter-spacing: -5px;
  text-align: left;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.mobile-menu__opener_menu_open:before {
  top: 50%;
  -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
}

.mobile-menu__opener_menu_open span {
  opacity: 0;
}

.mobile-menu__opener_menu_open:after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.modalNavbarMobi{
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  flex: 1 0 100%;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: var(--content-padding);
  z-index: 100;
  background: var(--main-bg-color);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .1);
  -webkit-transition: transform 500ms ease-in-out 0s;
  transition: transform 500ms ease-in-out 0s;
  background-color: #fff;
  overflow: auto;
}

.menu_slide_down {
  -webkit-transform: translateY(66px);
  transform: translateY(66px);
}
.menu_slide_up {
  opacity: 1;
  visibility: visible;
}

#menu-mobile > ul > li > ul {
  display: none;
}
#menu-mobile>ul>li.active>ul.show-dropdown {
  display: block;
}
#menu-mobile a:not(:only-child):after {
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 15px;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  transition: 0.5s;
}
#menu-mobile .active > a:not(:only-child):after {
  transform: rotate(90deg);
}

.nav-tabs--custom {
  border-bottom: 0;
}

.tab-content--custom {
  position: relative;
  top: -1px;
}

.tab-inner-custom {
  border: 1px solid #002B5B;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
} 

.aspect-h-9 {
  --tw-aspect-h9: 9;
}

.aspect-h-10 {
  --tw-aspect-h: 10;
}

.aspect-h-14 {
  --tw-aspect-h14: 14;
}

.aspect-w-16 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w)* 100%);
  --tw-aspect-w: 16;
}

.aspect-w-16--h14 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h14) / var(--tw-aspect-w)* 100%);
  --tw-aspect-w: 16;
}

.aspect-w-16--h9 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h9) / var(--tw-aspect-w)* 100%);
  --tw-aspect-w: 16;
}

.aspect-w-16>* ,
.aspect-w-16--h14>*,
.aspect-w-16--h9>*{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.aspect-image {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  width: initial;
  height: initial;
  background: none;
  opacity: 1;
  border: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0
}

.aspect-image img { 
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  padding: 0;
  border: none;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
}

.round-15px {
  border-radius: 15px;
}

.card-hover {
  transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
  box-shadow: rgb(0 0 0 / 20%) 0px 5px 15px;
}

.card-service ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-service ul li { 
  margin-bottom: 15px;
}

.card-header__service {
  background-color: #002B5B;
  color: #fff;
}

.card-header__service h3 { 
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
}

.card-hover:hover {
  box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.2);
  transform: scale(1.05, 1.05);
}

/* Style timeline  */
.timeline-main {
  width: 100%;
  padding: 0 15px;
}
.timeline-main .timeline-wrap {
  position: relative;
  height: 100%;
  /* display: flex;
  flex-direction: column;
  gap: 30px; */
}

.timeline-main .timeline-wrap::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% - 40px);
  background-color: #002B5B;
  animation: line 4s linear;
}

.timeline-main .timeline-wrap .timeline-card {
  width: 50%;
  margin-right: auto;
  position: relative;
  float: left;
  clear: left;
  margin-bottom: 30px;
}

.timeline-main .timeline-wrap .timeline-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid gainsboro;
  background: #294774;
  animation: fadeIn 1.5s;
  animation-fill-mode: both;
}

.timeline-main .timeline-wrap .timeline-card:nth-child(2)::after { 
    animation-delay: 1.1s;
  }

  .timeline-main .timeline-wrap .timeline-card:nth-child(3)::after { 
    animation-delay: 2.1s;
  }

  .timeline-main .timeline-wrap .timeline-card:nth-child(4)::after { 
    animation-delay: 3.6s;
  }

.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap {
  height: 100%;
  margin-right: 35px;
  background-color: #294774;
  border-radius: 10px;
  position: relative;
  padding: 20px;
  animation: fadeInRight 1s;
  animation-fill-mode: both;
}

.timeline-main .timeline-wrap .timeline-card:nth-child(2) .timeline-card-wrap { 
  animation-delay: 1s;
}

.timeline-main .timeline-wrap .timeline-card:nth-child(3) .timeline-card-wrap { 
  animation-delay: 2s;
}

.timeline-main .timeline-wrap .timeline-card:nth-child(4) .timeline-card-wrap { 
  animation-delay: 3s;
}

.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -8px;
  height: 8px;
  width: calc(100% - 60px);
  background-color: #294774;
  border-radius: 5px 5px 0 0;
  opacity: 0.3;
}

.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -8px;
  width: 20px;
  height: 20px;
  background-color: #294774;
  border-radius: 5px;
  transform: rotate(45deg);
}

.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-head {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #fff;
}

.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .timeline-card-text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  margin: 15px 0 0;
}

.btn-custom {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-width: 150px;
  border-radius: 5px;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.btn-main span { 
  color: #fff;
  border: 1px solid #002B5B;
  transition: 0.2s 0.1s;
  border-radius: 5px;
}


.btn-custom span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  transition: 0.3s;
}

.btn-main::before { 
  background-color: #002B5B;
  transition: 0.3s ease-out;
}

.bg-wrapper {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border-radius: 15px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.btn-custom.hover-filled-slide-down::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.btn-custom.hover-filled-slide-down:hover::before {
  height: 0%;
}

.btn-main span:hover {
    color: #002B5B;
    transition: 0.2s 0.1s;
}

.btn-arrow span::after {
  display: inline-block;
  padding-left: 8px;
  content: "➞";
  transition: transform 0.3s ease-out;
}

.btn-outline {
  border: 1px solid #002B5B;
}

.btn-outline span { color: #002B5B; }

.btn-arrow span:hover::after {
  transform: translateX(4px);
}

.el-border-right {
  position: absolute;
  right: 0;
  width: 2px;
  height: 100%;
  top: 0;
  background-color: #002B5B;
}

.zalo-share-button {
  cursor: pointer;
}

.title-block {
  padding-left: 8px;
  border-left: 3px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.main-title {
  font-size: 1.5rem;
  font-weight: 700;
  display: inline;
  padding-bottom: 12px;
  text-transform: uppercase;
  position: relative;

}

.main-title--no-border { 

}

.main-title::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.main-title--no-border::after  { 
  display: none;
}
.post-block--most-view li:nth-child(6) {
  display: none;
  opacity: 0;
  visibility: hidden;
}


.process-item {
  border-width: 1px; 
  border-style:solid;
  border-color: lightgray;
  padding: 15px;
  border-radius: 15px;
  transition: 0.4s ease-in-out;
  height: 100%;
}

.process__number {
  font-size: 70px;
  -webkit-text-stroke: 1px #003c71;
  display: block;
  color: transparent;
  font-family: "Roboto Condensed";
  font-weight: 700;
  transition: 0.4s ease-in-out;
}

.process__title {
  display: block;
  font-weight: 700;
  font-size: 20px;
  color: #003c71;
  text-transform: uppercase;
}

.process-item:hover {
  background: #f2f2f2;
  border-color: #003c71;
}

.process-item:hover .process__number {
    transform: translateY(5px);
    color: #003c71;
}

.categories-item:hover {
  background-color: #c6c3c3;
}

.btn-loading {
  display: flex;
  align-items:center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-ring{
  display: none;
}

.btn-ring:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 4px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: rotation 1.2s linear infinite;
}

.btn-ring--sm:after {
  width: 15px;
  height: 15px;
}

@media screen and (min-width: 992px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    /* height: 300px; Thiết lập chiều cao tùy ý */
  }

  .center {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: 16px;
    font-weight: 700;
  }
  
  .top-left {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  
  .top-right {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  
  .bottom-left {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  
  .bottom-right {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
  }

  .mobile-menu__opener, .mobile-menu__screen {
    display: none;
  }

  .main-title { 
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  /* .timeline-main {
    height: calc(100% - 700px);
  } */

  .timeline-main .timeline-wrap .timeline-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }

  .timeline-main .timeline-wrap .timeline-card:nth-child(even) .timeline-card-wrap {
    margin-right: 0;
    margin-left: 35px;
  }

  .timeline-main .timeline-wrap .timeline-card:nth-child(2) .timeline-card-wrap {
    animation: fadeInLeft 1s;
    animation-fill-mode: both;
    animation-delay: 1s;
  }

  .timeline-main .timeline-wrap .timeline-card:nth-child(3) .timeline-card-wrap { 
    animation: fadeInRight 2s;
    animation-fill-mode: both;
    animation-delay: 2s;
  }

  .timeline-main .timeline-wrap .timeline-card:nth-child(4) .timeline-card-wrap { 
    animation: fadeInRight 3s;
    animation-fill-mode: both;
    animation-delay: 3s;
  }


  /* .timeline-main .timeline-wrap .timeline-card:nth-child(3) {
    animation-delay: 3s;
  }  */

  .timeline-main .timeline-wrap .timeline-card:nth-child(even) .timeline-card-wrap::after {
    right: unset;
    border-left: none;
    left: -8px;
    border-right: 10px solid #294774;
  }

  .timeline-main .timeline-wrap .timeline-card:nth-child(even)::after {
    right: unset;
    left: -10px;
  }

  .timeline-main .timeline-wrap .timeline-card:nth-child(even) {
    float: right;
    clear: right;
    
  } 
  .timeline-main .timeline-wrap .timeline-card:nth-child(2) { 
    margin-top: 25%;
  }
  .timeline-main .timeline-wrap .timeline-card:nth-child(3) {
    margin-top: 20%;
  }
  .timeline-main .timeline-wrap .timeline-card:nth-child(4) {
    margin-top: 25%;
  }

  .timeline-main .timeline-wrap .timeline-card:nth-child(5) {
    margin-top: 15%;
  }
}

@media (max-width: 767px) {
  .timeline-main .timeline-wrap .timeline-card {
    width: 100%;
  }

  .timeline-main .timeline-wrap::before {
    left: 100%;
  }

  .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap {
    margin-right: 25px;
  }
}

@keyframes line {
  0% {
    height: 0;
  }

  100% {
    height: calc(100% - 10px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
@keyframes animloader {
  50% {
    transform: scale(1) translate(-50%, -50%);
  }
}

