:root {
  /* Màu chủ đạo */
  --color-primary-green: #02454b; /* ✅ MỚI: Xanh rêu đậm - dùng cho CTA, header, footer */
  --color-primary-blue: #87ceeb; /* Xanh dương nhạt - nền nhẹ */
  --color-primary-brown: #8b5e3c; /* Nâu gỗ - viền/section đặc biệt */

  /* Màu trung tính */
  --color-neutral-white: #ffffff; /* Trắng tinh - nền tổng thể */
  --color-neutral-light: #f5f5f5; /* Xám sáng - nền section */
  --color-neutral-gray: #ededed; /* Xám nhẹ - block content */
  --color-neutral-dark: #333333; /* Đen nhẹ - tiêu đề */
  --color-neutral-muted: #999999; /* Ghi - chữ mô tả */

  /* Màu pastel */
  --color-pastel-green: #cdeac0; /* Xanh lá pastel */
  --color-pastel-orange: #ffd6ba; /* Cam pastel */
  --color-pastel-blue: #b5d5ff; /* Xanh dương pastel */
  --color-pastel-beige: #fff3e3; /* Be sáng */
  --primary-color-light: #8b5e3c;
  /* Màu bổ sung */
  --color-border: #efefef; /* Màu viền block */
  --color-link: #02454b; /* Link theo màu chủ đạo mới */

  --font-body: "lato-r";
  --font-title: "lato-m";

  --primary-color: #02454b;
  --secondary-color: #8b5e3c;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #343a40;
  --transition-slow: 0.5s;
  --transition-medium: 0.3s;
  --transition-fast: 0.2s;
}

/* -------------------------------------------------------

------------------------------------------------------- */

/* ======= Helper style ======= */
.mr-5 {
  margin-right: 8px;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mt-120 {
  margin-top: 120px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.o-hidden {
  overflow: hidden;
}
.position-re {
  position: relative;
}
.position-relative {
  position: relative !important;
}
.full-width {
  width: 100%;
}
.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-position-top {
  background-position: top;
}
.bg-position-center {
  background-position: center;
}
.bg-position-bottom {
  background-position: bottom;
}
.bg-fixed {
  background-attachment: fixed;
}
.pattern {
  background-repeat: repeat;
  background-size: auto;
}
.bold {
  font-weight: 500;
}
.count {
  font-family: "Outfit", sans-serif;
}
.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.v-bottom {
  position: absolute;
  width: 100%;
  bottom: 5%;
  left: 0;
  -webkit-transform: translate(0%, -5%);
  transform: translate(0%, -5%);
}
.js .animate-box {
  opacity: 0;
}
:root {
  scroll-behavior: auto;
}
.bg-gray {
  background: #f3f5f4;
}
/* star rating  */
.star-rating {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.9em;
  margin-right: 0.9em;
  margin-bottom: 2em;
  border-right: 0.3em solid transparent;
  border-bottom: 0.7em solid #fd961e;
  border-left: 0.3em solid transparent;
  /* Controlls the size of the stars. */
  font-size: 8px;
}
.star-rating:before,
.star-rating:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.6em;
  left: -1em;
  border-right: 1em solid transparent;
  border-bottom: 0.7em solid #fd961e;
  border-left: 1em solid transparent;
  transform: rotate(-35deg);
}
.star-rating:after {
  transform: rotate(35deg);
}

/* ======= Selection style ======= */
::-webkit-selection {
  color: #fff;
  background: var(--color-primary-green);
}
::-moz-selection {
  color: #fff;
  background: var(--color-primary-green);
}
::selection {
  color: #fff;
  background: var(--color-primary-green);
}

/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  z-index: 999999;
}
#preloader {
  display: table;
  table-layout: fixed;
}
#preloader-status {
  display: table-cell;
  vertical-align: middle;
}
.preloader-position {
  position: relative;
  margin: 0 auto;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.loader {
  position: relative;
  width: 70px;
  height: 70px;
  left: 50%;
  top: auto;
  margin-left: -22px;
  margin-top: 1px;
  -webkit-animation: rotate 1s infinite linear;
  -moz-animation: rotate 1s infinite linear;
  -ms-animation: rotate 1s infinite linear;
  -o-animation: rotate 1s infinite linear;
  animation: rotate 1s infinite linear;
  border: 1px solid rgba(52, 72, 49, 0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.loader span {
  position: absolute;
  width: 70px;
  height: 70px;
  top: -1px;
  left: -1px;
  border: 1px solid transparent;
  border-top: 1px solid var(--color-primary-green);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ======= Owl-Theme custom style ======= */
/* dot style */
.owl-carousel button.owl-dot {
  outline: none;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0px;
  line-height: 1.5;
  display: block;
  outline: none;
}
.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 3px;
  border-radius: 50%;
  background: #cfdcd3;
  border: 1px solid #cfdcd3;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-primary-green);
  border: 1px solid var(--color-primary-green);
}
/* nav style */
.owl-theme .owl-nav {
  position: absolute !important;
  top: 35% !important;
  bottom: auto !important;
  width: 100%;
}
.owl-theme .owl-nav {
  position: relative;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.owl-theme .owl-prev {
  left: 10px !important;
}
.owl-theme .owl-next {
  right: 10px !important;
}
.owl-theme .owl-prev,
.owl-theme .owl-next {
  color: #fff;
  position: absolute !important;
  top: 50%;
  padding: 0;
  height: 50px;
  width: 50px;
  border-radius: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.owl-theme .owl-prev > span,
.owl-theme .owl-next > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  outline: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-theme .owl-nav [class*="owl-"] {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--color-primary-brown);
  color: #fff;
  font-size: 12px;
  margin-right: 15px;
  margin-left: 15px;
  cursor: pointer;
  border: 1px solid var(--color-primary-brown);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}
.owl-theme .owl-nav [class*="owl-"] {
  opacity: 0;
}
.owl-theme:hover .owl-nav [class*="owl-"] {
  opacity: 1;
}

/* ======= Section style ======= */
.section-padding {
  padding: 120px 0;
}
.section-padding h6 {
  color: var(--color-primary-green);
  font-size: 20px;
}
.section-subtitle {
  font-weight: 300;
  margin-bottom: 10px;
  color: #484848;
  font-size: 15px;
  display: flex;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}
.section-subtitle.text-white {
  color: #fff;
}
.section-subtitle .iconix {
  background-color: var(--color-primary-brown);
  margin-right: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  display: flex;
  font-weight: normal;
}
.section-subtitle .iconix span {
  align-items: center;
  justify-content: center;
}
.section-subtitle .iconix img {
  width: 20px;
}
.section-title {
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  font-family: lato-b;
  color: #000;
  position: relative;
  margin-bottom: 15px;
}
.section-title span {
  color: var(--color-primary-green);
}

@media screen and (max-width: 991px) {
}

/* ======= Navbar style ======= */
.navbar {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
  padding-right: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 100px;
  border: none;
}

.navbar .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

.navbar .container {
  border: none;
}
.nav-scroll .container {
  border: none;
}
.navbar-toggler-icon {
  background-image: none;
}
.navbar .navbar-toggler-icon,
.navbar .icon-bar {
  color: #000;
}
.navbar .navbar-nav .nav-link {
  font-family: lato-b;
  font-weight: initial;
  font-size: clamp(0.75rem, -0.0149rem + 1.194vw, 1rem);
  color: var(--text-color);
  margin: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding-right: 10px;
  padding-left: 10px;
  text-transform: uppercase;
}

.navbar .navbar-nav .nav-link.nav-color {
  color: #000;
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--color-primary-brown) !important;
}
.navbar .navbar-nav .nav-link:hover i {
  color: var(--color-primary-brown) !important;
}
.navbar .navbar-nav .active {
  color: var(--color-primary-brown) !important;
}
.navbar .navbar-nav .active i {
  color: var(--color-primary-brown) !important;
}
.nav-scroll {
  background: #fff;
  padding: 0 0 0 0;
  position: fixed;
  top: -90px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(90px);
  transform: translateY(90px);
  border: none;
  -webkit-box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.1);
  height: 90px;
}
.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
  color: #000;
}
.nav-scroll .navbar-nav .nav-link {
  color: #000;
}
.nav-scroll .navbar-nav .active {
  color: var(--color-primary-brown) !important;
}
/* logo */
.nav-scroll .logo-wrapper .logo-img {
  margin-bottom: 0px;
  width: 120px;
}
.nav-scroll .logo-wrapper {
}
.nav-scroll .logo-wrapper .logo h2 {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 0;
  padding: 0;
}
.nav-scroll .logo-wrapper .logo span {
  color: #000;
}
.logo-wrapper {
  float: left;
}
.logo-wrapper .logo {
  padding: 0;
}
.logo-wrapper .logo-img {
  width: 100%;
  min-width: 130px;
  max-width: 130px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.logo-wrapper .logo h2 {
  font-family: var(--font-title);
  font-size: 27px;
  font-weight: 400;
  display: block;
  width: 100%;
  position: relative;
  color: var(--color-primary-green);
  margin-bottom: 0;
  padding: 0;
}
.logo-wrapper .logo h2 span {
  color: #000;
  font-weight: 400;
}

.logo-wrapper .logo h2 i {
  font-size: 27px;
  background-color: var(--color-primary-brown);
  height: 50px;
  width: 50px;
  border-radius: 100%;
  color: #fff;
}
/* dropdown */
.dropdown .nav-link i {
  padding-left: 0px;
  font-size: 13px;
  color: #000;
}
.nav-scroll .dropdown .nav-link i {
  color: #000;
}
.nav-scroll .navbar-nav .active i {
  color: var(--color-primary-brown) !important;
}
.navbar .dropdown-menu .dropdown-item {
  padding: 8px 0;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  position: relative;
  background-color: transparent;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.navbar .dropdown-menu .dropdown-item span {
  display: block;
  cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
  padding: 13px 0 0 5px;
  font-size: 10px;
  float: right;
  color: #000;
}
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
  color: var(--color-primary-brown) !important;
}
.navbar .dropdown-toggle::after {
  display: none;
}
.navbar .dropdown-menu {
  box-shadow: 0 45px 45px 0 rgba(0, 0, 0, 0.05);
}
.navbar .dropdown-menu li:last-child {
  border-bottom: none;
}
/* li hover */
.navbar .dropdown-menu li {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-bottom: 1px dotted rgba(91, 154, 66, 0.1);
}
.navbar .dropdown-menu li:hover {
  padding-left: 5px;
}
.navbar .dropdown-menu .dropdown-menu.pull-left {
  top: 0;
  left: auto;
  right: 100%;
}
/* navbar-right button */
.navbar .navbar-right {
  position: relative;
  display: flex;
  align-items: center;
}
.navbar .navbar-right .button {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 5;
  background: var(--color-primary-brown);
  border-radius: 30px;
  padding: 8px 24px;
  transition: border-color 300ms ease, transform 300ms ease,
    background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}
.navbar .navbar-right .button i {
  font-size: 13px;
}
.navbar .navbar-right .button:hover {
  transform: translate3d(0px, -3px, 0.01px);
  background: var(--color-primary-green);
}
/* Navbar Media Query */
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    width: 230px;
    padding: 5px 20px;
    padding-bottom: 5px;
    border-radius: 10px;
    border: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navbar .dropdown-menu .dropdown-menu {
    left: calc(100% + 5px);
    top: -17px;
    right: auto;
    min-width: 230px;
    transform: translateY(0);
  }
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 991px) {
  .navbar {
    padding-left: 0px;
    padding-right: 0px;
    background: #fff;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 100px;
    border: none;
  }
  .nav-scroll {
    background: #fff;
    height: 90px;
  }
  .logo-wrapper {
    float: left;
    padding: 21px 15px;
  }
  .nav-scroll .logo-wrapper {
    padding: 18px 15px;
    background-color: transparent;
  }
  .nav-scroll .logo-img {
    width: 130px;
  }
  .navbar .logo {
    text-align: left;
    margin-left: 0px;
  }
  .nav-scroll .logo {
  }
  .logo-img {
    margin-bottom: 0px;
    width: 130px;
    padding: 0;
  }
  .navbar button {
    margin-right: 0px;
    outline: none !important;
    background: transparent;
    margin-top: 10px;
    border: none;
  }
  .navbar button:hover {
    background: transparent;
  }
  .navbar button:active,
  .navbar button:focus,
  .navbar button:hover {
    background: transparent;
    outline: none;
    color: transparent !important;
  }
  .navbar .container {
    max-width: 100%;
    padding: 0;
  }
  .navbar .nav-link {
    margin: 0px auto !important;
  }
  .navbar .navbar-nav .nav-link {
    color: #000;
  }
  .nav-scroll .navbar-collapse .nav-link {
    color: #000 !important;
  }
  .nav-scroll .navbar-collapse .active {
    color: var(--color-primary-brown) !important;
  }
  .navbar .dropdown-menu .dropdown-item {
    color: #000;
    padding: 10px 15px;
    font-size: 17px;
  }
  .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
  }
  .navbar .dropdown-submenu .dropdown-toggle::after {
    right: 15px;
    font-size: 12px;
  }
  .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
    transform: rotate(0deg);
  }
  .navbar .dropdown-submenu .dropdown-toggle.show::after {
    transform: rotate(90deg);
  }
  .navbar .dropdown-menu {
    border: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
    background: #fff;
    box-shadow: none;
  }
  .navbar .dropdown-submenu .dropdown-menu {
    margin: 0;
    padding: 0 0 0 20px;
  }
  .navbar .dropdown-menu li a {
    padding: 0 15px;
  }
  .navbar .navbar-nav .nav-link {
    padding-right: 0px;
    padding-left: 0px;
  }
  .navbar .navbar-nav {
    padding: 20px;
  }
  .navbar .navbar-collapse {
    max-height: 500px;
    overflow: auto;
    background: #fff;
    text-align: left;
  }
  .dropdown .nav-link i {
    color: #000;
  }
  .nav-scroll .dropdown .nav-link i {
    color: #000;
  }
  .nav-scroll .dropdown .nav-link.active i {
    color: var(--color-primary-brown) !important;
  }
  .navbar .dropdown-menu .dropdown-item i {
    color: #000;
  }
  .navbar .navbar-right {
    display: none;
  }
}

/* ======= Header style ======= */
.header {
  min-height: calc(100vh - 100px);
  overflow: hidden;
}
.header .caption .o-hidden {
  display: inline-block;
}

.header .caption h1 span {
  color: #9ac532;
}

.header .caption p span {
  color: #9ac532;
}
.header .caption .button-1 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.header .caption .button-2 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@media screen and (max-width: 991px) {
  .header {
    background-attachment: scroll !important;
    background-position: 50% 0% !important;
  }
  .header .caption h1 {
    font-size: 45px;
  }
}

/* ======= Slider-fade style (Home Slider) ======= */
.slider-fade .owl-item {
  min-height: calc(100vh - 100px);
  position: relative;
}
.slider-fade .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-image: var(--background-slider);
}
.slider-fade .item .caption {
  z-index: 9;
}
/* slider-fade .owl-nav */
.slider-fade .owl-nav {
  position: absolute;
  bottom: 7%;
  right: 12%;
}
.slider-fade .owl-prev {
  float: left;
}
.slider-fade .owl-next {
  float: right;
}
.slider-fade .owl-theme .owl-nav [class*="owl-"] {
  width: 55px;
  height: 55px;
  background: var(--color-primary-brown);
  border-radius: 100%;
  color: #fff;
  font-size: 10px;
  margin-right: 3px;
  cursor: pointer;
  border: 1px solid var(--color-primary-brown);
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  transform: scale(0.9);
  background: var(--color-primary-green);
  border: 1px solid var(--color-primary-green);
  color: #fff;
}
@media screen and (max-width: 991px) {
  .slider-fade .owl-nav {
    display: none;
  }
}
/* owl-theme owl-dots */
.slider-fade .owl-theme .owl-dots {
  position: absolute;
  bottom: 5vh;
  width: 100%;
}
.slider-fade .owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 3px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
}
.slider-fade .owl-theme .owl-dots .owl-dot.active span,
.slider-fade .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-primary-green);
  border: 1px solid var(--color-primary-green);
}
/* WhatsApp Line */
div.whatsapp {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  text-orientation: sideways;
  text-orientation: sideways;
  margin: 0;
  position: absolute;
  top: 0;
  right: 40px;
  height: 60%;
  z-index: 9;
}
div.whatsapp .call {
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  margin-top: 10px;
}
div.whatsapp .call span {
  font-family: var(--font-title);
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1;
}
div.whatsapp .icon {
  position: absolute;
  left: -1px;
  top: -55px;
  width: 55px;
  height: 55px;
  background: var(--color-primary-green);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  border-radius: 100%;
}
div.whatsapp a .icon i {
  color: #fff;
  font-size: 24px;
  transform: rotate(90deg);
}
@media screen and (max-width: 991px) {
  div.whatsapp {
    display: none;
  }
}

/* ======= Slider style (Inner Page Slider) ======= */
.slider .owl-item {
  min-height: calc(100vh - 100px);
  position: relative;
}
.slider .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.slider .item .caption {
  z-index: 9;
}
.slider .owl-theme .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 3%;
  right: 12%;
  text-align: right;
}
.slider .owl-theme .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
  margin: 0 3px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
}
.slider .owl-theme .owl-dots .owl-dot.active span,
.slider .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
  border: 1px solid #fff;
}
/* owl-theme owl-nav */
.slider .owl-prev {
  float: left;
}
.slider .owl-next {
  float: right;
}
.slider .owl-theme .owl-nav [class*="owl-"] {
  width: 55px;
  height: 55px;
  background: var(--color-primary-brown);
  border-radius: 100%;
  color: #fff;
  font-size: 12px;
  margin-right: 30px;
  margin-left: 30px;
  cursor: pointer;
  border: 1px solid var(--color-primary-brown);
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}
.slider .owl-theme .owl-nav [class*="owl-"]:hover {
  transform: scale(0.9);
  background: var(--color-primary-green);
  border: 1px solid var(--color-primary-green);
  color: #fff;
}
.slider .owl-theme .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  top: 45% !important;
}
.slider .owl-theme .owl-nav [class*="owl-"] {
  opacity: 0;
}
.slider .owl-theme:hover .owl-nav [class*="owl-"] {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .slider .owl-theme .owl-nav {
    display: none;
  }
}

/* ===== Kenburns Slider style ===== */
.kenburns-section {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: calc(100vh - 100px);
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: var(--background-slider);
}
.kenburns-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  background: #000;
}
.kenburns-inner {
  position: relative;
  z-index: 15;
}
.kenburns-inner .caption {
  position: relative;
}
.kenburns-inner .caption h1 {
  position: relative;
  margin-bottom: 20px;
  font-size: 90px;
  font-weight: 400;
  color: #fff;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.kenburns-inner .caption h1 span {
  color: #9ac532;
}
.kenburns-inner .caption p {
  font-size: 18px;
  margin-bottom: 0;
  color: #fff;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.kenburns-inner .caption p span {
  color: #9ac532;
}

#kenburnsSliderContainer .vegas-overlay {
}

@media screen and (max-width: 991px) {
  .kenburns-inner .caption h1 {
    font-size: 45px;
  }
}

/* ======= Banner Header style ======= */
.banner-header {
  min-height: calc(50vh - 100px);
  background-position: center;
}
.banner-header.middle-height {
  min-height: calc(75vh - 100px);
}
.banner-header.full-height {
  min-height: calc(100vh - 100px);
}
.banner-header.full-height h1 {
  position: relative;
  margin-bottom: 20px;
  font-size: 80px;
  font-weight: 400;
  color: #fff;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.banner-header.full-height h1 span {
  color: #9ac532;
}
.banner-header.full-height p {
  font-size: 18px;
  margin-bottom: 0;
  color: #fff;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.banner-header.full-height p span {
  color: #9ac532;
}
.banner-header h3 {
  position: relative;
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: 400;
  color: #fff;
}
.banner-header h3 span {
  color: #9ac532;
}
/* author & date */
.banner-header .author .avatar {
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 5px;
  padding: 2px;
  border: 1px solid #9ac532;
}
.banner-header .post {
  margin-top: 20px;
}
.banner-header .post div {
  display: inline-block;
}
.banner-header .post .author {
  margin-right: 15px;
  font-size: 15px;
}
.banner-header .post .date-comment {
  position: relative;
  font-size: 15px;
  color: #fff;
  margin-right: 15px;
}
.banner-header .post .date-comment i {
  color: #9ac532;
  font-size: 17px;
  margin-right: 5px;
}
.banner-header .post .date-comment:last-of-type {
  margin-right: 0px;
}

@media screen and (max-width: 991px) {
  .banner-header.middle-height {
    min-height: calc(50vh - 100px);
  }
  .banner-header.full-height h1 {
    font-size: 45px;
  }
  .banner-header h3 {
    font-size: 36px;
  }
}

/* =======  Video Background style  ======= */
.video-fullscreen-wrap {
  position: relative;
  min-height: calc(100vh - 100px);
  overflow: hidden;
}
.video-fullscreen-video {
  height: calc(100vh - 100px);
}
.video-fullscreen-wrap video {
  width: 100vw;
  min-width: 100%;
  height: calc(100vh - 100px);
  -o-object-fit: cover;
  object-fit: cover;
}
.video-fullscreen-wrap .video-fullscreen-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video-lauch-wrapper {
  border: none;
  background: none;
  width: 100%;
  padding: 0;
}
.video-fullscreen-wrap .overlay {
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 4;
}

/* ======= About style ======= */
.about {
  position: relative;
}
/* icons */
.about .icon {
  color: var(--color-primary-green);
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  font-weight: normal;
  font-style: normal;
}
.about .icon h5 {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  text-align: center;
  color: #000;
  margin-bottom: 0;
  margin-top: 10px;
}
/* img and text */
.about .item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
}
.about .item img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
  border-radius: 10px;
}
.about .item:hover img {
  transform: scale(1.05);
}
.about .item .float-box {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--color-primary-brown);
  align-items: center;
  -webkit-box-shadow: 0 0 15px rgba(92, 77, 145, 0.08);
  box-shadow: 0 0 15px rgba(92, 77, 145, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 30px;
}
.about .item .float-box .icon {
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 0;
  font-weight: normal;
  font-style: normal;
}
.about .item .float-box .title {
  font-weight: 300;
  color: #fff;
  margin-left: 20px;
  line-height: 1.5em;
  display: grid;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  text-align: end;
}
.about .item .float-box .title span {
  font-weight: 400;
  color: #fff;
  font-family: var(--font-title);
  font-size: 20px;
}
.about .item .float-box.animation-float {
  animation: float 2000ms linear 500ms infinite alternate both;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(30px);
  }
}
.about .item .float-box.animation-float-small {
  animation: float 2000ms linear 500ms infinite alternate both;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(10px);
  }
}

/* ======= Team style ======= */
.team {
  position: relative;
  overflow: hidden;
}
.team .team-container {
  width: 140%;
  position: relative;
}
.team .item {
  position: relative;
  margin-bottom: 30px;
}
.team .item .wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 20px;
  isolation: isolate;
}
.team .item .wrapper img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px 20px 0 20px;
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}
.team .item:hover .wrapper .img img {
  transform: scale(1.05);
  overflow: hidden;
}
.team .item .text {
  padding: 20px;
}
.team .item .text .title {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  font-family: var(--font-title);
}
.team .item .text .subtitle {
  font-size: 17px;
  color: #484848;
}
/* icon */
.team .item .wrapper .icon {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 90px;
  height: 90px;
  background: #fff;
  border-top-left-radius: 50%;
  padding: 15px;
}

.team .item:hover .wrapper .icon .arrow {
  transform: scale(1.05);
}
.team .item .wrapper .icon::before {
  position: absolute;
  content: "";
  bottom: 6px;
  left: -20px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 6px 6px 0 6px #fff;
}
.team .item .wrapper .icon::after {
  position: absolute;
  content: "";
  top: -20px;
  right: 6px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 6px 6px 0 6px #fff;
}
.team .item .wrapper .icon .arrow {
  position: absolute;
  inset: 15px;
  background: var(--color-primary-brown);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.team .item .wrapper .icon .arrow span {
  color: #fff;
  font-size: 15px;
}
.team .item:hover .wrapper .icon .arrow {
  color: #fff;
  background: var(--color-primary-green);
}
.team .item:hover .wrapper .icon .arrow span {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .team .team-container {
    width: 100%;
  }
}

/* ======= Team-Single style ======= */
.team-single {
  position: relative;
}
.team-single h3 {
  font-size: 24px;
  color: #000;
  margin-bottom: 10px;
}
.team-single h6 {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  color: var(--color-primary-brown);
  font-weight: 300;
}
.team-single .item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  isolation: isolate;
}
.team-single .item .img img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}
.team-single .item:hover .img img {
  transform: scale(1.05);
}
/* list */
.team-single .list {
  position: relative;
  display: block;
}
.team-single .list li {
  position: relative;
  display: flex;
  align-items: baseline;
}
.team-single .list li + li {
  margin-top: 10px;
}
.team-single .list-icon {
}
.team-single .list-icon span {
  font-size: 15px;
  color: var(--color-primary-brown);
}
.team-single .list-text {
  margin-left: 15px;
}
.team-single .list-text p {
  font-size: 17px;
  margin: 0;
  color: #484848;
}
/* tabs */
.team-single .cont .simpl-bord.nav-tabs {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ff7900;
}
.team-single .cont .simpl-bord .nav-item {
  margin-right: 30px;
}
.team-single .cont .simpl-bord .nav-item:last-of-type {
  margin-right: 0;
}
.team-single .cont .simpl-bord .nav-link {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent !important;
  cursor: pointer;
  font-family: var(--font-title);
  color: #000;
  font-size: 20px;
}
.team-single .cont .simpl-bord .nav-link.active {
  color: #ff7900;
}
.team-single .tab-content p {
  color: #484848;
}

/* ======= Accommodation style ======= */
.accommodation {
  position: relative;
  overflow: hidden;
}
.accommodation .accommodation-carousel {
  position: relative;
  display: block;
  max-width: 800px;
  margin: 0 auto;
}
.accommodation .accommodation-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}
.accommodation .item {
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.accommodation .item .img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}
.accommodation .item:hover img {
  transform: scale(1.05);
}
.accommodation .item .con {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 30px 20px;
  margin-top: -60px;
  margin-left: 15px;
  margin-right: 15px;
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 2;
  visibility: visible;
  opacity: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.accommodation .item .con.opacity-1 {
  opacity: 0;
}
.accommodation .item .con.active {
  visibility: visible;
  opacity: 1;
}
.accommodation .item .con .title,
.accommodation .item .con .title a {
  font-family: var(--font-title);
  font-size: 20px;
  margin-bottom: 5px;
  color: #000;
  font-weight: 400;
  line-height: 1.2em;
  transition: all 500ms ease;
}
.accommodation .item .con .details {
}
.accommodation .item .con .details i {
  font-size: 19px;
  color: var(--color-primary-green);
  font-style: normal;
  margin-right: 9px;
  font-weight: normal;
}
/* book */
.accommodation .item .con .book {
  text-align: -webkit-right;
  margin-top: 7px;
}
.accommodation .item .con .book .btn {
  margin: 0;
  background: var(--color-primary-brown);
  padding: 14px 40px;
  color: #fff;
  border: 1px solid var(--color-primary-brown);
  border-radius: 30px;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 17px;
}
.accommodation .item .con .book .btn:hover {
  background: var(--color-primary-green);
  border: 1px solid var(--color-primary-green);
  color: #fff;
}
.accommodation .item .con .book > div {
  display: table-cell;
  vertical-align: middle;
}
.accommodation .item .con .book > div:nth-child(2) {
  padding-left: 15px;
  padding-right: 0;
  font-size: 14px;
  line-height: 1.2em;
}
.accommodation .item .con .book > div > span {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  color: #555;
}
.accommodation .item .con .book .price {
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.2em;
  color: #000;
  font-weight: 400;
}
.owl-item.active .item .con {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .accommodation .item .con {
    padding: 30px 20px;
    margin: 0;
  }
  .order2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .accommodation .item .con .book {
    text-align: left;
    margin-top: 3px;
  }
  .accommodation-carousel {
    overflow: hidden;
  }
}

/* ======= Accommodation Box style ======= */
.accommodation-box {
  position: relative;
}
.accommodation-box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  transition: all 0.4s ease;
  padding: 30px 20px;
  border-radius: 10px;
}
.accommodation-box .item:hover {
  background: #fff;
  transform: translateY(-10px);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.accommodation-box .item .icon {
  color: var(--color-primary-green);
  margin-right: 30px;
}
.accommodation-box .item .icon:before {
  font-size: 60px;
  line-height: 60px;
}
.accommodation-box .item h5 {
  font-size: 20px;
}
.accommodation-box .item p {
  font-size: 17px;
  margin-bottom: 0;
}

/* ======= Activities 1 style ======= */
.activities1 {
  position: relative;
}
.activities1 .item {
  position: relative;
  border-radius: 10px 10px 0 10px;
  z-index: 2;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.activities1 .item:hover {
  transform: translateY(-10px);
}
.activities1 .item img {
  border-radius: 10px 10px 0 0;
}
.activities1 .item .cont {
  position: relative;
  padding: 30px 30px 90px 30px;
  border-radius: 0px 0px 0 20px;
  background: #fff;
  z-index: 2;
}
.activities1 .item .cont .text h5 {
  color: #000;
  font-size: 20px;
  margin-bottom: 15px;
}
.activities1 .item .cont .text p {
  margin-bottom: 0;
  color: #484848;
}
/* icon */
.activities1 .item .cont .icon {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 90px;
  height: 90px;
  background: #f3f5f4;
  border-top-left-radius: 50%;
  padding: 15px;
}
.activities1 .item:hover .cont .icon .arrow {
  transform: scale(1.05);
}
.activities1 .item .cont .icon::before {
  position: absolute;
  content: "";
  bottom: 6px;
  left: -20px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 6px 6px 0 6px #f3f5f4;
}
.activities1 .item .cont .icon::after {
  position: absolute;
  content: "";
  top: -20px;
  right: 6px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 6px 6px 0 6px #f3f5f4;
}
.activities1 .item .cont .icon .arrow {
  position: absolute;
  inset: 15px;
  background: var(--color-primary-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.activities1 .item .cont .icon .arrow span {
  font-size: 15px;
}
.activities1 .item:hover .cont .icon .arrow {
  color: #fff;
  background: var(--color-primary-brown);
}
.activities1 .item .cont .icon .icon-w {
  overflow: hidden;
  background-color: transparent;
  color: #fff;
  font-style: normal;
  font-weight: normal;
  font-size: 27px;
}
.activities1 .item:hover .cont .icon .icon-w i.icon-show,
.activities1 .item .cont .icon .icon-w i.icon-hidden {
  display: none;
}
.activities1 .item:hover .cont .icon .icon-w i.icon-hidden {
  display: inline;
  text-align: center;
  color: #fff;
  font-size: 15px;
  vertical-align: middle;
}

/* ======= Activities 2 style ======= */
.activities2 {
  position: relative;
}
.activities2 .activities2-container {
  width: 140%;
  position: relative;
}
.activities2 .item {
  background: #fff;
  padding: 60px 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  line-height: 1;
  border-radius: 10px;
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden;
}
.activities2 .item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
.activities2 .item h5 {
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
}
.activities2 .item:hover h5 {
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.activities2 .item span {
  font-size: 32px;
  color: #fff;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100%;
  background: var(--color-primary-brown);
  width: 70px;
  height: 70px;
  line-height: 70px;
}
.activities2 .item:hover span {
  background: var(--color-primary-green);
  color: #fff;
}
.activities2 .item p {
  margin: 0;
  color: #484848;
}
.activities2 .item .facility-shape {
  position: absolute;
  opacity: 0.03;
  z-index: -1;
  bottom: -35px;
  left: 170px;
  font-weight: normal;
}
.activities2 .item .facility-shape span {
  font-size: 120px;
  color: #000;
  background: transparent;
}

@media screen and (max-width: 991px) {
  .activities2 .activities2-container {
    width: 100%;
  }
}

/* ======= Amenities style ======= */
.amenities {
  position: relative;
}
.amenities .item {
  padding: 40px 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  margin: 0 0 25px 0;
  transition: all 0.4s ease;
}
.amenities .item:hover {
  transform: translateY(-10px);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.amenities .item span {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100%;
  background: var(--color-primary-brown);
  width: 80px;
  height: 80px;
  line-height: 80px;
  overflow: hidden;
  float: left;
  text-align: center;
}
.amenities .item .info {
  margin-left: 105px;
}
.amenities .item .info p {
  margin-bottom: 0px;
  line-height: 1.5em;
}
.amenities .item .info .title {
  position: relative;
  display: contents;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}

/* ======= Events style ======= */
.events {
  position: relative;
}
.events .img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
}
.events .img:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.events .img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.events .item {
  width: 100%;
  padding: 40px;
}
.events .item h5 {
  font-size: 15px;
  color: var(--color-primary-brown);
  margin-bottom: 5px;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}
.events .item h4 {
  font-size: 27px;
  color: #000;
  line-height: 1.5em;
}
.events .item p {
  color: #484848;
}
@media screen and (max-width: 991px) {
  .order2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
}

/* ======= Events Details style ======= */
.events-details {
  position: relative;
}
.events-details h3 {
  color: #000;
  font-size: 24px;
  margin-bottom: 20px;
}
.events-details .sidebar-event {
  position: relative;
  display: block;
  padding: 0;
  background: #f3f5f4;
  border-radius: 10px;
  margin-top: -228.5px;
  z-index: 9;
}
.events-details .sidebar-event .title {
  position: relative;
  background-color: var(--color-primary-green);
  padding: 40px 30px;
  border-radius: 10px 10px 0 0;
  text-align: center;
}
.events-details .sidebar-event .title h4 {
  font-size: 24px;
  line-height: 1.2em;
  color: #fff;
  margin: 0;
}
.events-details .sidebar-event .item {
  padding: 30px 30px 40px 30px;
}
.events-details .sidebar-event .item .features {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 50% 50%;
  border: none;
  border-bottom: 1px solid rgba(91, 154, 66, 0.1);
}
.events-details .sidebar-event .item .features span {
  color: #000;
  font-family: var(--font-title);
  font-size: 17px;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.events-details .sidebar-event .item .features span i {
  color: #fff;
  margin-right: 10px;
  font-size: 15px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--color-primary-brown);
  border-radius: 100%;
  text-align: center;
}
.events-details .sidebar-event .item .features p {
  margin-bottom: 0px;
  color: #484848;
  text-align: right;
}
.events-details .sidebar-event .item .features p b {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 991px) {
  .events-details .sidebar-event {
    margin-top: 30px;
  }
}

/* ======= Details Page style ======= */
.details-page {
  position: relative;
}
.details-page h3 {
  color: #000;
  font-size: 24px;
  margin-bottom: 25px;
}
.details-page .sidebar {
  position: relative;
  display: block;
  padding: 0;
  background: #fff;
  border-radius: 10px;
  margin-top: -228px;
  z-index: 9;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.details-page .sidebar .title {
  position: relative;
  background-color: var(--color-primary-green);
  padding: 40px 30px;
  border-radius: 10px 10px 0 0;
  text-align: center;
}
.details-page .sidebar .title h4 {
  font-size: 24px;
  line-height: 1.2em;
  color: #fff;
  margin: 0;
}
.details-page .sidebar .item {
  padding: 40px;
}
.details-page .sidebar .item .features {
  grid-template-columns: 87% 13%;
  border-radius: 0;
  padding: 10px 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(91, 154, 66, 0.1);
  display: grid;
  align-items: center;
}
.details-page .sidebar .item .features:last-child {
  border: none;
}
.details-page .sidebar .item .features span {
  color: #000;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 17px;
}
.details-page .sidebar .item .features i {
  color: #000;
  font-size: 12px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  border-radius: 100%;
  text-align: center;
  transform: rotate(0);
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.details-page .sidebar .item .features:hover i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.details-page .sidebar .item .features p {
  margin-bottom: 0px;
  color: #000;
  text-align: right;
}
.details-page .sidebar .item .features:hover i,
.details-page .sidebar .item .features.active i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.details-page .sidebar .item .features:hover,
.details-page .sidebar .item .features.active {
  color: var(--color-primary-brown);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.details-page .sidebar .item .features:hover i,
.details-page .sidebar .item .features.active i {
  color: #fff;
  background: var(--color-primary-brown);
}
.details-page .sidebar .item .features:hover span,
.details-page .sidebar .item .features.active span {
  color: var(--color-primary-brown);
}
@media screen and (max-width: 991px) {
  .details-page .sidebar {
    margin-top: 30px;
  }
}

/* ======= Pricing style ======= */
.pricing {
  outline: none;
  outline: 0;
  border: none;
  box-shadow: none;
}
.pricing .img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
}
.pricing .img:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.pricing .img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.pricing .img .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pricing .img .centered h2 {
  color: #fff;
  font-size: 27px;
  margin-bottom: 0;
}
.pricing .item {
}
.pricing .item span {
  font-size: 27px;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100%;
  background: var(--color-primary-brown);
  width: 60px;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  float: left;
  text-align: center;
  margin-right: 15px;
}
.pricing .item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: none;
}
.pricing .item .flex .title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #000;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 400;
}
.pricing .item .flex .dots {
  flex-grow: 1;
  position: relative;
  margin: 0 20px;
}
.pricing .item .flex .dots:after {
  content: "";
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  border-bottom: 1px dashed #c9d4c5;
}
.pricing .item .flex .price {
  margin-left: auto;
  font-family: var(--font-title);
  font-size: 17px;
  color: #000;
  font-weight: 400;
}

/* ======= Clients style ======= */
.clients {
  background-color: var(--color-primary-green);
}
.clients .owl-carousel {
  margin: 20px 0;
}
.clients .logo {
  opacity: 1;
  line-height: 0;
  padding: 20px 0;
  text-align: center;
}
.clients .logo:hover {
  opacity: 1;
}
.clients img {
  -webkit-filter: none;
  filter: none;
  height: 35px;
}

/* =======  Image Gallery style  ======= */
.gallery-filter {
  width: 100%;
  padding-bottom: 30px;
  padding-left: 0px;
  position: relative;
}
.gallery-filter li {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 400;
  margin-right: 15px;
  display: inline-block;
  cursor: pointer;
  color: #000;
}
.gallery-filter li:last-child {
  margin-right: 0;
}
.gallery-filter li.active {
  color: var(--color-primary-brown);
  content: "";
  left: 0;
  bottom: -4px;
  border-bottom: 2px solid var(--color-primary-brown);
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.gallery-filter li:hover {
  color: var(--color-primary-brown);
}
.gallery-item-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  -webkit-transition: all 1.25s cubic-bezier(0.01, 0.71, 0.26, 0.94);
  -moz-transition: all 1.25s cubic-bezier(0.01, 0.71, 0.26, 0.94);
  transition: all 1.25s cubic-bezier(0.01, 0.71, 0.26, 0.94);
  border-radius: 7px;
}
.gallery-box {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 10px;
  isolation: isolate;
}
.gallery-box .gallery-img {
  position: relative;
  overflow: hidden;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.gallery-box .gallery-img:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery-box .gallery-img > img {
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  border-radius: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery-box:hover .gallery-img > img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.gallery-box .gallery-detail {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  padding: 30px 20px;
  bottom: 0;
}
.gallery-box .gallery-detail h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
}
.gallery-box .gallery-detail p {
  color: #fff;
  margin-bottom: 0;
}
.gallery-box:hover .gallery-detail {
  opacity: 1;
  transform: translateX(0px);
}
/* magnific popup custom */
.mfp-counter {
  display: none;
}
.mfp-figure button {
  border: 0px solid transparent;
}
button.mfp-close,
button.mfp-arrow {
  border: 0px solid transparent;
  background: transparent;
}
.mfp-bg,
body.mfp-zoom-out-cur {
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 100% !important;
}

/* ======= Video Gallery style ======= */
.vid-icon {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
}
.vid-icon:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.video-gallery-button {
  position: relative;
  margin: auto;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  z-index: 4;
  margin-right: 20px;
  float: left;
}
.video-gallery-polygon {
  z-index: 2;
  padding-right: 5px;
  display: inline-block;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-primary-brown);
  border-radius: 50%;
  color: #fff;
  padding: 12px 11px 12px 13px;
  line-height: 0;
  box-shadow: 0px 0px 0px 5px rgb(255 255 255 / 10%);
}
.video-gallery-polygon:hover {
  background: #9ac532;
  color: #fff;
}
.video-gallery-polygon {
  font-size: 20px;
}
.video-gallery {
  position: relative;
}
.video-gallery .item {
  position: relative;
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
  margin-bottom: 30px;
}
.video-gallery .item img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.video-gallery .item:hover img {
  transform: scale(1.05);
}
.video-gallery .item .title {
  position: absolute;
  top: 0px;
  padding: 30px;
}
.video-gallery .item .title h4 {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
.video-gallery .item .curv-butn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 0 40px 0 0;
}
.video-gallery .item .curv-butn.icon-bg {
  background: #fff !important;
}
.video-gallery .item .curv-butn .vid {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 100%;
  background: transparent;
  color: #fff;
}
.video-gallery .item .curv-butn .br-left-top {
  position: absolute;
  top: -24px;
  left: -1px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  line-height: 1;
}
.video-gallery .item .curv-butn .br-left-top svg {
  width: 24px;
  height: 24px;
}
.video-gallery .item .curv-butn .br-right-bottom {
  position: absolute;
  bottom: -1px;
  right: -24px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  line-height: 1;
}
.video-gallery .item .curv-butn .br-right-bottom svg {
  width: 24px;
  height: 24px;
}
.video-gallery .item .curv-butn .icon {
  width: 60px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  border: 1px solid var(--color-primary-brown);
  background-color: var(--color-primary-brown);
  border-radius: 100%;
  line-height: 60px;
}
.video-gallery .item:hover .curv-butn .icon {
  background-color: #9ac532;
  border: 1px solid #9ac532;
  color: #fff;
  border-radius: 100%;
}

/* ======= Video Popup style ======= */
.play-button {
  position: relative;
  margin: auto;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  z-index: 4;
}
.play-button svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.polygon {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 90px;
  font-size: 27px;
  z-index: 2;
}
.play-button svg.circle-fill {
  z-index: 1;
  stroke-dasharray: 322;
  stroke-dashoffset: 322;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.play-button:hover svg.circle-fill {
  stroke-dashoffset: 38.5;
}
.play-button svg.circle-track {
  z-index: 0;
}
.video-wrapper {
}
.video-wrapper .vid {
  position: relative;
  z-index: 8;
}
.video-wrapper .vid .vid-button:hover .icon {
  color: #fff;
}
.video-wrapper .vid .vid-button:hover .icon:before {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.video-wrapper .vid .vid-button .icon {
  color: #fff;
  width: 100px;
  height: 100px;
  border: none;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
  font-size: 32px;
  position: relative;
  transition: border-color 300ms ease, transform 300ms ease,
    background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
}
.video-wrapper .vid .vid-button .icon:after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 5px;
  left: 5px;
  border: 2px solid #9ac532;
  border-radius: 50%;
  z-index: -1;
}
.video-wrapper .vid .vid-button .icon:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 5px;
  left: 5px;
  background: transparent;
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
  -o-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
  transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}
.video-wrapper .vid .vid-button:hover .icon:after {
  border: 3px solid #fff;
}

/* ======= Testimonials style ======= */
.testimonials .item {
  position: relative;
  background: transparent;
}
.testimonials .item h5 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
}
.testimonials .item p {
  color: #fff;
  font-weight: 300;
  line-height: 1.5em;
}
.testimonials .item .who {
  margin: 0;
}
.testimonials .item .who img {
  border-radius: 100%;
}
.testimonials .item .who .img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 3px;
  border: 2px solid #9ac532;
}
.testimonials .item .who h6 {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  margin-bottom: 0px;
  padding-top: 10px;
  color: #fff;
  line-height: 1em;
}

/* ======= FAQs style ======= */
.faqs {
  position: relative;
  padding: 0px;
}
.faqs .item {
  position: relative;
  background: #fff;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid rgba(91, 154, 66, 0.3);
}
.faqs .item.active-block {
  border-radius: 20px;
}
.faqs .item:last-child {
  margin-bottom: 0;
}
.faqs .item .title {
  position: relative;
  font-family: var(--font-title);
  font-size: 17px;
  line-height: 17px;
  font-weight: 400;
  cursor: pointer;
  padding: 30px 30px;
  padding-right: 80px;
  color: #000;
  transition: all 500ms ease;
}
.faqs .item .title:before {
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 13px;
  color: #fff;
  content: "\e628";
  font-family: "themify";
  transition: all 500ms ease;
  background: var(--color-primary-brown);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
}
.faqs .item .title.active {
  background-color: var(--color-primary-brown);
  color: #fff;
}

.faqs .item .title.active:before {
  color: #000;
  font-family: "themify";
  content: "\e62a";
  background: #fff;
}

.faqs .item .cont {
  position: relative;
  display: none;
  padding: 30px;
  border-radius: 0px 0px 20px 20px;
}
.faqs .item .cont.current {
  display: block;
}
.faqs .item .cont .text {
  display: block;
  position: relative;
  top: 0px;
}

/* ======= Blog Style ======= */
.blog {
  position: relative;
}
.blog .item {
  position: relative;
  border-radius: 10px;
  transition: all 0.4s ease;
  margin-bottom: 30px;
}
.blog .item:hover {
  transform: translateY(-10px);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.blog .item .img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.blog .item .box {
  padding: 0;
}
.blog .item .cont {
  padding: 30px;
  background: #fff;
  position: relative;
  z-index: 2;
  border-radius: 0 0 10px 10px;
}
.blog .item .cont .date {
  padding: 2px 20px;
  border: 1px solid #f3f5f4;
  border-radius: 30px;
  font-size: 12px;
  color: #484848;
  margin-bottom: 15px;
  background: #f3f5f4;
}
.blog .item .cont .date i {
  color: var(--color-primary-brown);
}
.blog .item .cont h5 {
  font-size: 20px;
}
.blog .item .cont h5:hover {
  color: var(--color-primary-brown);
}
.blog .item .cont h5 a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
}
/* blog sidebar */
.blog-sidebar .widget {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  border: none;
}
.blog-sidebar .widget ul {
  margin-bottom: 0;
  padding: 0;
}
.blog-sidebar .widget ul li {
  font-size: 17px;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.blog-sidebar .widget ul li a {
  color: #484848;
}
.blog-sidebar .widget ul li a.active {
  color: #484848;
}
.blog-sidebar .widget ul li a:hover {
  color: var(--color-primary-brown);
}
.blog-sidebar .widget ul li:last-child {
  margin-bottom: 0;
}
.blog-sidebar .widget ul li i {
  font-size: 12px;
  margin-right: 10px;
  color: var(--color-primary-brown);
}
.blog-sidebar .widget .recent li {
  display: block;
  overflow: hidden;
}
.blog-sidebar .widget .recent .thum {
  width: 110px;
  overflow: hidden;
  float: left;
  border-radius: 10px;
}
.blog-sidebar .widget .recent a {
  display: block;
  margin-left: 125px;
}
.blog-sidebar .widget-title {
  margin-bottom: 20px;
}
.blog-sidebar .widget-title h6 {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(91, 154, 66, 0.3);
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}
.blog-sidebar .search form {
  position: relative;
}
.blog-sidebar .search form input {
  width: 100%;
  padding: 16px 20px;
  border: 0;
  background: #f3f5f4;
  margin-bottom: 0;
  border: none;
  color: #484848;
  border-radius: 30px;
}
.blog-sidebar .search form input::placeholder {
  color: #484848;
}
.blog-sidebar .search form button {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: none;
  background: var(--color-primary-brown);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  outline: none;
  padding: 0px 16px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 4px;
  right: 5px;
  border-radius: 100%;
  outline: none;
}
.blog-sidebar button[type="submit"] i {
  margin-right: 0px;
}
.blog-sidebar:hover .search form button {
  background-color: var(--color-primary-green);
  color: #fff;
  outline: none;
}
.blog-sidebar .tags li {
  margin: 4px !important;
  padding: 10px 30px;
  background-color: #f3f5f4;
  color: #484848;
  float: left;
  border-radius: 30px;
}
.blog-sidebar ul.tags li a {
  font-size: 14px;
  color: #484848;
}
.blog-sidebar ul.tags li:hover,
.blog-sidebar ul.tags li:hover a {
  background-color: var(--color-primary-green);
  color: #fff;
}
/* pagination */
.pagination-wrap {
  padding: 0;
  margin: 0;
}
.pagination-wrap li {
  display: inline-block;
  margin: 0 5px;
}
.pagination-wrap li a {
  background: #fff;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  border: 1px solid #fff;
  border-radius: 100%;
  transition: border-color 300ms ease, transform 300ms ease,
    background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
}
.pagination-wrap li a i {
  font-size: 15px;
}
.pagination-wrap li a:hover {
  opacity: 1;
  text-decoration: none;
  background: var(--color-primary-green);
  border: 1px solid var(--color-primary-green);
  color: #fff;
  transform: translate3d(0px, -6px, 0.01px);
}
.pagination-wrap li a.active {
  background-color: var(--color-primary-green);
  border: 1px solid var(--color-primary-green);
  color: #fff;
}
@media screen and (max-width: 991px) {
  .pagination-wrap {
    padding: 0;
    margin: 0;
    text-align: center;
  }
}

/* ======= Post style ======= */
.post {
  position: relative;
}
.post h3 {
  font-size: 24px;
  color: #000;
}
.post .comment {
}
.post .comment .item {
  display: flex;
  margin-bottom: 60px;
}
.post .comment .item .img {
  margin-right: 20px;
  flex: 0 0 auto;
}
.post .comment .item .img img {
  border-radius: 100%;
  width: 100px;
  padding: 3px;
  border: 2px solid #9ac532;
}
.post .comment .item .cont h6 {
  font-size: 17px;
  color: var(--color-primary-green);
}
.post .comment .item .cont h6 span {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: #484848;
  margin-left: 15px;
  font-weight: 300;
}

/* ======= Contact style ======= */
.contact h3 {
  font-size: 24px;
  color: #000;
}
/* contact box */
.contact-box {
  position: relative;
  margin-bottom: 0px;
  margin-top: -100px;
}
.contact-box .container {
  position: relative;
  z-index: 2;
}
.contact-box .item {
  background: #fff;
  padding: 45px 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  line-height: 1;
  text-align: left;
  overflow: hidden;
  transition: background-color 300ms ease, transform 300ms ease,
    color 300ms ease;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.contact-box .item.active {
  background: var(--color-primary-green);
}
.contact-box .item:hover {
  background: var(--color-primary-brown);
  transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.contact-box .item h5 {
  font-size: 20px;
  color: #000;
  margin-bottom: 5px;
}
.contact-box .item.active h5 {
  color: #fff;
}
.contact-box .item:hover h5 {
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-box .item p {
  color: #484848;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 0;
}
.contact-box .item.active p {
  color: #fff;
}
.contact-box .item:hover p {
  color: #fff;
}
.contact-box .item span {
  font-size: 45px;
  color: var(--color-primary-brown);
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-box .item.active span {
  color: #fff;
}
.contact-box .item:hover span {
  color: #fff;
}
.contact-box .item i.numb {
  font-size: 120px;
  position: absolute;
  bottom: -20px;
  right: -20px;
  color: rgba(0, 0, 0, 0.3);
  opacity: 0.2;
}
.contact-box .item.active i.numb {
  color: rgba(0, 0, 0, 0.3);
}
.contact-box .item:hover .numb {
  color: rgba(0, 0, 0, 0.3);
}

/* ======= Section Info style ======= */
.section-info {
  position: relative;
  display: contents;
}
.section-info .icons {
  margin-right: 10px;
  padding: 0 20px;
  border-radius: 30px;
  background-color: var(--color-primary-green);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 13px;
  display: inline-block !important;
  vertical-align: middle !important;
  letter-spacing: 1px;
}
.section-info .tag {
  margin-right: 10px;
  padding: 0 20px;
  border-radius: 30px;
  background-color: var(--color-primary-green);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 400;
  display: inline-block !important;
  vertical-align: middle !important;
  letter-spacing: 1px;
}
.section-info .desc {
  margin: 0;
  color: #484848;
  display: inline-block;
  vertical-align: middle;
  display: inherit;
}
.section-info .text-decoration-line-bottom {
  border-bottom: 1px solid var(--color-primary-brown);
  line-height: 1.5em;
  color: #000;
  font-family: var(--font-title);
}
.section-info.bg {
  background: var(--color-primary-brown);
}
@media screen and (max-width: 991px) {
  .section-info {
    display: block;
  }
}

/* ======= Buttons style ======= */
/* button 1 */
.button-1 {
  display: inline-block;
  height: auto;
  padding: 14px 40px;
  border: 1px solid var(--color-primary-brown);
  border-radius: 30px;
  background-color: var(--color-primary-brown);
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  font-family: var(--font-title);
  transition: border-color 300ms ease, transform 300ms ease,
    background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
}
[data-overlay-dark] .button-1 span,
.button-1 span {
  font-size: 13px;
  margin-left: 5px;
  color: #fff;
}
[data-overlay-dark] .button-1 i,
.button-1 i {
  font-style: normal;
  font-size: 13px;
  padding-right: 5px;
  color: #fff;
}
.button-1:hover {
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
  transform: translate3d(0px, -6px, 0.01px);
}
.button-1:hover span {
  color: #000;
}
/* button 2 */
.button-2 {
  display: inline-block;
  height: auto;
  padding: 14px 40px;
  border: 1px solid var(--color-primary-green);
  border-radius: 30px;
  background-color: var(--color-primary-green);
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-title);
  transition: border-color 300ms ease, transform 300ms ease,
    background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
}
[data-overlay-dark] .button-2 span,
.button-2 span {
  font-size: 13px;
  margin-left: 5px;
  color: #fff;
}
[data-overlay-dark] .button-2 i,
.button-2 i {
  font-style: normal;
  font-size: 13px;
  padding-right: 5px;
  color: #fff;
}
.button-2:hover {
  border: 1px solid var(--color-primary-brown);
  background-color: var(--color-primary-brown);
  color: #fff;
  transform: translate3d(0px, -6px, 0.01px);
}
.button-2:hover i,
.button-2:hover span {
  color: #fff;
}

/* ====== 404 Page style ======= */
.notfound {
  min-height: calc(100vh - 100px);
  height: auto;
  position: relative;
  background-blend-mode: overlay;
  background: rgba(0, 0, 0, 0.5);
  background-image: url("../img/slider/01.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}
.notfound h1 {
  font-size: 120px;
  font-weight: 400;
  margin-bottom: 0px;
  position: relative;
  color: #fff;
}
.notfound h3 {
  font-size: 27px;
  font-weight: 400;
  color: var(--color-primary-brown);
  position: relative;
  margin-bottom: 15px;
}
.notfound p {
  color: #fff;
  font-size: 17px;
}
/* coming form */
.notfound form {
  margin-top: 30px;
  position: relative;
}
.notfound form input {
  width: 100%;
  padding: 15px 60px 15px 20px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  margin-bottom: 15px;
  outline: none;
}
.notfound form input::placeholder {
  color: #fff;
}
.notfound form button {
  background-color: var(--color-primary-brown);
  padding: 9px 27px;
  border-radius: 30px;
  color: #fff;
  border: 0;
  position: absolute;
  top: 4.5px;
  right: 4.5px;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 400;
  outline: none;
}
.notfound form button:hover {
  background-color: var(--color-primary-green);
  color: #fff;
  outline: none;
}

/* ======= Booking style ======= */
.booking-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 5%;
  z-index: 5;
}
.booking2-wrapper {
  position: relative;
  margin-bottom: 40px;
}
.booking-inner {
  position: relative;
  border-radius: 0;
}
.form1 {
  display: block;
  padding: 0;
  position: relative;
}
.form1.brdr {
  padding: 15px 15px 0 15px;
  background: #fff;
  border-radius: 60px;
}
.form1 label {
  display: none;
}
.form1 .col1 {
  float: left;
  width: 20%;
}
.form1 .col2 {
  float: left;
  width: 14%;
}
.form1 .col3 {
  float: left;
  width: 18%;
}
.form1 .c1 {
  border-right: 1px solid #f1eeeb;
  height: 52.5px;
  margin-bottom: 15px;
}
.form1 .c2 {
  border-right: 1px solid #f1eeeb;
  height: 52.5px;
  margin-bottom: 15px;
}
.form1 .c3 {
  border-right: 1px solid #f1eeeb;
  height: 52.5px;
  margin-bottom: 15px;
}
.form1 .c4 {
  border-right: 1px solid #f1eeeb;
  height: 52.5px;
  margin-bottom: 15px;
}
.form1 .c5 {
  border-right: 1px solid #f1eeeb;
  height: 52.5px;
  margin-bottom: 15px;
}
.ui-datepicker .ui-datepicker-header {
  background: var(--color-primary-green);
  border: var(--color-primary-green);
  color: #fff;
}
.ui-datepicker {
  font-size: 17px;
  color: #000;
  background: #fff;
  z-index: 9999 !important;
  border: 1px solid #fff;
  border-radius: 0px;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #f3f5f4;
  background: #f3f5f4;
  color: #000;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid var(--color-primary-green);
  background: var(--color-primary-green);
  font-weight: normal;
  color: #fff;
}
.ui-datepicker .ui-datepicker-prev:after {
  font-size: 10px;
  content: "\e64a";
  font-family: "themify";
  color: #fff;
}
.ui-datepicker .ui-datepicker-next:before {
  font-size: 10px;
  content: "\e649";
  font-family: "themify";
  color: #fff;
  float: right;
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background: transparent;
  border: 1px solid transparent;
}
.booking-button {
  display: block;
  padding: 0;
  border: none;
  margin: 0;
  width: 100%;
  background: var(--color-primary-green);
  color: #fff;
  font-family: var(--font-title);
  font-size: 17px;
  text-decoration: none;
  line-height: 60px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-out;
  font-weight: 400;
  border-radius: 30px;
}
.booking-button:hover {
  background: var(--color-primary-brown);
  color: #fff;
}
.booking-button:focus {
  outline: none;
}
.input1_inner {
  position: relative;
}
.input1_inner:after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  pointer-events: none;
  content: "\e6b6";
  font-family: "themify";
  font-size: 15px;
  color: #484848;
  line-height: 1;
  z-index: 99999;
}
.input1_inner input {
  display: block;
  width: 100%;
  font-size: 17px;
  color: #484848;
  padding: 15px 50px 15px 15px;
  background: #fff;
  border: none;
  box-shadow: none;
  border-radius: 30px;
  border: 1px solid rgba(91, 154, 66, 0.2);
}
.input1_inner input::placeholder {
  font-size: 17px;
  color: #484848 !important;
}
.input1_inner input:focus {
  outline: none;
  box-shadow: none;
  background: #fff;
  color: #484848 !important;
}
.select1_wrapper {
  margin-bottom: 0;
}
.select1_inner {
  position: relative;
}
.select1_inner:after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  pointer-events: none;
  content: "\e64b";
  font-family: "themify";
  font-size: 10px;
  color: #484848;
  font-weight: normal;
  line-height: 15px;
}
.select2 {
  width: 100%;
  background: #fff;
  margin-bottom: 15px;
  border-radius: 30px;
  border: 1px solid rgba(91, 154, 66, 0.2);
}
.input1_wrapper {
  margin-bottom: 15px;
}
.select2 *:focus {
  outline: none !important;
}

.btn-form1-submit {
  width: 100%;
  position: relative;
}
.btn-form1-submit:hover {
  background: var(--color-primary-brown);
  transform: translate3d(0px, -6px, 0.01px);
}
.btn-form1-submit:focus {
  outline: none;
}
.btn-form2-submit {
  display: block;
  padding: 0;
  border: none;
  margin: 0;
  width: 100%;
  background: var(--color-primary-green);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
  text-decoration: none;
  line-height: 52px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-out;
  font-family: "Outfit", sans-serif;
}
.btn-form2-submit:hover {
  background: #fff;
  color: #484848;
}
.btn-form2-submit:focus {
  outline: none;
}
.btn-form2-submit:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background: inherit;
}

.input2_inner {
  position: relative;
  position: relative;
}
.input2_inner input {
  display: block;
  width: 100%;
  font-size: 17px;
  color: #484848;
  padding: 15px 40px 15px 15px;
  background: #fff;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.input2_inner input::placeholder {
  font-size: 17px;
  color: #484848 !important;
}
.input2_inner input:focus {
  outline: none;
  box-shadow: none;
  background: #fff;
  color: #484848 !important;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 500px;
}
.select2-container--default .select2-selection--single {
  background: none;
  border-radius: 0;
  border: none;
  height: auto;
}
.selection {
  display: inline-flex;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 17px;
  padding: 14.75px 49px 14.75px 15px;
  color: #484848;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none;
}
.select2-dropdown {
  background: none;
  border-radius: 0;
  z-index: 99999;
  min-width: 0px;
  border: none;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: 1px solid #f3f5f4;
}
.select2-container--open .select2-dropdown--below {
  border-top: 1px solid #f3f5f4;
}
.select2-results__option {
  padding: 10px 30px;
  background: #fff;
  font-size: 17px;
  line-height: 20px;
  color: #484848;
  border-top: 1px solid #f3f5f4;
  text-align: center;
}
.select2-results__option:first-child {
  border-top: none;
}
.small .select2-results__option {
  padding-left: 0;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
  background: var(--color-primary-green);
  color: #fff;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background: var(--color-primary-green);
  color: #fff;
}
@media (max-width: 991.98px) {
  .form1 .col1 {
    width: 50%;
    border-bottom: 1px solid #f3f5f4;
  }
  .form1 .c2 {
    border-right: none;
  }
  .form1 .col2 {
    width: 25%;
  }
  .form1 .col3 {
    width: 25%;
  }
}
@media (max-width: 767.98px) {
  .form1 .col1 {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #f3f5f4;
  }
  .form1 .col2 {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #f3f5f4;
  }
  .form1 .col3 {
    width: 100%;
    border-right: 0;
  }
  .btn-form1-submit:after {
    background: none;
  }
  .booking-wrapper {
    position: relative;
    bottom: auto;
    padding: 30px 0 0;
  }
}

/* ======= Footer style ======= */
.footer {
  position: relative;
  background-color: #fff;
}
/* footer top */
.footer .top {
  padding: 80px 0 20px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .top .item .logo,
.footer .bottom .logo {
  width: 130px;
  margin-bottom: 15px;
}
.footer .top .item h2 {
  font-size: 27px;
  margin-bottom: 15px;
}
.footer .top .item h3 {
  color: #000;
  font-size: 20px;
}
.footer .top .item h3 i {
  color: #000;
  font-style: normal;
  font-weight: normal;
}
.footer .top .item p,
.footer .top .item p a {
  color: #484848;
  margin-bottom: 20px;
}
.footer .top .item .phone {
  font-size: 17px;
  color: #484848;
  position: relative;
}
.footer .top .item .mail {
  font-size: 17px;
  line-height: 3em;
  color: #484848;
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer .top .item .mail:before {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(91, 154, 66, 0.3);
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
/* newsletter */
.footer .top .item .newsletter {
  position: relative;
}
.footer .top .item .newsletter input {
  height: 60px;
  width: 100%;
  border: none;
  background: transparent;
  font-size: 17px;
  font-weight: 400;
  color: #484848;
  outline: none;
  padding: 0 90px 0 20px;
  border: 1px solid rgba(91, 154, 66, 0.4);
  border-radius: 30px;
}
.footer .top .item .newsletter button {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: none;
  background: var(--color-primary-brown);
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  outline: none;
  padding: 0px 16px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 100%;
  outline: none;
}
.footer .top .item .newsletter input::placeholder {
  color: #484848;
  font-weight: 300;
}
.footer .top .item .newsletter:hover button {
  background: var(--color-primary-green);
  outline: none;
  color: #fff;
}
.footer .top .item .newsletter button[type="submit"] i {
  transform: rotate(0);
  -webkit-transition: all 0.7s linear;
  -o-transition: all 0.7s linear;
  transition: all 0.7s linear;
}
.footer .top .item .newsletter:hover button[type="submit"] i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.7s linear;
  -o-transition: all 0.7s linear;
  transition: all 0.7s linear;
}
/* social icons */
.social-icons li {
  display: inline-block;
  border: none;
  z-index: 1;
  position: relative;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 3px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 100%;
  font-size: 15px;
  color: #fff;
  border: 1px solid var(--color-primary-brown);
  background: var(--color-primary-brown);
}
.social-icons .list-inline {
  margin: 0;
}
.social-icons li:hover {
  background: var(--color-primary-green);
  color: #fff;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  border: 1px solid var(--color-primary-green);
}
/* footer bottom */
.footer .bottom {
  position: relative;
  display: block;
  background-color: #f3f5f4;
  padding: 30px 0;
  border: none;
}
.footer .bottom p {
  color: #484848;
  font-size: 15px;
  margin: 10px;
}
.footer .bottom p a {
  background: linear-gradient(
    to bottom,
    rgba(91, 154, 66, 0.3) 0%,
    rgba(91, 154, 66, 0.3) 100%
  );
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 1px 1px;
  color: #484848;
  text-decoration: none;
  transition: background-size 0.2s;
  line-height: 1.5em;
}
.footer .bottom p a:hover {
  color: var(--color-primary-brown);
}
/* footer bottom links */
.footer .bottom .links {
  text-align: end;
}
.footer .bottom .links ul {
  margin: 0;
  padding: 0;
}
.footer .bottom .links ul li {
  display: inline-block;
  margin: 10px;
  font-size: 15px;
}
.footer .bottom .links ul li a {
  color: #484848;
  position: relative;
}
.footer .bottom .links ul li:hover,
.footer .bottom .links ul li:hover a {
  color: var(--color-primary-brown);
}

/* ======= toTop Button style ======= */
.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 145, 27, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 145, 27, 0.2);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f077";
  text-align: center;
  line-height: 50px;
  font-size: 12px;
  font-weight: 400;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke-width: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap::after {
  color: var(--color-primary-brown);
}
.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary-brown);
}

/* =======  Overlay Effect Bg image style  ======= */
[data-overlay-dark] {
  position: relative;
}
[data-overlay-dark] .container {
  position: relative;
  z-index: 2;
}
[data-overlay-dark]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-overlay-dark]:before {
  background: #000;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
  color: #fff;
}
[data-overlay-dark] p {
  color: #fff;
}
[data-overlay-dark="0"]:before {
  opacity: 0;
}
[data-overlay-dark="1"]:before {
  opacity: 0.1;
}
[data-overlay-dark="2"]:before {
  opacity: 0.2;
}
[data-overlay-dark="3"]:before {
  opacity: 0.3;
}
[data-overlay-dark="4"]:before {
  opacity: 0.4;
}
[data-overlay-dark="5"]:before {
  opacity: 0.5;
}
[data-overlay-dark="6"]:before {
  opacity: 0.6;
}
[data-overlay-dark="7"]:before {
  opacity: 0.7;
}
[data-overlay-dark="8"]:before {
  opacity: 0.8;
}
[data-overlay-dark="9"]:before {
  opacity: 0.9;
}
[data-overlay-dark="10"]:before {
  opacity: 1;
}

/* ======= Responsive style ======= */
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1220px;
  }
}
@media screen and (max-width: 991px) {
  .bg-fixed {
    background-attachment: scroll !important;
  }
  .footer .bottom .links ul {
    text-align: left;
  }
}

/* ======= Modal Popup style ======= */
.modal-content {
  position: relative;
  border-radius: 10px;
  border: none;
}
.modal-header {
  background: var(--color-primary-green);
  border: none;
  padding: 30px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.modal-body {
  background: #f3f5f4;
  padding: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
  padding: 45px 30px;
  border-radius: 10px;
}
.modal-body .booking-box {
  margin-bottom: 0;
}
.modal-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 24px;
  color: #fff;
}
.modal-body .input1_inner input {
  position: relative;
  z-index: 99999;
}
.modal-header .btn-close:focus,
.modal-header .btn-close:active {
  outline: none;
  box-shadow: none;
}

/* ======= Booking Box style ======= */
.booking-box {
  position: relative;
  background: #f3f5f4;
  padding: 45px 30px;
  border-radius: 10px;
}
.booking-box .head-box h6 {
  font-size: 27px;
  text-align: center;
  font-weight: 400;
  color: #000;
  text-transform: none;
  position: relative;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.booking-box .head-box h4 {
  font-size: 27px;
  color: #000;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
}
.booking-box .head-box h4 span {
  color: var(--color-primary-green);
}
@media screen and (max-width: 991px) {
  .booking-box {
    margin-bottom: 90px;
    padding: 40px 30px;
  }
}

/* menu mobile start */

/* Mobile Menu Toggle Button */
.hydro-site-menu-mobile-toggle {
  position: sticky;
  top: 0px;
  right: 0px;
  z-index: 1050;
  /*HigherthanBootstrap'sdefaultz-index*/
  cursor: pointer;
  display: none;
  background-color: var(--background-color);
  display: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.hydro-site-menu-mobile-hamburger {
  width: 30px;
  height: 24px;
  position: relative;
}

.hydro-site-menu-mobile-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-primary-green);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}

.hydro-site-menu-mobile-hamburger span:nth-child(1) {
  top: 0px;
}

.hydro-site-menu-mobile-hamburger span:nth-child(2) {
  top: 10px;
}

.hydro-site-menu-mobile-hamburger span:nth-child(3) {
  top: 20px;
}

/* Mobile Menu Container */
.hydro-site-menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-neutral-white);
  z-index: 1060; /* Higher than Bootstrap's modal z-index */
  overflow: hidden;
  display: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.hydro-site-menu-mobile.open {
  opacity: 1;
}

/* Menu Header */
.hydro-site-menu-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-neutral-light);
  position: relative;
}

.hydro-site-menu-mobile-title {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hydro-site-menu-mobile-close {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.hydro-site-menu-mobile-close span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-primary-green);
  border-radius: 2px;
  opacity: 1;
  left: 0;
}

.hydro-site-menu-mobile-close span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hydro-site-menu-mobile-close span:nth-child(2) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Menu Container */
.hydro-site-menu-mobile-container {
  height: calc(100% - 65px);
  overflow-y: auto;
  padding: 0;
  background-color: var(--color-neutral-white);
}

/* General Menu Styling */
.hydro-site-menu-mobile-level-1,
.hydro-site-menu-mobile-level-2,
.hydro-site-menu-mobile-level-3 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hydro-site-menu-mobile-item {
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.hydro-site-menu-mobile-item:last-child {
  border-bottom: none;
}

.hydro-site-menu-mobile-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hydro-site-menu-mobile-link {
  display: block;
  padding: 15px 20px;
  color: var(--color-neutral-dark);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  flex: 1;
}

.hydro-site-menu-mobile-link:hover,
.hydro-site-menu-mobile-link:focus {
  color: var(--color-primary-green);
  background-color: var(--color-pastel-beige);
}

/* Submenu Styling */
.hydro-site-menu-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: var(--color-neutral-light);
}

.hydro-site-menu-mobile-item.active > .hydro-site-menu-mobile-submenu {
  max-height: 1000px; /* Large enough to accommodate all content */
}

/* Expand Icon */
.hydro-site-menu-mobile-expand {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hydro-site-menu-mobile-expand:before,
.hydro-site-menu-mobile-expand:after {
  content: "";
  position: absolute;
  background-color: var(--color-primary-green);
  transition: all 0.3s ease;
}

.hydro-site-menu-mobile-expand:before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hydro-site-menu-mobile-expand:after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hydro-site-menu-mobile-item.active
  > .hydro-site-menu-mobile-item-header
  .hydro-site-menu-mobile-expand:after {
  opacity: 0;
}

/* Level 1 Specific Styling */
.hydro-site-menu-mobile-level-1 {
  padding: 20px 0;
}

.hydro-site-menu-mobile-level-1
  > .hydro-site-menu-mobile-item
  > .hydro-site-menu-mobile-item-header
  > .hydro-site-menu-mobile-link {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--color-neutral-dark);
}

.hydro-site-menu-mobile-level-1
  > .hydro-site-menu-mobile-item.active
  > .hydro-site-menu-mobile-item-header
  > .hydro-site-menu-mobile-link {
  color: var(--color-primary-green);
  font-weight: bold;
}

/* Level 2 Specific Styling */
.hydro-site-menu-mobile-level-2 {
  background-color: var(--color-neutral-light);
  position: relative;
}

.hydro-site-menu-mobile-level-2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary-brown);
}

.hydro-site-menu-mobile-level-2
  > .hydro-site-menu-mobile-item
  > .hydro-site-menu-mobile-item-header
  > .hydro-site-menu-mobile-link,
.hydro-site-menu-mobile-level-2
  > .hydro-site-menu-mobile-item
  > .hydro-site-menu-mobile-link {
  padding-left: 30px;
  font-size: 15px;
}

.hydro-site-menu-mobile-level-2
  > .hydro-site-menu-mobile-item.active
  > .hydro-site-menu-mobile-item-header
  > .hydro-site-menu-mobile-link {
  color: var(--color-primary-green);
}

/* Level 3 Specific Styling */
.hydro-site-menu-mobile-level-3 {
  background-color: var(--color-neutral-gray);
  position: relative;
}

.hydro-site-menu-mobile-level-3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 20px;
  height: 2px;
  background-color: var(--color-pastel-orange);
}

.hydro-site-menu-mobile-level-3
  > .hydro-site-menu-mobile-item
  > .hydro-site-menu-mobile-link {
  padding-left: 40px;
  font-size: 14px;
  color: var(--color-neutral-muted);
}

.hydro-site-menu-mobile-level-3
  > .hydro-site-menu-mobile-item
  > .hydro-site-menu-mobile-link:hover {
  color: var(--color-primary-green);
}

/* Booking Button */
.hydro-site-menu-mobile-booking {
  padding: 20px;
  margin-top: 20px;
  text-align: center;
  border-bottom: none !important;
}

.hydro-site-menu-mobile-booking-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-primary-green);
  color: var(--color-neutral-white) !important;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hydro-site-menu-mobile-booking-button:hover,
.hydro-site-menu-mobile-booking-button:focus {
  background-color: #035c64;
  color: var(--color-neutral-white) !important;
}

/* Luxury touches */
.hydro-site-menu-mobile-level-1:before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-primary-green);
  margin: 0 0 20px 20px;
}

/* Active menu item styling */
.hydro-site-menu-mobile-item.active > .hydro-site-menu-mobile-item-header {
  background-color: var(--color-pastel-beige);
}

/* Media Queries */
@media (max-width: 768px) {
  .hydro-site-menu-mobile-toggle {
    display: block;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Animation for submenu */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hydro-site-menu-mobile-submenu {
  animation: fadeIn 0.5s ease;
}
.logo-mobile-img {
  width: 100%;
  max-width: 80px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
/* menu mobile end */

/* slider start */
.slider-fade .owl-dots {
  text-align: center;
}
.header .caption h2 {
  position: relative;
  margin-bottom: 20px;
  font-size: clamp(2rem, 1.3846rem + 3.0769vw, 4rem);
  font-weight: 400;
  line-height: 1em;
  color: var(--background-color);
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.header .caption p {
  font-size: clamp(0.9rem, 0.8385rem + 0.3077vw, 1.1rem);
  line-height: 1.75em;
  margin-bottom: 0;
  color: var(--background-color);
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.slider-fade .owl-theme .owl-nav [class*="owl-"] {
  font-size: 1.2rem;
}
.navbar .dropdown-menu {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}
/* slider end */

/* về chúng tôi start */
.icon-about-us {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.about.section-padding .section-subtitle .iconix img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.hydro-about-us {
  overflow: hidden;
}
.hydro-about-us a,
.hydro-about-us img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-hay-cam-trai {
  width: 100%;
  max-width: 30px;
  height: 100%;
  max-height: 30px;
  object-fit: contain;
}
/* về chúng tôi end */

/* các điểm nổi bật start */
/* General Styles */

/* Section 1: Featured Points (Các điểm nổi bật) */
.hydro-site-cac-diem-noi-bat-section {
  padding: 100px 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.hydro-site-cac-diem-noi-bat-title {
  font-size: clamp(1.7rem, 1.4538rem + 1.2308vw, 2.5rem);
  color: var(--primary-color);
  letter-spacing: 1px;
  font-family: lato-black;
  text-transform: uppercase;
  line-height: 1.5;
}

.hydro-site-cac-diem-noi-bat-divider {
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 0 auto 30px;
}

.hydro-site-cac-diem-noi-bat-features {
  position: relative;
}

.hydro-site-cac-diem-noi-bat-feature {
  opacity: 0;
  transform: translateY(50px);
}

.hydro-site-cac-diem-noi-bat-feature-inner {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 350px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.hydro-site-cac-diem-noi-bat-feature-icon {
  color: var(--primary-color);
}
.hydro-site-cac-diem-noi-bat-feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.hydro-site-cac-diem-noi-bat-feature-title {
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  font-family: lato-b;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: initial;
}

.hydro-site-cac-diem-noi-bat-feature-divider {
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
  margin-bottom: 20px;
}

.hydro-site-cac-diem-noi-bat-feature-text {
  font-size: clamp(0.9rem, 0.8846rem + 0.0769vw, 0.95rem);
  line-height: 1.5;
  color: var(--dark-gray);
  text-align: justify;
}

.hydro-site-cac-diem-noi-bat-parallax-container {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(30px);
}

.hydro-site-cac-diem-noi-bat-parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Section 2: Call-to-Action with Form */
.hydro-site-call-to-action-section {
  padding: 100px 0;
  background-color: var(--background-color);
  position: relative;
}

.hydro-site-call-to-action-content {
  padding-right: 30px;
}

.hydro-site-call-to-action-title {
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: poppins-m;
  line-height: 1.5;
}

.hydro-site-call-to-action-text {
  font-size: clamp(0.9rem, 0.8385rem + 0.3077vw, 1.1rem);
  color: var(--dark-gray);
  margin-bottom: 30px;
  font-family: var(--font-normal);
}

.hydro-site-call-to-action-buttons {
  display: flex;
  flex-wrap: wrap;
  /* gap: 15px; */
  margin-bottom: 30px;
}

.hydro-site-call-to-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  font-family: var(--title-font);
}
.hydro-site-call-to-action-button.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hydro-site-call-to-action-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
}

.hydro-site-call-to-action-button:hover:before {
  transform: translateX(0);
}
.hydro-site-call-to-action-button:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.hydro-site-call-to-action-button span {
  position: relative;
  z-index: 1;
}

.hydro-site-call-to-action-button i {
  margin-left: 10px;
  position: relative;
  z-index: 1;
}

.hydro-site-call-to-action-button.book-now {
  background-color: var(--primary-color);
  color: var(--white);
}

.hydro-site-call-to-action-button.contact {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.hydro-site-call-to-action-button.gallery {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Form Styles */
.hydro-site-call-to-action-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hydro-site-call-to-action-form-title {
  font-size: clamp(1.5rem, 1.4077rem + 0.4615vw, 1.8rem);
  color: var(--primary-color);
  text-align: center;
  font-family: poppins-b;
  text-transform: uppercase;
}

.hydro-site-call-to-action-form-group {
  position: relative;
  margin-bottom: 25px;
}

.hydro-site-call-to-action-form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-size: 0.95rem;
  background-color: transparent;
  transition: border-color var(--transition-medium);
}

.hydro-site-call-to-action-form-textarea {
  resize: none;
  min-height: 120px;
}

.hydro-site-call-to-action-form-label {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 0.95rem;
  color: var(--dark-gray);
  pointer-events: none;
  transition: all var(--transition-medium);
}

.hydro-site-call-to-action-form-input:focus,
.hydro-site-call-to-action-form-input:not(:placeholder-shown) {
  border-color: var(--secondary-color);
  outline: none;
}

.hydro-site-call-to-action-form-input:focus
  + .hydro-site-call-to-action-form-label,
.hydro-site-call-to-action-form-input:not(:placeholder-shown)
  + .hydro-site-call-to-action-form-label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  background-color: var(--white);
  padding: 0 5px;
  color: var(--primary-color);
}

.hydro-site-call-to-action-form-submit {
  width: 100%;
  padding: 14px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.hydro-site-call-to-action-form-submit:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
}

.hydro-site-call-to-action-form-submit:hover:before {
  transform: translateX(0);
}

.hydro-site-call-to-action-form-submit span {
  position: relative;
  z-index: 1;
}

.hydro-site-call-to-action-form-submit i {
  margin-left: 10px;
  position: relative;
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hydro-site-call-to-action-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .hydro-site-call-to-action-buttons {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hydro-site-cac-diem-noi-bat-section,
  .hydro-site-call-to-action-section {
    padding: 70px 0;
  }

  .hydro-site-cac-diem-noi-bat-feature-inner {
    min-height: auto;
  }

  .hydro-site-call-to-action-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hydro-site-cac-diem-noi-bat-section,
  .hydro-site-call-to-action-section {
    padding: 50px 0;
  }

  .hydro-site-call-to-action-form-container {
    padding: 30px 20px;
  }
}
.slider-fade .owl-theme .owl-dots .owl-dot span {
  display: inline-flex;
}
/* các điểm nổi bật end */

/* dịch vụ và sản phẩm start */
/* Common Section Styles */
.hydro-site-dich-vu-san-pham-title,
.hydro-site-gallery-bento-grid-title,
.hydro-site-trainghiem-phanhoi-title,
.hydro-site-tintuc-noibat-title {
  font-size: clamp(1.7rem, 1.4538rem + 1.2308vw, 2.5rem);
  color: var(--primary-color);
  letter-spacing: 1px;
  font-family: lato-black;
  text-transform: uppercase;
  line-height: 1.5;
}

.hydro-site-dich-vu-san-pham-divider,
.hydro-site-gallery-bento-grid-divider,
.hydro-site-trainghiem-phanhoi-divider,
.hydro-site-tintuc-noibat-divider {
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 0 auto 20px;
}

.hydro-site-dich-vu-san-pham-subtitle,
.hydro-site-gallery-bento-grid-subtitle,
.hydro-site-trainghiem-phanhoi-subtitle,
.hydro-site-tintuc-noibat-subtitle {
  font-size: clamp(1.1rem, 1.0077rem + 0.4615vw, 1.2rem);
  color: var(--dark-gray);
  margin-bottom: 30px;
}
.hydro-site-gallery-bento-grid-subtitle,
.hydro-site-trainghiem-phanhoi-subtitle,
.hydro-site-tintuc-noibat-subtitle {
  max-width: 600px;
  margin: 0 auto;
}
/* Section 1: Services & Products (Dịch Vụ & Sản Phẩm) */
.hydro-site-dich-vu-san-pham-section {
  background-color: var(--white);
}

.hydro-site-dich-vu-san-pham-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.hydro-site-dich-vu-san-pham-card-image {
  overflow: hidden;
}

.hydro-site-dich-vu-san-pham-card-image img,
.hydro-site-dich-vu-san-pham-card-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hydro-site-dich-vu-san-pham-card:hover
  .hydro-site-dich-vu-san-pham-card-image
  img {
  transform: scale(1.05);
}

.hydro-site-dich-vu-san-pham-card-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 1;
}

.hydro-site-dich-vu-san-pham-card-content {
  padding: 25px;
}

.hydro-site-dich-vu-san-pham-card-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hydro-site-dich-vu-san-pham-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.hydro-site-dich-vu-san-pham-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}
.hydro-site-dich-vu-san-pham-card-features ul {
  padding: 0;
  list-style: none;
}

.hydro-site-dich-vu-san-pham-card-features li {
  position: relative;
  padding-left: 1.6em;      /* chừa khoảng cho icon */
  margin-bottom: 0.5em;
  line-height: 1.4;
}
.hydro-site-dich-vu-san-pham-card-features ul li::before {
  content: "\f00c";          /* mã Unicode của dấu check trong FA6 */
  font-family: "Font Awesome 6 Free";  /* hoặc "Font Awesome 6 Pro" nếu bạn dùng pro */
  font-weight: 900;          /* weight tương ứng với solid */
  position: absolute;
  left: 0;
  top: 0.1em;                /* căn chỉnh dọc */
  color: var(--secondary-color);            /* nâu sẫm */
  font-size: 1em;            /* kích thước icon, tùy chỉnh nếu cần */
}
/* .hydro-site-dich-vu-san-pham-card-features li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 0.8rem;
} */

.hydro-site-dich-vu-san-pham-card-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color var(--transition-medium);
}

.hydro-site-dich-vu-san-pham-card-button i {
  margin-left: 8px;
  transition: transform var(--transition-medium);
}

.hydro-site-dich-vu-san-pham-card-button:hover i {
  transform: translateX(5px);
}

.mada-swiper-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--secondary-color);
  color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
.mada-swiper-button:hover {
  background: var(--primary-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.mada-swiper-button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.mada-swiper-button-prev {
  left: -20px;
}
.mada-swiper-button-next {
  right: -20px;
}
.hydro-site-dich-vu-san-pham-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

/* dịch vụ và sản phẩm end */

/* album ảnh nổi bật start */
/* Section 2: Gallery & Scrollytelling (Bento Grid Style) */
.hydro-site-gallery-bento-grid-section {
  background-color: var(--light-gray);
}

.hydro-site-gallery-bento-grid-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  opacity: 0;
  transform: translateY(30px);
}

.hydro-site-gallery-bento-grid-item.large {
  height: 500px;
}

.hydro-site-gallery-bento-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hydro-site-gallery-bento-grid-item:hover img {
  transform: scale(1.05);
}

.hydro-site-gallery-bento-grid-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hydro-site-gallery-bento-grid-item:hover
  .hydro-site-gallery-bento-grid-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.hydro-site-gallery-bento-grid-item-content h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.hydro-site-gallery-bento-grid-item-content p {
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.9;
}

.hydro-site-gallery-bento-grid-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.hydro-site-gallery-bento-grid-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hydro-site-gallery-bento-grid-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-medium);
}

.hydro-site-gallery-bento-grid-video-play i {
  color: var(--white);
  font-size: 1.5rem;
}

.hydro-site-gallery-bento-grid-video-play:hover {
  background-color: var(--primary-color);
}

/* album ảnh nổi bật end */

/* đánh giá khách hàng start */
/* Section 3: Testimonials (Trải Nghiệm & Phản Hồi Khách Hàng) */
.hydro-site-trainghiem-phanhoi-section {
  background-color: var(--white);
}

.hydro-site-trainghiem-phanhoi-slider {
  position: relative;
  padding: 20px 0;
}

.hydro-site-trainghiem-phanhoi-slider-container {
  position: relative;
  overflow: hidden;
}

.hydro-site-trainghiem-phanhoi-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hydro-site-trainghiem-phanhoi-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hydro-site-trainghiem-phanhoi-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--light-gray);
}

.hydro-site-trainghiem-phanhoi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hydro-site-trainghiem-phanhoi-content {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
  position: relative;
}

.hydro-site-trainghiem-phanhoi-content:before {
  content: "";
  position: absolute;
  top: 30px;
  left: -15px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--light-gray);
}

.hydro-site-trainghiem-phanhoi-rating {
  margin-bottom: 15px;
}

.hydro-site-trainghiem-phanhoi-rating i {
  color: #ffc107;
  margin-right: 3px;
}

.hydro-site-trainghiem-phanhoi-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.hydro-site-trainghiem-phanhoi-quote:before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.5rem;
  color: var(--secondary-color);
  line-height: 1;
  opacity: 0.3;
}

.hydro-site-trainghiem-phanhoi-author h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.hydro-site-trainghiem-phanhoi-author p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.hydro-site-trainghiem-phanhoi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.hydro-site-trainghiem-phanhoi-prev,
.hydro-site-trainghiem-phanhoi-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-medium);
}

.hydro-site-trainghiem-phanhoi-prev:hover,
.hydro-site-trainghiem-phanhoi-next:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.hydro-site-trainghiem-phanhoi-prev:hover i,
.hydro-site-trainghiem-phanhoi-next:hover i {
  color: var(--white);
}

.hydro-site-trainghiem-phanhoi-prev i,
.hydro-site-trainghiem-phanhoi-next i {
  color: var(--dark-gray);
  transition: color var(--transition-medium);
}

.hydro-site-trainghiem-phanhoi-dots {
  display: flex;
  align-items: center;
  margin: 0 15px;
}

.hydro-site-trainghiem-phanhoi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color var(--transition-medium);
}

.hydro-site-trainghiem-phanhoi-dot.active {
  background-color: var(--primary-color);
}
.hydro-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hydro-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
/* đánh giá khách hàng end */

/* tin tức nổi bật start */
/* Section 4: Featured News (Tin Tức Nổi Bật) */
.hydro-site-tintuc-noibat-section {
  background-color: var(--light-gray);
}

.hydro-site-tintuc-noibat-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.hydro-site-tintuc-noibat-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.hydro-site-tintuc-noibat-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hydro-site-tintuc-noibat-card:hover .hydro-site-tintuc-noibat-card-image img {
  transform: scale(1.05);
}

.hydro-site-tintuc-noibat-card-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hydro-site-tintuc-noibat-card-date .day {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.hydro-site-tintuc-noibat-card-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.hydro-site-tintuc-noibat-card-content {
  padding: 25px;
}

.hydro-site-tintuc-noibat-card-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: lato-b;
}

.hydro-site-tintuc-noibat-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.hydro-site-tintuc-noibat-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-medium);
}

.hydro-site-tintuc-noibat-card-link i {
  margin-left: 8px;
  transition: transform var(--transition-medium);
}

.hydro-site-tintuc-noibat-card-link:hover {
  color: var(--secondary-color);
}

.hydro-site-tintuc-noibat-card-link:hover i {
  transform: translateX(5px);
}

.hydro-site-tintuc-noibat-view-all {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color var(--transition-medium);
}

.hydro-site-tintuc-noibat-view-all i {
  margin-left: 10px;
  transition: transform var(--transition-medium);
}

.hydro-site-tintuc-noibat-view-all:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.hydro-site-tintuc-noibat-view-all:hover i {
  transform: translateX(5px);
}
.vanhiep-title {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.word .letters .letter {
  display: inline-flex;
}
/* tin tức nổi bật end */

/* footer start */

/* Main Footer Styles */
.hydro-site-footer {
  background-color: var(--primary-color);
  color: var(--background-color);
}

.hydro-site-footer-main {
  padding: 5rem 0 3rem;
}

.hydro-site-footer-heading {
  color: var(--background-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  font-family: lato-b;
  font-weight: initial;
}

.hydro-site-footer-divider {
  background-color: var(--secondary-color);
  height: 2px;
  width: 50px;
  margin-bottom: 1.5rem;
  transition: width var(--transition-medium);
}

.hydro-site-footer-company:hover .hydro-site-footer-divider,
.hydro-site-footer-links:hover .hydro-site-footer-divider,
.hydro-site-footer-services:hover .hydro-site-footer-divider,
.hydro-site-footer-newsletter:hover .hydro-site-footer-divider {
  width: 70px;
}

.hydro-site-footer-description {
  color: var(--background-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Contact Info */
.hydro-site-footer-contact-info {
  margin-top: 1.5rem;
}

.hydro-site-footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.hydro-site-footer-contact-icon {
  color: var(--primary-color);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Quick Links */
.hydro-site-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hydro-site-footer-links-list li {
  margin-bottom: 0.75rem;
}

.hydro-site-footer-link {
  display: flex;
  align-items: center;
  color: var(--background-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.hydro-site-footer-link:hover {
  color: var(--secondary-color);
}

.hydro-site-footer-link-icon {
  color: var(--secondary-color);
  margin-right: 0.5rem;
  transition: transform var(--transition-fast);
}

.hydro-site-footer-link:hover .hydro-site-footer-link-icon {
  transform: translateX(3px);
}

/* Newsletter */
.hydro-site-footer-newsletter-text {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.hydro-site-footer-input-group {
  display: flex;
  position: relative;
}

.hydro-site-footer-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  background-color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hydro-site-footer-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 69, 75, 0.1);
}

.hydro-site-footer-submit {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast);
}

.hydro-site-footer-submit:hover {
  background-color: #035c64;
  transform: translateY(-2px);
}

/* Social Media Section */
.hydro-site-footer-social {
  background-color: var(--secondary-color);
  padding: 1.5rem 0;
  /* border-top: 1px solid var(--medium-gray); */
  /* border-bottom: 1px solid var(--medium-gray); */
}

.hydro-site-footer-social-inner {
  display: flex;
  justify-content: center;
}

.hydro-site-footer-social-icons {
  display: flex;
  gap: 1.5rem;
}

.hydro-site-footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-color);
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-medium);
  -webkit-transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-medium);
  -moz-transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-medium);
  -ms-transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-medium);
  -o-transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-medium);
}
.hydro-site-footer-social-icon.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hydro-site-footer-social-icon:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

/* Copyright Section */
.hydro-site-footer-copyright {
  background-color: var(--primary-color);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.hydro-site-footer-copyright-text {
  margin-bottom: 0;
}

.hydro-site-footer-legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.hydro-site-footer-legal-link {
  color: var(--background-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hydro-site-footer-legal-link:hover {
  color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hydro-site-footer-main {
    padding: 4rem 0 2rem;
  }
}

@media (max-width: 767.98px) {
  .hydro-site-footer-legal-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .hydro-site-footer-copyright-text {
    text-align: center;
  }

  .hydro-site-footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hydro-site-footer-main {
    padding: 3rem 0 1.5rem;
  }

  .hydro-site-footer-social-icons {
    gap: 1rem;
  }

  .hydro-site-footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* Animation Classes */
.hydro-site-footer .fade-in {
  opacity: 0;
}

.hydro-site-footer .slide-up {
  opacity: 0;
  transform: translateY(30px);
}

.hydro-site-footer .slide-right {
  opacity: 0;
  transform: translateX(-30px);
}
/* footer end */

/* sửa header start */
.hydro-nav-desktop.navbar {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hydro-nav-desktop.active.navbar {
  height: 70px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}
.hydro-nav-desktop.active {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.hydro-nav-desktop.active .logo-wrapper .logo-img {
  min-width: 100px;
  max-width: 100px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hydro-site-menu-mobile-toggle.active {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hydro-site-menu-mobile-toggle.active .logo-mobile-img {
  width: 100%;
  max-width: 65px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
/* sửa header end */

/* footer start */
.hydro-site-footer-logo {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
.hydro-site-footer-links-list .hydro-site-footer-link:hover {
  color: var(--background-color);
}
.hvr-underline-from-left::before {
  height: 1px;
  background-color: var(--background-color);
}
.hydro-site-footer-background-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.hydro-site-footer-main,
.hydro-site-footer-social,
.hydro-site-footer-copyright {
  position: relative;
  z-index: 2;
}
.hydro-site-footer-copyright {
  background: transparent;
}
/* footer end */

/* trang giới thiệu start */

/* Section Titles */
.hydro-site-about-section-title {
  color: var(--primary-color);
  font-size: clamp(1.5rem, 1.3154rem + 0.9231vw, 2.1rem);
  margin-bottom: 1rem;
  font-family: lato-b;
}

.hydro-site-about-section-divider {
  height: 3px;
  width: 80px;
  background-color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.hydro-site-about-section-subtitle {
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hydro-site-about-hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  background: var(--background-banner) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0;
  background-attachment: fixed;
}

.hydro-site-about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hydro-site-about-hero-content {
  position: relative;
  z-index: 2;
}

.hydro-site-about-hero-title {
  font-size: clamp(2rem, 1.3846rem + 3.0769vw, 4rem);
  text-transform: uppercase;
  font-family: lato-black;
  font-weight: initial;
}

.hydro-site-about-hero-divider {
  height: 3px;
  width: 100px;
  background-color: var(--secondary-color);
  margin: 0 auto 1.5rem;
}

.hydro-site-about-hero-tagline {
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  font-family: var(--normal-font);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

/* Introduction Section */
.hydro-site-about-intro {
  background-color: var(--white);
}

.hydro-site-about-intro-text {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  line-height: 1.8;
  font-family: lato-r;
  text-align: justify;
  font-weight: initial;
}
.hydro-site-about-intro-text b,
.hydro-site-about-intro-text strong {
  font-family: lato-b;
  font-weight: initial;
}
.hydro-site-about-intro-image-container {
  position: relative;
  padding: 20px;
}

.hydro-site-about-intro-image-frame {
  position: relative;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hydro-site-about-intro-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.hydro-site-about-intro-image-container:hover .hydro-site-about-intro-image {
  transform: scale(1.05);
}

.hydro-site-about-intro-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Timeline Section */
.hydro-site-about-timeline {
  background-color: var(--light-gray);
}

.hydro-site-about-timeline-container {
  position: relative;
  padding: 40px 0;
}

.hydro-site-about-timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--medium-gray);
  transform: translateX(-50%);
}

.hydro-site-about-timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.hydro-site-about-timeline-dot {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hydro-site-about-timeline-content {
  width: 45%;
  padding: 20px;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.hydro-site-about-timeline-item:nth-child(odd)
  .hydro-site-about-timeline-content {
  margin-right: 55%;
}

.hydro-site-about-timeline-item:nth-child(even)
  .hydro-site-about-timeline-content {
  margin-left: 55%;
}

.hydro-site-about-timeline-year {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 20px;
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
  margin-bottom: 10px;
  font-family: lato-b;
}

.hydro-site-about-timeline-title {
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
  margin-bottom: 10px;
  color: var(--primary-color);
  font-family: var(--title-font);
}

.hydro-site-about-timeline-text {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Vision & Core Values Section */
.hydro-site-about-values {
  background-color: var(--white);
}

.hydro-site-about-value-box {
  background-color: var(--light-gray);
  border-radius: 5px;
  text-align: center;
  height: 100%;
  transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
  -webkit-transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
  -moz-transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
  -ms-transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
  -o-transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
}

.hydro-site-about-value-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.hydro-site-about-value-box.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hydro-site-about-value-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.hydro-site-about-value-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.hydro-site-about-value-title {
  font-size: clamp(1.1rem, 1.0692rem + 0.1538vw, 1.2rem);
  color: var(--primary-color);
  font-family: lato-b;
}

.hydro-site-about-value-text {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Location & Directions Section */
.hydro-site-about-location {
  background-color: var(--light-gray);
}

.hydro-site-about-map-container {
  min-height: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hydro-site-about-map-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
}

.hydro-site-about-directions {
  height: 100%;
  padding: 30px;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hydro-site-about-directions-title {
  font-size: clamp(1rem, 0.9538rem + 0.2308vw, 1.15rem);
  color: var(--primary-color);
  font-family: lato-b;
}
.hydro-site-about-directions-text {
  color: var(--dark-gray);
  font-size: clamp(0.9rem, 0.8538rem + 0.2308vw, 1.05rem);
  font-family: lato-r;
}
.hydro-site-about-directions-divider {
  height: 3px;
  width: 60px;
  background-color: var(--secondary-color);
  margin-bottom: 25px;
}

.hydro-site-about-directions-item {
  display: flex;
  margin-bottom: 25px;
}

.hydro-site-about-directions-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-gray);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 20px;
  flex-shrink: 0;
}
.hydro-site-about-directions-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.hydro-site-about-directions-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.hydro-site-about-directions-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Amenities & Services Section */
.hydro-site-about-amenities {
  background-color: var(--white);
}

.hydro-site-about-amenity-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform var(--transition-medium);
}

.hydro-site-about-amenity-card:hover {
  transform: translateY(-10px);
}

.hydro-site-about-amenity-image {
  height: 200px;
  overflow: hidden;
}

.hydro-site-about-amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.hydro-site-about-amenity-card:hover .hydro-site-about-amenity-image img {
  transform: scale(1.1);
}

.hydro-site-about-amenity-content {
  padding: 20px;
  background-color: var(--white);
}

.hydro-site-about-amenity-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.hydro-site-about-amenity-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Activities Highlight Section */
.hydro-site-about-activities {
  background-color: var(--light-gray);
}

.hydro-site-about-activities-showcase {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hydro-site-about-activities-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hydro-site-about-activities-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.hydro-site-about-activities-content {
  color: var(--white);
  max-width: 600px;
}

.hydro-site-about-activities-content {
  font-size: clamp(1.2rem, 0.9538rem + 1.2308vw, 2rem);
  margin-bottom: 15px;
  font-family: lato-b;
}

.hydro-site-about-activities-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hydro-site-about-activities-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast);
  font-family: lato-b;
}

.hydro-site-about-activities-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  color: var(--white);
}

.hydro-site-about-intro-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.hydro-site-about-activities-box {
  overflow: hidden;
}
.hydro-site-about-activities-box img,
.hydro-site-about-activities-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* trang giới thiệu end */

/* trang booking start */

.required {
  color: var(--error-color);
}

/* Booking Page Container */
.hydro-site-booking-page {
  padding: 80px 0;
  background: linear-gradient(
    to bottom,
    var(--color-neutral-white) 0%,
    var(--color-neutral-light) 100%
  );
}

/* Header Styles */
.hydro-site-booking-header {
  text-align: center;
}

.hydro-site-booking-title {
  color: var(--primary-color);
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  font-family: lato-black;
}

.hydro-site-booking-divider {
  height: 3px;
  width: 80px;
  background-color: var(--secondary-color);
  margin: 0 auto 1.5rem;
}

.hydro-site-booking-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Form Container */
.hydro-site-booking-form-container {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 30px;
}

.hydro-site-booking-form-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

/* Form Elements */
.hydro-site-booking-input-group {
  position: relative;
  margin-bottom: 10px;
}

.hydro-site-booking-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-gray);
}

.hydro-site-booking-input,
.hydro-site-booking-select,
.hydro-site-booking-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  background-color: var(--white);
  font-size: 1rem;
  color: var(--dark-gray);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hydro-site-booking-input:focus,
.hydro-site-booking-select:focus,
.hydro-site-booking-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 69, 75, 0.1);
}

.hydro-site-booking-input.error,
.hydro-site-booking-select.error,
.hydro-site-booking-textarea.error {
  border-color: var(--error-color);
}

.hydro-site-booking-error-message {
  display: none;
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
}

.hydro-site-booking-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox Styles */
.hydro-site-booking-checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}

.hydro-site-booking-checkbox {
  margin-top: 5px;
  margin-right: 10px;
}

.hydro-site-booking-checkbox-label {
  font-size: 0.95rem;
}

.hydro-site-booking-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hydro-site-booking-link:hover {
  color: var(--primary-color-dark);
  text-decoration: underline;
}

/* Submit Button */
.hydro-site-booking-submit {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 14px 30px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  font-family: var(--title-font);
  transition: all var(--transition-fast), transform var(--transition-fast);
  -webkit-transition: all var(--transition-fast),
    transform var(--transition-fast);
  -moz-transition: all var(--transition-fast), transform var(--transition-fast);
  -ms-transition: all var(--transition-fast), transform var(--transition-fast);
  -o-transition: all var(--transition-fast), transform var(--transition-fast);
}
.hydro-site-booking-submit.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hydro-site-booking-submit:hover {
  background-color: var(--secondary-color);
  color: var(--background-color);
  transform: translateY(-2px);
}

.hydro-site-booking-submit:active {
  transform: translateY(0);
}

/* Sidebar Styles */
.hydro-site-booking-sidebar {
  position: sticky;
  top: 30px;
}

.hydro-site-booking-summary,
.hydro-site-booking-policies,
.hydro-site-booking-need-help {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

.hydro-site-booking-summary-title,
.hydro-site-booking-policies-title,
.hydro-site-booking-need-help-title {
  color: var(--primary-color);
  font-size: clamp(1.2rem, 1.1385rem + 0.3077vw, 1.4rem);
  margin-bottom: 15px;
  font-family: lato-black;
  font-weight: initial;
}

.hydro-site-booking-summary-divider,
.hydro-site-booking-policies-divider {
  height: 2px;
  width: 60px;
  background-color: var(--secondary-color);
  margin-bottom: 20px;
}

.hydro-site-booking-summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 5px;
}

.hydro-site-booking-summary-label {
  font-weight: 500;
}

.hydro-site-booking-summary-value {
  color: var(--dark-gray);
}

.hydro-site-booking-summary-total {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--medium-gray);
  font-weight: 600;
  font-size: 1.1rem;
}

.hydro-site-booking-summary-total .hydro-site-booking-summary-value {
  color: var(--primary-color);
}

/* Policies Styles */
.hydro-site-booking-policy {
  margin-bottom: 20px;
}

.hydro-site-booking-policy-title {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.hydro-site-booking-policy-title i {
  margin-right: 10px;
}
.hydro-site-booking-policy-title img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 10px;
}

.hydro-site-booking-policy-text {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Need Help Section */
.hydro-site-booking-need-help {
  background-color: var(--background-color);
  border-left: 4px solid var(--secondary-color);
}

.hydro-site-booking-need-help-text {
  margin-bottom: 15px;
}

.hydro-site-booking-need-help-phone,
.hydro-site-booking-need-help-email {
  display: block;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.hydro-site-booking-need-help-phone:hover,
.hydro-site-booking-need-help-email:hover {
  color: var(--primary-color-dark);
}

.hydro-site-booking-need-help-phone i,
.hydro-site-booking-need-help-email i {
  margin-right: 8px;
}

/* Datepicker Custom Styling */
.hydro-site-booking-datepicker {
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2302454b" class="bi bi-calendar" viewBox="0 0 16 16"><path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
}

.slide-right {
  opacity: 0;
  transform: translateX(-20px);
}

.slide-left {
  opacity: 0;
  transform: translateX(20px);
}
.ui-datepicker-unselectable.ui-state-disabled {
  opacity: 0.5;
  pointer-events: none;
}
/* trang booking end */

/* Booking Success Page Styles */
.hydro-site-booking-success-page {
  position: relative;
  padding: 60px 0;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--color-neutral-white) 0%,
    var(--color-neutral-light) 100%
  );
  overflow: hidden;
}

.hydro-site-booking-success-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hydro-site-booking-success-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hydro-site-booking-success-header {
  text-align: center;
  margin-bottom: 40px;
}

.hydro-site-booking-success-check-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #055e65 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 30px rgba(2, 69, 75, 0.2);
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(2, 69, 75, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(2, 69, 75, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(2, 69, 75, 0);
  }
}

.hydro-site-booking-success-check-icon {
  font-size: 60px;
  color: #ffffff;
}

.hydro-site-booking-success-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--color-primary-green);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hydro-site-booking-success-subtitle {
  font-size: 18px;
  color: var(--color-neutral-dark);
  max-width: 600px;
  margin: 0 auto;
}

.hydro-site-booking-success-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.hydro-site-booking-success-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--color-primary-green) 0%,
    var(--color-primary-blue) 100%
  );
}

.hydro-site-booking-success-booking-id {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.hydro-site-booking-success-booking-id .label {
  font-size: 16px;
  color: var(--color-neutral-muted);
  margin-right: 10px;
}

.hydro-site-booking-success-booking-id .value {
  font-size: 24px;
  color: var(--color-primary-green);
  font-weight: bold;
  letter-spacing: 1px;
}

.hydro-site-booking-success-details-header {
  margin-bottom: 30px;
  position: relative;
}

.hydro-site-booking-success-details-header h2 {
  font-size: 28px;
  color: var(--color-neutral-dark);
  margin-bottom: 15px;
  font-weight: bold;
}

.hydro-site-booking-success-details-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary-green) 0%,
    var(--color-primary-blue) 100%
  );
  border-radius: 2px;
}

.hydro-site-booking-success-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.hydro-site-booking-success-details-section h3 {
  font-size: 20px;
  color: var(--color-neutral-dark);
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
  border-left: 3px solid var(--color-primary-green);
}

.hydro-site-booking-success-details-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hydro-site-booking-success-details-item i {
  width: 35px;
  height: 35px;
  background-color: rgba(2, 69, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-green);
  font-size: 16px;
  margin-right: 15px;
  flex-shrink: 0;
}

.hydro-site-booking-success-details-item div {
  display: flex;
  flex-direction: column;
}

.hydro-site-booking-success-details-item .label {
  font-size: 14px;
  color: var(--color-neutral-muted);
  margin-bottom: 3px;
}

.hydro-site-booking-success-details-item .value {
  font-size: 16px;
  color: var(--color-neutral-dark);
  font-weight: 500;
}

.hydro-site-booking-success-pricing {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.hydro-site-booking-success-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hydro-site-booking-success-pricing-item .label {
  font-size: 16px;
  color: var(--color-neutral-dark);
}

.hydro-site-booking-success-pricing-item .value {
  font-size: 16px;
  color: var(--color-neutral-dark);
  font-weight: 500;
}

.hydro-site-booking-success-pricing-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 15px 0;
}

.hydro-site-booking-success-pricing-item.total {
  margin-top: 15px;
}

.hydro-site-booking-success-pricing-item.total .label {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-neutral-dark);
}

.hydro-site-booking-success-pricing-item.total .value {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-primary-green);
}

.hydro-site-booking-success-special-requests {
  margin-top: 20px;
}

.hydro-site-booking-success-message {
  text-align: center;
  margin-bottom: 40px;
}

.hydro-site-booking-success-message h3 {
  font-size: 28px;
  color: var(--color-primary-green);
  margin-bottom: 15px;
}

.hydro-site-booking-success-message p {
  font-size: 16px;
  color: var(--color-neutral-muted);
  max-width: 600px;
  margin: 0 auto;
}
.hydro-site-booking-success-button {
  color: var(--primary-color);
  transition: all var(--transition-fast);
  -webkit-transition: all var(--transition-fast);
  -moz-transition: all var(--transition-fast);
  -ms-transition: all var(--transition-fast);
  -o-transition: all var(--transition-fast);
}
.hydro-site-booking-success-button:hover {
  color: var(--primary-color-dark);
}
.hydro-site-booking-success-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hydro-site-booking-success-container {
    padding: 30px 20px;
  }

  .hydro-site-booking-success-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hydro-site-booking-success-pricing {
    padding: 20px;
  }

  .hydro-site-booking-success-message h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hydro-site-booking-success-header {
    flex-direction: column;
    text-align: center;
  }

  .hydro-site-booking-success-header-img {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .hydro-site-booking-success-actions {
    flex-direction: column;
  }

  .hydro-site-booking-success-actions .button-1 {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* trang tin tức start */

/* News List Page Container */
.hydro-site-news-list-page {
  padding: 50px 0;
}

/* Header Styles */
.hydro-site-news-list-header {
  text-align: center;
  margin-bottom: 50px;
}

.hydro-site-news-list-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hydro-site-news-list-divider {
  height: 3px;
  width: 80px;
  background-color: var(--secondary-color);
  margin: 0 auto 1.5rem;
}

.hydro-site-news-list-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--dark-gray);
}

/* Search and Filter Styles */
.hydro-site-news-list-search-input-group {
  position: relative;
  margin-bottom: 20px;
}

.hydro-site-news-list-search-input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  background-color: var(--white);
  font-size: 0.95rem;
  color: var(--dark-gray);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hydro-site-news-list-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 69, 75, 0.1);
}

.hydro-site-news-list-search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.hydro-site-news-list-search-button:hover {
  background-color: var(--primary-color-dark);
}

.hydro-site-news-list-filter-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  background-color: var(--white);
  font-size: 0.95rem;
  color: var(--dark-gray);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  margin-bottom: 20px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2302454b" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.hydro-site-news-list-filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 69, 75, 0.1);
}

/* News Card Styles */
.hydro-site-news-list-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
}

.hydro-site-news-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hydro-site-news-list-card-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.hydro-site-news-list-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.hydro-site-news-list-card:hover .hydro-site-news-list-card-image {
  transform: scale(1.05);
}

.hydro-site-news-list-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  z-index: 1;
}

.hydro-site-news-list-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hydro-site-news-list-card-date {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.hydro-site-news-list-card-date i {
  margin-right: 5px;
}

.hydro-site-news-list-card-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.hydro-site-news-list-card-excerpt {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

.hydro-site-news-list-card-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
  margin-top: auto;
}

.hydro-site-news-list-card-link:hover {
  color: var(--secondary-color);
}

.hydro-site-news-list-card-link i {
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.hydro-site-news-list-card-link:hover i {
  transform: translateX(3px);
}

/* Pagination Styles */
.hydro-site-news-list-pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.hydro-site-news-list-pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hydro-site-news-list-pagination-item {
  margin: 0 5px;
}

.hydro-site-news-list-pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--dark-gray);
  text-decoration: none;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
}

.hydro-site-news-list-pagination-link:hover {
  background-color: var(--medium-gray);
  color: var(--primary-color);
}

.hydro-site-news-list-pagination-link.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hydro-site-news-list-page {
    padding: 60px 0;
  }

  .hydro-site-news-list-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  .hydro-site-news-list-page {
    padding: 40px 0;
  }

  .hydro-site-news-list-title {
    font-size: 2rem;
  }

  .hydro-site-news-list-card-image-container {
    height: 180px;
  }
}

@media (max-width: 575.98px) {
  .hydro-site-news-list-header {
    margin-bottom: 30px;
  }

  .hydro-site-news-list-title {
    font-size: 1.8rem;
  }

  .hydro-site-news-list-card-content {
    padding: 20px;
  }

  .hydro-site-news-list-card-title {
    font-size: 1.2rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
}

.slide-right {
  opacity: 0;
  transform: translateX(-20px);
}

.slide-left {
  opacity: 0;
  transform: translateX(20px);
}

/* trang  tin tức end */

/* trang liên hệ start */

/* Global Styles */

.required {
  color: var(--error-color);
}

/* Contact Page Container */
.hydro-site-contact-page {
  padding: 80px 0;
}

/* Header Styles */
.hydro-site-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.hydro-site-contact-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.hydro-site-contact-divider {
  height: 3px;
  width: 80px;
  background-color: var(--secondary-color);
  margin: 0 auto 1.5rem;
}

.hydro-site-contact-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--dark-gray);
}

/* Form Container */
.hydro-site-contact-form-container {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  height: 100%;
}

.hydro-site-contact-form-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

/* Form Elements */
.hydro-site-contact-form-group {
  position: relative;
  margin-bottom: 10px;
}

.hydro-site-contact-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-gray);
}

.hydro-site-contact-form-input,
.hydro-site-contact-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  background-color: var(--white);
  font-size: 1rem;
  color: var(--dark-gray);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hydro-site-contact-form-input:focus,
.hydro-site-contact-form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 69, 75, 0.1);
}

.hydro-site-contact-form-input.error,
.hydro-site-contact-form-textarea.error {
  border-color: var(--error-color);
}

.hydro-site-contact-form-error {
  display: none;
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
}

.hydro-site-contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.hydro-site-contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: initial;
  min-width: 150px;
  text-align: center;
  cursor: pointer;
  font-family: lato-b;
  transition: all var(--transition-fast);
  -webkit-transition: all var(--transition-fast);
  -moz-transition: all var(--transition-fast);
  -ms-transition: all var(--transition-fast);
  -o-transition: all var(--transition-fast);
}

.hydro-site-contact-form-submit:hover {
  background-color: var(--primary-color-light);
  transform: translateY(-2px);
}

.hydro-site-contact-form-submit:active {
  transform: translateY(0);
}

.hydro-site-contact-form-submit i {
  margin-left: 10px;
  transition: transform var(--transition-fast);
}

.hydro-site-contact-form-submit:hover i {
  transform: translateX(3px);
}

/* Contact Info Container */
.hydro-site-contact-info-container {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hydro-site-contact-info-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

/* Contact Info Details */
.hydro-site-contact-info-details {
  margin-bottom: 30px;
}

.hydro-site-contact-info-item {
  display: flex;
  margin-bottom: 25px;
}

.hydro-site-contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-gray);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.hydro-site-contact-info-content {
  flex-grow: 1;
}

.hydro-site-contact-info-label {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.hydro-site-contact-info-text {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.hydro-site-contact-info-link {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hydro-site-contact-info-link:hover {
  color: var(--primary-color);
}

.hydro-site-contact-info-hours {
  font-size: 0.85rem;
  color: var(--secondary-color);
}

/* Social Icons */
.hydro-site-contact-info-social {
  margin-bottom: 30px;
}

.hydro-site-contact-info-social-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.hydro-site-contact-info-social-icons {
  display: flex;
}

.hydro-site-contact-info-social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--light-gray);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 10px;
  text-decoration: none;
  transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
}
.hydro-site-contact-info-social-icon.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hydro-site-contact-info-social-icon:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Map Container */
.hydro-site-contact-info-map-container {
  overflow: hidden;
  position: relative;
}
.hydro-site-contact-info-map-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Success Modal */
.hydro-site-contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.hydro-site-contact-modal-content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hydro-site-contact-modal-icon {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.hydro-site-contact-modal-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.hydro-site-contact-modal-text {
  margin-bottom: 25px;
}

.hydro-site-contact-modal-close {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.hydro-site-contact-modal-close:hover {
  background-color: var(--primary-color-light);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hydro-site-contact-page {
    padding: 60px 0;
  }

  .hydro-site-contact-form-container,
  .hydro-site-contact-info-container {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .hydro-site-contact-page {
    padding: 40px 0;
  }

  .hydro-site-contact-title {
    font-size: 2rem;
  }

  .hydro-site-contact-form-container,
  .hydro-site-contact-info-container {
    padding: 30px;
  }

  .hydro-site-contact-form-title,
  .hydro-site-contact-info-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hydro-site-contact-header {
    margin-bottom: 40px;
  }

  .hydro-site-contact-title {
    font-size: 1.8rem;
  }

  .hydro-site-contact-form-container,
  .hydro-site-contact-info-container {
    padding: 25px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
}

.slide-right {
  opacity: 0;
  transform: translateX(-20px);
}

.slide-left {
  opacity: 0;
  transform: translateX(20px);
}
.lien-he .hydro-site-about-hero {
  height: 45vh;
  background-position: bottom;
}

/* trang liên hệ end */

/* trang album start */

/* Album Page Container */
.hydro-site-album-page {
  padding: 50px 0;
}

/* Header Styles */
.hydro-site-album-header {
  text-align: center;
  margin-bottom: 50px;
}

.hydro-site-album-title {
  color: var(--primary-color);
  font-size: clamp(1.4rem, 1.2154rem + 0.9231vw, 2rem);
  font-family: lato-black;
  text-transform: uppercase;
  font-weight: initial;
  overflow: hidden;
}

.hydro-site-album-divider {
  height: 3px;
  width: 80px;
  background-color: var(--secondary-color);
  margin: 0 auto 1.5rem;
}

.hydro-site-album-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--dark-gray);
}

/* Filter Styles */
.hydro-site-album-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hydro-site-album-filter-btn {
  background: none;
  border: none;
  padding: 8px 20px;
  margin: 0 10px 10px;
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
  font-weight: initial;
  color: var(--dark-gray);
  cursor: pointer;
  position: relative;
  font-family: lato-b;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

.hydro-site-album-filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.hydro-site-album-filter-btn:hover,
.hydro-site-album-filter-btn.active {
  color: var(--primary-color);
}

.hydro-site-album-filter-btn:hover::after,
.hydro-site-album-filter-btn.active::after {
  width: 80%;
}

/* Gallery Grid */
.hydro-site-album-grid {
  margin-bottom: 40px;
}

.hydro-site-album-grid-item {
}

/* Album Item */
.hydro-site-album-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hydro-site-album-item.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hydro-site-album-thumb {
}

.hydro-site-album-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hydro-site-album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 69, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hydro-site-album-overlay i {
  color: var(--white);
  /* font-size: 2.5rem; */
  transform: scale(0.8);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hydro-site-album-overlay i.bi-play-circle {
  /* font-size: 3rem; */
}

.hydro-site-album-item:hover .hydro-site-album-img {
  transform: scale(1.05);
}

.hydro-site-album-item:hover .hydro-site-album-overlay {
  opacity: 1;
}

.hydro-site-album-item:hover .hydro-site-album-overlay i {
  transform: scale(1);
}

/* Load More Button */
.hydro-site-album-load-more-container {
  text-align: center;
}

.hydro-site-album-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 14px 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: lato-b;
  font-weight: initial;
}
.hydro-site-album-load-more-btn.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hydro-site-album-load-more-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

.hydro-site-album-load-more-btn i {
  margin-left: 10px;
}

/* Loading Animation */
.hydro-site-album-loading {
  display: none;
  text-align: center;
  margin: 20px 0;
}

.hydro-site-album-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--medium-gray);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 10px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Fancybox Customization */
.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.9);
}

.fancybox__toolbar {
  --fancybox-color: var(--white);
}

.fancybox__caption {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hydro-site-album-page {
    padding: 60px 0;
  }

  .hydro-site-album-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  .hydro-site-album-page {
    padding: 40px 0;
  }

  .hydro-site-album-title {
    font-size: 2rem;
  }

  .hydro-site-album-filter-btn {
    padding: 6px 15px;
    margin: 0 5px 10px;
  }
}

@media (max-width: 575.98px) {
  .hydro-site-album-header {
    margin-bottom: 30px;
  }

  .hydro-site-album-title {
    font-size: 1.8rem;
  }

  .hydro-site-album-filter {
    margin-bottom: 20px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
}

.slide-right {
  opacity: 0;
  transform: translateX(-20px);
}

.slide-left {
  opacity: 0;
  transform: translateX(20px);
}
/* CSS cho loading spinner */
.hydro-site-album-loading {
  text-align: center;
  padding: 30px 0;
  width: 100%;
}

.hydro-site-album-loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #007bff;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hydro-site-album-no-more {
  text-align: center;
  padding: 20px;
  font-size: 16px;
  color: #777;
}

/* Hiệu ứng hover cho các item */
.hydro-site-album-item {
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hydro-site-album-item:hover {
  transform: translateY(-5px);
}

.hydro-site-album-thumb {
  overflow: hidden;
  border-radius: 8px;
}

.hydro-site-album-img,
.hydro-site-album-item video,
.hydro-site-album-item a,
.hydro-site-album-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hydro-site-album-item:hover .hydro-site-album-img {
  transform: scale(1.05);
}

.hydro-site-album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hydro-site-album-item:hover .hydro-site-album-overlay {
  opacity: 1;
}

.hydro-site-album-overlay i {
  color: white;
  /* font-size: 40px; */
  font-size: 1.6rem;
}

.hydro-btn-album {
  width: 70px;
  height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hydro-btn-album:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hydro-site-album-label-video {
  position: absolute;
  z-index: 10;
  top: 5%;
  left: -35%;
  width: 100%;
  height: 30px;
  padding: 5px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.8rem;
  text-align: center;
  transform: rotate(-40deg);
}
/* trang album end */

/* trang tin tức chi tiết start */

/* News Detail Page Container */
.hydro-site-news-detail-page {
  padding: 0px 0px 50px;
  background-color: var(--light-gray);
}

/* Breadcrumbs */
.hydro-site-news-detail-breadcrumbs-box {
  background-color: var(--primary-color);
  padding: 10px 0;
}
.hydro-site-news-detail-breadcrumbs {
  font-size: 0.9rem;
  color: var(--white);
}

.hydro-site-news-detail-breadcrumbs a {
  color: var(--white);
}

.hydro-site-news-detail-breadcrumbs a:hover {
  color: var(--white);
}

.hydro-site-news-detail-breadcrumbs-separator {
  margin: 0 8px;
  color: var(--white);
}

.hydro-site-news-detail-breadcrumbs-current {
  color: var(--white);
}

/* Article Header */
.hydro-site-news-detail-header {
  margin-bottom: 30px;
}

.hydro-site-news-detail-title {
  font-size: clamp(1.3rem, 1.1769rem + 0.6154vw, 1.7rem);
  color: var(--primary-color);
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* Article Metadata */
.hydro-site-news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.hydro-site-news-detail-meta-item {
  display: flex;
  align-items: center;
  color: var(--dark-gray);
}

.hydro-site-news-detail-meta-item i {
  margin-right: 8px;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.hydro-site-news-detail-meta-link,
.hydro-site-news-detail-meta-item span {
  display: inline-flex;
  color: var(--dark-gray);
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
}

.hydro-site-news-detail-meta-link:hover {
  color: var(--primary-color);
}

/* Social Share */
.hydro-site-news-detail-social {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.hydro-site-news-detail-social-label {
  margin-right: 15px;
  font-weight: 500;
  color: var(--dark-gray);
}

.hydro-site-news-detail-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-gray);
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
  transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
  -webkit-transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
  -moz-transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
  -ms-transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
  -o-transition: background-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
}
.hydro-site-news-detail-social-icon.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hydro-site-news-detail-social-icon:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Featured Image */
.hydro-site-news-detail-featured-container {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.hydro-site-news-detail-featured-image-box {
  overflow: hidden;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.hydro-site-news-detail-featured-image,
.hydro-site-news-detail-featured-image-box a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  -webkit-transition: transform 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out;
  -ms-transition: transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
}
.hydro-site-news-detail-featured-image-box:hover
  .hydro-site-news-detail-featured-image {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: transform 0.5s ease-in-out;
  -webkit-transition: transform 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out;
  -ms-transition: transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
}
/* Content Container */
.hydro-site-news-detail-content-container {
  margin-bottom: 40px;
}

/* Content Block */
.hydro-site-news-detail-content-block {
  margin-bottom: 40px;
}

.hydro-site-news-detail-content-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 30px;
  font-weight: 500;
}

.hydro-site-news-detail-content-heading {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 40px 0 20px;
  position: relative;
  padding-bottom: 15px;
}

.hydro-site-news-detail-content-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.hydro-site-news-detail-content-text {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Content Image */
.hydro-site-news-detail-content-image-container {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
}

.hydro-site-news-detail-content-image {
  width: 100%;
  height: auto;
  display: block;
}

.hydro-site-news-detail-content-image-caption {
  font-size: 0.9rem;
  color: var(--secondary-color);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* Content Quote */
.hydro-site-news-detail-content-quote,
.tin-tuc-detail blockquote {
  margin: 40px 0;
  padding: 30px;
  background-color: var(--light-gray);
  border-left: 4px solid var(--secondary-color);
  font-style: italic;
}

.hydro-site-news-detail-content-quote p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.hydro-site-news-detail-content-quote cite {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-style: normal;
  font-weight: 500;
}

/* Content List */
.hydro-site-news-detail-content-list {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.hydro-site-news-detail-content-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 5px;
}

/* Content Video */
.hydro-site-news-detail-content-video-container {
  margin: 30px 0;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.hydro-site-news-detail-content-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Content CTA */
.hydro-site-news-detail-content-cta {
  margin: 40px 0;
  text-align: center;
}

.hydro-site-news-detail-content-cta-button {
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border-radius: 4px;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast);
}

.hydro-site-news-detail-content-cta-button:hover {
  background-color: var(--primary-color-light);
  color: var(--white);
  transform: translateY(-3px);
}

/* Author Bio */
.hydro-site-news-detail-author {
  display: flex;
  align-items: center;
  margin: 50px 0;
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.hydro-site-news-detail-author-image {
  flex-shrink: 0;
  margin-right: 20px;
}

.hydro-site-news-detail-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.hydro-site-news-detail-author-content {
  flex-grow: 1;
}

.hydro-site-news-detail-author-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.hydro-site-news-detail-author-bio {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.hydro-site-news-detail-author-social {
  display: flex;
}

.hydro-site-news-detail-author-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  margin-right: 10px;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
}

.hydro-site-news-detail-author-social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Article Navigation */
.hydro-site-news-detail-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--medium-gray);
  font-family: var(--title-font);
}

.hydro-site-news-detail-navigation-prev,
.hydro-site-news-detail-navigation-next {
  display: flex;
  flex-direction: column;
  max-width: 45%;
  color: var(--secondary-color);
}
.hydro-site-news-detail-navigation-prev p,
.hydro-site-news-detail-navigation-next p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--primary-color);
  font-weight: initial;
  font-family: lato-b;
}

.hydro-site-news-detail-navigation-prev {
  align-items: flex-start;
}

.hydro-site-news-detail-navigation-next {
  align-items: flex-end;
  text-align: right;
}

.hydro-site-news-detail-navigation-prev span,
.hydro-site-news-detail-navigation-next span {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.hydro-site-news-detail-navigation-prev i,
.hydro-site-news-detail-navigation-next i {
  font-size: 1.2rem;
}

.hydro-site-news-detail-navigation-prev i {
  margin-right: 8px;
}

.hydro-site-news-detail-navigation-next i {
  margin-left: 8px;
}

.hydro-site-news-detail-navigation-prev p,
.hydro-site-news-detail-navigation-next p {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  transition: color var(--transition-fast);
}

.hydro-site-news-detail-navigation-prev:hover p,
.hydro-site-news-detail-navigation-next:hover p {
  color: var(--color-link);
}

/* Sidebar Container */
.hydro-site-news-detail-sidebar-container {
  position: sticky;
  top: 80px;
}

/* Sidebar Widget */
.hydro-site-news-detail-sidebar-widget {
  margin-bottom: 40px;
  padding: 25px;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.hydro-site-news-detail-sidebar-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary-color);
  position: relative;
}

/* Sidebar Search */
.hydro-site-news-detail-sidebar-search {
  position: relative;
}

.hydro-site-news-detail-sidebar-search-input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hydro-site-news-detail-sidebar-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 69, 75, 0.1);
}

.hydro-site-news-detail-sidebar-search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.hydro-site-news-detail-sidebar-search-button:hover {
  background-color: var(--secondary-color);
}

/* Sidebar Related Posts */
.hydro-site-news-detail-sidebar-related-item {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--medium-gray);
}

.hydro-site-news-detail-sidebar-related-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hydro-site-news-detail-sidebar-related-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.hydro-site-news-detail-sidebar-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
  -webkit-transition: transform var(--transition-fast);
  -moz-transition: transform var(--transition-fast);
  -ms-transition: transform var(--transition-fast);
  -o-transition: transform var(--transition-fast);
}

.hydro-site-news-detail-sidebar-related-content {
  flex-grow: 1;
}

.hydro-site-news-detail-sidebar-related-title {
  font-size: 0.9rem;
  margin-bottom: 5px;
  line-height: 1.4;
  color: var(--primary-color);
  transition: color var(--transition-fast);
  font-family: lato-b;
  font-weight: initial;
}

.hydro-site-news-detail-sidebar-related-item:hover
  .hydro-site-news-detail-sidebar-related-title {
  color: var(--text-color);
}
.hydro-site-news-detail-sidebar-related-item:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: transform var(--transition-fast);
  -webkit-transition: transform var(--transition-fast);
  -moz-transition: transform var(--transition-fast);
  -ms-transition: transform var(--transition-fast);
  -o-transition: transform var(--transition-fast);
}
.hydro-site-news-detail-sidebar-related-date {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin: 0;
}

/* Sidebar Categories */
.hydro-site-news-detail-sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hydro-site-news-detail-sidebar-categories li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--medium-gray);
}

.hydro-site-news-detail-sidebar-categories li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hydro-site-news-detail-sidebar-categories a {
  display: flex;
  justify-content: space-between;
  color: var(--dark-gray);
  transition: color var(--transition-fast);
}

.hydro-site-news-detail-sidebar-categories a:hover {
  color: var(--primary-color);
}

.hydro-site-news-detail-sidebar-categories span {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Sidebar Recent Posts */
.hydro-site-news-detail-sidebar-recent {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hydro-site-news-detail-sidebar-recent li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--medium-gray);
}

.hydro-site-news-detail-sidebar-recent li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hydro-site-news-detail-sidebar-recent a {
  display: block;
  color: var(--dark-gray);
  margin-bottom: 5px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.hydro-site-news-detail-sidebar-recent a:hover {
  color: var(--primary-color);
}

.hydro-site-news-detail-sidebar-recent span {
  font-size: 0.85rem;
  color: var(--secondary-color);
}

/* Sidebar Tags */
.hydro-site-news-detail-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
}

.hydro-site-news-detail-sidebar-tag {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 8px 8px 0;
  background-color: var(--white);
  color: var(--dark-gray);
  border-radius: 4px;
  font-size: 0.85rem;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
}

.hydro-site-news-detail-sidebar-tag:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Sidebar Newsletter */
.hydro-site-news-detail-sidebar-newsletter p {
  margin-bottom: 15px;
}

.hydro-site-news-detail-sidebar-newsletter-form {
  position: relative;
}

.hydro-site-news-detail-sidebar-newsletter-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hydro-site-news-detail-sidebar-newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 69, 75, 0.1);
}

.hydro-site-news-detail-sidebar-newsletter-button {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: lato-b;
  transition: background-color var(--transition-fast);
  -webkit-transition: background-color var(--transition-fast);
  -moz-transition: background-color var(--transition-fast);
  -ms-transition: background-color var(--transition-fast);
  -o-transition: background-color var(--transition-fast);
}

.hydro-site-news-detail-sidebar-newsletter-button:hover {
  background-color: var(--secondary-color);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
}

.slide-right {
  opacity: 0;
  transform: translateX(-20px);
}

.slide-left {
  opacity: 0;
  transform: translateX(20px);
}
.hydro-site-news-detail-content-wrapper {
  background-color: var(--white);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  overflow: visible;
}
.hydro-site-news-detail-content-block {
  line-height: 1.9;
}
.mada-page-content-wrapper ul {
  list-style: none;
}
.mada-page-content-wrapper ul li {
  position: relative;
  padding-left: 1.6em;      /* chừa khoảng cho icon */
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.mada-page-content-wrapper ul li::before {
  content: "\f00c";          /* mã Unicode của dấu check trong FA6 */
  font-family: "Font Awesome 6 Free";  /* hoặc "Font Awesome 6 Pro" nếu bạn dùng pro */
  font-weight: 900;          /* weight tương ứng với solid */
  position: absolute;
  left: 0;
  top: 0.1em;                /* căn chỉnh dọc */
  color: var(--secondary-color);            /* nâu sẫm */
  font-size: 1em;            /* kích thước icon, tùy chỉnh nếu cần */
}
.mada-page-content-wrapper b, .mada-page-content-wrapper strong {
  font-weight: initial;
  font-family: lato-b;
}
/* trang tin tức chi tiết end */


/* trang cố định start */
  /* Style cho trang nội dung */
  .mada-page-container {
    padding: 50px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.mada-page-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 69, 75, 0.03) 0%, rgba(2, 69, 75, 0) 100%);
    z-index: 0;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.mada-page-content-wrapper {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    overflow-x: auto;
}

/* Tiêu đề */
.mada-page-title {
    color: var(--primary-color);
    font-size: clamp(1.7rem, 1.3615rem + 1.6923vw, 2.8rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: capitalize;
    font-family: lato-b;
}

/* Divider */
.mada-page-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: rgba(2, 69, 75, 0.1);
}

.mada-page-divider-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Nội dung */
.mada-page-content {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mada-page-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mada-page-content h2, 
.mada-page-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.mada-page-content h2 {
    font-size: 1.8rem;
}

.mada-page-content h3 {
    font-size: 1.5rem;
}

.mada-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
    transition: transform 0.5s ease;
}

.mada-page-content img:hover {
    transform: scale(1.01);
}

.mada-page-content a {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.mada-page-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.mada-page-content a:hover::after {
    width: 100%;
}

.mada-page-content blockquote {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-left: 0;
    font-style: italic;
    color: rgba(51, 51, 51, 0.8);
}

.mada-page-content ul, 
.mada-page-content ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.mada-page-content li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .mada-page-container {
        padding: 60px 0;
    }
    
    .mada-page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mada-page-container {
        padding: 40px 0;
    }
    
    .mada-page-title {
        font-size: 1.8rem;
    }
    
    .mada-page-content {
        font-size: 1rem;
    }
}


/* bảng trang cố định start */
/* Toàn bộ bảng trong trang có class "page" sẽ áp dụng style dưới đây */
.page table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  margin-bottom: 2rem;
}
.page table th,
.page table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--medium-gray);
}
.page table th {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: normal;
}
.page table tr:nth-child(even) td {
  background-color: var(--light-gray);
}
.page table tr:hover td {
  background-color: var(--medium-gray);
  transition: background var(--transition-fast);
}
.page table td.price {
  color: var(--secondary-color);
  font-weight: bold;
}
.page table td.details {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* bảng trang cố định end */

/* trang cố định end */

/* trang dịch vụ start */
 /* Services Page Styling */
 .mada-services-container {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--light-gray);
}

/* Floating Background Shapes */
.mada-services-bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.mada-shape-1,
.mada-shape-2,
.mada-shape-3 {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(2, 69, 75, 0.07) 0%, rgba(139, 94, 60, 0.07) 100%);
  filter: blur(70px);
}

.mada-shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
}

.mada-shape-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
}

.mada-shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 20%;
}

/* Header Section */
.mada-services-header {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.mada-services-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: capitalize;
}

.mada-services-divider {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: 1px;
  background-color: rgba(2, 69, 75, 0.2);
  margin: 20px auto;
}

.mada-services-divider-accent {
  position: absolute;
  left: 50%;
  top: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  transform: translateX(-50%) translateY(-1px);
}

.mada-services-subtitle {
  color: var(--dark-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Bento Grid Layout */
.mada-bento-grid {
  /* display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto); */
  /* gap: 24px;
 */
  /* column-count: 3; */
  position: relative;
  z-index: 1;
}

.mada-bento-item {
  border-radius: 12px;
}

.mada-bento-item-normal {
  grid-column: span 4;
  grid-row: span 1;
}

.mada-bento-item-large {
  grid-column: span 6;
  grid-row: span 2;
}

/* Service Card Styling */
.mada-service-card {
  height: 100%;
  width: 100%;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(2, 69, 75, 0.1);
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 94, 60, 0.08);
}

.mada-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mada-service-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mada-service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: rgba(2, 69, 75, 0.05);
  border-radius: 50%;
  padding: 12px;
}

.mada-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mada-service-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.mada-service-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.mada-bento-item-large .mada-service-title {
  font-size: 1.6rem;
}

.mada-service-desc {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  opacity: 0.85;
}

.mada-service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  opacity: 0.8;
  margin-top: auto;
  transform: translateY(5px);
  align-self: flex-start;
}

.mada-service-btn i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.mada-service-btn:hover {
  color: var(--white);
}

.mada-service-btn:hover i {
  transform: translateX(3px);
}

.mada-service-image-box {
  overflow: hidden;
}

.mada-service-image-box a,
.mada-service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mada-service-desc ul {
  list-style: none;
  padding: 0;
}

.mada-service-desc li {
  position: relative;
  padding-left: 1.6em;      /* chừa khoảng cho icon */
  margin-bottom: 0.5em;
  line-height: 1.4;
}
.mada-service-desc ul li::before {
  content: "\f00c";          /* mã Unicode của dấu check trong FA6 */
  font-family: "Font Awesome 6 Free";  /* hoặc "Font Awesome 6 Pro" nếu bạn dùng pro */
  font-weight: 900;          /* weight tương ứng với solid */
  position: absolute;
  left: 0;
  top: 0.1em;                /* căn chỉnh dọc */
  color: var(--secondary-color);            /* nâu sẫm */
  font-size: 1em;            /* kích thước icon, tùy chỉnh nếu cần */
}
/* trang dịch vụ end */

.hydro-site-footer-map-box {
  overflow: hidden;
}
.hydro-site-footer-map-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
} 
.hydro-site-footer-map-box-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--title-font);
}

.hydro-site-footer-map .nav-link {
  background: var(--white);
  color: var(--text-color);
  transition: all .35s ease;
  -webkit-transition: all .35s ease;
  -moz-transition: all .35s ease;
  -ms-transition: all .35s ease;
  -o-transition: all .35s ease;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.hydro-site-footer-map .nav-link:hover {
  background: var(--white);
  color: var(--text-color);
  transition: all .35s ease;
  -webkit-transition: all .35s ease;
  -moz-transition: all .35s ease;
  -ms-transition: all .35s ease;
  -o-transition: all .35s ease;
}
.hydro-site-footer-map .nav-tabs .nav-link.active {
  background: var(--secondary-color);
  color: var(--white);  
  border-color: var(--secondary-color);
}
.hydro-site-footer-map .nav-item:first-of-type {
  border-top-left-radius: 10px !important;
  overflow: hidden;
}
.hydro-site-footer-map .nav-item:last-of-type {
  border-top-right-radius: 10px !important;
  overflow: hidden;
}

