/* Global */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-black-2: #2d2727;
  --color-bg: #0f172a;
  --color-red: #ce2033;
  --color-red-3: #97081a;
  --color-grey: #cecece;
  --color-grey-1: #fafafa;
  --color-grey-3: #6f6f6f;
  --color-text-bg: #97081a08;
  --bg-red-gradient: linear-gradient(
    180deg,
    #ce2033 0%,
    #97081a 50%,
    #ce2033 100%
  );
  --bg-button: linear-gradient(to right, #ed213a, #93291e);
  --bg-button-2: linear-gradient(160deg, #0093e9 0%, #80d0c7 100%);
  --border-radius: 8px;
  --font-family: "Montserrat", sans-serif;
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;
}

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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: var(--font-regular);
  background-color: var(--color-white);
  list-style: none;
}

a,
a:hover {
  text-decoration: none;
}

.ajax-pagination {
    text-align: center;
    margin-top: 2rem;
}
.ajax-pagination button  {
	background-color: var(--color-red-3);
	color: var(--color-white);
	font-size: 13px;
	line-height: 16px;
	height: 44px;
	min-width: 160px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	font-weight: 600;
	border: none;
	outline: none;
	cursor: pointer;
}


.d-flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.mobile {
  display: none;
}

.limit-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.limit-text-1 {
  -webkit-line-clamp: 1;
}

.limit-text-2 {
  -webkit-line-clamp: 2;
}

.limit-text-3 {
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 991px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
/*Header*/
.header {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2509803922);
  position: fixed;
  width: 100%;
  z-index: 11;
  top: 0;
  left: 0;
  background-color: var(--color-white);
}
.header__top {
  position: relative;
}
.header__top.active .form_search {
  opacity: 1;
  visibility: visible;
}
.header .logo a {
  display: block;
}
.header .menu {
  list-style: none;
  height: 73px;
}
.header .menu li {
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .header .menu li {
    padding: 0 16px;
  }
}
.header .menu li:hover a, .header .menu li.current-menu-item a, .header .menu li.current-menu-parent a {
  color: var(--color-red);
}
.header .menu li:hover a::before, .header .menu li.current-menu-item a::before, .header .menu li.current-menu-parent a::before {
  width: 100%;
}
.header .menu li,
.header .menu a {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--color-black-2);
  font-weight: var(--font-medium);
  font-size: 15px;
  line-height: 18px;
  transition: 0.3s ease;
  position: relative;
}
.header .menu li::before,
.header .menu a::before {
  content: "";
  height: 2px;
  width: 0%;
  bottom: 0;
  display: block;
  position: absolute;
  left: 0;
  background-color: var(--color-red);
  transition: 0.3s ease;
}
.header .language ul {
  list-style: none;
  gap: 10px;
  border-left: 2px solid var(--color-grey);
  padding: 0 50px;
}
.header .language ul li {
  border: 2px solid transparent;
}
.header .language ul li.current-lang {
  border-color: var(--color-grey);
}
.header .language ul li img {
  height: 18px !important;
  width: 26px !important;
}
.header .language ul li a {
  display: block;
  height: 18px;
}
.header .search_user {
  gap: 45px;
  border-left: 2px solid var(--color-grey);
  padding-left: 30px;
}
.header .search_user .search {
  cursor: pointer;
}
.header .search_user .user {
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}
.header .search_user .user.active .user-menu {
  opacity: 1;
  visibility: visible;
}
.header .search_user .user-menu {
  position: absolute;
  width: 136px;
  background: #fff;
  z-index: 1;
  padding: 12px;
  top: 45px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5019607843);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
}
.header .search_user .user-menu a {
  color: var(--color-black-2);
  text-transform: math-auto;
}
.header .menu-mobile {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #fff;
  top: 60px;
  z-index: 111;
  left: 0;
  padding: 16px;
  width: 0;
  transform: translateX(-1000px);
  transition: 0.3s ease;
}
.header .menu-mobile li:not(:last-child) {
  padding-bottom: 20px;
}
.header .menu-mobile li a {
  color: var(--color-black-2);
  font-weight: var(--font-medium);
  font-size: 15px;
  line-height: 18px;
  transition: 0.3s ease;
}
.header .menu-mobile .translations {
  gap: 10px;
}
.header .menu-mobile .translations li {
  padding-bottom: 0;
  list-style: none;
}
.header .menu-mobile .user {
  padding-top: 20px;
}
.header .form_search {
  position: absolute;
  width: 26%;
  display: flex;
  right: 0;
  background: #fff;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #bdbdbd;
  padding: 4px 10px;
  opacity: 0;
  visibility: hidden;
}
.header .form_search .form-group {
  width: 100%;
  height: 30px;
}
.header .form_search input {
  width: 100%;
  height: 30px;
  padding: 0 8px;
  border: none;
  outline: none;
}
.header .form_search .close_search {
  display: flex;
  cursor: pointer;
}
.header .form_search .close_search img {
  height: 25px;
  width: 25px;
}

.header.active .menu-mobile {
  transform: translateX(0);
  width: 100%;
}

.page-home {
  margin-top: 60px;
}

/* Search */
.search .content .left ul a {
  color: var(--color-black-2) !important;
}

/* About */
.about {
  background: var(--bg-red-gradient);
  padding: 82px 0;
  color: var(--color-white);
}
.about h3 {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
.about p {
  font-size: 13px;
  line-height: 17px;
  text-align: center;
}
.about .box {
  background-color: var(--color-white);
  border-radius: 5px;
  padding: 7px;
  margin: 59px 0 21px 0;
}
.about .box .box-inner {
  border: 1px solid var(--color-red-3);
  border-radius: 5px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .about .box .box-inner {
    flex-direction: column;
    gap: 20px;
  }
}
.about .box .box-item {
  gap: 20px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 900px) {
  .about .box .box-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
.about .box .box-item:not(:last-child) {
  border-right: 2px solid var(--color-red-3);
  padding-right: 35px;
}
.about .box .box-item h4 {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: var(--color-black-2);
  text-transform: uppercase;
}

/* Banner */
.home-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  position: relative;
  background-attachment: fixed;
}
.home-banner .text {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  color: var(--color-white);
  text-align: center;
  z-index: 2;
  width: 100%;
}
.home-banner .text h1 {
  color: var(--color-white);
  padding: 20px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5019607843);
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 30px;
  line-height: 37px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .home-banner .text h1 {
    font-size: 22px;
    line-height: 30px;
  }
}

.btn-cta a {
  border: 1px solid var(--color-red);
  box-sizing: border-box;
  border-radius: 3px;
  color: var(--color-red);
  background: 0 0;
  text-transform: uppercase;
  font-weight: 500;
  height: 40px;
  min-width: 195px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.btn-cta a:hover {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.title-top {
  margin-bottom: 40px;
  position: relative;
}
.title-top .description {
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 20px;
  max-width: 506px;
  font-weight: 400;
  color: #222;
}
.title-top h3.title-section {
  font-size: 35px;
  line-height: 50px;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .title-top h3.title-section {
    font-size: 26px;
    line-height: 34px;
  }
}
.title-top .nested_title {
  font-size: 100px;
  line-height: 100px;
  font-family: judson;
  font-weight: 700;
  position: absolute;
  top: 0;
  color: rgba(151, 8, 26, 0.031372549);
}

/* Project */
.project {
  padding: 45px 0;
  position: relative;
  background-image: url("../images/bg_1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.project .nested_title {
  right: 0;
}
.project .swiper .swiper-slide {
  opacity: 0.2;
  transition: 0.3s;
  border-radius: 3px;
  overflow: hidden;
}
.project .swiper .swiper-slide-active {
  opacity: 1;
}
.project .swiper .swiper-pagination {
  position: relative;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.project .swiper .swiper-pagination-bullet {
  margin: 0 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  background-color: #6f6f6f;
}
.project .swiper .swiper-pagination-bullet svg {
  position: absolute;
}
.project .swiper .swiper-pagination-bullet svg circle {
  stroke-dasharray: 444;
  opacity: 0;
  display: none;
}
.project .swiper .swiper-pagination-bullet-active svg circle {
  display: block;
  opacity: 1;
  animation: 5s ease-in 0s 1 normal forwards running circle;
}
.project .swiper .content {
  display: flex;
  align-items: center;
  box-shadow: -2px -2px 20px 0px rgba(0, 0, 0, 0.0705882353);
  border-right: 10px solid var(--color-red);
  border-radius: 5px;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .project .swiper .content {
    flex-direction: column;
  }
}
.project .swiper .content .text {
  width: 25%;
  flex: none;
  padding: 0 48px 0 24px;
}
@media screen and (max-width: 767px) {
  .project .swiper .content .text {
    width: 100%;
    padding: 24px;
  }
}
.project .swiper .content .text h2 {
  color: var(--color-red-3);
  font-size: 26px;
  line-height: 36px;
  margin: 12px 0;
}
.project .swiper .content .text p {
  font-size: 12px;
  line-height: 16px;
}
.project .swiper .content .text .btn-text {
  position: absolute;
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  .project .swiper .content .text .btn-text {
    position: inherit;
    margin-top: 16px;
  }
}
.project .swiper .content .text .btn-text a {
  font-weight: 600;
  font-size: 13px;
  line-height: 150%;
  color: var(--color-red);
}
.project .swiper .content .image {
  width: 100%;
  height: 515px;
}
@media screen and (max-width: 767px) {
  .project .swiper .content .image {
    height: 380px;
  }
}
.project .swiper .content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project .swiper-container {
  overflow: unset;
}
@media screen and (max-width: 767px) {
  .project .swiper-container {
    overflow: hidden;
  }
}

/*Category*/
.category .title-top {
  text-align: center;
}
.category .title-top .nested_title {
  left: 0;
}
.category .description {
  margin: 0 auto;
}
.category .list-category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .category .list-category {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category .list-category .item .image {
  height: 255px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .category .list-category .item .image {
    height: 200px;
  }
}
.category .list-category .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.category .list-category .item .text h2 {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-black);
}
.category .btn-cta {
  text-align: center;
}

/* MAPs */
.map {
  background-image: url("../images/bg_1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 160px 0;
}
@media screen and (max-width: 767px) {
  .map {
    padding: 0;
  }
}
.map #map {
  z-index: 11;
}
.map .urban_map {
  padding-left: calc((100vw - 1140px) / 2);
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .map .urban_map {
    display: block;
    padding-left: 0;
  }
}
.map .urban_map::before {
  content: "";
  background: #f0f0f1;
  position: absolute;
  top: -3rem;
  left: 21rem;
  width: 85%;
  height: 100%;
  z-index: 1;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .map .urban_map::before {
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .map .urban_map::before {
    display: none;
  }
}
.map .urban_map_filter {
  width: 0;
  padding-right: 35px;
  border-radius: 3px;
  overflow: hidden;
  position: absolute;
  z-index: 2222;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  .map .urban_map_filter {
    position: inherit;
    padding-right: 0;
  }
}
.map .urban_map_filter.open {
  width: 395px;
}
@media screen and (max-width: 767px) {
  .map .urban_map_filter.open {
    width: 100%;
  }
}
.map .urban_map_filter.open .slide_filter_btn img {
  transform: rotate(180deg);
}
.map .urban_map_filter.open .urban_filter_view {
  width: 360px;
  display: block;
}
@media screen and (max-width: 767px) {
  .map .urban_map_filter.open .urban_filter_view {
    width: 100%;
  }
}
.map .urban_map_filter .urban_filter_view {
  padding: 30px 40px;
  background-color: var(--color-white);
  display: none;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .map .urban_map_filter .urban_filter_view {
    padding: 40px 20px;
  }
}
.map .urban_map_filter .views-element-container {
  position: relative;
  background-color: var(--color-white);
  height: 100%;
}
.map .urban_map_filter .views-element-container .slide_filter_btn {
  cursor: pointer;
  position: absolute;
  height: 600px;
  width: 35px;
  right: -34px;
  color: #162b75;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .map .urban_map_filter .views-element-container .slide_filter_btn {
    display: none;
  }
}
.map .urban_map_filter .title h4 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 11px;
  color: var(--color-red);
}
.map .urban_map_filter .filter_wrapper {
  padding: 20px 30px;
  border: 1px solid var(--color-grey);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .map .urban_map_filter .filter_wrapper {
    padding: 16px;
  }
}
.map .urban_map_filter .filter_wrapper .text_1 {
  display: block;
  margin-bottom: 8px;
}
.map .urban_map_filter .filter_wrapper select {
  width: 100%;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-left: -4px;
}
.map .urban_map_filter .result_wrapper span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.map .urban_map_filter .result_wrapper ul {
  margin-top: 23px;
  height: 236px;
  overflow: auto;
  margin-bottom: 30px;
}
.map .urban_map_filter .result_wrapper ul::-webkit-scrollbar {
  width: 3px;
}
.map .urban_map_filter .result_wrapper ul::-webkit-scrollbar-thumb {
  background: var(--color-red-3);
}
.map .urban_map_filter .result_wrapper ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.map .urban_map_filter .result_wrapper ul li {
  color: var(--color-black-2);
  font-size: 12px;
  line-height: 16px;
  padding: 10px 0;
  cursor: pointer;
}
.map .urban_map_filter .result_wrapper ul li:not(:last-child) {
  border-bottom: 1px solid var(--color-grey);
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .map .urban_map_filter .result_wrapper ul li:not(:last-child) {
    margin-bottom: 12px;
  }
}
.map .urban_map_filter .btn-all {
  height: 40px;
}
.map .urban_map_filter .btn-all a {
  width: 100%;
  height: 100%;
}
.map .leaflet-control-container .leaflet-left {
  right: 12px !important;
  left: auto !important;
}

/*News*/
.news {
  margin-top: 96px;
  background: var(--bg-red-gradient);
  padding: 45px 0;
  color: var(--color-white);
  text-align: center;
}
.news .title-top h3 {
  color: var(--color-white);
}
.news .title-top .nested_title {
  color: rgba(255, 255, 255, 0.0588235294);
  right: 0;
}
.news .list-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .news .list-news {
    grid-template-columns: 1fr;
  }
}
.news .list-news .item {
  position: relative;
  background-color: var(--color-white);
}
.news .list-news .item .image {
  height: 240px;
  transition: 0.3s;
}
.news .list-news .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news .list-news .item .text {
  padding: 30px 40px;
  transition: 0.3s;
  text-align: left;
}
.news .list-news .item .date {
  font-size: 14px;
  color: var(--color-grey-3);
  margin-bottom: 8px;
  display: block;
}
.news .list-news .item h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: var(--color-black-2);
}
.news .list-news .item .description {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: justify;
  color: #222;
  margin-top: 10px;
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: 0.3s;
  overflow: hidden;
}
.news .btn-cta a {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.news .btn-cta a:hover {
  background-color: var(--color-white);
  color: var(--color-red-3);
}

.about-banner img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .about-banner img {
    height: 220px;
  }
}

.tam-nhin {
  position: relative;
  background-image: url("../images/banner_tamnhin.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 44px 0;
  text-align: center;
}
.tam-nhin .box-inner {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .tam-nhin .box-inner {
    display: block;
  }
}
.tam-nhin .content-info-box:first-child {
  border-right: 1px solid var(--color-grey);
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .tam-nhin .content-info-box:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--color-grey);
    padding-right: 0px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.tam-nhin .content-info-box .box-item h4 {
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
  color: var(--color-red);
  text-transform: uppercase;
}

.lich-su {
  background: var(--bg-red-gradient);
  padding: 48px 0;
  text-align: center;
}
.lich-su p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--color-white);
  margin: 37px 0;
}
@media screen and (max-width: 767px) {
  .lich-su p {
    font-size: 16px;
    line-height: 24px;
  }
}
.lich-su h3 {
  color: var(--color-white) !important;
}
.lich-su .nested_title {
  color: rgba(255, 255, 255, 0.0588235294);
  top: -28px;
  left: 0;
  right: 0;
}
.lich-su .year_slider {
  position: relative;
  margin-bottom: 40px;
}
.lich-su .year_slider .swiper-slide {
  cursor: pointer;
  position: relative;
  transition-property: transform;
  height: 53px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
}
.lich-su .year_slider .swiper-slide:hover .nested_square::before {
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-white);
}
.lich-su .year_slider .swiper-slide::before {
  content: "";
  position: absolute;
  width: calc(100% + 38px);
  height: 0;
  border-bottom: 1px solid var(--color-grey-3);
  top: 12px;
  left: calc((100% + 20px) * -1);
  z-index: -1;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width;
  -moz-transition-property: width;
  -ms-transition-property: width;
  -o-transition-property: width;
  transition-property: width;
}
.lich-su .year_slider .swiper-slide::after {
  content: "";
  position: absolute;
  height: 0;
  border-bottom: 1px solid var(--color-grey-3);
  top: 12px;
  left: calc((100% + 20px) * -1);
  z-index: -1;
  width: 0;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width;
  -moz-transition-property: width;
  -ms-transition-property: width;
  -o-transition-property: width;
  transition-property: width;
}
.lich-su .year_slider .swiper-slide:not(.empty)::after {
  border-bottom: 1px solid var(--color-white);
}
.lich-su .year_slider .swiper-slide .square {
  height: 10px;
  width: 10px;
  background-color: var(--color-white);
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lich-su .year_slider .swiper-slide .nested_square {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lich-su .year_slider .swiper-slide .nested_square::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.lich-su .year_slider .swiper-slide-thumb-active .nested_square::before {
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-white);
}
.lich-su .year_slider .swiper-slide-thumb-active:not(.empty)::after {
  width: calc(100% + 38px);
}
.lich-su .year_slider .left {
  position: absolute;
  top: 0;
  left: 0;
  height: 13px;
  border-bottom: 1px solid var(--color-white);
}
.lich-su .year_slider .right {
  position: absolute;
  top: 0;
  right: 0;
  height: 13px;
  border-bottom: 1px solid var(--color-grey-3);
}
.lich-su .view-container .view-item {
  display: flex;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .lich-su .view-container .view-item {
    display: block;
  }
}
.lich-su .view-container .view-item .image {
  width: 50%;
  flex: none;
  height: 350px;
}
@media screen and (max-width: 767px) {
  .lich-su .view-container .view-item .image {
    width: 100%;
    height: 250px;
  }
}
.lich-su .view-container .view-item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.lich-su .view-container .view-item .text {
  padding: 30px;
  text-align: left;
}
.lich-su .view-container .view-item .text span {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: var(--color-red-3);
  margin-bottom: 14px;
  display: block;
}
.lich-su .view-container .view-item .text h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-black-2);
}
.lich-su .view-container .view-item .text p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: var(--color-black);
  margin: 0;
}
@media (min-width: 1200px) {
  .lich-su .container_but_container_r {
    padding-right: calc((100vw - 1140px) / 2);
  }
  .lich-su .container_but_container_l {
    padding-left: calc((100vw - 1140px) / 2);
  }
}
@media (min-width: 1200px) {
  .lich-su .ctn_width {
    width: calc((100vw - 1140px) / 2);
  }
}
@media (min-width: 992px) {
  .lich-su .ctn_width {
    width: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 768px) {
  .lich-su .ctn_width {
    width: calc((100vw - 750px) / 2);
  }
}
@media (min-width: 576px) {
  .lich-su .ctn_width {
    width: calc((100vw - 540px) / 2);
  }
}

.banner {
  height: 295px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .banner {
    height: 180px;
  }
  .banner .title {
    font-size: 22px;
    line-height: 30px;
  }
}

.smart {
  background: var(--bg-red-gradient);
  padding: 71px 0;
}
.smart .list-smart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .smart .list-smart {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.smart .list-smart .item {
  position: relative;
}
.smart .list-smart .item img {
  width: 100%;
  height: 100%;
  display: block;
}
.smart .list-smart .item .title {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  color: var(--color-white);
  left: 0;
  width: 90%;
  transition: 0.3s ease;
}
@media screen and (max-width: 991px) {
  .smart .list-smart .item .title {
    padding: 12px;
    width: 100%;
  }
}
.smart .list-smart .item .title h3 {
  font-size: 25px;
  line-height: 30px;
}
@media screen and (max-width: 991px) {
  .smart .list-smart .item .title h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
.smart .list-smart .item .title p {
  opacity: 0;
  height: 0;
  visibility: hidden;
  font-size: 14px;
}
.smart .list-smart .item:hover .title {
  height: 100%;
  width: 100%;
}
.smart .list-smart .item:hover .title p {
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.plugin td {
  display: none;
}

.archive {
  margin-top: 60px;
}
.archive .content {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 24px;
  margin-top: -3rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.0509803922);
  background: var(--color-white);
  padding: 0 27px 27px 27px;
  margin-bottom: 64px;
}
@media screen and (max-width: 991px) {
  .archive .content {
    grid-template-columns: 1fr;
    padding: 0 16px 16px 16px;
    margin-bottom: 0;
  }
}
.archive .content .left ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 48px;
  border-bottom: 1px solid #cecece;
  margin-bottom: 16px;
}
@media screen and (max-width: 991px) {
  .archive .content .left ul {
    gap: 16px;
  }
}
.archive .content .left ul li {
  height: 48px;
}
.archive .content .left ul li a {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--color-grey);
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  position: relative;
	text-align: center;
}
.archive .content .left ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: 0.3s ease;
}
.archive .content .left ul li.current-cat a, .archive .content .left ul li:hover a {
  color: var(--color-grey-3);
}
.archive .content .left ul li.current-cat a::before, .archive .content .left ul li:hover a::before {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .archive .content .left ul {
    gap: 0px;
    flex-flow: wrap;
    column-gap: 24px;
    height: auto;
  }
  .archive .content .left ul li {
    height: 30px;
  }
}
.archive .content .left .post__content .item {
  display: flex;
  gap: 29px;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .archive .content .left .post__content .item {
    gap: 12px;
  }
}
.archive .content .left .post__content .item:not(:last-child) {
  border-bottom: 1px solid #fafafa;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.archive .content .left .post__content .item:hover h2 {
  color: var(--color-red);
}
.archive .content .left .post__content .item__thumbnail {
  width: 35%;
  flex: none;
  height: 146px;
}
.archive .content .left .post__content .item__thumbnail a,
.archive .content .left .post__content .item__thumbnail img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}
.archive .content .left .post__content .item__content h2 {
  font-size: 14px;
  line-height: 21px;
  color: var(--color-black-2);
  font-weight: 500;
  margin-bottom: 8px;
}
.archive .content .left .post__content .item__content p {
  font-size: 14px;
  line-height: 21px;
  color: var(--color-grey-3);
}
.archive .content .left .post__content .time {
  display: flex;
  margin-top: 20px;
  font-size: 11px;
  line-height: 13px;
  color: var(--color-grey);
  gap: 8px;
}
.archive .content .right .form h3 {
  height: 48px;
  display: flex;
  align-items: center;
  color: var(--color-red);
  font-size: 16px;
  line-height: 19px;
  border-bottom: 1px solid var(--color-red);
  margin-bottom: 16px;
}
.archive .content .right .related h3 {
  font-size: 13px;
  line-height: 16px;
  color: var(--color-red);
  font-weight: 600;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--color-red);
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
  text-align: center;
}
.archive .content .right .related__content ul {
  list-style: none;
}
.archive .content .right .related__content ul li:not(:last-child) {
  border-bottom: 1px solid #fafafa;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.archive .content .right .related__content ul li a {
  display: flex;
  gap: 18px;
  color: var(--color-black-2);
}
.archive .content .right .related__content .thumnail {
  height: 107px;
  width: 40%;
  flex: none;
}
.archive .content .right .related__content .thumnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.archive .content .right .related__content .title h2 {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.archive .content .right .related__content .title p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: var(--color-grey-3);
}

.project-taxomomy .content {
  grid-template-columns: repeat(1, 1fr);
}
.project-taxomomy .content .item__thumbnail {
  width: 100% !important;
  height: 220px !important;
}
.project-taxomomy .content .left ul {
  gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .project-taxomomy .content .left ul {
    gap: 0px;
    flex-flow: wrap;
    column-gap: 24px;
    height: auto;
  }
  .project-taxomomy .content .left ul li {
    height: 30px;
  }
}
.project-taxomomy .content .item__content {
  padding: 30px;
}
.project-taxomomy .content .post__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .project-taxomomy .content .post__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .project-taxomomy .content .post__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.project-taxomomy .content .post__content .item {
  display: block !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}

.customer-taxomomy .content {
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .customer-taxomomy .content {
    padding: 16px;
  }
}
.customer-taxomomy .content .item__thumbnail {
  padding: 16px 24px;
  height: 188px !important;
}
.customer-taxomomy .content .item__thumbnail img {
  object-fit: contain !important;
}
.customer-taxomomy .content .item__content {
  padding: 8px 20px;
  border-top: 1px solid var(--color-grey);
}

.paginate {
  text-align: center;
  margin-top: 24px;
}
.paginate .page-numbers {
  height: 36px;
  width: 36px;
  display: inline-flex;
  border: 1px solid var(--color-grey);
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
  transition: 0.3s ease;
  color: var(--color-black-2);
}
.paginate .page-numbers.current {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.single-page header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-grey);
}
.single-page .entry-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 16px;
}
.single-page .entry-content img {
  width: 100%;
}
.single-page .entry-content h2,
.single-page .entry-content h3,
.single-page .entry-content h4,
.single-page .entry-content h5,
.single-page .entry-content p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 24px;
}

.single-contact-info {
  padding: 71px 0;
  position: relative;
  background-image: url("../images/bg_thongtin.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 60px;
}
@media screen and (max-width: 991px) {
  .single-contact-info {
    padding: 40px 0;
  }
}
.single-contact-info .content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 991px) {
  .single-contact-info .content {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.single-contact-info .content .thumbnail {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 100%;
}
.single-contact-info .content .thumbnail:before {
  content: "";
  content: "";
  background: #ce2033;
  position: absolute;
  top: -20px;
  left: -20px;
  width: 105%;
  height: 105%;
  right: 0;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .single-contact-info .content .thumbnail:before {
    left: -10px;
  }
}
.single-contact-info .content .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.single-contact-info .content .info {
  text-align: center;
}
.single-contact-info .content .info h1 {
  font-size: 60px;
  line-height: 76px;
  text-transform: uppercase;
  color: var(--color-red);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .single-contact-info .content .info h1 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 991px) {
  .single-contact-info .content .info h1 {
    font-size: 22px;
    line-height: 30px;
  }
}
.single-contact-info .content .info h4 {
  font-size: 35px;
  line-height: 52px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .single-contact-info .content .info h4 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media screen and (max-width: 991px) {
  .single-contact-info .content .info h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
.single-contact-info .content .info ul {
  list-style: none;
}
.single-contact-info .content .info ul li:not(:last-child) {
  margin-bottom: 15px;
}
.single-contact-info .content .info ul a {
  font-size: 20px;
  line-height: 30px;
  color: var(--color-black-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 8px 12px;
  min-width: 300px;
}
@media screen and (max-width: 991px) {
  .single-contact-info .content .info ul a {
    font-size: 16px;
    line-height: 24px;
  }
}
.single-contact-info .content .download-vcard-btn {
  background: linear-gradient(180deg, #ce2033 0%, #97081a 50%, #ce2033 100%);
  cursor: pointer;
  height: 55px;
}
.single-contact-info .content .download-vcard-btn span {
  text-transform: initial;
  color: #fff;
}

.single-page-du-an .content {
  grid-template-columns: repeat(1, 1fr);
}
.single-page-du-an .content .left ul {
  justify-content: center;
}
.single-page-du-an header {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

/* Page Contact */
.page-contact,
.page-about {
  margin-top: 60px;
}

.location .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 3rem;
}
@media screen and (max-width: 991px) {
  .location .content {
    grid-template-columns: 1fr;
  }
}
.location .left ul {
  list-style: none;
}
.location .left ul li:not(:last-child) {
  margin-bottom: 16px;
}
.location .left ul li a {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-black-2);
}
.location .left ul li h3 {
  font-size: 26px;
  line-height: 34px;
}

@keyframes circle {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 50;
  }
}
/* Form  */
.form_contact .group p {
  display: flex;
  gap: 8px;
}
.form_contact .group p br {
  display: none;
}
.form_contact input,
.form_contact textarea {
  height: 46px;
  color: var(--color-grey);
  border: 1px solid var(--color-grey-3);
  border-radius: 5px;
  padding: 15px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  width: 100%;
}
.form_contact textarea {
  height: 150px;
}
.form_contact .wpcf7-submit {
  background-color: var(--color-red-3);
  color: var(--color-white);
  border-color: var(--color-red-3);
  cursor: pointer;
}

.form_contact .wpcf7-response-output {
	margin-top: 0 !important;
}

/*Footer*/
.footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 36px 0 50px 0;
}
.footer .footer__main {
  gap: 65px;
}
@media screen and (max-width: 900px) {
  .footer .footer__main {
    flex-direction: column;
    gap: 20px;
  }
}
.footer .logo {
  flex: none;
}
@media screen and (max-width: 767px) {
  .footer .logo img {
    width: 70px;
  }
}
.footer .info {
  min-width: 45%;
}
.footer .info ul {
  list-style: none;
}
.footer .info ul li,
.footer .info ul a {
  color: var(--color-black-2);
  font-weight: 500;
  color: 13px;
  line-height: 16px;
}
.footer .info .hotline {
  background-color: var(--color-red-3);
  color: var(--color-white);
  font-size: 13px;
  line-height: 16px;
  height: 46px;
  min-width: 208px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-weight: 600;
  margin-top: 9px;
  margin-bottom: 19px;
}
.footer .info .hotline span {
  border-right: 2px solid var(--color-white);
  padding-right: 15px;
  margin-right: 15px;
}
.footer .info .language {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer .info .language span {
  color: var(--color-grey-3);
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
}
.footer .info .language ul li:not(:last-child) {
  border-right: 1px solid var(--color-black-2);
  padding-right: 10px;
  margin-right: 10px;
}
.footer .info .language ul a {
  font-weight: 500;
  color: var(--color-black-2);
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
}
.footer .info .language ul .current-lang a {
  font-weight: 800;
}
.footer .info .copyright p {
  color: var(--color-black-2);
  font-size: 11px;
  line-height: 13px;
  font-weight: 500;
}

#back__to__top {
  position: fixed;
  right: 2%;
  bottom: 2%;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background-color: var(--color-red);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 20px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
}
#back__to__top.show {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=style.css.map */
