/* Palette */
/* CSS HEX */
/* SCSS RGB */
/* SCSS Gradient */
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: rgba(87, 87, 47, 0.6);
  font-size: 16px;
  font-family: Inter, Arial, sans-serif;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

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

/*  main container */
.row {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.top-row {
  padding-top: 200px;
}

div.container-main {
  padding: 60px 0 0 0;
}

section.welcome {
  background-color: rgba(87, 87, 47, 0.6);
}

section.category {
  background-color: white;
}

img.welcome-image {
  width: 60%;
  border-radius: 15px;
  filter: drop-shadow(5px 5px 10px rgb(45, 49, 66));
}

/* quality section */
.quality-icon {
  background-color: rgb(219, 234, 254);
  border-radius: 50%;
  padding: 15px;
}

img.white-icon {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
}

.quality-row ul, .search-inset ul {
  list-style-type: none;
  padding: 0;
  margin: 0 !important;
}

.quality-row li, .search-inset li {
  line-height: 1.8rem;
  text-align: center;
}

.center-container {
  display: flex;
  justify-content: center; /* Horizontally centers the image */
}

.search-inset {
  padding-top: 30px;
  width: 80%;
  height: 200px;
  background-color: white;
  border: none;
  margin-top: 30px;
  margin-bottom: 30px;
  color: white;
}

.gallery {
  background-color: rgb(45, 49, 66);
  padding: 0;
  padding-top: 20px;
}

.div-text {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
}

div.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

div.art-card-wrapper-shop {
  background-color: white;
  margin-bottom: 40px;
  margin-right: 3px;
  margin-left: 3px;
}

div.art-card-shop {
  margin: 5px;
  width: 300px;
  height: 250px;
  padding: 20px;
  text-align: center;
}

div.art-card-text-shop ul {
  padding-left: 0;
  list-style-type: none;
  text-align: center;
}

div.art-card-text-shop li {
  margin-bottom: 0px;
  line-height: 1.8rem;
}

div.no-info li {
  padding: 0;
  list-style-type: none;
  color: white;
  display: none;
  margin-bottom: 0 !important;
}

div.no-info {
  background-color: black;
}

div.info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.info::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.5);
}

div.info li {
  position: relative;
  padding: 0;
  font-size: 0.8rem;
  list-style-type: none;
  color: white;
}

div.hidden {
  display: none !important;
}

/* Typography */
a:hover {
  color: rgb(154, 22, 9);
}

a.weaver-link {
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 20%;
  padding-left: 1rem;
  padding-right: 1rem;
  color: rgb(45, 49, 66);
  transition: color 0.5s;
}
a.weaver-link:hover {
  color: rgb(214, 36, 20);
  background-color: rgb(45, 49, 66);
}

.quote {
  color: white;
  margin-bottom: 0 !important;
}

h2.tag-line, h3.quote {
  font-style: italic;
  text-transform: none !important;
}

img.responsive {
  width: 100%;
  height: auto;
}

img.carousel {
  border: solid rgb(45, 49, 66) 2px;
}

.light h2, h3 {
  padding-bottom: 10px;
}

.light h2 {
  color: rgb(45, 49, 66) !important;
}

img.logo-embed {
  width: 20%;
  text-align: center;
}

/* button */
.button-category {
  background-color: rgb(45, 49, 66);
  color: white;
  border: rgb(45, 49, 66);
  margin-right: 40px;
  text-decoration: none;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 50px;
  height: 50px;
  font-size: medium;
}

.button-category:hover {
  background-color: rgb(45, 49, 66);
  transition: color 0.5s;
  color: rgb(214, 36, 20);
}

input.paypal {
  border-radius: 15px;
  border: 1px solid rgb(45, 49, 66);
  margin: 10px;
}

#venmo:hover, input.paypal:hover {
  opacity: 0.6;
  border: 1px solid rgb(127, 156, 150);
}

div.supporters button.btn-primary {
  background-color: white;
  text-transform: uppercase;
  color: rgb(45, 49, 66);
  font-weight: 500;
  border: rgb(45, 49, 66);
  margin-right: 40px;
  text-decoration: none;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 50px;
}

.btn-primary:hover {
  background-color: rgb(45, 49, 66);
  color: rgb(127, 156, 150);
}

div.supporters button.btn-primary:hover {
  color: rgb(127, 156, 150);
}

/* Flexbox - image/text 2 boxes */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.flex-item {
  flex-basis: 100%;
}

.flex-item img {
  width: 100%;
}

.flex-item-text {
  flex-basis: 100%;
}

div.flex-item-text {
  padding: 20px;
}

h3.flex-item-text {
  text-align: center;
}

.address-list li {
  list-style-type: none;
  text-align: left;
}

.accomplishments-list li {
  text-align: left;
}

.address-list ul, .accomplishments-list ul {
  padding: 0 !important;
  min-width: 250px;
  margin: 0;
}

p.donate, h5 {
  text-align: left;
}

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

img.donor-logo {
  margin-right: 10px;
  height: 120px;
}

img.donation-logo {
  float: left;
  margin-left: 25% !important;
  width: 50px;
  height: 50px;
  margin: 10px;
}

/* Footer */
footer {
  background-color: rgb(45, 49, 66);
  padding-top: 5px;
  color: white !important;
}

footer a {
  text-decoration: none;
}

#contact p {
  margin-bottom: 0.5rem !important;
  line-height: 1.2rem;
}

.copyright {
  background-color: rgb(45, 49, 66);
}

/* Media queries */
@media screen and (max-width: 650px) {
  div.row.top-row {
    margin-top: 200px !important;
  }
  img.logo-embed {
    margin-top: 20px;
    width: 45%;
  }
  .donor-logo {
    margin-top: 20px;
  }
  button {
    margin-right: 0;
  }
  form {
    width: 100%;
  }
  input.paypal {
    margin: 20px;
    width: 60%;
    height: auto;
    font-size: 2rem;
    padding: 10px;
  }
  #venmo img {
    width: 30%;
    height: auto;
    margin-left: 35% !important;
  }
  div.gallery {
    margin: 0 !important;
  }
}
@media screen and (min-width: 650px) {
  .flex-item-text {
    flex-basis: 50%;
    align-content: center;
  }
}/*# sourceMappingURL=shop.css.map */