:root {
  --font-heading: "quiche-sans", sans-serif;
  --font-subheading: "Inter_18pt-Regular", sans-serif;
  /* --font-body: "OfficeTimesSharp", sans-serif; */
  --font-body: "Inter_18pt-Light", sans-serif;
  --font-Grotesque-Medium: "Inter_18pt-Medium", sans-serif;
  --font-small-instagram: "OrticaLinear-Light", sans-serif;
  --font-heading-bold: "ClassicoBold", sans-serif;

  --color-1: 89, 83, 80;
  --color-2: 47, 41, 39;
  --color-3: 150, 136, 121;
  --color-4: 234, 229, 221;
  --color-text-faded: 173, 173, 173;
  --color-white-overimage: rgb(248, 246, 244);
  --color-sage: 101, 131, 107;
  --color-sage-rgb: 101, 131, 107;
  --color-sea: 171, 186, 207;
  --color-cream: 238, 233, 211;
  --color-olive: 128, 133, 81;
  --color-seafoam: 207, 209, 180;
  --color-ocean: 59, 80, 71;
  --color-zest: 200, 212, 165;
  --color-sunrise: 244, 157, 113;
  --color-sky: 128, 152, 175;
  --color-terracotta: 105, 54, 33;
  --color-sunset: 198, 80, 50;
  --color-clay: 224, 192, 150;
  --color-tan: 183, 156, 129;
  --color-black: 14, 15, 14;
  --color-dark: 14, 15, 14;
  --color-white: 255, 255, 255;
  --color-light-white: 247 246 244;

  --heading-font: "ClassicoRegular", sans-serif;
  --sub-heading-font: "Inter_18pt-Regular", sans-serif;
  --body-font: "OfficeTimesSharp", sans-serif;
  --button-font: "OrticaLinear-Light", sans-serif;

  --gap: calc(var(--title-size) * 0.3);
  --title-size: clamp(3.5em, 7.5vw, 4em);
  --section-padding: clamp(4em, 7.5vw, 7em);
  --grid-gap: calc(var(--gap) * 6);
}

h1,
h2 {
  text-transform: uppercase;
}

.custom-text-normal {
  text-transform: none !important;
}

.font-ClassicoBold {
  font-family: var(--font-heading-bold), sans-serif;
}

.section-title {
  /* font-size: 32px; */
  /* font-size: clamp(32px, 8vw, 46px); */
  font-size: calc(var(--title-size) * 0.60);
}

/* @media (min-width: 1200px) {
    .container {
        max-width: calc(var(--title-size) * 18) !important;
    }
}
@media (min-width: 1480px) {
    .container {
        max-width: calc(var(--title-size) * 18) !important;
    }
} */

.bg-color-1 {
  background-color: rgba(var(--color-1), 1);
}

.bg-color-2 {
  background-color: rgba(var(--color-2), 1);
}

.bg-color-3 {
  background-color: rgba(var(--color-3), 1);
}

.bg-color-4 {
  background-color: rgba(var(--color-4), 1);
}

.bg-color-sage {
  background-color: rgba(var(--color-sage), 1);
}

.bg-color-sea {
  background-color: rgba(var(--color-sea), 1);
}

.bg-color-cream {
  background-color: rgba(var(--color-cream), 1);
}

.bg-color-olive {
  background-color: rgba(var(--color-olive), 1);
}

.bg-color-seafoam {
  background-color: rgba(var(--color-seafoam), 1);
}

.bg-color-ocean {
  background-color: rgba(var(--color-ocean), 1);
}

.bg-color-zest {
  background-color: rgba(var(--color-zest), 1);
}

.bg-color-sunrise {
  background-color: rgba(var(--color-sunrise), 1);
}

.bg-color-sky {
  background-color: rgba(var(--color-sky), 1);
}

.bg-color-terracotta {
  background-color: rgba(var(--color-terracotta), 1);
}

.bg-color-sunset {
  background-color: rgba(var(--color-sunset), 1);
}

.bg-color-clay {
  background-color: rgba(var(--color-clay), 1);
}

.bg-color-tan {
  background-color: rgba(var(--color-tan), 1);
}

.bg-color-light-white {
  /* background-color: rgb(var(--color-light-white)); */
}

.bg-color-text-faded {
  background-color: rgb(var(--color-text-faded));
}

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

.color-1,
.color-1 h2 {
  color: rgba(var(--color-1), 1);
}

.color-2,
.color-2 h2 {
  color: rgba(var(--color-2), 1);
}

.color-3,
.color-3 h2 {
  color: rgba(var(--color-3), 1);
}

.color-4,
.color-4 h2 {
  color: rgba(var(--color-4), 1);
}

.color-text-faded,
.color-text-faded h2 {
  color: rgb(var(--color-text-faded));
}

.color-white-overimage,
.color-white-overimage h2 {
  color: var(--color-white-overimage);
}

.color-sage,
.color-sage h2,
.color-sage p {
  color: rgba(var(--color-sage), 1);
}

.color-sea,
.color-sea h2,
.color-sea p {
  color: rgba(var(--color-sea), 1);
}

.color-cream,
.color-cream h2,
.color-cream p {
  color: rgba(var(--color-cream), 1);
}

.color-olive,
.color-olive h2,
.color-olive p {
  color: rgba(var(--color-olive), 1);
}

.color-seafoam,
.color-seafoam h2,
.color-seafoam p {
  color: rgba(var(--color-seafoam), 1);
}

.color-ocean,
.color-ocean h2,
.color-ocean p {
  color: rgba(var(--color-ocean), 1);
}

.color-zest,
.color-zest h2,
.color-zest p {
  color: rgba(var(--color-zest), 1);
}

.color-sunrise,
.color-sunrise h2,
.color-sunrise p {
  color: rgba(var(--color-sunrise), 1);
}

.color-sky,
.color-sky h2,
.color-sky p {
  color: rgba(var(--color-sky), 1);
}

.color-terracotta,
.color-terracotta h2,
.color-terracotta p {
  color: rgba(var(--color-terracotta), 1);
}

.color-sunset,
.color-sunset h2,
.color-sunset p {
  color: rgba(var(--color-sunset), 1);
}

.color-clay,
.color-clay h2,
.color-clay p {
  color: rgba(var(--color-clay), 1);
}

.section-padding-large h2 {
  font-size: calc(var(--title-size) * 1);
}

.color-tan,
.color-tan h2,
.color-tan p {
  color: rgb(var(--color-tan));
}

.text-white h2,
.text-light h2,
.text-light p {
  color: rgb(var(--color-white));
}

.text-dark h2,
.text-black h2 {
  color: rgb(var(--color-dark));
}

.text-black p,
.text-dark p {
  color: rgba(var(--color-dark), 0.75);
}

.large-gap {
  gap: var(--gap) var(--grid-gap);
}

.d-grid.threeby4-grid {
  grid-template-columns: 2fr 3fr;
}

section h2 {
  /* font-size: 4rem; */
  font-size: calc(var(--title-size) * 0.8);
}

.container .item .content-overImage h2 {
  font-size: calc(var(--title-size) * 0.6);
}

.container .item .content-overImage p {
  font-size: clamp(15px, 1.2vw, 17px);
}

section h3 {
  font-size: calc(var(--title-size) * 0.5);
}

section h4 {
  font-size: calc(var(--title-size) * 0.4167);
}

section h5,
.banner-header h5 {
  font-size: calc(var(--title-size) * 0.208);
}

section.right-overflow-slider h3, 
.cta-section h3 {
  font-size: calc(var(--title-size) * 0.25);
  font-family: var(--font-Grotesque-Medium), 'sans-serif';
}

.cta-section h3, 
.cta-section p {
  color: inherit;
}

.booking .nav-pills {
  color: var(--color-dark);
}

.sub-heading {
  font-family: var(--font-subheading);
  font-size: calc(var(--title-size) * 0.217);
  line-height: 1.1;
  letter-spacing: 2px;
}

.banner-header.section-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.banner-header h5 {
  font-family: var(--font-subheading);
}

.section-subtitle {
  font-family: var(--font-subheading);
  font-size: calc(var(--title-size) * 0.208);
}

.section-subtitle span {
  /* color: var(--color-); */
}

.section-padding-large {
  padding: calc(var(--section-padding) * 1.4) 0;
}

.section-padding {
  padding: calc(var(--section-padding) * 1) 0;
}

body {
  font-size: clamp(16px, 1.2vw, 18px);
}

.font-small {
  font-size: clamp(14px, 1.2vw, 16px);
}

.font-large,
.footer-explore-list.font-large li a {
  font-size: clamp(18px, 1.8vw, 34px);
}

.footer-explore-list.font-large li a {
  line-height: 1.2;
}

p {
  font-size: clamp(16px, 1.2vw, 18px);
}

.butn-light.color-1 a {
  border-color: rgb(var(--color-3));
  color: rgb(var(--color-3));
}

.butn-light.color-1 a::after {
  background: rgb(var(--color-3));
}

.butn-light.color-1 a:hover span {
  color: rgb(var(--color-white));
}

.wp-admin.js .animate-box {
  opacity: 1;
}

body.no-scroll {
  overflow: hidden;
}

#brighton-menu-overlay .brighton-menu-close {
  display: none;
}

svg.brightonSvgLogo {
  fill: rgb(var(--color-white));
}

/* Full screen menu css */
/* Initial hidden state */
#brighton-menu-overlay,
#brighton-booking-overlay {
  position: fixed;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background-size: cover;
  text-align: left;
  background-color: rgb(244 244 242 / 1);
  padding: 175px 10% 40px;
  left: 0;
}

#brighton-booking-overlay {
  left: 50%;
  z-index: 40;
  background: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 175px 10% 30px;
}

#brighton-booking-overlay.bookNowOnly {
  width: 35%;
}

#brighton-booking-overlay.bookNowOnly {
  left: 65%;
}

/* When active, fade in */
#brighton-menu-overlay.active,
#brighton-booking-overlay.active {
  opacity: 1;
  visibility: visible;
}

#brighton-menu-overlay .cappa-menu>ul>li>a {
  font-size: 24px;
}

#brighton-menu-overlay .cappa-menu>ul>li {
  line-height: 1.3em;
}


.contact-form-section .wpcf7-form label, 
.ff-default .frm-fluent-form label{
    color: #222;
    font-weight: 600;
    width: 100%;
    line-height: 1.5;
}

.contact-form-section .wpcf7-form label span{
    width: 100%;
}

.contact-form-section .wpcf7-form label .form-text{
    font-weight: 400;
    color: #666;
}

.contact-form-section .wpcf7-form input[type="password"], 
.contact-form-section .wpcf7-form input[type="email"], 
.contact-form-section .wpcf7-form input[type="text"], 
.contact-form-section .wpcf7-form input[type="file"], 
.contact-form-section .wpcf7-form textarea,
.ff-default .frm-fluent-form input,
.ff-default .frm-fluent-form select,
.ff-default .frm-fluent-form .choices__inner {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 10px;
    width: 100%;
}

.ff-default .frm-fluent-form input[type="checkbox"],
.ff-default .frm-fluent-form input[type="radio"] {
  width: auto;
}

.ff-default .frm-fluent-form .choices[data-type*="select-multiple"] .choices__input { 
  padding-top: 8px;
  padding-bottom: 8px;
}

.ff-default .frm-fluent-form input,
.ff-default .frm-fluent-form select {
  background-color: transparent;
}


.contact-form-section .wpcf7-form .wpcf7-not-valid-tip{
    font-size: 15px;
}

.contactFooter .address {
  max-width: 250px;
  color: #222;
}

#brighton-booking-overlay .select2.select2-container {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

/* y-overflow x-overflow-hide hide-overflow */

/* Full screen menu css ends here */

/* header book now form */

.Booknow-tab.active {
  background-color: #222;
  color: #fff;
}

.Booknow-tab {
  cursor: pointer;
}

.book-now-wrap {
  display: block;
  right: 0;
  z-index: 101;
  position: fixed;
  width: 370px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  bottom: 0;
  top: 0;
  -webkit-box-shadow: 0 -20px 20px -5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 -20px 20px -5px rgba(0, 0, 0, 0.05);
  min-height: 300px;
  overflow: auto;
  padding: 0 40px;
  border: none;
  border-left: 1px solid #f4f4f4;
  z-index: 999;
}

.book-now-wrap.book-now-wrap-show {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.book-now-logo-wrap {
  position: relative;
  z-index: 1021;
}

.select2-container--open {
  z-index: 9999;
}

.book-now-wrap-menufull .input1_inner input {
  padding: 10.5px 40px 10px 10.5px;
}

.book-now-wrap-menufull .input1_inner:after {
  top: 14px;
}

.book-now-wrap-menufull .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 10.5px 40px 10px 10.5px;
}

.book-now-wrap-menufull .select1_inner:after {
  top: 17px;
}

.book-now-wrap-menufull .text_wrapper {
  margin-bottom: 15px;
}

.book-now-wrap-menufull .text_wrapper input[type="text"] {
  padding: 10.5px 40px 10px 10.5px;
  height: auto;
}

.book-now-open .cappa-wrap-menufull {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

#brighton-menu-overlay.active,
#brighton-booking-overlay.active {
  display: block;
  z-index: 9999;
}

#brighton-booking-overlay .btn-form1-submit {
  line-height: 42px;
}

.mc4wp-form-fields input[type="submit"] {
  border-radius: 0;
  /* font-size: 16px; */
  width: 100%;
  /* padding: 10px 23px; */
  /* line-height: 1.75em; */
}

.mc4wp-form-fields input[type="password"],
.mc4wp-form-fields input[type="email"],
.mc4wp-form-fields input[type="text"] {
  padding: 11.5px 20px 10px 10.5px;
  border-radius: 0;
  color: #fff;
}

.mc4wp-form-fields input::placeholder {
  color: #fff;
}

#brighton-booking-overlay .input1_inner input {
  padding: 11.5px 20px 10px 10.5px;
}

#brighton-booking-overlay .input1_inner::after,
#brighton-booking-overlay .select1_inner::after {
  right: 12px;
  top: 16px;
}

#brighton-booking-overlay .text_wrapper input[type="text"] {
  padding: 11.5px 20px 10px 10.5px;
  height: auto;
}

#brighton-booking-overlay .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 7px 20px 7px 10px;
}

.mc4wp-alert.mc4wp-success {
  font-size: 16px;
}

/* bok now widgeet ends here */

.cappa-wrap-burger-wrap .butn-light span {
  font-size: 16px;
}

a.close-sidebar {
  display: block;
  top: 0;
  position: absolute;
  z-index: 500;
  right: 0;
  left: auto;
  background: #222;
}

a.close-sidebar.brighton-menu-close {
  display: none;
  top: 0;
  position: absolute;
  z-index: 999;
  right: 0;
  left: auto;
  background: #222;
}

a.close-sidebar.brighton-menu-close.active {
  display: block;
}

.book-now-wrap .close-sidebar:after,
.book-now-wrap .close-sidebar:before {
  background: #fff;
}

a.close-sidebar.brighton-menu-close:after,
a.close-sidebar.brighton-menu-close:before {
  background: #fff;
}

.close {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  z-index: 500;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.close:before {
  top: 25%;
  transform: rotate(45deg);
}

.close:after {
  bottom: 25%;
  top: auto;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.close::before,
.close::after {
  width: 70%;
  height: 1px;
  background: var(--main_color_associate);
  content: "";
  display: block;
  position: absolute;
  left: 25%;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}

.cappa-wrap-menufull-show {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.cappa-header .cappa-logo .custom.MGallery {
  height: 90px;
  /* height: 124px; */
  width: auto;
}

.cappa-wrap-burger-wrap .butn-light a {
  font-size: 12px;
  letter-spacing: 2px;
}

.cappa-header.scrolled .cappa-wrap-burger-wrap .butn-light a {
  color: #aa8453;
  border: 1px solid rgba(170, 132, 83, 0.5);
}

.cappa-header.scrolled .cappa-wrap-burger-wrap .butn-light a:hover:after {
  background-color: #aa8453;
}

.cappa-header.scrolled .cappa-wrap-burger-wrap .butn-light a:hover span {
  color: #fff;
}

.cappa-header.scrolled .cappa-nav-toggle i,
.cappa-header.scrolled .cappa-nav-toggle i:before,
.cappa-header.scrolled .cappa-nav-toggle i:after {
  background: rgb(238, 233, 211) !important;
}

.cappa-header.scrolled .cappa-nav-toggle.active i {
  background: transparent !important;
}

.cappa-header.scrolled .cappa-logo.mGalleryLogo {
  position: absolute;
  top: -40px;
  background-color: #3b5047;
}

.cappa-nav-toggle {
  font-family: var(--font-Grotesque-Medium);
}

.menuHeader {
  font-family: "Gilda Display", serif;
  font-size: 22px;
  line-height: 1.35em;
  color: #aa8453;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 150px;
}

.contactFooter p a {
  color: #222;
}

.contactFooter p a:hover {
  color: #aa8453;
}

.contactFooter p span,
.contactFooter p i {
  color: #aa8453;
  /* font-size: 26px; */
}

/* Make the popup full height */
.mfp-iframe-scaler.popupBooking {
  height: 90vh;
  /* Use 90% of viewport height */
  margin: auto;
}

.coming-soon-img {
  -webkit-filter: brightness(90%);
}

a.img-zoom,
section.services .img a {
  display: block;
}

.header.slider-fade .butn-light a {
  padding: 11px 36px;
  font-size: 18px;
}

#collapsable {
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
}

#collapsable.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

#read-more a {
  position: relative;
}

#read-more a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #222;
  bottom: 1px;
  left: 0;
}

#brighton-menu-overlay,
#brighton-booking-overlay {
  /* overflow-x: scroll; */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.footer-column .mc4wp-form-fields .col-lg-8,
.footer-column .mc4wp-form-fields .col-lg-4 {
  width: 100%;
}

.footer-column .mc4wp-form-fields .col-lg-4.padding-custom {
  padding-top: 1rem;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.footer-column input[type="email"] {
  color: rgb(var(--color-white));
}

.pricing-card .more a.link-btn:visited {
  color: #aa8453;
}

.brighton-button.bg-color-sage:hover {
  background-color: rgba(var(--color-sage), 0.8);
}

.brighton-button.bg-color-sunset:hover {
  background-color: rgba(var(--color-sunset), 0.8);
}

.brighton-button.bg-transparent:hover {
  background-color: rgba(var(--color-ocean), 1) !important;
  border-color: rgba(var(--color-ocean), 1) !important;
}

.brighton-button.bg-color-white:hover {
  background-color: rgba(var(--color-white), 0.8) !important;
  border-color: rgba(var(--color-white), 0.8) !important;
}

.cappa-header.scrolled.awake .brighton-button.bg-transparent {
  background-color: rgba(var(--color-sage), 1) !important;
  border-color: rgba(var(--color-sage), 1) !important;
  color: rgb(var(--color-cream));
}

.brighton-button {
  display: inline-block;
  /* padding: 1.2em 3.5em; */
  padding: clamp(1em, 2vw, 1.2em) clamp(2.5em, 5vw, 3.5em);
  color: rgb(var(--color-white));
  text-decoration: none;
  /* font-size: 1rem; */
  font-size: clamp(0.8em, 1.2vw, 0.9em);
  overflow: hidden;
  position: relative;
  letter-spacing: 0.5;
  line-height: 1;
  transition: 0.5s ease;
  font-family: var(--font-Grotesque-Medium);
  /* text-transform: uppercase; */
}

.brighton-button.medium {
  /* padding: clamp(0.6em, 2vw, 0.7em) clamp(2em, 5vw, 3em); */
  padding: clamp(0.7em, 1.2vw, 0.9em) clamp(2em, 5vw, 3em);
}

.brighton-button:hover {
  color: rgb(var(--color-white));
}

.brighton-button span {
  display: inline-block;
  will-change: transform;
  transition: color 0.2s ease;
  /* display: flex;
  align-items: center;
  gap: 4px; */
}

.brighton-button:not(.rounded-pill) span {
  font-weight: 300;
  letter-spacing: 1px;
  /* text-decoration: underline; */
  position: relative;
  padding-bottom: 5px;
}

.brighton-button:not(.rounded-pill) span::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  bottom: 1px;
  left: 0;
  background-color: #0e0f0e;
}

section {
  position: relative;
}

.border-top-separator {
  top: 0;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(var(--gap) * 0.5);
}

.border-top-separator::before,
.border-top-separator::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  /* background-color: var(--color-cream); */
  background-color: rgb(var(--color-white));
}

.hero-video-form-wrapper .mc4wp-form .form-group {
  margin-left: 0em;
}

.mc4wp-form .form-group {
  display: flex;
  margin-left: 8em;
}

.mc4wp-form .form-group input {
  border: 1px solid rgb(var(--color-4), 1);
  margin-bottom: 0;
}

.mc4wp-form .form-group button {
  width: fit-content;
  background-color: rgb(var(--color-sunrise), 1);
  display: flex;
  align-items: center;
}

.upper-box {
  position: relative;
  /* padding: clamp(25px, 4vw, 60px) 0px 0; */
  padding: clamp(15px, 4vw, 25px) 0px 0;
  /* margin-bottom: clamp(40px, 3vw, 50px); */
  margin-bottom: clamp(10px, 3vw, 30px);
  -webkit-box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.05);
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
}

.footer-middle {
  padding: 30px 0px 30px;
  -webkit-box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.05);
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
}

.custodiansAck {
  padding-top: clamp(10px, 3vw, 20px);
  padding-bottom: clamp(10px, 3vw, 20px);
  -webkit-box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.05);
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
}

footer p {
  color: #adadad;
}

#mc4wp-form-1 .mc4wp-form-fields input[type="submit"] {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

#mc4wp-form-1 .mc4wp-form-fields input[type="email"] {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

footer .mc4wp-form-fields .form-check-label {
    color: rgb(var(--color-white));
  }

.banner-header {
  background-position: center;
}

/* hero video block */
.abstract-logo-img {
  width: 60px;
}

.brandmark-logo-img {
  width: 80px;
}

.brandmark-logo-img-footer {
  width: 80px;
}

.hero-video-section {
  width: 100%;
  height: 100vh;
  /* margin: 60vh auto 10px; */
  /* border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; */
  overflow: hidden;
  position: relative;
  opacity: 1;
  background: rgb(var(--color-black));
  display: flex;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  /* position: absolute; */
  /* width: 100%; */
  /* top: 75%;
  transform: translateY(-50%); */
  text-align: center;
  color: rgb(var(--color-white));
  z-index: 2;
  opacity: 1;
  align-content: end;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
  /* dark semi-transparent overlay */
}

.hero-content h1,
.banner-header h1,
.header-content-section h1 {
  font-size: calc(var(--title-size) * 0.8);
  letter-spacing: 3px;
}

.hero-content h1 {
  color: rgb(var(--color-white));
}

.hero-content h4 {
  color: rgb(var(--color-white));
}

.hero-content p {
  color: rgb(var(--color-white));
}

.hero-line {
  width: 1px;
  height: 50px;
  background-color: rgb(var(--color-white));
  margin: 20px auto 0;
  opacity: 1;
  transform: scaleY(1);
  transform-origin: top;
  transition: all 0.6s ease;
}

.hero-content.reveal .hero-line {
  opacity: 1;
  transform: scaleY(1);
}

/* hero slider block */
.text_wrapper input[type="text"] {
  height: 100%;
  margin-bottom: 0;
  padding: 0 15px;
  border-radius: 0;
  background-color: rgb(var(--color-white));
  height: 62px;
}

.text_wrapper input:focus {
  border-bottom-width: 1px;
  border-color: rgb(var(--color-white));
}

.booking-wrapper .form1 .col2 {
  width: 13%;
}

.booking-wrapper .form1 .col3 {
  width: 22%;
}

.owl-carousel .owl-item .abstract-logo img {
  display: inline;
  max-width: 300px;
}

/* hero image 50/50 section */

.header-image-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
  /* background: linear-gradient(135deg, var(--color-4) 0%, var(--color-cream) 45%); */
}

.header-image-row {
  height: 100vh;
  margin: 0;
}

.header-content-section {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  /* display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2; */
  padding: 0 10%;
}

.header-image-section {
  padding: 0;
  position: relative;
  /* overflow: hidden; */
  z-index: 4;
}

.header-main-image {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  transform-origin: center center;
}

.header-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 300px;
  /* background: white; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
  opacity: 0;
  z-index: 10;
}

.header-center-logo.text {
  max-width: 800px;
}

.header-center-logo.text h2 {
  text-align: center;
}

#headerContentSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center content by default */
  min-height: 80vh;
  /* padding: 2rem; */
  gap: 2rem;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.container-fluid .content-group-wrapper {
  padding-left: clamp(10px, 4vw, 70px);
  padding-right: clamp(10px, 4vw, 70px);
}

.container .content-group-wrapper {
  padding-left: clamp(10px, 4vw, 40px);
  padding-right: clamp(10px, 4vw, 40px);
}

.button-group {
  /* display: flex; */
  gap: 1rem;
  margin-top: auto;
}

.header-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);

  text-align: center;
  z-index: 20;
}

.header-image-container .header-scroll-indicator {
  color: rgb(var(--color-white));
}

.header-scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgb(var(--color-white));
  border-radius: 12px;
  margin: 0 auto 0.5rem;
  position: relative;
}

.header-image-container .header-scroll-mouse {
  border: 2px solid rgb(var(--color-white));
}

.header-scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgb(var(--color-white));
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-animation 2s infinite;
}

.header-image-container .header-scroll-wheel {
  background: rgb(var(--color-white));
}

/* Banner Header */
.banner-header .header-scroll-indicator {
  bottom: 8px;
}

/* Custom Navigation */
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: hsl(222.2 47.4% 11.2%);
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gridSlider1 .swiper-button-prev,
.gridSlider1 .swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  /* background: rgba(255, 255, 255, 0.9); */
  /* backdrop-filter: blur(8px); */
  border-radius: 50%;
  color: hsl(222.2 47.4% 11.2%);
  transition: all 0.2s ease;
  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
}

.gridSlider1 .swiper-button-prev svg,
.gridSlider1 .swiper-button-next svg {
  fill: transparent;
}

.swiper .swiper-button-next svg,
.swiper .swiper-button-prev svg {
  fill: transparent;
}

.gridSlider1.rooms1 .swiper-button-prev {
  left: -50px;
}

.gridSlider1.rooms1 .swiper-button-next {
  right: -50px;
}

.swiper.related-swiper .swiper-button-prev,
.swiper.related-swiper .swiper-button-next {
  bottom: 5px;
  top: unset;
  /* display: inline-block;
    margin-top: -14px; */
}

.swiper.related-swiper .swiper-button-next {
  left: 65px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgb(var(--color-white));
  transform: scale(1.05);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  left: 16px;
}

.swiper-button-next {
  right: 16px;
}

/* Custom Progress Bar Pagination */
.custom-pagination {
  position: relative;
  width: 200px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  border-radius: 1px;
  overflow: hidden;
}

.swiper.related-swiper .custom-pagination {
  margin: unset;
  float: right;
}

.progress-bar {
  height: 100%;
  background: hsl(222.2 47.4% 11.2%);
  border-radius: 1px;
  transition: width 0.3s ease;
  width: 0%;
}

.pagination-container {
  text-align: center;
  margin-top: 30px;
}

.swiper.related-swiper .pagination-container {
  text-align: right;
  margin-top: 0;
}

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

.parallax-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* taller for scroll effect */
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.parallax-section .container {
  position: relative;
  z-index: 1;
}

.offers-tabbed-section .d-grid {
  grid-template-columns: repeat(3, minmax(32.2%, 1fr));
}

.offers-tabbed-section .item {
  margin-bottom: 30px;
}

.btn.btn-filter,
.btn.btn-gifting {
  border: 1px solid rgb(var(--color-black));
}

.btn.btn-filter:hover,
.btn.btn-gifting:hover {
  border: 1px solid rgb(var(--color-black));
  background-color: rgb(var(--color-black));
  color: rgb(var(--color-white));
}

.btn.btn-filter.active {
  border: 1px solid rgb(var(--color-black));
  background-color: rgb(var(--color-black));
  color: rgb(var(--color-white));
}

.rooms1 .d-grid {
  grid-template-columns: repeat(3, minmax(31.7%, 1fr));
}

.rooms1 .d-grid h5 {
  font-size: 30px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 5px;
}

.rooms1 .d-grid .item img {
  -webkit-filter: none;
  -webkit-filter: brightness(100%);
}

.contact-map-section .rooms2:last-child {
  margin-bottom: 0;
}

.venue_menus-group {
  -webkit-columns: 2;
  columns: 2;
  -webkit-column-gap: 4.75rem;
  column-gap: 4.75rem;
  orphans: 1;
  widows: 1;
}

.venue_menus-section {
  /* padding-bottom: 5.375rem; */
  display: inline-block;
  width: 100%;
}

.font_title,
.venue_menus-item-price {
  /* color: #aa8453; */
}

.venue_menus-title {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 2rem; */
}

.venue_menus-title-text {
  flex: none;
}

.venue_menus-title:after {
  border-bottom: 0.0625rem dotted;
  content: "";
  display: block;
  margin-bottom: 0.375rem;
  margin-left: 1.25rem;
  width: 100%;
}

.venue_menus-items {
  /* margin-top: .5rem; */
  margin-bottom: 2rem;
  background-color: #eee9d3;
}

.venue_menus-item {
  display: inline-block;
  width: 100%;
  padding: 1.125rem 1rem;
  position: relative;
}

.venue_menus-item-content {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.venue_menus-item-info {
  margin-right: 2rem;
  max-width: 33.375rem;
}

.venue_menus-item-title>h4 {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.36842105;
  text-transform: none;
  display: inline;
}

.venue_menus-item-additional_prices,
.venue_menus-item-price {
  flex-wrap: nowrap;
  flex-direction: row;
}

.venue_menus-item-additional_prices,
.venue_menus-item-price {
  display: flex;
  justify-content: space-between;
}

.venue_menus-item-price-item {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  line-height: 1.36842105;
  margin-left: 1rem;
  text-align: right;
}

.venue_menus-item-price-description {
  font-size: 0.9375rem;
  line-height: 1.46666667;
}

.venue_menus-item:after {
  border-bottom: 0.0625rem solid currentColor;
  content: "";
  display: block;
  opacity: 0.1;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Section Cards */
.right-overflow-slider .section-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 0;
}

.right-overflow-slider .swiper-container-wrapper {
  position: relative;
  overflow: hidden;
}

.right-overflow-slider .sectionsSwiper {
  overflow: hidden;
  padding-left: 0;
}

.right-overflow-slider .sectionsSwiper .swiper-wrapper {
  padding-left: 15px;
  /* Bootstrap container padding */
}

/* .right-overflow-slider .swiper-slide {
    width: 350px !important;
    margin-right: 1.5rem;
} */

.right-overflow-slider .section-card {
  position: relative;
  /* border-radius: 1rem; */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.right-overflow-slider .swiper-slide:last-child {
  margin-right: 100px;
  /* Extra space to allow overflow beyond screen */
}

/* .right-overflow-slider .section-card:hover {
    transform: scale(1.05) translateY(-0.5rem);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
} */

.right-overflow-slider .swiper-slide-active .section-card {
  transform: scale(1.02);
}

.right-overflow-slider .card-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.right-overflow-slider .section-card:hover .card-background {
  transform: scale(1.1);
}

.right-overflow-slider .card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.right-overflow-slider .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: rgb(var(--color-white));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.right-overflow-slider .card-content h3 {
  text-transform: uppercase;
}

.right-overflow-slider .card-title {
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: 0px;
  margin-bottom: 0.5rem;
}

.right-overflow-slider .card-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.right-overflow-slider .card-subtitle i {
  transition: transform 0.3s ease;
}

.right-overflow-slider .section-card:hover .card-subtitle i {
  transform: translateX(0.25rem);
}

/* .right-overflow-slider .card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 185, 185, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
} */

/* .right-overflow-slider .section-card:hover .card-hover-overlay {
  opacity: 1;
} */

.right-overflow-slider .section-card:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-filter: brightness(70%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

/* Swiper Overrides */
.right-overflow-slider .sectionsSwiper {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.right-overflow-slider .sectionsSwiper .swiper-wrapper {
  align-items: stretch;
}

.accordion-box .block {
  border: 1px solid rgb(var(--color-sage));
}

.bg-img-bck {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
}

.ui-state-default.ui-state-active {
  background-color: rgba(var(--color-sage), 1);
  color: rgba(var(--color-white), 1);
}

.bookingMenuForm select {
  padding: 11.5px 20px 10px 10.5px;
}

.mfp-bg {
  z-index: 99999 !important;
}

.mfp-wrap {
  z-index: 99999 !important;
}

span.ui-state-default {
  width: 100%;
}

.footer-book-now-btn a {
  /* background-color: #3b5047; */
  color: #fff;
  font-family: var(--font-Grotesque-Medium);
  text-transform: uppercase;
  font-weight: 600;
}

.clearRoute {
  cursor: pointer;
}

.mfp-iframe-scaler iframe.mfp-iframe {
  background-color: rgba(var(--color-white), 1);
}

.mw-300 {
  max-width: 300px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper Navigation Buttons */
.right-overflow-slider .navigation-arrows #swiper-prev,
.right-overflow-slider .navigation-arrows #swiper-next {
  z-index: 10;
}

.frm-fluent-form.fluent_form_6 .ff-t-container {
  gap: 0;
  align-content: start;
  align-items: stretch;
}

.frm-fluent-form.fluent_form_6 .ff-el-group,
.frm-fluent-form.fluent_form_6 .ff-t-cell .ff_submit_btn_wrapper_custom button {
  margin-bottom: 0;
}

.frm-fluent-form.fluent_form_6 .ff-el-group,
.frm-fluent-form.fluent_form_6 .ff-el-group .ff-el-input--content,
.frm-fluent-form.fluent_form_6 .ff-el-group .ff-el-input--content input {
  height: 100%;
}

.frm-fluent-form.fluent_form_6 .ff-el-group .ff-el-input--content input::placeholder {
  color: #fff;
}

.frm-fluent-form.fluent_form_6 .ff-el-group .ff-el-input--content input {
  background-color: rgba(var(--color-white), 0.2);
  color: #fff;
}

.subscribe-box .fluentform {
  margin-left: 8em;
}

.customEmailField .error {
  position: absolute;
}

.frm-fluent-form.fluent_form_6 .ff-t-cell .ff_submit_btn_wrapper_custom button {
  width: 100%;
}

.frm-fluent-form.fluent_form_6 .small-font p {
  font-size: 14px;
}



@media (max-width: 991px) {
  .venue_menus-group {
    -webkit-columns: 1;
    columns: 1;
  }

  .mw-300 {
    max-width: 100%;
  }
}

@keyframes scroll-animation {
  0% {
    opacity: 1;
    top: 6px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

@media (min-width: 1440px) {
  .gx-xxl-6 {
    --bs-gutter-x: 3.5rem;
  }

  .gy-xxl-6 {
    --bs-gutter-y: 3.5rem;
  }
}

/* Custom scrollbar for desktop */
@media (min-width: 769px) {
  .right-overflow-slider .sectionsSwiper::-webkit-scrollbar {
    display: none;
  }

  .right-overflow-slider .sectionsSwiper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-width: 1399px) {

  #brighton-menu-overlay,
  #brighton-booking-overlay {
    padding: 175px 5% 40px;
  }
}

@media (max-width: 1024px) {

  #brighton-menu-overlay,
  #brighton-booking-overlay {
    padding: 175px 5% 40px;
  }

  #brighton-menu-overlay {
    width: 100%;
  }

  #brighton-menu-overlay .brighton-menu-close {
    display: block;
  }

  .menu-book-now-open #brighton-booking-overlay {
    display: none;
  }

  #brighton-booking-overlay.active {
    width: 100%;
    left: 0;
  }

  .offers-tabbed-section .d-grid {
    grid-template-columns: repeat(2, minmax(50%, 1fr));
  }
}

@media (max-width: 991px) {
  .content-group-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .rooms1 .d-grid {
    grid-template-columns: repeat(2, minmax(48%, 1fr));
  }
}

@media (max-width: 768px) {

  .gridSlider1.rooms1 .swiper-button-prev,
  .gridSlider1.rooms1 .swiper-button-next {
    bottom: 0;
    top: unset;
  }

  .gridSlider1.rooms1 .swiper-button-prev {
    left: 0;
  }

  .gridSlider1.rooms1 .swiper-button-next {
    right: 0;
  }

  .right-overflow-slider .navigation-arrows {
    right: 1rem;
  }

  .right-overflow-slider .section-cards {
    padding: 1rem 0;
  }

  /* .right-overflow-slider .swiper-slide {
        width: 280px !important;
    } */

  .right-overflow-slider .card-content {
    padding: 1.5rem;
  }

  .right-overflow-slider h3 {
    margin-bottom: 10px;
  }

  .right-overflow-slider .card-title {
    font-size: 1.4rem;
  }

  .right-overflow-slider .sectionsSwiper .swiper-wrapper {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .d-grid.large-image-content {
    --columns: 1;
  }

  .rooms1 .d-grid {
    grid-template-columns: repeat(1, minmax(100%, 1fr));
  }

  .rooms1 .item {
    margin-bottom: 20px;
  }

  .footer-column .mc4wp-form-fields .col-lg-4.padding-custom {
    padding-top: 0;
  }

  .book-now-wrap {
    width: 100%;
  }

  .butn-dark.fixed-bottom {
    position: fixed;
  }

  .section-title {
    /* font-size: 32px; */
    margin-bottom: 15px;
  }

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

  .section-padding h6 {
    margin-bottom: 12px;
  }

  p {
    /* font-size: 16px; */
    line-height: 1.55em;
    margin-bottom: 12px;
  }

  .footer-contact-phone {
    font-size: 20px;
  }

  .footer-contact-mail {
    font-size: 17px;
  }

  .mc4wp-form .form-group {
    margin-left: 0em;
  }

  .subscribeFooter {
    gap: 1em;
  }

  .d-grid.threeby4-grid {
    grid-template-columns: 1fr;
  }

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 25px;
    height: 25px;
  }

  .swiper.related-swiper .swiper-button-next {
    left: 50px;
  }

  .custom-pagination {
    width: 80px;
  }

  .offers-tabbed-section .d-grid {
    grid-template-columns: repeat(1, minmax(100%, 1fr));
  }
}

@media (max-width: 480px) {

  .cappa-header .cappa-logo .custom.MGallery {
    height: 50px;
  }

  .cappa-header.scrolled {
    padding: 7px 0;
  }

  .right-overflow-slider .swiper-slide {
    /* width: 250px !important; */
    /* margin-right: 1rem; */
  }

  .right-overflow-slider .section-card {
    /* height: 250px; */
  }

  .right-overflow-slider .navigation-arrows {
    display: none;
  }

  .right-overflow-slider .sectionsSwiper .swiper-wrapper {
    padding-left: 10px;
  }
}