/* ==================== [ Root CSS Start ] ==================== */
/* ==================== [ Core Colors ] ==================== */
:root {
  --white: #ffffff;
  --black: #000000;
  --transparent: #0000;
}

/* ==================== [ Brand / Theme ] ==================== */
:root {
  --primary: #9c804e;
  --body: #fcf6e8;
  --light: #fffcf3;
  --dark: #3d3931;
  --chocalate: #9c804e;
  --wheat: #817a68;
  --black-50: #231f20;
  --cream: #fbf6e9;
  --wheat-80: #89837a;
}

/* ==================== [ Fonts ] ==================== */
:root {
  --font-primary: "LoraRegular", sans-serif;
  --font-secondary: "Helvetica", sans-serif;
}

/* ==================== [ Layout / Container ] ==================== */
:root {
  --container: 1640px;
  --container-padding: 20px;
  --row-gutter-space: 24px;
}

/* ==================== [ Typography – Common ] ==================== */
:root {
  --a-color: var(--primary);
  --a-hover-color: var(--primary);

  --marker-color: var(--primary);

  --blockquote-border-color: var(--primary);
  --blockquote-bg: var(--white);

  --pre-bg: var(--white);
  --pre-color: var(--primary);
}

/* ==================== [ Table ] ==================== */
:root {
  --table-border: rgba(0, 0, 0, 0.2);
  --table-th-bg: var(--primary);
  --table-th-color: var(--white);
  --table-td-bg: var(--transparent);
  --table-td-color: var(--primary);
}

/* ==================== [ Headings ] ==================== */
:root {
  --heading-color: var(--dark);
  --heading-strong-color: var(--dark);
  --heading-font-family: var(--font-secondary);
  --heading-mb: 20px;
  --heading-fw: 400;

  --h1-fs: 70px;
  --h1-lh: 120%;
  --h2-fs: 70px;
  --h2-lh: 120%;

  --h3-fs: 40px;
  --h3-lh: 120%;

  --h4-fs: 30px;
  --h4-lh: 120%;

  --h5-fs: 28px;
  --h5-lh: 114%; /*32px*/

  --h6-fs: 18px;
  --h6-lh: 144%; /*26px*/

  --fs-14: 14px;
  --lh-14: 17px;
}

.subtitle * {
  font-size: var(--fs-14);
  color: var(--chocalate);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Transistion CSS Start ] ==================== */
:root {
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.4s ease-in-out;
  --transition-extraslow: 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==================== [ Transistion CSS End ] ==================== */

/* ==================== [ Brand Global CSS Start ] ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: var(--black-50);
  font-family: var(--font-primary);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  background: var(--body);
  overflow-x: hidden;
}

/* ==================== [ Brand Global CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
  margin: 0;
}

strong,
b {
  font-weight: 700 !important;
}

a,
input,
button,
textarea {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--transparent) inset !important;
  -webkit-text-fill-color: var(--secondary) !important;
  transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
textarea:autofill,
select:autofill {
  background-color: var(--transparent) !important;
  color: var(--secondary) !important;
}

a {
  color: var(--a-color);
  word-break: break-word;
  transition: var(--transition-normal);
  -webkit-transition: var(--transition-normal);
  -moz-transition: var(--transition-normal);
  -ms-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  text-decoration: none;
}

a:hover {
  color: var(--a-hover-color);
}

p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 20px;
}

ol,
ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

ol li,
ul li {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

ol li::marker,
ul li::marker {
  color: var(--marker-color);
}

ul li:has(> ul),
ul li:has(> ol) {
  list-style-type: none;
}

blockquote {
  padding: 16px 16px 16px 24px;
  border-left: 5px solid var(--blockquote-border-color);
  margin-bottom: 20px;
  background-color: var(--blockquote-bg);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

pre {
  background-color: var(--pre-bg);
  padding: 16px;
  overflow: auto;
  font-family: inherit;
  border-radius: 12px;
  position: relative;
  color: var(--pre-color);
}

pre code {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: inherit;
}

th,
td {
  border: 1px solid var(--table-border);
  padding: 8px 12px;
  text-align: left;
}

th {
  background-color: var(--table-th-bg);
  font-weight: 600;
  font-size: inherit;
  color: var(--table-th-color);
}

td {
  background-color: var(--table-td-bg);
  font-weight: 400;
  font-size: inherit;
  color: var(--table-td-color);
}

:is(h1, h2, h3, h4, h5, h6) strong {
  color: var(--heading-strong-color);
}

h1,
.h1 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h2,
.h2 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h3,
.h3 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h4,
.h4 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h4-fs);
  line-height: var(--h4-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h5,
.h5 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h5-fs);
  line-height: var(--h5-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h6,
.h6 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h6-fs);
  line-height: var(--h6-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

hr {
  margin-block: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

.typography {
  padding-block: 120px;
}

.typography img {
  max-width: 300px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
}

.typography img.align-left {
  margin-right: 40px;
  float: left;
}

.typography img.align-right {
  margin-left: 40px;
  float: right;
}

.typography img.align-center {
  margin-inline: auto;
  display: block;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
  margin-inline: calc(var(--row-gutter-space) / -2);
  row-gap: var(--row-gutter-space);
}

.row > * {
  padding-inline: calc(var(--row-gutter-space) / 2);
}

.img-cover * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
  width: fit-content;
  padding: 13px 60px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 400;
  line-height: 21px;
  border: 1px solid;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  letter-spacing: 0.08em;
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:is(:hover, :focus-visible, :active, .active) {
  color: var(--primary) !important;
  background-color: var(--transparent) !important;
  border-color: var(--primary) !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.btn-secondary {
  color: var(--dark);
  background: var(--cream);
  border-color: var(--cream);
}

.btn-secondary:is(:hover, :focus-visible, :active, .active) {
  color: var(--cream) !important;
  background: var(--dark) !important;
  border-color: var(--dark) !important;
  box-shadow: none !important;
  outline: 0 !important;
}
/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .heading {
  text-align: center;
}

.error-404 .action * {
  width: fit-content;
  margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
  padding-inline: var(--container-padding);
  margin-inline: auto;
}

.swiper-linear .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ==================== [ Extra Common End ] ==================== */

/* ==================== [ Header Start ] ==================== */

/* ==================== [ Header Start ] ==================== */

.header {
  z-index: 99;
  position: relative;
  padding: 9px 0;
  background: var(--secondary);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}

.header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.8;
  z-index: -1;
}

.header-top {
  padding: 0 0 8px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 8px 0;
}
.header-contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-top ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.header .navbar {
  padding: 0;
  margin: 0 auto;
}

.header .navbar-brand {
  padding: 0;
  margin: 0;
  max-width: 90px;
  width: 100%;
  z-index: 11;
}

.header .navbar-brand * {
  width: 100%;
}

.header .navbar-nav .nav-item {
  margin: 0 15px;
}
.header .navbar-nav .nav-item:first-child {
  padding-left: 0;
}

/* .header .navbar-nav .nav-item:last-child {
  margin-right: 0;
  padding: 0;
  border: 0px;
} */

.header .navbar-nav .nav-item .nav-link {
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  border-bottom: 2px solid transparent;
  text-align: center;
}
.current-menu-item.nav-item .nav-link,
.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .nav-link.active {
  border-color: var(--cream) !important;
}

.header-contact ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-contact ul li a {
  text-decoration: none;
  color: var(--cream);
}

.header-contact ul li a:hover {
  color: var(--primary);
}
.header-socials ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  list-style-type: none;
}

.header-socials ul li a {
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 30px;
  width: 30px;
  align-items: center;
  justify-content: center;
}

.header-socials ul li a svg {
  width: 16px;
  height: 14px;
}

.header-socials ul li a:hover {
  opacity: 0.6;
}

.header .nav-link.btn {
  padding: 10px;
  color: var(--dark);
  border: 0px !important;
  border-radius: 12px !important;
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  -ms-border-radius: 12px !important;
  -o-border-radius: 12px !important;
  background-color: var(--cream);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 100%;
}

.navbar-inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 20px;
}

.btn-bar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header .navbar-nav .nav-item:last-child .nav-link.btn:hover {
  color: var(--cream) !important;
  border: 0px !important;
  background-color: var(--primary) !important;
  box-shadow: none;
  outline: 0;
}

.header .navbar-nav {
  align-items: center;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-inner li {
  color: var(--cream);
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

/* ==================== [ Header End ] ==================== */

/* banner */

.banner-content {
  padding: 315px 0 175px 0;
  position: relative;
  z-index: 111;
  max-width: 750px;
  margin: 0 auto;
}

.banner-wrapper .slick-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 35px;
  padding-left: 0;
  margin: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 11;
}

.banner-wrapper .slick-dots li button {
  background: transparent;
  display: none;
}

.banner-content .sub-title {
  font-size: 17px;
  color: #fff;
  line-height: 20px;
}
.banner-content .main-title {
  padding: 31px 0 20px 0;
}

.banner-content .small-paragraph {
  max-width: 748px;
  margin: 0 auto;
}

.banner-content .small-paragraph p {
  margin-bottom: 20px;
  line-height: 26px;
}

.banner-slider {
  opacity: 0;
}

.banner-slider.slick-initialized {
  opacity: 1;
}

.banner-slide {
  background-position: center !important;
}

.banner-arrows {
  max-width: 1506px;
  margin: 0 auto;
  max-width: 1506px;
  margin: 0 auto;
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.banner-wrapper .slick-dots li {
  position: relative;
  list-style-type: none;
  background: var(--white);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.banner-arrows .slick-arrow {
  background: transparent;
  border: 0px;
  padding: 0 10px;
}
.banner-arrows .slick-arrow svg {
  width: 20px;
  height: 10px;
}

.banner-inner {
  position: relative;
}

.banner-arrows-wrp {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.banner-arrows-wrp .slick-arrow svg path {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.banner-arrows-wrp .slick-arrow:hover svg path {
  fill: var(--brown);
}

.banner-wrapper .slick-dots li.slick-active {
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.banner-wrapper .slick-dots li.slick-active {
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.banner-wrapper .slick-dots li {
  position: relative;
}

.banner-wrapper .slick-dots li.slick-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50%;

  /* Progress Ring */
  background: conic-gradient(
    #fff 0deg,
    #fff var(--progress, 0deg),
    #bfbfbf var(--progress, 0deg),
    #bfbfbf 360deg
  );

  /* Make it a ring */
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 3px),
    #000 calc(100% - 3px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 3px),
    #000 calc(100% - 3px)
  );

  pointer-events: none;
}

.banner-wrapper .slick-dots li.slick-active {
  background: transparent;
}

.banner-content * {
  color: var(--cream);
}

.banner-content .title {
  padding-bottom: 60px;
  position: relative;
}
.banner-content .title::after {
  content: "";
  position: absolute;
  bottom: 20px;
  width: 100%;
  max-width: 400px;
  height: 50px;
  background: url(../images/svgs/heading-decor.svg) no-repeat;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.banner-slide:after {
  position: absolute;
  content: "";
  background: #000;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-wrapper .slick-active .banner-content .animated {
  opacity: 0;
  animation: fadeInUp 1s ease-in-out forwards;
  -webkit-animation: fadeInUp 1s ease-in-out forwards;
}

.banner-wrapper .slick-active .banner-content .title {
  animation-delay: 0.5s;
}

.banner-wrapper .slick-active .banner-content .detail {
  animation-delay: 0.8s;
}

/* banner */

/* footer */

.footer {
  background: var(--dark);
  padding: 85px 0 0 0;
  position: relative;
}

.footer-contact ul li {
  list-style-type: none;
}

.footer-left {
  max-width: 235px;
  padding-top: 35px;
}

.footer-left ul li {
  color: var(--cream);
}

.footer-left .desc * {
  color: var(--cream);
}

.footer-left .block-title * {
  letter-spacing: 0.1em;
  font-size: 23px;
}

.footer-left ul {
  margin: 0 0 30px 0;
  padding: 0;
  list-style-type: none;
  gap: 10px;
}

.footer-left > *:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-left > *:last-child li a {
  color: var(--dark) !important;
  background: var(--body);
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.footer-left > *:last-child li a:hover {
  opacity: 0.7;
}

.footer-left ul li a {
  display: inline-flex;
  color: var(--cream);
}

.footer-left ul li a:hover {
  color: var(--chocalate);
}

.footer-left ul li a img {
  width: 28px;
  height: 28px;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 710px;
  margin: 0 auto;
}

.footer-center .footer-logo {
  max-width: 90px;
  width: 100%;
}

.footer-center .desc * {
  color: var(--cream);
  text-align: center;
  margin: 0;
}

.footer-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-inner {
  padding: 0 0 40px 0;
}

.footer-inner .block-title * {
  font-size: 23px;
  line-height: 120%;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
}

.footer-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 35px;
}

.footer-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.footer .footer-navigation ul li a {
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
}

.footer .current-menu-item .nav-link,
.footer .footer-navigation ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--wheat-80);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-bottom * {
  margin: 0;
  color: var(--cream);
}

/* footer */

/* map */
.map-main iframe {
  width: 100%;
  height: 890px;
}

/* map */

/* subscription */
.subscription-main {
  margin: -270px 0 -40px 0;
  position: relative;
}
.subscription-wrap {
  background: var(--primary);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.subscription-wrap::before {
  content: "";
  position: absolute;
  left: -250px;
  top: -306px;
  background: url(../images/svgs/design-vector.svg) no-repeat;
  max-width: 650px;
  width: 650px;
  height: 630px;
  z-index: -1;
}

.subscription-wrap::after {
  content: "";
  position: absolute;
  right: -395px;
  top: 18px;
  background: url(../images/svgs/design-vector.svg) no-repeat;
  max-width: 650px;
  width: 650px;
  height: 630px;
  z-index: -1;
}

.subscription-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.subscription-inner .title * {
  color: var(--cream);
  margin: 0;
}

.subscribe-form form .form-group {
  display: flex;
  gap: 20px;
  position: relative;
}
.subscribe-form form .form-group .form-control {
  width: 100%;
  padding: 13px 20px;
  border: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  background: transparent;
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 15px 220px 15px 50px;
}

.subscribe-form form .form-group .form-control::placeholder {
  color: var(--cream);
}

.subscribe-form form .form-group .btn {
  position: absolute;
  right: 0;
  height: 100%;
  color: var(--chocalate);
  letter-spacing: 0.1em;
}

.subscribe-form form .form-group .btn:hover {
  background: var(--dark) !important;
}

.subscribe-form form .form-group .form-control:focus {
  border-color: var(--black);
  box-shadow: unset;
}

.subscribe-form {
  max-width: 620px;
  width: 100%;
}

.subscribe-form .wpcf7-not-valid-tip {
  position: absolute;
}
.wpcf7 form .wpcf7-response-output {
  border: 0px;
  padding: 5px;
  margin: 35px 0 0 0;
}
.subscribe-form .wpcf7 form.valid .wpcf7-response-output,
.subscribe-form .wpcf7 form.accepted .wpcf7-response-output {
  color: #008000;
  background: var(--cream);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #dc3232;
  background: var(--cream);
}

/* subscription */

/* reach out */
.reach-out {
  padding: 150px 0 120px 0;
  overflow: hidden;
}

.reach-out-left .top-vector-icon {
  max-width: 110px;
}

.reach-out-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--dark);
  position: relative;
  height: 100%;
}

.reach-out-left-wrap {
  height: 100%;
  padding: 6px;
  border: 2px solid var(--primary);
}

.reach-out-left .title {
  margin: 20px 0 40px 0;
}

.reach-out-left .title * {
  color: var(--white);
  text-align: center;
}

.reach-out-form-wrapper {
  max-width: 990px;
  margin-left: auto;
}

.reach-out-form-wrapper .detail {
  max-width: 690px;
  color: var(--dark);
  margin-bottom: 50px;
}
.common-form .form-control {
  background: var(--light);
  padding: 12px 25px 12px 25px;
  border-color: #9c804e;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.common-form .form-control::placeholder {
  color: var(--wheat);
}

.common-form .form-control:focus {
  box-shadow: unset;
}

.common-form textarea.form-control {
  height: 100px;
}

/* reach out */

/* our amenities */

.our-amenities-main {
  padding: 178px 0 145px 0;
  background: var(--light);
  overflow: hidden;
}

.our-amenities-main .our-amenities-title {
  max-width: 645px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.our-amenities-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-amenities-block .our-amenities-icon {
  height: 170px;
  width: 170px;
  padding: 20px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 45px;
  background: var(--cream);
}

.our-amenities-icon * {
  width: 100%;
  height: 100%;
}

.our-amenities-icon-wrap {
  width: fit-content;
  padding: 4px;
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.our-amenities-inner .block-title * {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.about-amenities.common-design .detail {
  margin-top: 8px;
}

.our-amenities-inner .row > *:nth-child(even) .our-amenities-block {
  margin: 38px 0 0 0;
}
.our-amenities-inner .detail * {
  text-align: center;
  color: var(--dark);
}

.our-amenities-inner {
  margin: 35px 0 0 0;
}

.our-amenities-inner .block-title span {
  font-size: 28px;
  line-height: normal;
  display: inline-flex;
}
/* our amenities */

/* modern comfort */

.modern-comfort-awaits-inner {
  display: flex;
  gap: 40px;
}

.modern-comfort-image {
  width: 25%;
}

.modern-comfort-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modern-comfort-center-wrap {
  width: 48%;
  position: relative;
  top: 60px;
}

.modern-comfort-center {
  width: 100%;
  position: relative;
}

.modern-comfort-center::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.8;
  z-index: 1;
  height: 180px;
}

.modern-comfort-awaits-main {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.common-design {
  position: relative;
}

.common-design::before {
  content: "";
  position: absolute;
  background: url(../images/svgs/modern-comfort-vector.svg) no-repeat;
  height: 100%;
  width: 100%;
  max-width: 1150px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: -1;
  top: 0;
  background-position: center top;
  /* background-size: contain; */
}

.modern-comfort-awaits-title {
  max-width: 762px;
  margin: 0 auto 60px auto;
}

.modern-comfort-awaits-title .heading {
  margin-top: 10px;
}

.modern-comfort-awaits-title * {
  text-align: center;
}

.modern-comfort-awaits-title .detail * {
  color: var(--black-50);
}
.facilities-in-rooms {
  display: flex;
  position: absolute;
  z-index: 111;
  bottom: 50px;
  width: auto;
  left: 50px;
  right: 50px;
  gap: 20px;
  padding: 30px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.facilities-icon {
  height: 40px;
  width: 40px;
}
.facilities-icon * {
  width: 100%;
  height: 100%;
}

.modern-comfort-description {
  max-width: 565px;
  margin: 0 auto;
  padding: 105px 20px 0 20px;
  text-align: center;
}
/* modern comfort */

/* newly built comfort */

.newly-built-comfort-left {
  width: 36.5%;
}
.newly-built-comfort-left * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newly-built-comfort-right * {
  width: 100%;
}
.newly-built-comfort-right {
  width: 18%;
  margin: auto 0 0 0;
}

.newly-built-comfort-content {
  width: 50%;
  padding: 125px 160px 80px 100px;
}

.newly-built-comfort-content ul {
  padding-left: 20px;
}

.newly-built-comfort-content ul li {
  list-style-type: none;
  position: relative;
  text-transform: capitalize;
  color: var(--dark);
}
.newly-built-comfort-content ul li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 12px;
  background: var(--dark);
  width: 8px;
  height: 2px;
}
.newly-built-comfort-main-inner {
  display: flex;
  overflow: hidden;
}

.newly-built-comfort-main {
  position: relative;
  overflow: hidden;
}

.newly-built-comfort-main::after {
  content: "";
  position: absolute;
  background: url(../images/svgs/built-comfort-vector.svg) no-repeat;
  height: 100%;
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  z-index: -1;
  top: 0;
  right: 0;
}

.newly-built-comfort-content .btn-wrap {
  margin-top: 55px;
}
/* newly built comfort */

/* home brew */
.home-brew-left {
  padding: 80px 0 70px 0;
  max-width: 874px;
  overflow: hidden;
}

.home-brew-left .detail {
  max-width: 722px;
  padding-bottom: 70px;
}

.home-brew-image-wrap {
  display: flex;
  column-gap: 30px;
  row-gap: 20px;
  padding-bottom: 125px;
  position: relative;
}

.home-brew-image-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 60%;
  bottom: 0;
  height: 2px;
  background: #d6caad;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.home-brew-image-block {
  min-height: 462px;
}

.home-brew-image-block * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.home-brew-image-wrap > *:nth-child(even) {
  position: relative;
  top: 50px;
}
.home-brew-right-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45.3%;
}

.home-brew-right-image {
  padding: 800px 20px 70px 80px;
  background-size: cover !important;
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.home-brew-right-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.8;
  z-index: 0;
  height: 590px;
}
.home-brew-right-image * {
  color: var(--white);
}

.home-brew {
  position: relative;
  background: var(--light);
  overflow: hidden;
}

.home-brew-right-image-title * {
  max-width: 420px;
}

.home-brew-right-image-title {
  position: relative;
  z-index: 11;
}

/* home brew */

/* about page */

/* inner banner */

.breadcrumb-block .breadcrumb {
  margin: 0;
  justify-content: center;
}

.breadcrumb-block .breadcrumb-item {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
}

.breadcrumb-block .breadcrumb-item a {
  color: var(--white) !important;
}
.breadcrumb-block .breadcrumb-item a:hover {
  color: var(--chocalate) !important;
}
.breadcrumb-block .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
  content: "-";
}

.inner-bnr-section .inner-bnr-title {
  color: var(--white);
  margin: 0 0 10px;
}

.inner-bnr-section .inner-bnr-title * {
  color: var(--white);
  margin: 0;
}

.inner-bnr-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.inner-bnr-wrp {
  position: relative;
}

.inner-bnr-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 228px 0 116px 0;
  position: relative;
  z-index: 11;
}

.breadcrumb-block .breadcrumb-item.active {
  color: var(--white) !important;
}

.inner-bnr-main {
  position: relative;
}

.inner-bnr-main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  height: 100%;
  width: 100%;
  z-index: 0;
}
/* inner banner */

/* about amemities */
.about-amenities {
  padding: 170px 0 190px 0;
  overflow: hidden;
}

.about-amenities-content {
  max-width: 746px;
}

.about-amemities-item .our-amenities-icon {
  height: 75px;
  width: 75px;
}

.about-amemities-collection::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 2px;
  background: #efe8d7;
  left: 50%;
  opacity: 0.6;
  top: 43%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.about-amemities-collection::after {
  content: "";
  position: absolute;
  height: 65%;
  width: 2px;
  background: #efe8d7;
  left: 50%;
  opacity: 0.6;
  top: 43%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.about-amemities-collection {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 46px;
  column-gap: 20px;
  max-width: 665px;
  margin: 0 0 0 auto;
  position: relative;
}
.about-amemities-item {
  max-width: 270px;
  width: 48%;
}
.about-amemities-item .our-amenities-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.about-amemities-item .our-amenities-inner .detail *,
.about-amemities-item .block-title * {
  text-align: left;
  margin: 0;
}
/* about amemities */

/* nearby place */

.nearby-places-main .modern-comfort-awaits-title {
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.nearby-attraction-block {
  display: flex;
  flex-direction: column;
}

.nearby-attraction-block .nearby-attraction-image {
  height: 510px;
}

.nearby-attraction-block .nearby-attraction-image * {
  height: 510px;
  width: 100%;
  object-fit: cover;
}

.nearby-places-main .modern-comfort-awaits-inner .row > * {
  padding-inline: 20px;
}
.nearby-places-main .modern-comfort-awaits-inner .row {
  margin-inline: -20px;
  row-gap: 60px;
}

.about-place {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 30px 0 0 0;
}

.about-place .place-name * {
  font-size: 24px;
  line-height: 29px;
  margin: 0;
  letter-spacing: 0.07em;
  color: var(--primary);
  text-align: center;
}
.about-place .place-type * {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

/* nearby place */

/*gallery*/
.home-gallery-wrapper .filter-isotop > * {
  padding-left: 7px;
  padding-right: 7px;
  padding-bottom: 14px;
}

.home-gallery-wrapper .filter-isotop {
  margin-left: -7px;
  margin-right: -7px;
  row-gap: 15px;
  display: flex;
}

.home-gallery-wrapper .home-gallery-img * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gallery-layer {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: #9c804e;
  height: calc(100% - 34px);
  margin: 17px;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.home-gallery-layer-overly,
.home-gallery-overly {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.home-gallery-layer-overly svg,
.home-gallery-overly svg {
  height: 20px;
  width: 20px;
}

.home-gallery-layer-overly svg path,
.home-gallery-overly svg path {
  fill: var(--white);
}

.home-gallery-img-wrp,
.home-gallery-img-inner {
  position: relative;
  height: 100%;
  cursor: pointer;
}

.home-gallery-img-wrp:hover .home-gallery-layer,
.home-gallery-img-inner:hover .home-gallery-layer {
  opacity: 0.5;
}

.home-gallery-wrapper .filter-isotop-item {
  width: 25%;
}

.filter-isotop {
  display: flex;
}
/*home gallery*/

/*gallery page*/
.gallery-main {
  padding: 100px 0 130px 0;
}

.gallery-main .home-gallery-img {
  height: 285px;
}

.gallery-inner .filter-list {
  margin: 0 auto 80px auto;
  padding: 0 15px;
  overflow: hidden;
}
.gallery-inner .filter-list ul {
  display: flex;
  justify-content: center;
  row-gap: 20px;
  margin: 0;
  padding: 0;
  /* overflow-y: scroll; */
}

.filter-block .load-more-btn {
  margin: 100px auto 0 auto;
  width: fit-content;
}

.gallery-inner .filter-list ul li {
  list-style-type: none;
  margin: 0 30px;
  flex-shrink: 0;
}

.gallery-inner .filter-list ul li a {
  font-size: 24px;
  line-height: 28px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.gallery-inner .filter-list ul li a:hover,
.gallery-inner .filter-list ul li a.is-checked {
  font-weight: bold;
}

.fancybox__nav .f-button {
  position: relative;
  height: 40px;
  width: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.fancybox__nav .f-button svg {
  display: none;
}

.fancybox__nav .f-button.is-prev:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/arw-prev.svg") no-repeat center center;
  background-size: contain;
  height: 40px;
  width: 40px;
  transition: 0.4s;
}

.fancybox__nav .f-button.is-next:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/arw-right.svg") no-repeat center center;
  background-size: contain;
  height: 40px;
  width: 40px;
  transition: 0.4s;
}

.fancybox__nav .f-button:hover:not([disabled]):before {
  filter: brightness(1.2);
}

.fancybox__slide.has-image > .fancybox__content {
  max-width: 1078px;
}
.fancybox__backdrop {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.fancybox__nav {
  max-width: 1272px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}

.fancybox__infobar {
  display: none !important;
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  background: transparent !important;
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  border: 0px !important;
}
.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 0 !important;
}

.f-thumbs__slide__button {
  max-width: 112px;
  width: 100%;
  min-height: 112px;
  height: 100%;
}
/*gallery page*/

/* explore rooms  */
.room-tabs .nav-link.room-pill {
  width: 200px;
  height: 63px;
  border-radius: 50px;
  background: #bbb097;
  border: 0;
  padding: 0;
}

.explore-tabbing-wrapper .nav {
  column-gap: 115px;
}

.explore-tabbing-wrapper .nav .nav-item span {
  font-size: 30px;
  line-height: 36px;
  color: #bbb097;
}

.room-tabs .nav-link.room-pill.active {
  background: var(--primary);
}

.room-tabs .nav-item:has(.nav-link.active) span {
  color: var(--primary);
}

.room-tabs .nav-link:focus {
  box-shadow: none;
}

.explore-rooms {
  padding: 125px 0 95px 0;
  background: var(--light);
}

.explore-room-title {
  margin: 0 0 50px 0;
}

.explore-rooms .tab-content .modern-comfort-image {
  height: 600px;
}

.explore-rooms .modern-comfort-center-wrap {
  width: 100%;
  top: unset;
}

.facilities-flex {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  width: auto;
  max-width: 1470px;
  margin: 0 auto;
}

.facilities-flex .facilities-in-rooms {
  position: relative;
  border: 0px;
  width: 100%;
  border: 0px;
  top: unset;
  bottom: unset;
  left: unset;
  padding: 0;
  right: unset;
}

.facilities-flex .viewmore {
  color: var(--white) !important;
  text-decoration: underline;
  white-space: nowrap;
  position: relative;
  z-index: 11;
  text-transform: capitalize;
}

.facilities-flex .viewmore:hover {
  opacity: 0.8;
}

.rooms-description {
  max-width: 1390px;
  margin: 60px auto 0 auto;
}

.rooms-description h5 {
  margin: 0 0 8px 0;
}

.facilities-modal .modal-content {
  background: transparent;

  border: 0px !important;
}

.facilities-inner-img * {
  max-height: 150px;
}
.facilities-main-img-wrap .facilities-main-img {
  height: 700px;
}

.facilities-main-img *,
.facilities-inner-img * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.facilities-slider-main .slick-arrow.slick-next {
  position: absolute;
  right: -60px;
  top: 50%;
  background: url(../images/svgs/next-arrow.svg) no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0px;
  width: 40px;
  height: 40px;
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 10px 0 0 0;
}

.facilities-slider-main .slick-arrow.slick-next:hover,
.facilities-slider-main .slick-arrow.slick-prev:hover {
  opacity: 0.8;
}

.facilities-slider-main .slick-arrow.slick-prev {
  position: absolute;
  left: -60px;
  top: 50%;
  z-index: 1;
  background: url(../images/svgs/prev-arrow.svg) no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0px;
  width: 40px;
  height: 40px;
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 10px 0 0 0;
}

.facilities-modal {
  background: rgba(0, 0, 0, 0.6);
}

.modal-dialog-centered {
  margin: auto;
  padding: 0 10px;
  max-width: 1300px;
}

.facilities-slider-main .slick-arrow.slick-prev,
.facilities-slider-main .slick-arrow.slick-next {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.facilities-inner-slider {
  margin-top: 10px;
  max-width: 1030px;
  margin: 20px auto 0 auto;
}

.facilities-inner-slider .slick-list {
  margin: 0 -10px;
}

.facilities-inner-slider .slick-list .slick-slide {
  padding: 0 10px;
  height: 100px !important;
}

.facilities-main-slider,
.facilities-inner-slider {
  width: 100%;
}

.facilities-main-img-wrap,
.facilities-inner-img {
  width: 100%;
  height: 100%;
}

.facilities-inner-img {
  height: 80px !important;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.facilities-main-slider,
.facilities-inner-slider {
  opacity: 0;
}

.facilities-main-slider.slick-initialized.slick-slider,
.facilities-inner-slider.slick-initialized.slick-slider {
  opacity: 1;
}

.modal-dialog-centered {
  max-width: 1199px;
}

.btn-close {
  color: var(--primary);
  background-color: var(--primary);
  --bs-btn-close-color: var(--primary);
  opacity: 11;
}

.header-socials ul li a svg {
  width: 19px;
  height: 19px;
}
/* explore rooms  */
