/* config */
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
/* @import url("/content/fonts/UTMIsadoraBold.ttf"); */
html {
  font-size: 62.5%;
}


       
body {
  /* font-family: "Roboto", sans-serif; */
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;

  /* font-family: Dancing Script;  */
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  background-color: #fff;
  color: #1b1c1e;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

body::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}

body::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #d6a023;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
  content-visibility: auto;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

input,
button,
textarea,
select {
  /* font-family: "Roboto", sans-serif; */
  font-family: Dancing Script; 
  font-size: 1.6rem;
  font-weight: 400;
  outline: none;
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hide {
  display: none;
}

.text-red {
  color: #d6a023;
}

.btn,
.form-control,
.custom-select {
  font-size: 1.5rem;
}

header {
  position: relative;
}

.header .container-fluid {
  height: 100%;
}

.header {
 
  color:  #d6a023;;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background:  #62626271;
  backdrop-filter: blur(5px);
  box-shadow: 0px 3px 5px #0000000f;
  height: 80px;
  transition: all 0.3s ease;
}
.header.fixed {
  position: fixed;
  z-index: 5000;
  height: 80px;
  background:  #626262be;
  transition: all 0.5s ease;
}
.header__main {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}
.header__left {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__book {
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
  width:120px;
  max-width: 100%;
}
.header__phai {
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
  width:35px;
  max-width: 100%;
}
.header__right {
  margin-left: auto;
  text-align: right;
  display: flex;
  align-items: center;
  height: 100%;
  width: 480px;

}
.header__right a {
  /* color: #fff; */
  /* margin: 0 10px; */

}
.header__right a:hover {
  /* color: #d6a023; */
}
.header__logo {
  width: 8%;
}
.header__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  margin-left: 20px;
}
.header__contact {
  display: flex;
  /* font-size: 14px; */
}
.header__phone i {
  animation: ring-phone 1s 2s infinite;
  transition: all 0.3s linear;
}

@-webkit-keyframes ring-phone {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-moz-keyframes ring-phone {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-ms-keyframes ring-phone {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes ring-phone {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
.header__lang {
  position: relative;
  /* height: 100%; */
  display: flex;
  align-items: center;
}
.header__lang .dropdown-menu {
  /* transform: none !important; */
  /* top: 100% !important; */
  /* font-size: 15px; */
  padding: 0;
}
.header__lang .dropdown-menu li {
  padding: 0;
}
.header__lang a {
  display: block;
  /* padding: 5px 15px; */
  margin: 0;
  color: #d6a023;
}
.header__lang a:hover {
  background-color: #d6a023;
  color: #fff;
}

.lang-now {
  /* cursor: pointer; */
}

.fixed .header__logo {
  width: 8%;
  transition: all 0.5s ease;
}

.nav-menu {
  height: 100%;
}
.nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  

}
.nav__item {
  height: 100%;
  position: relative;

}
.nav__item a {
  height: 100%;
  position: relative;

    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

  
  font-size: 1rem;

}

.nav__item:hover .nav__link {
  color: #d6a023;
  /* font-weight: 800;
  font-size: 1.2rem; */
}
.nav__item:hover .nav__link::before {
  transform: scaleX(1);
  transition: all 0.3s;
}
.nav__item:hover .nav__child {
  visibility: visible;
  opacity: 1;
  transform: rotateX(0deg);
  transition: all 0.5;
}
.nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 15px;
  color: #fff;
  height: 100%;
  position: relative;
  transition: all 0.3s;
  text-transform: capitalize;
  /* text-shadow: 0px 0px 1px #ffffff; */
  
  z-index: 10;
  margin-bottom: 6px;
  font-size: 26px;
  
  /* line-height: 1.3; */
  /* letter-spacing: 1.5px; */

  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;

}
.nav__linkat {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 15px;
  color: #d6a023;
  font-weight: 500;
  height: 100%;
  position: relative;
  transition: all 0.3s;
  text-transform: capitalize;
  text-shadow: 0px 0px 2px #d6a023;
  background-color: #38383877;

  
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;

  z-index: 10;
  line-height: 1.3;
  letter-spacing: 1.5px;

}
.nav__link::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 65%;
  right: 15px;
  height: 1px;
  background: #d6a023;
  transform: scaleX(0);
  transition: all 0.3s;
}
.nav__child {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #d6a023ab;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transform: rotateX(90deg);
  transition: all 0.5s;
  box-shadow: 0px 3px 25px #00000033;
}
.nav__child li {
  padding: 8px 20px;
}
.nav__child li:hover a {
  padding-left: 10px;
  color: #333;
  border-color:  #626262;
  transition: all 0.3s ease;
}
.nav__child a {
  display: block;
  color: #ffffff;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.menu-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  transition-duration: 500ms;

  
  justify-content: center;
  align-items: center;
  color: #d6a023;
  font-size: 26px;
  font-family: "Phudu", sans-serif;
  /* font-optical-sizing: auto; */
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}
.menu-mobile.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition-duration: 500ms;
}
.menu__item {
  position: relative;
}
.menu__item .book-menu {
  width: 60%;
  margin-top: 20px;
  margin-left: 10px;
  border-radius: 5px;
  padding: 12px 22px;
}
.menu__link {
  display: block;
  padding: 10px 20px;
  background-color: #f2f4f8;
  border-bottom: 1px solid #fff;
  color: #333;
  font-weight: 500;
}
.menu__child {
  /* display: none; */
}
.menu__child a {
  display: block;
  padding: 8px 40px;
  color: #333;
}

.drop-icon {
  position: absolute;
  top: 5px;
  right: 8px;
  padding: 4px 10px;
  background-color: #d6a023;
  color: #fff;
  font-size: 22px;
  border-radius: 3px;
}

.drop-icon2 {
  position: absolute;
  top: 5px;
  right: 8px;
  padding: 4px 10px;
  background-color: #d6a023;
  color: #ff0000;
  font-size: 22px;
  border-radius: 3px;
}

.icon-mobile {
  padding: 20px;
}
.icon-mobile .menu-bar {
  margin-left: auto;
}

.menu-bar {
  width: 25px;
  height: 20px;
  position: relative;
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.menu-bar span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #d6a023; 
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.menu-bar span:nth-child(1) {
  top: 0px;
}

.menu-bar span:nth-child(2) {
  top: 9px;
}

.menu-bar span:nth-child(3) {
  top: 18px;
}

.menu-bar.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.menu-bar.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-bar.open span:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.search-btn {
  margin: 0 20px 0 20px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.search-btn:hover {
  color: #d6a023;
}
.search-btn span {
  width: 16px;
  cursor: pointer;
}
.search-btn .fa-times {
  color: #d6a023;
}

a.book-menu {
  background-color:  #d6a023;
  padding: 12px 15px;
  transition: all 0.3s linear;
  min-width: 140px;
  border-radius: 5px;
  line-height: 1;
  font-size: 15px;
  margin: 0;
  height: auto;
  z-index: 1;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1),
    4px 4px 5px 0px rgba(0, 0, 0, 0.1);
}
a.book-menu::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #d6a023;;
  border-radius: 5px;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1),
    4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
a.book-menu:hover {
  color: #fff;
 
}
a.book-menu:hover::after {
  left: 0;
  width: 100%;
}
a.book-menu:active {
  top: 2px;
}

.banner-home {
  position: relative;
}
.banner__item {
  position: relative;
}
.banner__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(1, 0, 6, 0.3));
  /* height: 300px; */
  z-index: 1;
  
}
.banner__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(1, 0, 6, 0.35));
  /* height: 300px; */
  z-index: 10;
}
.banner__img img {
  /* height: 100vh; */
}
.banner-page {
  position: relative;
}
.banner-page .banner__img img {
  /* height: 60vh; */
}
.banner-page .banner__caption h1 {
  font-size: 42px;
}
.banner__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 1px #000;
}

.owl-theme .owl-nav {
  margin-top: 0;
}

.owl-carousel .owl-nav button[class*="owl-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  font-size: 20px;
  color: #fff;
  /* background-image: url('files/images/next-96.png'); */
  /* width: 20px; */
  /* height: 20px; */
}
.owl-carousel .owl-nav button[class*="owl-"]:hover {
  background-color:  #d6a0233f;
  /* background-image: url('files/images/next-96.png'); */
  /* width: 20px; */
  /* height: 20px; */
}
.owl-carousel .owl-nav button[class*="owl-"]:focus {
  outline: none;
  border-radius: 50%;
}

.owl-carousel .owl-nav .owl-prev {
  left: -20px;

}

.owl-carousel .owl-nav .owl-next {
  right: -20px;
}

.banner-slide .owl-nav .owl-prev {
  left: 10px;
}

.banner-slide .owl-nav .owl-next {
  right: 10px;
}








.box {
  padding-top: 80px;
  padding-bottom: 80px;
  
}
.box__title {
  text-align: center;
  position: relative;
}
.box__title h3 {
  /* HN-Kaldista-Project */

  font-family: "Phudu", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;

  /* font-family: "Montserrat", sans-serif; */

  /* font-weight: <weight>; */
  font-style: normal;
  /* font-family: "UTM Isadora", sans-serif; */
  
  color:  #d6a023;

  font-size: 26px;
  font-weight: 500;
  /* font-family: "HN Kaldista Project", sans-serif; */
  /* font-family: Dancing Script;  */
  /* text-transform: uppercase; */
  margin-bottom: 0;
  display: block;
  line-height: 1.3;
  margin-bottom: 35px;
  letter-spacing: 1.5px;


}

.box__title a {
  /* font-family: "UTM Isadora", sans-serif; */
  /* font-family: Dancing Script;  */
  /* color: #d6a023; */
    /* HN-Kaldista-Project */
    /* font-family: "UTM Isadora", sans-serif; */
  
    color:  #d6a023;
  
    font-size: 32px;
    font-weight: 500;
    /* font-family: "HN Kaldista Project", sans-serif; */
    /* font-family: Dancing Script;  */
    /* text-transform: uppercase; */
    margin-bottom: 0;
    display: block;
    line-height: 1.3;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
}
.box__desc {
  text-align: center;
  color: #5f5f5f;
  position: relative;
}




.about-home {
  position: relative;
  padding-top: 100px;
  /* background: url(../file/images/chudu.png); */
  /* #626262 #D2A533 */
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  background-attachment: fixed;
}
.about-home::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    124deg,
    rgba(235, 241, 242, 0.95) 0%,
    rgba(235, 241, 242, 0.95) 68%,
    #D2A533 68%,
    #D2A533 100%
  );
  z-index: 3;
}
.about-home [class*="col-"] {
  position: relative;
  z-index: 5;
}
.about__content {
  z-index: 10;
  font-size: 16px;
  text-align: center;
  color: #000;
  position: absolute;
  right: 0;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 40px 30px;
  width: 120%;
  z-index: 10;
}
.about__title h4 {
  /* font-family: tohoma; */
  /* font-family: "Lobster", sans-serif; */
  /* font-family: "UTM Isadora", sans-serif; */
  /* font-family: "Dancing Script", sans-serif;  UTMAquarelle*/
  /* font-family: "HN Kaldista Project", sans-serif; */
 
    font-family: "Great Vibes", cursive;
    font-weight: 500;
  
  /* font-family: Dancing Script;  */
  /* font-weight: 400; */
  font-style: normal;
  /* font-family: UTMIsadoraBold;  */
  font-size: 30px;
  /* font-weight: 600; */
  /* text-transform: uppercase; */
  margin-bottom: 15px;
  color:  #d6a023;
}
.about__title h2 {
  /* font-family: tohoma; */
  /* font-family: "Lobster", sans-serif; */
  /* font-family: "UTM Isadora", sans-serif; */
  /* font-family: "Dancing Script", sans-serif;  UTMAquarelle*/
  /* font-family: "HN Kaldista Project", sans-serif; */
  /* font-family: "UTM Aquarelle", sans-serif; */
  /* font-weight: 400; */
  font-style: normal;
  /* font-family: UTMIsadoraBold;  */
  font-size: 25px;
  /* font-weight: 600; */
  /* text-transform: uppercase; */
  margin-bottom: 15px;
  color:  #d6a023;
}
.about__title .sub-title {
  font-weight: 300;
  color: #000000;
  position: relative;
  margin-bottom: 20px;
  font-size: 15px;
}
.about__title .sub-title::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 70px;
  height: 1px;
  background: #ddd;
  transform: translateX(-50%);
}
.about__desc {
  padding-top: 20px;
  line-height: 26px;
  color: #4a4a4a;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 30px;
  font-size: 15px;
}
.about__thumb {
  width: 100%;
  height: 100%;
  background: #fff;
  position: relative;
  z-index: 5;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0px 8px 30px -5px #0000008c;
}
.about__thumb img {
  height: 460px;
}

.view-more {
  color:  #d6a023;
  font-weight: 500;
  font-size: 1.6rem;
}
.view-more:hover {
  color:  #d6a023;
  text-decoration: underline;
}







.rooms {
  position: relative;
}
.codong {
  position: relative;
}

.two-circle {
  position: absolute;
  top: 100px;
  left: 10%;
  width: 120px;
  height: 120px;
  animation: triangle-rotate 20s linear infinite;
  z-index: 10;
}
.two-circle.right {
  left: auto;
  top: 10px;
  right: 10px;
}
/* vòng tròng quay  */
.circle-1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.5;
  background: #d6a023;
  animation: dot-scale 5s linear infinite;
}

.circle-2 {
  position: absolute;
  left: -15px;
  top: -30px;
  width: 60%;
  height: 60%;
  background:  #d6a023;
  opacity: 0.5;
  border-radius: 50%;
  /* z-index: 1; */
  animation: dot-scale 5s linear infinite;
}

@keyframes triangle-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dot-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.room__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.codong__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.room__img {
  width: 56%;
}
.codong__img {
  width: 56%;
}
.room__img img {
  /* height: 350px; */
}
.codong__img img {
  height: 60px;
}
.room__desc-wp {
  position: relative;
  width: 35%;
  z-index: 10;
}
.codong__desc-wp {
  position: relative;
  width: 44%;
  z-index: 10;
}
.room__desc {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid  #d6a023;;
  padding: 40px 110px 40px 50px;
  width: 114%;
  z-index: 5;
}
.codong__desc {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid  #d6a023;;
  padding: 40px 110px 40px 50px;
  width: 114%;
  z-index: 5;
}
.room__name a {
  position: relative;
  z-index: 10;
  display: block;
  margin-bottom: 6px;
  font-size: 26px;
  text-transform: uppercase;
  font-family: "Phudu", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color:  #d6a023;
  line-height: 1.3;
  letter-spacing: 1.5px;

  font-size: 2rem;
  margin-bottom: 35px;
  
}
.codong__name a {
  position: relative;
  z-index: 10;
  display: block;
  margin-bottom: 6px;
  font-weight: 300;
  color: #333;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.8;
  letter-spacing: 1px;
}
/* giao diện khi đưa chuột vào tên phòng trang chủ */
.room__name a:hover {
  color:  #d6a023; 
}
.codong__name a:hover {
  color:  #d6a023; 
}
.room__info {
  list-style: disc;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.codong__info {
  list-style: disc;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.room__info li {
  list-style-type: disc;
  margin: 0 15px;
  color: #33312d;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.codong__info li {
  list-style-type: disc;
  margin: 0 15px;
  color: #33312d;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.room__info li:first-child {
  list-style-type: none;
}
.codong__info li:first-child {
  list-style-type: none;
}
.room__text {
  line-height: 26px;
  color: #33312d;
  margin-bottom: 30px;
  letter-spacing: 0.6px;
  font-size: 15px;
}
.codong_text {
  line-height: 26px;
  color: #33312d;
  margin-bottom: 30px;
  letter-spacing: 0.6px;
  font-size: 15px;
}

.room-slide .owl-nav button[class*="owl-"] {
  
  color: #d6a023;
  /* font-family: 'Lato', sans-serif; */
  background-image: url('/files/next-96.png');
  width: 55px;
  height: 55px;
  font-size: 50px;
  
}

.codong-slide .owl-nav button[class*="owl-"] {
  
  color: #d6a023;
  /* font-family: 'Lato', sans-serif; */
  background-image: url('/files/next-96.png');
  width: 55px;
  height: 55px;
  font-size: 50px;
  
}

.room-slide .owl-nav button[class*="owl-"] {
  background: transparent;
}
.codong-slide .owl-nav button[class*="owl-"] {
  background: transparent;
}

.room-slide .owl-prev {
  left: 0px;
}
.codong-slide .owl-prev {
  left: 0px;
}

.room-slide .owl-next {
  right: 10px;
}
.codong-slide .owl-next {
  right: 10px;
}
.view-all {
  color: #d6a023;
  font-size: 18px;
}

.ser__item {
  position: relative;
}

.ser-home {
  background-color: #ebf1f242;
}
.ser-codong {
  background-color: #ebf1f200;
}
.ser-home__item {
  display: block;
  overflow: hidden;
  position: relative;
  color: #ffffff;
  
}
.ser-codong__item {
  display: block;
  overflow: hidden;
  position: relative;
  color: #ffffff;
  
}
.ser-home__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(13, 64, 80, 0.096) 0%, rgba(13, 64, 80, 0.658) 100%);
  z-index: 1;
}
.ser-codong__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(to bottom, rgba(13, 64, 80, 0) 0%, rgba(13, 64, 80, 0.658) 100%); */
  z-index: 1;
}
.ser-home__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  transform: translateY(90%);
  transition: all 0.35s;
}
.ser-codong__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  transform: translateY(100%);
  transition: all 0.35s;
}
.ser-home__item:hover {
  color: #fff;
}
.ser-codong__item:hover {
  color: #fff;
}
.ser-home__item:hover::after {
  transform: translateY(0);
  transition: all 0.35s;
}
.ser-codong__item:hover::after {
  transform: translateY(0);
  transition: all 0.35s;
}
.ser-home__item:hover .ser-home__cont {
  transform: translateY(30%);
  transition: all 0.35s;
}
.ser-codong__item:hover .ser-codong__cont {
  transform: translateY(50%);
  transition: all 0.35s;
}
.ser-home__item:hover .ser-home__text {
  opacity: 1;
  visibility: visible;
  transition: all 0.35s;
  height: 100%;
  /* position: relative; */

    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
  
  font-size: 1.1rem;

}
.ser-codong__item:hover .ser-codong__text {
  opacity: 1;
  visibility: visible;
  transition: all 0.35s;
  height: 100%;
  /* position: relative; */

    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
  
  font-size: 1.1rem;

}
.ser-home__img img {
  height: 420px;
}
.ser-home__cont {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  padding: 12px 20px;
  transform: translateY(85%);
  transition: all 0.35s;
}
.ser-codong__cont {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  padding: 12px 20px;
  transform: translateY(100%);
  transition: all 0.35s;
}
.ser-home__name {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 10;
  display: block;
  line-height: 1.8;
  letter-spacing: 1px;
  font-family: "Phudu", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color:  #ffffff;
}
.ser-codong__name {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 10;
  display: block;
  line-height: 1.8;
  letter-spacing: 1px;
  font-family: "Phudu", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color:  #ffffff;
}
.ser-home__text {
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
}
.ser-codong__text {
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
}

.video {
  position: relative;
}
.video .two-circle {
  z-index: 5;
}
.video [class*="col-"] {
  padding: 0;
}
.video__img {
  background-image: url(../images/gallery4.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 460px;
  position: relative;
}
.video__img1 {
    background-image: url(../images/icon/icon-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 200px;
    
    position: relative;
}
.video__img1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.video__img1 img {
    width: 60px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video__img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}
.video__img img {
  width: 60px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video__title {
  background-color:  #d6a023;
  color: #fff;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 15px;
}
.video__title h3 {
  font-size: 50px;
  margin-bottom: 20px;
  font-family: Dancing Script; 
  /* font-family: tohoma; */
  position: relative;
  z-index: 10;
}
.video__title h6 {
  font-size: 16px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.bg-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000bf;
  z-index: 1200;
}
.bg-video.active {
  display: block;
}

.video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
}

.close-video {
  position: absolute;
  right: 20px;
  top: 0px;
  font-size: 38px;
  color: #fff;
  cursor: pointer;
}

.review {
  background: url(../../files/images/background/review.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.review::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #d6a023);
  z-index: 1;
}
.review [class*="col-"] {
  padding: 0;
}
.review__img {
  position: relative;
  width: 100%;
  height: 100%;
}
.review__img img {
  height: 460px;
}
.review__title {
  text-align: center;
  text-shadow: 0px 0px 1px #000;
  color: #fff;
  position: relative;
  z-index: 5;
  margin-bottom: 30px;
}
.review__title h3 {
  font-size: 34px;
  /* font-family: tohoma; */
  font-family: Dancing Script; 
  /* text-transform: uppercase; */
  margin-bottom: 20px;



  
  font-family: "Phudu", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;

  /* font-family: "Montserrat", sans-serif; */

  /* font-weight: <weight>; */
  font-style: normal;
  /* font-family: "UTM Isadora", sans-serif; */
  
  color:  #ffffff;

  font-size: 32px;
  font-weight: 500;
  /* font-family: "HN Kaldista Project", sans-serif; */
  /* font-family: Dancing Script;  */
  /* text-transform: uppercase; */
  margin-bottom: 0;
  display: block;
  line-height: 1.3;
  margin-bottom: 35px;
  letter-spacing: 1.5px;
}
.review__title h6 {
  font-size: 16px;
}
.review__content {
  padding: 80px 100px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.review__list {
  background: #fff;
  padding: 50px 30px;
  border-radius: 3px;
}
.review__avatar {
  text-align: center;
  margin-bottom: 20px;
}
.review__avatar img {
  display: inline-block !important;
  width: 80px !important;
  height: 80px;
  border-radius: 100%;
}
.review__comment {
  margin-bottom: 30px;
}

.review__list .owl-nav {
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
}

.review__list .owl-nav button[class*="owl-"] {
  position: static;
  transform: none;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #333;
  border-radius: 3px;
}

.web-3rd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
  background-image: linear-gradient(45deg, rgba(225, 166, 255, 0.9) 0%, #a1e3f5 52%, rgba(255, 186, 82, 0.712) 90%);
}
.web-3rd h3 {
  font-size: 26px;
  text-transform: capitalize;
  /* font-family: "Varela Round", sans-serif; */
  font-family: Dancing Script; 
  font-weight: 700;
  color: #fff;
}
.web-3rd a {
  width: 10%;
  margin: 0 10px;
}
.web-3rd img {
  height: auto;
}

.galleries {
  /* background-color: #ebf1f260; */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 10px 10px;
  grid-template-areas: "g1 g1 g2 g3 " "g1 g1 g4 g5 ";
  margin-bottom: 30px;
}
.codong {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 10px 10px;
  grid-template-areas: "g1 g1 g2 g3 " "g1 g1 g4 g5 ";
  margin-bottom: 30px;
}
.gallery__item {
  position: relative;
}
.codong__item {
  position: relative;
}
.gallery__item a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.codong__item a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.gallery__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #14404a8e;
  z-index: 1;
  display: none;
}
.codong__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #14404a8e;
  z-index: 1;
  display: none;
}
.gallery__item span.fal {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3);
  font-size: 26px;
  color: #fff;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.codong__item span.fal {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3);
  font-size: 26px;
  color: #fff;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.gallery__item a:hover::before {
  display: block;
}
.codong__item a:hover::before {
  display: block;
}
.gallery__item a:hover img {
  transform: scale(1.1);
  transition: all 0.9s ease;
}
.codong__item a:hover img {
  transform: scale(1.1);
  transition: all 0.9s ease;
}
.gallery__item a:hover span.fal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1.2);
  transition: all 1s ease;
}
.codong__item a:hover span.fal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1.2);
  transition: all 1s ease;
}
.gallery__item:first-child {
  grid-area: g1;
}
.codong__item:first-child {
  grid-area: g1;
}
.gallery__item:nth-child(2) {
  grid-area: g2;
}
.codong__item:nth-child(2) {
  grid-area: g2;
}
.gallery__item:nth-child(3) {
  grid-area: g3;
}
.codong__item:nth-child(3) {
  grid-area: g3;
}
.gallery__item:nth-child(4) {
  grid-area: g4;
}
.codong__item:nth-child(4) {
  grid-area: g4;
}
.gallery__item:nth-child(5) {
  grid-area: g5;
}
.codong__item:nth-child(5) {
  grid-area: g5;
}
.gallery__item:nth-child(6) {
  grid-area: g6;
}
.codong__item:nth-child(6) {
  grid-area: g6;
}
.gallery__item img {
  height: 100%;
  transform: scale(1);
  transition: all 0.9s ease;
}
.codong__item img {
  height: 100%;
  transform: scale(1);
  transition: all 0.9s ease;
}

.map-home {
  padding-top: 20px;
}

.map-wp {
  padding: 15px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.back-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color:  #d6a023;
  display: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
  z-index: 1000;
}

@media (min-width: 1200px) {
  .footer .container {
    max-width: 1200px;
  }
}
.footer {
 
  /* background: url(../../files/images/background/review.jpg); */
  background-image: url(../../files/images/background/footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 80px 0 0;
  /* background-color:#6262620e; */
    /* #626262 #D2A533 */
  color: #fff;
  line-height: 32px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background:#62626221;
}
.footer__head {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  /* font-family: "UTM Seagull", sans-serif; */
}
.footer__list li {
  margin-bottom: 5px;
}
.footer__list li i {
  margin-right: 10px;
  color:#D2A533;
}
.footer__list a {
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
}
.footer__detail {
  margin-bottom: 70px;
}
.footer__form .form-group {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
.footer__link:hover {
  color: #D2A533;
}
.footer .sub-btn {
  position: absolute;
  right: 1px;
  top: 0;
  bottom: 0;
  background: #D2A533;
  margin: 1px;
  width: 32px;
  height: 32px;
  border-radius: 50px;
  color: #fff;
}
.footer .sub-btn:focus,
.footer .sub-btn:hover {
  outline: none;
  opacity: 0.8;
}
.footer__form .form-control {
  height: 34px;
}

.copy-right {
  position: relative;
  z-index: 1;
}
.copy-right .container {
  padding: 10px 0;
  border-top: 1px solid #b6b6b6;
}

.cr-text {
  font-size: 15px;
}

.cr-detail {
  text-align: center;
}

.social {
  font-size: 16px;
}
.social a {
  display: inline-flex;
  color: #fff;
  margin: 0 5px;
  border-radius: 100%;
  background: #d6a023;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.social a:hover {
  color: #fff;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* ------- Room list page----- */
.rooms-wp {
  position: relative;
  color: #ffffff;
  /* background: url(../images/gallery4.JPG); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.codong-wp {
  position: relative;
  color: #fff;
  /* background: url(../images/gallery4.JPG); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.rooms-wp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.935);
}
.codong-wp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.935);
}
.room-title {
  position: relative;
}

.codong-title {
  position: relative;
}
.room-title h3 {

  color: #d6a023;

}
.codong-title h3 {

  color: #d6a023;

}

.room-item {
  margin-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0px 3px 30px #0000002b;
  position: relative;
}
.codong-item {
  margin-bottom: 30px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0px 3px 30px #0000002b;
  position: relative;
}
.room-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.281);
  transition: all 0.3s ease;
}
.codong-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.281);
  transition: all 0.3s ease;
}
.room-item:hover::before {
  background: #14404ac5;
  transition: all 0.3s ease;
}
.codong-item:hover::before {
  background: #14404ac5;
  transition: all 0.3s ease;
}
.room-item:hover .room-name a {
  top: 0;
  transition: all 0.35s;
}
.codong-item:hover .codong-name a {
  top: 0;
  transition: all 0.35s;
}
.room-item:hover .room-line {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
  transition-duration: 0.35s;
}
.codong-item:hover .codong-line {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
  transition-duration: 0.35s;
}
.room-item:hover .room__info {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.06s;
  transition-duration: 0.35s;
}
.codong-item:hover .codong__info {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.06s;
  transition-duration: 0.35s;
}
.room-item:hover .room-text {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.06s;
  transition-duration: 0.35s;
}
.codong-item:hover .codong-text {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.06s;
  transition-duration: 0.35s;
}
.room-item:hover .room_btn {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.06s;
  transition-duration: 0.35s;
}
.codong-item:hover .codong_btn {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.06s;
  transition-duration: 0.35s;
}
.room-img {
  position: relative;
  overflow: hidden;
}
.codong-img {
  position: relative;
  overflow: hidden;
}
.room-img img {
  transition: all 0.5s linear;
  height: 360px;
}
.codong-img img {
  transition: all 0.5s linear;
  /* height: 60px; */
}




.room-detail {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px 40px;
  z-index: 5;
}
.codong-detail {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px 40px;
  z-index: 5;
}
.room-detail .room__info {
  margin-bottom: 15px;
  padding: 0;
  font-size: 15px;
  transform: translate3d(-150%, 0, 0);
  transition-delay: all 0.15s 0.35s;
}
.codong-detail .codong__info {
  margin-bottom: 15px;
  padding: 0;
  font-size: 15px;
  transform: translate3d(-150%, 0, 0);
  transition-delay: all 0.15s 0.35s;
}
.room-detail .room__info li {
  color: #ffffff;
}
.codong-detail .codong__info li {
  color: #fff;
}
.room-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-bottom: 20px;
  transform: translate3d(150%, 0, 0);
  transition-delay: all 0.2s 0.35s;
}
.codong-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-bottom: 20px;
  transform: translate3d(150%, 0, 0);
  transition-delay: all 0.2s 0.35s;
}
.room-name a {
  display: inline-block;
  position: relative;
  top: -65px;
  transition: all 0.35s;
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  margin: 10px 0;
  outline: none;
  border: 0;
}
.codong-name a {
  display: inline-block;
  position: relative;
  top: -65px;
  transition: all 0.35s;
  color: #fff;
  font-size: 8px;
  text-transform: uppercase;
  margin: 10px 0;
  outline: none;
  border: 0;
}
.room-name a:hover {
  color: #fff;
}
.codong-name a:hover {
  color: #fff;
}
.room-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* height: 48px; */
  margin-bottom: 30px;
  letter-spacing: 0.35px;
  transform: translate3d(-150%, 0, 0);
  transition-delay: all 0.1s 0.35s;
}
.codong-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
  margin-bottom: 30px;
  letter-spacing: 0.35px;
  transform: translate3d(-150%, 0, 0);
  transition-delay: all 0.1s 0.35s;
}
.room_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translate3d(-150%, 0, 0);
  transition-delay: all 0.05s 0.35s;
}
.codong_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translate3d(-150%, 0, 0);
  transition-delay: all 0.05s 0.35s;
}

a.detail-btn {
  display: block;
  color: #fff;
  text-transform: capitalize;
  background-color:  #d6a023;
  border-radius: 5px;
  position: relative;
  display: inline-block;
}
a.detail-btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px 15px;
  z-index: 1;
}
a.detail-btn span::before,
a.detail-btn span::after {
  position: absolute;
  content: "";
  background-color:  #d6a023;
  height: 1px;
}
a.detail-btn span::before {
  left: 0;
  top: 0;
  width: 0%;
  transition: all 500ms ease;
}
a.detail-btn span::after {
  right: 0;
  bottom: 0;
  width: 0%;
  transition: all 500ms ease;
}
a.detail-btn span:hover::after {
  width: 100%;
}
a.detail-btn span:hover::before {
  width: 100%;
}
a.detail-btn::after,
a.detail-btn::before {
  position: absolute;
  content: "";
  height: 0%;
  width: 1px;
  background-color: #d6a023;
}
a.detail-btn::after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
a.detail-btn::before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
a.detail-btn:hover {
  background: transparent;
  color:#d6a023;
  box-shadow: none;
}
a.detail-btn:hover::before {
  transition: all 500ms ease;
  height: 100%;
}
a.detail-btn:hover::after {
  transition: all 500ms ease;
  height: 100%;
}
a.detail-btn.room-btn:hover {
  color: #fff;
}

a.detail-btn.codong-btn:hover {
  color: #fff;
}
a.detail-btn.room-btn::after,
a.detail-btn.room-btn::before {
  background-color: #fff;
}

a.detail-btn.codong-btn::after,
a.detail-btn.codong-btn::before {
  background-color: #fff;
}
a.detail-btn.room-btn span::before,
a.detail-btn.room-btn span::after {
  background-color: #fff;
}

a.detail-btn.codong-btn span::before,
a.detail-btn.codong-btn span::after {
  background-color: #fff;
}

/* ------ Contact page ----- */
.contact-main {
  padding: 60px 0 60px 0;
  background-color: #f5f6fa;
}

.contact-wp {
  box-shadow: 0px 3px 22px #0000001a;
  border-radius: 5px;
  overflow: hidden;
}

.info-wrap {
  background-color: #d6a023;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  width: 100%;
}

.ct-title {
  color: #fff;
  font-weight: 400;
}

.info-box {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  line-height: 1.8;
}
.info-box a {
  color: #fff;
}
.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-icon span {
  color: #fff;
}
.info-text {
  width: calc(100% - 50px);
}
.info-text p {
  margin-bottom: 0;
}
.info-title {
  font-weight: 400;
  color: #fff;
}

.contact-wrap {
  padding: 50px;
  width: 100%;
  background-color: #fff;
}
.contact-wrap .ct-title {
  color: #000;
}

#contactForm label {
  font-weight: 500;
  font-size: 15px;
}

.contact-btn {
  background-color:  #d6a023;
  color: #fff;
}
.contact-btn:hover {
  color: #fff;
  background-color: #14404a;
}

.breadcrumb {
  padding: 8px 30px;
  border-radius: 0;
  background-color: #dfe4ea;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #d6a023;
}
.breadcrumb-item a:hover {
  color: #333;
}

/* --- detail room page --- */
.room-main .container {
  background: #fff;
  box-shadow: 0px 0px 30px -2px rgba(0, 0, 0, 0.205);
  padding: 30px;
  position: relative;
}
.codong-main .container {
  background: #fff;
  box-shadow: 0px 0px 30px -2px rgba(0, 0, 0, 0.205);
  padding: 30px;
  position: relative;
}

.room-img__slide {
  margin-bottom: 30px;
}
.codong-img__slide {
  margin-bottom: 30px;
}
.room-img__slide .item {
  position: relative;
}
.codong-img__slide .item {
  position: relative;
}
.room-img__slide .item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.164);
  z-index: 1;
}
.codong-img__slide .item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.164);
  z-index: 1;
}
.room-img__slide img {
  height: 420px;
}
.codong-img__slide img {
  height: 60px;
}

.room-img__slide .owl-nav button[class*="owl-"] {
  background-color: transparent;
}
.codong-img__slide .owl-nav button[class*="owl-"] {
  background-color: transparent;
}
.room-dt__title {
  padding-left: 10px;
  border-left: 5px solid #d6a023;
  line-height: 0.9;
  margin-bottom: 22px;
  color: #14404a;
  font-size: 24px;
  text-transform: uppercase;
  position: relative;
}
.codong-dt__title {
  padding-left: 10px;
  border-left: 5px solid #d6a023;
  line-height: 0.9;
  margin-bottom: 22px;
  color: #14404a;
  font-size: 24px;
  text-transform: uppercase;
  position: relative;
}
.room-dt__des {
  line-height: 32px;
  color: #636a76;
}
.codong-dt__des {
  line-height: 32px;
  color: #636a76;
}
.room-dt__des p {
  margin-bottom: 0;
}
.codong-dt__des p {
  margin-bottom: 0;
}
.room-dt__serv ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #14404a;
}
.codong-dt__serv ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #14404a;
}
.room-dt__serv li {
  width: calc(100% / 4);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  transition: all 0.35s;
}
.codong-dt__serv li {
  width: calc(100% / 4);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  transition: all 0.35s;
}
.room-dt__serv li > div {
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 35px 15px;
  border-radius: 5px;
  cursor: pointer;
}
.codong-dt__serv li > div {
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 35px 15px;
  border-radius: 5px;
  cursor: pointer;
}
.room-dt__serv li:hover {
  color: #d6a023;
}
.codong-dt__serv li:hover {
  color: #d6a023;
}
.room-dt__serv li:hover i {
  animation: bounce 1s both infinite;
}
.codong-dt__serv li:hover i {
  animation: bounce 1s both infinite;
}
.room-dt__serv i {
  color: #d6a023;
  margin-right: 6px;
  display: block;
  margin-bottom: 20px;
}
.codong-dt__serv i {
  color: #d6a023;
  margin-right: 6px;
  display: block;
  margin-bottom: 20px;
}
.room-dt__serv span {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
}
.codong-dt__serv span {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
}
.room__thumbnail {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  max-height: 420px;
  overflow-y: auto;
}
.codong__thumbnail {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  max-height: 420px;
  overflow-y: auto;
}
.room__thumbnail .item {
  width: 50%;
  padding: 0 5px 10px 5px;
  cursor: pointer;
}
.codong__thumbnail .item {
  width: 50%;
  padding: 0 5px 10px 5px;
  cursor: pointer;
}
.room__thumbnail .item img {
  border: 1px solid transparent;
}
.codong__thumbnail .item img {
  border: 1px solid transparent;
}
.room__thumbnail .item:hover img {
  border-color:  #d6a023;
}
.codong__thumbnail .item:hover img {
  border-color:  #d6a023;
}
.room-related .item {
  background-color: #fff;
  border: 1px solid #ddd;
}
.codong-related .item {
  background-color: #fff;
  border: 1px solid #ddd;
}
.room-related .item:hover {
  border: 1px solid #868686;
}
.codong-related .item:hover {
  border: 1px solid #868686;
}
.room-related .room-detail {
  position: static;
  transform: none;
  color: #333;
  padding: 20px 15px;
}
.codong-related .codong-detail {
  position: static;
  transform: none;
  color: #333;
  padding: 20px 15px;
}
.room-related .room-detail > * {
  transform: none;
}
.codong-related .codong-detail > * {
  transform: none;
  text-align: center;
}
.room-related .room-name a {
  top: 0;
  color: #333;
}
.codong-related .codong-name a {
  top: 0;
  color: #333;
  text-align: center;
}
.room-related .room__info li {
  color: #333;
}
.codong-related .codong__info li {
  color: #333;
  text-align: center;
}
.room-related .room-img img {
  height: 230px;
  
}
.codong-related .codong-img img {
  /* height: 80px; */
  width: 100%;
  padding: auto;
  text-align: center;
  
}
/* cổ đông */

/* .room-related .codong-img img {
  height: 80px;
} */
.room-sidebar {
  padding: 20px 30px;
  background-color: #d6a023;
  color: #fff;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 30px;
  margin-left: 15px;
}
.codong-sidebar {
  padding: 20px 30px;
  background-color: #d6a023;
  color: #fff;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 30px;
  margin-left: 15px;
}
.room-sidebar h3 {
  font-size: 26px;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  text-align: center;
}
.codong-sidebar h3 {
  font-size: 26px;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  text-align: center;
}




#book-room label {
  font-weight: 500;
}
#book-codong label {
  font-weight: 500;
}
#book-room .form-group {
  margin-bottom: 15px;
}
#book-codong .form-group {
  margin-bottom: 15px;
}
#book-room .form-control {
  font-size: 15px;
  height: 34px;
}
#book-codong .form-control {
  font-size: 15px;
  height: 34px;
}
#book-room .custom-select {
  font-size: 15px;
  height: 34px;
}
#book-codong .custom-select {
  font-size: 15px;
  height: 34px;
}
#book-room .check-avai {
  background-color: #00bae4;
  color: #fff;
  font-weight: 500;
  padding: 5px 20px;
  width: 100%;
  border-radius: 3px;
}
#book-codong .check-avai {
  background-color: #00bae4;
  color: #fff;
  font-weight: 500;
  padding: 5px 20px;
  width: 100%;
  border-radius: 3px;
}
#book-room .check-avai:hover {
  background-color: #14404a;
}
#book-codong .check-avai:hover {
  background-color: #14404a;
}
#book-room .check-avai:focus {
  border: 0;
  outline: 0;
}
#book-codong .check-avai:focus {
  border: 0;
  outline: 0;
}
/* ----- blogs  page ----- */
.blog-wp {
  /* position: relative;
  background: url(../images/gallery4.JPG);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed; */
}
.blog-wp::before {
  /* content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95); */
}

.post__item {
  margin-bottom: 40px;
  position: relative;
}
.post__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.226);
  z-index: 1;
}
.post__item:hover {
  box-shadow: 0px 0px 30px #0003;
}

.post__thumb {
  margin-bottom: 0;
  border-radius: 0;
  height: 100%;
}
.post__thumb img {
  height: 500px;
}

.post__content {
  padding: 30px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
}

.post__meta {
  margin-bottom: 5px;
  font-size: 15px;
}
.post__meta a {
  font-size: 15px;
}

.post__desc {
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 84px;
  color: #fff;
  font-weight: 300;
}

.post__title {
  margin-bottom: 20px;
}
.post__title a {
  text-transform: capitalize;
  font-size: 22px;
  color: #fff;
}
.post__title a:hover {
  color: #11fde7;
}

.detail-btn.blog-btn {
  background-color: transparent;
}
.detail-btn.blog-btn:hover {
  color: #fff;
}

/* --- blog detail page ---- */
.blog-post {
  line-height: 30px;
  margin-bottom: 30px;
}
.blog-post > div {
  text-align: center;
}
.blog-post img {
  height: 450px;
  width: 80%;
  margin-bottom: 20px;
}
.blog-post h3 {
  font-size: 26px;
  margin: 20px 0;
}

.blog-share {
  padding-top: 10px;
  margin-bottom: 30px;
}
.blog-share a {
  display: inline-block;
  padding: 3px 15px;
  margin-left: 5px;
  transition: all 0.3s ease;
  border-radius: 3px;
}
.blog-share a:hover {
  color: #fff;
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.facebook {
  background-color: #3b5998;
  color: #fff;
}

.twitter {
  background-color: #1bb2e9;
  color: #fff;
}

.google {
  background-color:  #d6a023;
  color: #fff;
}

/* --- booking page ---- */
.booking-main {
  padding-top: 80px;
}

#book_room {
  font-size: 15px;
}
#book_codong {
  font-size: 15px;
}
#book_room .form-control {
  height: 34px;
}
#book_codong .form-control {
  height: 34px;
}
#book_room [name="Request"] {
  height: auto;
}
#book_codong [name="Request"] {
  height: auto;
}

.book-img {
  position: relative;
  margin-bottom: 15px;
}
.book-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.151);
  z-index: 1;
}

.room-slected {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 5;
}
.codong-slected {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 5;
}
.room-slected span {
  display: inline-block;
  color: #fff;
  background-color: #d6a023;
  font-size: 15px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 3px;
}
.codong-slected span {
  display: inline-block;
  color: #fff;
  background-color: #d6a023;
  font-size: 15px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 3px;
}
.book-img img {
  height: 246px;
  border-radius: 5px;
}

.book_info-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 30px 15px;
  border-radius: 5px;
  background-color:  #626262;
  position: relative;
  z-index: 1;
}
.booking-complete {
  /* display: flex; */
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-size: 30px;
  background-color: #d6a023;
  position: relative;
  font-family: "UTM Seagull", sans-serif;
  z-index: 1;
}
.booking-complete-rooms {
  /* display: flex; */
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
  padding: 30px 15px;
  border-radius: 10px;
  border-color: #d6a023;
  border-style: inset;
  color: #d6a023;
  text-align: center;
  font-size: 15px;
  background-color:  #626262;
  position: relative;
  font-family: "UTM Seagull", sans-serif;
  z-index: 1;
}
.booking-complete-chitiet {
  /* display: flex; */
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
  padding: 5px 5px;
  border-radius: 10px;
  border-color:  #626262;
  color:#ffffff;;
  text-align: center;
  font-size: 20px;
  background-color: #d6a023;
  position: relative;
  font-family: "UTM Seagull", sans-serif;
  z-index: 1;
}
.group-left {
  width: 48%;
  text-align: center;
  background-color: #d6a023;
  color: #fff;
  padding: 15px 0px;
  border-radius: 5px;
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}
.group-left-rooms {
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;

  width: 99%;
  text-align: center;
  background-color: #d6a023;
  color: #fff;
  padding: 15px 0px;
  border-radius: 5px;
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
  
}
.b-info-title {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
}
.b-info-number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.b-info-number select {
  background:  #d6a023;
  color: #fff;
  font-size: 22px;
  width: 80px;
  font-weight: 500;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
}

[name="CheckIn"] {
    opacity: 0;
    position: absolute;
    bottom: 10px;
}
[name="CheckOut"] {
    opacity: 0;
    position: absolute;
    bottom: 10px;
}

.b-number {
  font-size: 40px;
  font-weight: 500;
}

.b-date {
  font-size: 40px;
  font-weight: 500;
}

.arow-select {
  font-size: 18px;
  margin-left: 6px;
}

.hidden-arow {
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.change-info {
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  background-color: #d6a023;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.5s ease;
}
.change-info:hover {
  color: #fff;
  background: linear-gradient(to right, #d6a023 0%,#d6a023 26%, #fff 26%, #fff 100%);
  transition: all 0.5s ease;
}

.book-right {
  padding: 0 30px;
}

#book_room label {
  font-weight: 500;
}

span.required {
  color:  #d6a023;
}

.submit-btn {
  background-color: #d6a023;
  color: #fff;
  font-weight: 500;
}
.submit-btn:hover {
  color: #fff;
  background-color: #14404a;
}

.change-form_wp {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d6a023;
  z-index: 10;
  border-radius: 5px;
  overflow: hidden;
}

.change-form {
  position: relative;
  z-index: 20;
  display: inline-flex;
  flex-wrap: wrap;
  top: 50%;
  transform: translateY(-50%);
}
.change-form .form-group {
  width: 50%;
  padding: 0 10px;
}
.change-form label {
  color: #fff;
  font-weight: 500;
}

.change-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* --- service page --- */
.services-wp {
  /* position: relative;
  background: url(../images/gallery4.JPG);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed; */
}
.services-wp::before {
  /* content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95); */
}

.article-main {
  line-height: 30px;
  position: relative;
}

.article-element:nth-child(even) {
  /* background: linear-gradient(to right, #fff 0%, #fff 80%, #ffe3a2  80%, #d6a023 100%); */
}
.article-element:nth-child(even) .row {
  flex-direction: row-reverse;
}

.article-element {
  padding: 0px 0px;
  margin-bottom: 40px;
  /* color:#626262; */
  /* box-shadow: 0px 0px 30px #0000004d; */
  /* border-radius: 8px; */
  /* background: linear-gradient(to right, #d6a023 0%,#ffe3a2 20%, #fff 20%, #fff 100%); */
}

.article-box {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 5px #0000000f;
  border: 2px solid #d6a023;;
}

.article-image {
  padding: 5px;
  border-radius: 5px;
  background-color: #fff;
  position: relative;
}
.article-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 5px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #00000085; 
  /* background: rgba(0, 0, 0, 0.144); */
  z-index: 1;
}
/* .article-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.144);
  z-index: 1;
} */
.article-image img {
  /* height: 45vh; */
  border-radius: 5px;
}
/* .article-image img {
  height: 45vh;
  border-radius: 5px;
} */

.article-text {
  width: 100%;
  height: 100%;
  font-weight: 300;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.article-text h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.article-text > div {
  display: -webkit-box;
  -webkit-line-clamp: none;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* height: 100%; */
}

.ser_detail-main img {
  height: 450px;
}

/* ---- About page ---- */
.about-page .container {
  background: #fff;
  position: relative;
  z-index: 10;
  padding: 30px 15px;
}
.about-page .about__content {
  width: 100%;
}

.about-box {
  position: relative;
}

.my-hotels {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.my-hotels-wp {
  padding: 20px;
}

.hotel-item {
  margin: 0 20px;
  width: 10%;
  height: 120px;
  overflow: hidden;
}
.hotel-item:hover a {
  transform: translateY(-120px);
  transition: 0.6s cubic-bezier(0.19, 0.8, 0.3, 1.8);
}
.hotel-item a {
  display: flex;
  flex-direction: column;
  transition: 0.6s cubic-bezier(0.19, 0.8, 0.3, 1.8);
}
.hotel-item a img:nth-child(2) {
  border-radius: 100%;
}
.hotel-item img {
  display: block;
  height: 120px;
}

/* ---- Gallery page ---- */
.gallery-box {
  margin-bottom: 80px;
}
.codong-box {
  margin-bottom: 80px;
}
.gallery-title {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 1px;
  display: inline-block;
  border-bottom: 2px solid #ec70a2;
  margin-bottom: 25px;
}
.codong-title {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 1px;
  display: inline-block;
  border-bottom: 2px solid #ec70a2;
  margin-bottom: 25px;
}
.gallery-item {
  position: relative;
  padding: 5px;
}
.codong-item {
  position: relative;
  padding: 5px;
}
.gallery-item img {
  border-radius: 5px;
  height: 300px;
}
.codong-item img {
  border-radius: 5px;
  /* height: 60px; */
}
.gallery-item:hover img {
  opacity: 0.8;
}
.codong-item:hover img {
  opacity: 0.8;
}
.gallery-item:hover i.fas {
  text-shadow: 0px 0px 10px #333;
}
.codong-item:hover i.fas {
  text-shadow: 0px 0px 10px #333;
}
.gallery-item i.fas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  z-index: 1;
  cursor: pointer;
}
.codong-item i.fas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  z-index: 1;
  cursor: pointer;
}
.img-element {
  margin-bottom: 60px;
}

.g-sub-title {
  color: #0f62ac;
  font-size: 18px;
  font-weight: 600;
  border-left: 3px solid #ff6900;
  padding-left: 8px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
}

.gallery-slide .owl-nav button[class*="owl-"] {
  background-color: #d6a023;
  width: 36px;
  height: 36px;
}
.codong-slide .owl-nav button[class*="owl-"] {
  background-color: #d6a023;
  width: 36px;
  height: 36px;
}
.gallery-slide .owl-nav button[class*="owl-"] i {
  font-size: 20px;
}
.codong-slide .owl-nav button[class*="owl-"] i {
  font-size: 20px;
}

.gallery-slide .owl-nav .owl-prev {
  left: 10px;
}
.codong-slide .owl-nav .owl-prev {
  left: 10px;
}
.gallery-slide .owl-nav .owl-next {
  right: 10px;
}
.codong-slide .owl-nav .owl-next {
  right: 10px;
}
/* ----- recruitment ---- */
.req-table {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}
.req-head {
  background-color:  #d6a023;
  border-radius: 5px 5px 0 0;
}
.req-head span {
  font-weight: 600;
}
.req-head .req-col span {
  color: #fff;
}
.req-box {
  display: flex;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
.req-box:hover:not(.req-head) {
  background-color: #ececec;
}
.req-col {
  padding: 10px;
  border-right: 1px solid #ddd;
}
.req-col:first-child {
  width: 25%;
}
.req-col:nth-child(2) {
  width: 41.6666667%;
  color:  #d6a023;
  font-weight: 500;
}
.req-col:nth-child(3) {
  width: 16.666667%;
}
.req-col:nth-child(4) {
  width: 16.666667%;
  border-right: 0;
}

/* ---- recruitment page ---- */
@media (min-width: 576px) {
  .job-info .modal-dialog {
    max-width: 66%;
  }
}
.job-info {
  padding-right: 0 !important;
}
.job-head {
  margin-bottom: 50px;
  /* font-family: arial; */
  font-family: Dancing Script; 
}
.job-head i {
  color: #d6a023;;
  margin-right: 5px;
}
.job-title {
  font-weight: 400;
}

.req-main .modal-title {
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  font-weight: 600;
  line-height: 1;
}

.req-main .modal-header {
  padding: 15px 15px 15px 20px;
  background: #d6a023;
  color: #fff;
}
.req-main .modal-header span.fa-times {
  font-size: 20px;
  cursor: pointer;
}

.req-main .modal-body {
  padding: 30px 40px;
}

.job-btn {
  text-align: center;
}

.apply-job {
  padding: 8px 30px;
  border-radius: 5px;
  color: #fff;
  border: 0;
  background-color:  #d6a023;
}
.apply-job:focus,
.apply-job:hover {
  background-color:  #d6a023;
  color: #fff;
  outline: 0;
  border: 0;
}

@media (min-width: 576px) {
  .job-info .modal-dialog {
    max-width: 66%;
  }
}
[name="file_cv"] {
  padding: 0;
  font-size: 15px;
}

.request-file {
  font-size: 14px;
}

#form_recrui label {
  font-weight: 500;
}
#form_recrui .form-control {
  height: 34px;
}

.calendar-table select {
  border: 1px solid #333;
}

/*# sourceMappingURL=style.css.map */









/* thêm  */

/*#overlay {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
  /*background-color: rgba(0, 0, 0, 0.699); */
  /* Semi-transparent black 
  z-index: 9999; /* Below the banner */
  /*display: none; */
  /* Initially hidden */
/*}*/
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.699); /* Làm tối nền phía sau */
    z-index: 9998;
    display: none;
}
#banner-container {
  /*position: fixed;*/
  /*top: 20px;*/
  /*left: 50%;*/
  /*transform: translate(-50%);*/
  /*width: 80%;*/
  /*background-color: #fff;*/
  /*padding: 20px;*/
  /*border: 1px solid #ccc;*/
  /*z-index: 100000;*/
  /* Above the overlay 
  display: none; /* Initially hidden */
  max-width: 90vw;       /* Không rộng quá 90% chiều ngang màn hình */
    max-height: 90vh;      /* Không cao quá 90% chiều dọc màn hình */
    width: auto;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #fff;      /* Thêm nền trắng hoặc tùy chỉnh theo ý bạn */
    padding: 15px;
    box-sizing: border-box;
}
#banner-container .img img {
    max-width: 100%;       /* Ảnh tự co giãn theo khung chứa */
    max-height: 75vh;      /* Giới hạn chiều cao ảnh để chừa chỗ cho nút bấm */
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;   /* Giữ nguyên tỷ lệ gốc của ảnh, không bị méo */
    margin: 0 auto;
}

#close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}


/* Book */

.book-now a {
  display: block;
  padding: 5px 15px;
  margin: 0;
  color: #d6a023;

  color: #fff;
  text-transform: capitalize;
  background-color:  #d6a023;
  border-radius: 5px;
  position: relative;
  display: inline-block;
}
/* .book-now  a:hover {
  background-color: #1490ac;
  color: #fff;
} */






a.book-now {
  display: block;
  color: #fff;
  text-transform: capitalize;
  background-color:  #d6a023;
  border-radius: 5px;
  position: relative;
  display: inline-block;
}
a.book-now  span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px 15px;
  z-index: 1;
}
a.book-now  span::before,
a.book-now  span::after {
  position: absolute;
  content: "";
  background-color:  #d6a023;
  height: 1px;
}
a.book-now  span::before {
  left: 0;
  top: 0;
  width: 0%;
  transition: all 500ms ease;
}
a.book-now  span::after {
  right: 0;
  bottom: 0;
  width: 0%;
  transition: all 500ms ease;
}
a.book-now span:hover::after {
  width: 100%;
}
a.book-now  span:hover::before {
  width: 100%;
}
a.book-now ::after,
a.book-now ::before {
  position: absolute;
  content: "";
  height: 0%;
  width: 1px;
  background-color: #d6a023;
}
a.book-now ::after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
a.book-now ::before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
a.book-now :hover {
  background: transparent;
  color:#d6a023;
  box-shadow: none;
}
a.book-now :hover::before {
  transition: all 500ms ease;
  height: 100%;
}
a.book-now :hover::after {
  transition: all 500ms ease;
  height: 100%;
}
a.book-now .room-btn:hover {
  color: #fff;
}
a.book-now .codong-btn:hover {
  color: #fff;
}
a.book-now .room-btn::after,
a.book-now .room-btn::before {
  background-color: #fff;
}
a.book-now .codong-btn::after,
a.book-now .codong-btn::before {
  background-color: #fff;
}
a.book-now .room-btn span::before,
a.book-now .room-btn span::after {
  background-color: #fff;
}
a.book-now .codong-btn span::before,
a.book-now .codong-btn span::after {
  background-color: #fff;
}


/* nhút nhấn cuối trang */
.float-button-up {
  position:fixed;
  right:3%;
  bottom:40px; 
   z-index: 10000;
}

.float-button-up a {
  font-size: 18px;
  color: #d6a023;
  background-color:  #626262;
  border-radius: 50%;
  text-align: center;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items:center;
  justify-content:center;
}
.float-button-home {
  position:fixed;
  left:3%;
  bottom:40px;
  z-index: 10000;
}

.float-button-home a {
  font-size: 18px;
  color: #d6a023;
  background-color:  #626262;
  border-radius: 50%;
  text-align: center;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items:center;
  justify-content:center;
}