@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.2/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
:root {
  --line-height: 1.425;
  --color-title: #383838;
  --color-title-hover: #000000;
  --color-sub_title: #FF7800;
  --color-description: #8F8F8F;
  --color-bg-navbar: #fff;
  --fs-title: 36px;
  --fs-sub_title: 24px;
  --fs-description: 20px;
  --fw-title: bold;
  --fw-description: 500;
}

html {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: #1f2642;
  line-height: var(--line-height);
  min-height: 100vh;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background-color: #fafafa;
}

body::-webkit-scrollbar-thumb {
  background-image: linear-gradient(-45deg, #6a5af9, #d66efd);
  border-radius: 50px;
}

.booking-modal-content {
  border-radius: 2rem;
  overflow: hidden;
  padding: 1.5rem;
}

.booking-modal-content .modal-header,
.booking-modal-content .modal-footer,
.booking-modal-content .modal-body {
  padding: 1.2rem 2rem;
}

.booking-modal-content .modal-header .modal-title {
  font-size: 22px;
  font-weight: 600;
}

.site-breadcrumb {
  width: 100%;
  float: left;
  background-color: #f9fafb;
  padding-top: .8rem;
  padding-bottom: .8rem;
  margin-bottom: 1rem;
}

.site-breadcrumb .breadcrumb {
  margin: 0;
  font-size: 15px;
}

.site-breadcrumb .breadcrumb a {
  color: var(--color-title);
  text-decoration: none;
}

.navbar-action {
  display: none;
  -ms-grid-columns: 2fr 1fr 60px;
      grid-template-columns: 2fr 1fr 60px;
  -webkit-column-gap: 5px;
          column-gap: 5px;
  width: 100%;
  background: white;
  -webkit-box-shadow: 0px -2px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0px -2px 3px rgba(0, 0, 0, 0.05);
  position: fixed;
  bottom: 0;
  z-index: 999;
}

.navbar-action a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  text-decoration: none;
  color: var(--color-title);
  cursor: pointer;
}

.navbar-action a .icon {
  font-size: 18px;
}

.navbar-action a .desc {
  margin-left: 10px;
}

.navbar-action a .desc span {
  font-weight: 600;
  font-size: 16px;
}

.navbar-action a .desc p {
  font-size: 12px;
}

.navbar-action a p {
  margin: 0;
}

.navbar-action .hotline {
  background-color: red;
  color: white;
}

.navbar-action .menu {
  background-color: #fafafa;
}

#loading {
  background-color: white;
  position: fixed;
  display: block;
  top: 0;
  bottom: 0;
  z-index: 1000000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  text-align: center;
}

#loading img {
  margin: auto;
  display: block;
  top: calc(50% - 100px);
  left: calc(50% - 10px);
  position: absolute;
  z-index: 999999;
}

@media all and (min-width: 992px) {
  .container-90 {
    width: 90%;
  }
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}

.header {
  background-color: #f8f9fa;
}

.header .top {
  font-size: 14px;
}

.header .top .social,
.header .top .hotline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  min-height: 40px;
}

.header .top .social a,
.header .top .hotline a {
  color: var(--color-title);
  text-decoration: none;
}

.header .top .social a:hover,
.header .top .hotline a:hover {
  color: var(--color-title-hover);
}

.header .top .social a + a,
.header .top .hotline a + a {
  margin-left: 1rem;
}

.header .top .hotline {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navbar-menu {
  font-size: 17px;
  padding: 0;
  background-color: var(--color-bg-navbar);
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}

.navbar-menu a {
  color: var(--color-title);
}

.navbar-menu .navbar-nav {
  -webkit-column-gap: 1.1rem;
          column-gap: 1.1rem;
  height: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-menu .navbar-nav .nav-link {
  font-weight: 500;
}

.navbar-menu .navbar-nav .dropdown-menu {
  font-size: 17px;
  margin: 0;
  padding: 0;
  min-width: 20rem;
  border: none;
  border-radius: 0;
  background-color: var(--color-bg-navbar);
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}

.navbar-menu .navbar-nav .dropdown-menu .dropdown-item {
  padding: 1rem 1.5rem;
}

.album {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  width: 100%;
  float: left;
}

.album .item-album {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.album .item-album img {
  height: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 2s;
  transition: -webkit-transform 2s;
  transition: transform 2s;
  transition: transform 2s, -webkit-transform 2s;
  /* Animation */
}

.album .item-album:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.album.album-number-5 .item-album:last-child {
  -ms-grid-column: 3;
      grid-column-start: 3;
  grid-column-end: 4;
  -ms-grid-row: 1;
      grid-row-start: 1;
  grid-row-end: 3;
}

.album.album-number-4 .item-album:last-child, .album.album-number-3 .item-album:last-child {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  grid-row-end: 4;
}

.album.album-number-2 {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.album.album-number-1 {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

a[data-fancybox] img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox__backdrop::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 10%;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  left: 50%;
  top: 50%;
  -webkit-transform: scale(11);
          transform: scale(11);
  opacity: 0.3;
  background-image: var(--bg-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.fancybox__container {
  --fancybox-bg: #000;
  --fancybox-thumbs-width: 48px;
  --fancybox-thumbs-ratio: 1;
  --carousel-button-bg: rgb(91 78 76 / 74%);
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
}

.fancybox__nav {
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
}

.fancybox__nav .carousel__button.is-prev {
  left: 20px;
}

.fancybox__nav .carousel__button.is-next {
  right: 20px;
}

.carousel__button.is-close {
  right: auto;
  top: 20px;
  left: 20px;
}

.fancybox__slide {
  padding: 8px 88px;
}

/* Thumbnails */
.fancybox__thumbs .carousel__slide {
  padding: 8px 8px 16px 8px;
}

.is-nav-selected::after {
  display: none;
}

.fancybox__thumb {
  border-radius: 6px;
  opacity: 0.4;
}

.fancybox__thumb:hover,
.is-nav-selected .fancybox__thumb {
  border-radius: 6px;
  opacity: 1;
}

.is-nav-selected .fancybox__thumb::after {
  display: none;
}

.introduct .body,
.home-project .body {
  font-size: 19px;
  font-weight: 400;
  line-height: 2rem;
}

.introduct .body a,
.home-project .body a {
  text-decoration: none;
  color: var(--color-sub_title);
}

.introduct .body img,
.home-project .body img {
  max-width: 100%;
}

.introduct {
  width: 100%;
  float: left;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.introduct .site-title,
.introduct .body {
  width: 100%;
  float: left;
}

.introduct .site-title {
  text-align: center;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--color-title);
}

.home-project {
  width: 100%;
  float: left;
  padding-bottom: 3rem;
}

.home-project .project-cate {
  width: 100%;
  float: left;
  -webkit-box-shadow: 0px 4px 10px rgba(182, 182, 182, 0.18);
          box-shadow: 0px 4px 10px rgba(182, 182, 182, 0.18);
  background-color: white;
}

.home-project .project-cate .nav-cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-project .project-cate .nav-cate a {
  display: block;
  text-decoration: none;
  color: var(--color-title);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.home-project .project-cate .nav-cate a.active {
  color: red;
}

.home-project .project-cate .nav-cate a span {
  font-weight: 600;
  margin-bottom: .2rem;
  font-size: 18px;
}

.home-project .project-cate .nav-cate a p {
  margin: 0;
  font-size: 14px;
}

.home-project .project-cate .nav-cate a + a {
  margin-left: 2rem;
}

.news {
  width: 100%;
  float: left;
  padding-bottom: 3rem;
}

.news .title {
  width: 100%;
  float: left;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.news .title::before, .news .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

.news .title::before {
  width: 100%;
  background-color: #f6f6f6;
}

.news .title::after {
  width: 10%;
  background-color: var(--color-sub_title);
}

.news .card-news {
  -webkit-box-shadow: 0px 0px 10px #0000000d;
          box-shadow: 0px 0px 10px #0000000d;
}

.news .card-news .image {
  height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.news .card-news .card-title {
  font-size: 18px;
  text-align: justify;
}

.news .card-news .card-title a {
  text-decoration: none;
  color: var(--color-title);
  font-weight: 600;
}

.news .card-news .card-text {
  text-align: justify;
}

.sidebar .sidebar-from {
  width: 100%;
  float: left;
  padding: 32px;
  top: 6rem;
  border-radius: 6px;
  text-align: center;
  background: rgba(242, 242, 242, 0.5);
}

.sidebar .sidebar-from .title,
.sidebar .sidebar-from .desc,
.sidebar .sidebar-from .action {
  width: 100%;
  float: left;
}

.sidebar .sidebar-from .title {
  font-size: 20px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 4px;
}

.sidebar .sidebar-from .action {
  margin-top: 1rem;
}

.sidebar .sidebar-from .action .btn {
  width: 70%;
  color: #fff;
  font-weight: 600;
  padding: 13px 15px;
  border-radius: 8px;
  background: #1DBABF;
  border: 1px solid #1DBABF;
}

.sidebar-news {
  width: 100%;
  float: left;
}

.sidebar-news .body,
.sidebar-news .title {
  width: 100%;
  float: left;
}

.sidebar-news .body,
.sidebar-news .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sidebar-news .body .item + .item {
  margin-top: 1rem;
}

.sidebar-news .body .item {
  width: 100%;
  float: left;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 1fr;
      grid-template-columns: 25% 1fr;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

.sidebar-news .body .item .image {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar-news .body .item .image img {
  max-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar-news .body .item .desc .name {
  font-size: 16px;
  font-weight: 700;
}

.sidebar-news .body .item .desc .name a {
  text-decoration: none;
  color: var(--color-title);
}

.sidebar-news .body .item .desc .name a:hover {
  color: var(--color-sub_title);
}

.sidebar-news .body .item .desc .text {
  font-size: 14px;
  color: #585858;
  text-align: justify;
  margin: 0;
}

.footer {
  width: 100%;
  float: left;
  background: #f2f2f2;
  padding-top: 3rem;
  padding-bottom: 6rem;
}

/*Ipad ngang(1024 x 768)*/
/*Ipad dọc(768 x 1024)*/
/*Tablet nhỏ(480 x 640)*/
@media screen and (max-width: 480px) {
  .navbar-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .navbar-menu .navbar-toggler {
    font-size: 2rem;
  }
  .news .card-news .image {
    height: 120px;
  }
  .news .card-news .card-title {
    font-size: 16px;
  }
  .news .card-news .card-body {
    padding: .5rem;
  }
  .news .card-news .card-body .card-text {
    display: none;
  }
  .home-project .project-cate {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
  }
  .home-project .project-cate .nav-cate {
    display: -webkit-box;
    overflow-y: scroll;
  }
  .home-project .project-cate .nav-cate a span {
    font-size: 16px;
  }
  .home-project .project-cate .nav-cate a p {
    font-size: 12px;
  }
  .site-breadcrumb {
    margin-bottom: auto;
  }
  .navbar-action {
    display: -ms-grid;
    display: grid;
  }
}

/*Iphone(480 x 640)*/
@media screen and (max-width: 320px) {
  .navbar-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .navbar-menu .navbar-toggler {
    font-size: 2rem;
  }
  .news .card-news .image {
    height: 120px;
  }
  .news .card-news .card-title {
    font-size: 16px;
  }
  .news .card-news .card-body {
    padding: .5rem;
  }
  .news .card-news .card-body .card-text {
    display: none;
  }
  .home-project .project-cate {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
  }
  .home-project .project-cate .nav-cate {
    display: -webkit-box;
    overflow-y: scroll;
  }
  .home-project .project-cate .nav-cate a span {
    font-size: 16px;
  }
  .home-project .project-cate .nav-cate a p {
    font-size: 12px;
  }
  .site-breadcrumb {
    margin-bottom: auto;
  }
  .navbar-action {
    display: -ms-grid;
    display: grid;
  }
}

/*Smart phone nhỏ*/
@media screen and (max-width: 240px) {
  .navbar-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .navbar-menu .navbar-toggler {
    font-size: 2rem;
  }
  .news .card-news .image {
    height: 120px;
  }
  .news .card-news .card-title {
    font-size: 16px;
  }
  .news .card-news .card-body {
    padding: .5rem;
  }
  .news .card-news .card-body .card-text {
    display: none;
  }
  .home-project .project-cate {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
  }
  .home-project .project-cate .nav-cate {
    display: -webkit-box;
    overflow-y: scroll;
  }
  .home-project .project-cate .nav-cate a span {
    font-size: 16px;
  }
  .home-project .project-cate .nav-cate a p {
    font-size: 12px;
  }
  .site-breadcrumb {
    margin-bottom: auto;
  }
  .navbar-action {
    display: -ms-grid;
    display: grid;
  }
}

@media (max-width: 390px) and (min-width: 576px) {
  .navbar-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .navbar-menu .navbar-toggler {
    font-size: 2rem;
  }
  .news .card-news .image {
    height: 120px;
  }
  .news .card-news .card-title {
    font-size: 16px;
  }
  .news .card-news .card-body {
    padding: .5rem;
  }
  .news .card-news .card-body .card-text {
    display: none;
  }
  .home-project .project-cate {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
  }
  .home-project .project-cate .nav-cate {
    display: -webkit-box;
    overflow-y: scroll;
  }
  .home-project .project-cate .nav-cate a span {
    font-size: 16px;
  }
  .home-project .project-cate .nav-cate a p {
    font-size: 12px;
  }
  .site-breadcrumb {
    margin-bottom: auto;
  }
  .navbar-action {
    display: -ms-grid;
    display: grid;
  }
}
/*# sourceMappingURL=style.css.map */