* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2a2c30;
  --second-color: #fff;
  --third-color: #10954b;
  --four-color: #0446a4;
  --five-color: #d1d1d1;
  --six-color: #f5f5f7;
  --seven-color: #008141;
  --eight-color: #045ada;
}

.adm-glyphicon span {
  background: url("./img/setting.png");
  background-size: cover;
  width: 12px;
  height: 12px;
  display: block;
  float: left;
}

body {
  font-family: "Roboto", serif;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  color: var(--primary-color);
}

ul,
li,
ol {
  list-style: none;
  margin: 0;
}

a {
  color: var(--primary-color);
  transition: all 0.2s linear;
}

a:hover {
  color: var(--third-color);
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.img-100 {
  position: relative;
  height: 0;
  overflow: hidden;
  display: block;
}

.img-100 > img {
  object-fit: cover;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
}

.wrap-img {
  padding-bottom: 100%;
}

input {
  border: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

button {
  border: none;
  border-radius: 0;
}

.wrap {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
}

.mbb {
  display: none !important;
}

.pcc {
  display: block !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.border-b {
  border-bottom: 1px solid var(--five-color);
}

.d-none {
  display: none !important;
}

.header {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 0.2rem 0.2rem rgba(0, 0, 0, 0.12));
  transition: all 0.2s linear;
  border-bottom: 4px solid #9f9f9f;
  position: relative;
  z-index: 9999;
}

.header.home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.header.affix {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.2s linear;
  background-color: #c9ddfe;
  border: none;
}
/* 
.header.affix.home {
  background-color: var(--second-color);
} */

.header.affix .header-top {
  display: none !important;
}

.header-top {
  padding-top: 5px;
  text-align: right;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.header-top span {
  display: inline-block !important;
}

.logo-header img {
  max-height: 100px;
}

.header.affix .logo-header img {
  max-height: 65px;
}

.btn-global svg {
  /* margin-bottom: -10px; */
}

.header-bottom {
  padding-top: 24px;
}

.menu li.menu-header-item:last-child > a {
  margin-right: 0;
  padding-right: 0;
}

.menu li.menu-header-item.active > a {
  color: var(--four-color);
}

.menu li.menu-header-item.home svg {
  color: var(--four-color);
}

.menu {
  display: flex;
  justify-content: end;
}

.menu li {
  display: inline-block;
}

.menu li,
.menu-footer li {
  float: left;
  position: relative;
}

.menu li a,
.menu-footer li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 22px;
  padding-right: 35px;
  margin-right: 35px;
  font-weight: 700;
}

.menu li a:hover {
  color: var(--four-color);
}

.menu li.menu-header-item > a::after,
.menu-footer li a::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 3px;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
}

.menu li.menu-header-item:last-child > a::after,
.menu-footer li:last-child a::after {
  display: none;
}

/* ----------------------menu-mobile---------------------------- */
.menu-mobile {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: var(--second-color);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  z-index: 9999;
}

.menu-mobile .menu-mobile-item {
  position: relative;
  margin-bottom: 0;
}

.menu-mobile .menu-mobile-item.header-search-box {
  margin-bottom: 10px;
}

.menu-mobile .menu-mobile-item a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 20px;
  font-size: 14px;
  text-transform: uppercase;
}

.menu-mobile .menu-mobile-item.active svg {
  color: var(--second-color);
}

.menu-mobile .menu-mobile-item.active > a {
  background-color: var(--four-color);
  color: var(--second-color);
}

.menu-mobile span {
  width: 60px;
  height: 40px;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  text-align: center;
  z-index: 999;
}

.menu-mobile .menu-m-child {
  padding-left: 8px;
}

.menu-child-item {
  width: 100%;
  float: none !important;
}

.menu-mobile .menu-child-item a {
  font-size: 11px;
  border: none;
}

.header-search-box input {
  height: 28px;
  margin-left: 0;
  display: inline-block;
  padding: 8px 100px 8px 15px;
  width: 100%;
  border: none;
}

.header-search-box {
  position: relative;
  margin: 10px 20px;
  border: 1px solid var(--four-color);
}

.header-search-box #searchsubmit {
  position: absolute;
  right: -1px;
  border: 1px solid var(--four-color);
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  width: auto;
  padding: 0 20px;
  height: 30px;
  border-radius: 2px;
  background-color: var(--four-color);
  color: var(--second-color);
}

.header .menu-child::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  background: none;
  width: 100%;
  height: 30px;
}

.header .menu-child {
  position: absolute;
  top: 100%;
  margin-top: 20px;
  left: 0;
  min-width: 10em;
  background-color: var(--second-color);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: all 0.2s ease-in;
}

.header .menu-child .menu-child-item.active a {
  background-color: var(--four-color);
  color: var(--second-color);
}

.header .menu-header-item:hover .menu-child {
  opacity: 1;
  visibility: visible;
}

.header .menu-header-item > a svg {
  margin-left: 8px;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.header .menu-child-item a {
  display: block;
  font-size: 13px;
  line-height: 20px;
  margin-right: 0;
  text-transform: uppercase;
  text-align: left;
  transition: all 0.2s ease-in;
  padding: 13px 20px;
  border-top: 1px solid #f3f3f3;
  white-space: nowrap;
}

.header .menu-child-item:first-child a {
  border-top: none;
}

.header .menu-child-item a:hover {
  background-color: var(--four-color);
  color: var(--second-color);
}

.header-home a {
  height: 22px;
}

.header-home svg {
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  transition: all 0.2s linear;
}

.header-home a:hover svg {
  color: var(--four-color);
}

/* -------------------------------------------banner------------------------------------------- */
.banner {
}

.banner-img .wrap-img {
  padding-bottom: 34.65%;
}

.banner-owl .owl-dots {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
}

.banner-owl .owl-dots button {
  width: 44px;
  height: 10px;
  background-color: var(--second-color);
  margin-right: 15px;
}

.banner-owl .owl-dots button:last-child {
  margin-right: 0;
}

.banner-owl .owl-dots button:hover {
  background-color: #004499;
}

.banner-owl .owl-dots button.active {
  background-color: #004499;
}

.toiuu .owl-carousel {
  display: block;
}

.toiuu .owl-carousel .banner-img {
  display: none;
}

.toiuu .owl-carousel .banner-img:first-child {
  display: block !important;
}

/* ---------------------------------------------------home-------------------------------------- */
.home-about {
  padding: 50px 0;
}

.title-main {
  margin-bottom: 30px;
}

.title-main h2 {
  font-size: 38px;
  line-height: 42px;
  color: var(--four-color);
  font-weight: 700;
}

.title-main p {
  font-size: 18px;
  font-weight: 500;
}

.home-bg {
  background-color: #dde6fd;
  float: left;
  width: 100%;
  padding: 30px;
}

.home-about .col-cus {
  padding: 0 30px;
}

.about-item {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 30px 30px 25px;
  display: flex;
  align-items: end;
  justify-content: center;
  height: 334px;
  overflow: hidden;
  transition: all 0.2s linear;
}

.about-item:hover .about-img img {
  transform: scale(1.05);
}

.about-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.about-img img {
  width: 100%;
  transition: all 0.2s linear;
  height: 100%;
}

.about-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #292929 100%);
}

.about-title {
  position: relative;
  z-index: 9;

  color: var(--second-color);
}

.about-item h3 {
  /* font-family: ""; */
  font-size: 21px;
  line-height: 26px;
  color: var(--second-color);
  /* margin-bottom: 25px; */
  text-align: center;
  font-weight: 500;
}

.about-item p {
  font-size: 14px;
  line-height: 22px;
  color: var(--second-color);
  font-weight: 500;
}

/* -----------------------------------------home-news-------------------------------- */
.home-news {
  padding-bottom: 20px;
  overflow: hidden;
}

.title-main h2 {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid var(--four-color);
}

.title-wrap {
  margin-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.home-news .title-main-2 h2 {
  font-size: 110px;
  line-height: normal;
}

.home-news .row-cus {
  margin: 0 -40px;
}

.home-news .col-cus,
.home-news .col-cus-12 {
  padding: 0 40px;
}

.home-news .home-link.wrap-img {
  padding-bottom: 88.8%;
}

.home-news .home-link a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-item-home {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.news-item-home::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  border-radius: 20px;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(63, 55, 49, 0.9) 0%,
    rgba(63, 55, 49, 0) 100%
  );
  transition: all 0.3s linear;
}

.news-item-home .news-img .wrap-img {
  padding-bottom: 88.8%;
}

.news-item-home .news-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  z-index: 9;
}

/* .home-news .news-item-home .news-title {
  min-height: 182px;
} */

.news-item-home:hover::after {
  background: linear-gradient(
    0deg,
    rgba(63, 55, 49, 1) 0%,
    rgba(63, 55, 49, 0) 100%
  );
}

.news-item-home .news-title h3 {
  font-size: 16px;
  text-align: center;
  line-height: 22px;
  font-weight: 700;
}

/* .news-item-home .news-title h3:hover a {
  color: var(--third-color);
} */

.news-item-home .news-title h3 a {
  color: var(--second-color);
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; */
}

.home-link {
  text-align: right;
}

.home-link a {
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--second-color);
  display: inline-block;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--four-color);
}

.home-link a svg {
  margin-bottom: 2px;
  margin-left: 4px;
}

.home-link a:hover {
  background-color: var(--third-color);
}

/* ---------------------------------------------home-activity-------------------------------------- */
.home-activity {
  overflow: hidden;
  padding-bottom: 30px;
}

.home-activity .row-cus {
  margin: 0 -24px;
}

.home-activity .col-cus-12 {
  padding: 0 24px;
}

.home-activity .col-cus {
  width: calc(100% / 5);
  padding: 0 24px;
}

.home-activity .news-title {
  text-align: center;
  /* top: 50%;
  transform: translateY(-50%);
  bottom: auto; */
}

.home-activity .wrap-img {
  padding-bottom: 87.78%;
}

/* ------------------------------------------home-resource-------------------------------------------- */
.home-resource .col-cus {
  width: 25%;
}

.home-resource .news-title {
  /* top: 50%;
  transform: translateY(-50%);
  bottom: auto; */
}

.home-resource .news-title h3 {
  font-size: 18px;
  line-height: 22px;
}

/* ------------------------------------------home-partner-------------------------------------------- */
.home-partner {
}

.part-item {
  position: relative;
  height: 138px;
  border-radius: 20px;
  border: 1px solid #cccccc;
  margin-bottom: 20px;
}

.part-item img {
  position: absolute;
  top: 50%;
  padding: 0 20px;
  max-height: 100%;
  width: auto !important;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home-partner .row-cus {
  margin: 0 -18px;
}

.home-partner .col-cus-2,
.home-partner .col-cus-12 {
  padding: 0 18px;
}

.home-partner .home-link {
  margin-top: 30px;
}

/* --------------------------------------footer-top-------------------------------------- */
.footer-top {
  padding: 18px 0;
  background-color: #044698;
}

.menu-footer li a {
  font-size: 16px;
  line-height: 22px;
  color: var(--second-color);
  text-transform: capitalize;
}

.menu-footer li a::after {
  background-color: var(--second-color);
}

.logo-footer img {
  max-width: 250px;
}

.logo-footer {
  height: 143.7px;
  display: flex;
  align-items: center;
}

/* ---------------------------------------footer-bottom--------------------------------------- */
.footer-bottom {
  background-color: #c9ddfe;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #83a4cf;
}

.footer-info {
  margin-top: 20px;
}

.footer-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-info li svg {
  width: 28px;
  margin-right: 10px;
  color: var(--four-color);
}

.footer-info li a {
  font-weight: 700;
  width: calc(100% - 28px);
}

.footer-title {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

.footer-title h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: var(--four-color);
  margin-bottom: 20px;
}

.socials li {
  display: inline-block;
  margin-right: 5px;
}

.socials li svg {
  color: var(--primary-color);
}

.logo-footer-2 {
  text-align: center;
  height: 143.7px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.logo-footer-2 img {
  margin-bottom: 10px;
}

.logo-footer-2 a {
  color: var(--second-color);
  font-size: 16px;
}

.logo-footer-2 p {
  font-size: 16px;
}

/* ----------------------breadcrumbs-------------------- */

.breadcumb-page {
  padding: 30px 0;
  background-color: var(--second-color);
}

.breadcumb-page .direction {
  width: 100%;
}

.breadcumb-page .direction ol {
  display: flex;
  align-items: center;
}

.breadcumb-page .direction a,
.breadcumb-page .direction span {
  color: var(--primary-color);
  transition: all 0.2s linear;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
}

.breadcumb-page .direction a:hover span {
  color: var(--four-color);
}

.breadcumb-page li {
  margin-right: 25px;
}

.breadcumb-page li:last-child {
  pointer-events: none;
  margin-right: 0;
}

.breadcumb-page li:last-child a,
.breadcumb-page li:last-child span {
  /* text-transform: none; */
  color: var(--four-color);
}

.breadcumb-page li:first-child a {
  padding: 5px 40px;
  background-color: var(--four-color);
  border: 1px solid var(--primary-color);
}

.breadcumb-page li:first-child a span {
  color: var(--second-color);
}

.breadcumb-page li:first-child a:hover span {
  color: var(--second-color);
}

.breadcumb-page-detail .direction li:first-child a span {
  color: var(--second-color);
}

.breadcumb-page-detail .direction li a span {
  color: var(--four-color);
}

.breadcumb-page-detail .direction li:last-child {
  display: none;
}

/* -----------------------------------------------news-list------------------------------------------- */
.news-page .col-cus {
  padding: 0 25px;
}

.news-page .row-cus {
  margin: 0 -25px;
}

.news-page .news-item-home .news-title {
  /* bottom: 20px; */
}

.news-page .news-item-home .news-title h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}

.news-page .news-item-home .news-title h3 a {
  color: var(--second-color);
}

.news-page .news-item-home .news-title h3:hover a {
  color: var(--third-color);
}

.news-list-2 .news-item-home .news-title h3 {
  text-align: left;
}

/* -----------------------------------------------sidebar------------------------------------------- */
.sidebar-title h3 {
  font-size: 24px;
  line-height: 28px;
  padding-bottom: 8px;
  font-weight: 700;
  border-bottom: 2px solid var(--four-color);
  margin-bottom: 25px;
  display: inline-block;
}

.sidebar-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-video img {
  width: 100%;
}

.sidebar-video button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
}

.sidebar-video button svg {
  color: #ff0101;
}

.sidebar-img {
  margin-bottom: 20px;
}

.sidebar-img img {
  width: 100%;
}

.sidebar-partner img {
  width: 50%;
  float: left;
  padding: 10px;
}

/* ------------------modal-video----------------------------- */
#video-modal .modal-dialog {
  width: 900px !important;
  top: 10%;
}

#video-modal iframe {
  width: 900px !important;
  height: 560px !important;
  border: none;
}

#video-modal .video-close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 12px;
  width: 35px;
  height: 35px;
  background-color: var(--four-color);
  transition: opacity 0.3s linear 1s, top 0.3s linear 1s,
    background-color 0.3s linear;
  cursor: pointer;
  box-shadow: 1px 1px 10px 2px rgba(243, 243, 243, 0.2);
  -webkit-box-shadow: 1px 1px 10px 2px rgba(243, 243, 243, 0.2);
}

#video-modal .video-close svg {
  color: var(--second-color);
}

#video-modal .video-close:hover {
  background-color: var(--primary-color);
}

/* ----------------------------------------news-detail--------------------------------------- */
.news-detail {
  padding-top: 15px;
  padding-bottom: 45px;
}

#content {
  font-weight: 500;
  /* text-align: justify; */
  word-wrap: break-word;
}

#content h2 {
  font-size: 32px;
  line-height: 34px;
  margin-bottom: 30px;
}

#content h3 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
}

#content h4 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}

#content h5 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}

#content h6 {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 20px;
}

#content p,
#content span,
#content li {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif !important;
}

#content ul,
#content ol {
  padding-left: 20px;
  margin-left: 20px;
}

#content ul li {
  list-style: disc;
}

#content ol li {
  list-style: decimal;
}

/* #content img {
  margin-bottom: 20px;
} */

.news-related {
  padding-bottom: 150px;
}

/* -------------------------------------------news-list-2-------------------------------------- */
.news-list-2 {
}

.news-list-2 .home-link {
  margin-top: 50px;
}

.news-main-img {
  margin-bottom: 30px;
}

.news-main-img .wrap-img {
  padding-bottom: 63.25%;
}

.news-main-title {
  max-height: 400px;
  overflow: hidden;
}

.news-main-title h3 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-main-title h3:hover a {
  color: var(--third-color);
}

.news-main-title h3 a {
  color: var(--four-color);
}

.news-main-des {
  /* text-align: justify; */
  margin-bottom: 30px;
  /* display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden; */
}

.news-main-des p {
  font-size: 16px;
  line-height: 20px;
  font-family: "Poppins", sans-serif !important;
}

.news-main-des span {
  font-family: "Poppins", sans-serif !important;
}

.news-item-2 {
  border-radius: 0;
  margin-bottom: 30px;
}

.news-item-2::after {
  display: none;
}

.news-item-2 .news-img .wrap-img {
  padding-bottom: 66.55%;
}

.news-item-2 .news-title {
  position: unset;
  padding: 10px 0 0;
}

.news-item-2 .news-title h3 {
  font-size: 24px;
  line-height: 28px;
  color: var(--four-color);
  font-weight: 500;
}

.news-item-2 .news-title h3 a {
  color: var(--four-color) !important ;
}

.news-item-2 .news-title h3:hover a {
  color: var(--third-color) !important;
}

.duan-tab {
  display: flex;
  margin-bottom: 37px;
}

.duan-tab .tab-item {
  margin-left: 16px;
}

.duan-tab .tab-item:first-child {
  margin-left: 0;
}

.duan-tab .tab-item a {
  padding: 10px 25px;
  color: #089745;
  transition: all 0.2s linear;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  height: 40px;
  border-radius: 10px;
  letter-spacing: -0.022em;
}

.duan-tab .tab-item.active a,
.duan-tab .tab-item a:hover {
  background-color: #089745;
  color: var(--second-color);
}

/* -------------------------------------------resource-------------------------------------- */
.resource-wrap {
  border: 1px solid #e3e3e3;
  padding: 20px;
}

.resource-img {
  margin-bottom: 20px;
}

.resource-img.wrap-img {
  padding-bottom: 142.76%;
}

.btn-down {
  display: inline-block;
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  background-color: #adcdfe;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--four-color);
}

.resource-title {
  margin-bottom: 40px;
}

.resource-title h2 {
  color: var(--four-color);
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
}

.resource-content {
  font-weight: 500;
}

.resource-content p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

/* --------------------------------------------------contact------------------------------------------------ */
.map-wrap {
  padding: 30px 0;
  border-top: 1px solid #eaeaea;
}

.map-wrap iframe {
  width: 100% !important;
  height: 450px !important;
}

.contact-info {
  padding-bottom: 20px;
  min-height: 396px;
}

/* ----------------------------------------------------------faq------------------------------------------------- */
.faq-page {
  padding-bottom: 120px;
}

.faq-title p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.faq-title h2 {
  font-weight: 500;
}

.faq-title {
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
}

.faq-list > li {
  margin-bottom: 0;
}

.faq-list > li a {
  position: relative;
  display: block;
  padding: 15px 10px 15px 0;
  font-size: 22px;
  line-height: 26px;
  color: #285baa;
  font-weight: 600;
  border-bottom: 1px solid #e1e1e1;
  transition: 0.3s linear;
}

.ss9-colap-content {
  padding: 20px 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}

.ss9-colap-content p {
  margin-bottom: 10px;
  font-size: 18px;
}

.ss9-colap-content > div {
  padding: 0 30px 30px;
}

.ss9-colap-content ul {
  padding-left: 20px;
}

.ss9-colap-content ul,
.ss9-colap-content li {
  margin-bottom: 20px;
  list-style: disc;
}

.ss9-colap-content li {
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-link {
  margin-top: 30px;
}

.faq-link a {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: var(--four-color);
}

/* ---------------------------------------resource-list------------------------------------ */
.resource-list {
  padding-bottom: 100px;
}

.resource-search {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
}

.form-group-search {
  position: relative;
  margin-bottom: 30px;
}

.form-group-search input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #b8c9e5;
  background-color: #adcdfe;
  padding: 10px 10px 10px 40px;
  font-size: 18px;
  line-height: 24px;
  color: var(--four-color);
}

.form-group-search button {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
}

.form-group-search input::placeholder {
  color: var(--four-color);
  opacity: 0.5;
  font-weight: 500;
}

.form-group-search button svg {
  color: var(--four-color);
}

.resource-search label {
  display: flex;
  align-items: center;
}

.resource-search span {
  margin-left: 10px;
  font-size: 18px;
  line-height: 24px;
  color: var(--four-color);
}

.resource-search .check-input {
  width: 23px;
  height: 23px;
  margin-top: 0;
}

.resource-search .form-group {
  margin-bottom: 24px;
}

.time-list li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.time-list li:last-child {
  font-size: 16px;
  font-weight: 500;
}

.btn-custome a {
  color: #e79695;
}

.resource-time,
.resource-lang {
  margin-top: 30px;
  padding-top: 30px;
  display: inline-block;
  border-top: 1px solid #e3e3e3;
}

.form-custom-time {
  text-align: center;
}

.time-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.time-wrap input {
  width: 48px;
  height: 24px;
  border: 1px solid #e3e3e3;
  padding: 5px;
  font-weight: 500;
}

.time-wrap span {
  margin: 0 10px;
}

.btn-s {
  font-weight: 500;
  height: 30px;
  width: 70px;
  border: 1px solid #e3e3e3;
}

.lang-title {
  margin-bottom: 10px;
}

.time-title {
  margin-bottom: 10px;
}

.lang-title h2,
.time-title h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.lang-form label {
  display: block;
}

.lang-form label {
  padding-left: 20px;
  margin-bottom: 20px;
}

.lang-form label span {
  margin-left: 10px;
  font-size: 18px;
}

.form-radio label {
  display: inline-block;
}

.form-radio select {
  display: inline-block;
  width: 122px;
  height: 36px;
  border: 1px solid #e3e3e3;
  padding: 5px;
  margin-left: 10px;
}

.resource-item {
  padding: 20px;
  border: 1px solid #e3e3e3;
  margin-bottom: 20px;
}

.resource-item-img {
  padding: 0 20px;
  margin-bottom: 20px;
}

.resource-item-img .wrap-img {
  padding-bottom: 100%;
}

.resource-item-img .wrap-img img {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.resource-item-content h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 96px;
}

.resource-item-content h3 a {
  color: var(--four-color);
}

.resource-item-content h3:hover a {
  color: var(--third-color);
}

.resource-item-des {
  text-align: justify;
}

.resource-item-content p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  color: #4b4b4b;
  margin-bottom: 10px;
}

.resource-item-btn {
  margin-top: 20px;
  text-align: right;
  display: flex;
  justify-content: space-between;
}

.resource-item-btn a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #adcdfe;
  color: var(--four-color);
  font-weight: 500;
}

.resource-item-btn a:hover {
  background-color: var(--third-color);
  color: var(--second-color);
}

.pagination-box {
  margin-top: 40px;
  text-align: center;
}

.pagination-box div {
  font-size: 18px;
  margin: 0 10px;
  color: var(--eight-color);
  display: inline-block;
}

.pagination-box div a {
  color: var(--eight-color);
}

.pagination-box div a:hover {
  color: var(--third-color);
  font-weight: 700;
}

.pagination-box div.current a {
  color: var(--third-color);
  font-weight: 700;
}

.gioithieu-news {
  padding: 40px;
}

.gioithieu-news .news-item-home .news-title {
  bottom: 20px;
}

.gioithieu-news .news-item-home .news-title h3 {
  text-align: center;
  font-weight: 500;
}
.news-detail #content p,
.news-detail #content span,
.news-detail #content li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
}

.copyright {
  padding: 10px 0;
  background-color: #c9ddfe;
}

.copyright h3 {
  font-size: 22px;
  line-height: 26px;
  color: var(--four-color);
  font-style: italic;
  font-weight: 700;
}

.copyright p {
  font-size: 18px;
  line-height: 24px;
  color: var(--four-color);
  font-style: italic;
  text-align: right;
  font-weight: 700;
}

.btn-youtube {
  margin-left: 10px;
  margin-top: 10px;
}

.btn-youtube svg {
  margin-bottom: -8px;
}

.activities-list li a {
  padding: 15px 20px;
  font-size: 18px;
  background-color: var(--four-color);
  color: var(--second-color);
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
  border: 1px solid var(--four-color);
}

.activities-list li.active a {
  background-color: var(--second-color);
  color: var(--four-color);
}

.activities-list li a:hover {
  background-color: var(--second-color);
  color: var(--four-color);
}

.share-fb {
  display: inline-flex;
  border-radius: 5px;
  overflow: hidden;
  height: 35px;
  float: left;
  margin-right: 10px;
}

.share-fb a {
  color: var(--second-color);
}

.share-fb p {
  background-color: #0a7ad0;
  color: var(--second-color);
  padding: 5px 10px;
  line-height: 24px;
  font-weight: 500;
}

.btn-fb {
  display: flex;
  padding: 5px;
  background-color: var(--four-color);
  width: 30px;
  justify-content: center;
  align-items: center;
}

.btn-fb svg {
  color: var(--second-color);
}

.share-item {
  float: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  transition: all 0.2s linear;
  margin-right: 10px;
}

.share-item:hover {
  background-color: var(--third-color);
}

.share-item svg {
  color: var(--second-color);
}

.share-twitter {
  background-color: #58a9eb;
}

.share-zalo {
  background-color: #20a8f4;
}

.page-activities,
.map {
  padding-bottom: 100px;
}

.map {
  padding-bottom: 150px;
}

.resource-page {
  padding-bottom: 200px;
}

.hang-owl .owl-dots,
.hang-sidebar-owl .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.hang-owl .owl-dots button,
.hang-sidebar-owl .owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  margin-right: 10px;
  background-color: #d1d1d1;
}

.hang-owl .owl-dots button:last-child,
.hang-sidebar-owl .owl-dots button:last-child {
  margin-right: 0;
}

.hang-owl .owl-dots button.active,
.hang-sidebar-owl .owl-dots button.active {
  background-color: var(--four-color);
}

.hang-item a {
  display: block;
  width: 145px;
  height: 145px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-detail-title h2 {
  display: inline-block;
  color: var(--four-color);
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
}

.news-share-gg {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  background-color: #f1f1f1;
  border-radius: 50px;
  cursor: pointer;
  /* margin-left: 20px; */
  margin-bottom: 20px;
  transition: all 0.2s linear;
}

.news-share-gg:hover {
  background-color: var(--third-color);
  color: var(--second-color);
}

.news-share-gg a:hover {
  color: var(--primary-color);
}

.news-share-gg span {
  font-size: 10px !important;
  line-height: 14px !important;
  margin-bottom: 0 !important;
}

.news-share-gg img {
  max-width: 70px;
  margin-bottom: 0 !important;
}

.country-list .country:not(:last-child) {
  margin-bottom: 10px;
}

.country-list .country .lang-text:hover {
  color: #1c659f;
  transition: 0.4s;
}

.country:hover {
  cursor: pointer;
}

.country-list {
  position: absolute;
  top: 150%;
  width: 160px;
  padding-top: 12px;
  right: 0;
  z-index: 999;
  transition: 0.3s linear;
  visibility: hidden;
  opacity: 0;
}

.language {
  position: relative;
  display: inline-block;
}

.language.open .country-list {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.country svg {
  transform: translate(0, 3px);
}

.country.active span {
  color: var(--four-color);
}

.logo-header-m {
  max-width: 156px;
}

.language span {
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block !important;
}

.country-list .country-wrap {
  padding: 18px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 0px 5px;
  text-align: start;
}

.country-list > .country-wrap > .country {
  height: 25px;
}

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

.search-page {
  padding: 80px 0;
}

.search-title {
  margin-bottom: 32px;
}

.search-title h2 {
  font-size: 40px;
  line-height: 48px;
}

.form-search {
  position: relative;
  width: 100%;
  padding: 24px;
  border-radius: 4px;
  background-color: var(--four-color);
}

.form-search input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 6px 12px;
  background-color: var(--second-color);
}

.form-search .btn-search {
  background-color: var(--third-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  float: right;
  transition: all 0.2s linear;
}

.form-search .btn-search svg {
  color: var(--second-color);
  margin-bottom: -5px;
}

.form-search .btn-search:hover {
  opacity: 0.7;
}

.search-list {
  padding-bottom: 80px;
}

.search-item {
  padding-left: 12px;
  margin-bottom: 24px;
}

.search-tag {
  padding: 5px 10px;
  margin-bottom: 8px;
  border-radius: 4px;
  background-color: var(--four-color);
  text-align: center;
  display: inline-block;
}

.search-tag h4 {
  color: var(--second-color);
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
}

.search-item h3 {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 8px;
  font-weight: 700;
}

.search-item h3:hover a {
  color: var(--seven-color);
}

.search-item h3 a {
  color: var(--four-color);
}

.search-des {
  margin-bottom: 8px;
}

.search-des p {
  font-size: 14px;
  line-height: 21px;
}

.search-link {
  color: var(--third-color);
}

.search-header {
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  margin-right: 20px;
  display: inline-block;
}

.search-header svg {
  margin-bottom: -5px;
  margin-left: 10px;
}

@media (max-width: 1500px) {
  .home-news .title-main-2 h2 {
    font-size: 80px;
    line-height: normal;
  }
}
/* 
@media (max-width: 1380px) {
  .header-bottom {
    padding-top: 12px;
  }
} */

@media (max-width: 1280px) {
  .menu li a {
    margin-right: 20px;
    padding-right: 20px;
  }

  .col-cus,
  .col-cus-2,
  .col-cus-12 {
    padding: 0 15px !important;
    float: left;
  }

  .row-cus {
    margin: 0 -15px !important;
  }

  .logo-footer img {
    width: 100%;
  }

  .header .menu-child-item a {
    padding: 10px 15px;
    font-size: 12px;
  }

  .header .menu-header-item:last-child .menu-child {
    right: 0;
    left: auto;
  }
}

@media (max-width: 1000px) {
  .header-bottom {
    padding-top: 10px;
  }

  .home-bg {
    padding: 15px 0;
  }

  .header .menu-header-item > a svg {
    margin-bottom: 2px;
  }

  .header.affix .header-bottom {
    padding-top: 22px;
  }

  .menu li a {
    margin-right: 15px;
    padding-right: 15px;
  }

  .menu li a {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

@media (max-width: 790px) {
  .pcc {
    display: none !important;
  }

  .mbb {
    display: block !important;
  }

  .col-cus,
  .col-cus-2,
  .col-cus-12 {
    width: 100% !important;
    padding: 0 15px !important;
    float: left;
  }

  .row-cus {
    margin: 0 -15px !important;
  }

  .header {
    padding: 5px 0;
  }

  .header-wrap {
    display: flex;
    justify-content: right;
    align-items: center;
  }

  .header-menu {
    display: block;
    line-height: 70px;
    text-align: right;
  }

  .header-menu a {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background-color: var(--eight-color);
  }

  .header-menu a svg {
    color: var(--second-color);
    margin-bottom: -3px;
  }

  .header-menu a.collapsed svg.menu-open {
    display: inline-block;
  }

  .header-menu a.collapsed svg.menu-close {
    display: none;
  }

  .header-menu a svg.menu-open {
    display: none;
  }

  .header-menu a svg.menu-close {
    display: inline-block;
    margin-bottom: -7px;
  }

  .logo-header img {
    max-height: 70px;
  }

  .title-main {
    margin-bottom: 20px;
  }

  .title-main h2,
  .home-news .title-main-2 h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .banner-img.wrap-img {
    padding-bottom: 100%;
  }

  .home-bg {
    padding: 0;
    background: none;
  }

  .home-about .col-cus {
    padding: 0 !important;
  }

  .about-item {
    margin-bottom: 20px;
  }

  .home-news .title-main {
    margin-top: 0;
  }

  .home-partner .col-cus-2 {
    width: 50% !important;
    float: left;
  }

  .footer-title {
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }

  .menu-footer li a {
    margin-right: 20px;
    padding-right: 20px;
    margin-bottom: 5px;
  }

  #video-modal .modal-dialog {
    width: 100% !important;
    top: 20%;
    padding: 10px;
    margin: 0;
  }

  #video-modal iframe {
    width: 100% !important;
    height: 300px !important;
  }

  .breadcumb-page .direction a,
  .breadcumb-page .direction span {
    font-size: 14px;
  }

  .breadcumb-page li {
    margin-right: 12px;
  }

  .duan-tab {
    display: block;
    text-align: center;
  }

  .duan-tab .tab-item {
    display: inline-block;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 10px;
  }

  .resource-title {
    margin-top: 20px;
  }

  .resource-title h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .resource-item-img {
    margin-bottom: 20px;
    padding: 0;
  }

  .resource-item-btn {
    text-align: center;
  }

  .resource-item-btn a {
    margin-left: 5px;
  }

  #content p,
  #content span,
  #content li {
    font-size: 16px;
    line-height: 20px;
  }

  .copyright {
    text-align: center;
  }

  .copyright h3 {
    font-size: 14px;
    line-height: 18px;
  }

  .copyright p {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
  }

  .share-news {
    margin-bottom: 20px;
  }

  .news-share-gg {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .sidebar-activities {
    margin-top: 20px;
  }

  .news-related {
    padding-bottom: 70px;
  }

  .header.affix .header-top {
    display: inline-block !important;
  }

  .header-top {
    display: inline-block;
    margin-right: 10px;
  }

  .header-menu {
    display: inline-block !important;
  }

  .language svg {
    /* transform: translateY(-3px); */
    width: 30px;
    height: auto;
  }

  .country-list .country-wrap {
    padding: 15px;
  }

  .country svg {
    transform: translateY(2px);
  }

  .home-activity .news-title {
    padding-bottom: 30px;
  }

  .home-activity .news-title h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .home-news .home-link a {
    position: unset;
    width: auto;
    display: inline-block;
  }

  .contact-info {
    min-height: unset;
  }

  .search-header {
    margin-right: 5px;
  }

  .logo-header {
    line-height: 70px;
  }

  .search-header svg {
    margin-bottom: -3px;
    margin-left: 10px;
    width: 30px;
  }

  .header-top span {
    display: none !important;
  }

  .banner-img .wrap-img {
    padding-bottom: 100%;
  }

  .logo-footer,
  .logo-footer-2 {
    display: block;
    height: auto;
    text-align: center;
  }

  .language span {
    display: inline-block !important;
  }
}
