body {
  font-family: "Montserrat";
}
a {
  text-decoration: none;
}
main {
  background-color: #001e38;
  color: white;
}
main .btn a {
  color: #001e38;
}
main .btn a:hover {
  color: #013c70;
}
h1,
h2 {
  margin: 2rem;
}
.productsTitle {
  font-family: "Roboto Slab";
  font-weight: 600;
}
.btn {
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
}
.products {
  background-color: RGB(224, 224, 224);
}
.wave {
  margin: -5% auto;
  padding: 0;
  position: relative;
  z-index: -1;
}
.productTitle {
  margin-left: 0;
  font-weight: 500;
  border-bottom: 5px solid #001e38;
  padding-bottom: 2%;
}
.card {
  margin: auto;
  box-shadow: none;
  border: 5px solid #001e38;
  color: black;
  border-radius: 0;
  padding: 0;
}
.card img {
  margin: 0;
}
.card:hover {
  box-shadow: none;
}
.card-body {
  padding: 0;
}
.notFound {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-content: center;
  margin-bottom: 5%;
}
.notFound {
  display: none;
}
.notFound .btn a {
  color: black;
}
.notFound .btn a:hover {
  color: white;
}
.searchbox {
  margin-top: 4%;
}
.input-group-text,
.form-control {
  border: 2px solid #001e38;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  text-align: end;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.card {
  cursor: pointer;
}
.card:hover {
  -webkit-animation: shadow-drop-2-bottom 0.4s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: shadow-drop-2-bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.endNote{
  background-color: #001e38;
  color: white;
  padding: 5% 2%;
}





@media only screen and (max-width: 1023px) {
  .searchbox {
    margin-top: 10%;
  }
}

@-webkit-keyframes shadow-drop-2-bottom {
  0% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px) translateY(-12px);
    transform: translateZ(50px) translateY(-12px);
    -webkit-box-shadow: 0 12px 25px -12px rgba(0, 0, 0, 0.35);
    box-shadow: 0 12px 25px -12px rgba(0, 0, 0, 0.35);
  }
}
@keyframes shadow-drop-2-bottom {
  0% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px) translateY(-12px);
    transform: translateZ(50px) translateY(-12px);
    -webkit-box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.35);
    box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.35);
  }
}
