a, a:hover {
  text-decoration: none;
  color: unset;
}
.img-100 {
  width: 100%;
  height: auto;
}
.hidden-pc {
  display: none;
}
.font-italic {
  font-style: italic;
}
.font-weight-500 {
  font-weight: 500;
}
.mar-right-2 {
  margin-right: 10px;
}
.mar-right-3 {
  margin-right: 20px;
}
.text-8 {
  font-size: 8px;
}
.text-9 {
  font-size: 9px;
}
.text-10 {
  font-size: 10px;
}
.text-11 {
  font-size: 11px;
} 
.text-red {
  color: red;
}
.text-right {
  text-align: right;
}
.mar-bot-30 {
  margin-bottom: 30px;
}
.mar-bot-20 {
  margin-bottom: 20px;
}



/* header */
.header {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
.header-logo {
  max-height: 50px;
}
.main-menu {
  margin: 0px;
  padding:0px;
}
.menu-item {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-item:not(:last-child) {
  margin-right: 30px;
}

.menu-item a.nav-link  { 
  color: #333;
  border-bottom: 2px solid transparent;
  padding: 0px;
  font-size: 13px;
}
.menu-item:hover a.nav-link, .menu-item.active a.nav-link {
  border-bottom: 2px solid black;
}

.slick-homebanner .slick-slide {
  padding: 0;
}
.slick-homebanner .slick-arrow {
  position: absolute;
  top: 0px;
  bottom: 0px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: #11275a;
  margin: auto;
}
.slick-homebanner .slick-prev {
  left: 0px;
}

.slick-homebanner .slick-next {
  right: 0px;
}



/* main */
.main {
  padding-top: 60px;
}
.home-work {
  padding: 40px 0;
  background-color: #f4f5f4;
}
.home-title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.home-title-line {
  background-color: #2668ff;
  min-height: 1px;
  width: 80px;
}
.home-title {
  margin: 0 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
}
.home-mini-desc {
  margin: 0 auto;
  margin-bottom: 50px;
  font-style: italic;
  max-width: 600px;
  text-align: center;
  color: #777;
}
.product-contain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 40px;
}
.product-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  text-align: center;
}
.product-img-div {
  position: relative;
  overflow: hidden;
  padding-top: 78%;
}
.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.product-info {
  position: relative;
  padding: 30px 20px;
  background-color: white;
}
.product-mini-icon-div {
  position: absolute;
  top: -35px;
  right: 0;
  z-index: 2;
  background-color: white;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  transition: all ease .5s;
  transform: translate(-30px, 0px);
}
.product-mini-icon-div > img {
  max-width: 40px;
}
.product-name {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: red;
}
.product-desc {
  color: #777;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
  -webkit-line-clamp: 3;
  height: 75px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  font-size: .9rem;
  font-style: italic;
}
.product-view-more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.product-view-line {
  background-color: #102659;
  min-height: 1px;
  width: 60px;
  margin-right: 5px;
}
.product-view-btn {
  font-weight: 500;
  text-transform: uppercase;
  background-color: #102659;
  color: white;
  padding: 4px 14px;
  border-radius: 8px;
  font-size: .9rem;
}
.product-item:hover .product-view-btn {
  background-color: black;
}
.product-item:hover .product-mini-icon-div {
  right: 50%;
  transform: translate(50%, 0);
  background-color: #102659;
}
.home-about-left {
  width: 48%;
}
.home-about-right {
  width: 45%;
  padding-right: 280px;
}
.home-about-title-div {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.home-about-title {
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
}
.home-about-line {
  background-color: #102659;
  min-height: 2px;
  width: 80px;
  margin-left: 15px;
}
.home-about-desc {
  margin-bottom: 30px;
}
.home-about-btn, .home-about-btn:hover {
  background-color: #102659;
  color: white;
  padding: 6px 40px;
  border-radius: 24px;
  font-weight: 500;
}
.home-service {
  padding: 40px 0;
}
.home-service-contain {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home-service-box {
  border-radius: 12px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  overflow: hidden;
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
}
.home-service-line {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 60px;
  min-height: 1px;
  background-color: #777;
}
.home-service-box:hover .home-service-line {
  background-color: #102659;
}
.home-service-name {
  font-weight: 500;
  margin-bottom: 5px;
}
.home-service-desc {
  color: #777;
  font-size: .8rem;
}
.home-service-group1 {
  width: 24%;
}
.home-service-group2 {
  width: 50%;
}
.home-study {
  padding-top: 40px;
}
.home-vote {
  padding: 40px 0;
  background: url(../images/bg3.jpg) no-repeat;
  background-size: 100% 100%;
}
.vote-left {
  width: 18%;
}
.vote-right {
  width: 78%;
}
.vote-box {
  background-color: #002e5b;
  color: #fefefe;
  padding: 0 20px;
  padding-top: 0;
  padding-bottom: 50px;
  position: relative;
  font-size: .9rem;
  border-radius: 12px;
}
.vote-spaceup {
  min-height: 30px;
}
.vote-spacedown {
  min-height: 60px;
}
.vote-icon-div {
  position: relative;
  bottom: 25px;
}
.vote-name {
  color: #102659;
  font-weight: 700;
  text-transform: capitalize;
}
.vote-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.vote-job {
  font-weight: 700;
  color: white;
}
.vote-img-div {
  position: absolute;
  right: 20px;
  bottom: -50px;
}
.vote-img-div img {
  max-width: 100px;
}
.home-archive {
  padding: 80px 0;
  background: url(../images/bg2.jpg) no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}
.archive-number {
  font-size: 5rem;
  font-weight: 700;
  border-bottom: 5px solid #102659;
  display: inline-block;
  margin-bottom: 20px;
}
.home-news {
  padding: 40px 0;
}
.news-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  padding: 10px;
  background-color: white;
}
.news-view-btn {
  padding-top: 10px;
  text-align: center;
  color: #0012ff;
  font-style: italic;
  font-size: .95rem;
  text-decoration: underline;
  border-top: 2px solid #eee;
}
.news-space {
  min-height: 5px;
}
.news-mini-info {
  font-style: italic;
  font-size: .8rem;
  color: #777;
  margin-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
  -webkit-line-clamp: 4;
  height: 100px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.home-gv .news-mini-info {
  font-size: .85rem;
}
.slick-news .slick-slide {
  padding: 0 10px;
}

.slick-news .slick-arrow:before, .slick-visit .slick-arrow:before{
  font-size: 30px;
  color: #11275a;
}
.home-partner {
  padding: 40px 0;
}
.slick-partner .slick-slide {
  padding: 0;
}
.partner-img {
  border: 1px solid #102659;
  padding: 15px;
  width: 100%;
  height: 70px;
  margin: 0 !important;
}
.footer-info {
  background: url(../images/bg2.jpg) no-repeat;
  background-size: cover;
  color: white;
  padding: 40px 0;
}
.footer-title {
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.copyright {
  color: #102659;
  font-size: 1rem;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
}
.footer-box1 {
  width: 48%;
  margin-right: 2%;
}
.footer-box2 {
  width: 22%;
  margin-right: 2%;
}
.footer-box2:last-child {
  margin-right: 0%;
}
.footer-list {
  padding: 6px 0;
}
.footer-mark {
  background: url(../images/ft_mark.png) no-repeat left;
  padding-left: 40px;
}
.footer-phone {
  background: url(../images/ft_phone.png) no-repeat left;
  padding-left: 40px;
}
.footer-mail {
  background: url(../images/ft_mail.png) no-repeat left;
  padding-left: 40px;
}
.breadcrum-bg {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: url(../images/bg4.jpg) no-repeat;
  background-size: cover;
}
.breadcrum-title {
  font-weight: 700;
  font-size: 2rem;
  border-bottom: 3px solid #102659;
  text-transform: uppercase;
}
.breadcrum-item {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
}
.breadcrum-item:not(:last-child) {
  padding-right: 6px;
  margin-right: 6px;
  color: #102659;
}
.breadcrum-item:not(:last-child)::after {
  content: '>';
  position: relative;
  left: 8px;
}
.other-page {
  padding: 40px 0;
}
.about1-title {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.5rem;
  text-align: center;
}
.about1-title2 {
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.15rem;
}
.about1-box {
  width: 48%;
}
.about1-item-left {
  width: 20%;
}
.about1-item-right {
  width: 74%;
}
.about1-item-number {
  background: url(../images/bg_circle.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 0;
  font-size: 2rem;
  color: #002e5b;
  font-weight: 500;
}
.about1-item-name {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.about1-item-desc {
  color: #777;
  font-style: italic;
}
.about1, .about2 {
  margin-bottom: 50px;
}
.about-page-title {
  text-transform: capitalize;
  font-weight: 500;
}
.about2-contain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.about2-box {
  position: relative;
  padding: 10px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about2-box-line {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 60px;
  min-height: 1px;
  background-color: #102659;
}
.about2-box-left {
  width: 24%;
}
.about2-box-right {
  width: 72%;
}
.about2-item-name {
  text-transform: capitalize;
  font-weight: 500;
  font-size: .9rem;
}
.about2-item-desc {
  color: #777;
  font-style: italic;
  font-size: .8rem;
}

/* QUESTION */
.question{
  padding: 40px 0;
}

.accordion{
  display: flex;
  flex-wrap: wrap;
}

.accordion-item{
  width: 100%;
  margin-bottom: 30px;
  background-color: #feffff;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 12px !important;
}

.accordion-header{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0 !important;
}

.accordion-item button{
  width: 100%;
  border: none;
  font-size: 20px;
  color: rgb(31, 31, 31);
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
}

.accordion-item button:focus,
.accordion-item button:focus-visible{
  border: none;
  outline: none;
}

.accordion-body{
  text-align: justify;
  padding: 10px 25px 10px;
  font-size: 14px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 10px;
}

.accor-title{
  position: relative;
  width: 100%;
}

.accor-title-icon{
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0,-50%);
  display: flex;
  align-items: center;
  padding: 6px;
  background-color: #ddd;
  border-radius: 50%;
  color: #fff;
}

.accor-title-icon i{
  font-size: 14px;
}

.accor-title-text {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding-left: 5px;
    text-transform: uppercase;
}

.accordion-button{
	transition: all 0.3s linear;
	border-bottom-right-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.accordion-button.collapsed{
	border-radius: 10px !important;
}

.question-img{
  display: flex;
  align-items: center;
  justify-content: center;  
}

.question-img-wrapper{
  width: 40vw;
  height: 35vw;
  display: flex;
  align-items: end;

  position: relative;
}

.question-img-wrapper img:first-child{
  width: 100%;
}

.news-contain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.project-tab-head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.project-tab {
  padding: 6px 30px;
  margin: 0 6px;
  border-radius: 8px;
  background-color: #eee;
  font-weight: 500;
}
.project-tab.active, .project-tab:hover {
  background-color: #102659;
  color: white;
}
.project-item {
  display: block;
  padding-bottom: 20px;
  position: relative;
}
.project-img-demo-div {
  overflow: hidden;
  height: 200px;
  margin-bottom: 20px;
}
.project-img-demo {
  width: 100%;
  height: auto;
  transition: all ease 4s;
}
.project-img-demo-div::-webkit-scrollbar {
  width: 0px;
}
.project-img-demo-div:hover .project-img-demo {
  transform: translateY(calc(-100% + 200px));
  -ms-transform: translateY(calc(-100% + 200px));
  -webkit-transform: translateY(calc(-100% + 200px));
  -moz-transform: translateY(calc(-100% + 200px));
  -o-transform: translateY(calc(-100% + 200px));
}
.project-view-detail {
  font-style: italic;
}
.project-view-i-detail {
  background-color: #ececec;
  padding: 4px 8px;
  border-radius: 50%;
}
.project-item:hover .project-view-i-detail {
  background-color: #102659;
  color: white;
}
.project-line {
  background-color: #102659;
  min-height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  transition: all ease .5s;
}
.project-item:hover .project-line {
  width: 100%;
}
.contact-sec1 {
  padding: 40px 0;
}
.contact-sec1-box {
  width: 20%;
}
.contact-sec1-title {
  font-weight: 500;
  font-size: 1.25rem;
}
.contact-sec1-icon {
  margin-bottom: 10px;
}
.contact-sec1-icon img {
  max-height: 50px;
}
.contact-sec1-hr {
  background-color: #102659;
  min-height: 3px;
  width: 120px;
  margin-bottom: 20px;
}
.contact-sec2 {
  background-color: #eee;
  padding: 40px 0;
}
.lhe-icon {
  margin: 0 20px;
}
.contact-sec2-title {
  font-weight: 500;
  font-size: 1.75rem;
  text-transform: uppercase;
  text-align: center;
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.d-50 {
  width: 46%;
}
.form-marbot {
  margin-bottom: 30px;
}
.contact-inp {
  width: 100%;
  border: none;
  background-color: white;
  padding: 4px 14px;
  border-radius: 8px;
}
.contact-inp::placeholder {
  font-style: italic;
  font-size: .9rem;
  color: #bbb;
}
.contact-form-btn {
  background-color: #102659;
  color: white;
  padding: 4px 60px;
  border-radius: 8px;
  border: none;
}
.home-title1 {
  text-transform: uppercase;
  color: red;
  font-weight: 500;
  text-align: center;
  font-size: 1.25rem;
}
.home-title2 {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.nghe-img-div {
  position: relative;
  overflow: hidden;
  padding-top: 40%;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 12px;
}
.nghe-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.nghe-title {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 8px 10px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  position: relative;
  bottom: 20px;
  z-index: 2;
  background-color: white;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
}
.product-khoa {
  color: #888;
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 400;
}
.home-about {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
.home-about-icon {
  width: 15%;
  margin-right: 15px;
}
.home-about-icon-desc-tit {
  font-weight: 500;
  font-size: 1.15rem;
}
.home-about .home-title1, .home-about .home-title2 {
  text-align: left;
}
.home-dangky {
  padding: 100px 0;
  background: url(../images/bg1.png) no-repeat center;
}
.home-form-label {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.form-inp {
  width: 100%;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  background-color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
}
.form-inp::placeholder {
  font-style: italic;
  color: #ccc;
}
.form-btn {
  background: white;
  border: none;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  color: red;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  padding: 6px 60px;
  border-radius: 5px;
}
.home-info {
  background-color: #fff9f1;
  padding: 40px 0;
}
.news-name {
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
  -webkit-line-clamp: 3;
  height: 75px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.news-mini-info-icon1 {
  background: url(../images/ictt1.png) no-repeat left;
  padding-left: 20px;
  height: unset;
  line-height: unset;
}
.news-mini-info-icon2 {
  background: url(../images/ictt2.png) no-repeat left;
  padding-left: 30px;
  height: unset;
  line-height: unset;
}
.news-item .product-img-div {
  padding-top: 60%;
}
.gv-name {
  text-transform: uppercase;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
  -webkit-line-clamp: 1;
  height: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.no-bor-top {
  border-top: unset;
}
.home-gv .product-img-div {
  width: 175px;
  height: 175px;
  margin: 0 auto;
}
.gv-img {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.gv-exp {
  font-style: italic;
  font-size: .95rem;
  position: relative;
}
.gv-exp::before {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/book.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -2px;
  z-index: 1;
}
.home-sv {
  background: url(../images/bg3.jpg) no-repeat left;
  padding: 40px 0;
}
.home-sv-box {
  width: calc(50% - 15px);
}
.home-iframe {
  width: 100%;
  height: 100%;
}
.home-sv-box-pad {
  padding: 15px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}
.home-sv-item {
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  background-color: white;
  position: relative;
  padding: 15px;
  border-radius: 8px;
}
.home-sv-item::after {
  content: '';
  width: 42px;
  height: 34px;
  background: url(../images/ic1.png) no-repeat;
  position: absolute;
  right: 40px;
  top: -15px;
}
.home-sv-item:not(:last-child) {
  margin-bottom: 30px;
}
.sv-item-img-div {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  position: relative;
}
.sv-item-img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.sv-item-name {
  font-weight: 700;
  text-transform: uppercase;
}
.sv-item-khoa {
  color: #ccc;
  font-style: italic;
  font-size: .8rem;
}
.home-visit-left {
  width: 35%;
}
.home-visit-right {
  width: 60%;
}
.home-visit-left .home-title1, .home-visit-left .home-title2 {
  text-align: left;
}
.home-visit-btn {
  display: inline-block;
  background-color: #102659;
  color: white;
  border-radius: 6px;
  padding: 10px 40px;
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
}
.visit-box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.visit-name {
  background-color: #102659;
  display: block;
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.visit-name:hover, .home-visit-btn:hover {
  color: white;
}
.visit-img-div {
  position: relative;
  padding-top: 130%;
  overflow: hidden;
}
.visit-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.foot-m-icon {
  max-width: 50px;
}



/* cac layout khac ngoai trang chu */
.dac-quyen-left {
  width: 40%;
}
.dac-quyen-right {
  width: 55%;
  border-radius: 8px;
}
.dq-left-item {
  position: relative;
  font-weight: bold;
  padding-left: 25px;
  margin-bottom: 20px;
}
.dq-left-item-num {
  color: #ed1c24;
  font-weight: 700;
  font-size: 1.5rem;
  position: absolute;
  top: -7px;
  left: 0;
}
.dq-btn {
  background-color: #ed1c24;
  color: white;
  font-weight: 500;
  padding: 4px 40px;
  border-radius: 24px;
}
.dq-btn:hover {
  color: white;
}
.dq-desc {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}
.nophs-btn {
  display: inline-block;
  background-color: #102659;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 8px 30px;
  font-size: 1.1rem;
}
.nophs-btn:hover {
  color: white;
}
.nophs-contain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.nophs-box {
  padding: 15px;
  background-color: white;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.nophs-box::after {
  content: '';
  width: 111px;
  height: 124px;
  background: url(../images/icsp_red.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: -5px;
  z-index: 1;
}
.nophs-num {
  font-weight: 100;
  font-size: 2rem;
  color: #ed222a;
}
.nophs-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ed222a;
  text-transform: uppercase;
}
.nophs-hr {
  color: #ed222a;
  max-width: 35px;
  margin: 0;
  margin-bottom: 20px;
  opacity: 1;
}
.nophs-box:hover {
  background-color: #ed222a;
  color: white;
}
.nophs-box:hover .nophs-num, .nophs-box:hover .nophs-name, .nophs-box:hover .nophs-hr, .nophs-box:hover .nophs-dky {
  color: white;
}
.nophs-box:hover::after {
  background-image: url(../images/icsp_white.png);
}
.nophs-dky {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: #ed222a;
  font-style: italic;
  z-index: 2;
  text-decoration: underline;
}
.nophs-ul {
  text-transform: capitalize;
  max-width: 72%;
}
.txrr-contain {
  display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
  margin-bottom: 50px;
}
.txrr-box {
  overflow: hidden;
  border-radius: 6px;
}
.txrr-box img {
	width: 100%;
	height: 100%;
}
.txrr-box1 {
  grid-area: 1 / 1 / span 2 / span 1;
}
.txrr-box2 {
  grid-area: 1 / 2 / span 1 / span 1;
}
.txrr-box3 {
  grid-area: 1 / 3 / span 2 / span 1;
}
.txrr-box4 {
  grid-area: 1 / 4 / span 1 / span 1;
}
.txrr-box5 {
  grid-area: 2 / 2 / span 1 / span 1;
}
.txrr-box6 {
  grid-area: 2 / 4 / span 1 / span 1;
}
.chvl-box {
  width: calc(50% - 8px);
}
.chvl-item {
  background-color: #102659;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  padding: 15px;
}
.chvl-item:not(:last-child) {
  margin-bottom: 15px;
}
.chvl-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.chvl-bor {
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  padding: 15px;
}
.cktd-hr {
  max-width: 80px;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 30px;
  color: black;
  min-height: 2px;
}
.cktd-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
}
.cktd-width {
  max-width: 1000px;
  margin: 0 auto;
}
.dt-img {
  max-height: 60px;
  display: inline !important;
}
.dt-img-div {
  text-align: center;
  margin-bottom: 20px;
}
.td-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  padding-top: 60%;
}
.td-box::after {
  content: '';
  background-image: linear-gradient(to top, black, transparent);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0
}
.td-name {
  text-transform: uppercase;
  font-weight: 500;
}
.td-hr {
  max-width: 60px;
  margin: 0 auto;
  color: red;
  background-color: red;
  height: 1px;
  margin-bottom: 5px;
  opacity: 1;
}
.td-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
  font-size: .8rem;
  padding: 10px;
  text-align: center;
}
.td-title {
  color: #102659;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.daingo-contain {
  display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px 30px;
  margin-bottom: 50px;
}
.daingo-box {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
}
.daingo-icon {
  min-width: 55px;
  margin-right: 20px;
}
.daingo-name {
  font-weight: 700;
  font-size: 1.15rem;
}
.tdkhac-box {
  background-color: #102659;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: white;
}
.tdkhac-name {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.15rem;
}
.tdkhac-hr {
  max-width: 90%;
  margin: 8px auto;
  opacity: 1;
}
.cong-ttdt-box .home-title1, .cong-ttdt-box .home-title2 {
  text-align: left;
}
.cong-ttdt-box {
  width: 45%;
}
.cauhoi-left {
  width: 40%;
  overflow: hidden;
  border-radius: 6px;
}
.cauhoi-right {
  width: calc(60% - 30px);
}
.cauhoi-box {
  background-color: #102659;
  overflow: hidden;
  border-radius: 6px;
  padding: 8px 30px;
  color: white;
  position: relative;
  padding-right: 80px;
  cursor: pointer;
}
.cauhoi-box:not(:last-child) {
  margin-bottom: 10px;
}
.cauhoi-name {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.cauhoi-desc {
  display: none;
  font-style: italic;
}
.cauhoi-desc p {
  margin-bottom: 0;
}
.cauhoi-icon {
  position: absolute;
  top: 16px;
  right: 10px;
}
.cauhoi-icon::before {
  content: '';
  width: 10px;
  height: 2px;
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: white;
}
.cauhoi-icon::after {
  content: '';
  width: 2px;
  height: 10px;
  position: absolute;
  right: 9px;
  top: 1px;
  background-color: white;
}
.cauhoi-box.active .cauhoi-icon::after {
  display: none;
}
.sotay-left {
  width: 30%;
}
.sotay-right {
  width: 70%;
  padding-bottom: 30px;
}
.sotay-title {
  padding-left: 80px;
  text-align: left;
}
.sotay-box {
  padding: 80px;
  background-color: #102659;
  color: white;
}
.hocbong {
  background: url(../images/bg4.jpg)no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  padding: 80px 0;
  color: white;
  text-align: center;
}
.hocbong-title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.hocbong-contain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.hocbong-item {
  font-weight: 500;
  background-color: #102659;
  padding: 5px 0;
  border-radius: 6px;
}
.hocbong-desc {
  font-style: italic;
}
.hocbong-desc p {
  margin-bottom: 0;
}
.hocbong-view {
  text-decoration: underline;
}
.video-contain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}
.video-box {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.video-name {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #102659;
  color: white;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 0;
}
.video-iframe {
  width: 100%;
  height: 280px;
}
.lhe-banner {
  background: url(../images/banner3.jpg) no-repeat;
  background-size: cover;
  padding: 100px 0;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
.lhe-left {
  width: 60%;
  background-color: white;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 8px;
  overflow: hidden;
  padding: 8px;
}
.lhe-right {
  width: calc(40% - 20px);
}
.kent-map {
  width: 100% !important;
  height: 100% !important;
}
.lhe-item {
  background-color: white;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 8px;
  overflow: hidden;
  padding: 30px 60px;
  background-repeat: no-repeat;
  background-position: 15px;
  padding-right: 10px;
}
.lhe-item:not(:last-child) {
  margin-bottom: 20px;
}
.lhe-mark {
  background-image: url(../images/iclh_mark.png);
}
.lhe-phone {
  background-image: url(../images/iclh_phone.png);
}
.lhe-mail {
  background-image: url(../images/iclh_mail.png);
}
.dtnh-box {
  background-color: #102659;
  overflow: hidden;
  border-radius: 6px;
  padding: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
.dtnh-box:not(:last-child) {
  margin-bottom: 25px;
}
.dtnh-name {
  font-weight: 700;
  border-bottom: 3px solid white;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1.1rem;
}
.dtnh-left {
  width: 35%;
}
.dtnh-right {
  width: 60%;
}
.dtnh-width {
  max-width: 900px;
  margin: 0 auto;
}
.dtnh-small-text {
  font-size: 12px;
}
.d-bor:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid white;
}
.dtnh-btn {
  background-color: #ed1c24;
  font-style: italic;
  padding: 6px 40px;
  border-radius: 6px;
}
.ckcd-name {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ckcd-desc {
  font-style: italic;
  font-size: .9rem;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
  -webkit-line-clamp: 4;
  height: 100px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.ckcd-pad {
  padding: 15px;
}
.kent-table {
  background-color: #102659;
  color: white;
  border-radius: 6px;
  text-align: center;
}
.kent-table>tbody>tr:hover>* {
  color: white;
}
.kent-table thead tr th {
  padding: 16px 0;
}
.hbong-box {
  background-color: #102659;
  border-radius: 6px;
  padding: 30px;
  margin-bottom: 40px;
}
.hbong-name {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-align: center;
  font-size: 1.15rem;
}
.ctdt-gt-left {
  width: 40%;
}
.ctdt-gt-right {
  background-color: #102659;
  color: white;
  padding: 20px 40px;
  border-radius: 0 6px 6px 0;
  width: 60%;
}
.ctdt-gt-img {
  border-radius: 6px;
}
.ctdt-gt-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ctdt-wrapper {
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 8px;
  overflow: hidden;
  padding: 30px 15px;
}
.ctdt-tab-contain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 30px;
  padding: 0 40px;
}
.ctdt-tab {
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 8px;
  overflow: hidden;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}
.ctdt-tab.active {
  background-color: #ed222a;
  color: white;
}
.ctdt-box {
  width: 48%;
}
.ctdt-btn {
  background-color: #ed222a;
  color: white;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 24px;
}
.ctdt-btn:hover {
  color: white;
}
.ctdt-tabcontent {
  margin-bottom: 30px;
  display: none;
}
.dktt-wrapper {
  padding: 20px;
  background-color: #102659;
  color: white;
  border-radius: 6px;
}
.dktt-title {
  color: black;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.25rem;
  background-color: white;
  border-radius: 6px;
  text-align: center;
  padding: 6px 0;
}
.dktt-inp {
  width: 100%;
  background-color: white;
  border: none;
  border-radius: 6px;
  padding: 5px 20px;
  color: black;
}
.dktt-left {
  width: 30%;
  font-weight: 500;
}
.dktt-right {
  width: 60%;
}
.dktt-form-width {
  max-width: 90%;
  margin: 0 auto;
}
.dktt-diem-contain {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.dktt-diem-item {
  display: flex;
  width: 30%;
  margin: 0 20px;
  margin-bottom: 20px;
}
.dktt-diem-item-left {
  width: 40%;
  background-color: white;
  color: black;
  padding: 6px 8px;
  border-right: 1px solid black;
}
.dktt-diem-item-right {
  width: 60%;
}
.dktt-diem-inp {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 10px;
}
.dktt-table {
  background-color: white;
}
.dktt-table thead {
  background-color: #ed222a;
  color: white;
  text-transform: uppercase;
}
.dktt-table tbody tr td {
  padding: 0.5rem 1rem;
}
.dktt-btn {
  background-color: #ed222a;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 10px 40px;
  border: none;
}
.dktt-span-radio {
  position: relative;
  left: 100px;
}
.dktt-date-inp {
  width: 300px;
}
.digital-archive-contain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.digital-archive-box {
  background-color: #102659;
  color: white;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 8px;
  text-align: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 30px;
}
.digital-archive-img-div {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translate(-50%, 0px);
}
.digital-archive-name {
  font-weight: 700;
  font-size: 3rem;
}
.digital-archive-name span {
  position: relative;
  bottom: 15px;
  right: 10px;
  font-size: 2rem;
}
.digital-archive-space {
  min-height: 100px;
}
.digital-tbao-box {
  width: 50%;
  border-radius: 6px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  overflow: hidden;
}
.digital-tbao-wrapper {
  background-color: #102659;
  color: white;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: .9rem;
  text-align: center;
}
.digital-tbao-name {
  font-weight: 700;
  font-size: 1.1rem;
}
.digital-bor1 {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  position: relative;
  left: 1px;
  top: 1px;
}
.digital-bor2 {
  border-left: 1px solid white;
  border-top: 1px solid white;
}
.digital-tbao-item {
  padding: 20px;
}
.digital-choose-wrapper {
  background-color: #102659;
  color: white;
  border-radius: 6px;
  padding: 30px 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.digital-choose-contain {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.digital-choose-left1 {
  position: absolute;
  left: -300px;
}
.digital-choose-right2 {
  position: absolute;
  right: -300px;
}
.digital-choose-left2 {
  padding-right: 235px;
}
.digital-choose-right1 {
  padding-left: 235px;
}
.digital-choose-title {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
}
.digital-choose-img {
  border-radius: 8px;
  max-width: 480px;
}
.digital-csvt {
  background-color: #102659;
  color: white;
  padding: 40px 0;
}
.digital-csvt-item {
  border-radius: 6px;
  overflow: hidden;
}
.camnhan-contain {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.camnhan-left {
  width: 20%;
  border-radius: 8px;
  overflow: hidden;
}
.camnhan-right {
  width: calc(80% - 25px);
  background-color: #dcdcdc;
  padding: 40px;
  border-radius: 8px;
}
.digital-dky {
  background: url(../images/bg.png) no-repeat center;
  padding: 40px 0;
}
.digital-dky-box {
  width: 50%;
  padding: 0 40px;
}
.digital-dky-bor {
  border-right: 2px solid black;
}
.digital-dky-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.digital-dky-inp {
  width: 100%;
  border: none;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  padding: 8px 20px;
  border-radius: 6px;
}
.digital-dky-inp::placeholder {
  font-style: italic;
  color: #ccc;
}
.digital-dky-btn {
  background-color: red;
  color: white;
  font-style: italic;
  border-radius: 6px;
  padding: 6px 30px;
  border: none;
}
.gioi-thieu1-left {
  background-color: #102659;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 80px;
  width: 45%;
}
.gioi-thieu1-right {
  width: 55%;
}
.gioi-thieu1-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 30px;
}
.gioi-thieu1-btn {
  background-color: #ed222a;
  color: white;
  font-weight: 500;
  font-size: 2rem;
  border-radius: 14px;
  padding: 10px 40px;
}
.gt2-wrapper {
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 8px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gt2-left {
  width: 55%;
}
.gt2-right {
  width: 43%;
}
.gt2-tit1 {
  color: #ed222a;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.gt2-tit2 {
  font-weight: 700;
  font-size: 1.1rem;
}
.gt2-tit3 {
  font-weight: 700;
  font-size: 1.1rem;
  font-style: italic;
}
.gt2-desc {
  line-height: 50px;
}
.gt3-left {
  width: 42%;
  line-height: 30px;
}
.gt3-right {
  width: 55%;
}
.gt4-left {
  width: 10%;
}
.gt4-right {
  width: 85%;
  border-left: 2px solid black;
  padding-left: 15px;
}
.lsu-name {
  clip-path: polygon(0% 0%, 75% 0%, 85% 50%, 75% 100%, 0% 100%);
  background-color: #adadad;
  padding: 10px 0;
  color: white;
  font-weight: 700;
  font-size: 2.5rem;
  padding-left: 70px;
}
.lsu-desc {
  background-color: #fff9f1;
  padding: 15px;
}
.gt5 {
  background: url(../images/bg5.jpg) no-repeat center;
  padding: 40px 0;
}
.lsu-box:hover .lsu-name {
  background-color: #102659;
}
.slick-lichsu .slick-dots {
  bottom: -50px;
}
.gt6-left {
  width: 40%;
}
.gt6-right {
  width: 55%;
}
.gt7-box {
  width: 48%;
}
.gt8-title {
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  text-align: center;
}
.gt8-hr {
  max-width: 100px;
  opacity: 1;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 30px;
}
.gt8-item-hr {
  max-width: 50px;
  opacity: 1;
  margin-bottom: 5px;
}
.gt8-name {
  font-weight: 500;
  text-align: left;
  text-transform: capitalize;
  font-size: 1.1rem;
}
.gt8-item {
  padding-top: 140%;
}
.gt8-item .td-info {
  padding: 20px;
  padding-bottom: 120px;
}
.ts1-left {
  font-size: 2rem;
  color: red;
  font-weight: 500;
  margin-right: 30px;
}
.ts2 {
  display: flex;
  flex-wrap: wrap;
}
.ts2-left {
  width: 45%;
  background: url(../images/bg6.jpg) no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.ts2-right {
  width: 55%;
  background: url(../images/bg2.jpg) no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
  color: white;
  padding: 100px 30px;
}
.ts2-title-wrapper {
  border: 5px solid white;
  padding: 20px;
}
.ts2-title1 {
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}
.ts2-title2 {
  text-transform: uppercase;
  color: red;
  font-weight: 700;
  font-size: 2rem;
}
.ts2-right-img-div {
  text-align: center;
  margin-bottom: 15px;
  min-height: 79px;
}
.ts3 {
  background: url(../images/ts1.png) no-repeat top left, url(../images/ts2.png) no-repeat bottom right;
  padding: 100px 0;
}
.ts3-contain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 50px;
}
.ts3-img-div {
  position: absolute;
  left: -52px;
  top: -117px;
}
.ts3-name {
  font-weight: 500;
  color: #102659;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.ts3-box {
  border-left: 1px dashed #ccc;
  border-bottom: 3px solid #102659;
  padding: 0 20px;
  position: relative;
  margin-top: 120px;
}
.ts4 {
  background: url(../images/ts3.png) no-repeat bottom right;
  background-color: #102659;
  color: white;
  padding: 40px 0;
}
.ts4-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.65rem;
  text-align: center;
  margin-bottom: 50px;
}
.ts4-contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
.ts4-contain:not(:last-child) {
  margin-bottom: 60px;
}
.ts4-contain:not(:last-child)::after {
  content: '';
  width: 2px;
  height: 65px;
  background-color: white;
  position: absolute;
  left: 50%;
  top: 98%;
  transform: translate(-50%, 0px);
}
.ts4-box1 {
  width: 45%;
  line-height: 32px;
  min-height: 130px;
}
.ts4-box2 {
  width: 7%;
  text-align: center;
}
.ts5-box {
  padding: 40px;
  text-align: center;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  background-color: white;
  margin: 4px;
  border-radius: 6px;
}
.ts5-desc {
  position: relative;
  font-size: 13px;
  margin-top: 20px;
}
.ts5-desc::before {
  content: '';
  background: url(../images/open.png) no-repeat;
  position: absolute;
  top: -14px;
  left: -20px;
  width: 20px;
  height: 16px;
}
.ts5-desc::after {
  content: '';
  background: url(../images/close.png) no-repeat;
  position: absolute;
  bottom: -14px;
  right: -20px;
  width: 20px;
  height: 16px;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.image-grid .item {
  position: relative;
  padding-top: 100%;
}

.image-grid .item img{
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.position-static {
  position: static !important;
}
.w-100 {
  width: 100% !important;
}
/* END cac layout khac ngoai trang chu END */












/* menu mobile layout */
.edu-mobile-menu-layout {
  position: fixed;
  top: 0;
  left: -85%;
  width: 85%;
  height: 100%;
  transition: all ease .35s;
  background-color: white;
  z-index: 201;
  overflow: auto;
}
.edu-mobile-menu-layout.active {
  left: 0;
}
.edu-mobile-menu-black-screen {
  position: fixed;
  top: 0;
  right: -15%;
  width: 15%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 201;
  transition: all ease .35s;
}
.edu-mobile-menu-black-screen.active {
  right: 0;
}
.edu-mobile-logo-layout {
  max-height: 40px;
}
.edu-mobile-menu-layout-head {
  height: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #eee;
}
.edu-mobile-menu-close {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 1.75em;
  color: #28a745;
}
.edu-mobile-menu-layout-body {
  height: 74%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
}
.edu-mobile-menu-layout-foot {
  height: 18%;
  background-color: #2c3238;
  color: white;
  font-size: 1.25em;
  padding: 10px;
}
.color-orange {
  color: orange;
}
.edu-mobile-menu-mail-icon {
  font-size: 10px;
}
.edu-mobile-menu-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.edu-mobile-menu-ul >li > a > i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  color: #102659;
}
.edu-mobile-menu-ul > li > a {
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
}
.edu-mobile-submenu {
  display: none;
}
.edu-mobile-menu-ul li .edu-mobile-submenu {
  padding: 0;
  margin: 0;
  padding-left: 20px;
}
.edu-mobile-menu-ul li {
  position: relative;
  padding: 4px 0;
  line-height: 30px;
}
.edu-mobile-menu-ul li .edu-mobile-submenu li {
  list-style: none;
}
.edu-mobile-menu-ul li .edu-mobile-submenu li::before{
  content: "\2023";
  color: #102659;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
}

.edu-mobile-menu-icon-size {
  font-size: 2rem;
}
/* END menu mobile layout END */

require {
  color: red;
}
.hidden-pc {
  display: none;
}
/* CTA BT */


@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

@keyframes shine {
  0% {left: -100px}
  20% {left: 100%}
  100% {left: 100%}
}

@keyframes glowing {
  0% {
    background-color: #f22a0b;
    box-shadow: 0 0 3px #fff;
  }
  50% {
    background-color: #f22a0b;
    box-shadow: 0 0 10px #fff;
  }
  100% {
    background-color: #f22a0b;
    box-shadow: 0 0 3px #fff;
  }
}

@keyframes span1{
  0%{
      left:-200px
  }
  100%{
      left:200px;
  }
}

@keyframes span2{
  0%{
      top:-70px;
  }
  100%{
      top:70px;
  }
}

@keyframes span3{
  0%{
      right:-200px;
  }
  100%{
      right: 200px;
  }
}

@keyframes span4{
  0%{
      bottom: -70px;
  }
  100%{
      bottom:70px;
  }
}


.bt-cs-1 {
  transform: scale(1);
	animation: pulse 2s infinite;
}
.bt-cs-2 {
  overflow: hidden;
  position: relative;
  display: inline-block;
  animation: pulse 2s infinite;
}
.bt-cs-2:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
      120deg,
      rgba(255,255,255, 0) 30%,
      rgba(255,255,255, .8),
      rgba(255,255,255, 0) 70%
  );
  top: 0;
  left: -100px;
  animation: shine 3s infinite linear;
}

.bt-cs-3 {
  overflow: hidden;
  position: relative;
  display: inline-block;
  animation: glowing 1300ms infinite;
}

.bt-cs-4{
  border-style: none;
  color:#fff;
  font-size: 23px;
  letter-spacing: 3px;
  font-family: 'Lato';
  font-weight: 600;
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .5s;
  box-shadow: 0px 1px 2px rgba(0,0,0,.2);
  display:inline-block;
  border-radius: 0px;
}

.bt-cs-4 span{
  position: absolute;
  display: block;
}
.bt-cs-4 span:nth-child(1){
  height: 3px;
  width:200px;
  top:0px;
  left:-200px;
  background: linear-gradient(to right, rgba(0,0,0,0), #fff);
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span1 2s linear infinite;
  animation-delay: 1s;
}
.bt-cs-4 span:nth-child(2){
  height: 70px;
  width: 3px;
  top:-70px;
  right:0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), #fff);
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span2 2s linear infinite;
  animation-delay: 2s;
}
.bt-cs-4 span:nth-child(3){
  height:3px;
  width:200px;
  right:-200px;
  bottom: 0px;
  background: linear-gradient(to left, rgba(0,0,0,0), #fff);
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  animation: span3 2s linear infinite;
  animation-delay: 3s;
}
.bt-cs-4 span:nth-child(4){
  height:70px;
  width:3px;
  bottom:-70px;
  left:0px;
  background: linear-gradient(to top, rgba(0,0,0,0), #fff);
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  animation: span4 2s linear infinite;
  animation-delay: 4s;
}
/* CTA BT */
/* Chat */
.bt-sub  {
  position: absolute;
  right: 0;
  height: 30px;
  width: 30px;
  display: flex;
  align-content: center;
  align-items: center;
  top: 0;
  justify-content: center;
  transition: all ease .5s;
  z-index: 1;
  font-size: 18px;
  color: #777;
}

.bt-sub.active {
  transform: rotateZ(180deg);
}
.button-contact-vr{
  position:fixed;
  bottom:60px;
  z-index:99999;
  right: 15px;
}
.button-contact-vr .button-contact{
  position:relative
}
.button-contact-vr .button-contact .phone-vr{
  position:relative;
  visibility:visible;
  width:50px;
  height:50px;
  cursor:pointer;
  z-index:11;
  transition:visibility .5s;
  left:0;
  bottom:0;
  display:block;
  margin-bottom: 5px;
}
.button-contact-vr .button-contact .phone-vr .shown-phone {
  background: #e67e22;
  right: 70px;
  position: relative;
  padding: 5px 50px 5px 5px;
  height: 50px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  text-align: left;
  border-radius: 50px 50px 50px 50px;
  color: #fff;
  flex-direction: column;
  line-height: 20px;
  width: 190px;
  white-space: nowrap;
}
.button-contact-vr .button-contact .phone-vr .shown-phone .shown-phone-hotline {
    font-size: 13px;
  }
.button-contact-vr .button-contact .phone-vr .shown-phone .shown-phone-hotline .shown-phone-name {
  font-size: 18px;
  font-weight: 600;
}
.phone-vr-circle-fill{
  width:50px;
  height:50px;
  top:0px;
  left:0px;
  position:absolute;
  border-radius:50%;
  transition:all .5s;
  transform-origin:50% 50%;
border:2px solid transparent;
  -webkit-animation:phone-vr-circle-fill 2.3s infinite ease-in-out;
  animation:phone-vr-circle-fill 2.3s infinite ease-in-out;
  transition:all .5s;
  -webkit-transform-origin:50% 50%;
  -ms-transform-origin:50% 50%;
  transform-origin:50% 50%;
  -webkit-animuiion:zoom 1.3s infinite;
  animation:zoom 1.3s infinite
}
.phone-vr-img-circle{
  width:50px;
  height:50px;
  line-height:50px;
  top:0px;
  left:0px;
  position:absolute;
  border-radius:50%;
  display:flex;
  justify-content:center;
}
.phone-vr-img-circle a{
  display:block;
  line-height:37px
}
.phone-vr-img-circle img, .phone-vr-img-circle .ic-chat{
  max-height:50px;
  max-width:50px;
  position:absolute;
  top:0%;
  left:0%;
  transform:translate(-50%,-50%);
  -moz-transform:translate(-50%,-50%);
  -webkit-transform:translate(-50%,-50%);
  -o-transform:translate(-50%,-50%);
border-radius:50%;
  display:flex;
  justify-content:center;
  -webkit-animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation:phone-vr-circle-fill 1s infinite ease-in-out;
}
.bt-close {
text-align: center;
font-size: 16px;
border-radius: 50%;
background: #063b74;
color: #fff;
width: 50px;
margin: auto;
height: 50px;
line-height: 50px;
margin-bottom: 2px;
cursor: pointer;

}

.bt-more {
text-align: center;
font-size: 26px;
border-radius: 50%;
color: #fff;
width: 50px;
margin: auto;
height: 50px;
line-height: 55px;
cursor: pointer;
position: relative;
background: #063b74;
bottom: 10px;
}
#topcontrol {
  height: 50px;
  line-height: 50px;
  width: 50px;
  right: 10px;
  background: var(--primary) !important;
}
.ic-chat-phone {
	width: 50px;
	height: 50px;
	background-image: url('../images/ic-phone.png');
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: center;
	border: 3px solid #fff;
}
@-webkit-keyframes phone-vr-circle-fill {
  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)
  }
}
@-webkit-keyframes zoom{
  0%{
      transform:scale(.9)
  }
  70%{
      transform:scale(1);
      box-shadow:0 0 0 15px transparent
  }
  100%{
      transform:scale(.9);
      box-shadow:0 0 0 0 transparent
  }
}
@keyframes zoom{
  0%{
      transform:scale(.9)
  }
  70%{
      transform:scale(1);
      box-shadow:0 0 0 15px transparent
  }
  100%{
      transform:scale(.9);
      box-shadow:0 0 0 0 transparent
  }
}
.phone-bar a {
  position:fixed;
  bottom:70px;
  right:25px;
  z-index:-1;
  color:#fff;
  font-size:16px;
  padding:8px 45px 7px 15px;
  border-radius:100px;
  white-space:nowrap
}
.phone-bar a:hover{
  opacity:.8;
  color:#fff
}

.phone-bar a,#phone-vr .phone-vr-circle-fill,#phone-vr .phone-vr-img-circle,#phone-vr .phone-bar a {
background-color: #e67e22;
}
#phone-vr .phone-vr-circle-fill {
  opacity: 0.7;box-shadow: 0 0 0 0 #e67e22;
}

/* responsive */
@media only screen and (max-width:1400px) {
  .home-about-right {
    padding-right: 0;
  }
}

@media only screen and (max-width:1080px) {
  .about1-item-number {
    padding: 20px 0;
  }
  .header {
    padding: 8px 40px;
  }
  .menu-item:not(:last-child) {
    margin-right: 10px;
  }
  .home-about-left {
    width:30%;
  }
  .home-about-right {
    width:60%
  }
  .dq-btn {
    padding: 4px 16px;
  }
  .ctdt-tab-contain {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .digital-choose-left1, .digital-choose-right2 {
    width: 100%;
    position: static;
    order: 1;
    margin-bottom: 20px;
  }
  .digital-choose-left2, .digital-choose-right1 {
    width: 100%;
    order: 2;
    padding: 0;
  }
  .digital-choose-img {
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (max-width:800px) {
  .ctdt-tab-contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .header {
    padding: 0px 0px 0px 10px;
  }
  .edu-mobile-menu-toggle {
    position: relative;
    top: 0px;
    height: 50px;
    width: 50px;
    display: flex;
    align-content: center;
    align-items: center;
    text-align: right;
    justify-content: center;
  }
  .menu-item:not(:last-child) {
    margin-right: 6px;
  }
  .menu-item {
    font-size: .8rem;
  }
  .product-contain {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 15px;
  }
  .home-about-left, .home-about-right {
    width: 100%;
    margin-bottom: 10px;
  }
  .archive-mb-respon {
    width: 50%;
  }
  .about1-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .about1-item-number {
    padding: 40px 0;
  }
  .about2-contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-contain {
    gap: 15px;
  }
  .project-tab {
    margin-bottom: 10px;
  }
  .header-logo {
    max-height: 30px;
  }
  .home-about {
    flex-wrap: wrap;
    padding: 30px 10px;
  }
  .home-sv-box {
    width: 100%;
    margin-bottom: 10px;
  }
  .home-iframe {
    height: 380px;
  }
  .home-visit-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .home-visit-right, .sotay-right {
    width: 100%;
  }
  .nghe-title {
    font-size: .9rem;
    padding: 5px 8px;
  }
  .home-title1 {
    font-size: 1.1rem;
  }
  .home-title2 {
    font-size: 1.15rem;
  }
  .product-name {
    font-size: 1rem;
  }
  .foot-m-icon {
    max-width: 36px;
  }
  .footer-title {
    font-size: 1rem;
  }
  .footer {
    font-size: .9rem;
  }
  .dac-quyen-left, .cauhoi-left, .sotay-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .dac-quyen-right, .ctdt-gt-left, .ts2-left, .ts2-right, .ctdt-gt-right, .cauhoi-right {
    width: 100%;
  }
  .nophs-contain, .daingo-contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cong-ttdt-box, .gt6-left, .gt6-left, .gioi-thieu1-left, .gt2-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .video-contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .digital-tbao-box, .gt7-box, .gt6-right, .gioi-thieu1-right, .gt2-right {
    width: 100%;
  }
  .camnhan-contain {
    align-items: start;
  }
  .camnhan-left {
    width: 30%;
  }
  .camnhan-right {
    width: calc(70% - 20px);
  }
  .gt3-left {
    width: 100%;
    order: 2;
  }
  .gt3-right {
    width: 100%;
  }
  .ts2-left {
    padding: 40px 0;
  }
  .ts3, .ts4 {
    background-image: unset;
  }
}

@media only screen and (max-width:640px) {
  .menu-item:not(:last-child) {
    margin-right: 5px;
  }
  .header-logo {
    max-width: 100px; 
  }
  .product-contain, .hocbong-contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .home-service-group1 {
    width: 100%; 
    order: 2;
  }
  .home-service-group2 {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
  .slick-news .slick-slide {
    padding: 0 10px;
  }
  .about1-item-number {
    padding: 24px 0;
  }
  .news-contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-sec1-box {
    width: 50%;
    margin-bottom: 20px;
  }
  .hidden-600 {
    display: none;
  }
  .hidden-pc {
    display: block;
  }
  .chvl-box, .lhe-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .lhe-right {
    width: 100%;
  }
  .nophs-contain {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .dtnh-left {
    width: 100%;
    order: 1;
    margin-bottom: 15px;
  }
  .dtnh-right {
    width: 100%;
    order: 2;
  }
  .dktt-span-radio {
    left: 20px;
  }
  .dktt-date-inp {
    width: 100%;
  }
  .dktt-title {
    font-size: 1rem;
  }
  .dktt-wrapper {
    padding: 10px;
  }
  .dktt-form-width {
    max-width: 100%;
  }
  .dktt-diem-item {
    width: 40%;
    margin: 0 10px;
    margin-bottom: 10px;
  }
  .digital-archive-contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 20px;
  }
  .digital-dky-box {
    width: 100%;
    padding: 20px 0;
  }
  .digital-dky-bor {
    border: none;
    border-bottom: 2px solid black;
  }
  .slick-sv .slick-slide {
    padding: 0;
  }
  .ts3-contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-description img {
    width: 100%;
    height: auto;
  }
}
.popup .el-dialog {
  background: unset;
  box-shadow: unset;
}
.popup .el-dialog .el-dialog__header {
  display: none;
}
.slick-video {
  padding-top: 55%;
  position: relative; 
  overflow: hidden;
  max-width: 100%;
}
.slick-video iframe {
  position: absolute;
  top: 0px;
}
@media only screen and (max-width:500px) {
  .hidden-mb {
    display: none;
  }
  .main {
    padding-top: 43px;
  }
  .archive-mb-respon {
    width: 100%;
  }
  .product-contain, .hocbong-contain, .video-contain {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }
  .home-vote {
    background: #102659;
    color: white;
  }
  .mb-white {
    color: white;
  }
  .vote-left, .vote-right {
    width: 100%;
  }
  .footer-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .foot-mb-logo {
    max-width: 200px;
  }
  .mb-center {
    text-align: center;
    margin-bottom: 20px;
  }
  .breadcrum-title {
    font-size: 1.25rem;
  }
  .breadcrum-bg {
    min-height: 200px;
  }
  .about1-item-number {
    padding: 15px 0;
    font-size: 1.25rem;
  }
  .home-title {
    font-size: 1.1rem;
  }
  .home-title-line {
    width: 40px;
  }
  .about2-contain {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .accor-title-icon {
    right: -10px;
  }
  .accor-title-text {
    font-size: .8rem;
  }
  .about1-title {
    font-size: 1.2rem;
  }
  .about1-title2 {
    font-size: 1rem;
  }
  .about1-item-desc {
    font-size: .9rem;
  }
  .news-contain, .daingo-contain {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .contact-sec1-box {
    font-size: .9rem;
  }
  .contact-sec1-title {
    font-size: 1rem;
  }
  .contact-sec2-title {
    font-size: 1.25rem;
  }
  .d-50 {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-mb-marbot, .form-marbot {
    margin-bottom: 20px;
  }
  .edu-mobile-menu-icon-size {
    font-size: 1.5rem;
  }
  .home-title1 {
    font-size: .9rem;
  }
  .home-title2 {
    font-size: 1.05rem;
  }
  .home-about-icon {
    width: 22%;
    margin-right: 10px;
  }
  .news-name {
    font-size: 1rem;
  }
  .footer-box1, .ctdt-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-box2 {
    width: 45%;
  }
  .home-iframe {
    height: 220px;
  }
  .mb-mar-bot-10 {
    margin-bottom: 10px !important;
  }
  .dq-btn, .nophs-dky {
    font-size: .9rem;
  }
  .nophs-box::after {
    width:90px;
    height:100px;
  }
  .sotay-box {
    padding: 20px;
  }
  .cauhoi-box {
    padding-right: 40px;
  }
  .kent-map {
    height: 240px !important;
  }
  .lhe-banner {
    font-size: 1rem;
    padding: 40px 0;
  }
  .dtnh-name {
    font-size: 1rem;
  }
  .dtnh-btn {
    padding: 2px 20px;
  }
  .hocbong {
    background-size: cover;
  }
  .ctdt-wrapper {
    padding: 20px 8px;
  }
  .ctdt-tab-contain {
    padding: 0;
    gap: 10px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ctdt-gt-right {
    padding: 10px 14px;
    border-radius: 0 0 8px 8px;
  }
  .ctdt-btn {
    font-size: .9rem;
    padding: 4px 10px;
  }
  .ctdt-tab {
    font-size: .8rem;
  }
  .dktt-left, .camnhan-left {
    width: 100%;
    margin-bottom: 5px;
  }
  .dktt-right {
    width: 100%;
  }
  .dktt-diem-item {
    width: 100%;
  }
  .dktt-table {
    font-size: .8rem;
  }
  .digital-tbao-item {
    padding: 10px;
    font-size: .8rem;
  }
  .digital-choose-wrapper {
    padding: 10px 8px;
  }
  .digital-choose-title, .td-title, .gioi-thieu1-title {
    font-size: 1.25rem;
  }
  .camnhan-right {
    width: 100%;
    padding: 10px;
  }
  .gioi-thieu1-left {
    padding: 10px 14px;
  }
  .gioi-thieu1-btn {
    font-size: 1rem;
  }
  .gt2-wrapper {
    padding: 10px;
  }
  .ts2-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ts3-contain {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px 0;
  }
  .ts3-img-div {
    left: 0;
  }
  .ts4-none {
    display:none;
  }
  .ts4-box1 {
    width: 100%;
    order: 2;
  }
  .ts4-box2 {
    width: 100%;
    order: 1;
    margin-bottom: 10px;
  }
  .ts4-contain:not(:last-child)::after {
    content: none;
  }
  .ts4-contain:not(:last-child) {
    margin-bottom: 20px;
  }
  .ts4-title {
    font-size: 1.25rem;
  }
  .home-gv .product-img-div {
    width: 125px;
    height: 125px;
  }
  .detail-description img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width:320px) {
  .home-gv .product-img-div {
    width: 90px;
    height: 90px;
  }
}