:root {
  --dark-green: #0c7a3e;
  --green: #39b54a;
  --light-green: #8cc63f;
  --white: white;
  --black: black;
}

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

.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;
}

@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 {
  color: var(--dark-green);
  font-family: Alkatra, sans-serif;
  font-size: 14px;
  line-height: 1.25;
}

.navbar-no-shadow {
  z-index: 999;
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(45deg, var(--green), var(--light-green));
  justify-content: center;
  align-items: center;
  display: flex;
  position: sticky;
  inset: 0% 0% auto;
  box-shadow: 0 2px 5px 5px #0c7a3ebf;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular {
  width: 100%;
  max-width: 100%;
}

.navbar-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-brand {
  align-items: center;
  display: flex;
}

.nav-menu-wrapper {
  width: 100%;
}

.nav-menu {
  grid-column-gap: 7.5px;
  grid-row-gap: 7.5px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.nav-link {
  color: #fff;
  text-align: center;
  letter-spacing: .25px;
  padding: 5px 10px;
  font-family: Alkatra, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all .5s;
  display: block;
}

.nav-link:hover {
  color: var(--dark-green);
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  background-color: #ffffff40;
  border-radius: 15px;
}

.nav-link.w--current {
  color: var(--dark-green);
  text-shadow: 0 0 2px var(--white);
}

.image {
  max-width: 275px;
  margin-left: -10px;
  margin-right: -10px;
}

.image-2 {
  max-width: 75px;
}

.home-page-slider-section {
  border-bottom: 5px solid var(--dark-green);
}

.slide {
  background-image: linear-gradient(180deg, #0000 50%, var(--light-green)), url('../images/hanging-baskets.jpg');
  background-position: 0 0, 50% 65%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.home-page-slider {
  height: 60vh;
}

.slide-2 {
  background-image: linear-gradient(180deg, #0000 50%, var(--light-green)), url('../images/Aubergine-Elegance-IMG_8629.jpg');
  background-position: 0 0, 50% 40%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slide-3 {
  background-image: linear-gradient(180deg, #0000 50%, var(--light-green)), url('../images/hanging-baskets2.jpg');
  background-position: 0 0, 50% 65%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slide-4 {
  background-image: linear-gradient(180deg, #0000 50%, var(--light-green)), url('../images/poinsettas.jpg');
  background-position: 0 0, 50% 25%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slide-5 {
  background-image: linear-gradient(180deg, #0000 50%, var(--light-green)), url('../images/succulents2.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

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

.slide-6 {
  background-image: linear-gradient(180deg, #0000 50%, var(--light-green)), url('../images/Brilliant-Sunset-IMG_8657.jpg');
  background-position: 0 0, 50% 25%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.always-growing-div {
  justify-content: flex-end;
  align-items: flex-end;
  height: 60vh;
  display: flex;
}

.always-growing {
  max-width: 40%;
  padding-bottom: 20px;
  padding-right: 20px;
}

.slide-nav {
  display: block;
}

.about-us-container {
  max-width: 1140px;
  padding-left: 40px;
  padding-right: 40px;
}

.floral-white-overlay-section {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(#ffffffb3, #ffffffb3), url('../images/69223279_xl_normal_none.png');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  padding-top: 40px;
  padding-bottom: 40px;
}

.grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  place-items: stretch stretch;
}

.heading {
  color: var(--dark-green);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Alkatra, sans-serif;
  line-height: 1.25;
}

.heading.white, .heading.contact {
  color: var(--white);
}

.heading.delivery {
  letter-spacing: .5px;
  font-size: 20px;
  font-weight: 400;
}

.heading.subhead {
  margin-bottom: 10px;
  font-size: 30px;
}

.heading.shadow {
  text-shadow: 0 0 5px #fff;
}

.owner-photo {
  border: 5px solid var(--dark-green);
  box-shadow: 0 2px 5px 2px var(--dark-green);
  border-radius: 25px;
}

.about-us-text-div {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-us-paragraph {
  color: var(--dark-green);
  text-align: center;
  text-shadow: 0 0 5px #fff;
  margin-bottom: 0;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.about-us-image-div {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.what-we-offer-section {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(60deg, var(--green), var(--light-green));
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: block;
}

.div-block-4 {
  max-width: 100%;
}

.grid-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.div-block-5 {
  border-top: 5px solid var(--dark-green);
  border-right: 5px solid var(--dark-green);
  border-bottom: 5px solid var(--dark-green);
  box-shadow: 0 2px 5px 2px var(--dark-green);
  background-image: url('../images/Urn_Wreath_Surround_Bright_IMG_8822.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 0 25px 25px 0;
  height: 50vh;
}

.div-block-6 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.offer-list-text {
  color: var(--white);
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.what-we-offer-list {
  color: var(--white);
}

.what-we-offer-list.florist {
  color: var(--dark-green);
  text-shadow: 0 0 5px #fff;
}

.columns {
  flex: 0 auto;
  align-self: center;
}

.section-2 {
  background-image: linear-gradient(60deg, var(--green), var(--light-green));
  justify-content: center;
  align-items: center;
  height: 25px;
  display: flex;
}

.container-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25px;
  display: flex;
}

.text-block-2 {
  color: var(--white);
  text-align: center;
  font-family: Alkatra, sans-serif;
  font-size: 12px;
}

.contact-us-section {
  background-image: linear-gradient(#ffffffbf, #ffffffbf), url('../images/AdobeStock_105283236.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 40px;
  padding-bottom: 0;
}

.contact-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  place-items: stretch stretch;
  margin-bottom: 40px;
}

.like-follow-div {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border-left: 5px solid var(--dark-green);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.facebook-icon, .instagram-icon {
  width: 75px;
}

.individual-contact {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact {
  color: var(--dark-green);
  text-align: center;
  font-family: Alkatra, sans-serif;
  font-size: 30px;
  line-height: 1.25;
}

.phone-icon {
  width: 75px;
}

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

.image-6 {
  width: 75px;
}

.social-media-div {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.code-embed {
  border-top: 5px solid var(--dark-green);
  border-bottom: 5px solid var(--dark-green);
  width: 100%;
  height: 460px;
  margin-top: 20px;
}

.link-block, .link-block-2 {
  text-decoration: none;
}

.divider-150px {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(#ffffffa6, #ffffffa6), url('../images/succulents2_1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 150px;
  display: flex;
}

.divider-150px.auto-height {
  height: auto;
}

.gallery-section {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(#ffffffbf, #ffffffbf), url('../images/AdobeStock_494429818.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, 600px;
  background-attachment: scroll, scroll;
  padding-top: 20px;
  padding-bottom: 20px;
}

.lightbox-link-8 {
  background-image: url('../images/Bright-Blooms2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-10 {
  background-image: url('../images/brilliant-sunset2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-13 {
  background-image: url('../images/All-Creatures_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-20 {
  background-image: url('../images/flowers1_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-24 {
  background-image: url('../images/flowers5_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-18 {
  background-image: url('../images/cubist-gem_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-9 {
  background-image: url('../images/brilliant-sunset_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-3 {
  background-image: url('../images/All-Creatures3_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-5 {
  background-image: url('../images/AubergineAngel_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-26 {
  background-image: url('../images/flowers7_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-21 {
  background-image: url('../images/flowers2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-17 {
  background-image: url('../images/casket-right_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-23 {
  background-image: url('../images/flowers4_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-25 {
  background-image: url('../images/flowers6_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-15 {
  background-image: url('../images/casket-left_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-16 {
  background-image: url('../images/casket_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-4 {
  background-image: url('../images/AubergineAngel2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-22 {
  background-image: url('../images/flowers3_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.grid-5 {
  grid-column-gap: 16px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
  place-content: center;
  place-items: center;
  max-width: 90%;
  margin: 20px auto;
  display: none;
}

.lightbox-link-19 {
  background-image: url('../images/cubist-gem2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-6 {
  background-image: url('../images/Bright-Blooms_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-12 {
  background-image: url('../images/Bucks-Billy-Balls_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-2 {
  background-image: url('../images/All-Creatures2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-7 {
  background-image: url('../images/AubergineElegance_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-14 {
  background-image: url('../images/Bucks-Billy-Balls2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-27 {
  background-image: url('../images/flowers8_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-28 {
  background-image: url('../images/flowers10_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-29 {
  background-image: url('../images/flowers11_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-30 {
  background-image: url('../images/Green-Meadow3_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-31 {
  background-image: url('../images/Green-Meadow2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-32 {
  background-image: url('../images/Green-Meadow_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-33 {
  background-image: url('../images/heavenly-embrace_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-34 {
  background-image: url('../images/heavenly-embrace2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-35 {
  background-image: url('../images/heavenly-embrace3_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-36 {
  background-image: url('../images/heavenly-embrace4_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-37 {
  background-image: url('../images/Patriotic-urn_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-38 {
  background-image: url('../images/Patriotic-urn2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-39 {
  background-image: url('../images/urn-surround-bright_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-40 {
  background-image: url('../images/urn-surround-bright2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-41 {
  background-image: url('../images/urn-surround-bright3_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-42 {
  background-image: url('../images/pink-giganza_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.slide-7 {
  background-image: url('../images/IMG_5240.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider {
  border-bottom: 5px solid var(--dark-green);
  height: 60vh;
}

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

.slide-8 {
  background-image: url('../images/IMG_5249.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-9 {
  background-image: url('../images/IMG_5225.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-10 {
  background-image: url('../images/IMG_5237.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-11 {
  background-image: url('../images/IMG_5251.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-12 {
  background-image: url('../images/IMG_5242.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-5 {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(#ffffff80, #ffffff80), url('../images/69223279_xl_normal_none.png');
  background-position: 0 0, 50% 75%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 40px;
  padding-bottom: 40px;
}

.lightbox-link-44 {
  background-image: url('../images/flowers9_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.section-6 {
  height: 60vh;
}

.slider-2 {
  border-bottom: 5px solid var(--dark-green);
  height: 60vh;
}

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

.slide-13 {
  background-image: url('../images/hanging-baskets.jpg');
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-14 {
  background-image: url('../images/poinsettas.jpg');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-15 {
  background-image: url('../images/greenhouse2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-16 {
  background-image: url('../images/slider-spli.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.delivery-section {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(45deg, var(--green), var(--light-green));
}

.delivery-section.delivery-page {
  background-color: var(--white);
  background-image: none;
}

.delivery-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.delivery-container.classes {
  flex-flow: column;
  justify-content: center;
}

.heading-2 {
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Alkatra, sans-serif;
}

.container-7 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide-17 {
  background-image: url('../images/greenhouse3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-18 {
  background-image: url('../images/greenhouse5.jpg');
  background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-6 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
}

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

.image-7 {
  border: 5px solid var(--dark-green);
  box-shadow: 0 2px 5px 2px var(--dark-green);
  border-radius: 25px;
}

.list-item {
  color: var(--dark-green);
  padding-bottom: 5px;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
}

.list {
  text-shadow: 0 0 5px #fff;
}

.grid-7 {
  grid-template-rows: auto;
}

.image-8 {
  border: 5px solid var(--dark-green);
  box-shadow: 0 2px 5px 2px var(--dark-green);
  border-radius: 25px;
}

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

.section-7 {
  border-bottom: 5px solid var(--dark-green);
  background-image: url('../images/building-outside.jpg');
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}

.section-8 {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(#ffffff80, #ffffff80), url('../images/69223279_xl_normal_none.png');
  background-position: 0 0, 50% 75%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.gift-shop-list {
  color: var(--dark-green);
  margin-top: 0;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
}

.list-item-2 {
  text-shadow: 0 0 5px #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}

.list-div {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

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

.gift-shop-slider {
  background-color: var(--white);
  width: 100%;
  height: 500px;
}

.button {
  border: 3px solid var(--dark-green);
  background-color: #fff0;
  background-image: linear-gradient(60deg, var(--green), var(--light-green));
  color: var(--dark-green);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-shadow: 0 0 5px #fff;
  border-radius: 25px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 1s;
}

.button:hover {
  box-shadow: 0 2px 5px 3px var(--dark-green);
  background-color: #fff;
  background-image: none;
}

.text-block-3 {
  color: var(--dark-green);
  font-family: Alkatra, sans-serif;
  font-size: 18px;
}

.lightbox-link-45 {
  background-image: url('../images/pink-giganza2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-46 {
  background-image: url('../images/pink-giganza3_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-47 {
  background-image: url('../images/pink-giganza4_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-48 {
  background-image: url('../images/pure-love_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-49 {
  background-image: url('../images/pure-love2_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-50 {
  background-image: url('../images/succulent-garden_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.lightbox-link-51 {
  background-image: url('../images/world-in-his-hands_thumb.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 5px 5px #0003;
}

.timeline-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1140px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.timeline {
  max-width: 75%;
  margin-top: 10px;
}

.section-10 {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(#ffffffbf, #ffffffbf), url('../images/AdobeStock_307596523.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 40px;
  padding-bottom: 40px;
}

.container-11 {
  padding-left: 30px;
  padding-right: 30px;
}

.next-class-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 5px solid var(--dark-green);
  background-color: #8cc63fbf;
  border-radius: 25px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px 5px #0c7a3e80;
}

.next-class-div.no-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: stretch;
}

.next-class-div.flower-care {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: stretch;
  padding-left: 10px;
  padding-right: 10px;
}

.next-class-div.flower-care.coming-soon {
  margin-top: 40px;
}

.next-class-text {
  color: var(--dark-green);
  text-align: center;
  font-family: Alkatra, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.class-details-text {
  color: var(--dark-green);
  text-align: center;
  font-family: Alkatra, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.class-details-text.register {
  font-size: 18px;
}

.class-details-text.title {
  font-size: 38px;
  font-weight: 700;
}

.class-details-text.description {
  font-size: 18px;
  line-height: 1.25;
}

.class-details-text.date-and-time {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.class-details-text.delivery-note {
  font-size: 14px;
}

.slider-section {
  height: 600px;
}

.class-photo-slider {
  border-bottom: 5px solid var(--dark-green);
  background-color: var(--white);
  height: 600px;
}

.slide-19 {
  background-image: url('../images/20240809_184342.jpg');
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-20 {
  background-image: url('../images/20240809_191208.jpg');
  background-position: 50% 10%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-21 {
  background-image: url('../images/20240809_192231.jpg');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-22 {
  background-image: url('../images/collage1.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-23 {
  background-image: url('../images/collage2.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-24 {
  background-image: url('../images/collage3.jpg');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-block-5 {
  color: var(--dark-green);
  text-align: center;
  font-family: Alkatra, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.link {
  color: var(--dark-green);
  text-decoration: underline;
}

.link-2 {
  color: var(--dark-green);
  text-decoration: none;
}

.follow-us-text {
  color: var(--dark-green);
  text-align: center;
  letter-spacing: .5px;
  padding-top: 10px;
  font-family: Alkatra, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.125;
}

.slide-25 {
  background-image: url('../images/SG-gift-shop-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-29 {
  background-image: url('../images/giftshop-slider5.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.container-12 {
  justify-content: flex-end;
  align-items: stretch;
  max-width: 100%;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 0;
  display: flex;
}

.slide-33 {
  background-image: url('../images/lambsear-collage1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-34 {
  background-image: url('../images/20240906_200826.jpg');
  background-position: 50% 35%;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.slide-36 {
  background-image: url('../images/lambsear-collage2.jpg');
  background-position: 50% 35%;
  background-size: cover;
}

.gift-shop-div {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gift-shop-slider-div {
  border-top: 5px solid var(--dark-green);
  border-bottom: 5px solid var(--dark-green);
  border-left: 5px solid var(--dark-green);
  width: 75%;
  margin-left: 20px;
}

.slide-37 {
  background-image: url('../images/napkin-slider4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-38 {
  background-image: url('../images/napkin-slider2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-39 {
  background-image: url('../images/napkin-slider3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-40 {
  background-image: url('../images/napkin-slider4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-41 {
  background-image: url('../images/spooky-slider1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-42 {
  background-image: url('../images/spooky-slider2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-43 {
  background-image: url('../images/spooky-slider3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-10 {
  max-width: 50%;
  display: none;
}

.slide-44 {
  background-image: url('../images/pumpkin-slider1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-45 {
  background-image: url('../images/pumpkin-slider2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-46 {
  background-image: url('../images/pumpkin-slider3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-47 {
  background-image: url('../images/pumpkin-slider4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-us-button-div {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.review-section {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(45deg, var(--green), var(--light-green));
  padding-top: 40px;
  padding-bottom: 40px;
}

.review-heading-container {
  max-width: 1140px;
  padding-left: 40px;
  padding-right: 40px;
}

.review-slider {
  background-color: #fff0;
  width: 100%;
  height: 400px;
}

.review-div {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.review-container {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.review-paragraph, .review-name {
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.review-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.review-photo-div {
  border: 5px solid var(--dark-green);
  border-radius: 25px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
}

.review-photo-div._1 {
  background-image: url('../images/ErinM.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
}

.review-photo-div._2 {
  background-image: url('../images/DouglasL.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.slide-48 {
  background-image: url('../images/SW-long-low_slider1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-49 {
  background-image: url('../images/SW-long-low_slider2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-50 {
  background-image: url('../images/SW-long-low_slider3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.delivery-page-section {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(#ffffffbf, #ffffffbf), url('../images/AdobeStock_307596523.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 40px;
  padding-bottom: 40px;
}

.delivery-container-main {
  flex-flow: column;
  align-items: stretch;
  max-width: 940px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.delivery-heading-div {
  border-bottom: 5px solid var(--green);
  padding-bottom: 15px;
}

.delivery-town-list {
  color: var(--dark-green);
  text-align: center;
  letter-spacing: .5px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  list-style-type: none;
}

.delivery-list {
  padding-left: 0;
}

.delivery-list-grid {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: start center;
  width: 100%;
  margin-top: 10px;
}

.delivery-map {
  border: 5px solid var(--dark-green);
  border-radius: 25px;
  max-width: 75%;
  box-shadow: 0 2px 5px 5px #0c7a3e80;
}

.delivery-map-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 25px;
  display: flex;
}

.delivery-map-caption {
  color: var(--dark-green);
  text-align: center;
  text-transform: uppercase;
  margin-top: 10px;
  font-family: Alkatra, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.delivery-heading {
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  margin-top: 0;
  font-family: Alkatra, sans-serif;
  font-weight: 700;
  line-height: 1;
}

.delivery-home-section {
  background-color: var(--dark-green);
  padding-top: 20px;
  padding-bottom: 20px;
}

.delivery-home-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1140px;
  padding-left: 40px;
  padding-right: 40px;
}

.delivery-home-div {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 75%;
  display: flex;
}

.delivery-icon {
  width: 150px;
}

.delivery-icon-div {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.delivery-note-text {
  color: var(--dark-green);
  text-align: center;
  letter-spacing: .5px;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.delivery-phone-number {
  color: var(--dark-green);
  text-align: center;
  letter-spacing: 1px;
  margin-top: 5px;
  font-family: Alkatra, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.delivery-phone {
  text-decoration: none;
}

.delivery-note-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tabs-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tab-link-tab-1 {
  background-color: var(--green);
}

.tab-link-tab-1.w--current {
  background-color: var(--dark-green);
}

.tab-link-tab-2 {
  background-color: var(--green);
}

.tab-link-tab-2.w--current {
  background-color: var(--dark-green);
}

.tab-text {
  color: var(--white);
  letter-spacing: .5px;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.slide-51 {
  background-image: url('../images/faux-wreath-slider1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-52 {
  background-image: url('../images/faux-wreath-slider2.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-53 {
  background-image: url('../images/faux-wreath-slider3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-54 {
  background-image: url('../images/live-wreath-slider1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-55 {
  background-image: url('../images/live-wreath-slider2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-56 {
  background-image: url('../images/live-wreath-slider3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-57 {
  background-image: url('../images/live-wreath-slider4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.button_order-now {
  border: 2px solid var(--dark-green);
  background-color: var(--dark-green);
  border-radius: 20px;
  flex: 0 auto;
  display: inline-flex;
}

.button_order-now:hover {
  border: 2px solid var(--dark-green);
  background-color: var(--light-green);
  color: var(--dark-green);
}

.button_order-now.center {
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Alkatra, sans-serif;
  line-height: 1.25;
}

.slide-58 {
  background-image: url('../images/2025-springwreath1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-59 {
  background-image: url('../images/2025-springwreath2.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-60 {
  background-image: url('../images/2025-springwreath3.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.lightbox {
  border-radius: 25px;
  width: 150px;
  height: 150px;
  box-shadow: 0 2px 5px 5px #00000040;
}

.gallery-grid {
  grid-column-gap: 10px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  place-items: center;
}

.tab-pane-tab-1 {
  padding: 10px;
}

.gallery-subhead {
  color: var(--dark-green);
  text-align: center;
  font-family: Alkatra, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.heading-div {
  margin-bottom: 20px;
}

.tabs-content {
  margin-top: 10px;
}

.container-14 {
  margin-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.columns-2 {
  border-bottom: 5px solid var(--green);
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.grave-pricing {
  color: var(--dark-green);
  font-family: Alkatra, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.grave-pricing.description {
  font-size: 16px;
  font-weight: 400;
}

.grave-pricing.price {
  font-size: 22px;
}

.pricing-div {
  justify-content: space-between;
  display: flex;
}

.column {
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.grave-photo-container {
  width: 100%;
  max-width: none;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.columns-3 {
  height: 100%;
  overflow: hidden;
}

.column-2 {
  border: 3px solid var(--dark-green);
  flex-flow: column;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.image-11 {
  width: 100%;
  max-width: none;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  color: var(--white);
  letter-spacing: .25px;
  padding: 5px 25px 5px 5px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  z-index: 500;
  background-color: var(--dark-green);
}

.nav-dropdown-link {
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Alkatra, sans-serif;
  transition: all .5s;
}

.nav-dropdown-link:hover {
  color: var(--light-green);
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-color: var(--light-green);
  outline-offset: 0px;
  color: var(--light-green);
  border-radius: 5px;
  outline-width: 2px;
  outline-style: solid;
}

.nav-dropdown-link.w--current {
  color: var(--light-green);
  font-weight: 700;
}

.div-block-15 {
  flex-flow: column;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.column-3 {
  padding-left: 10px;
  padding-right: 10px;
}

.flower-care-heading {
  color: var(--dark-green);
  text-align: center;
  margin-top: 0;
  font-family: Alkatra, sans-serif;
  font-size: 28px;
  line-height: 1.25;
}

.flower-care-heading.caps {
  text-transform: uppercase;
  font-size: 32px;
  text-decoration: underline;
}

.flower-care-heading.coming-soon {
  margin-bottom: 0;
}

.paragraph {
  color: var(--dark-green);
  text-align: center;
  font-family: Alkatra, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.slide-61 {
  background-image: url('../images/SG-gift-shop-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-62 {
  background-image: url('../images/SG-gift-shop-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-63 {
  background-image: url('../images/SG-gift-shop-4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.new-class-alert-section {
  border-bottom: 5px solid var(--dark-green);
  background-image: linear-gradient(#ffffffbf, #ffffffbf), url('../images/AdobeStock_307596523.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.new-class-alert-container {
  padding-left: 20px;
  padding-right: 20px;
}

.alert-title {
  text-align: center;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.alert-div {
  flex-flow: column;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.more-coming-soon {
  text-align: center;
  padding-top: 220px;
  padding-bottom: 220px;
  font-size: 24px;
}

.gallery-container {
  padding-left: 10px;
  padding-right: 10px;
}

.tab-link-tab-3 {
  background-color: var(--green);
}

.tab-link-tab-3.w--current {
  background-color: var(--dark-green);
}

.event-photo-grid {
  grid-column-gap: 10px;
  grid-row-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 991px) {
  .navbar-wrapper {
    justify-content: space-between;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: var(--green);
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .menu-button {
    background-color: var(--dark-green);
    color: var(--white);
    border-radius: 10px;
    padding: 20px;
  }

  .menu-button.w--open {
    background-color: var(--white);
    color: var(--dark-green);
  }

  .always-growing {
    max-width: 60%;
  }

  .about-us-container {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .what-we-offer-list {
    padding-left: 20px;
  }

  .facebook-icon, .instagram-icon {
    width: 75px;
  }

  .contact {
    font-size: 25px;
  }

  .phone-icon, .image-6 {
    width: 50px;
  }

  .lightbox-link-8, .lightbox-link-10, .lightbox-link-13, .lightbox-link-20, .lightbox-link-24, .lightbox-link-18, .lightbox-link-9, .lightbox-link-3, .lightbox-link-5, .lightbox-link-26, .lightbox-link-21, .lightbox-link-17, .lightbox-link-23, .lightbox-link-25, .lightbox-link-15, .lightbox-link-16, .lightbox-link-4, .lightbox-link-22 {
    width: 200px;
    height: 200px;
  }

  .grid-5 {
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .lightbox-link-19, .lightbox-link-6, .lightbox-link-12, .lightbox-link-2, .lightbox-link-7, .lightbox-link-14, .lightbox-link-27, .lightbox-link-28, .lightbox-link-29, .lightbox-link-30, .lightbox-link-31, .lightbox-link-32, .lightbox-link-33, .lightbox-link-34, .lightbox-link-35, .lightbox-link-36, .lightbox-link-37, .lightbox-link-38, .lightbox-link-39, .lightbox-link-40, .lightbox-link-41, .lightbox-link-42, .lightbox-link-44 {
    width: 200px;
    height: 200px;
  }

  .container-7, .container-8 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-8 {
    flex-flow: column;
  }

  .list-div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lightbox-link-45, .lightbox-link-46, .lightbox-link-47, .lightbox-link-48, .lightbox-link-49, .lightbox-link-50, .lightbox-link-51 {
    width: 200px;
    height: 200px;
  }

  .timeline {
    max-width: 100%;
  }

  .slider-section, .class-photo-slider {
    height: 400px;
  }

  .container-12 {
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    max-width: 100%;
    margin-left: 0;
    padding-right: 20px;
  }

  .gift-shop-slider-div {
    border-right: 5px solid var(--dark-green);
    width: 100%;
    margin-left: 0;
  }

  .review-container {
    max-width: none;
    padding-left: 60px;
    padding-right: 60px;
  }

  .delivery-list-grid {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .gallery-grid {
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .nav-dropdown {
    flex-flow: column;
    display: flex;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .navbar-no-shadow-container {
    padding: 5px 10px;
  }

  .navbar-wrapper {
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    align-content: center;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .image {
    max-width: 225px;
    display: none;
  }

  .image-2 {
    max-width: 100px;
  }

  .heading {
    line-height: 1;
  }

  .heading.contact {
    font-size: 18px;
  }

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

  .div-block-5 {
    border-right-width: 0;
    border-radius: 0;
    height: 75vh;
  }

  .text-block-2 {
    font-size: 10px;
  }

  .contact-us-container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .like-follow-div {
    border-left-width: 0;
  }

  .lightbox-link-8, .lightbox-link-10, .lightbox-link-13, .lightbox-link-20, .lightbox-link-24, .lightbox-link-18, .lightbox-link-9, .lightbox-link-3, .lightbox-link-5, .lightbox-link-26, .lightbox-link-21, .lightbox-link-17, .lightbox-link-23, .lightbox-link-25, .lightbox-link-15, .lightbox-link-16, .lightbox-link-4, .lightbox-link-22 {
    width: 150px;
    height: 150px;
  }

  .grid-5 {
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: minmax(175px, 1fr) minmax(175px, 1fr);
    justify-content: center;
    place-items: center;
    max-width: 75%;
  }

  .lightbox-link-19, .lightbox-link-6, .lightbox-link-12, .lightbox-link-2, .lightbox-link-7, .lightbox-link-14, .lightbox-link-27, .lightbox-link-28, .lightbox-link-29, .lightbox-link-30, .lightbox-link-31, .lightbox-link-32, .lightbox-link-33, .lightbox-link-34, .lightbox-link-35, .lightbox-link-36, .lightbox-link-37, .lightbox-link-38, .lightbox-link-39, .lightbox-link-40, .lightbox-link-41, .lightbox-link-42, .lightbox-link-44 {
    width: 150px;
    height: 150px;
  }

  .grid-6, .grid-7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .section-8 {
    flex-flow: column;
  }

  .gift-shop-slider {
    height: 350px;
  }

  .lightbox-link-45, .lightbox-link-46, .lightbox-link-47, .lightbox-link-48, .lightbox-link-49, .lightbox-link-50, .lightbox-link-51 {
    width: 150px;
    height: 150px;
  }

  .timeline-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slider-section, .class-photo-slider {
    height: 300px;
  }

  .image-10 {
    max-width: 75%;
  }

  .review-slider {
    height: 750px;
  }

  .review-container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .review-grid {
    grid-template-rows: minmax(auto, 1fr) auto;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .review-photo-div._1 {
    justify-content: center;
    align-items: center;
  }

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

  .delivery-map {
    max-width: 100%;
  }

  .delivery-home-div {
    width: 100%;
  }

  .delivery-icon {
    width: 50%;
  }

  .tabs-menu {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
  }

  .tab-link-tab-1, .tab-link-tab-1.w--current {
    width: 100%;
  }

  .tab-link-tab-2 {
    text-align: center;
    width: 100%;
  }

  .tab-text {
    text-align: center;
  }

  .gallery-grid {
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-14 {
    margin-top: 20px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
    position: absolute;
  }

  .list-item-4 {
    align-self: center;
  }

  .gallery-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-link-tab-3.w--current {
    width: 100%;
  }

  .event-photo-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  .navbar-no-shadow-container {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu {
    background-color: var(--green);
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-button.w--open {
    background-color: var(--white);
    color: var(--dark-green);
  }

  .image {
    display: none;
  }

  .always-growing {
    max-width: 75%;
  }

  .about-us-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-rows: auto auto;
    place-items: start center;
  }

  .heading {
    font-size: 32px;
  }

  .owner-photo {
    max-width: 90%;
  }

  .about-us-paragraph {
    font-size: 16px;
  }

  .about-us-image-div {
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

  .div-block-5 {
    border-right-width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .section-2, .container-2 {
    height: 35px;
  }

  .text-block-2 {
    text-align: center;
    font-size: 10px;
    line-height: 1.25;
  }

  .facebook-icon, .instagram-icon {
    width: 50px;
  }

  .individual-contact {
    flex-flow: column;
  }

  .grid-5 {
    grid-template-columns: minmax(125px, .25fr) minmax(125px, .25fr);
    grid-auto-flow: row;
    justify-content: center;
    margin-top: 20px;
  }

  .lightbox-link-27, .lightbox-link-28, .lightbox-link-29, .lightbox-link-30, .lightbox-link-31, .lightbox-link-32, .lightbox-link-33, .lightbox-link-34, .lightbox-link-35, .lightbox-link-36, .lightbox-link-37, .lightbox-link-38, .lightbox-link-39, .lightbox-link-40, .lightbox-link-41, .lightbox-link-42 {
    width: 150px;
    height: 150px;
  }

  .delivery-container.classes {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-2 {
    font-size: 22px;
  }

  .list-div {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .container-11 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slider-section, .class-photo-slider {
    height: 200px;
  }

  .image-10 {
    max-width: 100%;
  }

  .review-container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .delivery-list-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .event-photo-grid {
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }
}

#w-node-_76fefa93-a200-6e7c-1235-9c3f9dff6bfe-c22fd587 {
  place-self: center;
}

#w-node-_83a85eaf-36ca-ebae-dadd-84c6e304c8f9-c22fd587 {
  align-self: center;
}

#w-node-_9d96806e-7e1f-235a-5f20-80e26de25374-c22fd587, #w-node-_49228c62-c8d6-0bef-090d-48a139eda06b-c22fd587 {
  place-self: center;
}

#w-node-_4b5c77af-0c51-f788-eadf-ea746de66e92-11a903ca, #w-node-_46e2c201-086e-7189-8a2a-7bfcf14de3d7-035bc5c8, #w-node-_46e2c201-086e-7189-8a2a-7bfcf14de3e1-035bc5c8, #w-node-_46e2c201-086e-7189-8a2a-7bfcf14de3eb-035bc5c8, #w-node-_46e2c201-086e-7189-8a2a-7bfcf14de3ef-035bc5c8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1adf827a-b945-54a5-21b8-99c3a841d0e0-035bc5c8, #w-node-_0e85a465-9e61-90df-4c13-b4e336e99135-035bc5c8, #w-node-a630e9b8-15d5-d4bd-8c2e-79b1aba9aeb1-035bc5c8, #w-node-_02010c36-daf5-9985-107c-f6c720dcddec-035bc5c8, #w-node-_0e64b6bb-0db1-c31c-ce9c-1755bd2ed024-035bc5c8, #w-node-_0c34c081-c365-2c99-399d-ca37675c4be1-035bc5c8, #w-node-_4d05ba95-9464-ada9-b693-0b52773a0334-035bc5c8, #w-node-ccb02366-1f17-926a-6f42-2ac8f9b5710f-035bc5c8 {
  place-self: center;
}

#w-node-_906fae3b-01fc-1420-8284-c84598ac604b-b480bc0a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


