﻿@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;*/
body.dark header.custom {
  background: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
body.dark header.custom .nav-panel .logo .title p {
  color: #fff;
}
body.dark header.custom .nav-panel .menu .item a, body.dark header.custom .nav-panel .menu .item i, body.dark header.custom .nav-panel .menu .item .dropdown-toggle::after, body.dark header.custom .nav-panel .menu .item .dropdown-toggle > span {
  color: #fff;
}
body.dark header.custom:hover {
  background: #142C46;
}
body.dark header.custom:hover .nav-panel .logo .title p {
  color: #fff;
}
body.dark header.custom:hover .nav-panel .menu .item a, body.dark header.custom:hover .nav-panel .menu .item i, body.dark header.custom:hover .nav-panel .menu .item .dropdown-toggle::after, body.dark header.custom:hover .nav-panel .menu .item .dropdown-toggle > span {
  color: #fff;
}

header.custom {
  background: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
header.custom .nav-lg .nav-panel .logo .title p {
  color: #fff;
}
header.custom .nav-lg .nav-panel .menu .item a, header.custom .nav-lg .nav-panel .menu .item i, header.custom .nav-lg .nav-panel .menu .item .dropdown-toggle::after, header.custom .nav-lg .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-lg .nav-panel .logo .title p {
  color: #2c3542;
}
header.custom:hover .nav-lg .nav-panel .menu .item a, header.custom:hover .nav-lg .nav-panel .menu .item i, header.custom:hover .nav-lg .nav-panel .menu .item .dropdown-toggle::after, header.custom:hover .nav-lg .nav-panel .menu .item .dropdown-toggle > span {
  color: #2c3542;
}
header .nav-lg .nav-panel .logo .title.home {
  display: block !important;
}
header .nav-lg .nav-panel .logo .title.page {
  display: none;
}

.page-body {
  padding-bottom: 80px;
}

.section-banner {
  margin-top: -90px;
  padding-top: 25vh;
  min-height: 120vh;
  width: 100%;
  background-image: url("../../images/banner/2454274.jpg");
  background-size: cover;
  background-position: center center;
  position: relative;
  animation: none;
}
.section-banner:before {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.section-banner .banner-title {
  transition: ease-in-out all;
  animation: opacitymove 3s;
  text-align: center;
  position: relative;
  padding: 30px;
  width: fit-content;
  margin: auto;
  margin-bottom: 65px;
}
.section-banner .banner-title h1 {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.section-banner .banner-title p {
  display: block;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-banner .banner-title:after {
  content: "";
  width: 30%;
  height: 3px;
  background: #fff;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 35%;
  display: none;
}
.section-banner .banner-title:before {
  content: "";
  width: 30%;
  height: 3px;
  border-radius: 10px;
  background: #1A52CD;
  position: absolute;
  bottom: 0;
  left: 35%;
  animation: translateLoad infinite;
  display: none;
}
.section-banner .banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: ease-in-out all;
  animation: opacitymoveup 3s;
  border-radius: 7px;
  margin-bottom: 65px;
}
.section-banner .banner-item:after {
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.9px);
  border: 1px solid rgba(255, 255, 255, 0.37);
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  transform: rotateX(63deg) rotateZ(45deg);
  transform-style: preserve-3d;
  border-radius: 32px;
  box-shadow: 1px 1px 0 1px #f9f9fb, -1px 0 28px 0 rgba(34, 33, 81, 0.01), 28px 28px 28px 0 rgba(34, 33, 81, 0.25);
  transition: 0.4s ease-in-out transform, 0.4s ease-in-out box-shadow;
}
.section-banner .banner-item img {
  height: 120px;
  width: auto;
  z-index: 1;
  transform: translateY(-50px);
  transition: 0.4s ease-in-out all;
}
.section-banner .banner-item p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-top: -20px;
  text-align: center;
}
.section-banner .banner-item:hover {
  cursor: pointer;
}
.section-banner .banner-item:hover:after {
  background: rgba(255, 255, 255, 0.7);
}
.section-banner .banner-item:hover img {
  transform: translateY(-70px) scale(1.2);
}

.section-sector {
  padding: 50px 0;
}
.section-sector .sector-left {
  background: #677da3;
  background-image: url("../../images/banner/25552.jpg");
  background-position: right bottom;
  background-size: cover;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  animation: translateXmove 3s;
}
.section-sector .sector-left p {
  color: #bdd4ff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.section-sector .sector-right .row {
  row-gap: 10px;
}
.section-sector .sector-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  background: aliceblue;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  animation: opacitymoveup 3s;
}
.section-sector .sector-item img {
  height: 80px;
  width: auto;
  transition: ease-in-out all 0.5s;
}
.section-sector .sector-item p {
  font-size: 1.2rem;
  text-align: left;
  font-weight: 600;
  transition: ease-in-out all;
  margin: 0;
  margin-left: 20px;
  color: #2c3542;
}
.section-sector .sector-item:hover {
  cursor: pointer;
  outline: solid 1px #1A52CD;
}
.section-sector .sector-item:hover img {
  transform: scale(1.2);
}

.section-local {
  padding: 20px 0;
  background: aliceblue;
}
.section-local .local-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1A52CD;
  margin: 30px 0;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  padding: 5px 10px;
}
.section-local .local-title:before {
  content: "";
  height: 3rem;
  width: 3rem;
  display: block;
  position: absolute;
  border-radius: 50%;
  background: antiquewhite;
  z-index: -1;
  top: -5px;
  left: -5px;
  animation: opacitymove 2s;
}
.section-local .local-wrapper .local-item {
  height: 200px;
  border-radius: 10px;
  /*background-image: url('../../images/banner/banner3.jpg');
  background-size: cover;*/
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: flex-end;
  animation: opacitymoveup 3s;
}
.section-local .local-wrapper .local-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 90%;
  width: 100%;
  border-radius: 0 0 10px 10px;
  transition: ease-in-out all;
  background: linear-gradient(to top, rgb(0, 64, 133) 0%, rgba(9, 9, 121, 0) 100%);
}
.section-local .local-wrapper .local-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.section-local .local-wrapper .local-item .d-flex {
  padding: 0 15px 20px 15px;
  transition: ease-in-out all 0.5s;
  z-index: 2;
}
.section-local .local-wrapper .local-item p {
  text-align: left;
  position: relative;
  margin: 0;
  color: #fff;
}
.section-local .local-wrapper .local-item p:first-child {
  font-size: 2.2rem;
  font-weight: 600;
  transition: ease-in-out all 0.5s;
}
.section-local .local-wrapper .local-item:hover:after {
  background: linear-gradient(to top, rgb(0, 64, 133) 0%, rgba(0, 64, 133, 0.4) 85%, rgba(9, 9, 121, 0) 100%);
}
.section-local .local-wrapper .local-item:hover p:first-child {
  font-size: 2.8rem;
}

.section-data {
  padding-top: 50px;
}
.section-data .data-wrapper {
  height: 300px;
  width: 100%;
  background-image: url("../../images/banner/group 5.png");
  background-size: cover;
  background-position: right center;
  position: relative;
  border-radius: 20px;
  padding: 30px;
  animation: translateYmoveup 3s;
}
.section-data .data-wrapper:hover {
  animation: shrink2 10s ease-in-out;
}
.section-data .data-wrapper p {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.section-data .data-wrapper .data-stat {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 5px;
  border-radius: 5px;
}
.section-data .data-wrapper .data-stat span {
  display: block;
  font-size: 2rem;
  color: #fff;
}
.section-data .data-wrapper .data-stat span:last-child {
  font-weight: 700;
  margin-left: 20px;
}

@media only screen and (min-width: 768px) {
  .section-banner {
    background-size: 100%;
    animation: shrink 30s infinite alternate;
    padding-top: 30vh;
  }
  .section-banner .banner-title h1 {
    font-size: 3.6rem;
  }
  .section-banner .banner-title p {
    display: none;
  }
  .section-banner .banner-item:after {
    width: 23vh;
    height: 23vh;
  }
  .section-banner .banner-item img {
    height: 23vh;
  }
  .section-banner .banner-item p {
    font-size: 1.2rem;
  }
  .section-sector .sector-left p {
    font-size: 3rem;
    text-align: left;
  }
  .section-sector .sector-item {
    flex-direction: column;
  }
  .section-sector .sector-item img {
    height: 120px;
  }
  .section-sector .sector-item p {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 10px;
    margin-left: 0;
  }
  .section-local .local-wrapper .local-item {
    height: 350px;
  }
}
