@font-face {
  font-family: "Google Sans";
  src: url("/baden-pagoda/font/GoogleSans-Regular.eot");
  src: url("/baden-pagoda/font/GoogleSans-Regular.eot?#iefix") format("embedded-opentype"), url("/baden-pagoda/font/GoogleSans-Regular.woff2") format("woff2"), url("/baden-pagoda/font/GoogleSans-Regular.woff") format("woff"), url("/baden-pagoda/font/GoogleSans-Regular.ttf") format("truetype"), url("/baden-pagoda/font/GoogleSans-Regular.svg#GoogleSans-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-black: rgba(0,0,0,1);
  --color-secondary: rgba(255, 168, 0, 1);
  --color-light: rgba(244, 241, 235, 1);
  --width-container: 1320px;
  --color-primary: rgba(39,87,36,1);
  --color-grey: rgba(173, 173, 173, 1);
  --color-white: #fff;
  --font-body: "Google Sans", sans-serif;
  --font-alegreya: "Alegreya", serif;
  --width-container: 1267px;
  --color-body: rgba(0,0,0,0.6);
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.6);
  overflow-x: hidden !important;
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

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

a {
  text-decoration: none !important;
}

.segTitle {
  font-weight: 500;
  font-family: var(--font-alegreya);
  color: var(--color-primary);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.12px;
}
@media (max-width: 1439px) {
  .segTitle {
    font-size: 46px;
    letter-spacing: -0.92px;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .segTitle {
    font-size: 40px;
    letter-spacing: -0.8px;
  }
}
@media (max-width: 767px) {
  .segTitle {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}

.subTitle {
  font-weight: 700;
  font-family: var(--font-alegreya);
  color: var(--color-primary);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1.12px;
  text-align: center;
}

.btn_primary {
  height: 48px;
  padding: 0 24px;
  border-radius: 50px;
  background: var(--color-white);
  width: -moz-max-content;
  width: max-content;
  color: var(--color-primary);
  font-weight: 500;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-primary);
}
.btn_primary a {
  color: var(--color-white);
}
.btn_primary::after {
  content: "";
  border-radius: 50px;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  transition: height 0.5s ease;
  color: var(--color-white);
  background: var(--color-secondary);
}
.btn_primary span, .btn_primary i, .btn_primary svg {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn_primary:hover {
  border: 1px solid var(--color-secondary);
}
.btn_primary:hover::after {
  height: 100%;
}
.btn_primary:hover path {
  fill: var(--color-blue);
}
.btn_primary:hover span, .btn_primary:hover i {
  color: var(--color-white);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .btn_primary {
    font-size: 14px;
    height: 44px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .btn_primary::after {
    display: none;
  }
  .btn_primary:hover {
    color: #fff;
  }
  .btn_primary:hover span, .btn_primary:hover i {
    color: #fff;
  }
}

.btn_trans {
  height: 48px;
  padding: 0 24px;
  border-radius: 50px;
  background: var(--color-secondary);
  width: -moz-max-content;
  width: max-content;
  color: var(--color-white);
  font-weight: 500;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-white);
}
.btn_trans a {
  color: var(--color-white);
}
.btn_trans::after {
  content: "";
  border-radius: 50px;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  transition: height 0.5s ease;
  color: var(--color-white);
  background: var(--color-primary);
}
.btn_trans span, .btn_trans i, .btn_trans svg {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn_trans:hover {
  border: 1px solid var(--color-primary);
}
.btn_trans:hover::after {
  height: 100%;
}
.btn_trans:hover path {
  fill: var(--color-primary);
}
.btn_trans:hover span, .btn_trans:hover i {
  color: var(--color-white);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .btn_trans {
    font-size: 14px;
    height: 44px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .btn_trans::after {
    display: none;
  }
  .btn_trans:hover {
    color: #fff;
  }
  .btn_trans:hover span, .btn_trans:hover i {
    color: #fff;
  }
}

.list_news {
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.list_news .item_news {
  padding: 12px;
  border-radius: 20px;
  background: var(--color-white);
  display: flex;
  gap: 20px;
}
.list_news .item_news .--img {
  width: 200px;
  height: 144px;
  flex: 0 0 auto;
  border-radius: 10px;
}
.list_news .item_news .--img img {
  border-radius: 10px;
}
.list_news .item_news .txt {
  flex: 1;
}
.list_news .item_news .txt .date {
  font-size: 13px;
  color: var(--color-black);
  margin-bottom: 4px;
  opacity: 0.6;
  line-height: 24px;
}
.list_news .item_news .txt .date span {
  font-weight: 700;
}
.list_news .item_news .txt .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 12px;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}
.list_news .item_news .txt .title:hover {
  color: var(--color-secondary);
}
.list_news .item_news .txt .desc {
  font-size: 13px;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 20px;
  color: var(--color-black);
}
@media (max-width: 1439px) {
  .list_news .item_news {
    gap: 16px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .list_news .item_news .--img {
    width: 150px;
    height: auto;
  }
  .list_news .item_news .txt .title {
    font-size: 15px;
  }
}

.main_page {
  padding-top: 124px;
}
@media (max-width: 1050px) {
  .main_page {
    padding-top: 0;
  }
}

footer {
  background: var(--color-primary);
  padding-top: 80px;
  background-image: url("/baden-pagoda/images/Rectangle 78.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(39, 87, 36, 0.96);
  z-index: 0;
  top: 0;
  left: 0;
}
footer .container {
  position: relative;
}
footer a:hover {
  opacity: 0.6;
}
footer .logo_ft {
  display: flex;
  flex-flow: column;
  align-items: center;
}
footer .logo_ft img {
  width: auto;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .content_ft {
  display: flex;
  justify-content: space-between;
  margin-bottom: 54px;
}
footer .info_contact {
  flex: 0 0 20%;
}
footer .info_contact .item_contact {
  color: var(--color-white);
}
footer .info_contact .title_contact {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-white);
}
footer .info_contact .--list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .info_about {
  flex: 0 0 30%;
}
footer .info_about .title_about {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-white);
}
footer .info_about .--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
footer .info_about .--list .item_about {
  color: var(--color-white);
}
footer .cardSocial {
  flex: 0 0 20%;
}
footer .cardSocial .title_social {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-white);
}
footer .cardSocial .list_social {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}
footer .cardSocial .list_social .item_social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.92px solid rgba(96, 96, 96, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
footer .cardSocial .list_social .item_social i {
  color: var(--color-white);
}
footer .cardSocial .--qr .--name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-white);
}
footer .cardSocial .--qr img {
  width: 120px;
}
footer .list_location {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  background: rgb(32, 76, 30);
  padding: 24px 86px;
}
footer .list_location .item_location {
  color: var(--color-white);
  padding-right: 16px;
  border-right: 1px solid rgb(155, 155, 155);
}
footer .list_location .item_location:last-child {
  border-right: none;
  padding-right: 0;
}
footer .bottom_ft {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 32px 0;
  flex-flow: column;
  align-items: center;
}
footer .bottom_ft .list_privacy {
  display: flex;
  gap: 16px;
}
footer .bottom_ft .list_privacy .item_privacy {
  color: var(--color-white);
  padding-right: 16px;
  border-right: 1px solid rgb(155, 155, 155);
}
footer .bottom_ft .list_privacy .item_privacy:last-child {
  border-right: none;
  padding-right: 0;
}
footer .bottom_ft .copyright {
  color: var(--color-white);
}
footer .left_ft .title_logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 767px) {
  footer {
    padding-top: 40px;
  }
  footer .content_ft {
    flex-flow: column;
    gap: 24px;
  }
  footer .content_ft .info_contact .title_contact {
    margin-bottom: 16px;
  }
  footer .content_ft .info_contact .title_contact .--list {
    gap: 12px;
  }
  footer .content_ft .info_about .title_about {
    margin-bottom: 16px;
  }
  footer .content_ft .info_about .--list {
    gap: 12px;
  }
  footer .content_ft .cardSocial .title_social {
    margin-bottom: 16px;
  }
  footer .bottom_ft {
    padding: 32px 15px;
    text-align: center;
  }
  footer .list_location {
    flex-wrap: wrap;
    padding: 24px 0;
  }
  footer .list_location .item_location {
    color: rgba(255, 255, 255, 0.6);
    flex: 0 0 45%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1882352941) !important;
    padding: 5px;
    line-height: 1.5;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1098039216);
    height: 53px;
  }
}

#header1.hide {
  top: -124px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  background: var(--color-white);
}
.header.change {
  background: var(--color-white);
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.0392156863);
  transition: all 0.3s ease;
}
.header.change .headerTop .--listLink .--itemLink {
  color: var(--color-black);
}
.header.change .content_header .right_header .menu_header a {
  color: var(--color-primary);
}
.header.change .content_header .right_header .list_widget_header .list_social {
  border-right: 1px solid var(--color-primary);
}
.header.change .content_header .right_header .list_widget_header .list_social i {
  color: var(--color-primary);
}
.header.change .content_header .right_header .list_widget_header .search_header i {
  color: var(--color-primary);
}
.header .headerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
}
.header .headerTop .--listLink {
  display: flex;
  gap: 20px;
  font-size: 13px;
}
.header .headerTop .--listLink .--itemLink {
  color: var(--color-black);
  opacity: 0.8;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .headerTop .--listLink .--itemLink:hover {
  color: var(--color-secondary);
}
.header .headerTop .--listLink .--itemLink.active {
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(50, 161, 61, 0.12);
  color: var(--color-primary);
}
.header .headerTop .--year {
  background: var(--color-secondary);
  padding: 8px 16px;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  border-bottom: none !important;
  height: auto;
}
.header .headerTop .list_social {
  padding-right: 0.5rem;
  border-right: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .headerTop .list_social .item_social {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .headerTop .list_social .item_social:hover i {
  color: var(--color-secondary);
}
.header .headerTop .list_social i {
  color: var(--color-primary);
}
.header .content_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header .content_header .left_header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .content_header .left_header .title_logo {
  font-size: 22px;
  font-weight: 700;
  color: rgb(39, 87, 36);
}
.header .content_header .logo_header {
  width: auto;
  height: 40px;
  border-radius: 12px;
}
.header .content_header .logo_header img {
  -o-object-fit: contain;
     object-fit: contain;
}
.header .content_header .right_header {
  display: flex;
  align-items: center;
  gap: 44px;
}
.header .content_header .right_header .menu_header {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header .content_header .right_header .menu_header li {
  position: relative;
}
.header .content_header .right_header .menu_header li.active a {
  color: var(--color-secondary);
  font-weight: 700;
}
.header .content_header .right_header .menu_header li:after {
  content: "";
  position: absolute;
  height: 20px;
  width: 100%;
  background: transparent;
  top: 20px;
  left: 0;
}
.header .content_header .right_header .menu_header li .sub_menu_desktop {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgb(228, 228, 228);
  width: 200px;
  color: var(--color-primary);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header .content_header .right_header .menu_header li .sub_menu_desktop .item_sub_menu {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 12px;
  cursor: pointer;
  color: var(--color-primary);
}
.header .content_header .right_header .menu_header li .sub_menu_desktop .item_sub_menu:hover {
  color: var(--color-secondary);
}
.header .content_header .right_header .menu_header li .sub_menu_desktop .item_sub_menu:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.header .content_header .right_header .menu_header li .sub_menu_desktop.active {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s ease;
}
.header .content_header .right_header .menu_header li a {
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .content_header .right_header .menu_header li a:hover {
  color: var(--color-secondary);
}
.header .content_header .right_header .list_widget_header {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .content_header .right_header .list_widget_header .search_header {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.header .content_header .right_header .list_widget_header .search_header .box_search {
  position: absolute;
  top: calc(100% + 25px);
  right: 0;
  padding: 13px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
  border-radius: 8px;
  border: 1px solid rgb(228, 228, 228);
  pointer-events: none;
  opacity: 0;
}
.header .content_header .right_header .list_widget_header .search_header .box_search.active {
  pointer-events: auto;
  opacity: 1;
}
.header .content_header .right_header .list_widget_header .search_header .box_search .icon {
  position: absolute;
  top: -2px;
  right: -2px;
  color: rgb(228, 228, 228);
}
.header .content_header .right_header .list_widget_header .search_header .box_search .icon i {
  color: rgb(139, 139, 139);
}
.header .content_header .right_header .list_widget_header .search_header .box_search input {
  border: 1px solid rgb(228, 228, 228);
  border-radius: 8px;
  width: 290px;
  padding: 10px 5px 10px 30px;
  outline: none;
}
.header .content_header .right_header .list_widget_header .search_header .box_search .fa-search {
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
  left: 20px;
  color: rgb(139, 139, 139);
}
.header .content_header .right_header .list_widget_header .search_header i {
  color: var(--color-primary);
}
.header .content_header .header_menu_mobile {
  display: none;
  width: 30px;
  height: 20px;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  cursor: pointer;
  margin-top: 20px;
}
.header .content_header .header_menu_mobile span {
  display: block;
  position: absolute;
  height: 3px;
  width: 30px;
  border-radius: 8px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  background: var(--color-primary);
}
.header .content_header .header_menu_mobile span:nth-child(1) {
  top: -10px;
}
.header .content_header .header_menu_mobile span:nth-child(2) {
  top: 0;
}
.header .content_header .header_menu_mobile span:nth-child(3) {
  top: 10px;
}
@media (max-width: 767px) {
  .header .content_header .header_menu_mobile {
    display: block;
  }
}
@media (max-width: 1439px) and (min-width: 1050px) {
  .header .left_header .title_logo {
    font-size: 18px !important;
  }
  .header .content_header .right_header {
    gap: 36px;
  }
  .header .content_header .right_header .menu_header li a {
    margin: 0 10px;
    font-size: 12px;
  }
}
@media (max-width: 1050px) {
  .header {
    display: none;
  }
}

.header_mobile {
  display: none;
  background: var(--color-white);
  height: 60px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 9999;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.0392156863);
  top: 0;
  left: 0;
}
.header_mobile .logo_header {
  margin-left: 0;
}
@media (min-width: 1200px) {
  .header_mobile {
    justify-content: unset;
  }
}
.header_mobile .nav_menu_mobile,
.header_mobile .nav__sub {
  margin-top: 0;
  margin-bottom: 0;
  padding: 15px;
  list-style-type: none;
}
.header_mobile .item_menu_sub_mobile {
  font-size: 18px !important;
  line-height: 1.3;
  padding: 4px 0;
}
.header_mobile .checkHeader, .header_mobile .item_menu_mobile {
  font-size: 20px !important;
}
.header_mobile .accordion-collapse .accordion-body {
  display: flex;
  flex-flow: column;
}
.header_mobile .accordion-collapse .accordion-body .accordion-item {
  padding-left: 15px;
}
.header_mobile .accordion-collapse .accordion-body .accordion-item a {
  color: var(--color-primary);
}
.header_mobile .accordion-collapse .accordion-body .accordion-item .accordion-body {
  padding-left: 15px !important;
}
.header_mobile .accordion-collapse .accordion-body .accordion-item .accordion-body .nav__link {
  font-size: 15px;
  border-bottom: 1px solid #797979;
  padding: 5px 0;
  color: #818181;
}
.header_mobile .accordion-collapse .accordion-body .accordion-item .accordion-body .nav__link:last-child {
  border-bottom: none;
}
.header_mobile .list_sub_menu_mobile .accordion-item .btn_primary {
  margin-left: 0;
}
.header_mobile .list_sub_menu_mobile .btn_primary {
  background: no-repeat;
  border: none !important;
  background: var(--color-blue);
  color: #fff;
  border-radius: 8px;
  text-align: left;
  justify-content: flex-start;
  /* padding: 12px 0 0 0; */
  /* border-bottom: 1px solid var(--color-blue) !important; */
  /* border-radius: 0; */
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 10px;
  margin-left: 15px;
  margin-top: 10px;
}
.header_mobile .list_sub_menu_mobile .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.231372549) !important;
}
.header_mobile .nav_menu_mobile {
  width: 400px;
  background-color: #fff;
  overflow: hidden;
  position: fixed;
  top: 60px;
  height: 100%;
  width: 100%;
  right: 0;
  transform: translate(150%, 0);
  transition: all 0.75s ease;
  padding-top: 24px;
  padding-bottom: 200px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.header_mobile .nav_menu_mobile.open {
  transform: none;
  overflow-y: scroll;
}
.header_mobile .nav_menu_mobile .btn_auth_acc {
  border-top: 1px solid rgba(137, 137, 137, 0.2196078431);
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  left: 0;
  z-index: 1;
  padding-bottom: 1rem;
}
.header_mobile .nav_menu_mobile .btn_auth_acc a.btn_trans, .header_mobile .nav_menu_mobile .btn_auth_acc a.btn_primary {
  width: 50%;
  margin: 0 10px;
}
.header_mobile .nav_menu_mobile .btn_trans:hover {
  color: #fff;
}
.header_mobile .list_menu_mobile {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(185, 185, 185, 0.29);
}
.header_mobile .list_menu_mobile .accordion-button {
  background: transparent !important;
  color: var(--color-body);
  padding: 3px 0 !important;
}
.header_mobile .list_menu_mobile .accordion-body {
  padding: 0 !important;
}
.header_mobile .list_menu_mobile .accordion {
  width: 100% !important;
}
.header_mobile .list_menu_mobile .item_menu_sub_mobile {
  font-weight: 400;
  color: #000;
}
.header_mobile .list_menu_mobile .accordion-button:not(.collapsed) {
  box-shadow: none !important;
}
.header_mobile .list_menu_mobile .accordion-item {
  border: none !important;
  padding: 4px 0;
  background-color: transparent !important;
}
.header_mobile .list_menu_mobile .item_menu_mobile {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
}
.header_mobile .list_menu_mobile .item_menu_mobile a {
  color: var(--color-primary);
}
.header_mobile .nav__item + .nav__item {
  margin-top: 15px;
}
.header_mobile .nav__item i {
  margin-left: 10px;
}
.header_mobile .nav__link {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  line-height: 2.5;
}
.header_mobile .logo img {
  width: 100px;
}
.header_mobile .list_widget_header {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}
.header_mobile .list_widget_header .list_social {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  gap: 12px;
}
.header_mobile .list_widget_header .list_social .item_social {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_mobile .list_widget_header .list_social .item_social i {
  color: var(--color-primary);
}
.header_mobile .list_widget_header .list_social .item_social:hover i {
  color: var(--color-secondary);
}
.header_mobile .list_widget_header .list_social i {
  color: var(--color-white);
}
.header_mobile .list_widget_header .search_header {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.header_mobile .list_widget_header .search_header i {
  color: var(--color-primary) !important;
}
.header_mobile .list_widget_header .search_header .box_search {
  position: absolute;
  top: calc(100% + 25px);
  right: 0;
  padding: 13px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
  border-radius: 8px;
  border: 1px solid rgb(228, 228, 228);
  pointer-events: none;
  opacity: 0;
}
.header_mobile .list_widget_header .search_header .box_search.active {
  pointer-events: auto;
  opacity: 1;
}
.header_mobile .list_widget_header .search_header .box_search .icon {
  position: absolute;
  top: -2px;
  right: -2px;
  color: rgb(228, 228, 228);
}
.header_mobile .list_widget_header .search_header .box_search .icon i {
  color: rgb(139, 139, 139);
}
.header_mobile .list_widget_header .search_header .box_search input {
  border: 1px solid rgb(228, 228, 228);
  border-radius: 8px;
  width: 290px;
  padding: 10px 5px 10px 30px;
  outline: none;
}
.header_mobile .list_widget_header .search_header .box_search .fa-search {
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
  left: 20px;
  color: rgb(139, 139, 139);
}
.header_mobile .list_widget_header .search_header i {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1200px) {
  .header_mobile {
    display: flex;
  }
}
@media (min-width: 1050px) {
  .header_mobile {
    display: none;
  }
}

.logo_header {
  margin-left: 15px;
  height: 40px;
  width: auto;
}

.animated-icon1 {
  display: block;
  margin-top: 0;
  width: 30px;
  height: 20px;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  cursor: pointer;
  margin-left: 10px;
  margin-top: 20px;
  margin-left: auto;
}
.animated-icon1 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 8px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  background: var(--color-primary);
}
.animated-icon1 span:nth-child(1) {
  top: -10px;
}
.animated-icon1 span:nth-child(2) {
  top: 0;
}
.animated-icon1 span:nth-child(3) {
  top: 10px;
}
.animated-icon1.open span:nth-child(1) {
  top: 0;
  transform: rotate(135deg);
}
.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -50px;
}
.animated-icon1.open span:nth-child(3) {
  top: 0;
  transform: rotate(-135deg);
}

.banner_primary {
  aspect-ratio: 1440/600;
  position: relative;
}
.banner_primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.banner_primary .txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 1;
}
.banner_primary .txt .title {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.banner_primary .txt .name {
  font-size: 92px;
  font-family: var(--font-alegreya);
  color: var(--color-white);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.84px;
}
@media (max-width: 1439px) {
  .banner_primary .txt .name {
    font-size: 76px;
    letter-spacing: -2.28px;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .banner_primary {
    margin-top: 60px;
  }
  .banner_primary .txt .title {
    font-size: 20px;
    letter-spacing: 0.32px;
  }
  .banner_primary .txt .name {
    font-size: 56px;
    letter-spacing: -1.12px;
  }
}
@media (max-width: 767px) {
  .banner_primary {
    aspect-ratio: unset;
    height: 300px;
  }
  .banner_primary .txt .title {
    font-size: 20px;
    letter-spacing: 0.32px;
    text-align: center;
    margin-bottom: 0;
  }
  .banner_primary .txt .name {
    font-size: 45px;
    letter-spacing: -1.68px;
    line-height: 1.15;
    text-align: center;
  }
}

.pageAboutThanhMau .--content {
  padding: 100px 0;
}
.pageAboutThanhMau .--content .txt {
  width: 50%;
  margin: 0 auto;
}
.pageAboutThanhMau .--content .txt .segTitle {
  margin-bottom: 44px;
  text-align: center;
}
.pageAboutThanhMau .--content .txt article {
  text-align: justify;
  line-height: 22px;
  margin-bottom: 52px;
}
.pageAboutThanhMau .--content .img_content {
  padding-bottom: 100px;
}
@media (max-width: 1050px) and (min-width: 768px) {
  .pageAboutThanhMau .--content .txt {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .pageAboutThanhMau .--content {
    padding: 40px 0;
  }
  .pageAboutThanhMau .--content .txt {
    width: 100%;
  }
  .pageAboutThanhMau .--content .txt .segTitle {
    margin-bottom: 24px;
  }
  .pageAboutThanhMau .--content .txt article {
    margin-bottom: 24px;
  }
  .pageAboutThanhMau .--content .img_content {
    padding-bottom: 40px;
  }
}

.list_library {
  display: flex;
  justify-content: center;
  margin: 0 -20px;
}
.list_library .item_library {
  padding: 0 20px;
  display: flex;
  flex-flow: column;
}
.list_library .item_library.active .book {
  animation: none;
  transform-style: unset;
  transform: none;
}
.list_library .item_library.active .book img {
  box-shadow: none;
}
.list_library .item_library.active .book::after {
  display: none;
}
.list_library .item_library.active .book::before {
  display: none;
}
.list_library .item_library .--img {
  aspect-ratio: 270/395;
}
.list_library .item_library .title_book {
  font-size: 20px;
  font-family: var(--font-Megante);
  text-align: center;
  color: var(--color-black);
  margin-top: 32px;
}
.homeFAQ {
  padding: 100px 0;
  background: rgb(246, 246, 246);
  position: relative;
}
.homeFAQ .container {
  position: relative;
  z-index: 2;
}
.homeFAQ .--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}
.homeFAQ .--top .btn_primary {
  background: rgb(246, 246, 246);
}
.homeFAQ .tab-content {
  width: 100%;
}
.homeFAQ .nav-tabs {
  gap: 8px;
  display: flex;
  border-bottom: none;
  flex-flow: row;
  margin-bottom: 52px;
  flex-flow: column;
}
.homeFAQ .nav-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgb(246, 246, 246);
  border-radius: 50px;
  height: 44px;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--color-black);
  font-weight: 500;
  width: 230px;
}
.homeFAQ .nav-tabs .nav-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: transparent;
}
.homeFAQ .nav-tabs .nav-link.active {
  border-color: transparent;
  background: var(--color-secondary);
  color: var(--color-white);
}
.homeFAQ .--tab {
  display: flex;
  gap: 115px;
  margin-bottom: 100px;
}
.homeFAQ .accordionFaqs .accordion-item {
  background-color: transparent;
  border: none;
}
.homeFAQ .accordionFaqs .accordion-header {
  align-items: center;
}
.homeFAQ .accordionFaqs .accordion-button {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 3px solid rgb(228, 228, 228);
  color: var(--color-black);
  font-size: 18px;
  font-weight: 700;
}
.homeFAQ .accordionFaqs .accordion-button::after {
  filter: brightness(20);
  width: 32px;
  height: 32px;
  background-color: transparent;
  border-radius: 50%;
  background-size: 44%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.5 7C13.5 7.5625 13.0312 8.03125 12.5 8.03125H8V12.5312C8 13.0625 7.53125 13.5 7 13.5C6.4375 13.5 6 13.0625 6 12.5312V8.03125H1.5C0.9375 8.03125 0.5 7.5625 0.5 7C0.5 6.46875 0.9375 6.03125 1.5 6.03125H6V1.53125C6 0.96875 6.4375 0.5 7 0.5C7.53125 0.5 8 0.96875 8 1.53125V6.03125H12.5C13.0312 6 13.5 6.46875 13.5 7Z" fill="black"/> </svg>');
}
.homeFAQ .accordionFaqs .accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.homeFAQ .accordionFaqs .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg width="10" height="2" viewBox="0 0 10 2" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9 2H1C0.4375 2 0 1.5625 0 1C0 0.46875 0.4375 0 1 0H9C9.53125 0 10 0.46875 10 1C10 1.5625 9.53125 2 9 2Z" fill="black"/> </svg>');
}
.homeFAQ .accordionFaqs .accordion-button:focus {
  box-shadow: none;
}
.homeFAQ .accordionFaqs .accordion-body {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}
.homeFAQ .img_decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.homeFAQ .formInformation {
  width: 100%;
  background: var(--color-secondary);
  padding: 70px 0;
  border-radius: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: -300px;
  overflow: hidden;
  position: relative;
}
.homeFAQ .formInformation .img_decor_1 {
  position: absolute;
  bottom: 0;
  left: -520px;
  width: 900px;
  height: auto;
}
.homeFAQ .formInformation .img_decor_2 {
  position: absolute;
  top: 0;
  right: -520px;
  width: 900px;
  height: auto;
}
.homeFAQ .formInformation .segTitle {
  margin-bottom: 24px;
  color: var(--color-white);
  text-align: center;
  position: relative;
  z-index: 2;
}
.homeFAQ .formInformation .desc {
  text-align: center;
  color: var(--color-white);
  width: 60%;
  margin: 0 auto 52px;
  z-index: 2;
  position: relative;
}
.homeFAQ .formInformation .--input {
  display: flex;
  align-items: center;
  z-index: 2;
  position: relative;
  flex-flow: column;
  gap: 8px;
}
.homeFAQ .formInformation .--input .--input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}
.homeFAQ .formInformation .--input button {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  border: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 136px;
}
.homeFAQ .formInformation .--input input {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0 20px;
  border: none;
  outline: none;
  height: 52px;
  width: calc(33.3333333333% - 5.3333333333px);
  color: var(--color-white);
}
.homeFAQ .formInformation .--input input::focus {
  outline: none !important;
}
.homeFAQ .formInformation .--input input::-moz-placeholder {
  color: var(--color-white);
}
.homeFAQ .formInformation .--input input::placeholder {
  color: var(--color-white);
}
.homeFAQ .formInformation .--input textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 12px 24px;
  border: none;
  min-height: 120px;
  color: #fff;
}
.homeFAQ .formInformation .--input textarea:focus {
  outline: none !important;
}
.homeFAQ .formInformation .--input textarea::-moz-placeholder {
  color: var(--color-white);
}
.homeFAQ .formInformation .--input textarea::placeholder {
  color: var(--color-white);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .homeFAQ {
    padding: 40px 0;
  }
  .homeFAQ .--tab {
    gap: 40px;
  }
  .homeFAQ .nav-tabs .nav-link {
    width: 170px;
  }
  .homeFAQ .accordionFaqs .accordion-button {
    font-size: 16px;
  }
  .homeFAQ .accordionFaqs .accordion-body {
    font-size: 14px;
    padding: 1rem 0;
    text-align: justify;
  }
  .homeFAQ .formInformation {
    padding: 15px;
    margin-bottom: -170px;
  }
  .homeFAQ .formInformation .desc {
    width: 100%;
    margin: 0 auto 24px;
  }
  .homeFAQ .formInformation .--input {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .homeFAQ .formInformation .--input input {
    width: calc(50% - 4px);
  }
  .homeFAQ .formInformation .--input button {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .homeFAQ {
    padding: 40px 0;
  }
  .homeFAQ .--tab {
    flex-flow: column;
    gap: 0px;
    margin-bottom: 40px;
  }
  .homeFAQ .--top {
    flex-flow: column;
    gap: 24px;
    margin-bottom: 24px;
  }
  .homeFAQ .nav-tabs {
    justify-content: center;
    flex-flow: row;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 0;
    padding-bottom: 24px;
  }
  .homeFAQ .nav-tabs .nav-link {
    width: -moz-max-content;
    width: max-content;
    border-radius: unset;
    background: transparent;
    color: var(--color-black);
    border: none;
    position: relative;
  }
  .homeFAQ .nav-tabs .nav-link.active {
    background: transparent;
    color: var(--color-black);
  }
  .homeFAQ .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
  }
  .homeFAQ .accordionFaqs .accordion-body {
    padding: 1rem 0;
    text-align: justify;
    font-size: 14px;
  }
  .homeFAQ .formInformation {
    padding: 15px;
    margin-bottom: -170px;
  }
  .homeFAQ .formInformation .desc {
    width: 100%;
    margin: 0 auto 24px;
  }
  .homeFAQ .formInformation .--input {
    width: 100%;
    flex-flow: column;
  }
  .homeFAQ .formInformation .--input input {
    width: 100%;
  }
  .homeFAQ .formInformation .--input button {
    font-size: 12px;
  }
}

.container_frame {
  width: var(--width-container);
  display: block;
  margin: auto;
}
@media (min-width: 1279px) and (max-width: 1439px) {
  .container_frame {
    width: calc(100% - 120px);
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .container_frame {
    width: calc(100% - 80px);
  }
}
@media (max-width: 767px) {
  .container_frame {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-left-section {
  padding-left: calc((100% - var(--width-container)) / 2);
}
@media (min-width: 1279px) and (max-width: 1439px) {
  .p-left-section {
    padding-left: 60px;
  }
}
@media (min-width: 769px) and (max-width: 1279px) {
  .p-left-section {
    padding-left: 40px;
  }
}
@media (max-width: 769px) {
  .p-left-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  height: 48px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0 !important;
}
.breadcrumb .list_link {
  display: flex;
  align-items: center;
  gap: 33px;
}
.breadcrumb .list_link .item_link {
  color: rgba(0, 0, 0, 0.4);
  position: relative;
}
.breadcrumb .list_link .item_link.active {
  color: var(--color-black);
}
.breadcrumb .list_link .item_link:nth-child(1)::after {
  display: none;
}
.breadcrumb .list_link .item_link::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Pro";
  left: -21px;
}

.popupLocation {
  z-index: 11;
  position: absolute;
  top: 50px;
  left: 24px;
  width: 30%;
  max-height: calc(100% - 80px);
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  flex-flow: column;
  height: auto;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
  border: 6px solid rgba(255, 255, 255, 0.3);
}
.popupLocation.active {
  opacity: 1;
  pointer-events: all;
}
.popupLocation .close_popup {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
}
.popupLocation .img_location {
  aspect-ratio: 342/190;
  border-radius: 16px 16px 0 0;
}
.popupLocation .img_location img {
  border-radius: 16px 16px 0 0;
}
.popupLocation .content_popup {
  padding: 12px 20px 16px 20px;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.popupLocation .content_popup .header_popup {
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.popupLocation .content_popup .header_popup .title {
  font-size: 13px;
  line-height: 1.84;
  color: var(--color-secondary);
  letter-spacing: 0.78px;
  text-transform: uppercase;
}
.popupLocation .content_popup .header_popup .name {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: -0.4px;
}
.popupLocation .content_popup .body_popup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.popupLocation .content_popup .body_popup .price_ticket {
  display: flex;
  align-items: center;
  gap: 8px;
}
.popupLocation .content_popup .body_popup .price_ticket .title {
  color: rgb(102, 102, 102);
}
.popupLocation .content_popup .body_popup .price_ticket .value {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.54px;
  color: var(--color-secondary);
}
.popupLocation .content_popup .body_popup .time_active {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(102, 102, 102);
}
.popupLocation .content_popup .body_popup .event_active {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 12px;
}
.popupLocation .content_popup .body_popup .event_active .title {
  color: rgb(102, 102, 102);
}
.popupLocation .content_popup .body_popup .event_active .--list {
  overflow: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popupLocation .content_popup .body_popup .event_active .--list::-webkit-scrollbar {
  width: 3px;
}
.popupLocation .content_popup .body_popup .event_active .--list::-webkit-scrollbar-thumb {
  background: rgb(244, 241, 235);
  border-radius: 3px;
}
.popupLocation .content_popup .body_popup .event_active .--list .item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.popupLocation .content_popup .body_popup .event_active .--list .item .--img {
  aspect-ratio: 94/80;
  border-radius: 10px;
  flex: 0 0 30%;
}
.popupLocation .content_popup .body_popup .event_active .--list .item .--img img {
  border-radius: 10px;
}
.popupLocation .content_popup .body_popup .event_active .--list .item .txt .name {
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popupLocation .content_popup .body_popup .event_active .--list .item .txt .date_time {
  color: rgb(102, 102, 102);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
@media (max-width: 1050px) {
  .popupLocation .close_popup {
    display: flex;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .popupLocation {
    width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    max-height: calc(100% - 80px);
  }
}
@media (max-width: 767px) {
  .popupLocation {
    width: calc(100% - 60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    max-height: 600px;
  }
}

.digitalMap {
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  position: relative;
}
.digitalMap .img_map {
  border-radius: 20px;
}
.digitalMap .list_marker {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.digitalMap .list_marker .item {
  position: absolute;
  background: var(--color-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 20px;
  border: 2px solid var(--color-white);
  cursor: pointer;
  z-index: 2;
}
.digitalMap .list_marker .item.active {
  background: var(--color-secondary);
}
.digitalMap .list_marker .item.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  z-index: -1;
}
.digitalMap .list_marker .item:hover {
  background: var(--color-secondary);
}
.digitalMap .list_marker .item:nth-child(1) {
  top: 30%;
  left: 60%;
}
.digitalMap .list_marker .item:nth-child(2) {
  top: 50%;
  left: 40%;
}
@media (max-width: 767px) {
  .digitalMap .popupLocation {
    max-width: calc(100% - 60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    position: fixed;
  }
  .digitalMap .popupLocation .close_popup {
    display: flex;
  }
}

.img_scale {
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}
.img_scale img {
  transition: all 0.5s ease;
}
.img_scale:hover {
  transition: all 0.5s ease;
}
.img_scale:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.bg_modal.active {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.list_popup_mobile {
  position: fixed;
  z-index: 100000;
}

.parallax_img {
  animation: parallax_img 12s ease-in-out infinite;
}

@keyframes parallax_img {
  0%, 100% {
    transform: translateY(0) rotate(6deg);
  }
  50% {
    transform: translateY(-30px) rotate(-8deg);
  }
}
@keyframes initAnimation {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-30deg);
  }
}
.book {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: 1s ease;
  animation: 1s ease 0s 1 initAnimation;
}

.book:hover {
  transform: rotateY(-30deg);
}
.book:hover::before {
  right: -8px;
}

.book > :first-child {
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  width: 100%;
  height: 100%;
  transform: translateZ(25px);
  background-color: #01060f;
  border-radius: 0 2px 2px 0;
  box-shadow: 5px 5px 20px #666;
}

.book::before {
  position: absolute;
  content: " ";
  background-color: blue;
  right: 0;
  top: 4px;
  width: 48px;
  height: calc(100% - 8px);
  background: linear-gradient(90deg, #fff 0%, #f9f9f9 5%, #fff 10%, #f9f9f9 15%, #fff 20%, #f9f9f9 25%, #fff 30%, #f9f9f9 35%, #fff 40%, #f9f9f9 45%, #fff 50%, #f9f9f9 55%, #fff 60%, #f9f9f9 65%, #fff 70%, #f9f9f9 75%, #fff 80%, #f9f9f9 85%, #fff 90%, #f9f9f9 95%, #fff 100%);
}

.book::after {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  transform: translateZ(-25px);
  background-color: #01060f;
  border-radius: 0 2px 2px 0;
  box-shadow: 9px 7px 15px #848484;
}

.btn_digital_map {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 100000;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 12px;
  font-weight: 500;
  border: 3px solid var(--color-white);
  cursor: pointer;
  overflow: hidden;
}
.btn_digital_map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  opacity: 0;
  width: 100%;
  transform: translate(-50%, -50%) scale(0);
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.btn_digital_map:hover {
  color: var(--color-white);
}
.btn_digital_map:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 767px) {
  .btn_digital_map {
    width: 52px;
    height: 52px;
  }
  .btn_digital_map span {
    display: none;
  }
}

.--listPopular .itemPopular {
  position: relative;
  width: 25vw;
  margin: 0 22px;
}
.--listPopular .itemPopular .--img {
  aspect-ratio: 393/482;
  position: relative;
}
.--listPopular .itemPopular .--img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.--listPopular .itemPopular .--bottom {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: calc(100% - 79px);
  right: 47px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.--listPopular .itemPopular .--bottom .date_time {
  font-size: 13px;
  color: var(--color-white);
  opacity: 0.6;
  margin-bottom: 12px;
}
.--listPopular .itemPopular .--bottom .name {
  font-size: 18px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.44;
}
.--listPopular .itemPopular .--bottom .btn_detail {
  color: var(--color-white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0.72px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.--listPopular .itemPopular .--bottom .btn_detail::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  opacity: 0;
  width: 100%;
  transform: translate(-50%, -50%) scale(0);
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.--listPopular .itemPopular .--bottom .btn_detail:hover {
  color: var(--color-white);
}
.--listPopular .itemPopular .--bottom .btn_detail:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .--listPopular .itemPopular {
    width: 50vw;
  }
}
@media (max-width: 767px) {
  .--listPopular .itemPopular {
    width: 70vw;
    margin: 0 10px;
  }
  .--listPopular .itemPopular .--bottom {
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    right: 20px;
    gap: 24px;
  }
  .--listPopular .itemPopular .--bottom .txt .name {
    font-size: 14px;
  }
  .--listPopular .itemPopular .--bottom .btn_detail {
    width: 40px;
    height: 40px;
  }
  .--listPopular .itemPopular .--bottom .btn_detail i {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */