html {
  padding: 0px;
  margin: 0px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
body {
  margin: 0px;
  padding: 0px;
  animation: 0.5s ease-in-out 0s 1 fadeIn;
  background-color: #f9f7ea;
}

#content-container {
  box-sizing: border-box;
  display: grid;
  height: fit-content;
  max-width: 1200px;
  grid-template-columns: 12% 25% 22% 25% 12%;
}
@media screen and (max-width: 1080px) {
  #content-container {
    grid-template-columns: 3% 28% 30% 28% 3%;
  }
}
#content-container {
  column-gap: 1%;
  grid-template-rows: repeat(auto-fit, min(250px, 10vh));
  row-gap: 20px;
  grid-auto-rows: 10vh;
  place-items: center;
  place-content: stretch;
}
#content-container .full-width-padded {
  grid-column: 3/4;
}
#content-container .button {
  cursor: pointer;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  height: 50px;
  width: min(75%, 250px);
  display: block;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border-radius: 3px;
  z-index: 25;
  background-color: #620a16;
  color: #f9f7ea;
  background: rgba(98, 10, 22, 0.86);
  border: 1px solid rgba(217, 217, 217, 0.8);
}
#content-container .button a {
  text-decoration: none;
  color: #f9f7ea;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
}
#content-container .white-button {
  cursor: pointer;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  height: 50px;
  width: min(75%, 250px);
  display: block;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border-radius: 3px;
  z-index: 25;
  background-color: #f9f7ea;
  color: #620a16;
  border-color: #620a16;
  border-width: 0.5px;
  border-style: solid;
}
#content-container .white-button a {
  text-decoration: none;
  color: #620a16;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
}
#content-container .banner-button {
  z-index: 25;
}

@media screen and (max-width: 600px) {
  #content-container {
    display: flex;
    flex-direction: column;
    height: fit-content;
    margin-right: 10px;
    margin-left: 10px;
  }
}
.full-width {
  grid-column: 1/6;
}

.centered {
  grid-column: 3;
}

@font-face {
  font-family: AlverataBl;
  src: local("AlverataBl"), url("../../pre/static/AlverataBl.otf") format("opentype");
}
@font-face {
  font-family: Greatly;
  src: local("Greatly Clean"), url("../../pre/static/Greatly Clean.otf");
}
:root {
  pointer-events: auto;
}

figure {
  margin: 0;
}

#logo {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 15vw;
  height: auto;
}
#logo img {
  width: 15vw;
  height: auto;
}

@media screen and (max-width: 600px) {
  #logo {
    width: 30vw;
    left: 35vw;
  }
  #logo img {
    width: 30vw;
  }
}
h1 {
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  text-align: center;
  font-weight: 800;
  font-size: 84px;
  line-height: 0.9;
  color: #620a16;
}
h1 strong {
  font-family: Greatly;
  font-weight: 400;
}

h2 {
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  text-align: center;
  font-size: 36px;
  font-weight: 200;
  line-height: 1.1;
  color: #52453c;
}
h2 strong {
  font-family: Greatly, Georgia, "Times New Roman", Times, serif;
}

h3 {
  font-family: Greatly, Georgia, "Times New Roman", Times, serif;
  text-align: left;
  font-size: 48px;
  color: #52453c;
  line-height: 0.9;
}

h4 {
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  text-align: left;
  font-size: 24px;
  line-height: 0.9;
  color: #52453c;
}

p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  line-height: 1;
  color: #52453c;
  font-size: 1em;
}

li {
  font-size: 1em;
  padding: 22px auto;
  font-family: Georgia, "Times New Roman", Times, serif;
}

#footer {
  grid-area: -1/1/-1/6;
  display: flex;
  flex-direction: column;
  background-color: #52453c;
  width: 100vw;
  position: relative;
  left: calc((100vw - 1200px) / 2 * -1);
  box-sizing: border-box;
  height: fit-content;
  place-self: start stretch;
}
#footer #footer-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#footer #footer-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#footer img {
  height: 125px;
  width: fit-content;
  margin: auto;
}
#footer h2 {
  color: #f9f7ea;
}
#footer #addresses {
  text-align: center;
  color: #f9f7ea;
  text-decoration: none;
  padding-bottom: 10vh;
}
#footer #addresses a {
  color: #f9f7ea;
  text-decoration: underline;
}
@keyframes link-hover {
  0% {
    color: #f9f7ea;
  }
  100% {
    color: rgba(249, 247, 234, 0.7333333333);
  }
}
#footer #addresses a:hover {
  animation: 0.25s ease-in 0s both link-hover;
  color: #52453c;
}

#social-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  height: 100px;
  box-sizing: border-box;
  margin: 0px 5vw 8vh 5vw;
}
#social-icons figure {
  align-content: center;
  width: 45px;
  height: auto;
  padding: 20px;
}
#social-icons img {
  width: 45px;
  height: auto;
}
#social-icons #wedding-wire {
  width: 90px;
  height: auto;
}
#social-icons #wedding-wire img {
  width: 90px;
  height: auto;
}

@media screen and (max-width: 600px) {
  #footer {
    width: 100vw;
    color: #f9f7ea;
    background-color: #52453c;
    display: flex;
    flex-direction: column;
    place-self: center;
    left: 0;
  }
  #footer h2 {
    color: #f9f7ea;
  }
  #footer #footer-left {
    width: 100vw;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  #footer #footer-right {
    width: 100vw;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  #footer img {
    width: 100%;
    height: auto;
  }
  #footer #addresses {
    text-align: center;
    text-decoration: none;
    padding-bottom: 10vh;
  }
  h1 {
    font-weight: 600;
    font-size: 52px;
    padding: 18px 0 18px;
  }
}
#nav {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  width: 100vw;
  justify-content: space-around;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  place-self: center stretch;
  z-index: 65;
  background: rgba(249, 247, 234, 0.7333333333);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
#nav #nav-logo {
  z-index: 99;
  width: 100%;
  max-width: 200px;
  border-radius: 5px;
}
#nav #nav-left, #nav #nav-right {
  width: 35vw;
}
#nav .main-nav-links {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#nav .main-nav-links div {
  display: flex;
  position: relative;
  margin-top: auto;
  border-left: #f9f7ea;
  border-right: #f9f7ea;
}
#nav .main-nav-links .nav-link {
  display: block;
  padding: 45px 3vw;
}
#nav a {
  text-decoration: none;
  color: #620a16;
}

#mobile-nav {
  display: none;
}

@media screen and (max-width: 600px) {
  #nav {
    display: none;
  }
  .nav-shape.clicked {
    background-color: #f9f7ea !important;
    z-index: 100;
  }
  #mobile-nav {
    z-index: 99;
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    box-sizing: border-box;
    height: 25px;
    width: 25px;
  }
  #mobile-nav #mobile-nav-top-rectangle {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #620a16;
    width: 25.5px;
    height: 2px;
  }
  #mobile-nav #mobile-nav-mid-rectangle {
    position: fixed;
    top: 22.5px;
    right: 15px;
    background-color: #620a16;
    width: 22.1px;
    height: 2px;
  }
  #mobile-nav #mobile-nav-bottom-rectangle {
    position: fixed;
    top: 30px;
    right: 15px;
    background-color: #620a16;
    width: 25.5px;
    height: 2px;
  }
  #mobile-nav .nav-clicked {
    background-color: #620a16;
    right: 25px;
  }
  #mobile-nav #mobile-nav-overlay {
    position: fixed;
    height: 100vh;
    width: 100vw;
    left: 110%;
    top: 0px;
    opacity: 0;
    background-color: #620a16;
    color: #f9f7ea;
  }
  #mobile-nav #mobile-nav-overlay #mobile-nav-links {
    margin: 25% 5% 15% 5%;
    height: 60%;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    text-align: center;
  }
  #mobile-nav #mobile-nav-overlay #mobile-nav-links .nav-link {
    opacity: 0;
    color: #f9f7ea;
    text-decoration: none;
    font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
  }
}
#tour-button-overlay {
  z-index: 99;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  width: 100vw;
  height: 50px;
  font-family: AlverataBl;
  display: block;
  margin: auto;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: rgba(98, 10, 22, 0.86);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border: 1px solid rgba(217, 217, 217, 0.8);
}
#tour-button-overlay a {
  color: #f9f7ea;
  width: 100%;
  text-align: center;
  font-size: 18px;
}

@media screen and (min-width: 600px) {
  #tour-button-overlay {
    position: fixed;
    width: 235px;
    bottom: 3vh;
    right: 5vw;
    border-radius: 3px;
  }
  @keyframes colorFade {
    from {
      background-color: #620a16;
      height: 50px;
      width: 235px;
    }
    to {
      background-color: #52453c;
      height: 52px;
      width: 238px;
    }
  }
  #tour-button-overlay:hover {
    animation: 0.2s ease-in 0s forwards colorFade;
  }
}
.detail-card {
  grid-column: span 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "img img img" "img img img" "div div div" "div div div" "div div div";
  height: 90%;
  padding: 15px;
  margin-bottom: 25px;
  box-sizing: border-box;
  border-radius: 3px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.detail-card figure, .detail-card img {
  grid-area: img;
  margin: 10px auto;
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-sizing: border-box;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.detail-card .card-text {
  grid-area: div;
  place-self: start stretch;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: repeat(4, 75px);
}
.detail-card .card-text h3 {
  grid-row: 1;
  margin: 25px 0px;
}
.detail-card .card-text > p {
  grid-row: 3;
}
.detail-card .card-text .button {
  place-self: center;
  margin: 35px auto;
  grid-row: 4;
}
.detail-card .card-text .button p {
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  color: #f9f7ea;
}

@media screen and (max-width: 600px) {
  .detail-card .card-text > p {
    grid-row: 2;
  }
}
#venue-features {
  grid-area: 14/1/18/6;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 75px repeat(3, 225px);
  background-color: transparent;
  color: #620a16;
  place-self: start center;
}
#venue-features h2 {
  grid-column: span 3;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  line-height: 1;
  text-align: center;
  color: #52453c;
}
#venue-features .venue-feature {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
#venue-features .venue-feature .inner-div p {
  text-align: center;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  font-weight: 200;
  font-size: 14px;
  margin-left: 15%;
  margin-right: 15%;
  color: #52453c;
  line-height: 1.1;
}
#venue-features .left-border::before {
  content: "";
  height: calc(100% - 50px);
  width: 1px;
  top: 30px;
  background-color: #620a16;
  position: absolute;
  left: 0;
}
#venue-features .venue-feature::after {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #620a16;
  position: absolute;
  bottom: 0;
  left: 10%;
}

@media screen and (max-width: 600px) {
  #venue-features {
    padding: 35px 3vw 25px 3vw;
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    margin-top: 25px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  #venue-features .venue-feature {
    width: 100%;
    height: 150px;
  }
  #venue-features .venue-feature .inner-div p {
    margin: 35px 10%;
  }
  #venue-features .venue-feature::before {
    display: none;
  }
  #venue-features :last-child::after {
    display: none;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 600px) {
  #venue-features .no-bottom::after {
    display: none;
  }
}
#content-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  grid-template-rows: repeat(300, max(1vh, 12.5px));
  row-gap: 3px;
}

@media screen and (max-width: 600px) {
  #content-container {
    grid-template-rows: repeat(465, max(1vh, 12.5px));
    display: grid;
    grid-template-columns: 3% 28% 34% 28% 3%;
    row-gap: 3px;
  }
}
.venue-space-hidden {
  display: none;
  visibility: hidden;
}

#hero-head {
  position: absolute;
  width: 50vw;
  top: 60vh;
  z-index: 1;
}
#hero-head h1 {
  text-shadow: rgba(249, 247, 234, 0.5) 0px 0px 15px;
  line-height: 1.1;
}

#wedding-hero {
  display: grid;
  grid-area: 3/1/50/6;
  z-index: -50;
  place-self: start center;
}
#wedding-hero figure,
#wedding-hero img {
  mask-image: linear-gradient(to bottom, black 0%, #aaaaaa 30%, transparent 100%);
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  #wedding-hero {
    grid-area: 4/1/40/6;
    place-self: start;
    height: 100%;
  }
  #wedding-hero figure, #wedding-hero img {
    height: 100%;
    mask-image: linear-gradient(to bottom, black 0%, #aaaaaa 30%, transparent 100%);
  }
  #hero-head {
    width: 97vw;
    top: 50vh;
  }
  #hero-head h1 {
    line-height: 1;
    margin-top: 0;
    font-size: 2.2rem;
  }
}
#leading-logo-block {
  grid-area: 75/2/119/5;
  z-index: -20;
  width: auto;
  height: 100%;
}
#leading-logo-block figure#leading-logo {
  width: 100%;
  height: 100%;
}
#leading-logo-block figure#leading-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  #leading-logo-block {
    grid-area: 85/2/110/5;
    position: relative;
    top: -15%;
    max-width: 96vw;
    width: auto;
  }
  #leading-logo-block figure#leading-logo {
    max-width: 96vw;
  }
  #leading-logo-block figure#leading-logo img {
    place-self: center;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  #wedding-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #wedding-hero h1 {
    display: flex;
  }
  #wedding-hero #hero-grid {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  #wedding-hero #hero-grid .left-image,
  #wedding-hero #hero-grid .right-image,
  #wedding-hero #hero-grid .middle-image {
    height: 150px;
    width: 100%;
  }
  #wedding-hero #hero-grid #wedding-buttons {
    display: flex;
    flex-direction: column;
    width: 75%;
  }
}
#wedding-summary {
  grid-area: 68/2/90/5;
  place-self: center;
  font-size: 1.2rem;
}
#wedding-summary p {
  text-align: center;
}
#wedding-summary figure#separator-1 {
  width: 250px;
  height: auto;
  object-fit: cover;
  place-self: center;
}
#wedding-summary figure#separator-1 img {
  width: 100%;
  height: auto;
}
#wedding-summary figure#separator-2 {
  width: 250px;
  height: auto;
  object-fit: cover;
  place-self: center;
  rotate: 180deg;
}
#wedding-summary figure#separator-2 img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  #wedding-summary {
    grid-area: 47/2/77/5;
  }
  #wedding-summary p {
    text-align: left;
  }
}
#summary-grid {
  display: none;
  height: 100%;
  place-self: start;
  max-width: 100%;
  grid-area: 110/1/140/6;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
}
#summary-grid figure,
#summary-grid img {
  grid-column: span 1;
  grid-row: span 5;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#summary-grid figure.right-image,
#summary-grid .right-image img {
  grid-row: span 4;
}
#summary-grid .button {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 600px) {
  #summary-grid {
    grid-area: 70/2/90/5;
  }
}
#venue-features {
  place-self: center start;
  grid-area: 98/1/143/6;
  background-color: transparent;
}

#venue-features-booking-button {
  grid-area: 146/3/150/4;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  place-self: center center;
}
#venue-features-booking-button .button {
  width: 100%;
  height: 100%;
  place-self: center;
}

@media screen and (max-width: 600px) {
  #venue-features {
    grid-area: 87/1/187/6;
    place-self: center center;
    padding-top: 0;
    margin-top: 0;
  }
  #venue-features h2 {
    margin-top: 0;
  }
  #venue-features-booking-button {
    grid-row: 186/190;
    grid-column: 2/5;
    place-self: start center;
    padding: 0;
    height: 100%;
  }
  #venue-features-booking-button .button {
    height: 100%;
  }
}
#spaces-heading {
  grid-area: 154/3/158/4;
}

#spaces-gallery {
  grid-area: 156/2/199/5;
  column-gap: 10px;
  display: grid;
  grid-template-columns: 50px 1fr 1fr 1fr 50px;
  grid-auto-flow: column;
  width: 125%;
  height: 100%;
  box-sizing: border-box;
  overflow: visible;
  padding: 15px 15px 0px 15px;
  place-self: center;
}
#spaces-gallery #spaces-gallery-inner {
  grid-column-start: 2;
  grid-column-end: 5;
  padding-left: 1vw;
  padding-right: 1vw;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
#spaces-gallery .detail-card {
  position: relative;
  width: 33%;
  flex-shrink: 0;
  margin-right: 10px;
}
#spaces-gallery .detail-card figure, #spaces-gallery .detail-card img {
  margin: 0;
}
#spaces-gallery figure.detail-card {
  margin: 0;
}
#spaces-gallery {
  /* .detail-card:nth-child(n + 5) {
      display: none;
  }*/
}

@media screen and (max-width: 600px) {
  #spaces-heading {
    grid-row: 200/202;
    grid-column: 2/5;
  }
  #spaces-gallery {
    grid-row: 205/235;
    grid-column: 1/6;
    grid-template-columns: 32px 1fr 32px;
    height: 550px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
  #spaces-gallery h3 {
    font-size: 24px;
    text-align: center;
  }
  #spaces-gallery #spaces-gallery-inner {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  #spaces-gallery .detail-card {
    width: 100%;
    height: 90%;
  }
  #spaces-gallery .detail-card p {
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
  }
  #spaces-gallery .detail-card figure,
  #spaces-gallery .detail-card img {
    height: 150px;
  }
}
#food-header {
  grid-area: 202/2/206/5;
}

#omni-drinks h3 {
  margin-top: 0px;
}
#omni-drinks {
  display: grid;
  grid-area: 208/2/233/5;
  font-size: 1.2rem;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: subgrid;
}
#omni-drinks figure,
#omni-drinks img {
  grid-area: 1/1/25/5;
  mask-image: linear-gradient(to right, black 0%, #aaaaaa 10%, transparent 90%);
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -50;
}
#omni-drinks .banner-right-text {
  grid-area: 3/3/25/7;
  place-self: center;
}

@media screen and (max-width: 600px) {
  #food-header {
    grid-row: 237/241;
  }
  #omni-drinks h2 {
    margin-top: 0;
  }
}
#vendor-list {
  grid-area: 236/2/297/5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  place-self: start;
  height: 870px;
  width: 100%;
}
#vendor-list .vendor-query {
  display: block;
  width: 100%;
  gap: 10px;
}
#vendor-list .vendor-query .vendor-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0px;
  margin: 0px;
  gap: 35px;
}
#vendor-list .vendor-query .vendor-block li {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 2fr 1fr 2fr;
  width: 100%;
  height: 350px;
  gap: 15px;
  align-items: center;
}
#vendor-list .vendor-query .vendor-block figure,
#vendor-list .vendor-query .vendor-block img {
  grid-row: 1/2;
  place-self: center;
  width: 150px !important;
  height: 150px !important;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#vendor-list .vendor-query .vendor-block .vendor-name {
  grid-row: 2/3;
  margin: 0px;
  font-size: 26px;
  text-align: center;
}
#vendor-list .vendor-query .vendor-block .vendor-description {
  grid-row: 3/4;
  text-align: center;
  place-self: start;
}

@media screen and (max-width: 600px) {
  #omni-drinks {
    grid-row: 244/275;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    height: fit-content;
  }
  #omni-drinks figure, #omni-drinks img {
    grid-area: 1/1/12/7;
    mask-image: none;
    border-radius: 3px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  }
  #omni-drinks h3 {
    font-size: 2.4rem;
    margin-top: 12px;
    margin-bottom: 0;
  }
  #omni-drinks p {
    margin-bottom: 0;
    font-size: 1rem;
  }
  #omni-drinks .banner-right-text {
    margin-left: 14px;
    grid-column: 1/7;
    grid-row: 13/27;
  }
  #omni-drinks .transparent-right {
    background: linear-gradient(to right, rgba(249, 247, 234, 0), rgba(249, 247, 234, 0.7333333333) 30%, #f9f7ea 80%);
  }
  #vendor-list {
    grid-row: 280/440;
    height: fit-content;
  }
  #vendor-list h3 {
    text-align: center;
  }
  #vendor-list .vendor-query .vendor-block {
    display: flex;
    flex-direction: column;
  }
}

/*# sourceMappingURL=weddings.css.map */
