/* # fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* # variables */
:root {
  --hue: 200;
  --saturation: 70%;
  --lightness: 55%;
  --main-color: #926c15;

  /* text colors */
  --text-white: hsl(0, 0%, 100%);
  --text-light-gray: hsl(0, 0%, 96%);
  --text-x-dark-gray: hsl(0, 0%, 94%);
  --text-dark-gray: hsl(0, 0%, 84%);

  /* bg colors */
  --bg-white: hsl(0, 0%, 100%);

  /* bg colors */
  --body-bg-color: hsl(var(--hue), 20%, 10%);
  --bg-color: hsl(var(--hue), 13%, 17%);

  /* border color */
  --border-color: hsl(var(--hue), 15%, 30%);

  /* shadow */
  --shadow: 0 0 10px hsla(var(--hue), 19%, 7%, 0.9);
  --focus-shadow: 0 0 10px hsla(var(--hue), 57%, 63%, 0.6);

  /* font size */
  --fs-4xl: 50px;
  --fs-3xl: 35px;
  --fs-2xl: 26px;
  --fs-xl: 20px;
  --fs-lg: 18px;
  --fs-md: 16px;
  --fs-sm: 14px;
}

#home {
  height: 100vh;
}

/* # base */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--text-dark-gray);
  background-color: var(--body-bg-color);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-x-dark-gray);
  line-height: 1.3;
}

p {
  margin-bottom: 15px;
}

img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

::selection {
  color: var(--text-white);
  background-color: var(--main-color);
}

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

::-webkit-scrollbar-track {
  background-color: var(--body-bg-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/* # page wrapper */
.page-wrapper {
  overflow: hidden;
}

/* # container */
.container {
  max-width: 1170px;
  margin: auto;
  padding: 0 35px;
}

/* # grid */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

/* # section */

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title .title {
  padding-top: 100px;
  display: inline-block;
  font-size: var(--fs-lg);
  font-weight: 400;
  text-transform: capitalize;
  color: var(--main-color);
  margin: 0 0 12px;
  padding: 0 40px;
  position: relative;
}

.section-title .title::before,
.section-title .title::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 34px;
  background-color: var(--main-color);
  top: 50%;
  transform: translateY(-50%);
}

.section-title .title::before {
  left: 0;
}

.section-title .title::after {
  right: 0;
}

.section-title .sub-title {
  font-size: var(--fs-3xl);
  text-transform: capitalize;
}

/* # buttons */

.primary-btn {
  display: inline-block;
  font-size: 17px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
}

.primary-btn:after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #926c15;
  content: "";
}

button {
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  background-color: var(--main-color);
  color: var(--text-white);
  font-weight: 500;
  font-size: var(--fs-md);
  text-transform: capitalize;
  line-height: 1.5;
  font-family: inherit;
  border: 2px solid transparent;
  border-radius: 30px;
  vertical-align: middle;
  user-select: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: transparent;
  color: var(--main-color);
  border-color: var(--main-color);
}

/* # forms */
.input-box {
  margin-bottom: 20px;
}

::placeholder {
  color: var(--text-dark-gray);
  opacity: 1;
  /* override firefox's default opacity */
}

.input-control {
  width: 100%;
  height: 50px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  background-color: transparent;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: var(--text-x-dark-gray);
  padding: 0 20px;
}

.input-control:focus {
  outline: 1px solid var(--border-color);
}

textarea.input-control {
  display: block;
  height: 150px;
  padding-top: 15px;
  resize: none;
}

/* # preloader */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-color);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.preloader div {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border-left: 4px solid var(--main-color);
  border-right: 4px solid var(--main-color);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  animation: preloader 1s linear infinite;
}

@keyframes preloader {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* # home */

.home-section {
  position: relative;
  overflow: hidden;
}

.home-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.7;
  z-index: -1;
}

.home-section .home-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/Photos-001/landscape.jpg");
  opacity: 0.8;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: zoomInOut 20s ease infinite;
}

.home-section .top-row {
  padding: 125px 0;
}

.home-text {
  max-width: 700px;
  width: 100%;
  max-height: 100%;
  margin: auto;
  text-align: center;
}

.home-text h1 {
  font-family: var(--cursive-font);
  font-size: 60px;
  line-height: 75px;
  margin: 0 0 5px;
}

.home-text p {
  margin: 0 0 30px;
}

#home-img {
  height: 60vh;
  /* width: 450px; */
  overflow: hidden;
  text-align: center;
}

#home-text {
  padding: 50px;
}

#home-img img {
  height: 100%;
  width: auto;
}

/* # header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  padding: 10px 0;
}

.header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  z-index: -1;
  transform: translateY(calc(-100% - 10px));
  transition: transform 0.5s ease;
}

.header.bg-reveal::before {
  transform: translateY(0);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo a {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  transform: scaleY(0.9);
  letter-spacing: 2px;
}

.header .logo span {
  font-size: 12px;
  display: block;
  font-weight: 400;
  color: var(--text-x-dark-gray);
  letter-spacing: 1px;
}

.nav li {
  display: inline-block;
  margin-left: 35px;
}

.nav a {
  text-transform: capitalize;
  font-size: var(--fs-md);
  color: var(--text-x-dark-gray);
  font-weight: 400;
  display: block;
  padding: 10px 10px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--main-color);
}

/* # header */
.nav-toggler {
  display: block;
  height: 34px;
  width: 40px;
  border: none;
  z-index: 1;
  background-color: transparent;
}

.nav-toggler span {
  display: block;
  height: 2px;
  width: 24px;
  background-color: var(--main-color);
  margin: auto;
  position: relative;
  transition: background-color 0.3s ease;
}

.nav-toggler.active span {
  background-color: transparent;
}

.nav-toggler span::after,
.nav-toggler span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  transition: transform 0.3s ease;
}

.nav-toggler span::before {
  transform: translateY(-7px);
}

.nav-toggler.active span::before {
  transform: rotate(45deg);
}

.nav-toggler span::after {
  transform: translateY(7px);
}

.nav-toggler.active span::after {
  transform: rotate(-45deg);
}

.nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 260px;
  background-color: var(--bg-color);
  padding: 60px 30px 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.nav.open {
  transform: translateX(0);
  box-shadow: var(--shadow);
}

.nav li {
  display: block;
  margin: 0;
}

.nav a {
  font-size: var(--fs-lg);
}

.nav li + li {
  border-top: 1px solid var(--border-color);
}

/* room-main

*/

.room .section-title {
  text-align: left;
  margin: 0 0 15px;
}

.room-img,
.room-text {
  grid-column: span 6;
  align-self: center;
  text-align: justify;
  text-justify: inter-word;
}

.room-img .img-box {
  max-width: 500px;
  margin: auto;
  padding: 15px;
  position: relative;
}

.room-img .img-box img {
  border-radius: 2%;
}

.room-img .box {
  height: 125px;
  width: 125px;
  background-color: var(--main-color);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 0 40px;
  padding: 15px;
}

.room-img .box-1 {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.room-img .box span {
  color: var(--text-white);
  font-weight: bold;
  font-size: var(--fs-3xl);
  margin: 0 0 5px;
  line-height: 1;
}

.room-img .box p {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  color: var(--text-light-gray);
  margin: 0;
}

.rooms-button {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  text-align: center;
}

.facilities {
  margin: 0 auto;
  /* Center the list horizontally */
  display: grid;
  /* Use CSS Grid to create 2 columns */
  grid-template-columns: repeat(2, 1fr);
  /* Create 2 columns with equal width */
  grid-gap: 10px;
  /* Add some space between the items */
  list-style: none;
  /* Remove the bullet points */
  padding: 0;
  /* Remove any default padding */
  text-align: center;
  /* Align the text to the left */
  border-collapse: separate;
  /* Separate the borders from each other */
  border-spacing: 5px;
  /* Add some space between the borders */
}

.facilities li {
  display: flex;
  /* Use flexbox to align the icon and text */
  align-items: center;
  /* Vertically center the icon and text */
  margin-bottom: 10px;
  /* Add some space between the items */
  border-right: 2px solid #926c15;
  /* Add a border to each item */

  padding: 10px;
  /* Add some padding to the item */
}

.facilities li i {
  margin-right: 10px;
  /* Add some space between the icon and text */
}

.facilities li:nth-child(even) {
  border-right: none;
  /* Remove the right border on even items */
}

.facilities li:nth-last-child(-n + 2) {
  border-bottom: none;
  /* Remove the bottom border on the last 2 items */
}

/* # about  */

.about .section-title {
  text-align: left;
  margin: 0 0 15px;
}

.about-img,
.about-text {
  grid-column: span 6;
  align-self: center;
  text-align: justify;
  text-justify: inter-word;
}

.about-img .img-box {
  max-width: 500px;
  margin: auto;
  padding: 15px;
  position: relative;
}

.about-img .img-box img {
  border-radius: 2%;
}

.about-img .box {
  height: 125px;
  width: 125px;
  background-color: var(--main-color);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 0 40px;
  padding: 15px;
}

.about-img .box-1 {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.about-img .box span {
  color: var(--text-white);
  font-weight: bold;
  font-size: var(--fs-3xl);
  margin: 0 0 5px;
  line-height: 1;
}

.about-img .box p {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  color: var(--text-light-gray);
  margin: 0;
}

/* # services  */
.services {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services .grid {
  gap: 0px;
  height: auto;
}

.services .container {
  height: auto;
}

.services .section-title h2 {
  color: var(--bg-color);
}

.service-item {
  grid-column: span 3;
  text-align: center;
  background-color: white;
  padding: 30px 35px 18px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.service-item:hover {
  background-color: #926c15;
}

.service-item:hover i {
  color: #ffffff;
}

.service-item:hover h4 {
  color: #ffffff;
}

.service-item:hover p {
  color: #ffffff;
}

.service-item i {
  display: inline-block;
  color: #926c15;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 50px;
  font-style: normal;
  margin-left: 0;
}

.service-item h4 {
  color: #19191a;
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.service-item p {
  color: #707079;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* # location  */

.close-location {
  background-color: #ffffff;
}

.close-location .section-title h2 {
  color: var(--bg-color);
}

.list-container {
  max-width: 800px;
  margin: 0 auto;
}

.list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-item {
  width: calc(50% - 10px);
  margin-bottom: 20px;
  background-color: var(--bg-color);
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
}

.place-name {
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  color: var(--body-color);
}

.distance {
  color: #666;
  text-align: center;
}

/* # location  */

.location {
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.location .section-title h2 {
  color: var(--bg-color);
}

.location .grid {
  gap: 0px;
}

.location .location-map,
.location .location-item {
  grid-column: span 6;
}

.location-item {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  color: #3d4045;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  transition: all 0.3s ease-out;
  position: relative;
  min-height: 25rem;
  text-align: center;
}

.location-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.location-item .subheading {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;

  text-align: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  font-size: 1em;
  line-height: 1.5rem;
  font-weight: 700;
  color: #926c15;
  margin-bottom: 0.5rem;
}

.location-item h1 {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;

  text-align: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  word-spacing: -0.125em;
  font-size: 1.6875em;
  letter-spacing: 0.25em;
  color: #3d4045;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1.5;
}

.location-item p {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 1.6875em;
  letter-spacing: 0.25em;
  color: #3d4045;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1.5;
}

hr {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  color: #3d4045;
  font: inherit;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto 1.5em auto;
  border: 0;
  width: 2em;
  background: #926c15;
  height: 2px;
  transform: rotate(135deg);
}

.location-item .inline {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  color: #3d4045;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  display: inline-flex;
}

.location-item .inline p a {
  color: var(--main-color);
}

.background-pin {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  color: #3d4045;
  font: inherit;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  opacity: 0.05;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#map {
  height: 500px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}

/* # contact */

.contact-grid {
  max-width: 1000px;
  margin: auto;
}

.contact-info {
  grid-column: span 5;
}

.contact-form {
  grid-column: span 7;
}

.contact-info-item {
  position: relative;
  padding: 20px 0 20px 70px;
}

.contact-info-item + .contact-info-item {
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
}

.contact-info-item i {
  height: 50px;
  width: 50px;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 20px;
}

.contact-info-item h3 {
  margin: 0 0 10px;
  font-size: var(--fs-xl);
  font-weight: 500;
  text-transform: capitalize;
}

.contact-info-item p:last-child {
  margin: 0;
}

/* # footer */
.footer {
  background-color: #926c15;
}

.footer .copyright {
  width: 100%;
  text-align: center;
  padding: 25px;
}

.footer .copyright p {
  font-size: 14px;
  vertical-align: middle;
  margin-bottom: 0;
}

/* form-control */
.danger-field {
  border: 1px solid #c73c2d;
}

#result-message {
  padding: 20px;
}

.success:after {
  background: #50d844;
}

.danger:after {
  background: #c73c2d;
}

.success {
  font-weight: 100;
}

.hexa {
  border: 0px;
  float: left;
  text-align: center;
  height: 35px;
  width: 60px;
  font-size: 22px;
  background: #f0f0f0;
  color: #3c3c3c;
  position: relative;
  margin-top: 15px;
}

.hexa:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 15px solid #f0f0f0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  top: -15px;
}

.hexa:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 15px solid #f0f0f0;
  bottom: -15px;
}

.timeline {
  position: relative;
  padding: 0;
  width: 100%;
  margin-top: 20px;
  list-style-type: none;
  width: 300px;
}

.ul-container {
  display: flex;
  justify-content: center;
}

.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: " ";
  display: block;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background: rgb(213, 213, 213);
  background: -moz-linear-gradient(
    top,
    rgba(213, 213, 213, 0) 0%,
    rgb(213, 213, 213) 8%,
    rgb(213, 213, 213) 92%,
    rgba(213, 213, 213, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, rgba(30, 87, 153, 1)),
    color-stop(100%, rgba(125, 185, 232, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(213, 213, 213, 0) 0%,
    rgb(213, 213, 213) 8%,
    rgb(213, 213, 213) 92%,
    rgba(213, 213, 213, 0) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(213, 213, 213, 0) 0%,
    rgb(213, 213, 213) 8%,
    rgb(213, 213, 213) 92%,
    rgba(213, 213, 213, 0) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(213, 213, 213, 0) 0%,
    rgb(213, 213, 213) 8%,
    rgb(213, 213, 213) 92%,
    rgba(213, 213, 213, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(213, 213, 213, 0) 0%,
    rgb(213, 213, 213) 8%,
    rgb(213, 213, 213) 92%,
    rgba(213, 213, 213, 0) 100%
  );
}

.timeline li {
  padding: 1em 0;
}

.timeline .hexa {
  width: 16px;
  height: 10px;
  position: absolute;
  background: var(--main-color);
  left: -28px;
  right: auto;
  top: 8px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.timeline .direction-l .hexa {
  left: auto;
  right: -28px;
}

.timeline li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.timeline .hexa:before {
  border-bottom: 4px solid var(--main-color);
  border-left-width: 8px;
  border-right-width: 8px;
  top: -4px;
}

.timeline .hexa:after {
  border-left-width: 8px;
  border-right-width: 8px;
  border-top: 4px solid var(--main-color);
  bottom: -4px;
}

.direction-l {
  position: relative;
  width: 130px;
  float: left;
  text-align: right;
}

.direction-r {
  position: relative;
  width: 130px;
  float: right;
  text-align: left;
}

.flag-wrapper {
  text-align: center;
  position: relative;
}

.flag {
  position: relative;
  display: inline;
  background: var(--bg-color);
  font-weight: 600;
  padding: 6px 6px;
  text-align: left;
  border-radius: 5px;
  font-size: 12px;
  min-width: 30px;
}

.time {
  font-size: 12px;
}

.direction-l .flag:after,
.direction-r .flag:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -15px;
  height: 0;
  width: 0;
  margin-left: -8px;
  border: solid transparent;
  border-bottom-color: rgb(255, 255, 255);
  border-width: 8px;
  pointer-events: none;
}

.direction-l .flag:after {
  left: auto;
  right: -16px;
  top: 50%;
  margin-top: -8px;
  border: solid transparent;
  border-left-color: rgb(254, 254, 254);
  border-width: 8px;
}

.direction-r .flag:after {
  top: 50%;
  margin-top: -8px;
  border: solid transparent;
  border-right-color: rgb(254, 254, 254);
  border-width: 8px;
  left: -8px;
}

.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15),
    0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}

.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15),
    0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}

.time-wrapper {
  display: inline;
  vertical-align: middle;
  position: relative;
  margin: 4px 0 0 0;
  line-height: 1em;
  color: #fff;
  display: flex;
  justify-content: center;
}

.time {
  background: var(--main-color);
  display: block;
  padding: 5px 10px;
  width: max-content;
}

.desc {
  position: relative;
  margin: 1em 0 0 0;
  padding: 1em;
  background: rgb(254, 254, 254);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

.direction-l .desc,
.direction-r .desc {
  position: relative;
  margin: 1em 1em 0 1em;
  padding: 1em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(1, 5vw);
  grid-gap: 10px;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 2;  */
  /* grid-row: 1 / span 2; */
}

.gallery__item--2 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 3 / span 2;  */
  /* grid-row: 1 / span 2; */
}

.gallery__item--3 {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4;
  grid-row: 1 / span 5; */
}

.gallery__item--4 {
  grid-column-start: 7;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4;
  grid-row: 1 / span 5; */
}

.testimonial {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.slide p {
  text-align: center;
  padding: 0 100px;
  font-size: 20px;
  font-weight: 100;
}

.slide .quote-icon {
  font-size: 30px;
  color: var(--main-color);
}

.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details .name {
  font-size: 18px;
  font-weight: 600;
  color: #f0f0f0;
  padding-bottom: 50px;
}

.details .job {
  font-size: 18px;
  font-weight: 200;
  color: var(--main-color);
}

/* swiper button css */
.swiper .nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.swiper .nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.swiper .nav-btn::after,
.swiper .nav-btn::before {
  font-size: 20px;
  color: var(--main-color);
}

.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

/* Test */
.swiper {
  width: 100%;
  height: 500px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.separate-rooms {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.image-container1 {
  grid-column-start: 3;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 5;
}

.container1 {
  grid-column-start: 7;
  grid-column-end: 11;
  grid-row-start: 1;
  grid-row-end: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify;
}

.image-container2 {
  grid-column-start: 7;
  grid-column-end: 11;
  grid-row-start: 6;
  grid-row-end: 9;
}

.container2 {
  grid-column-start: 3;
  grid-column-end: 7;
  grid-row-start: 6;
  grid-row-end: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify;
}

.image-container3 {
  grid-column-start: 3;
  grid-column-end: 7;
  grid-row-start: 10;
  grid-row-end: 13;
}

.container3 {
  grid-column-start: 7;
  grid-column-end: 11;
  grid-row-start: 10;
  grid-row-end: 13;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify;
}

.room-book-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify;
}

.title-container p {
  padding-top: 10px;
  text-align: center;
}

.container1 .section-title,
.container2 .section-title {
  margin-bottom: 10px;
}

.facilities li i {
  vertical-align: middle;
}

.mySwiper .nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(-30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.mySwiper .nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.mySwiper .nav-btn::after,
.mySwiper .nav-btn::before {
  font-size: 20px;
  color: var(--main-color);
}

.new-container {
  max-width: 50vw;
}

@media (max-width: 768px) {
  .new-container {
    max-width: 70vw;
  }
}

@media (max-width: 425px) {
  .new-container {
    max-width: 90vw;
  }
}
