@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");
:root {
  --normal-color: #505050;
  --primary-color: #d4af37;
  --second-color2: #e5e1d8;
  --second-color: #F5E6C8;
  --three-color: #502f1c;
  --accent-color: #0a1128;
  --bg-color: #F5E6C8;
  --btn-color: linear-gradient(135deg, #F5E6C8, #d4af37);
  --normal-font: "Raleway", sans-serif;
  --primary-font: "Playfair Display", serif;
  --second-font: "Cormorant", serif;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
picture,
svg,
video {
  max-width: 100%;
}

ol,
ul {
  list-style: none;
}

ul {
  margin-bottom: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--normal-font);
  color: var(--normal-color);
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
}

.ov-hidden {
  overflow: hidden;
}

.container {
  max-width: 1360px;
}

.row-collapse {
  margin-left: 0;
  margin-right: 0;
}

.row-collapse > div[class~=col],
.row-collapse > div[class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-small {
  margin-left: -10px;
  margin-right: -10px;
}

.row-small > div[class~=col],
.row-small > div[class^=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  color: var(--primary-color);
  font-family: var(--primary-font);
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
ul {
  margin-bottom: 2rem;
  margin-bottom: 0;
}

a {
  color: var(--normal-color);
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}
a:hover {
  color: var(--primary-color);
}

.bg-grey {
  background-color: var(--bg-color);
}

.btn {
  position: relative;
  width: auto;
  outline: 0;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  box-sizing: border-box;
  margin: 0;
  transition: color 175ms cubic-bezier(0.18, 0.43, 0.58, 1), background-color 175ms cubic-bezier(0.18, 0.43, 0.58, 1), border-color 175ms cubic-bezier(0.18, 0.43, 0.58, 1);
  padding: 12px 45px;
  border-radius: 50px;
  cursor: pointer;
}

.btn-primary {
  color: var(--accent-color);
  background: var(--btn-color);
  border: 0;
}

.btn-more {
  background-color: var(--primary-color);
  color: #fff;
}
.btn-more:hover {
  background: var(--three-color);
  color: #fff;
}

.btn-book {
  background-color: var(--accent-color);
  color: #fff;
}
.btn-book:hover {
  color: #fff;
  opacity: 0.7;
}

.btn-outline {
  color: var(--accent-color);
  background-color: transparent;
  border: 1px solid var(--accent-color);
}
.btn-outline:hover {
  color: #fff;
  background-color: var(--three-color);
  border-color: var(--three-color);
}

.btn-accent {
  background: linear-gradient(135deg, #502f1c, #d4af37);
  color: #fff;
  border: 0;
}
.btn-accent:hover {
  transform: scale3d(1.06, 1, 1);
}

.btn-small {
  padding: 9px 30px;
}

.btn-simple {
  padding: 0 !important;
  color: var(--primary-color);
  background-color: transparent;
  border: 0;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.8em;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.btn-simple span {
  display: inline-block;
  vertical-align: middle;
}
.btn-simple::before, .btn-simple::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: var(--primary-color);
  left: 0;
  bottom: -3px;
  transition: none;
}
.btn-simple::before {
  transform-origin: right;
  transform: scale(1, 1);
}
.btn-simple::after {
  transform-origin: left;
  transform: scale(0, 1);
}
.btn-simple:hover {
  color: var(--primary-color);
}
.btn-simple:hover::before {
  transform: scale(0, 1);
  transition: all 175ms cubic-bezier(0.18, 0.43, 0.58, 1);
}
.btn-simple:hover::after {
  transform: scale(1, 1);
  transition: all 175ms cubic-bezier(0.18, 0.43, 0.58, 1) 175ms;
}

.tb-space {
  padding: 70px 0;
}

.tb-space-top {
  padding-top: 70px;
}

.tb-space-bottom {
  padding-bottom: 70px;
}

.tb-space-sm {
  padding: 40px 0;
}

.tb-space-sm-top {
  padding-top: 40px;
}

.tb-space-sm-bot {
  padding-bottom: 40px;
}

@media (max-width: 767.98px) {
  .tb-space {
    padding: 40px 0;
  }

  .tb-space-top {
    padding-top: 40px;
  }

  .tb-space-bottom {
    padding-bottom: 40px;
  }
}
.form-control {
  height: 40px;
  padding: 10px 12px;
  font-size: 16px;
}
.form-control:focus {
  border-color: #ced4da;
  box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #fff;
  opacity: 1;
}

.custom-form-label {
  font-weight: 600;
  margin-bottom: 8px;
}

.required {
  color: var(--primary-color);
  font-family: var(--primary-font);
}

.section-heading {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin-bottom: 50px;
}
.section-heading .sectitle {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 48px;
  line-height: 1.3;
  font-weight: 500;
}
.section-heading .subtitle {
  display: block;
  margin: 20px 0 0;
  color: var(--normal-color);
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .section-heading .sectitle {
    font-size: 2.8rem;
  }
  .section-heading .subtitle {
    margin: 15px 0 0;
  }
}

.stm-title {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--three-color);
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--second-color);
  color: #000;
  border-radius: 50px;
  width: 35px;
  height: 35px;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.breadcrumb {
  background-color: transparent;
  padding: 10px 0;
  border-radius: 0;
  margin: 10px 0;
}
.breadcrumb-item.active {
  color: var(--primary-color);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
}
.header-top {
  position: relative;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  background-color: var(--three-color);
  z-index: 111;
}
.header-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
.header-top-left__inner {
  display: flex;
  align-items: center;
  height: 100%;
  vertical-align: middle;
}
.header-top-left__inner .top-social {
  display: flex;
  align-items: baseline;
  margin-right: 40px;
}
@media (max-width: 767.98px) {
  .header-top-left__inner .top-social {
    display: none;
  }
}
.header-top-left__inner .top-text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.header-top-left__inner .social-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px 0 0;
  color: #fff;
  font-size: 12px;
}
.header-top-left__inner .phone-top {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.header-top-left__inner .phone-top a {
  color: inherit;
}
.header-top-right__inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-main {
  background-color: #f5e6c8a8;
}
.header-main-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*height: 80px;*/
}
.header-main-wrap .logo img {
  height: 87px;
  padding: 6px 0;
}
.header-nav {
  height: 100%;
}
.header-nav-close {
  display: none;
}
.header-nav ul {
  position: relative;
  height: 100%;
}
.header-nav ul li {
  position: relative;
  display: inline-block;
}
.header-nav ul > li {
  height: 100%;
}
.header-nav ul > li > a {
  display: flex;
  align-items: center;
  padding: 28px 10px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--normal-color);
}
.header-nav ul > li:hover > a {
  color: var(--primary-color);
}
.header-nav ul > li .submenu {
  position: absolute;
  display: block;
  left: -16px;
  top: 100%;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  z-index: 10;
  transition: top 0.15s ease-out;
  background-color: var(--second-color);
  padding: 10px 0 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.header-nav ul > li .submenu li {
  display: block;
  width: 165px;
}
.header-nav ul > li .submenu li a {
  display: block;
  padding: 7px 15px;
  font-size: 14px;
  color: var(--normal-color);
}
.header-nav ul > li .submenu li a:hover {
  color: var(--primary-color);
}
@media (min-width: 1200px) {
  .header-nav ul > li.hasChildren:hover .submenu {
    height: auto;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1199px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: -15rem;
    width: 90%;
    height: 100%;
    max-width: 450px;
    z-index: 1023;
    overflow-y: auto;
    transition: all 0.3s ease 0s;
    background-color: #fff;
    padding: 40px 24px;
    opacity: 0;
    visibility: hidden;
  }
  .header-nav.opened {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .header-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff0;
    border: 0;
    width: 4rem;
    height: 4rem;
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    font-size: 2.6rem;
    cursor: pointer;
  }
  .header-nav ul {
    display: block;
    height: auto;
  }
  .header-nav ul li {
    display: block;
    height: auto;
  }
  .header-nav ul > li {
    border-bottom: 1px dotted #DDD;
  }
  .header-nav ul > li > a {
    position: relative;
    padding: 8px 0;
    justify-content: space-between;
  }
  .header-nav ul > li > a .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .header-nav ul > li .submenu {
    position: relative;
    left: 0;
    padding: 8px 16px;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
  }
  .header-nav ul > li .submenu li {
    width: 100%;
  }
  .header-nav ul > li.active > a .arrow {
    transform: rotate(180deg);
  }
  .header-nav ul > li.active .submenu {
    max-height: unset;
    display: block;
    box-shadow: none;
    padding: 0;
  }
}
.header-boxcta {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 20px;
}
.header.fixed {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.025);
}
.header.fixed .header-main {
  background-color: var(--second-color);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 2.6rem;
}
@media (min-width: 1199px) {
  .menu-toggle {
    display: none;
  }
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  display: none;
}
.bg-overlay.active {
  display: block;
}

.languages .language {
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 1.4rem;
  outline: 0;
  cursor: pointer;
  background-color: var(--three-color);
  border-color: var(--three-color);
  color: #fff;
}

.banner-video, .banner-wrap {
  position: relative;
  overflow: hidden;
}
.banner-video video,
.banner-video img,
.banner-video iframe, .banner-wrap video,
.banner-wrap img,
.banner-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 100dvh;
}
@media (max-width: 1199.98px) {
  .banner-video video,
.banner-video img,
.banner-video iframe, .banner-wrap video,
.banner-wrap img,
.banner-wrap iframe {
    height: 60dvh;
  }
}
@media (max-width: 767.98px) {
  .banner-video video,
.banner-video img,
.banner-video iframe, .banner-wrap video,
.banner-wrap img,
.banner-wrap iframe {
    height: 60dvh;
  }
}
.banner-video .banner-content, .banner-wrap .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 15px;
  text-align: center;
}
.banner-video .banner-content-title, .banner-wrap .banner-content-title {
  font-size: 64px;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .banner-video .banner-content-title, .banner-wrap .banner-content-title {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .banner-video .banner-content-title, .banner-wrap .banner-content-title {
    font-size: 40px;
  }
}
.banner-video .banner-content-desc, .banner-wrap .banner-content-desc {
  letter-spacing: 2px;
  color: #fff;
  font-size: 1.8rem;
}

.about-image {
  position: relative;
  height: 100%;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .about-image::before {
    content: "";
    background: white;
    background: linear-gradient(to right, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    display: block;
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}
.about-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px;
}
@media (max-width: 1200px) {
  .about-content-inner {
    padding: 40px 15px;
  }
}
.about-content-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .about-content-title {
    font-size: 2.4rem;
  }
}
.about-content-desc {
  margin-bottom: 10px;
}

.rooms-list .item {
  margin-bottom: 30px;
}
.rooms-detail-image {
  position: relative;
  height: 100%;
}
.rooms-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .rooms-detail-image::before {
    content: "";
    background: white;
    background: linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    display: block;
    width: 35%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 30;
  }
}
.rooms-detail-content {
  padding: 3rem 1.5rem;
}
.rooms-detail-content-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 4.8rem;
  border: 1px solid #c99246 !important;
}
@media (max-width: 1200px) {
  .rooms-detail-content-inner {
    padding: 40px 15px;
  }
}
@media (max-width: 991.98px) {
  .rooms-detail-content-inner {
    padding: 2.4rem;
  }
}
.rooms-detail-content-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0px;
}
@media (max-width: 767.98px) {
  .rooms-detail-content-title {
    font-size: 2.4rem;
  }
}
.rooms-detail-content-desc {
  margin-bottom: 10px;
}
.rooms-detail-content-info li {
  display: flex;
  margin-bottom: 8px;
}
.rooms-detail-content-info li .icon {
  flex-shrink: 0;
  margin-right: 1.6rem;
  max-height: 2.4rem;
}
@media (min-width: 576px) {
  .rooms-detail-content-info li .icon {
    margin-right: 2.4rem;
  }
}
.rooms-detail-content-info li span {
  flex-grow: 1;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 8px;
}
.rooms-detail-content .gr-btn-book {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10px;
  margin-right: 2.4rem;
}
@media (min-width: 992px) {
  .rooms-detail-content .gr-btn-book {
    margin-right: 4.8rem;
  }
}
.rooms-detail-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
.rooms-detail-price .price-old {
  font-size: 1.6rem;
  color: var(--primary-color);
  text-decoration: line-through;
}
.rooms-detail-price .price-value {
  color: var(--three-color);
  font-size: 1.7rem;
}
.rooms-detail-slider {
  height: 100%;
}
.rooms-detail-slider .owl-stage-outer {
  height: 100%;
}
.rooms-detail-slider .owl-stage-outer .owl-stage {
  height: 100%;
}
.rooms-detail-slider .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.rooms-detail-slider .owl-stage-outer .owl-stage .owl-item .item {
  height: 100%;
}
.rooms-detail-slider .owl-nav {
  z-index: 40;
}
.rooms-detail-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rooms-detail-includ {
  background-color: var(--second-color2);
}
.rooms-detail-includ .entry-title {
  font-size: 3.6rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.rooms-detail-includ .entry-desc {
  margin-bottom: 20px;
}
.rooms-detail-includ .block-entry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8rem;
  margin-bottom: 24px;
}
.rooms-detail-includ .block-entry-list .block-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.rooms-detail-includ .block-entry-list .block-column .title-head {
  font-size: 1.8rem;
  color: var(--three-color);
  margin-bottom: 6px;
}
.rooms-detail-includ .block-entry-list .block-column .block-list {
  list-style: disc;
  margin-left: 30px;
}
@media (min-width: 768px) {
  .rooms-detail-includ .block-entry-list .block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
}

.card-room {
  border-radius: 24px;
  overflow: hidden;
}
.card-room .box-image {
  position: relative;
  overflow: hidden;
}
.card-room .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
  transition: all 0.3s ease;
}
.card-room .box-content {
  padding: 20px 15px;
}
.card-room .box-content .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.card-room .box-content .title a {
  color: inherit;
}
.card-room .box-content .price {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.card-room .box-content .price-old {
  font-size: 1.6rem;
  color: var(--primary-color);
  text-decoration: line-through;
}
.card-room .box-content .price-value {
  font-size: 1.7rem;
  color: var(--three-color);
}
.card-room .box-content .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}
.card-room .box-content .gr-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-room:hover .box-image img {
  transform: scale(1.1);
}

.restaurants-about {
  position: relative;
}
.restaurants-about .image-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media (min-width: 992px) {
  .restaurants-about .image-bg {
    width: 50%;
  }
}
.restaurants-about .wrap-content {
  background-color: rgba(255, 255, 255, 0.9);
  min-height: 350px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  text-align: center;
}
.restaurants-about .wrap-content .entry-title {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 4rem;
  letter-spacing: 0.2rem;
  margin-bottom: 24px;
}
.restaurants-about .wrap-content .entry-content .gr-btn {
  margin-top: 20px;
}
.restaurants-about .wrap-content .entry-content .gr-btn p {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .restaurants-about .wrap-content {
    min-height: 600px;
  }
}
@media (min-width: 992px) {
  .restaurants-about .wrap-content {
    background-color: #fff;
  }
  .restaurants-about .wrap-content::before {
    content: "";
    background: white;
    background: -moz-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    background: -webkit-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    background: linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    display: block;
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
  }
}
.restaurants-listbar .item .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurants-listbar .item .box-content {
  padding: 40px;
}
.restaurants-listbar .item .box-content .title {
  font-size: 2.9rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.restaurants-listbar .item .box-content .desc {
  margin-bottom: 20px;
}
.restaurants-listbar .item .box-content .infor {
  margin-bottom: 20px;
}
.restaurants-listbar .item .box-content .infor li {
  display: flex;
  margin-bottom: 8px;
}
.restaurants-listbar .item .box-content .infor li .icon {
  flex-shrink: 0;
  margin-right: 1.6rem;
  max-height: 2.4rem;
}
@media (min-width: 576px) {
  .restaurants-listbar .item .box-content .infor li .icon {
    margin-right: 2.4rem;
  }
}
.restaurants-listbar .item .box-content .infor li span {
  flex-grow: 1;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 8px;
}
@media (max-width: 767.98px) {
  .restaurants-listbar .item .box-content {
    padding: 20px 0px;
  }
}
@media (min-width: 768px) {
  .restaurants-listbar .item:nth-child(even) .col-image {
    order: 2;
  }
  .restaurants-listbar .item:nth-child(even) .col-content {
    order: 1;
  }
}
@media (max-width: 767.98px) {
  .restaurants-listbar .item {
    margin-bottom: 30px;
  }
  .restaurants-listbar .item:last-child {
    margin-bottom: 0;
  }
}
.restaurants-content .title {
  font-size: 4rem;
  margin-bottom: 20px;
}
.restaurants-content .desc {
  display: block;
}
.restaurants-content .gr-btn {
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .restaurants-content {
    margin-bottom: 30px;
  }
}
.restaurants-slider .item {
  position: relative;
  overflow: hidden;
}
.restaurants-slider .item img {
  width: 100%;
  transform: scale(0.8);
  object-fit: cover;
  transition: all linear 0.5s;
  border-radius: 40px;
}
.restaurants-slider .center {
  padding: 20px;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #502f1c, #d4af37);
  z-index: 5;
  border-radius: 40px;
}
.restaurants-slider .center .item img {
  transform: scale(1);
  object-fit: cover;
  transition: all linear 0.5s;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .restaurants-slider .center {
    padding: 15px;
    border-radius: 35px;
  }
}

.services {
  position: relative;
}
.services .image-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media (min-width: 992px) {
  .services .image-bg {
    width: 50%;
  }
}
.services .wrap-content {
  background-color: rgba(255, 255, 255, 0.9);
  min-height: 350px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  text-align: center;
}
.services .wrap-content .entry-title {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 4rem;
  letter-spacing: 0.2rem;
  margin-bottom: 24px;
}
.services .wrap-content .entry-content .gr-btn {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .services .wrap-content {
    min-height: 600px;
  }
}
@media (min-width: 992px) {
  .services .wrap-content {
    background-color: #fff;
  }
  .services .wrap-content::before {
    content: "";
    background: white;
    background: -moz-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    background: -webkit-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    background: linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    display: block;
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
  }
}
.services-list-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.services-list-item .item-content {
  width: 32%;
  z-index: 2;
  align-self: center;
  position: relative;
}
.services-list-item .item-content-inner {
  background-color: #f7f7f7;
  padding: 37px 32px;
  width: 120%;
  border-top: 5px solid var(--three-color);
  border-bottom: 5px solid var(--primary-color);
  min-height: 400px;
}
.services-list-item .item-content-inner .title {
  font-size: 2.9rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.services-list-item .item-content-inner .desc {
  margin-bottom: 20px;
}
.services-list-item .item-image {
  width: 68%;
  border-radius: 24px;
  overflow: hidden;
}
.services-list-item .item-image .services-item-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .services-list-item .item-image .services-item-slider.owl-carousel .owl-nav button.owl-prev {
    position: relative;
    left: 15%;
  }
  .services-list-item .item-image .services-item-slider.owl-carousel .owl-nav button.owl-next {
    position: relative;
    right: 15%;
  }
}
@media (min-width: 768px) {
  .services-list-item:nth-child(even) .item-content {
    order: 2;
  }
  .services-list-item:nth-child(even) .item-content-inner {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .services-list-item:nth-child(even) .item-image {
    order: 1;
  }
}
@media (max-width: 767.98px) {
  .services-list-item {
    flex-direction: column-reverse;
  }
  .services-list-item .item-image,
.services-list-item .item-content {
    width: 100%;
  }
  .services-list-item .item-content {
    margin-top: 10px;
  }
  .services-list-item .item-content-inner {
    width: 100%;
    min-height: auto;
    padding: 20px 15px;
  }
}

.card-service {
  border-radius: 24px;
  overflow: hidden;
}
.card-service .box-image {
  position: relative;
  overflow: hidden;
}
.card-service .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
  transition: all 0.3s ease;
}
.card-service .box-content {
  padding: 20px 15px;
}
.card-service .box-content .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.card-service .box-content .title a {
  color: inherit;
}
.card-service .box-content .price {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.card-service .box-content .price-old {
  font-size: 1.6rem;
  color: var(--primary-color);
  text-decoration: line-through;
}
.card-service .box-content .price-value {
  font-size: 1.7rem;
  color: var(--three-color);
}
.card-service .box-content .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}
.card-service .box-content .gr-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-service:hover .box-image img {
  transform: scale(1.1);
}

.offers-list {
  position: relative;
}
.offers-related {
  background-color: var(--three-color);
}

.card-offer {
  background-color: var(--second-color);
  border-radius: 24px;
  overflow: hidden;
}
.card-offer .box-image {
  position: relative;
  overflow: hidden;
}
.card-offer .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.card-offer .box-content {
  padding: 20px;
}
.card-offer .box-content .title {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.card-offer .box-content .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card-offer .box-content .gr-btn {
  margin-top: 10px;
}
.card-offer:hover .box-image img {
  transform: scale(1.1);
}

.gallery {
  padding: 40px 0;
  background-color: var(--three-color);
}
.gallery .section-heading .btn-simple {
  color: var(--primary-color);
}
.gallery .section-heading .btn-simple::after, .gallery .section-heading .btn-simple::before {
  color: var(--primary-color);
}
.gallery-wrap {
  overflow: hidden;
  position: relative;
  /* BUTTON */
  /* TRACK */
  /* ITEM giữ nguyên */
}
.gallery-wrap::before, .gallery-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}
.gallery-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--three-color), transparent);
}
.gallery-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--three-color), transparent);
}
.gallery-wrap .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--second-color);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}
.gallery-wrap .nav-arrow-prev {
  left: 10px;
}
.gallery-wrap .nav-arrow-next {
  right: 10px;
}
.gallery-wrap .gallery-magic {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 20px;
  will-change: transform;
}
.gallery-wrap .item {
  flex: 0 0 auto;
  width: 300px;
}
.gallery-wrap .item:nth-child(odd) {
  padding-top: 40px;
}
.gallery-wrap .item:nth-child(even) {
  padding-bottom: 40px;
}
.gallery-page-wrap .box-nav-tab {
  overflow: auto;
}
.gallery-page-wrap .tab-nav {
  margin-bottom: 30px;
}
.gallery-page-wrap .tab-nav a {
  display: inline-block;
  padding: 20px 10px;
  font-weight: 600;
}
.gallery-page-wrap .tab-nav a.active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.tours-list .item {
  position: relative;
  margin-bottom: 30px;
}

.card-tour {
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}
.card-tour .box-image {
  position: relative;
  overflow: hidden;
}
.card-tour .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.card-tour .box-content {
  padding: 20px;
}
.card-tour .box-content .title {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.card-tour .box-content .title a {
  color: inherit;
}
.card-tour .box-content .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}
.card-tour:hover .box-image img {
  transform: scale(1.1);
}
.card-tour.--inline {
  border: 0;
}
.card-tour.--inline .box-image {
  border-radius: 24px;
}
.card-tour.--inline .box-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}
.card-tour.--inline .box-content {
  position: relative;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 10;
  background-color: var(--three-color);
  border-radius: 12px;
  transition: all 0.3s linear;
  text-align: center;
}
.card-tour.--inline .box-content .title {
  color: #fff;
  margin-bottom: 20px;
}
.card-tour.--inline:hover .box-content {
  transform: translate(-50%, -20px);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}
.blogs-grid .item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--three-color);
  border-radius: 24px;
  overflow: hidden;
}
.blogs-grid .item .box-image {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.blogs-grid .item .box-image a::before {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid #fff;
  z-index: 11;
  border-radius: 14px 0 0 14px;
}
.blogs-grid .item .box-image a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.blogs-grid .item .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.blogs-grid .item .box-image:hover img {
  transform: scale(1.1);
}
.blogs-grid .item .box-content {
  flex: 1;
}
.blogs-grid .item .box-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  text-align: center;
}
.blogs-grid .item .box-content-inner .title {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 2rem;
}
.blogs-grid .item .box-content-inner .title a {
  color: inherit;
}
.blogs-grid .item .box-content-inner .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}
.blogs-grid .item.item-full .box-image {
  width: 100%;
}
.blogs-grid .item.item-full .box-image a::before {
  border-radius: 14px;
}
.blogs-grid .item.item-full .box-image a::after {
  background-color: rgba(0, 0, 0, 0.4);
}
.blogs-grid .item.item-full .box-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.blogs-grid .item.item-full .box-content .title {
  color: #fff;
}
.blogs-grid .item.item-full .box-content .desc {
  color: #fff;
}
@media (min-width: 992px) {
  .blogs-grid .item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .blogs-grid .item:nth-child(2), .blogs-grid .item:nth-child(3), .blogs-grid .item:nth-child(4), .blogs-grid .item:nth-child(5) {
    grid-column: span 2;
  }
}
@media (max-width: 767.98px) {
  .blogs-grid .item .box-image {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .blogs-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
}

.restaurants-infor .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurants-infor .box-content {
  height: 100%;
}
.restaurants-infor .box-content-inner {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
  height: 100%;
}
.restaurants-infor .box-content-inner .title {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.restaurants-infor .box-content-inner .desc {
  margin-bottom: 10px;
  display: block;
}
.restaurants-infor .box-content-inner .infor li {
  display: flex;
  margin-bottom: 8px;
}
.restaurants-infor .box-content-inner .infor li .icon {
  flex-shrink: 0;
  margin-right: 1.6rem;
  max-height: 2.4rem;
}
@media (min-width: 576px) {
  .restaurants-infor .box-content-inner .infor li .icon {
    margin-right: 2.4rem;
  }
}
.restaurants-infor .box-content-inner .infor li span {
  flex-grow: 1;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 8px;
}
.restaurants-infor .box-content-inner .gr-btn {
  margin-top: 30px;
  text-align: center;
}
.restaurants-signature {
  background-color: var(--three-color);
}
.restaurants-signature .section-heading .subtitle {
  color: #fff;
}
.restaurants-signature-list .item {
  position: relative;
  background-color: var(--second-color2);
}
.restaurants-signature-list .item .box-image {
  display: block;
  width: 100%;
  height: 100%;
}
.restaurants-signature-list .item .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurants-signature-list .item .box-content {
  padding: 20px;
}
.restaurants-signature-list .item .box-content .title {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.restaurants-signature-list.type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}
.restaurants-signature-list.type-grid .item {
  position: relative;
}
.restaurants-signature-list.type-grid .item .box-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}
.restaurants-signature-list.type-grid .item .box-content .title {
  color: var(--primary-color);
  font-size: 2.4rem;
}
.restaurants-signature-list.type-grid .item .box-content .desc {
  color: #fff;
}
.restaurants-signature-list.type-grid .item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 3;
}
.restaurants-signature-list.type-grid .item:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 768px) {
  .restaurants-signature-list.type-grid {
    display: block;
  }
  .restaurants-signature-list.type-grid .item {
    margin-bottom: 15px;
  }
}
.restaurants-skybar .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurants-skybar .box-content .title {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.restaurants-skybar .box-content .desc {
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .restaurants-skybar .box-content {
    margin-bottom: 30px;
  }
}

.book-table {
  background-color: var(--three-color);
}
.book-table-wrap {
  background-color: #fff;
  padding: 50px;
}
@media (max-width: 767.98px) {
  .book-table-wrap {
    padding: 30px 15px;
  }
}
.book-table-form .form-group {
  margin-bottom: 20px;
}

.skybar-worktime .worktime-item__icon {
  height: 64px;
  width: 64px;
  margin-bottom: 15px;
}
.skybar-worktime .worktime-item__content {
  margin-bottom: 30px;
}
.skybar-worktime .worktime-btn-wrapper {
  align-self: center;
  text-align: center;
}
@media (min-width: 992px) {
  .skybar-worktime .worktime-btn-wrapper {
    text-align: right;
  }
}
.skybar-highlights-list .item .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skybar-highlights-list .item .box-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}
.skybar-highlights-list .item .box-content .title {
  font-size: 2.9rem;
  color: var(--primary-color);
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .skybar-highlights-list .item .box-content {
    padding: 20px 0px;
    gap: 15px;
  }
}
@media (min-width: 768px) {
  .skybar-highlights-list .item:nth-child(even) .col-image {
    order: 2;
  }
  .skybar-highlights-list .item:nth-child(even) .col-content {
    order: 1;
  }
}
@media (max-width: 767.98px) {
  .skybar-highlights-list .item {
    margin-bottom: 30px;
  }
}
.skybar-promotions {
  position: relative;
}
.skybar-promotions .bg-parallax {
  border: none;
  bottom: 0;
  box-shadow: none;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  object-fit: cover;
  outline: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.skybar-promotions-wrap {
  position: relative;
}
.skybar-promotions-inner {
  color: #fff;
}
.skybar-promotions-inner > * {
  margin-bottom: 16px;
}
.skybar-water-wrap .view-menu-more {
  text-align: center;
  margin-top: 30px;
}
.skybar-water-wrap .view-menu-more a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}
.skybar-water-wrap .view-menu-more a:hover {
  color: var(--three-color);
}
.skybar-water-list {
  columns: 3;
  column-gap: 20px;
}
.skybar-water-list .item {
  position: relative;
  margin-bottom: 20px;
}
.skybar-water-list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skybar-water-list .item .title {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 2.8rem;
}
@media (max-width: 767.98px) {
  .skybar-water-list {
    columns: 2;
  }
  .skybar-water-list .item .title {
    font-size: 1.8rem;
  }
}
.skybar-water-type .item {
  position: relative;
}
.skybar-water-type .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.skybar-water-type .item .gr-btn {
  position: absolute;
  bottom: 20px;
  left: 15px;
  z-index: 1;
}
.skybar-water-type .item .gr-btn .btn-outline {
  border-color: #fff;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
.skybar-water-type .item .gr-btn .btn-outline:hover {
  background-color: var(--three-color);
  border-color: var(--three-color);
}
@media (max-width: 767.98px) {
  .skybar-water-type .item {
    margin-bottom: 30px;
  }
}
.skybar-gallery-list {
  columns: 3;
  column-gap: 20px;
}
.skybar-gallery-list .item {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
.skybar-gallery-list .item img {
  transition: all 0.3s ease;
}
.skybar-gallery-list .item:hover img {
  transform: scale(1.1);
}

.book-skybar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-skybar-form {
  padding: 40px;
}
.book-skybar-form .form-head {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 40px;
}
.book-skybar-form .form-group {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .book-skybar-form {
    padding: 30px 15px;
  }
}

.footer-main {
  padding: 40px 0;
  background-color: var(--second-color);
}
.footer-logo {
  display: block;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 90px;
}
.footer-head {
  font-size: 2.4rem;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--three-color);
  margin-bottom: 10px;
}
.footer-info li {
  margin-bottom: 10px;
}
.footer-info li i {
  margin-right: 6px;
}
.footer-social a {
  background-color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  color: var(--primary-color);
  font-size: 1.6rem;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .footer-col {
    margin-bottom: 20px;
  }
}

.backtotop {
  position: fixed;
  bottom: 30px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background-color: var(--three-color);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
  transform: translateY(20px);
  box-shadow: 0 0px 3px 0 rgba(255, 255, 255, 0.2);
}
.backtotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-contact {
  position: fixed;
  bottom: 30px;
  left: 15px;
  z-index: 99;
}
.fixed-contact .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 2.4rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
}
.fixed-contact .item:hover {
  color: #fff;
}
.fixed-contact .item + .item {
  margin-top: 15px;
}

.copyright {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 0;
}

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