body {
  margin: 0;
  font-family: 'Segoe UI'
}

.container {
  width: 100%;
}

.content {
  width: 80%;
  margin: auto;
  padding-bottom: 5rem;
  padding-top: 1rem;
}

.content-db {
  width: 80%;
  margin: auto;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.header-container {
  background-color: white;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  padding-top: 1px;
}

.logo {
  margin-right: 1rem;
  margin-left: 1rem;
}

.header-title {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 90%;
  margin: auto;
}

.header-title h1 {
  font-size: 25px;
  margin-bottom: 0;
}

.header-title h2 {
  font-size: 18px;
  font-weight: 100;
  margin: 0;
}

.footer {
  padding: 0.1rem;
  color: #fff;
  background-color: #333;
}

.footer-wrapper {
  width: 90%;
  margin: auto;
}

.footer-wrapper-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
}

.footer-title {
  font-weight: bold;
}

.footer-title a:hover {
  color: none;
}

.footer-info a {
  flex: 1 1 0;
  width: 0;
  text-align: left;
  text-decoration: none;
  color: #fff;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-copyright {
  margin-bottom: 1rem;
}

.footer-copyright p {
  margin: 0;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav-wrapper{
  width: 90%;
  margin: auto;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 1023px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

.gmaps {
  width: 100%;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  height: 68vh;
  border: 0;
  border-radius: 20px;
}

@media screen and (max-width: 750px) {
  .footer-wrapper-flex {
    flex-direction: column;
  }

  .gmaps {
    width: 100%;
  }
}

@media screen and (min-width: 625px) {
  .img-marlins {
    height: 120px;
  }
}

@media screen and (max-width: 625px) {
  .header-title h1 {
    font-size: 4vw;
  }

  .header-title h2 {
    font-size: 3vw;
  }

  .logo img {
    width: 11vw;
  }

  .img-marlins {
    height: auto;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.product-card{
  margin: 0.75rem;
}

@media screen and (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  @media screen and (max-width: 880px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .product-card p {
      font-size: 90%;
    }
    .product-card{
      margin: 0.5rem;
    }
  }

  @media screen and (max-width: 625px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 425px) {
    .product-card p {
      font-size: 80%;
    }
  }

  @media screen and (max-width: 320px) {
    .product-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .product-card p {
      font-size: 70%;
    }

  }
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.product-photo {
  width: 100%;
  max-height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 0;
  margin-bottom: -0.75rem;
}

.product-text {
  padding: 0rem 1rem 1rem 1rem;
}

.product-name {
  color: black;
  font-size: 16px;
  margin-bottom: 0em;
}

.product-price {
  color: orangered;
  font-weight: bold;
  font-size: 18px;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}

.product-quantity {
  color: gray;
  font-size: 14px;
  margin: 0;
}

.form-req{
  color: red;
  font-weight: bold;
}

.form-label{
  display: block;
  padding-bottom: 0.25rem;
  padding-top: 0.5rem;
}

.form-contact{
  width: 80%;
}

.form-contact-input{
  width: 100%;
  min-width: 180px;
}

.form-button{
  margin-right: -0.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.2fr 1fr 0.2fr 1fr;
}

@media screen and (max-width: 1023px) {
  .contact-grid {
    display: block;
  }
  .form-contact{
    width: 50%;
  }
}

@media screen and (max-width: 625px) {
  .form-contact{
    width: 90%;
  }
}

.background{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: 80vh;
  background-position: center;
  background-size: cover;
  z-index: 0;
}