﻿:root {
  --blue: #1b2840;
  --gray: #d9d9d9;
  --green: #b1edd3;
}

@font-face {
  font-family: FS Albert;
  src: url("FSAlbert_Regular.otf") format("opentype");
}

@font-face {
  font-family: museo-slab;
  font-weight: 700;
  src: url(9e018664d42fadf58c15.woff2) format("woff2"), local("arial");
  font-display: swap;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "FS Albert";
}

h1,
h2,
h3,
h4 {
  font-family: museo-slab;
}

.garden-map-mobile {
  display: none;
}

.cookies-banner {
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 99;
  bottom: 0px;
  background-color: white;
  width: 100%;
  gap: 40px;
  /* padding: 0px 20px; */
  flex-direction: row;
  align-items: center;
  box-shadow: -1px -7px 7px black;
}

.cookies-banner > h4 {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.loading-placeholder {
  min-height: 100px;
  width: 100px;
  border-radius: 5px;
  margin: 10px;
  background: hsla(210, 1%, 45%, 1);
  background: linear-gradient(
    135deg,
    hsla(210, 1%, 45%, 1) 0%,
    hsla(0, 0%, 95%, 1) 58%
  );
  background: -moz-linear-gradient(
    135deg,
    hsla(210, 1%, 45%, 1) 0%,
    hsla(0, 0%, 95%, 1) 58%
  );
  background: -webkit-linear-gradient(
    135deg,
    hsla(210, 1%, 45%, 1) 0%,
    hsla(0, 0%, 95%, 1) 58%
  );
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#737475", endColorstr="#F1F1F1", GradientType=1 );
  animation: loading 1.5s infinite alternate-reverse;
}

.loading-placeholder-container {
  display: flex;
  flex-direction: row;
  width: 400px;
  flex-wrap: wrap;
}

svg.shield.odd {
  left: 0px;
  position: absolute;
  z-index: 1;
}

.floating-shield1 {
  animation: float1 2.5s infinite alternate-reverse;
}

.floating-shield2 {
  animation: float2 3.5s infinite alternate-reverse;
}

.splash-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: white;
  background-color: #495366;
  position: relative;
  overflow: hidden;
}

.splash-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.divider {
  padding: 15px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
}

.divider > svg {
  transition: 0.3s all;
}

.divider > svg:hover {
  cursor: pointer;
  filter: drop-shadow(0px 2px 2px grey);
}

.tile-graphic {
  display: flex;
  align-items: center;
}

.homepage-tile:nth-of-type(odd) > .tile-graphic > img {
  margin-left: 40px;
  box-shadow: -40px 0px #59d8a1;
  border-radius: 0px 40px 40px 0px;
  margin-left: 100px;
}

.homepage-tile:nth-of-type(even) > .tile-graphic > img {
  margin-left: 40px;
  box-shadow: 40px 0px #59d8a1;
  border-radius: 40px 0px 0px 40px;
  margin-right: 100px;
}

@keyframes loading {
  from {
    background-size: 100px;
  }

  to {
    background-size: 400px;
  }
}

@keyframes float1 {
  from {
  }

  to {
    transform: translate(10px, 10px);
  }
}

@keyframes float2 {
  from {
  }

  to {
    transform: translate(20px, 10px);
  }
}

.plantBed {
  cursor: pointer;
}

.plantBed:hover {
  fill: #268ba7;
}

.hamburger {
  display: none;
}

.garden-map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link-back {
  align-self: baseline;
}

div#garden-bed {
  margin: 20px;
}

.garden-map-section {
  display: grid;
  /* flex-direction: row; */
  grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.map-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
}

div#bed-identifier {
  padding: 20px;
  background-color: var(--blue);
  color: white;
  font-family: "museo-slab";
  border-radius: 5px;
  border-bottom: 2px solid #d9d9d9;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

p#bed-description {
  font-family: "FS Albert";
  padding: 20px;
}

.welcome-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: blanchedalmond;
  justify-items: center;
  min-height: 300;
  align-items: center;
}

.welcome-banner-message {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 50px;
}

.welcome-banner-message > h1 {
  font-family: museo-slab;
}

a.welcome-banner-link,
button.welcome-banner-link {
  /* padding: 15; */
  margin: 15 0;
  background-color: #1b2840;
  color: #59d8a1;
  border-radius: 5px;
  text-align: center;
  width: fit-content;
  text-decoration: none;
  font-size: large;
  height: 50px;
  display: flex;
  align-items: center;
  padding-right: 15px;
  padding-left: 0px;
  transition: 0.5s all;
  font-family: museo-slab;
  border: none;
  cursor: pointer;
}

p.banner-success {
  border: 2px solid #59d8a1;
  border-radius: 5px;
  padding: 16px;
  background-color: #74dfb1;
  font-size: 22px;
  color: white;
}

p.banner-failure {
  border: 2px solid #ff0505;
  border-radius: 5px;
  padding: 16px;
  background-color: #f13c3c;
  font-size: 22px;
  color: white;
}

.infoMessageWrapper {
  align-items: center;
  align-self: center;
  border: 1px solid #f13c3c;
  border-radius: 5px;
  background-color: white;
  display: flex;
  gap: 20px;
  margin: 10px 0px;
  padding: 15px;
}

.infoMessageIcon {
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  border: 2px solid #f13c3c;
  color: #f13c3c;
  display: flex;
  font-weight: bold;
  height: 25px;
  justify-content: center;
  min-width: 25px;
  font-size: 18px;
}

.infoMessage {
  font-family: "FS Albert", sans-serif;
  font-weight: 500;
  line-height: 25px;
  color: red;
  font-size: 18px;
}

.infoMessage a {
  text-decoration: underline;
}

a.welcome-banner-link:hover {
  text-decoration: underline;
}

a.welcome-banner-link > svg,
button.welcome-banner-link > svg {
  width: 50px;
  padding-right: 20px;
  transition: 0.5s all;
}

a.welcome-banner-link:hover > svg,
button.welcome-banner-link:hover > svg {
  width: 70px;
  padding-right: 0px;
  transition: 0.5s all;
}

.navbarwrapper {
  height: 7.5rem;
  background-color: var(--blue);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 0px 0px;
  align-items: flex-end;
  top: 0px;
  z-index: 99;
}

.navbarwrapper-mini {
  position: sticky;
  min-width: 100%;
  display: flex;
  align-items: center;
  height: auto;
  justify-content: space-around;
}

.navbarwrapper-mini > div > a > img {
  height: 50px;
  margin: 10px 0px;
}

.logoColumn {
  align-self: center;
  margin: 0px 20px;
}

.navigationPanel {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* width: 80%; */
}

.navigationList {
  display: flex;
  /* align-items: flex-end; */
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  color: white;
}

li.navigationListItem {
  margin: 0px 20px 0px 20px;
  color: white;
  margin-top: 10px;
  margin-bottom: 10px;
}

li.navigationListItem > a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: border 100ms ease-out;
}

li.navigationListItem > a:hover {
  border-bottom: 4px solid #ff9862;
  color: #ff9862;
}

.hero-banner__shield-shadow-1.animation-enabled {
  z-index: 11;
  animation: hero-banner-shield1 1s ease-in-out 1s forwards;
  position: absolute;
  opacity: 0;
}
.hero-banner__shield-shadow-2.animation-enabled {
  z-index: 13;
  animation: hero-banner-shield2 1s ease-in-out 1s forwards;
  position: absolute;
  opacity: 0;
}
.hero-banner__shield-shadow-3.animation-enabled {
  z-index: 14;
  animation: hero-banner-shield3 1s ease-in-out 1s forwards;
  position: absolute;
  opacity: 0;
}
.hero-banner__shield-shadow-4.animation-enabled {
  z-index: 15;
  animation: hero-banner-shield4 1s ease-in-out 1s forwards;
  position: absolute;
  opacity: 0;
}
.hero-banner__shield-shadow-5.animation-enabled {
  z-index: 16;
  animation: hero-banner-shield5 1s ease-in-out 1s forwards;
  position: absolute;
  opacity: 0;
}

.hero-banner--no-image .hero-banner__shield-shadow {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0;
}

.svg-fill-midnight-blue-80pc-tint path {
  fill: #495366;
}

@keyframes hero-banner-shield1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.75);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1.75);
  }
}

@keyframes hero-banner-shield2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.75);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1.5);
  }
}

@keyframes hero-banner-shield3 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1.25);
  }
}

@keyframes hero-banner-shield4 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.25);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@keyframes hero-banner-shield5 {
  0% {
    transform: translateY(32.5%) scale(0.05);
  }

  100% {
    transform: translateY(35%) scale(0.05);
  }
}

.bodyContainer {
  width: 100%;
  /* max-width: 1500px; */
  display: flex;
  flex-direction: column;
}

.banner-container {
  display: flex;
  flex-direction: row;
  min-width: 993px;
  width: 100%;
  max-width: 2200px;
  justify-content: space-between;
  background-color: #bdefd9;
}

.home-search-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 30px;
  min-width: 450px;
  width: 100%;
  background-position: center;
  background-size: cover;
  min-height: 500px;
  transition: 0.5ms ease-in-out;
}

img.slide {
  max-width: 735;
  max-height: 400;
  height: 500px;
  object-fit: cover;
  object-position: center;
  transition: opacity 2s;
}

.fadeInAnimation {
  animation: fadeIn 5s;
}

.dnone {
  opacity: 0%;
  display: none !important;
}

.search-home-sidePanel {
  color: white;
  background-color: #1b2840d6;
  z-index: 1;
  padding: 20px;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 15px;
  align-items: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.search-box {
  height: 50px;
  width: 400px;
  background-color: #1b2840c4;
  color: white;
  border: none;
  padding: 0px 10px 0px 10px;
  cursor: pointer;
  font-size: 20px;
}

.search-box::placeholder {
  color: #a7a3a6de;
  font-size: 20px;
}

.search-box-select {
  height: 50px;
  border-radius: 5px 0px 0px 5px;
  background-color: #1b2840c4;
  color: white;
  font-size: 16px;
  font-family: "FS Albert";
  cursor: pointer;
  border: none;
  padding: 10px;
}

.footer-wrapper {
  background: #34535c;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
  justify-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.footer-wrapper > ul.primary1 {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  grid-column-start: 1;
  grid-column-end: 3;
}

.footer-wrapper > ul.primary1 > li,
.footer-wrapper > ul.primary1 > li > a {
  font-family: FS Albert;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.75%;
  margin: 0px 13px 0px 13px;
  color: white !important;
  text-decoration: none;
}

.footer-wrapper > ul.secondary1 {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  flex-wrap: wrap;
  grid-column-start: 1;
  grid-column-end: 3;
}

.footer-wrapper > ul.secondary1 > li {
  font-family: FS Albert;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.75%;
  margin: 0px 25px 0px 25px;
}

.footer-wrapper > ul.primary1 > li,
.footer-wrapper > ul.secondary1 > li > a {
  font-family: FS Albert;
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 0.75%;
  margin: 0px 13px 0px 13px;
  color: white !important;
  text-decoration: none;
}

.charity-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin: 20px 0px 20px 0px;
  line-height: 21x;
  opacity: 75%;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  grid-column-start: 1;
  grid-column-end: 3;
}

.footer-divider {
  border-bottom: 1px solid gray;
  max-width: 80%;
  min-width: 80%;
  height: 10px;
  opacity: 70%;
  grid-column-start: 1;
  grid-column-end: 3;
}

.social-media-bar {
  display: flex;
  justify-content: flex-end;
  grid-column-start: 1;
  grid-column-end: 3;
  flex-direction: row;
  align-items: stretch;
}

.social-media-bar > svg {
  margin: 0px 15px 0px 15px;
}

.featured-container {
  display: flex;
  flex-direction: column;
}

.featured-container::-webkit-scrollbar {
  display: none;
}

.featured-container-holder {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
  overflow: auto;
}

content.featured-content {
  width: 275px;
  height: 320px;
  background-color: var(--gray);
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: white;
  padding: 10px;
  transition: 0.25s all;
  border-radius: 10px;
}

content.featured-content:hover {
  box-shadow: 0px 0px 6px 9px #0000000f;
  transition: 0.25s all;
  cursor: pointer;
}

.featured-content-img-holder {
  width: 240px;
  overflow: hidden;
  position: relative;
  color: #1e1e1e;
}

.featured-content > span {
  color: var(--blue);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}

h3 {
  text-align: center;
}

span.featured-content-subtitle {
  position: absolute;
  z-index: 1;
  padding: 10px;
  background-color: #d9d9d9ab;
  bottom: 0;
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  width: 100%;
}

a.featured-content-action-link {
  border: 1px solid var(--blue);
  border-radius: 5px;
  padding: 10px;
  background-color: var(--blue);
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: 80%;
  text-align: center;
}

a.featured-content-action-link:hover {
  color: var(--green);
}

.featured-container-holder::-webkit-scrollbar {
  width: 1px;
  background-color: white;
}

.featured-container-holder::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 60px;
  height: 3px;
}

content.article-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  font-size: 16px;
  min-height: 80vh;
}

content.article-content div:empty {
  min-height: 1em;
}

.article-body {
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-items: center;
}

.article-body > div {
  opacity: 70%;
}

a.article-nav {
  margin: 20px;
  font-weight: 800;
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
}

a.article-nav:hover {
  margin: 20px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

article.article-body {
  grid-column-start: 1;
  grid-column-end: 2;
  margin: 20px 142px 20px 104px;
}

.sidebar {
  grid-column-start: 2;
  grid-row-start: 1;
  grid-row-end: 3;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 40px 40px;
  max-width: 520px;
}

.article-graphic {
  width: 100%;
  max-width: 800px;
  max-height: 400px;
  object-fit: contain;
  object-position: left;
  padding-bottom: 5px;
}

span.authorName {
  font-weight: 800;
}

span.authorTitle {
  opacity: 80%;
  margin: 10px;
}

span.date {
  margin: 10px;
}

h3.article-title {
  font-weight: 800;
  font-size: 24px;
  color: #000000;
  opacity: 63%;
  text-align: left;
  margin-bottom: 2px;
}

div.article-title p {
  font-size: 20px;
  color: #000000;
  opacity: 63%;
  text-align: left;
  margin-top: 10px;
}

.mask1 {
  -webkit-mask-image: url(/css//assets//avatarMask.png);
  mask-image: url(/css//assets//avatarMask.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.sidebar-heading {
  height: 40px;
  width: 90%;
  background: rgb(244, 244, 244);
  background: linear-gradient(
    100deg,
    rgba(244, 244, 244, 0.7371323529411764) 0%,
    rgba(216, 219, 219, 1) 31%,
    rgba(70, 77, 78, 0.09007352941176472) 100%
  );
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 20px 0px 20px 0px;
  font-weight: 700;
}

.sidebar > a {
  margin: 5px;
  text-decoration: none;
  color: var(--blue);
}

.sidebar > a:hover {
  text-decoration: underline;
}

.contentFoundContainer {
  display: flex;
  justify-content: center;
  min-height: 80%;
  flex-wrap: wrap;
}

.contentTitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.foundContentArticle {
  height: 150px;
  width: 354px;
  margin: 20px;
  box-shadow: 1px 1px 4px #0000009c;
  /* padding: 10px; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: ease-in-out 0.2s;
  border-radius: 5px;
}

.foundContentArticle:hover {
  cursor: pointer;
  box-shadow: 1px 1px 8px #0000009c;
}

.foundContentThumbnail {
  width: 50%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.foundContentDetails {
  margin: 10px;
}

.plants-topbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0px 20px 0px;
}

.plants-content {
  display: flex;
  flex-direction: column;
  padding: 30px 0px 30px 0px;
  /* width: 80%; */
  align-items: center;
}

a.index-letter {
  color: gray;
  text-decoration: none;
}

tr {
  box-shadow: 0px 5px 0px 0px gray;
}

th {
  border-radius: 5px;
  padding: 20px;
}

td {
  padding: 20px;
}

td > a {
  text-decoration: none;
  color: #1b2840;
  font-weight: 800;
  display: flex;
  align-items: center;
}

td > a:hover {
  text-decoration: underline;
}

tbody > tr:nth-child(odd) {
  box-shadow: none;
  background-color: #80808024;
}

tbody > tr:nth-child(even) {
  box-shadow: none;
}

table {
  border-spacing: 0px;
}

tr > td {
}

.body-content {
  min-height: 80%;
}

.plantViewGrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 80px auto auto;
  min-height: 80%;
}

content.PlantDetails {
  grid-column-start: 1;
  grid-column-end: 2;
  padding: 30px;
}

content.PlantNotes {
  grid-column-start: 1;
  grid-column-end: 2;
  display: inline-grid;
  padding: 30px;
}

content.PlantPictures {
  grid-column-start: 2;
  grid-column-start: 2;
  grid-row-start: 2;
}

span.display-field-em {
  font-style: italic;
}

span.display-label {
  font-weight: 600;
  margin: 30p;
}

button.homepageGoBtn {
  background-color: #59d8a1;
  padding: 10px;
  border-style: none;
  /* border-radius: 5px; */

  color: white;
  font-weight: 700;
  z-index: 2;
  cursor: pointer;
  border-radius: 0px 5px 5px 0px;
  height: 50px;
  width: 50px;
}

button.homepageGoBtn:hover {
  color: var(--blue);
}

button.homepageGoBtn svg {
  transition: 0.3s ease-in-out;
}

button.homepageGoBtn:hover svg {
  transform: scale(1.5);
  transition: 0.3s ease-in-out;
}

input.quickSearchBox {
  height: 30px;
  width: 300px;
  background-color: var(--gray);
  border-radius: 4px;
  border-style: none;
  color: var(--blue);
  font-size: 18px;
  padding: 10px;
}

input.formInput,
textarea.formInput,
select.formInput {
  padding: 10px;
  border: 2px solid gray;
  border-radius: 5px;
  margin-bottom: 10px;
  width: 90%;
}

.search-box::placeholder {
  color: gray;
}

.homepage-tile {
  background-color: var(--blue);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  padding-bottom: 20px;
  scroll-snap-align: center;
  color: white;
}

.homepage-tile:nth-of-type(odd) {
  background-color: var(--blue);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  color: white;
  min-height: 80vh;
}

.homepage-tile:nth-of-type(even) {
  background-color: var(--blue);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: row-reverse;
  min-height: 80vh;
}

.homepage-tile > .homepage-tile-grid {
  height: inherit;
  display: flex;
  justify-content: space-between;
}

.homepage-tile > .homepage-tile-grid > .mask-shield > img {
  height: inherit;
  max-height: 300px;
  max-width: 500px;
}

.homepage-tile-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 100px;
  position: relative;
}

.tile-heading {
  font-size: 32px;
}

.homepage-tile:nth-of-type(even) > .homepage-tile-grid {
  flex-direction: row-reverse;
  background-color: #34535c59;
}

.homepage-tile:nth-of-type(even) > .homepage-tile-grid > .mask-shield {
  height: inherit;
  display: flex;
  align-items: center;
}

.homepage-tile:hover .mask-shield {
  mask-position: 60px;
  transition: 0.5s ease;
}

.homepage-tile .mask-shield {
  transition: 0.5s ease;
}

.homepage-tile:nth-of-type(even) > .head {
  height: 100px;
  background-image: url("/photos/head.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.homepage-tile:nth-of-type(even) > .tail {
  height: 100px;
  background-image: url("/photos/tail.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 101%;
}

.homepage-tile:nth-of-type(even) > .tail:last-of-type {
  display: none;
}

.homepage-tile-content > h2 {
  font-family: museo-slab;
  text-align: center;
  color: white;
  z-index: 2;
}

.homepage-tile-content > p {
  text-align: center;
  color: var(--gray);
  z-index: 2;
}

.homepage-tile-content > a {
  font-family: museo-slab;
  color: white;
  text-decoration: none;
  z-index: 2;
  font-weight: 800;
  display: flex;
}

.mask-shield {
  -webkit-mask-image: url(/Photos/mask-shield.png);
  mask-image: url(/Photos/mask-shield.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  height: inherit;
  mask-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mask-shield:not(:hover) {
  animation: fadeOut 0.5s both;
}

.browse-link {
  color: #615f5f;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.browse-link > svg {
  margin-left: 10px;
  transition: 0.3s ease-in-out;
}

a.browse-link:hover svg {
  margin-left: 20px;
  transition: 0.3s ease-in-out;
}

.plantNavigation {
  /* grid-area: 5/1/3/3; */
  grid-column-start: 1;
  grid-column-end: -1;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 40px;
  align-self: end;
}

.plantNavigation > a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  width: 50%;
  text-align: center;
  background-color: #34535c;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 0.2px solid gray;
  border-bottom: 1px solid gray;
}

.plantNavigation > a:hover {
  background-color: #34535cc7;
}

/*wide screen*/
@media only screen and (min-width: 1300px) {
  .featured-container-holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 2200px;
    overflow: auto;
    justify-content: space-around;
  }

  .sidebar {
    grid-column-start: auto;
    grid-row-start: auto;
    grid-row-end: auto;
    background-color: #efefef;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px 40px 40px;
    max-width: 520px;
  }
  .carousel-frame {
    justify-self: end;
  }

  .featured-container {
    width: 100%;
  }

  .featured-body {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  content.article-content {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1.25fr 0.5fr;
    font-size: 16px;
  }

  content.article-content div:empty {
    min-height: 1rem;
  }

  article.article-body {
    grid-column-start: 2;
  }
}

/*small screen*/
@media only screen and (max-width: 1000px) {
  .plants-content > table > thead > tr > th:nth-child(3),
  th:nth-child(2) {
    display: none;
  }

  .plants-content > table > tbody > tr > td:nth-child(3),
  td:nth-child(2) {
    display: none;
  }

  .sidebar {
    grid-column-start: auto;
    grid-row-start: auto;
    grid-row-end: auto;
    background-color: #efefef;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px 40px 40px;
    max-width: 520px;
  }

  .garden-map-mobile {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    height: 80vh;
    justify-content: center;
    padding: 0px 20px;
    justify-content: center;
  }

  .garden-map-mobile > h2 {
    text-align: center;
  }

  .garden-map-container {
    display: none;
  }

  .cookies-banner {
    flex-direction: column;
    gap: 0px;
  }

  .cookies-banner > div {
    padding: 0px 20px;
  }

  .divider {
    display: none;
  }

  .splash-banner {
    grid-template-columns: 1fr;
  }

  .splash-frame {
    padding: 20px;
    z-index: 20;
  }

  .splash-frame > svg {
    width: 350px;
    height: 200px;
  }

  .responsive-sm-hide {
    display: none;
  }

  .search-box {
    width: 90%;
  }

  .plants-indexbar {
    margin: 0px 20px;
  }

  article.article-body {
    margin: 40px 20px;
  }

  .banner-image {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .welcome-banner {
    grid-template-columns: 1fr;
  }

  .welcome-banner-message {
    align-items: center;
  }

  .carousel-frame {
    display: none;
  }

  .banner-container {
    min-width: 0px;
  }

  .navbarwrapper {
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .navigationList {
    margin: 20px 0px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navigationPanel {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 80%; */
    list-style-type: none;
    padding: 0px;
  }

  .homepage-tile-content {
    align-items: center;
    min-height: 400px;
  }

  .tile-graphic {
    display: none;
  }

  .homepage-tile {
    max-height: 70vh;
  }

  .homepage-tile-grid {
    flex-direction: column !important;
    align-items: center;
    justify-content: center !important;
  }

  .homepage-tile-grid:nth-of-type(even) {
    flex-direction: column !important;
    align-items: center;
    justify-content: center !important;
    background-color: none;
  }

  .homepage-tile-grid:nth-of-type(even) {
    flex-direction: column !important;
    align-items: center;
    justify-content: center !important;
  }

  homepage-tile:nth-of-type(even) > .homepage-tile-grid {
    flex-direction: column !important;
    background-color: #34535c59;
  }

  .homepage-tile:nth-of-type(even) > .homepage-tile-grid > .mask-shield {
    display: none;
  }

  .mask-shield {
    height: auto;
    animation: none;
  }

  .featured-container-holder {
    flex-direction: column;
  }

  .article-nav {
    justify-content: center;
  }

  content.featured-content {
    width: 80%;
  }

  content.article-content {
    grid-template-columns: 1fr;
  }

  .homepage-tile .mask-shield {
    transition: 0.5s ease;
  }

  .sidebar {
    max-width: none;
    grid-row-start: 3;
  }

  .plantViewGrid {
    grid-template: none !important;
  }

  .PlantGeography {
    display: none;
  }

  .plantNavigation {
    grid-column-start: 1 !important;
    grid-column-end: 1;
    height: 150px;
  }

  .PlantPictures {
    grid-row-start: 3 !important;
    grid-column-start: 1 !important;
  }
}
