body {
  background-color: #ffffff;
}

.content {
  padding: 3rem 1.5rem;
  text-align: center;
}

.content h1 {
  font-size: 30px;
}

.card {
  transition: 0.25s;
  margin: 10px;
  box-shadow: rgba(0, 0, 0, 0.01) 0px 10px 16px 0px, rgba(0, 0, 0, 0.02) 0px 6px 20px 0px;
}

.card:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 16px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 {
  fill: rgba(255,255,255, .1);
}

.wave2 {
  fill: rgba(255,255,255, .2);
}

.wave3 {
  fill: #fff;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* background: linear-gradient(0deg, #2a2c39 0%, #33364a 40%); */
  background:
    linear-gradient(0deg, #00000060 0%, #00000060 0%),
    url(images/header2.jpg);
  background-size: cover;
  padding: 0;
}

#hero .header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  padding-top: 60px;
}

#hero h2 {
  color: #fff;
  box-shadow: 10px #2a2c39;
  margin-bottom: 5px;
  font-size: 68px;
  font-weight: 700;
  border-radius: 10px;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  font-size: 25px;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (max-width: 768px) {
  #hero .hero-waves {
    height: 40px;
  }

  #hero .header-container {
    height: 40vh;
  }

  #hero h2 {
    font-size: 32px;
    padding: 0px;
  }

  #hero p {
    font-size: 14px;
    margin: 0px;
  }

  .bg-img {
    font-size: 3.5rem;
  }

  .text-small {
    font-size: 85%;
  }

  .dropdown-toggle {
    outline: 0;
  }
}