:root {
  --background: #f6f9f9;
  --black: #22354b;
  --slate-blue: #385066;
  --white: white;
  --firebrick: #ba0000;
}

.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);
  color: var(--black);
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: 4em;
  font-weight: 400;
  line-height: 1.3em;
}

h2 {
  margin-top: 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: 3em;
  font-weight: 400;
  line-height: 1.3em;
}

h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.3em;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1.5em;
}

p {
  margin-bottom: 10px;
  font-size: .95em;
  line-height: 1.4em;
}

a {
  color: var(--slate-blue);
  background-color: #fff0;
  font-weight: 400;
  text-decoration: none;
}

a.w--current {
  color: var(--slate-blue);
  text-decoration: none;
}

li {
  margin-top: 10px;
}

label {
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

strong {
  font-weight: 700;
}

blockquote {
  border-left: 1px #000;
  margin-bottom: 10px;
  padding: 10px 0;
  font-size: 18px;
  line-height: 22px;
}

.section {
  padding-left: 5vw;
  padding-right: 5vw;
  position: relative;
}

.text-field {
  border: 1px solid var(--slate-blue);
  background-color: #0000;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-field::placeholder {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

.textarea {
  border: 1px solid var(--slate-blue);
  background-color: #0000;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.textarea::placeholder {
  color: var(--black);
}

.paragraph {
  color: var(--slate-blue);
  font-size: 16px;
  line-height: 1.4em;
}

.button {
  border: 1px solid var(--slate-blue);
  background-color: var(--black);
  color: var(--white);
  font-weight: 400;
  transition: color .2s, background-color .2s;
}

.button:hover {
  border: 1px solid var(--slate-blue);
  background-color: var(--background);
  color: var(--slate-blue);
}

.button.max {
  background-color: var(--white);
  color: var(--slate-blue);
  font-weight: 400;
}

.button-secondary {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--slate-blue);
  font-weight: 400;
  transition: color .2s, background-color .2s;
}

.button-secondary:hover {
  border-width: 1px;
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
}

.button-secondary.line {
  border-color: var(--slate-blue);
}

.button-secondary.line:hover {
  color: var(--black);
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

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

.flex-vertical {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-vertical.none {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
}

.small-heading {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: 1.7em;
  font-weight: 400;
  line-height: 1.3em;
}

.small-heading._50 {
  text-transform: capitalize;
  font-size: 50px;
}

.container-contact {
  z-index: 99;
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5vw;
  display: flex;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.white {
  color: var(--white);
}

.section-hero {
  background-color: var(--black);
  background-image: linear-gradient(180deg, var(--slate-blue), transparent);
  height: 90vh;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 15vw;
  padding-right: 15vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-hero.image {
  z-index: 2;
  background-image: linear-gradient(180deg, transparent 86%, var(--black));
  height: auto;
  color: var(--white);
  justify-content: flex-start;
  padding-bottom: 5vh;
  padding-left: 0;
  padding-right: 0;
}

.section-hero.text {
  height: 100%;
  color: var(--white);
  background-image: none;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
}

.section-hero.page {
  height: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-hero.thank {
  height: auto;
  padding-top: 155px;
  padding-bottom: 155px;
}

.union {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: -.5% 5vw auto;
}

.union.bottom {
  inset: auto 0% -.5%;
}

.lottie {
  width: 30px;
}

.wrapper-scroll {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
}

.scroll {
  color: var(--white);
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;
}

.container-image-full-width {
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 70vh;
  display: flex;
  overflow: hidden;
}

.container-image-full-width.cup {
  height: auto;
}

.image-cover {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.image-cover.left {
  object-position: 0% 50%;
}

.image-cover.top {
  object-position: 50% 50%;
}

.image-cover.hz {
  aspect-ratio: 2;
}

.image-cover.left2 {
  aspect-ratio: auto;
  object-position: 50% 50%;
}

.grid-2x2 {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  padding-left: 15vw;
  padding-right: 15vw;
  position: relative;
}

.grid-2x2.padding {
  padding: 10vh 10vw;
}

.net {
  z-index: 1;
  filter: hue-rotate(201deg);
  width: 25vw;
  position: absolute;
  inset: -20% auto 0% 10vw;
}

.flex-vertical-center {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-vertical-center._5, .flex-vertical-center.non {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
}

.flex-vertical-center.privacy {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}

.grid-3x3 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: start center;
  padding-left: 5vw;
  padding-right: 5vw;
}

.grid-3x3.padding {
  place-items: start center;
  padding: 10vh 10vw 0;
}

.grid-3x3.events {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-columns: 1fr 1fr;
  place-items: start center;
  padding: 10vh 10vw;
}

.grid-3x3.page {
  z-index: 9;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-image: linear-gradient(#f0f5ff, #f0f5ff 70%, #fff0);
  place-items: start center;
  padding: 0 10vw 10vh;
  position: relative;
}

.container-plate {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  display: flex;
}

.circle-plate {
  border: 1px solid var(--black);
  border-radius: 100em;
  padding: 10px 10px 8px;
}

.circle-plate.hero {
  border-color: var(--background);
}

.circle-plate.hero.m {
  padding-bottom: 10px;
}

.circle-plate.sa {
  aspect-ratio: 1;
  outline-offset: 10px;
  outline: 1px #002e6d;
}

.heading {
  max-width: 40vw;
  margin-bottom: 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: 3em;
  font-weight: 400;
  line-height: 1.3em;
}

.button-link {
  grid-column-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  display: flex;
}

.button-link.w--current {
  background-color: #0000;
}

.banner {
  grid-column-gap: 2em;
  grid-row-gap: 16px;
  background-color: var(--slate-blue);
  background-image: url('../images/Vector.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding: 5vh 10vw;
  display: grid;
  position: relative;
}

.banner.h {
  background-color: var(--slate-blue);
  background-image: url('../images/Vector.svg');
  background-repeat: no-repeat;
  margin-bottom: 0;
}

.relative-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.text-banner {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.text-banner.non {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.bottle {
  z-index: 5;
  max-width: none;
  position: absolute;
  transform: rotate(20deg);
}

.slider {
  width: 100%;
  height: 100vh;
}

.hidden {
  display: none;
}

.section-blue {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  background-color: var(--slate-blue);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10vh 10vw 0;
  display: flex;
  position: relative;
}

.section-blue.bb {
  background-color: var(--black);
}

.background {
  z-index: 2;
  background-color: var(--black);
  background-image: url('../images/shell.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 400px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90vw;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mask {
  z-index: 1;
  cursor: grab;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.mask:active {
  transform: scale(1.3);
}

.photo {
  background-image: url('../images/Group_AU8I0347.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 80vw;
  height: 100vh;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.card-contact {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: var(--slate-blue);
  width: 100%;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5vw;
  display: flex;
}

.card-contact._96 {
  background-color: var(--black);
}

.contact-grid {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  place-items: stretch stretch;
  position: relative;
}

.form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  margin-top: 40px;
  display: flex;
}

.form.news {
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
}

.white-container {
  z-index: 5;
  background-color: var(--white);
  padding: 5vw;
  position: relative;
}

.footer {
  z-index: 50;
  border-top: 1px solid var(--slate-blue);
  background-color: var(--background);
  padding-top: 50px;
  font-family: Barlow Condensed, sans-serif;
  position: relative;
}

.grid-4x4 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-left: 10vw;
  padding-right: 10vw;
}

.flex-horizontal {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-horizontal.n {
  grid-column-gap: .4em;
  grid-row-gap: .4em;
}

.white-footer {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: var(--white);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 5vh;
  padding: 2vh 10vw;
  text-decoration: none;
  display: flex;
}

.container-relative {
  position: relative;
}

.lobster {
  width: 30vw;
}

.plate.bigger {
  width: 25vw;
}

.left-arrow {
  transform-style: preserve-3d;
  background-color: #22354b80;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.right-arrow {
  background-color: #22354b80;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.plate-hero {
  position: absolute;
  inset: 0% auto auto 0%;
}

.plate-hero._2 {
  inset: auto 0% 10% auto;
}

.navbar {
  z-index: 99;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5vw;
  display: flex;
  position: fixed;
  inset: 0% auto 0% 0%;
}

.image-hero {
  background-color: var(--background);
  width: 100%;
  position: relative;
}

.tab-horizontal {
  z-index: 2;
  flex-flow: column;
  padding-bottom: 0;
  display: flex;
}

.menu-tab-vertical {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tabs-content {
  background-color: #fff;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 5vh;
  display: flex;
}

.menu-section {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin-bottom: 10px;
  text-decoration: none;
  display: grid;
  position: relative;
}

.menu-section.double {
  grid-column-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.menu-section.triple {
  grid-column-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bold {
  font-weight: 700;
}

.tab-pane-tab-1 {
  width: 100%;
  height: 100%;
}

.title {
  background-color: var(--slate-blue);
  color: var(--white);
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 400;
}

.menu-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-top: .5px #d4def1;
  border-bottom: .5px solid #d4def1;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr .25fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: stretch stretch;
  padding: 3px 0 15px;
  font-size: 15px;
  display: grid;
  position: relative;
}

.menu-item.special-item {
  border: 1px solid var(--slate-blue);
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px;
}

.menu-item._2-col {
  border-top-style: none;
  grid-template-columns: 2.5fr 1fr;
  padding-bottom: 12px;
}

.menu-item.wine-01 {
  grid-template-columns: 2.5fr 1fr;
}

.container-menu {
  z-index: 110;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5px;
  display: flex;
  position: relative;
}

.button-menu-open {
  cursor: pointer;
}

.button-menu-close {
  cursor: pointer;
  display: none;
}

.container-menu-overlay {
  z-index: 100;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: var(--black);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 15vw;
  padding-right: 15vw;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.container-nav-menu {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.navlink {
  color: #0000;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  text-transform: uppercase;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3em;
  text-decoration: none;
  transition: -webkit-text-stroke-color .2s, font-variation-settings .2s, color .2s;
}

.navlink:hover {
  color: #fff;
  -webkit-text-stroke-color: transparent;
}

.white-link {
  color: #fff;
}

.flex-vertical-menu {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section-white {
  background-color: var(--white);
  background-image: linear-gradient(#fffffff0, #fffffff0), url('../images/Dolphins_wall_north-river-AU8I9845.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat-y;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  margin-top: -23vh;
  padding: 20vh 5vw 80px;
  position: relative;
}

.section-white.space {
  background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/Dolphins_wall_north-river-AU8I9845.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat-y;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  padding-bottom: 0;
}

.div-block {
  width: 100%;
}

.index-up {
  z-index: 1;
  position: relative;
}

.wrapper-paragraph-center {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10vh 10vw;
  display: flex;
}

.wrapper-paragraph-center.index-up.gift {
  padding-top: 5vh;
}

.wrapper-paragraph-center.nop {
  padding-top: 0;
}

.wrapper-paragraph-center.new {
  padding-bottom: 5vh;
  padding-left: 0;
  padding-right: 0;
}

.wrapper-paragraph-center.less {
  padding-top: 0;
  padding-bottom: 5vh;
}

.wrapper-heading {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding-bottom: 25vh;
  display: flex;
  position: relative;
}

.wrapper-heading.parties {
  height: auto;
  padding-top: 80px;
  padding-bottom: 24vh;
}

.wrapper-heading.lone {
  height: auto;
  padding-top: 98px;
  padding-bottom: 30px;
}

.h1 {
  z-index: 1;
  color: #0000;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--firebrick);
  font-size: 6em;
  font-weight: 600;
  line-height: 1.3em;
  position: relative;
}

.image-absolute-heading {
  opacity: .5;
  width: 20vw;
  position: absolute;
}

.instagram-icon-overlay {
  z-index: 1;
  position: absolute;
}

.wrapper-description-slider {
  background-color: var(--slate-blue);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 3vh;
  padding-bottom: 3vh;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.outline-text {
  z-index: 1;
  color: #0000;
  text-align: center;
  letter-spacing: 1px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--firebrick);
  font-family: Barlow Condensed, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.3em;
  position: relative;
}

.outline-text.link {
  -webkit-text-stroke-color: var(--black);
  text-transform: uppercase;
  transition: -webkit-text-stroke-color .2s, color .2s;
}

.outline-text.link:hover {
  color: var(--firebrick);
  -webkit-text-stroke-color: transparent;
}

.round-container-image {
  outline-offset: 10px;
  border-radius: 100%;
  outline: 1px solid #002e6d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30vh;
  height: 30vh;
  display: flex;
  overflow: hidden;
}

.round-container-image.events {
  width: 22vh;
  height: 22vh;
}

.grid-lightbox {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--white);
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 5px 0;
  overflow: hidden;
}

.lightbox {
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo {
  width: 17vw;
}

.loader {
  z-index: 200;
  background-color: var(--black);
  background-image: linear-gradient(180deg, var(--black), #fff0 27%, var(--black));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.container-logo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50vh;
  display: flex;
  overflow: hidden;
}

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

.image-cover-hero.top {
  height: 50vh;
}

.success-message {
  background-color: var(--background);
}

.menu-holder {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.menu-holder._2nd {
  margin-top: 50px;
}

.text-block {
  font-weight: 400;
}

.tab-pane-wine, .tab-pane-drinks {
  width: 100%;
}

.wine {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #fafafa;
  border: 1px solid #002e6d;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 25%;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 12px;
  transition: padding .2s;
  display: flex;
}

.wine.w--current {
  background-color: var(--black);
  color: var(--white);
  padding-left: 30px;
  display: flex;
}

.drinks {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  border: 1px solid var(--slate-blue);
  background-color: #fafafa;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 25%;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 12px;
  transition: padding .2s;
  display: flex;
}

.drinks.w--current {
  background-color: var(--black);
  color: var(--white);
  padding-left: 30px;
  display: flex;
}

.food {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #fafafa;
  border: 1px solid #002e6d;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 25%;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 12px;
  transition: padding .2s;
  display: flex;
}

.food.w--current {
  background-color: var(--black);
  color: var(--white);
  padding-left: 30px;
  display: flex;
}

.heading-2 {
  text-align: center;
  letter-spacing: 4px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
}

.div-block-2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-text {
  color: #fff;
  text-align: center;
  text-transform: none;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Meow Script, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 75px;
}

.all-caps {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  margin-top: 12px;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.link {
  color: #e7e5e4;
  font-weight: 500;
  text-decoration: none;
}

.sub {
  font-size: 30px;
  line-height: 38px;
}

.sub.light {
  color: #606e80;
}

.heading-3 {
  color: var(--slate-blue);
  margin-bottom: 0;
  font-size: 50px;
  line-height: 55px;
}

.heading-3.w {
  color: var(--white);
}

.bzh {
  background-color: var(--white);
  color: var(--slate-blue);
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 23px;
  padding: 9px 10px;
  font-size: .95em;
  font-weight: 700;
  line-height: 1.5em;
}

.div-block-3 {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  display: flex;
}

.code-embed {
  background-color: var(--black);
  width: 100%;
  height: 400px;
  padding: 31px 95px;
}

._35 {
  font-size: 35px;
}

._15 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 25px;
  line-height: 30px;
}

.happy-hour {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #fafafa;
  border: 1px solid #002e6d;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 25%;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 12px;
  transition: padding .2s;
  display: flex;
}

.happy-hour.w--current {
  background-color: var(--black);
  color: var(--white);
  padding-left: 30px;
  display: flex;
}

.text-block-2 {
  margin-bottom: 30px;
}

.reserve {
  filter: saturate(44%);
}

.div-block-4 {
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.text-span {
  font-weight: 400;
}

.div-block-49 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  margin-top: 24px;
  margin-bottom: 32px;
  display: flex;
}

.ig-new {
  background-color: #0000;
  background-image: url('../images/2025.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  background-attachment: scroll;
  width: 30px;
  height: 30px;
  margin-left: 0;
  margin-right: 0;
  transition: transform .1s cubic-bezier(.55, .085, .68, .53);
}

.ig-new:hover {
  background-color: #0000;
  transform: scale(1.06);
  box-shadow: 1px 1px 3px #00000042;
}

.footer-sec {
  z-index: 9;
  background-color: var(--background);
  color: var(--slate-blue);
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10vh 10vw;
  display: flex;
  position: relative;
}

.heading-8 {
  letter-spacing: -.02em;
}

.section-header {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.div-block-48 {
  opacity: 1;
  text-align: center;
  align-self: flex-end;
  text-decoration: none;
  transition: opacity .4s;
}

.div-block-48:hover {
  opacity: .5;
}

.div-block-48.nope:hover {
  opacity: 100;
}

.contact-us-card-description-2 {
  color: #161616;
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
}

.contact-us-card-description-2.newp {
  color: var(--slate-blue);
  text-align: center;
  letter-spacing: 0;
  margin-top: 12px;
  font-size: .95em;
  line-height: 22px;
}

.contact-us-card-description-2.new3 {
  color: var(--slate-blue);
  text-align: center;
  margin-top: 0;
  font-family: Barlow, sans-serif;
  font-size: .95em;
  line-height: 22px;
}

.bold-text-6 {
  color: var(--slate-blue);
  font-size: 15px;
  font-weight: 600;
}

.ig-icon {
  opacity: .63;
  filter: invert();
  margin-top: 7px;
}

.heading-9 {
  margin-top: 30px;
  font-size: 30px;
  line-height: 35px;
}

.list {
  margin-bottom: 28px;
}

.paragraph-3 {
  margin-top: 5px;
  margin-bottom: 0;
}

.div-block-50 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  display: flex;
}

.rp-party-time {
  border: 1px solid var(--slate-blue);
  background-color: #0000;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.rp-party-time::placeholder {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rp-party-date {
  border: 1px solid var(--slate-blue);
  background-color: #0000;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.rp-party-date::placeholder {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-block-2.max2 {
  width: 100%;
}

.link-2 {
  font-weight: 700;
  text-decoration: underline;
}

.code-embed-2 {
  width: 100%;
}

.background-video {
  z-index: 9;
  width: 100%;
  height: 75vh;
}

.div-block-51 {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-top: 12px;
  margin-bottom: 12px;
  display: grid;
}

.link-block {
  transition: opacity .45s;
}

.link-block:hover {
  opacity: .52;
}

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

.section-2 {
  text-align: center;
  background-image: linear-gradient(#00000094, #00000094), url('../images/Group_AU8I0347.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 10vh 10vw;
  display: flex;
}

.div-block-52 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  max-width: 500px;
  color: var(--white);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-53 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.wrapper-description-slider-2 {
  background-color: var(--black);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 3vh;
  padding-bottom: 3vh;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.image-3 {
  margin-bottom: 11px;
}

.paragraph-4 {
  font-size: 14px;
}

.link-3, .link-4 {
  text-decoration: underline;
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 20px;
    line-height: 1.2em;
  }

  h4 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-hero.image, .section-hero.text {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .container-menu-overlay {
    background-image: url('../images/Vector.svg');
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 500px;
    display: none;
  }

  .flex-vertical-menu {
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .wrapper-heading {
    justify-content: center;
    padding-top: 0;
  }

  .h1, .outline-text {
    -webkit-text-stroke-width: 2px;
  }

  .hero-text {
    max-width: 700px;
  }
}

@media screen and (max-width: 991px) {
  .section-hero.thank {
    padding-top: 117px;
    padding-bottom: 117px;
  }

  .grid-2x2.padding {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    grid-template-columns: 1fr;
    padding: 0 5vw 5vh;
  }

  .grid-3x3.padding {
    padding-top: 5vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .grid-3x3.events {
    grid-template-columns: 1fr 1fr;
    padding: 5vh 5vw;
  }

  .grid-3x3.page {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 5vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .container-plate {
    grid-column-gap: .4em;
    grid-row-gap: .4em;
  }

  .heading {
    max-width: 60vw;
  }

  .banner {
    background-position: 0 0;
    background-size: 151px;
    grid-template-columns: 1fr;
    padding-top: 15vh;
  }

  .banner.h {
    padding-top: 5vh;
    padding-left: 5vw;
    padding-right: 15vw;
  }

  .bottle {
    width: 15%;
    inset: -200px -15% 0% auto;
  }

  .slider {
    height: 70vh;
  }

  .section-blue.bb {
    padding-top: 5vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .background {
    height: 70vh;
  }

  .photo {
    background-attachment: scroll;
  }

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

  .grid-4x4 {
    grid-template-columns: 1fr 1fr;
  }

  .white-footer {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .plate.bigger {
    width: 30vw;
  }

  .plate-hero._2 {
    bottom: 6%;
  }

  .menu-tab-vertical {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-section.double {
    grid-column-gap: 50px;
    grid-template-columns: 1fr 1fr;
  }

  .menu-section.triple {
    grid-column-gap: 50px;
    grid-template-columns: 1fr;
  }

  .section-white.space {
    padding-bottom: 0;
  }

  .index-up {
    z-index: 10;
  }

  .wrapper-paragraph-center {
    padding: 5vh 5vw;
  }

  .wrapper-paragraph-center.new {
    padding-top: 5vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .wrapper-paragraph-center.less {
    grid-column-gap: .2em;
    grid-row-gap: .2em;
    padding-top: 4vh;
  }

  .wrapper-heading.parties {
    padding-bottom: 17vh;
  }

  .round-container-image {
    width: 15vh;
    height: 15vh;
  }

  .loader {
    display: none;
  }

  .wine, .drinks, .food {
    width: auto;
  }

  .heading-2 {
    max-width: 280px;
  }

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

  .hero-text {
    max-width: 450px;
  }

  .all-caps {
    line-height: 28px;
  }

  .div-block-3 {
    flex-flow: wrap;
  }

  .code-embed {
    padding: 26px 65px;
  }

  .happy-hour {
    width: auto;
  }

  .div-block-49 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: wrap;
    align-items: center;
    margin-bottom: 0;
  }

  .footer-sec {
    padding: 5vh 5vw;
  }

  .div-block-48 {
    margin-bottom: 0;
    margin-right: 0;
  }

  .contact-us-card-description-2 {
    text-align: center;
  }

  .contact-us-card-description-2.newp, .contact-us-card-description-2.new3 {
    align-self: center;
  }

  .form-block-2 {
    margin-bottom: 0;
  }

  .section-2 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    line-height: 1em;
  }

  .section {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .section.non, .section._10 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-contact {
    display: none;
  }

  .section-hero {
    margin-top: 87px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .wrapper-scroll {
    padding-top: 14px;
  }

  .image-cover.left2 {
    object-position: 60% 50%;
  }

  .grid-3x3.page {
    grid-template-columns: 1fr;
    padding-bottom: 5vh;
  }

  .banner.h {
    margin-top: 5vh;
    padding-right: 10vw;
  }

  .bottle {
    top: -165px;
    right: -10%;
  }

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

  .grid-4x4 {
    grid-template-columns: 1fr 1fr;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .white-footer {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 5vw;
    padding-right: 5vw;
    display: grid;
  }

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

  .plate-hero {
    top: 5%;
    left: -3%;
  }

  .plate-hero._2 {
    bottom: 4%;
    right: -3%;
  }

  .navbar {
    z-index: 999999;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    inset: 0% 0% auto;
  }

  .tab-horizontal {
    flex-direction: column;
  }

  .menu-tab-vertical {
    flex-direction: row;
    width: 100%;
  }

  .tabs-content {
    padding: 1.5em 1.5em 4em;
  }

  .container-menu {
    flex-flow: wrap;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-menu-overlay {
    padding-left: 5vw;
    padding-right: 5vw;
    display: none;
  }

  .navlink {
    font-size: 2.6em;
  }

  .flex-vertical-menu {
    flex-direction: column;
    display: none;
  }

  .wrapper-paragraph-center.index-up.gift {
    padding-top: 4vh;
    padding-bottom: 4vh;
  }

  .wrapper-paragraph-center.nop {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .wrapper-heading.smaller {
    height: 50vh;
    padding-bottom: 8vh;
  }

  .h1 {
    font-size: 4em;
  }

  .round-container-image.events {
    width: 20vh;
    height: 20vh;
  }

  .logo {
    width: 20vw;
  }

  .wine, .drinks, .food {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    font-size: 10px;
  }

  .div-block-2 {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
  }

  .hero-text {
    line-height: 70px;
  }

  .all-caps {
    margin-top: 0;
    font-size: 16px;
    line-height: 26px;
  }

  .div-block-3 {
    margin-top: 0;
  }

  .code-embed {
    padding: 30px;
  }

  .happy-hour {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    font-size: 10px;
  }

  .div-block-4 {
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    position: relative;
  }

  .logo-small {
    width: 70px;
  }

  .div-block-49 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .ig-new {
    margin-right: 0;
  }

  .div-block-48 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-us-card-description-2 {
    text-align: center;
  }

  .div-block-53 {
    flex-flow: wrap;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    margin-top: 10px;
    font-size: 3em;
  }

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

  .flex-vertical {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
  }

  .flex-vertical.smal {
    grid-column-gap: 1.5vh;
    grid-row-gap: 1.5vh;
  }

  .container-contact {
    display: none;
  }

  .section-hero {
    padding-bottom: 27px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section-hero.text.new {
    padding-bottom: 0;
  }

  .section-hero.page {
    height: auto;
    padding-top: 27px;
    padding-bottom: 35px;
  }

  .section-hero.thank {
    height: auto;
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .lottie {
    width: 20px;
  }

  .wrapper-scroll {
    padding-top: 28px;
  }

  .container-image-full-width {
    height: 300px;
  }

  .grid-2x2.padding {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    padding: 0 5vw 5vh;
  }

  .grid-3x3 {
    grid-template-columns: 1fr;
  }

  .grid-3x3.padding {
    padding-left: 10vw;
    padding-right: 10vw;
  }

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

  .container-plate {
    padding-left: 0;
    padding-right: 0;
  }

  .heading {
    font-size: 2em;
  }

  .banner.h {
    background-image: linear-gradient(#385066d1, #385066d1), url('../images/Vector.svg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, 151px;
    padding-top: 0;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .bottle {
    display: none;
    top: -49px;
    right: -9%;
  }

  .slider {
    height: 50vh;
  }

  .section-blue {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section-blue.bb {
    padding-bottom: 5vh;
  }

  .background {
    height: 50vh;
    display: none;
  }

  .photo {
    height: 50vh;
  }

  .card-contact {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
  }

  .white-container._89 {
    padding-top: 10vw;
  }

  .footer {
    padding-top: 30px;
  }

  .grid-4x4 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
    padding-bottom: 30px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .white-footer {
    flex-flow: wrap;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    margin-top: 0;
    padding: 1vh 5vw;
    display: flex;
  }

  .lobster {
    width: 20vw;
  }

  .plate.bigger {
    width: 40vw;
  }

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

  .plate-hero {
    top: 4%;
    left: -18%;
  }

  .plate-hero._2 {
    bottom: 2%;
    right: -16%;
    overflow: hidden;
  }

  .tab-horizontal {
    flex-direction: column;
  }

  .menu-tab-vertical {
    flex-flow: wrap;
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .container-menu-overlay {
    display: none;
  }

  .navlink {
    font-size: 2.3em;
  }

  .flex-vertical-menu {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
  }

  .wrapper-paragraph-center, .wrapper-paragraph-center.index-up {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .wrapper-paragraph-center.index-up.gift {
    padding-top: 0;
    padding-bottom: 8vh;
  }

  .wrapper-paragraph-center.nop {
    padding-left: 0;
    padding-right: 0;
  }

  .wrapper-paragraph-center.nop.r {
    margin-top: -28px;
    padding-bottom: 5vh;
  }

  .wrapper-paragraph-center.new {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .wrapper-paragraph-center.less {
    padding: 5vh 5vw 2vh;
  }

  .wrapper-heading {
    padding-bottom: 5vh;
  }

  .wrapper-heading.parties {
    padding-top: 61px;
    padding-bottom: 12vh;
  }

  .h1 {
    align-self: center;
    font-size: 4em;
    line-height: 1em;
  }

  .image-absolute-heading {
    width: 50%;
  }

  .instagram-icon-overlay {
    width: 30px;
  }

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

  .logo {
    width: 40vw;
  }

  .menu-holder {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
  }

  .wine {
    padding-left: 15px;
    padding-right: 15px;
  }

  .wine.w--current {
    padding-left: 15px;
  }

  .drinks {
    padding-left: 15px;
    padding-right: 15px;
  }

  .drinks.w--current {
    padding-left: 15px;
  }

  .food {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 10px;
  }

  .food.w--current {
    padding-left: 15px;
  }

  .heading-2 {
    max-width: none;
  }

  .hero-text {
    font-size: 50px;
    line-height: 65px;
  }

  .div-block-3 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .code-embed {
    padding: 18px;
  }

  .happy-hour {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 10px;
  }

  .happy-hour.w--current {
    padding-left: 15px;
  }

  .div-block-49 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .footer-sec {
    padding-top: 5vh;
  }

  .div-block-48 {
    align-self: auto;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-us-card-description-2 {
    text-align: center;
  }

  .contact-us-card-description-2.newp {
    margin-top: 6px;
    font-weight: 300;
  }

  .contact-us-card-description-2.new3 {
    margin-top: 0;
  }

  .bold-text-6 {
    font-size: 14px;
  }

  .heading-10 {
    margin-top: 0;
  }

  .heading-11 {
    margin-top: 22px;
  }

  .section-2 {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}

#w-node-c5c53e53-3002-c5a9-1500-dad923d568b4-700e5534 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end;
}

#w-node-_443cfe6f-edf5-d1df-cdaf-01778151f08c-700e5534 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b92473d4-7a13-893d-5bc7-3bac9adc7a96-700e5534, #w-node-_8e5637bf-5a79-c907-7688-4d4846944ce3-700e5534 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_07ac1b98-14bf-8be2-6c86-8b6df1bb27a3-700e5534 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_54906546-98f2-0465-196e-4f7aab02f1e7-700e5534 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_11e7340d-4c6a-80ae-75b6-b39ebd54eadf-bd54eadd, #w-node-_11e7340d-4c6a-80ae-75b6-b39ebd54eae7-bd54eadd, #w-node-_11e7340d-4c6a-80ae-75b6-b39ebd54eafb-bd54eadd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_11e7340d-4c6a-80ae-75b6-b39ebd54eb0a-bd54eadd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_784d2569-b3cb-1e7a-4353-ff151468a5bb-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_784d2569-b3cb-1e7a-4353-ff151468a5c0-700e553b, #w-node-_2ec8ca66-3bf0-6454-0089-9db83626ef29-700e553b, #w-node-d9eb2ebc-cbc4-09ce-3e8c-1b2a4dd9dad0-700e553b, #w-node-b5dfde43-1b23-1d92-813f-8dcdb9a93217-700e553b, #w-node-c6f0e618-31a2-b372-6e41-7c4d332f0605-700e553b, #w-node-_45e67545-2f0c-0b93-2b02-eed243830944-700e553b, #w-node-_329897c3-998a-dc45-00f5-d8c6e71a217f-700e553b, #w-node-_15db2c04-508e-e94c-1f85-6e0ecbd45312-700e553b, #w-node-_3f169c5c-32bf-dc51-483d-37eb4ec72576-700e553b, #w-node-_453e2dc7-1285-cb58-6286-42e56a35147c-700e553b, #w-node-_777c46fa-ee84-889d-e9be-d5b282708bcc-700e553b {
  justify-self: end;
}

#w-node-e79bf649-e988-34bc-458b-125f54482e8d-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e79bf649-e988-34bc-458b-125f54482e92-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482e99-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482ea0-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482ea7-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482eae-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482eb5-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482ebc-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482ec3-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482eca-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482ed1-700e553b, #w-node-e79bf649-e988-34bc-458b-125f54482ed8-700e553b {
  justify-self: end;
}

#w-node-_6fefd732-dfa8-6549-819b-a314a61592b4-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6fefd732-dfa8-6549-819b-a314a61592b9-700e553b, #w-node-_6fefd732-dfa8-6549-819b-a314a61592c0-700e553b, #w-node-_6fefd732-dfa8-6549-819b-a314a61592d5-700e553b, #w-node-_6fefd732-dfa8-6549-819b-a314a61592dc-700e553b, #w-node-_6fefd732-dfa8-6549-819b-a314a61592e3-700e553b, #w-node-b34c86f4-4e89-d9eb-198f-d2542a468ec9-700e553b, #w-node-b34c86f4-4e89-d9eb-198f-d2542a468ed0-700e553b, #w-node-_40d9818f-d525-8f87-8905-8f0902520a3b-700e553b, #w-node-b96888f4-89e0-3868-6a4c-a18a6f6ae4a2-700e553b, #w-node-dc8bbf61-1d45-ed97-6fba-b635579e9bdb-700e553b, #w-node-_087309ce-f9fe-eb55-5f8c-5eeadca8cb8d-700e553b, #w-node-_087309ce-f9fe-eb55-5f8c-5eeadca8cb94-700e553b, #w-node-_087309ce-f9fe-eb55-5f8c-5eeadca8cb9b-700e553b, #w-node-_087309ce-f9fe-eb55-5f8c-5eeadca8cba2-700e553b, #w-node-_087309ce-f9fe-eb55-5f8c-5eeadca8cba9-700e553b, #w-node-_70e0e89a-1a6a-dad4-7945-5ba126b41ff0-700e553b, #w-node-_6039c24d-523c-ef16-23fc-38c71a4dd229-700e553b, #w-node-_0cc5f796-baf5-cae8-235d-9392378a95dd-700e553b, #w-node-_589f7ca8-436e-86a0-8a0d-2efd66ead8ba-700e553b, #w-node-_6932940e-095c-33c9-9545-85202fe078c7-700e553b, #w-node-febf5b75-767d-3002-0a6e-6217dda1177c-700e553b, #w-node-_5579ea2d-d65f-c7b2-183d-ea3dd5b61c4b-700e553b, #w-node-_0f4f0f4e-379d-d4b4-6a27-a90e00bbab5c-700e553b, #w-node-_0c67a247-f09f-8fcb-4b11-03434428747d-700e553b, #w-node-_09a81600-bf7e-86f2-dbea-939f0efc9142-700e553b, #w-node-d484f04e-4f23-f249-f64b-68929102d6b1-700e553b, #w-node-d484f04e-4f23-f249-f64b-68929102d6b7-700e553b, #w-node-d484f04e-4f23-f249-f64b-68929102d6bd-700e553b, #w-node-d484f04e-4f23-f249-f64b-68929102d6c3-700e553b {
  justify-self: end;
}

#w-node-_9712b496-a1a9-ebf5-bb30-6a0d9dc531d0-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9712b496-a1a9-ebf5-bb30-6a0d9dc531d5-700e553b, #w-node-_9712b496-a1a9-ebf5-bb30-6a0d9dc531dc-700e553b, #w-node-_9712b496-a1a9-ebf5-bb30-6a0d9dc531e3-700e553b, #w-node-_9712b496-a1a9-ebf5-bb30-6a0d9dc531ea-700e553b, #w-node-_9712b496-a1a9-ebf5-bb30-6a0d9dc531f1-700e553b, #w-node-_9712b496-a1a9-ebf5-bb30-6a0d9dc531f8-700e553b, #w-node-_9712b496-a1a9-ebf5-bb30-6a0d9dc531ff-700e553b, #w-node-_9712b496-a1a9-ebf5-bb30-6a0d9dc53206-700e553b {
  justify-self: end;
}

#w-node-cbd439ac-2a6f-3770-509b-fae736902c59-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cbd439ac-2a6f-3770-509b-fae736902c5e-700e553b {
  justify-self: end;
}

#w-node-d765d958-b5d5-2d86-b8ad-b54787fc6785-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d765d958-b5d5-2d86-b8ad-b54787fc678a-700e553b {
  justify-self: end;
}

#w-node-_59ab3832-14eb-9cdd-344a-7673fc3ebb7a-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_59ab3832-14eb-9cdd-344a-7673fc3ebb7f-700e553b {
  justify-self: end;
}

#w-node-cd593adf-ebca-5d10-e271-9e5dc456bf11-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cd593adf-ebca-5d10-e271-9e5dc456bf16-700e553b {
  justify-self: end;
}

#w-node-_7934c2d9-3592-1307-ef4d-fb15ddfa3aaf-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7934c2d9-3592-1307-ef4d-fb15ddfa3ab2-700e553b {
  justify-self: end;
}

#w-node-b5af5b88-0dbc-8b42-90b5-548aa96c25de-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b5af5b88-0dbc-8b42-90b5-548aa96c25e1-700e553b {
  justify-self: end;
}

#w-node-e12ae3fb-0e45-9b23-850d-89707ec10ddb-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e12ae3fb-0e45-9b23-850d-89707ec10dde-700e553b {
  justify-self: end;
}

#w-node-_77252ae1-d7ac-1281-01fe-7602d03086d7-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77252ae1-d7ac-1281-01fe-7602d03086da-700e553b {
  justify-self: end;
}

#w-node-_9f82c0a4-c98c-f9c8-d5e2-a76c60a77bbd-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9f82c0a4-c98c-f9c8-d5e2-a76c60a77bc0-700e553b {
  justify-self: end;
}

#w-node-e96034ab-97f6-41b7-85cb-e224b0900a3e-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e96034ab-97f6-41b7-85cb-e224b0900a41-700e553b {
  justify-self: end;
}

#w-node-_4384b613-f912-05f0-dc84-95ff8da88d69-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4384b613-f912-05f0-dc84-95ff8da88d6c-700e553b {
  justify-self: end;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede31-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede34-700e553b {
  justify-self: end;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede36-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede39-700e553b {
  justify-self: end;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede3b-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede3e-700e553b {
  justify-self: end;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede40-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede43-700e553b {
  justify-self: end;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede45-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede48-700e553b {
  justify-self: end;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede4a-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede4d-700e553b {
  justify-self: end;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede4f-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede52-700e553b {
  justify-self: end;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede54-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c401aafa-e175-c54b-0943-8a95d1aede57-700e553b {
  justify-self: end;
}

#w-node-ca171d87-6aee-c9bb-804d-204d2a8d38c0-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ca171d87-6aee-c9bb-804d-204d2a8d38c3-700e553b {
  justify-self: end;
}

#w-node-_3202ca46-4607-0c82-f6e8-09fca3ae981a-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3202ca46-4607-0c82-f6e8-09fca3ae981f-700e553b {
  justify-self: end;
}

#w-node-_3202ca46-4607-0c82-f6e8-09fca3ae9821-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3202ca46-4607-0c82-f6e8-09fca3ae9826-700e553b {
  justify-self: end;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf148fd-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14900-700e553b {
  justify-self: end;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14902-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14905-700e553b {
  justify-self: end;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14907-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf1490a-700e553b {
  justify-self: end;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf1492a-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf1492d-700e553b {
  justify-self: end;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf1492f-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14932-700e553b {
  justify-self: end;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14934-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14937-700e553b {
  justify-self: end;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14939-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf1493c-700e553b {
  justify-self: end;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf1493e-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14941-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14943-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f131a8f-8299-82b5-a880-1c9cbdf14946-700e553b {
  justify-self: end;
}

#w-node-_1ecd1cf1-c66a-3433-d90b-cc3cc2432059-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1ecd1cf1-c66a-3433-d90b-cc3cc243205e-700e553b {
  justify-self: end;
}

#w-node-_583db3f3-c7c1-95c9-1391-90c78fe4b612-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_583db3f3-c7c1-95c9-1391-90c78fe4b617-700e553b {
  justify-self: end;
}

#w-node-_0750413c-80fb-257b-cdd7-bad4f46ccea9-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0750413c-80fb-257b-cdd7-bad4f46cceae-700e553b {
  justify-self: end;
}

#w-node-_5bc722d8-5729-0c65-c66e-944f1f1606ad-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5bc722d8-5729-0c65-c66e-944f1f1606b2-700e553b {
  justify-self: end;
}

#w-node-_0d5bbace-5c5f-a2bd-38aa-b8c1ebbdc1e4-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0d5bbace-5c5f-a2bd-38aa-b8c1ebbdc1e9-700e553b {
  justify-self: end;
}

#w-node-c29e407d-2960-86d7-b305-24323da62889-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c29e407d-2960-86d7-b305-24323da6288e-700e553b {
  justify-self: end;
}

#w-node-ab6b8004-c006-415c-6ad9-e1e8b2aae025-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ab6b8004-c006-415c-6ad9-e1e8b2aae02a-700e553b {
  justify-self: end;
}

#w-node-d7bbed8b-c644-5eeb-6662-88e83999f7a1-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d7bbed8b-c644-5eeb-6662-88e83999f7a6-700e553b {
  justify-self: end;
}

#w-node-_7b17c099-1488-cd0f-26c6-9a7c3258a868-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7b17c099-1488-cd0f-26c6-9a7c3258a86d-700e553b {
  justify-self: end;
}

#w-node-_937e68a0-4e8d-ca25-e18c-c3948ad441ae-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_937e68a0-4e8d-ca25-e18c-c3948ad441b3-700e553b {
  justify-self: end;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe1669a-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe1669f-700e553b {
  justify-self: end;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe166a1-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe166a6-700e553b {
  justify-self: end;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe166a8-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe166ad-700e553b {
  justify-self: end;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe166af-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe166b4-700e553b {
  justify-self: end;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe166b6-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5085b6cd-b418-62be-89c7-3fbb1fe166bb-700e553b {
  justify-self: end;
}

#w-node-ae775406-56b7-5c33-77ae-1584a3712d7a-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae775406-56b7-5c33-77ae-1584a3712d7f-700e553b {
  justify-self: end;
}

#w-node-cc9fbff6-358d-f9ed-9be7-71488e4661a9-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cc9fbff6-358d-f9ed-9be7-71488e4661ae-700e553b {
  justify-self: end;
}

#w-node-a41a4d15-db04-8b84-50f0-5b6e67523aef-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a41a4d15-db04-8b84-50f0-5b6e67523af4-700e553b {
  justify-self: end;
}

#w-node-_058be26f-f860-e0b4-7667-bce865524366-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_058be26f-f860-e0b4-7667-bce86552436b-700e553b {
  justify-self: end;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc663-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc668-700e553b {
  justify-self: end;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc66a-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc66f-700e553b {
  justify-self: end;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc671-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc676-700e553b {
  justify-self: end;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc678-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc67d-700e553b {
  justify-self: end;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc67f-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc684-700e553b {
  justify-self: end;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc686-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4fce087-4b42-7c1b-d132-34adc78cc68b-700e553b {
  justify-self: end;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577af-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577b4-700e553b {
  justify-self: end;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577b6-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577bb-700e553b {
  justify-self: end;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577bd-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577c2-700e553b {
  justify-self: end;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577c4-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577c9-700e553b {
  justify-self: end;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577cb-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9260ff6f-936c-0638-886e-dc707c9577d0-700e553b {
  justify-self: end;
}

#w-node-accd96a3-ebbf-7558-83b5-bea928f3a60f-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-accd96a3-ebbf-7558-83b5-bea928f3a614-700e553b {
  justify-self: end;
}

#w-node-_4a7295b1-6f3b-045b-8a84-19820287f1c3-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4a7295b1-6f3b-045b-8a84-19820287f1c8-700e553b {
  justify-self: end;
}

#w-node-_618a95ce-4bf3-9d62-a3f6-2d265c27a105-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_618a95ce-4bf3-9d62-a3f6-2d265c27a10a-700e553b {
  justify-self: end;
}

#w-node-a4a3fbd2-f61d-0722-c6c5-15270ebcc523-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a4a3fbd2-f61d-0722-c6c5-15270ebcc528-700e553b {
  justify-self: end;
}

#w-node-cda29a00-a30c-b828-038e-fb628c5fbdee-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cda29a00-a30c-b828-038e-fb628c5fbdf3-700e553b {
  justify-self: end;
}

#w-node-b93015f5-c150-3852-89a3-a9e001ddb5f7-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b93015f5-c150-3852-89a3-a9e001ddb5fc-700e553b {
  justify-self: end;
}

#w-node-a34e533e-ef04-bad3-7164-2ec60808155e-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a34e533e-ef04-bad3-7164-2ec608081563-700e553b {
  justify-self: end;
}

#w-node-b45b419d-647f-cbcd-480f-bec4a5d28c9b-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b45b419d-647f-cbcd-480f-bec4a5d28ca0-700e553b {
  justify-self: end;
}

#w-node-b8bab2d8-50e5-1c79-f538-6c32feed1ed4-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b8bab2d8-50e5-1c79-f538-6c32feed1ed9-700e553b {
  justify-self: end;
}

#w-node-e36e1128-84dd-90e5-5239-2fc22a113a02-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e36e1128-84dd-90e5-5239-2fc22a113a07-700e553b {
  justify-self: end;
}

#w-node-fc235136-9a6a-d108-5b29-405a07e33764-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fc235136-9a6a-d108-5b29-405a07e33769-700e553b {
  justify-self: end;
}

#w-node-_62d16083-8f0a-8ad1-f9df-a0e9fbe02930-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62d16083-8f0a-8ad1-f9df-a0e9fbe02935-700e553b {
  justify-self: end;
}

#w-node-a80f937e-032c-9e3a-1bf9-00a88e0a48ec-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a80f937e-032c-9e3a-1bf9-00a88e0a48f1-700e553b {
  justify-self: end;
}

#w-node-_023ba0af-4999-d9a9-33de-addabea6f91d-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_023ba0af-4999-d9a9-33de-addabea6f922-700e553b {
  justify-self: end;
}

#w-node-_6abc0fc3-a4d7-158b-2f7f-50979f8fe41e-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6abc0fc3-a4d7-158b-2f7f-50979f8fe423-700e553b {
  justify-self: end;
}

#w-node-f1c170ed-1b98-72ba-a544-b1d015aca3ab-700e553b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1c170ed-1b98-72ba-a544-b1d015aca3b0-700e553b {
  justify-self: end;
}

#w-node-_21b50fdd-6d54-c246-b3a0-3e14cad834d6-700e553f, #w-node-_21b50fdd-6d54-c246-b3a0-3e14cad834f7-700e553f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_07ac1b98-14bf-8be2-6c86-8b6df1bb27a3-700e5534 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_54906546-98f2-0465-196e-4f7aab02f1e7-700e5534 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_11e7340d-4c6a-80ae-75b6-b39ebd54eb0a-bd54eadd {
    justify-self: start;
  }

  #w-node-_854e04d7-716e-c35a-e291-5a3f2e7e37f0-700e553f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8e5637bf-5a79-c907-7688-4d4846944ce3-700e5534 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_854e04d7-716e-c35a-e291-5a3f2e7e37f0-700e553f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_54906546-98f2-0465-196e-4f7aab02f1e7-700e5534 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_11e7340d-4c6a-80ae-75b6-b39ebd54eb0a-bd54eadd {
    justify-self: start;
  }
}


