body {
  font-family: "Open Sans", sans-serif;
  background-color: white;
  width: 100%;
}

h1 {
  text-align: left;
  font-weight: bold;
  letter-spacing: unset;
  font-size: 3rem;
}

p {
  text-align: left;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

txt {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.h1-center {
  align-self: baseline;
}
.nav-link {
  border-bottom: 1px solid white;
}

.nav-link:hover {
  transition: border 0.2s;
  border-bottom: 1px solid orange;
}

#banner {
  position: relative;
  top: 0px;
  background-image: url("media/banner5.png");
  background-size: cover;
  background-position: left;
  resize: both;
  width: 100%;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

#banner-spacer {
  height: 20%;
}

.panel-white {
  background-color: rgba(255, 255, 255, 0.0);
  height: 40%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.same-row {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  padding-top: 2rem;
}

.sq-wave {
  height: 3.5rem;
  width: 3rem;
  margin-left: 1rem;
  margin-bottom: 2rem;
}

.banner-wave-text {
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 1.5rem;
  margin-left: -0.5rem;
  margin-top: 1rem;
}

.banner-title {
  text-align: left;
  margin-left: 1rem;
  padding-bottom: -1rem;
  color: rgb(255, 255, 255);
  border-bottom: rgb(255, 255, 255) outset;
  letter-spacing: unset;
  font-size: 3rem;
}

.banner-sub-title {
  text-align: left;
  margin-left: 1rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  margin-top: -1rem;
  padding-bottom: 0.5rem;
}

.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.text-center {
  text-align: center;
}

.prod-image {
  border-radius: 15% 0%;
  box-shadow: 12px 12px 20px #173753;
  transition: transform 0.25s;
  cursor: pointer;
  height: 450px;
  width: 90%;
}
.prod-image:hover {
  transform: scale(1.05) rotate(-2deg);
  /* transform:matrix(1, -0.05, 0, 1, 0, 0); */
  /* transform: translateY(-1rem) rotate(-2deg); */
  box-shadow: 12px 12px 20px #415f86;
}

.serv-image {
  border-radius: 15% 0%;
  box-shadow: 12px 12px 20px #173753;
  transition: transform 0.25s;
  width: 90%;
}
.serv-image:hover {
  transform: scale(1.05) rotate(-2deg);
  /* transform: scale(1.05) rotate(2deg); */
  /* transform:matrix(1, 0.05, 0, 1, 0, 0); */
  /* transform: translateY(-1rem) rotate(-2deg); */
  box-shadow: 12px 12px 20px #415f86;
}

.card-text:hover {
  transition: transform 0.25s;
  background-color: #eaecee;
}

.partner-image {
  transition: transform 0.25s;
}

.partner-image:hover {
  transform: scale(1.05);
  /* box-shadow: 12px 12px 20px #415f86; */
}

#submit-button {
  margin-top: -1rem;
}

/* Responsive MNedia Queries */
@media (max-width: 1400px) {
  .banner-title {
    font-size: 3rem;
  }
}

@media (max-width: 1200px) {
  #banner-spacer {
    height: 50%;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .sq-wave {
    height: 2.5rem;
    width: 2rem;
    margin-left: 1rem;
    margin-bottom: 2rem;
  }

  .banner-wave-text {
    font-weight: bold;
    font-size: 1rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 992px) {
  .banner-title {
    border-bottom: none;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-link {
    border-bottom: none;
  }

  .nav-link:hover {
    border-bottom: none;
    background-color: whitesmoke;
  }

  .panel-white {
    width: 100%;
  }

  .banner-title {
    font-size: 2rem;
  }

  #banner {
    height: 500px;
  }
}

@media (max-width: 576px) {
}
