﻿@charset "UTF-8";
@keyframes shrink {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 130%;
  }
}
@keyframes shrink2 {
  0% {
    background-size: 95%;
  }
  100% {
    background-size: 100%;
  }
}
@keyframes opacitymove {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacitymoveup {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes opacitymovedown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes translateXmove {
  from {
    transform: translateX(-30px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes translateYmoveup {
  from {
    transform: translateY(30px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes translateYmovedown {
  from {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes translateLoad {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  10% {
    left: 0%;
    right: 75%;
    width: 25%;
  }
  90% {
    right: 0%;
    left: 75%;
    width: 25%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/******* RESPONSIVE ********/
/****Màn hình máy tính thông thường****/
/****Màn hình desktop loại bé****/
/**** Màn hình ipad hiển thị theo chiều ngang (Landscape) ****/
/****Màn hình ipad loại bé hiển thị theo chiều ngang (Landscape)****/
/****Màn hình ipad hiển thị theo chiều dọc (Portrait)****/
/****Màn hình ipad loại bé hiển thị theo chiều dọc (Portrait)****/
/****Màn hình điện thoại hiển thị theo chiều ngang (Landscape)****/
/****Màn hình điện thoại Iphone Plus****/
/****Màn hình điện thoại Iphone****/
/****Màn hình điện thoại loại bé****/
/*$secondary-color: #cf0921;
$primary-color: #014eff;
$text-active: #FCE731;*/
header.custom {
  background: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
header.custom .nav-panel .logo .title p {
  color: #fff;
}
header.custom .nav-panel .menu .item a, header.custom .nav-panel .menu .item i, header.custom .nav-panel .menu .item .dropdown-toggle::after, header.custom .nav-panel .menu .item .dropdown-toggle > span {
  color: #fff;
}
header.custom:hover {
  background: #fff;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}
header.custom:hover .nav-panel .logo .title p {
  color: #2c3542;
}
header.custom:hover .nav-panel .menu .item a, header.custom:hover .nav-panel .menu .item i, header.custom:hover .nav-panel .menu .item .dropdown-toggle::after, header.custom:hover .nav-panel .menu .item .dropdown-toggle > span {
  color: #2c3542;
}

.container-vw {
  width: 90vw !important;
}

.page-body {
  background: #f9fafb;
  padding: 30px 0;
}

.row {
  row-gap: 30px;
}

.page-top {
  width: 100%;
  height: 400px;
  margin-top: -86px;
  animation: shrink2 5s;
  background-image: url("../../images/banner/bg.jpg");
  background-size: cover;
  background-position-x: center;
  filter: blur(0.5px);
}

.page-bottom {
  padding-top: 50px;
  margin-top: -200px;
}

.group {
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: opacitymoveup 1.5s;
  padding: 25px 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.heading {
  color: #2c3542;
  padding: 10px 0;
  border-radius: 10px;
  display: flex;
  font-weight: 700;
}
.heading span {
  font-weight: 700;
  font-size: 1.1em;
  text-transform: uppercase;
}

.stable {
  position: relative;
}
.stable table {
  border: none;
  margin-top: 10px;
  margin-bottom: 30px;
  width: 100%;
}
.stable table th {
  background: #e7efff;
  padding: 0.5rem 0.7rem;
  border-top: none;
  border-bottom: 3px solid #1A52CD;
  color: #2c3542;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 1;
  width: max-content;
  font-size: 0.9rem;
}
.stable table td {
  max-width: 50%;
  padding: 0.5rem 0.7rem;
}
.stable table tbody {
  border-bottom: 2px solid #ccc;
}
.stable .title {
  font-style: italic;
  font-size: 0.9rem;
}
