* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.photo {
  width: 100%;
  min-width: 380px;
  border-radius: 1em;
  margin-bottom: 2em;
}

.bigtext {
  font-family: "Bungee", sans-serif;
  font-size: 2em;
  text-align: center;
  color: black;
  padding-bottom: 1em;
  width: 100%;
}

a {
  color: #fd1038;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

form {
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  margin-bottom: 2em;
  font-family: "Roboto";
  padding: 1em;
  resize: none;
  font-size: 1em;
  border-radius: 1em;
  border: 3px;
}

textarea {
  height: 10em;
}

button {
  font-size: 1em;
  text-align: center;
  margin: auto;
  display: block;
  margin-bottom: 2em;
  padding: 1em;
  border-radius: 1em;
  cursor: pointer;
  background-color: #fd1038;
  color: white;
}

.gallery {
  -moz-column-count: 3;
       column-count: 3;
  gap: 2em;
}

.story, .story-static {
  background-color: white;
  border-radius: 1em;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 2em;
  min-width: 380px;
}
.story .smalltext, .story .smalltext-center, .story-static .smalltext, .story-static .smalltext-center {
  min-width: 0;
  padding: 2em;
}
.story .photo, .story-static .photo {
  padding-left: 2em;
  padding-right: 2em;
}

@media (max-width: 1279px) {
  .gallery {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 855px) {
  .gallery {
    -moz-column-count: 1;
         column-count: 1;
  }
  .story, .story-static {
    background-color: #e6e6e6;
  }
  .story .smalltext, .story .smalltext-center, .story-static .smalltext, .story-static .smalltext-center {
    padding: 0;
  }
}
@media (max-width: 460px) {
  .story, .story-static {
    min-width: 212px;
  }
  .photo {
    min-width: 212px;
  }
}
.story-static {
  background-color: white;
}
.story-static .smalltext, .story-static .smalltext-center {
  padding: 2em;
}

.scrolling-image-container {
  overflow: hidden;
  background-color: #aadffe;
}

.scrolling-image {
  background: url(../images/tile-dive-help-logo.png);
  background-repeat: repeat;
  height: 100%;
  width: 400%;
  animation: slide 60s linear infinite;
  position: fixed;
  opacity: 0.25;
  z-index: -1;
}

@keyframes slide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-1185px); /* The image width */
  }
}
body {
  color: black;
  font-family: "Roboto";
  font-size: 1em;
  list-style-position: inside;
  background-color: #aadffe;
}

header {
  background-color: #fd1038;
  padding-left: 1em;
  position: sticky;
  top: 0;
  z-index: 1;
}

.header-logo {
  height: 2.9em;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  flex-direction: row;
}

.menu li {
  list-style: none;
}

.menu li a {
  display: block;
  text-decoration: none;
  color: white;
  padding: 1em;
}

.has-dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  background-color: grey;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
}

.submenu .submenu {
  left: -100%;
  top: 0;
}

.menu > li:hover > a,
.submenu > li:hover > a {
  background-color: black;
  color: white;
}

.menu > li:hover > a {
  background-color: hsla(0, 0%, 0%, 0.95);
}

.arrow {
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  vertical-align: middle;
  border-left: 0.15em solid currentColor;
  border-bottom: 0.15em solid currentColor;
  transform: rotate(-45deg);
  margin-top: -0.25em;
}

.menu > li:hover > a + .submenu,
.submenu > li:hover > a + .submenu {
  opacity: 1;
  transform: scaleY(1);
}

@media only screen and (max-width: 1279px) {
  header {
    padding: 0em 1em;
    text-align: center;
  }
  .menu {
    flex-flow: column;
    position: absolute;
    background: #fd1038;
    top: 3.1em;
    left: 0;
    right: 0;
    height: 100vh;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
    transition: 200ms transform cubic-bezier(0.36, 0.4, 0.42, 1.48) 100ms, 100ms opacity ease-in-out;
    overflow-y: scroll;
  }
  .menu > li > a {
    font-size: 1em;
    color: white;
  }
  .menu > li:hover > a + .submenu,
  .submenu > li:hover > a + .submenu {
    position: relative;
  }
  .hamburger {
    width: 2em;
    height: 0.25em;
    display: block;
    background: white;
    position: relative;
    cursor: pointer;
    transition: 0.2s transform ease-in-out;
  }
  .hamburger::after,
  .hamburger::before {
    content: "";
    position: absolute;
    left: 0;
    background: inherit;
    width: inherit;
    height: inherit;
    transition: 0.2s transform ease-in-out;
  }
  .hamburger::after {
    top: 0.65em;
  }
  .hamburger::before {
    bottom: 0.65em;
  }
  .close::after,
  .close::before {
    top: 0;
    transition: 0.2s transform ease-in-out;
  }
  .close::before {
    display: none;
  }
  .close {
    transform: rotate(45deg);
    transition: 0.2s transform ease-in-out;
  }
  .close::after {
    transform: rotate(-90deg);
  }
  input[type=checkbox]:checked + .menu {
    position: absolute;
    opacity: 1;
    transform: scaleY(1);
  }
}
.anchor {
  padding-top: 5.1em;
  margin-top: -5.1em;
}

.main {
  display: flex;
  justify-content: center;
}

.flex-row, .flex-content, .flex-content-even, .footer {
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  display: flex;
  width: 100%;
  -moz-column-gap: 2em;
       column-gap: 2em;
}

.flex-column {
  flex-flow: column wrap;
  flex: 1;
}

.flex-content, .flex-content-even, .footer {
  max-width: 1268px;
  box-shadow: 0 0px 20px 0 rgba(92, 78, 78, 0.2);
  padding: 2em;
  background-color: #e6e6e6;
}

.footer {
  background-color: #fd1038;
  color: white;
  padding: 0;
  font-size: 0.9em;
  text-align: center;
}
.footer a {
  color: white;
}
.footer .footer-content {
  padding: 1em;
}

.hero {
  width: 100%;
}

.flex-content-even {
  justify-content: space-evenly;
  align-items: center;
}

.smalltext, .smalltext-center {
  padding-bottom: 2em;
  font-size: 1em;
  text-align: left;
}
.smalltext ul, .smalltext-center ul {
  text-align: left;
}

.smalltext-center {
  text-align: center;
}

.mediumtext {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 1em;
  padding-bottom: 0;
}

.media-container {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  padding-top: 2em;
}
.media-container:hover {
  filter: opacity(0.9);
}/*# sourceMappingURL=main.css.map */