﻿/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Playfair Display",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #0c0b09; /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.7); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #cda45e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #29261f; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #0c0b09; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #cda45e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29261f; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29261f; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #cda45e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.mW4uh3 {
  --background-color: #29261f;
  --surface-color: #464135;
}

.szDR7dceRn {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.iIGodCx {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.iIGodCx:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.iIGodCx:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.iIGodCx:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.iIGodCx:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(12, 11, 9, 0.61);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .J253IuyS {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .J253IuyS .nNGS8zG i {
  font-style: normal;
  color: var(--accent-color);
}

.header .J253IuyS .nNGS8zG i a,
.header .J253IuyS .nNGS8zG i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .J253IuyS .nNGS8zG i a,
  .header .J253IuyS .nNGS8zG i span {
    font-size: 13px;
  }
}

.header .J253IuyS .nNGS8zG i a {
  line-height: 0;
  transition: 0.3s;
}

.header .J253IuyS .nNGS8zG i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .J253IuyS .JKWfWcAnU ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--accent-color);
}

.header .J253IuyS .JKWfWcAnU ul a {
  color: var(--default-color);
}

.header .J253IuyS .JKWfWcAnU ul a:hover {
  color: var(--accent-color);
}

.header .J253IuyS .JKWfWcAnU ul li+li {
  padding-left: 10px;
}

.header .J253IuyS .JKWfWcAnU ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  content: "/";
}

.header .YDw7HaIP {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
  transition: 0.3s;
  border-bottom: 1px solid var(--background-color);
}

.header .U5KBnnX {
  line-height: 1;
}

.header .U5KBnnX img {
  max-height: 36px;
  margin-right: 8px;
}

.header .U5KBnnX h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .zyNb7Ug,
.header .zyNb7Ug:focus {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 24px;
  margin: 0 5px 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .zyNb7Ug:hover,
.header .zyNb7Ug:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

.scrolled .header .J253IuyS {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.scrolled .header .YDw7HaIP {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #0c0b09;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.Ulfj0qx07MY {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.Ulfj0qx07MY .VmnaDW7x {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.Ulfj0qx07MY .EJMcn1z .U5KBnnX {
  line-height: 1;
  margin-bottom: 25px;
}

.Ulfj0qx07MY .EJMcn1z .U5KBnnX img {
  max-height: 40px;
  margin-right: 6px;
}

.Ulfj0qx07MY .EJMcn1z .U5KBnnX span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.Ulfj0qx07MY .EJMcn1z p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.Ulfj0qx07MY .u1OOd4Tn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.Ulfj0qx07MY .u1OOd4Tn a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.Ulfj0qx07MY h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.Ulfj0qx07MY .qfEKVQnrRFm {
  margin-bottom: 30px;
}

.Ulfj0qx07MY .qfEKVQnrRFm ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Ulfj0qx07MY .qfEKVQnrRFm ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.Ulfj0qx07MY .qfEKVQnrRFm ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.Ulfj0qx07MY .qfEKVQnrRFm ul li:first-child {
  padding-top: 0;
}

.Ulfj0qx07MY .qfEKVQnrRFm ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.Ulfj0qx07MY .qfEKVQnrRFm ul a:hover {
  color: var(--accent-color);
}

.Ulfj0qx07MY .SOPawd51 p {
  margin-bottom: 5px;
}

.Ulfj0qx07MY .X8X49S9JXTR .hQ0rE5g {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.Ulfj0qx07MY .X8X49S9JXTR .hQ0rE5g:focus-within {
  border-color: var(--accent-color);
}

.Ulfj0qx07MY .X8X49S9JXTR .hQ0rE5g input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.Ulfj0qx07MY .X8X49S9JXTR .hQ0rE5g input[type=email]:focus-visible {
  outline: none;
}

.Ulfj0qx07MY .X8X49S9JXTR .hQ0rE5g input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.Ulfj0qx07MY .X8X49S9JXTR .hQ0rE5g input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.Ulfj0qx07MY .Bvnr4CTJ {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.Ulfj0qx07MY .Bvnr4CTJ p {
  margin-bottom: 0;
}

.Ulfj0qx07MY .Y07Lhx8p3m {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.dveQZVoyD {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.dveQZVoyD:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.dveQZVoyD h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dveQZVoyD .rG9QBD1f ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.dveQZVoyD .rG9QBD1f ol li+li {
  padding-left: 10px;
}

.dveQZVoyD .rG9QBD1f ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.qbIe4KpL {
  padding-bottom: 60px;
  position: relative;
}

.qbIe4KpL h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  position: relative;
}

.qbIe4KpL h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.qbIe4KpL p {
  color: var(--accent-color);
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.F5QHY2 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.F5QHY2 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.F5QHY2:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.F5QHY2 .container {
  position: relative;
  z-index: 3;
}

.F5QHY2 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.F5QHY2 h2 span {
  color: var(--accent-color);
}

.F5QHY2 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.F5QHY2 .ewnWHV {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

.F5QHY2 .ewnWHV:first-child {
  margin-right: 10px;
}

.F5QHY2 .ewnWHV:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 480px) {
  .F5QHY2 .ewnWHV {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .F5QHY2 h2 {
    font-size: 32px;
  }

  .F5QHY2 p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: url("../t6Ff7vD/M0ZN9HZqvgw.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 12%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .container {
  position: relative;
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .hS26cO8BGh {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .FEaij3K {
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: 0.3s;
}

.about .FEaij3K:hover {
  transform: scale(1.03);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.XMYb9B .PICtQIPArkt {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.XMYb9B .PICtQIPArkt span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.XMYb9B .PICtQIPArkt h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.XMYb9B .PICtQIPArkt h4 a {
  color: var(--heading-color);
}

.XMYb9B .PICtQIPArkt p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.XMYb9B .PICtQIPArkt:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.XMYb9B .PICtQIPArkt:hover span,
.XMYb9B .PICtQIPArkt:hover h4 a,
.XMYb9B .PICtQIPArkt:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu {
  background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
}

.menu .vhg04Yd91z {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu .vhg04Yd91z li {
  color: var(--default-color);
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all ease-in-out 0.3s;
  font-family: var(--heading-font);
}

.menu .vhg04Yd91z li:hover,
.menu .vhg04Yd91z li.filter-active {
  color: var(--accent-color);
}

.menu .vhg04Yd91z li:last-child {
  margin-right: 0;
}

.menu .DXe9e1KGVqC {
  margin-top: 50px;
  position: relative;
}

.menu .uNXnjX {
  width: 80px;
  border-radius: 50%;
  float: left;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu .zNIaD9 {
  margin-left: 95px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .zNIaD9::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .zNIaD9 a {
  color: var(--heading-color);
  background: var(--background-color);
  padding-right: 10px;
  position: relative;
  z-index: 3;
  font-weight: 700;
  transition: 0.3s;
}

.menu .zNIaD9 a:hover {
  color: var(--accent-color);
}

.menu .zNIaD9 span {
  background: var(--background-color);
  color: var(--accent-color);
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .tN7xoW {
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.IgBP5aY2e7B {
  overflow: hidden;
}

.IgBP5aY2e7B .fTnfFaIYCK8 {
  border: 0;
}

.IgBP5aY2e7B .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--heading-color);
  border-radius: 0;
  border-right: 2px solid var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.IgBP5aY2e7B .nav-link:hover {
  color: var(--accent-color);
}

.IgBP5aY2e7B .nav-link.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.IgBP5aY2e7B .F1B4hPK.active {
  animation: fadeIn 0.5s ease-out;
}

.IgBP5aY2e7B .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.IgBP5aY2e7B .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.IgBP5aY2e7B .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .IgBP5aY2e7B .nav-link {
    border: 0;
    padding: 15px;
  }

  .IgBP5aY2e7B .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.events .wGsG4p {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.events:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.events .qbIe4KpL h2 {
  color: #ffffff;
}

.events .container {
  position: relative;
  z-index: 3;
}

.events .x6Zm383EI h3 {
  font-weight: 700;
  font-size: 30px;
}

.events .x6Zm383EI .Fucbc40gf {
  font-size: 26px;
  font-family: var(--default-font);
  font-weight: 700;
  margin-bottom: 15px;
}

.events .x6Zm383EI .Fucbc40gf span {
  border-bottom: 2px solid var(--accent-color);
}

.events .x6Zm383EI ul {
  list-style: none;
  padding: 0;
}

.events .x6Zm383EI ul li {
  padding-bottom: 10px;
}

.events .x6Zm383EI ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.events .x6Zm383EI p:last-child {
  margin-bottom: 0;
}

.events .swiper-wrapper {
  height: auto;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .dlMfNRxV0b {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.events .swiper-pagination .xvfr49P {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.NJX4PH .KJ6PnGmk7 {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.NJX4PH .VhMCIF {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.NJX4PH .php-email-form {
  padding: 30px;
}

@media (max-width: 575px) {
  .NJX4PH .php-email-form {
    padding: 20px;
  }
}

.NJX4PH .php-email-form input[type=text],
.NJX4PH .php-email-form input[type=email],
.NJX4PH .php-email-form input[type=number],
.NJX4PH .php-email-form input[type=date],
.NJX4PH .php-email-form input[type=time],
.NJX4PH .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.NJX4PH .php-email-form input[type=text]:focus,
.NJX4PH .php-email-form input[type=email]:focus,
.NJX4PH .php-email-form input[type=number]:focus,
.NJX4PH .php-email-form input[type=date]:focus,
.NJX4PH .php-email-form input[type=time]:focus,
.NJX4PH .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.NJX4PH .php-email-form input[type=text]::placeholder,
.NJX4PH .php-email-form input[type=email]::placeholder,
.NJX4PH .php-email-form input[type=number]::placeholder,
.NJX4PH .php-email-form input[type=date]::placeholder,
.NJX4PH .php-email-form input[type=time]::placeholder,
.NJX4PH .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.NJX4PH .php-email-form button[type=submit] {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  background: transparent;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 50px;
}

.NJX4PH .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.vFoSiRC .IkNqlgz,
.vFoSiRC .EbHtya2 {
  overflow: hidden;
}

.vFoSiRC .V6qTkY9rJ {
  box-sizing: content-box;
  min-height: 320px;
}

.vFoSiRC .V6qTkY9rJ .iBYkhSFjM {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.vFoSiRC .V6qTkY9rJ h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.vFoSiRC .V6qTkY9rJ h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.vFoSiRC .V6qTkY9rJ .LRCzgB7wk,
.vFoSiRC .V6qTkY9rJ .gDHiiIGI {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.vFoSiRC .V6qTkY9rJ .LRCzgB7wk {
  display: inline-block;
  left: -5px;
  position: relative;
}

.vFoSiRC .V6qTkY9rJ .gDHiiIGI {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.vFoSiRC .V6qTkY9rJ p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.vFoSiRC .swiper-wrapper {
  height: auto;
}

.vFoSiRC .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.vFoSiRC .swiper-pagination .dlMfNRxV0b {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.vFoSiRC .swiper-pagination .xvfr49P {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .v8qtzuDgQr {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .v8qtzuDgQr img {
  transition: all ease-in-out 0.4s;
}

.gallery .v8qtzuDgQr:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.vycR9ak {
  --default-color: #ffffff;
  --contrast-color: #ffffff;
}

.vycR9ak .oLTZ0yqIhS {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vycR9ak .oLTZ0yqIhS .K5ZJuu {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.vycR9ak .oLTZ0yqIhS .EwxVxM {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.vycR9ak .oLTZ0yqIhS .EwxVxM h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.vycR9ak .oLTZ0yqIhS .EwxVxM span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.vycR9ak .oLTZ0yqIhS .HemRj6dA {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.vycR9ak .oLTZ0yqIhS .HemRj6dA a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 10px;
  display: inline-block;
}

.vycR9ak .oLTZ0yqIhS .HemRj6dA a:hover {
  color: var(--accent-color);
}

.vycR9ak .oLTZ0yqIhS .HemRj6dA i {
  font-size: 18px;
  margin: 0 2px;
}

.vycR9ak .oLTZ0yqIhS:hover .K5ZJuu {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.vycR9ak .oLTZ0yqIhS:hover .EwxVxM {
  bottom: 60px;
  transition: bottom 0.4s;
}

.vycR9ak .oLTZ0yqIhS:hover .HemRj6dA {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.WiEis5 {
  background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.WiEis5 .ww4geU4+.ww4geU4 {
  margin-top: 40px;
}

.WiEis5 .ww4geU4 i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.WiEis5 .ww4geU4 h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.WiEis5 .ww4geU4 p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.WiEis5 .php-email-form {
  height: 100%;
}

.WiEis5 .php-email-form input[type=text],
.WiEis5 .php-email-form input[type=email],
.WiEis5 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.WiEis5 .php-email-form input[type=text]:focus,
.WiEis5 .php-email-form input[type=email]:focus,
.WiEis5 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.WiEis5 .php-email-form input[type=text]::placeholder,
.WiEis5 .php-email-form input[type=email]::placeholder,
.WiEis5 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.WiEis5 .php-email-form button[type=submit] {
  color: var(--default-color);
  background: none;
  border: 2px solid var(--accent-color);
  padding: 8px 36px;
  transition: 0.4s;
  border-radius: 50px;
}

.WiEis5 .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.dgVsOmhYr {
  /* Add your styles here */
}
/* Timeline Systems brand extension */
:root {
  --background-color: #080b09;
  --default-color: rgba(255, 250, 240, 0.78);
  --heading-color: #fffaf0;
  --accent-color: #d2aa63;
  --surface-color: #12352d;
  --contrast-color: #080b09;
  --nav-color: #fffaf0;
  --nav-hover-color: #d2aa63;
  --nav-mobile-background-color: #102d26;
  --nav-dropdown-background-color: #102d26;
  --nav-dropdown-color: #fffaf0;
  --nav-dropdown-hover-color: #d2aa63;
}

.mW4uh3 { --background-color: #102d26; --surface-color: #17463a; }
.szDR7dceRn { --background-color: #060706; --default-color: #fffaf0; --heading-color: #fffaf0; --surface-color: #13281f; --contrast-color: #fffaf0; }
body { background: #080b09; }
.header .J253IuyS { background: #06110e; border-bottom: 1px solid rgba(210, 170, 99, .16); }
.header .YDw7HaIP { background: rgba(8, 11, 9, .96); }
.header .U5KBnnX .WuF64f6 span { color: var(--accent-color); font-style: italic; }
.header .J253IuyS .nNGS8zG i a, .header .J253IuyS .nNGS8zG i span { color: #fffaf0; }
.RRpcqSLzmh { color: #d2aa63; font-size: 13px; letter-spacing: .02em; }
.q4ZgJB, .rw7Lhd8Jd3d { color: var(--accent-color); font-family: var(--nav-font); font-size: 12px; font-weight: 700; letter-spacing: .16em; margin: 0 0 14px; text-transform: uppercase; }
.F5QHY2:before { background: color-mix(in srgb, #06110e, transparent 22%); }
.F5QHY2 h2 { max-width: 820px; }
.F5QHY2 .N2NXsEneI2d { border-color: rgba(255, 250, 240, .55); color: #fffaf0; }
.F5QHY2 .N2NXsEneI2d:hover { border-color: var(--accent-color); color: var(--accent-color); }
.eMp5wp { max-width: 240px; padding: 26px 22px; border: 1px solid rgba(210, 170, 99, .7); background: rgba(16, 45, 38, .9); box-shadow: 0 16px 50px rgba(0, 0, 0, .35); text-align: center; }
.eMp5wp i { display: block; color: var(--accent-color); font-size: 44px; line-height: 1; }
.eMp5wp strong { display: block; color: #fffaf0; font-family: var(--heading-font); font-size: 30px; margin: 9px 0 5px; }
.eMp5wp span { display: block; color: rgba(255, 250, 240, .76); font-size: 13px; line-height: 1.55; }
.qbIe4KpL h2:after { background: color-mix(in srgb, var(--accent-color), transparent 55%); }
.PICtQIPArkt { border-bottom-color: rgba(210, 170, 99, .38); }
.PICtQIPArkt:hover { background: #12352d; }
.PICtQIPArkt span { color: var(--accent-color); }
.menu .zNIaD9 a, .menu .zNIaD9 span { color: #fffaf0; }
.menu .zNIaD9 span { color: var(--accent-color); }
.IgBP5aY2e7B .fTnfFaIYCK8 .nav-link.active { color: var(--accent-color); border-color: var(--accent-color); }
.IgBP5aY2e7B .fTnfFaIYCK8 .nav-link:hover { color: var(--accent-color); }
.ryD4XOq { color: var(--accent-color); font-weight: 600; }
.ryD4XOq i { margin-left: 5px; }
.ZdjmsvJnSx { display: inline-flex; align-items: center; justify-content: center; min-width: 43px; min-height: 28px; padding: 3px 9px; border: 1px solid var(--accent-color); color: var(--accent-color); font-family: var(--nav-font); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.APng4bv5Jr { background: #0b211b; }
.Vzt9mok { align-items: center; background: linear-gradient(120deg, #12352d, #4d1827); border: 1px solid rgba(210, 170, 99, .45); display: flex; gap: 36px; justify-content: space-between; padding: 38px; }
.Vzt9mok h2 { font-size: 31px; margin: 12px 0; }
.Vzt9mok p { margin: 0; max-width: 830px; }
.PHUkEbVdd { height: 100%; background: rgba(255, 250, 240, .04); border: 1px solid rgba(210, 170, 99, .2); padding: 24px; }
.PHUkEbVdd i { color: var(--accent-color); font-size: 28px; }
.PHUkEbVdd h3 { font-size: 21px; margin: 14px 0 7px; }
.PHUkEbVdd p { margin: 0; font-size: 14px; }
.SlCifbjDxs { background: #0a0d0b; }
.SlCifbjDxs .dkAzbNE { background: transparent; border-color: rgba(210, 170, 99, .22); }
.SlCifbjDxs .GfTo25o { background: transparent; box-shadow: none; color: #fffaf0; font-family: var(--heading-font); font-size: 19px; padding: 22px 8px; }
.SlCifbjDxs .GfTo25o:not(.collapsed) { color: var(--accent-color); }
.SlCifbjDxs .GfTo25o::after { filter: invert(80%) sepia(30%) saturate(620%) hue-rotate(358deg); }
.SlCifbjDxs .Wja9VfqSA { color: var(--default-color); line-height: 1.7; padding: 0 8px 22px; }
.Cc086un:before { background-color: rgba(4, 14, 11, .66); }
.Xr1Pehc7c h2, .IgBP5aY2e7B .content h2 { font-size: 37px; }
.lead { color: #fffaf0; font-size: 19px; line-height: 1.65; }
.atm4kds { background: #4d1827; border: 1px solid rgba(210, 170, 99, .45); padding: 34px; }
.atm4kds i { color: var(--accent-color); font-size: 37px; }
.atm4kds h3 { margin: 16px 0 9px; }
.atm4kds p { margin: 0; }
.G1R566J { min-height: 252px; position: relative; }
.G1R566J > i { color: var(--accent-color); display: block; font-size: 33px; margin-bottom: 16px; }
.G1R566J span { display: none; }
.aRHCkYyrS5 { border: 1px solid rgba(210, 170, 99, .38); }
.pHmfouKso { padding-top: 0; }
.ospQQy { background: #080b09; }
.qTAbGa5lB { background: #0f201a; border-top: 3px solid var(--accent-color); margin: 0 auto; max-width: 920px; padding: 44px 50px; }
.qTAbGa5lB h2 { color: var(--accent-color); font-size: 25px; margin: 33px 0 13px; }
.qTAbGa5lB h2:first-of-type { margin-top: 18px; }
.qTAbGa5lB p { line-height: 1.8; }
.nIhi6KGOmP { color: var(--accent-color); font-family: var(--nav-font); font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.Ulfj0qx07MY { background: #050806; }
.Ulfj0qx07MY .VmnaDW7x { border-top-color: rgba(210, 170, 99, .22); }
.Ulfj0qx07MY .EJMcn1z .U5KBnnX span { color: #fffaf0; }
.IG77wfg70c4 { background: rgba(77, 24, 39, .45); border-left: 2px solid var(--accent-color); padding: 22px; }
.IG77wfg70c4 h4 { margin-top: 0; }
.IG77wfg70c4 p { font-size: 14px; line-height: 1.6; }
.cookie-banner { align-items: center; background: #102d26; border: 1px solid rgba(210, 170, 99, .62); bottom: 18px; box-shadow: 0 16px 55px rgba(0, 0, 0, .45); display: none; gap: 25px; left: 50%; max-width: 1000px; padding: 19px 22px; position: fixed; transform: translateX(-50%); width: calc(100% - 32px); z-index: 9999; }
.cookie-banner.is-visible { display: flex; }
.cookie-banner strong { color: #fffaf0; display: block; font-family: var(--heading-font); font-size: 18px; margin-bottom: 3px; }
.cookie-banner p { font-size: 13px; line-height: 1.5; margin: 0; }
.JTcM28MH { display: flex; flex: 0 0 auto; gap: 10px; }
.JTcM28MH button { cursor: pointer; font-family: var(--nav-font); font-size: 13px; font-weight: 600; padding: 10px 14px; }
.Y5DLnZdIzA { background: var(--accent-color); border: 1px solid var(--accent-color); color: #080b09; }
.kbk4oakotB { background: transparent; border: 1px solid rgba(255, 250, 240, .55); color: #fffaf0; }
@media (max-width: 991px) {
  .Vzt9mok { align-items: flex-start; flex-direction: column; gap: 22px; padding: 28px; }
  .IG77wfg70c4 { margin-top: 8px; }
}
@media (max-width: 575px) {
  .eMp5wp { padding: 19px; }
  .Xr1Pehc7c h2, .IgBP5aY2e7B .content h2 { font-size: 30px; }
  .Vzt9mok { padding: 24px; }
  .Vzt9mok h2 { font-size: 27px; }
  .qTAbGa5lB { padding: 31px 23px; }
  .qTAbGa5lB h2 { font-size: 23px; }
  .cookie-banner { align-items: flex-start; bottom: 10px; flex-direction: column; gap: 14px; padding: 17px; }
  .JTcM28MH { width: 100%; }
  .JTcM28MH button { flex: 1; }
}


