@font-face {
  font-family: "Amsterdamone Ez 12 L";
  src: url('../fonts/AmsterdamOne-eZ12l.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Trajansanspro;
  src: url('../fonts/TrajanSansPro-Regular.ttf') format("truetype"), url('../fonts/TrajanSansPro-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Trajansanspro;
  src: url('../fonts/TrajanSansPro-Light.ttf') format("truetype"), url('../fonts/TrajanSansPro-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Trajansanspro;
  src: url('../fonts/TrajanSansPro-Bold.ttf') format("truetype"), url('../fonts/TrajanSansPro-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Trajansanspro;
  src: url('../fonts/TrajanSansPro-Black.ttf') format("truetype"), url('../fonts/TrajanSansPro-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Trajansanspro;
  src: url('../fonts/TrajanSansPro-Semibold.ttf') format("truetype"), url('../fonts/TrajanSansPro-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Trajansanspro;
  src: url('../fonts/TrajanSansPro-ExtraLight.ttf') format("truetype"), url('../fonts/TrajanSansPro-ExtraLight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-b: #f2e3c5;
  --paragraphs: #080708b8;
  --heading: #080708;
  --accent-a: #f06449;
  --background-a: #fff4d6;
  --border: #3e2e1c33;
  --headinglight: #08070838;
  --dark: #2f7d6d;
  --light: #fbf2e5;
  --shadow: #b0a59680;
  --accent-b: #308d87;
  --_font---font-family: Amsterdamone;
  --_font---font-family-2: "Trajan Sans Pro";
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--background-b);
  color: var(--paragraphs);
  flex-direction: column;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 170%;
  display: flex;
}

.body-bg {
  background-image: url('../images/glow_top_red.svg'), url('../images/glow_top_green.svg');
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
}

.background-light{
    background-color: var(--background-a);
}
.background-dark{
   background-color: var(--background-b);
}

h1 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Forum, sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 88%;
}

h2 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Forum, sans-serif;
  font-size: 98px;
  font-weight: 400;
  line-height: 90%;
}

h3 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Forum, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 93%;
}

h4 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Forum, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 96%;
}

h5 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Forum, sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 100%;
}

h6 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 14px;
  font-family: Forum, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 104%;
}

p {
  margin-bottom: 30px;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 36px;
}

li {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 7px;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  color: var(--heading);
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 2px solid var(--accent-a);
  color: var(--heading);
  margin-bottom: 30px;
  margin-left: 18px;
  padding: 0 24px;
  font-size: 20px;
  font-style: italic;
  line-height: 170%;
}

figure {
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

figcaption {
  background-color: var(--background-a);
  text-align: center;
  margin-top: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  line-height: 160%;
}

.link {
  border-bottom: 2px solid var(--accent-a);
  color: var(--heading);
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.rich-text-block {
  text-align: left;
  width: 100%;
  max-width: 720px;
}

.rich-text-block a {
  border-bottom: 2px solid var(--accent-a);
  color: var(--heading);
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  color: var(--accent-a);
}

.section-hero {
  opacity: 1;
  background-color: #0000;
  background-image: url('../images/glow-banner.svg');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.shape {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--background-b);
  border-top-left-radius: 50vw;
  border-top-right-radius: 50vw;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 50%;
  height: 180vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  top: auto;
  bottom: auto;
  overflow: hidden;
}

.image-shape {
  text-align: left;
  /* background-image: url('../images/image6.jpg'); */
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-top-left-radius: 50vw;
  border-top-right-radius: 50vw;
  position: absolute;
  inset: 0%;
}

.navbar {
  background-color: #0000;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: Marcellus, sans-serif;
  display: flex;
}

.grid-navbar {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 10px 28px;
}

.block-navbar {
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  padding: 10px 22px;
  display: flex;
}

.logo {
  height: 85px;
}

.menu-button {
  border: 1px solid #0000;
  border-radius: 80px;
  padding: 14px 22px;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.menu-button:hover {
  border-color: var(--border);
}

.menu-button.w--open {
  background-color: #0000;
}

.text-menu {
  color: var(--heading);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
}

.line-horizontal {
  background-color: var(--headinglight);
  color: var(--headinglight);
  flex: 1;
  min-width: 24px;
  height: 1px;
}

.line-horizontal.light {
  background-color: #f3e8d84d;
}

.circle {
  border: 1px solid var(--headinglight);
  border-radius: 100%;
  flex: none;
  width: 7px;
  height: 7px;
}

.circle.light {
  border-color: #f3e8d84d;
}

.nav-line {
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 28px;
  margin-right: 28px;
  display: flex;
}

.grid-hero {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  -webkit-text-stroke-color: var(--headinglight);
  flex: 1;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  min-height: 80vh;
  padding-bottom: 40px;
  padding-left: 50px;
  padding-right: 50px;
}

.grid-hero.min-h-45vh {
  min-height: 45vh;
}

.block-hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 920px;
  display: flex;
}

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

.line-vertical {
  background-color: var(--headinglight);
  flex: 1;
  width: 1px;
  min-height: 40px;
}

.circle-large {
  border: 1px solid var(--headinglight);
  border-radius: 100%;
  flex: none;
  width: 13px;
  height: 13px;
  margin-bottom: 5px;
}

.circle-large.top-margin {
  margin-top: 5px;
  margin-bottom: 0;
}

.circle-large.center {
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 5px;
}

.heading-hero {
  letter-spacing: -3px;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 120%;
}

.heading-hero.margin {
  margin-bottom: 0;
}

.paragraph-hero {
  color: var(--heading);
  max-width: 570px;
  margin-bottom: 40px;
  font-family: Marcellus, sans-serif;
}

.paragraph-hero.margin {
  margin-bottom: 0;
}

.nav-button {
  color: var(--heading);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 80px;
  padding: 14px 22px;
  font-family: Marcellus, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.nav-button:hover {
  border-color: var(--border);
}

.button {
  border: 2px solid var(--dark);
  background-color: var(--dark);
  color: var(--background-a);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border-radius: 80px;
  margin-top: auto;
  padding: 15px 40px;
  font-family: Marcellus, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  transition: color .4s cubic-bezier(.25, .46, .45, .94), background-color .4s cubic-bezier(.25, .46, .45, .94), border-color .4s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  border-color: var(--accent-a);
  background-color: var(--accent-a);
  color: var(--light);
}

.button.small {
  padding: 13px 21px;
}

.button.mt-5 {
  margin-top: 40px;
}

.nav-menu {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #dfd5c5e6;
  position: fixed;
  inset: 0%;
}

.grid-menu {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 50px;
  padding-bottom: 50px;
}

.menu-links {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--heading);
  text-align: center;
  text-transform: uppercase;
  padding: 10px 20px;
  font-family: Marcellus, sans-serif;
  font-size: 4vw;
  line-height: 100%;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.nav-link.w--current {
  color: var(--heading);
}

.nav-link.w--current:hover {
  color: var(--accent-a);
}

.menu-button-close {
  border: 1px solid #0000;
  border-radius: 80px;
  padding: 14px 22px;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
  position: absolute;
  inset: 32px 28px auto auto;
}

.menu-button-close:hover {
  border-color: var(--border);
}

.menu-button-close.w--open {
  background-color: #0000;
}

.overflow-link {
  overflow: hidden;
}

.section {
  flex-direction: column;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 130px;
  display: flex;
}

.section.background {
  background-color: var(--background-a);
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.section11 {
  padding-bottom: 0;
}

.content {
  text-align: center;
  border: 1px #0000000d;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.content.slim {
  text-align: left;
  max-width: 820px;
  display: block;
}

.grid {
  grid-column-gap: 80px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
}

.block {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.paragraph {
  color: var(--heading);
  -webkit-text-stroke-color: var(--heading);
  max-width: 700px;
  margin-bottom: 38px;
  font-family: Marcellus, sans-serif;
}

.paragraph.max-w-430 {
  color: var(--heading);
  max-width: 430px;
  font-family: Marcellus, sans-serif;
}

.paragraph.margin {
  margin-bottom: 0;
}

.heading {
  text-align: left;
  letter-spacing: -3px;
  max-width: 120%;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 120%;
}

.heading.center-text {
  text-align: center;
  line-height: 100%;
}

.subtitle {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  display: flex;
}

.line-subtitle {
  color: var(--dark);
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-subtitle {
  color: var(--dark);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: capitalize;
  margin-left: 14px;
  margin-right: 14px;
  padding-bottom: 10px;
  font-family: "Amsterdamone Ez 12 L", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}

.text-subtitle.light {
  color: var(--background-a);
}

.button-accent {
  border: 2px solid var(--dark);
  background-color: var(--dark);
  color: var(--background-a);
  text-align: left;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border-radius: 80px;
  padding: 15px 40px;
  font-family: Marcellus, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);
}

.button-accent:hover {
  border: 2px solid var(--dark);
  background-color: var(--background-a);
  color: var(--heading);
}

.button-accent.margin {
  text-align: center;
  margin-top: 16px;
}

.button-accent.small {
  padding: 15px 23px;
}

.button-accent.button {
  border-width: 2px;
  border-color: var(--accent-a);
  background-color: var(--accent-a);
}

.button-accent.button:hover {
  border-color: var(--background-a);
  background-color: var(--background-a);
  color: var(--heading);
}

.grid-features {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
}

.feature {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-feature {
  color: var(--heading);
  max-width: 320px;
  margin-bottom: 0;
  font-family: Marcellus, sans-serif;
  font-size: 18px;
  line-height: 170%;
}

.paragraph-feature.para {
  max-width: 380px;
  margin-bottom: 20px;
}

.number {
  height: 150px;
  margin-bottom: -20px;
}

.heading-feature {
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 40px;
}

.line-space {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 130px;
  margin-bottom: 130px;
  display: flex;
}

.line-space.margin {
  margin-bottom: 0;
}

.line-space.footer {
  margin-top: 0;
  margin-bottom: 0;
}

.line-space.short {
  margin-top: 80px;
  margin-bottom: 80px;
}

.grid-modular {
  grid-column-gap: 10px;
  grid-row-gap: 22px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.block-modular {
  z-index: 50;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.block-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 780px;
  margin-top: 0;
  display: flex;
}

.block-center.feature-menu {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-block {
  width: 100%;
  position: relative;
}

.image {
  object-fit: cover;
  /* background-image: url('../images/image8.jpg'); */
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.image.shadow {
  box-shadow: 0 80px 120px 0 var(--shadow);
}

.image-block-modular {
  justify-content: flex-end;
  align-items: flex-start;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.image-modular {
  object-fit: cover;
  border-radius: 10px;
  width: 60%;
  height: 100%;
}

.slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 72px;
  display: flex;
  overflow: hidden;
}

.mask {
  width: 100%;
  max-width: 950px;
  padding-left: 70px;
  padding-right: 70px;
  overflow: visible;
}

.slide {
  margin-right: -44px;
  position: static;
}

.slide.slidelast {
  margin-right: -14px;
}

.image-slide {
  z-index: 1;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  height: 500px;
  display: block;
  position: relative;
}

.slide-nav {
  display: none;
}

.right-arrow, .left-arrow {
  width: 40%;
}

.collection-list-wrapper {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

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

.link-image-blog {
  border-radius: 10px;
  width: 100%;
  transition: box-shadow .5s cubic-bezier(.25, .46, .45, .94);
  overflow: hidden;
}

.link-image-blog:hover {
  box-shadow: 0 60px 80px -10px var(--shadow);
}

.image-blog {
  object-fit: cover;
  width: 100%;
  height: 230px;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.image-blog:hover {
  transform: scale(1.07);
}

.block-blog {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.date-blog {
  color: var(--paragraphs);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 130%;
}

.link-heading-blog {
  margin-top: 12px;
  text-decoration: none;
}

.heading-blog {
  margin-bottom: 0;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 30px;
  line-height: 120%;
}

.heading-blog.text-left {
  padding-bottom: 10px;
}

.paragraph-summary {
  color: var(--heading);
  text-align: center;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Marcellus, sans-serif;
  font-size: 16px;
  line-height: 170%;
}

.arrow {
  width: 24px;
  height: 24px;
  display: block;
}

.link-arrow {
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 0 var(--accent-a);
  border-radius: 50%;
  margin-top: 34px;
  padding: 10px;
  transition: box-shadow .4s cubic-bezier(.25, .46, .45, .94), border-color .4s cubic-bezier(.25, .46, .45, .94);
}

.link-arrow:hover {
  border-color: var(--accent-a);
  box-shadow: inset 0 0 0 3px var(--accent-a);
}

.empty-state {
  text-align: center;
  background-color: #bf344e26;
  border-radius: 10px;
  padding: 14px;
}

.text-empty {
  color: var(--accent-a);
}

.section-footer {
  background-image: url('../images/glow_red_new.svg'), url('../images/glow_green_new.svg');
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  padding-top: 0;
  display: flex;
}

.text-sub-footer {
  color: var(--paragraphs);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  max-width: 1200px;
  font-family: Marcellus, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
}

.link-sub-footer {
  color: var(--heading);
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.link-sub-footer:hover {
  color: var(--accent-a);
}

.newsletter {
  background-color: var(--dark);
  border-radius: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 85px 10%;
  display: flex;
}

.grid-footer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.block-footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.heading-footer {
  margin-bottom: 16px;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 22px;
}

.link-footer {
  color: var(--paragraphs);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Marcellus, sans-serif;
  font-size: 12px;
  line-height: 130%;
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.link-footer:hover {
  color: var(--heading);
}

.heading-newsletter {
  max-width: 780px;
}

.heading-newsletter.light {
  color: var(--background-a);
  font-family: Trajansanspro, Times New Roman, sans-serif;
  line-height: 120%;
}

.form-block-newsletter {
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  margin-bottom: 0;
}

.form-newsletter {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1.7fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-field {
  background-color: var(--background-b);
  color: var(--heading);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border: 1px solid #0000;
  border-radius: 80px;
  height: 60px;
  margin-bottom: 0;
  padding: 14px 28px;
  font-size: 12px;
  line-height: 130%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-color: var(--border);
}

.text-field::placeholder {
  color: var(--paragraphs);
}

.error-message {
  background-color: #bf344e26;
  border-radius: 10px;
  margin-top: 20px;
  padding: 15px 25px;
}

.error-message.dark {
  background-color: #af1431;
}

.text-error {
  color: var(--accent-a);
  font-size: 16px;
  line-height: 170%;
}

.text-error.dark {
  color: var(--light);
}

.success-message {
  background-color: #29938d26;
  border-radius: 10px;
  padding: 15px 25px;
}

.success-message.dark {
  background-color: #f3e8d81a;
}

.text-success {
  color: var(--accent-b);
  font-size: 16px;
  line-height: 170%;
}

.text-success.dark {
  color: var(--light);
}

.nav-block-button {
  grid-column-gap: 6px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-absolute {
  z-index: 10;
  width: 60%;
  height: 60%;
  position: absolute;
  inset: auto auto -6% -10%;
}

.image-modular-absolute {
  z-index: 10;
  width: 60%;
  position: absolute;
  inset: auto auto -15% -6%;
}

.section-top {
  background-image: url('../images/glow_top_red.svg'), url('../images/glow_top_green.svg');
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-first {
  flex-direction: column;
  align-items: center;
  padding-bottom: 130px;
  display: flex;
}

.section-first.section {
  background-color: var(--background-a);
}

.section-first.section.backgroundb {
  background-color: var(--background-b);
}

.section-first.backgrounda {
  background-color: var(--background-a);
}

.menu {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 115px;
  display: flex;
  position: relative;
}

.image-menu {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.heading-menu {
  background-color: var(--background-b);
  border-radius: 50%;
  margin-bottom: 0;
  padding: 30px 70px;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  line-height: 100%;
  position: absolute;
  bottom: -90px;
}

.grid-menu-item {
  z-index: 10;
  background-color: var(--background-a);
  text-align: left;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr .5fr;
  place-items: start;
  width: 100%;
  padding: 24px 30px;
  position: relative;
}

.grid-menu-item.transparent,
.grid-menu-item:nth-child(odd) {
  background-color: #0000;
}

.menu-paragraph {
  margin-bottom: 0;
  font-family: Marcellus, sans-serif;
  font-size: 16px;
  line-height: 170%;
}

.menu-item {
  color: var(--heading);
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-weight: 600;
}

.menu-price {
  color: var(--heading);
  text-align: right;
  margin-left: auto;
  font-family: Marcellus, sans-serif;
  font-weight: 500;
}

.sub-footer {
  background-color: var(--light);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 22px 30px;
  display: flex;
  overflow: hidden;
}

.form-block {
  background-color: var(--background-a);
  border-radius: 10px;
  width: 100%;
  max-width: 790px;
  margin-top: 60px;
  margin-bottom: 0;
  padding: 40px;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: .25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-full {
  background-image: url('../images/glow_top_red.svg'), url('../images/glow_top_green.svg');
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.text-subtitle-contact {
  color: var(--heading);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 130%;
}

.contact {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 390px;
  display: flex;
}

.heading-contact {
  text-transform: capitalize;
  margin-bottom: 0;
  font-family: Marcellus, sans-serif;
}

.grid-contact {
  grid-column-gap: 0px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: center;
}

.image-block-careers {
  width: 100%;
  margin-top: 75px;
  margin-bottom: 130px;
  position: relative;
}

.image-careers-absolute {
  z-index: 10;
  width: 35%;
  height: 80%;
  position: absolute;
  inset: auto auto -6% -5%;
}

.grid-about {
  grid-column-gap: 0px;
  grid-row-gap: 90px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.block-about {
  z-index: 50;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 12%;
  display: flex;
  position: relative;
}

.collection-list-wrapper-blog {
  width: 100%;
}

.collection-list-blog {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  grid-template: "Area"
                 "."
                 "."
                 / 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-item-blog {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--background-a);
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-blog-page {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 360px;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.image-blog-page:hover {
  transform: scale(1.07);
}

.block-blog-page {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 45px 12%;
  display: flex;
}

.date-blog-large {
  color: var(--paragraphs);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
}

.image-blog-main {
  box-shadow: 0 80px 120px 0 var(--shadow);
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 65px;
}

.template-info {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  background-color: var(--background-a);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 14px;
  padding: 24px 30px;
  display: flex;
}

.button-light {
  background-color: var(--heading);
  color: var(--light);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border-radius: 80px;
  padding: 22px 42px;
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);
}

.button-light:hover {
  background-color: var(--dark);
}

.button-light.small {
  padding: 15px 23px;
}

.grid-licensing {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
}

.licensing {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 250px;
}

.forum {
  margin-bottom: 0;
}

.poppins {
  text-transform: none;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.utility-page-wrap {
  background-image: url('../images/glow_top_red.svg'), url('../images/glow_top_green.svg');
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  flex: 1;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  justify-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 40px;
  padding-left: 10%;
  padding-right: 10%;
  display: grid;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 500px;
  display: flex;
}

.field-label {
  color: var(--paragraphs);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 130%;
}

.block-404 {
  width: 100%;
  max-width: 460px;
}

.hero-heading-right {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.image-2 {
  flex: 0 auto;
}

.flex-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-text-section {
  flex: 0;
  width: 100%;
  font-size: 19px;
}

.div-block {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-block {
  flex: 0 auto;
  font-family: Bitter, serif;
}

.image-3 {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
}

.flex-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  padding: 10px 10px 0;
}

.image-4, .image-5, .image-6, .image-7 {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
  padding-bottom: 0;
}

.heading-2, .heading-3 {
  text-align: center;
  margin-bottom: 0;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 30px;
}

.heading-4 {
  text-align: center;
  margin-bottom: auto;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 30px;
}

.text-block-2, .text-block-3, .text-block-4, .text-block-5 {
  text-align: center;
}

.heading-5 {
  text-align: center;
  margin-bottom: 0;
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-size: 30px;
}

.container-2 {
  padding-top: 100px;
}

.columns {
  text-align: center;
  flex: 1;
  align-self: center;
}

.column {
  grid-column-gap: 29px;
  grid-row-gap: 29px;
  flex-flow: row;
  justify-content: flex-end;
  padding-right: 0;
  display: flex;
}

.image-8, .image-9, .image-10 {
  border-radius: 10px;
}

.section-2 {
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
  display: block;
}

.heading-6 {
  flex-flow: wrap-reverse;
  justify-content: flex-start;
  display: block;
  overflow: visible;
}

.grid-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template: "Area"
  / 1fr 1.75fr;
}

.grid-3 {
  grid-template: "Area"
  / 1fr 1fr 1fr;
}

.image-11, .image-12, .image-13 {
  border-radius: 10px;
}

.link-block {
  background-image: var(--bg-image);
  background-position: 0 0;
  background-size: cover;
  border-radius: 10px;
  height: 320px;
  line-height: 218%;
  transition: transform .7s;
}

.link-block:hover {
  background-image: url('../images/instagram-icon.svg'), linear-gradient(#00000080, #00000080), var(--bg-image);
  background-position: 50%, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
  background-size: 30px 30px, auto, cover;
}

.link2 {
  background-image: url('../images/img_14img_9.avif');
  background-position: 0 0;
  background-size: cover;
  border-radius: 10px;
  line-height: 250%;
}

.link2:hover {
  background-image: url('../images/instagram-icon.svg'), linear-gradient(#00000080, #00000080), url('../images/img_14img_9.avif');
  background-position: 50%, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
  background-size: 30px 30px, auto, cover;
}

.link-block-copy {
  background-image: url('../images/img_16img_3.avif');
  background-position: 0 0;
  background-size: cover;
  border-radius: 10px;
}

.link3 {
  background-image: url('../images/img_11img_4.avif');
  background-position: 0 0;
  background-size: cover;
  border-radius: 10px;
  line-height: 250%;
}

.link3:hover {
  background-image: url('../images/instagram-icon.svg'), linear-gradient(#00000080, #00000080), url('../images/img_11img_4.avif');
  background-position: 50%, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
  background-size: 30px 30px, auto, cover;
}

.list, ul {
  order: 0;
  align-self: auto;
  margin-bottom: 20px;
  padding-left: 0;
  list-style-type: none;
}

.list-item, li {
  border: 1px #00000038;
  border-radius: 30px;
  margin-bottom: 10px;
  padding: 0 20px 0 10px;
}

.container-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--light);
  color: var(--background-a);
  border-radius: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: block;
}

.grid-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff4d6;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-areas: "Area Area-2";
  margin-bottom: 40px;
}

.text-span {
  color: var(--dark);
  font-family: Trajansanspro, Times New Roman, sans-serif;
  font-weight: 600;
}

.text-block-6 {
  text-align: left;
  text-decoration: none;
}

.image-14 {
  border-radius: 10px;
}

.image-14.image-blog {
  object-position: 50% 100%;
  border-radius: 10px 0 0 10px;
  height: 350px;
  overflow: hidden;
}

.div-block-2 {
  z-index: 1;
  padding: 0 40px;
  position: relative;
}

.image-15 {
  z-index: -1;
  opacity: .2;
  height: 170px;
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
}

.slider-2 {
  background-color: #ddd0;
}

.right-arrow-2, .left-arrow-2 {
  display: none;
}

.slide-nav-2 {
  text-align: center;
  -webkit-text-stroke-width: 0px;
  text-overflow: clip;
  overflow-wrap: normal;
  margin-bottom: 0;
  padding-top: 20px;
  font-family: Marcellus, sans-serif;
  text-decoration: none;
}

.block-quote {
  color: var(--heading);
  margin-left: 0;
  font-size: 18px;
  font-style: normal;
}

.section-3 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.div-block-3 {
  border-radius: 10px 0 0 10px;
  display: flex;
  overflow: hidden;
}

.section-4 {
  margin-top: 100px;
  padding-left: 0;
  padding-right: 0;
}

.div-block-4 {
  margin-top: 0;
  margin-left: 0;
}

.div-block-5 {
  text-align: left;
}

.columns-3 {
  padding-top: 10px;
}

.column-2, .column-3, .column-4, .column-5 {
  padding-bottom: 0;
}

.slidertext {
  z-index: 10;
  color: var(--background-a);
  margin-bottom: 0;
  padding-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 3%;
  right: auto;
}

.heading-7 {
  color: var(--background-a);
}

.heading-7.pb10 {
  margin-bottom: 10px;
}

.div-block-6, .div-block-7, .div-block-8, .div-block-9 {
  position: relative;
}

.text-left {
  color: var(--heading);
  text-align: left;
}

.section-5, .tabs {
  display: block;
}

.section-6 {
  flex-flow: column;
  flex: 0 auto;
  order: 0;
  display: flex;
}

.button-2 {
  color: #fff4d6;
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  background-color: #2f7d6d;
  border: 2px solid #2f7d6d;
  border-radius: 80px;
  padding: 15px 40px;
  font-family: Marcellus, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  transition: color .4s cubic-bezier(.25, .46, .45, .94), background-color .4s cubic-bezier(.25, .46, .45, .94), border-color .4s cubic-bezier(.25, .46, .45, .94);
}

.button-2:hover {
  color: #fbf2e5;
  background-color: #f06449;
  border-color: #f06449;
}

.div-block-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.secondary-button.button {
  background-color: var(--background-b);
  color: var(--dark);
}

.secondary-button.button:hover,
.secondary-button.secondary-button-alt.button:hover {
  background-color: var(--accent-a);
  color: var(--background-a);
}

.secondary-button.secondary-button-alt.button{
  background-color: var(--background-a);
}

.div-block-11 {
  display: flex;
}

.image-slide-img {
  background-position: 50%;
  background-size: cover;
}

.image-slide-img.image-slide {
  background-image: linear-gradient(0deg, #000, #fff0 50%), url('../images/image8.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}


.image-slide-1 {
  background-image: url('../images/image8.jpg');
  background-position: 50%;
  background-size: cover;
}

.image-slide-1.image-slide {
  background-image: linear-gradient(0deg, #000, #fff0 50%), url('../images/image8.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.image-slide-2 {
  background-image: url('../images/image1.jpg');
  background-position: 0 0;
  background-size: cover;
}

.image-slide-2.image-slide {
  background-image: linear-gradient(0deg, #000, #fff0 50%), url('../images/image1.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.image-slide-3 {
  background-image: url('../images/image4.jpg');
  background-position: 0 0;
  background-size: cover;
}

.image-slide-3.image-slide {
  background-image: linear-gradient(0deg, #000, #fff0 50%), url('../images/image4.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.image-slide-4 {
  background-image: url('../images/image6.jpg');
  background-position: 0 0;
  background-size: cover;
}

.image-slide-4.image-slide {
  background-image: linear-gradient(0deg, #000, #fff0 50%), url('../images/image6.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.paragraph-2, .paragraph-3, .paragraph-4, .paragraph-5 {
  text-transform: capitalize;
}

.paragraph-6 {
  color: var(--background-a);
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 98px;
  }

  h2 {
    font-size: 70px;
  }

  h3 {
    font-size: 50px;
  }

  h4 {
    font-size: 38px;
  }

  h5 {
    font-size: 30px;
  }

  h6 {
    font-size: 24px;
  }

  .shape {
    height: 140vh;
  }

  .grid-navbar {
    padding: 15px 18px;
  }

  .nav-line {
    margin-left: 18px;
    margin-right: 18px;
  }

  .grid-hero {
    padding-left: 35px;
    padding-right: 35px;
  }

  .heading-hero {
    font-size: 70px;
  }

  .grid-menu {
    grid-row-gap: 30px;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .nav-link {
    font-size: 7vw;
  }

  .menu-button-close {
    top: 27px;
    right: 18px;
  }

  .section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .grid {
    grid-column-gap: 50px;
  }

  .paragraph-feature.para {
    margin-bottom: 0;
  }

  .heading-feature {
    font-size: 30px;
  }

  .line-space {
    margin-top: 110px;
    margin-bottom: 110px;
  }

  .grid-modular {
    grid-row-gap: 12px;
  }

  .image-block-modular {
    padding-right: 30px;
  }

  .slider {
    height: 55vw;
    margin-top: 60px;
  }

  .slide {
    margin-right: -4vw;
  }

  .image-blog {
    height: 170px;
  }

  .block-blog {
    padding-left: 2%;
    padding-right: 2%;
  }

  .section-first {
    padding-bottom: 110px;
  }

  .heading-menu {
    bottom: -80px;
  }

  .image-block-careers {
    margin-top: 50px;
    margin-bottom: 110px;
  }

  .grid-about {
    grid-row-gap: 70px;
  }

  .collection-list-blog {
    grid-row-gap: 50px;
  }

  .image-blog-page {
    min-height: 320px;
  }

  .image-blog-main {
    margin-bottom: 55px;
  }

  .utility-page-form {
    max-width: 460px;
  }

  .container {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .grid-3 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .list {
    margin-top: 20px;
  }

  .div-block-2 {
    padding-bottom: 60px;
  }

  .slider-2 {
    height: 100%;
  }

  .slide-nav-2 {
    margin-bottom: -20px;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .column-3, .column-4, .column-5 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 50px;
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 32px;
  }

  h5 {
    font-size: 26px;
  }

  h6 {
    font-size: 22px;
  }

  .section-hero {
    background-image: url('../images/glow-banner.svg');
    background-position: 0 0;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
  }

  .image-shape {
    text-align: left;
    background-position: 50%;
    flex: 0 auto;
    align-self: auto;
    text-decoration: none;
    inset: 0%;
  }

  .grid-navbar {
    padding: 13px 10px;
  }

  .brand {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo {
    height: 70px;
  }

  .menu-button {
    padding-left: 18px;
    padding-right: 18px;
  }

  .text-menu {
    font-size: 10px;
  }

  .nav-line {
    margin-left: 10px;
    margin-right: 10px;
  }

  .grid-hero {
    grid-row-gap: 30px;
    padding-bottom: 30px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .heading-hero {
    font-size: 40px;
  }

  .nav-button {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 10px;
  }

  .nav-link {
    font-size: 9vw;
  }

  .menu-button-close {
    padding-left: 18px;
    padding-right: 18px;
    top: 22px;
    right: 10px;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .content {
    padding-left: 38px;
    padding-right: 38px;
  }

  .grid {
    grid-column-gap: 0px;
    grid-row-gap: 90px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .block {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading {
    text-align: left;
    font-size: 50px;
  }

  .heading.center-text {
    line-height: 120%;
  }

  .grid-features {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .line-space {
    margin-top: 90px;
    margin-bottom: 90px;
  }

  .grid-modular {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .image-block-modular {
    margin-top: 90px;
    padding-right: 0;
  }

  .image-modular {
    width: 100%;
  }

  .mask {
    padding-left: 38px;
    padding-right: 38px;
  }

  .collection-list {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .image-blog {
    height: 50vw;
  }

  .block-blog {
    margin-top: 34px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading-blog {
    font-size: 24px;
    line-height: 120%;
  }

  .link-arrow {
    margin-top: 24px;
  }

  .newsletter {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .grid-footer {
    margin-top: 90px;
    margin-bottom: 90px;
    display: block;
  }

  .block-footer {
    padding-top: 20px;
  }

  .form-newsletter {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .image-absolute {
    height: 90%;
    top: 25%;
    left: -5%;
  }

  .image-modular-absolute {
    width: 50%;
    bottom: -6%;
    left: -5%;
  }

  .section-first {
    padding-bottom: 90px;
  }

  .menu {
    margin-bottom: 90px;
  }

  .image-menu {
    height: 35vw;
  }

  .heading-menu {
    padding: 24px 60px;
    bottom: -65px;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .grid-contact {
    grid-row-gap: 28px;
  }

  .image-block-careers {
    margin-bottom: 90px;
  }

  .collection-list-blog {
    grid-row-gap: 30px;
  }

  .image-blog-main {
    margin-bottom: 45px;
  }

  .utility-page-content {
    grid-row-gap: 30px;
    padding-bottom: 30px;
  }

  .hero-heading-right {
    padding: 60px 15px;
  }

  .flex-block-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .link-block {
    height: 300px;
  }

  .grid-4 {
    flex-flow: wrap-reverse;
    flex: 1;
    order: 1;
    grid-auto-flow: column;
    justify-content: center;
    align-self: center;
    align-items: stretch;
    display: flex;
  }

  .image-14.image-blog {
    flex: 1;
    align-self: flex-start;
    min-width: 100%;
  }

  .div-block-2 {
    padding-bottom: 60px;
  }

  .image-15 {
    opacity: .1;
  }

  .slide-nav-2 {
    margin-bottom: -20px;
    padding-top: 40px;
  }

  .div-block-5 {
    text-align: left;
  }

  .column-2, .column-3, .column-4 {
    padding-bottom: 40px;
  }

  .column-5 {
    padding-bottom: 0;
  }

  .div-block-10 {
    flex-flow: wrap;
    justify-content: center;
    display: flex;
  }

  .div-block-11 {
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 20px;
  }

  .section-hero {
    background-image: url('../images/glow-banner.svg');
    background-position: 50% 100%;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
  }

  .shape {
    line-height: 125%;
  }

  .image-shape {
    flex: 0 auto;
    align-self: auto;
  }

  .grid-navbar {
    padding-left: 4px;
    padding-right: 4px;
  }

  .brand.w--current {
    min-width: 100px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .logo {
    max-width: 100%;
    height: 70px;
  }

  .text-menu {
    font-size: 14px;
  }

  .nav-line {
    display: none;
  }

  .grid-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid-hero.min-h-45vh {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex: 1;
    grid-template-rows: 1fr auto 1fr;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    max-width: 100%;
    display: grid;
  }

  .heading-hero {
    letter-spacing: -2px;
    text-overflow: clip;
    word-break: normal;
    max-width: 100%;
    font-size: 36px;
    position: static;
    left: auto;
    right: auto;
  }

  .nav-button {
    font-size: 14px;
  }

  .button {
    font-size: 12px;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.background {
    padding-bottom: 40px;
  }

  .content {
    padding-left: 25px;
    padding-right: 25px;
  }

  .content.section {
    padding-left: 10px;
    padding-right: 20px;
  }

  .grid {
    grid-row-gap: 60px;
  }

  .paragraph {
    margin-bottom: 32px;
  }

  .paragraph.max-w-430 {
    margin-bottom: 20px;
  }

  .heading {
    letter-spacing: -2px;
    word-break: normal;
    font-size: 30px;
  }

  .heading.center-text {
    margin-bottom: 18px;
    line-height: 120%;
  }

  .heading.center-text-mobile {
    text-align: center;
  }

  .text-subtitle {
    text-align: center;
    font-size: 12px;
    line-height: 180%;
  }

  .button-accent {
    text-align: center;
    font-size: 12px;
  }

  .paragraph-feature.para {
    margin-bottom: 0;
  }

  .heading-feature {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 120%;
  }

  .line-space {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .image {
    height: 400px;
  }

  .image.shadow {
    height: 250px;
  }

  .image-block-modular {
    margin-top: 40px;
  }

  .image-modular {
    height: 400px;
  }

  .slider {
    height: 100%;
    margin-top: 50px;
  }

  .mask {
    aspect-ratio: auto;
    height: 100%;
  }

  .slide {
    height: 100%;
  }

  .image-slide {
    aspect-ratio: 1;
    max-width: 100%;
    height: 100%;
  }

  .link-image-blog {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .grid-footer {
    grid-column-gap: 5px;
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .block-footer {
    padding-top: 20px;
  }

  .image-absolute {
    height: 100%;
    top: 20%;
  }

  .section-first {
    padding-bottom: 80px;
  }

  .menu {
    margin-bottom: 80px;
  }

  .grid-menu-item {
    grid-template-columns: 1fr;
    padding: 15px 20px;
  }

  .form-block {
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .form {
    grid-row-gap: 16px;
  }

  .image-block-careers {
    margin-bottom: 80px;
  }

  .grid-about {
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .block-about {
    margin-bottom: -38px;
    padding-right: 0%;
  }

  .collection-item-blog {
    grid-template-columns: 1fr;
  }

  .image-blog-page {
    height: auto;
    min-height: 50vw;
  }

  .block-blog-page {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .template-info {
    flex-direction: column;
  }

  .grid-licensing {
    grid-template-columns: 1fr;
  }

  .licensing {
    height: 180px;
  }

  .utility-page-content {
    padding-left: 7%;
    padding-right: 7%;
  }

  .container {
    max-width: none;
  }

  .flex-block-2 {
    grid-template-columns: 1fr;
  }

  .image-5 {
    box-sizing: border-box;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .section-2 {
    padding-left: 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-columns: 1fr 1fr;
  }

  .link-block {
    height: 250px;
  }

  .link2 {
    display: none;
  }

  .link3 {
    line-height: 250%;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    width: 100%;
    padding-right: 0;
  }

  .image-14.image-blog {
    flex: 0 auto;
    display: block;
    overflow: hidden;
  }

  .div-block-2 {
    width: 100%;
    height: 100%;
    margin-right: 0;
    padding: 20px 20px 80px;
  }

  .slide-nav-2 {
    margin-bottom: -40px;
  }

  .section-3.section-first, .div-block-3 {
    width: 100%;
  }

  .div-block-5 {
    text-align: center;
  }

  .columns-2 {
    display: block;
  }

  .grid-5 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    display: grid;
  }

  .column-2, .column-3, .column-4 {
    padding-bottom: 40px;
  }

  .column-5 {
    padding-bottom: 0;
  }

  .slidertext {
    bottom: 20px;
    left: 20px;
    right: 15px;
  }

  .heading-7.pb10 {
    font-family: Trajansanspro, Times New Roman, sans-serif;
    line-height: 120%;
  }

  .div-block-10 {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-11 {
    display: block;
  }

  .image-slide-1.image-slide {
    aspect-ratio: 1;
    background-image: linear-gradient(0deg, #000, #fff0 75%), url('../images/image8.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .image-slide-2.image-slide {
    aspect-ratio: 1;
    background-image: linear-gradient(0deg, #000, #fff0 75%), url('../images/image1.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .image-slide-3.image-slide {
    aspect-ratio: 1;
    background-image: linear-gradient(0deg, #000, #fff0 75%), url('../images/image4.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .image-slide-4.image-slide {
    aspect-ratio: 1;
    background-image: linear-gradient(0deg, #000, #fff0 75%), url('../images/image6.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .paragraph-2 {
    text-transform: capitalize;
    margin-bottom: 0;
    font-family: Marcellus, sans-serif;
    font-size: 16px;
    line-height: 120%;
  }

  .paragraph-2.margin-bottom-24px {
    font-family: Marcellus, sans-serif;
    font-size: 16px;
    line-height: 120%;
  }

  .paragraph-3 {
    margin-bottom: 0;
    font-family: Marcellus, sans-serif;
    font-size: 16px;
    line-height: 120%;
  }

  .paragraph-3.margin-bottom-24px {
    font-family: Marcellus, sans-serif;
    font-size: 16px;
  }

  .paragraph-4 {
    margin-bottom: 0;
    font-family: Marcellus, sans-serif;
    font-size: 16px;
    line-height: 120%;
  }

  .paragraph-4.margin-bottom-24px {
    font-family: Trajansanspro, Times New Roman, sans-serif;
    font-size: 16px;
  }

  .paragraph-5 {
    margin-bottom: 0;
    font-family: Marcellus, sans-serif;
    font-size: 16px;
    line-height: 120%;
  }

  .paragraph-5.margin-bottom-24px {
    font-family: Marcellus, sans-serif;
    font-size: 16px;
    line-height: 120%;
  }

  .map, .map-2 {
    border-radius: 10px;
  }
}

#w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-d888c7c7, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-d888c7c7, #w-node-_453068fd-74cf-44d8-263f-abd171130391-d888c7c7, #w-node-_43195829-bf06-45dd-2aff-7d46da8e5274-d888c7c7, #w-node-_185eb2d5-4ad5-7355-a4b9-5b2c4d526a78-d888c7c7, #w-node-_04c03004-5657-22a6-57d8-6010a19da621-d888c7c7, #w-node-_04c03004-5657-22a6-57d8-6010a19da625-d888c7c7, #w-node-_2cfc754e-e903-afc8-bfbb-ecb3aa44b3f9-d888c7c7, #w-node-_2cfc754e-e903-afc8-bfbb-ecb3aa44b3fd-d888c7c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_96c5ff3d-3717-6b45-3c11-fab87cee9a7a-d888c7c7 {
  grid-area: 1 / 2 / 2 / 7;
}

#w-node-_556ced9a-efb0-bb0c-c35d-f44945193d3c-d888c7c7 {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-_666ae713-24b7-f6fe-2098-74254afba9ce-d888c7c7 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-_1158673b-5ccb-7298-1474-6e79a0ead58a-d888c7c7 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-febf2102-3c19-649c-2fa2-7535035b7699-d888c7c7 {
  align-self: auto;
}

#w-node-_9e48b849-eb11-8ca8-ee99-77f2cf11dfe7-d888c7c7 {
  place-self: start;
}

#w-node-_97ed1942-531b-c906-bcaf-c8f77e053ffe-d888c7c7, #w-node-_1209890c-ffd6-81c4-124e-eb7b562749d3-d888c7c7, #w-node-d5f6771a-f38f-5e75-8a29-2477c080775e-d888c7c7, #w-node-ef21cce3-7ff0-4a03-c400-fc13cd349111-cd349110, #w-node-ef21cce3-7ff0-4a03-c400-fc13cd34911a-cd349110, #w-node-_61fddbc7-1626-8a0b-a32b-b9f94a47a6a9-cd349110 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f30fee03-d2ba-4de6-a88a-c02d9a07b65a-9a07b64b {
  place-self: auto center;
}

#w-node-_6c2bd1e6-ed75-7777-8010-301a0aaecb99-0aaecb96, #w-node-_6c2bd1e6-ed75-7777-8010-301a0aaecba6-0aaecb96, #w-node-_48420263-1c19-64e3-43a7-65cda815b4f5-a815b4f3, #w-node-_48420263-1c19-64e3-43a7-65cda815b4ff-a815b4f3, #w-node-_48420263-1c19-64e3-43a7-65cda815b50a-a815b4f3, #w-node-_48420263-1c19-64e3-43a7-65cda815b50f-a815b4f3, #w-node-_48420263-1c19-64e3-43a7-65cda815b51f-a815b4f3, #w-node-ba19d557-c413-1a4a-ebbd-1c4bf5b2d154-d888c7c8, #w-node-ba19d557-c413-1a4a-ebbd-1c4bf5b2d159-d888c7c8, #w-node-ba19d557-c413-1a4a-ebbd-1c4bf5b2d15e-d888c7c8, #w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-d888c7c9, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-d888c7c9, #w-node-_453068fd-74cf-44d8-263f-abd171130391-d888c7c9, #w-node-_5d16c39e-fb74-8515-671a-4998a0cf1e0c-d888c7c9, #w-node-_5d16c39e-fb74-8515-671a-4998a0cf1e0e-d888c7c9, #w-node-_5d16c39e-fb74-8515-671a-4998a0cf1e10-d888c7c9, #w-node-_4443478b-b3b8-d161-f067-d98b3ad19991-d888c7c9, #w-node-_4443478b-b3b8-d161-f067-d98b3ad19993-d888c7c9, #w-node-_4443478b-b3b8-d161-f067-d98b3ad19995-d888c7c9, #w-node-_77564398-ab05-5a06-c0c1-785e7acb59b1-d888c7c9, #w-node-_77564398-ab05-5a06-c0c1-785e7acb59b3-d888c7c9, #w-node-_77564398-ab05-5a06-c0c1-785e7acb59b5-d888c7c9, #w-node-f881ca27-fdcb-9184-0abc-f6457839a6be-d888c7c9, #w-node-f881ca27-fdcb-9184-0abc-f6457839a6c0-d888c7c9, #w-node-f881ca27-fdcb-9184-0abc-f6457839a6c2-d888c7c9, #w-node-_66186f22-b9b0-8827-2189-c639510a1ae2-d888c7c9, #w-node-_66186f22-b9b0-8827-2189-c639510a1ae4-d888c7c9, #w-node-_66186f22-b9b0-8827-2189-c639510a1ae6-d888c7c9, #w-node-_331b82de-4fe3-a179-5cda-98dbc0d55414-d888c7c9, #w-node-_331b82de-4fe3-a179-5cda-98dbc0d55416-d888c7c9, #w-node-_331b82de-4fe3-a179-5cda-98dbc0d55418-d888c7c9, #w-node-_687ae060-9dc3-ff01-ded9-285e26d9a46f-d888c7c9, #w-node-_687ae060-9dc3-ff01-ded9-285e26d9a471-d888c7c9, #w-node-_687ae060-9dc3-ff01-ded9-285e26d9a473-d888c7c9, #w-node-bb12171e-27cd-456c-78b6-b8db3f592240-d888c7c9, #w-node-bb12171e-27cd-456c-78b6-b8db3f592242-d888c7c9, #w-node-bb12171e-27cd-456c-78b6-b8db3f592244-d888c7c9, #w-node-_0fc7a9d4-d034-684d-8789-4f6a10168d89-d888c7c9, #w-node-_0fc7a9d4-d034-684d-8789-4f6a10168d8b-d888c7c9, #w-node-_0fc7a9d4-d034-684d-8789-4f6a10168d8d-d888c7c9, #w-node-_4412e080-e690-444f-20aa-ca2479195deb-d888c7c9, #w-node-_4412e080-e690-444f-20aa-ca2479195ded-d888c7c9, #w-node-_4412e080-e690-444f-20aa-ca2479195def-d888c7c9, #w-node-_6401304b-66bd-f153-578c-af92df0f01ec-d888c7c9, #w-node-_6401304b-66bd-f153-578c-af92df0f01ee-d888c7c9, #w-node-_6401304b-66bd-f153-578c-af92df0f01f0-d888c7c9, #w-node-_8985944c-b0c4-46d0-d7db-0666ad9f2b8a-d888c7c9, #w-node-_8985944c-b0c4-46d0-d7db-0666ad9f2b8c-d888c7c9, #w-node-_8985944c-b0c4-46d0-d7db-0666ad9f2b8e-d888c7c9, #w-node-_9829e7f3-991b-1ff2-4553-2f71626d1fdd-d888c7c9, #w-node-_9829e7f3-991b-1ff2-4553-2f71626d1fdf-d888c7c9, #w-node-_9829e7f3-991b-1ff2-4553-2f71626d1fe1-d888c7c9, #w-node-a647c3f4-4575-ffe9-16be-347f94dd24de-d888c7c9, #w-node-a647c3f4-4575-ffe9-16be-347f94dd24e0-d888c7c9, #w-node-a647c3f4-4575-ffe9-16be-347f94dd24e2-d888c7c9, #w-node-_5420e690-d48e-3f7d-ce99-ba3ffd630dd1-d888c7c9, #w-node-_5420e690-d48e-3f7d-ce99-ba3ffd630dd3-d888c7c9, #w-node-_5420e690-d48e-3f7d-ce99-ba3ffd630dd5-d888c7c9, #w-node-_1d3a1a45-5481-1619-b883-e0dc351f760e-d888c7c9, #w-node-_1d3a1a45-5481-1619-b883-e0dc351f7610-d888c7c9, #w-node-_1d3a1a45-5481-1619-b883-e0dc351f7612-d888c7c9, #w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-d888c7ca, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-d888c7ca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#First-Name.w-node-_453419c7-dc0b-1b05-597e-d9cbc695ff08-d888c7ca, #Last-Name.w-node-aec9efad-aa73-a570-ac7e-6c3df65f20f9-d888c7ca {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#Phone.w-node-_97011d46-db76-3279-6a28-2d8c1469df2b-d888c7ca, #Email.w-node-_859f2b19-2f0a-92da-9589-c3e81523c734-d888c7ca {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#Number-Of-Guests.w-node-b18e39a3-6097-fba2-97a4-948a0ea1f85d-d888c7ca, #Date.w-node-_1d3dce8f-feef-3eb4-ef79-feb7075b1e26-d888c7ca, #Time.w-node-bd1b6b2d-3b4f-3f3e-c6ee-280c88504245-d888c7ca {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_453419c7-dc0b-1b05-597e-d9cbc695ff0c-d888c7ca {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_453068fd-74cf-44d8-263f-abd171130391-d888c7ca, #w-node-_6f105fda-8826-0f52-a5ff-5daa573eb9b9-d888c7ca, #w-node-_6f105fda-8826-0f52-a5ff-5daa573eb9be-d888c7ca, #w-node-_6f105fda-8826-0f52-a5ff-5daa573eb9c3-d888c7ca, #w-node-_8ce64929-2464-0a1c-cb38-42a3a944e0cd-d888c7ca, #w-node-_8ce64929-2464-0a1c-cb38-42a3a944e0cf-d888c7ca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_894bb9ad-4316-f198-0499-4eb04bd8fce1-d888c7ca {
  grid-area: 1 / 1 / 3 / 5;
}

#w-node-_894bb9ad-4316-f198-0499-4eb04bd8fce3-d888c7ca {
  grid-area: 2 / 4 / 4 / 7;
}

#w-node-_894bb9ad-4316-f198-0499-4eb04bd8fce5-d888c7ca {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_1945ac78-0e24-03c0-b93d-fdb666ea91d0-d888c7ca, #w-node-_1945ac78-0e24-03c0-b93d-fdb666ea91d4-d888c7ca, #w-node-_1945ac78-0e24-03c0-b93d-fdb666ea91d6-d888c7ca, #w-node-_1945ac78-0e24-03c0-b93d-fdb666ea91da-d888c7ca, #w-node-_1945ac78-0e24-03c0-b93d-fdb666ea91dc-d888c7ca, #w-node-_1945ac78-0e24-03c0-b93d-fdb666ea91e0-d888c7ca, #w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-d888c7cb, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-d888c7cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#First-Name.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247de-d888c7cb, #Last-Name.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247df-d888c7cb {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#Phone.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e0-d888c7cb, #Email.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e1-d888c7cb, #Message.w-node-a15191fd-54dc-028e-4c1d-5e0b409ca5c9-d888c7cb {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#Number-Of-Guests.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e2-d888c7cb, #Date.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e3-d888c7cb, #Time.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e4-d888c7cb, #w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e5-d888c7cb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_453068fd-74cf-44d8-263f-abd171130391-d888c7cb, #w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fa7-d888c7cb, #w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fac-d888c7cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#First-Name.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb3-d888c7cb, #Last-Name.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb4-d888c7cb {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#Phone.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb5-d888c7cb, #Email.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb6-d888c7cb {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#Number-Of-Guests.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb7-d888c7cb, #Date.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb8-d888c7cb, #Time.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb9-d888c7cb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fba-d888c7cb {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fc1-d888c7cb, #w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-d888c7cc, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-d888c7cc, #w-node-_453068fd-74cf-44d8-263f-abd171130391-d888c7cc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a0e37adc-b8d2-e5e2-43d2-a69b826c03be-d888c7cc {
  grid-area: 1 / 1 / 3 / 5;
}

#w-node-c4161369-6dfe-8a54-0267-dd8d9be37557-d888c7cc {
  grid-area: 2 / 4 / 4 / 7;
}

#w-node-_4f09ebb3-6628-89fc-637d-04f95d7aa543-d888c7cc {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-cf93d8a9-86bf-3554-7536-0f3beeac0833-d888c7cc, #w-node-cf93d8a9-86bf-3554-7536-0f3beeac0826-d888c7cc, #w-node-_89476101-622c-4c1b-9427-976c4dced22f-d888c7cc, #w-node-_89476101-622c-4c1b-9427-976c4dced233-d888c7cc, #w-node-_89476101-622c-4c1b-9427-976c4dced235-d888c7cc, #w-node-_89476101-622c-4c1b-9427-976c4dced239-d888c7cc, #w-node-_89476101-622c-4c1b-9427-976c4dced23b-d888c7cc, #w-node-_89476101-622c-4c1b-9427-976c4dced23f-d888c7cc, #w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-d888c7cd, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-d888c7cd, #w-node-_453068fd-74cf-44d8-263f-abd171130391-d888c7cd, #w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-d888c7cf, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-d888c7cf, #w-node-_453068fd-74cf-44d8-263f-abd171130391-d888c7cf, #w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-d888c7d0, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-d888c7d0, #w-node-_453068fd-74cf-44d8-263f-abd171130391-d888c7d0, #w-node-_62291934-7f8c-63dc-7624-ba78057f845c-d888c7d0, #w-node-_62114604-91dd-f542-3b93-fcf30d5e6d57-d888c7d0, #w-node-_156ec360-8dea-9b13-4896-14ecbb50776b-d888c7d0, #w-node-a1ac014b-6aa7-658a-807e-cfbd7249c720-d888c7d0, #w-node-_6fa91e5c-ffdd-6865-7848-3eef7e3ebfaa-d888c7d0, #w-node-_1faea37f-de66-8185-229a-baa932bb15a3-d888c7d0, #w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-d888c7d1, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-d888c7d1, #w-node-_453068fd-74cf-44d8-263f-abd171130391-d888c7d1, #w-node-e6569fc6-9517-f663-ac99-6c7694a662da-d888c7d3, #w-node-ee2e1bef-6661-8c35-af9f-4b9e83e70513-37f6ea49, #w-node-ee2e1bef-6661-8c35-af9f-4b9e83e70518-37f6ea49, #w-node-ee2e1bef-6661-8c35-af9f-4b9e83e7051d-37f6ea49, #w-node-_050c0c15-0d1f-1e44-16c6-6c91211bdbfd-37f6ea49, #w-node-_050c0c15-0d1f-1e44-16c6-6c91211bdbfb-37f6ea49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1345fff-4a99-ac41-d867-d3181971da11-37f6ea49 {
  grid-area: 1 / 2 / 2 / 7;
}

#w-node-e1345fff-4a99-ac41-d867-d3181971da1a-37f6ea49 {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-e1345fff-4a99-ac41-d867-d3181971da28-37f6ea49 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-_068a7afa-309b-5445-a64d-3d376627a56f-37f6ea49 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_068a7afa-309b-5445-a64d-3d376627a58d-37f6ea49 {
  align-self: auto;
}

#w-node-_630e5f51-0d5e-bd6b-50a5-8ac10b6b57c8-37f6ea49 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_630e5f51-0d5e-bd6b-50a5-8ac10b6b57ce-37f6ea49 {
  align-self: auto;
}

#w-node-_71573922-c369-7f1a-1fef-520d404dab23-37f6ea49 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_71573922-c369-7f1a-1fef-520d404dab29-37f6ea49 {
  align-self: auto;
}

#w-node-_529c990d-c3df-abaf-3078-b191e4ecc53c-37f6ea49 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_529c990d-c3df-abaf-3078-b191e4ecc542-37f6ea49 {
  align-self: auto;
}

#w-node-_9dbda6e5-d5f8-2607-4d6b-ce2793316ce4-37f6ea49 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_9dbda6e5-d5f8-2607-4d6b-ce2793316cea-37f6ea49 {
  align-self: auto;
}

#w-node-e1ffa8cf-9726-7743-1e5c-700f242043bb-37f6ea49, #w-node-e1ffa8cf-9726-7743-1e5c-700f242043bf-37f6ea49, #w-node-e1ffa8cf-9726-7743-1e5c-700f242043c1-37f6ea49, #w-node-e1ffa8cf-9726-7743-1e5c-700f242043c5-37f6ea49, #w-node-e1ffa8cf-9726-7743-1e5c-700f242043c7-37f6ea49, #w-node-e1ffa8cf-9726-7743-1e5c-700f242043cb-37f6ea49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46e9c913-11d6-dcb3-9b40-e1f490e6da7e-37f6ea49 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_46e9c913-11d6-dcb3-9b40-e1f490e6da96-37f6ea49 {
  align-self: auto;
}

#w-node-fd1c8799-ceab-09ad-e630-028d41adbe37-37f6ea49 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-fd1c8799-ceab-09ad-e630-028d41adbe4e-37f6ea49 {
  align-self: auto;
}

#w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-37f6ea49, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-37f6ea49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#First-Name.w-node-_453419c7-dc0b-1b05-597e-d9cbc695ff08-37f6ea49, #Last-Name.w-node-aec9efad-aa73-a570-ac7e-6c3df65f20f9-37f6ea49 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#Phone.w-node-_97011d46-db76-3279-6a28-2d8c1469df2b-37f6ea49, #Email.w-node-_859f2b19-2f0a-92da-9589-c3e81523c734-37f6ea49 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#Number-Of-Guests.w-node-b18e39a3-6097-fba2-97a4-948a0ea1f85d-37f6ea49, #Date.w-node-_1d3dce8f-feef-3eb4-ef79-feb7075b1e26-37f6ea49, #Time.w-node-bd1b6b2d-3b4f-3f3e-c6ee-280c88504245-37f6ea49 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_453419c7-dc0b-1b05-597e-d9cbc695ff0c-37f6ea49 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_453068fd-74cf-44d8-263f-abd171130391-37f6ea49, #w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-7d75f62e, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-7d75f62e, #w-node-_453068fd-74cf-44d8-263f-abd171130391-7d75f62e, #w-node-_43195829-bf06-45dd-2aff-7d46da8e5274-7d75f62e, #w-node-_185eb2d5-4ad5-7355-a4b9-5b2c4d526a78-7d75f62e, #w-node-_04c03004-5657-22a6-57d8-6010a19da621-7d75f62e, #w-node-_04c03004-5657-22a6-57d8-6010a19da625-7d75f62e, #w-node-_2cfc754e-e903-afc8-bfbb-ecb3aa44b3f9-7d75f62e, #w-node-_2cfc754e-e903-afc8-bfbb-ecb3aa44b3fd-7d75f62e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_96c5ff3d-3717-6b45-3c11-fab87cee9a7a-7d75f62e {
  grid-area: 1 / 2 / 2 / 7;
}

#w-node-_556ced9a-efb0-bb0c-c35d-f44945193d3c-7d75f62e {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-_666ae713-24b7-f6fe-2098-74254afba9ce-7d75f62e {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-_072b262a-8b2b-b26b-b2d6-fdb70a6317cd-551a6502, #w-node-_4643285b-d2db-eb6b-7684-eee851871795-551a6502, #w-node-_453068fd-74cf-44d8-263f-abd171130391-551a6502, #w-node-_43195829-bf06-45dd-2aff-7d46da8e5274-551a6502, #w-node-_185eb2d5-4ad5-7355-a4b9-5b2c4d526a78-551a6502, #w-node-_04c03004-5657-22a6-57d8-6010a19da621-551a6502, #w-node-_04c03004-5657-22a6-57d8-6010a19da625-551a6502, #w-node-_2cfc754e-e903-afc8-bfbb-ecb3aa44b3f9-551a6502, #w-node-_2cfc754e-e903-afc8-bfbb-ecb3aa44b3fd-551a6502 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_96c5ff3d-3717-6b45-3c11-fab87cee9a7a-551a6502 {
  grid-area: 1 / 2 / 2 / 7;
}

#w-node-_556ced9a-efb0-bb0c-c35d-f44945193d3c-551a6502 {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-_666ae713-24b7-f6fe-2098-74254afba9ce-551a6502 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-_14e50515-f60e-6da9-134f-210372aeba9d-9be099e8, #w-node-_14e50515-f60e-6da9-134f-210372aebaa2-9be099e8, #w-node-_14e50515-f60e-6da9-134f-210372aebaa7-9be099e8, #w-node-fbf2697b-ee2d-f3e0-bb94-80e87681540a-9be099e8, #w-node-fbf2697b-ee2d-f3e0-bb94-80e876815408-9be099e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a0d0d5f4-3c12-216c-1d53-6a291f13c1ab-9be099e8 {
  grid-area: 1 / 2 / 2 / 7;
}

#w-node-a0d0d5f4-3c12-216c-1d53-6a291f13c1b4-9be099e8 {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-a0d0d5f4-3c12-216c-1d53-6a291f13c1c2-9be099e8 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-adae40f1-849a-c6c7-3b15-0f058fd449bf-9be099e8, #w-node-adae40f1-849a-c6c7-3b15-0f058fd449c3-9be099e8, #w-node-adae40f1-849a-c6c7-3b15-0f058fd449c5-9be099e8, #w-node-adae40f1-849a-c6c7-3b15-0f058fd449c9-9be099e8, #w-node-adae40f1-849a-c6c7-3b15-0f058fd449cb-9be099e8, #w-node-adae40f1-849a-c6c7-3b15-0f058fd449cf-9be099e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_171732c0-9f05-a938-3413-4d573ac7c5f6-9be099e8 {
  grid-area: 1 / 1 / 3 / 5;
}

#w-node-_171732c0-9f05-a938-3413-4d573ac7c5f8-9be099e8 {
  grid-area: 2 / 4 / 4 / 7;
}

#w-node-_171732c0-9f05-a938-3413-4d573ac7c5fa-9be099e8 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_317d4e00-f9c4-5f05-51e8-f013c9cc6721-60a3f801, #w-node-_317d4e00-f9c4-5f05-51e8-f013c9cc6726-60a3f801, #w-node-_317d4e00-f9c4-5f05-51e8-f013c9cc672b-60a3f801, #w-node-_78d7d52f-5962-9f98-8cfa-d74257cc1936-60a3f801, #w-node-_78d7d52f-5962-9f98-8cfa-d74257cc1934-60a3f801 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfad-60a3f801 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfb3-60a3f801 {
  align-self: auto;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfb6-60a3f801 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfbc-60a3f801 {
  align-self: auto;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfbf-60a3f801 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfc5-60a3f801 {
  align-self: auto;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfc8-60a3f801 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfce-60a3f801 {
  align-self: auto;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfd1-60a3f801 {
  grid-area: Area-2;
  align-self: center;
}

#w-node-_69dc7fb1-84d8-66d5-ab13-1d3838f8bfd7-60a3f801 {
  align-self: auto;
}

#w-node-_606c99d1-78b4-2900-b99f-fd4fe0f24c1b-60a3f801, #w-node-_606c99d1-78b4-2900-b99f-fd4fe0f24c1f-60a3f801, #w-node-_606c99d1-78b4-2900-b99f-fd4fe0f24c21-60a3f801, #w-node-_606c99d1-78b4-2900-b99f-fd4fe0f24c25-60a3f801, #w-node-_606c99d1-78b4-2900-b99f-fd4fe0f24c27-60a3f801, #w-node-_606c99d1-78b4-2900-b99f-fd4fe0f24c2b-60a3f801, #w-node-_4601f41e-f5df-afe5-fe1a-6f0642586adb-60a3f801, #w-node-_4601f41e-f5df-afe5-fe1a-6f0642586ae8-60a3f801 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_96c5ff3d-3717-6b45-3c11-fab87cee9a7a-d888c7c7, #w-node-_556ced9a-efb0-bb0c-c35d-f44945193d3c-d888c7c7, #w-node-_666ae713-24b7-f6fe-2098-74254afba9ce-d888c7c7, #First-Name.w-node-_453419c7-dc0b-1b05-597e-d9cbc695ff08-d888c7ca, #Last-Name.w-node-aec9efad-aa73-a570-ac7e-6c3df65f20f9-d888c7ca, #Phone.w-node-_97011d46-db76-3279-6a28-2d8c1469df2b-d888c7ca, #Email.w-node-_859f2b19-2f0a-92da-9589-c3e81523c734-d888c7ca, #Number-Of-Guests.w-node-b18e39a3-6097-fba2-97a4-948a0ea1f85d-d888c7ca, #Date.w-node-_1d3dce8f-feef-3eb4-ef79-feb7075b1e26-d888c7ca, #Time.w-node-bd1b6b2d-3b4f-3f3e-c6ee-280c88504245-d888c7ca, #w-node-_453419c7-dc0b-1b05-597e-d9cbc695ff0c-d888c7ca, #First-Name.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247de-d888c7cb, #Last-Name.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247df-d888c7cb, #Phone.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e0-d888c7cb, #Email.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e1-d888c7cb, #Message.w-node-a15191fd-54dc-028e-4c1d-5e0b409ca5c9-d888c7cb, #Number-Of-Guests.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e2-d888c7cb, #Date.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e3-d888c7cb, #Time.w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e4-d888c7cb, #w-node-_0cc6fe81-c22e-23f4-b2d4-3876b90247e5-d888c7cb, #First-Name.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb3-d888c7cb, #Last-Name.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb4-d888c7cb, #Phone.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb5-d888c7cb, #Email.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb6-d888c7cb, #Number-Of-Guests.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb7-d888c7cb, #Date.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb8-d888c7cb, #Time.w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fb9-d888c7cb, #w-node-c1f0829c-72a9-37cb-7fa7-2f1ce64b6fba-d888c7cb, #w-node-e1345fff-4a99-ac41-d867-d3181971da11-37f6ea49, #w-node-e1345fff-4a99-ac41-d867-d3181971da1a-37f6ea49, #w-node-e1345fff-4a99-ac41-d867-d3181971da28-37f6ea49, #First-Name.w-node-_453419c7-dc0b-1b05-597e-d9cbc695ff08-37f6ea49, #Last-Name.w-node-aec9efad-aa73-a570-ac7e-6c3df65f20f9-37f6ea49, #Phone.w-node-_97011d46-db76-3279-6a28-2d8c1469df2b-37f6ea49, #Email.w-node-_859f2b19-2f0a-92da-9589-c3e81523c734-37f6ea49, #Number-Of-Guests.w-node-b18e39a3-6097-fba2-97a4-948a0ea1f85d-37f6ea49, #Date.w-node-_1d3dce8f-feef-3eb4-ef79-feb7075b1e26-37f6ea49, #Time.w-node-bd1b6b2d-3b4f-3f3e-c6ee-280c88504245-37f6ea49, #w-node-_453419c7-dc0b-1b05-597e-d9cbc695ff0c-37f6ea49, #w-node-_96c5ff3d-3717-6b45-3c11-fab87cee9a7a-7d75f62e, #w-node-_556ced9a-efb0-bb0c-c35d-f44945193d3c-7d75f62e, #w-node-_666ae713-24b7-f6fe-2098-74254afba9ce-7d75f62e, #w-node-_96c5ff3d-3717-6b45-3c11-fab87cee9a7a-551a6502, #w-node-_556ced9a-efb0-bb0c-c35d-f44945193d3c-551a6502, #w-node-_666ae713-24b7-f6fe-2098-74254afba9ce-551a6502, #w-node-a0d0d5f4-3c12-216c-1d53-6a291f13c1ab-9be099e8, #w-node-a0d0d5f4-3c12-216c-1d53-6a291f13c1b4-9be099e8, #w-node-a0d0d5f4-3c12-216c-1d53-6a291f13c1c2-9be099e8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_1969981f-7552-4651-f43d-68d1067089f5-d888c7c7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_894bb9ad-4316-f198-0499-4eb04bd8fce1-d888c7ca {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_894bb9ad-4316-f198-0499-4eb04bd8fce3-d888c7ca {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_894bb9ad-4316-f198-0499-4eb04bd8fce5-d888c7ca {
    order: -100;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a0e37adc-b8d2-e5e2-43d2-a69b826c03be-d888c7cc {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c4161369-6dfe-8a54-0267-dd8d9be37557-d888c7cc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4f09ebb3-6628-89fc-637d-04f95d7aa543-d888c7cc {
    order: -100;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_171732c0-9f05-a938-3413-4d573ac7c5f6-9be099e8 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_171732c0-9f05-a938-3413-4d573ac7c5f8-9be099e8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_171732c0-9f05-a938-3413-4d573ac7c5fa-9be099e8 {
    order: -100;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Amsterdamone Ez 12 L';
  src: url('../fonts/AmsterdamOne-eZ12l.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajansanspro';
  src: url('../fonts/TrajanSansPro-Regular.ttf') format('truetype'), url('../fonts/TrajanSansPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajansanspro';
  src: url('../fonts/TrajanSansPro-Light.ttf') format('truetype'), url('../fonts/TrajanSansPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajansanspro';
  src: url('../fonts/TrajanSansPro-Bold.ttf') format('truetype'), url('../fonts/TrajanSansPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajansanspro';
  src: url('../fonts/TrajanSansPro-Black.ttf') format('truetype'), url('../fonts/TrajanSansPro-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajansanspro';
  src: url('../fonts/TrajanSansPro-Semibold.ttf') format('truetype'), url('../fonts/TrajanSansPro-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajansanspro';
  src: url('../fonts/TrajanSansPro-ExtraLight.ttf') format('truetype'), url('../fonts/TrajanSansPro-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/***Custom css***/
.pb20{
  margin-bottom: 20px;
}

.pt-0{
  padding-top: 0!important;
}
.pb-0{
  padding-bottom: 0!important;
}

.pt-10{
  padding-top: 10px!important;
}

.mb-10{
  margin-bottom: 10px!important;
}

.mb-0{
  margin-bottom: 0!important;
}

.highlighted-section ul li{
  position: relative;
  padding-left: 30px!important;
  color: var(--heading);
  max-width: 340px;
  margin-bottom: 10px;
  font-family: Marcellus, sans-serif;
  font-size: 18px;
  line-height: 170%;
}

.highlighted-section ul li::before {
  content: " ";
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50px;
  position: absolute; 
  display: block;
  left: 12px;
  top: 12px;
}

.highlighted-section .paragraph-feature.para p{
  margin-bottom: 20px;
}

.location-section iframe{
  width:100%;
}

/**Accordion styles**/
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: "Marcellus", serif;
  }
  .accordion-item {
    background: #f2e3c5;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  .accordion-input {
    display: none;
  }
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, transform 0.25s ease;
    border-radius: 12px;
    background-color: #f2e3c5;
  }
  .accordion-header:hover {
    background-color: #fff4d6;
    transform: scale(1.01);
  }
  .accordion-input:checked ~ .accordion-header {
    background-color: #fff4d6;
    border-radius: 12px 12px 0 0;
  }
  .accordion-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1a1a1a; text-align:left;
  }
  .icon-wrapper {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
  }
  .icon-wrapper::before,
  .icon-wrapper::after {
    content: '';
    position: absolute;
    background-color: #1a1a1a;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .icon-wrapper::before {
    width: 2px;
    height: 14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .icon-wrapper::after {
    width: 14px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .accordion-input:checked ~ .accordion-header .icon-wrapper::before {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }
  .accordion-input:checked ~ .accordion-header .icon-wrapper::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: transparent; /* transparent background */
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.45s ease,
      transform 0.45s ease;
  }
  .accordion-input:checked ~ .accordion-content {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 32px 28px 32px;
  }
  .accordion-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #444;
    text-align: left;
    margin: 0;
    padding-top: 10px;
  }

  .blogs-page .link-image-blog{
    border-radius: 10px 0 0 10px;
  }


/**Pagination**/
.pagination-single-inner {
    display: flex;
    justify-content: space-between
}

.pagination-single-inner a {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}


.pagination-single-inner .next-post {
    text-align: right;
    justify-content: flex-end;
    color: var(--heading);
}

.pagination-single-inner .previous-post {
    color: var(--heading);
}

.pagination-single-inner .previous-post img,
.pagination-single-inner .next-post img {
    width: 22px;
    height: auto
}

.arrow-p{
  transform: rotate(90deg);
  width: 24px;
  display: block;
}

.pagination-single-inner .previous-post img {
    transform: rotate(180deg);
}

.pagination.event_list nav {
    align-items: center;
    display: flex;
    justify-content: end
}

.pagination.event_list .next,
.pagination.event_list .prev {
    background: var(--background-a);
    color: #fff;
    border-radius: 50px;
    padding: 5px;
    width: 36px;
    margin: 5px;
    height: 36px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center
}

.page.page_btn {
    background-color: transparent !important;
    color: #000 !important;
    border: 1px solid var(--border)!important;
    box-shadow: inset 0 0 0 0 var(--accent-a);
    border-radius: 50%;
}

.pagination.event_list button.page_btn {
    margin: 5px;
    border-radius: 50px;  
    height: 36px;
    width: 36px;
    border: none;
    background: var(--accent-b);
    color: var(--background-a);
}

.pagination .prev::before {    
   content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url('../images/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
}

.pagination .next::before {
   content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url('../images/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
    left: auto
}

.pagination.event_list .next::before {
    top: 10px;
    right: 1px
}

.pagination.event_list .prev::before {
    top: 5px;
    left: 2px
}

.pagination button:disabled {
    box-shadow: none;
    border: 0;
}


  @media (max-width: 768px) {
       .accordion-header {
      padding: 24px;
    }
    .accordion-title {
      font-size: 1rem;
    }
    .accordion-input:checked ~ .accordion-content {
      padding: 0 24px 24px 24px;
    }
  }