/*
JUMBOTRON SECTION
*/
#jumbotron-overflow-prevention {
  position: relative;
  overflow: hidden;
}

#jumbotron {
  position: relative;
  left: 0;
  z-index: 0;
  margin: 0;
  background-image: url("../assets/jumbotron_background_transparent.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  white-space: nowrap;
  width: 100%;
  height: 350px;
  background-color: white;
}

#wave-container {
  position: absolute;
  width: 100%;
  height: 0px;
  bottom: 0px;
  left: -10px;
  right: 50%;
}

.wave-line {
  display: inline-block;
  margin-right: -5px;
  margin-left: -5px;
  background: #034078;
  width: 30px;
  -webkit-animation: wave-anim 2s infinite ease-in-out alternate;
          animation: wave-anim 2s infinite ease-in-out alternate;
  position: static;
  border: 1px solid #034078;
  border-radius: 20px 40px 0 0;
  transform: translateY(-160px);
  height: 160px;
}

.wave-line:after {
  content: "";
  height: 20px;
  opacity: 15%;
  width: 100%;
  position: absolute;
  background: white;
  border-radius: 50%;
  left: 30%;
  top: -3%;
}

@-webkit-keyframes wave-anim {
  0% {
    transform: translateY(-160px);
    height: 160px;
  }
  100% {
    transform: translateY(-190px);
    height: 190px;
  }
}

@keyframes wave-anim {
  0% {
    transform: translateY(-160px);
    height: 160px;
  }
  100% {
    transform: translateY(-190px);
    height: 190px;
  }
}
#ship-brand-logo-withoutwave-container > #ship-brand-logo-withoutwave {
  position: absolute;
  bottom: 60px;
  left: 40px;
  width: 150px;
  height: 150px;
}
@media only screen and (min-width: 1280px) {
  #ship-brand-logo-withoutwave-container > #ship-brand-logo-withoutwave {
    left: 300px;
    width: 200px;
    height: 200px;
  }
}

#ship-brand-logo-withoutwave-container > #underwater-ship {
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 150px;
  height: 150px;
  -webkit-animation-name: ship-water-anim;
          animation-name: ship-water-anim;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
@media only screen and (min-width: 1280px) {
  #ship-brand-logo-withoutwave-container > #underwater-ship {
    left: 300px;
    width: 200px;
    height: 200px;
  }
}

@-webkit-keyframes ship-water-anim {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-25px);
  }
}

@keyframes ship-water-anim {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-25px);
  }
}
#jumbotron-headings {
  position: static;
  width: 100%;
  text-align: center;
}

#jumbotron-headings h2 {
  background-color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 2.3rem;
}

.hull-highlight {
  color: #034078;
}

/*
INTRO SECTION
*/
#intro-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1A2530;
}

#intro-box > h1,
#intro-box > h2,
#intro-box > h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.3em;
  color: white;
}

#intro-box > h2:first-child {
  font-family: "Montserrat", sans-serif;
  color: #fc9e49;
  font-size: 2em;
}

#intro-box > h2:nth-child(2) {
  font-size: 2em;
}

.stronger-h3-letters {
  font-size: 1.4em;
}

.intro-text-highlight {
  color: #fc9e49;
}

.bounce-arrow-anim {
  position: relative;
  -webkit-animation: arrow-bounce 0.5s;
          animation: arrow-bounce 0.5s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes arrow-bounce {
  from {
    top: 6px;
  }
  to {
    top: 0px;
  }
}

@keyframes arrow-bounce {
  from {
    top: 6px;
  }
  to {
    top: 0px;
  }
}
/*
CARDS LINK SECTION
*/
@media only screen and (min-width: 860px) {
  #rope-background {
    background-image: url(../assets/rope.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
  }
}
#cards-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-basis: auto;
  flex: 0 1 auto;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

#cards-container > div {
  display: flex;
  flex: 0 1 auto;
  position: relative;
  flex-basis: auto;
  flex-direction: column;
  justify-content: flex-start;
  background: white;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in;
  width: 400px;
  height: 550px;
  margin-bottom: 30px;
  margin-right: 15px;
  margin-left: 15px;
}
#cards-container > div:hover {
  transform: scale(1.08, 1.08);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

#cards-container .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 5px solid #fc9e49;
}
#cards-container .thumb > img {
  height: 100%;
  width: 80%;
}

#cards-container {
  padding-top: 30px;
}
#cards-container h1,
#cards-container h3,
#cards-container h5,
#cards-container p {
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#cards-container h1 {
  font-size: 3rem;
}
#cards-container h1,
#cards-container h3 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
}
#cards-container h5 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0;
}

#cards-container .about-card {
  background-color: #1A2530;
  align-items: center;
  justify-content: center;
  position: relative;
}
#cards-container .about-card > h3 {
  font-size: 2em;
  line-height: 1.3;
  color: #fc9e49;
  margin: 0;
}
#cards-container .about-card > h2 {
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  font-weight: 300;
  font-size: 3rem;
}
#cards-container .about-card > h5 {
  font-size: 1.4em;
  margin-top: 10px;
  margin-bottom: 10px;
  color: white;
}

.card-bottom-half {
  padding: 10%;
  background-color: #1A2530;
  height: 50%;
  display: block;
  position: relative;
}

.card-description {
  font-size: 1.2rem;
  color: white;
}

.card-title {
  font-weight: bold;
  color: white;
}/*# sourceMappingURL=homepage_custom.css.map */