:root {
  --cornflower-blue: #55acee;
  --firebrick: #c92228;
  --medium-sea-green: #3bc984;
  --steel-blue: #3765a3;
  --pale-violet-red: #e04c86;
}

body {
  color: #333;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  z-index: 10;
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 45px;
  position: relative;
}

p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 25px;
}

a {
  color: #25ac6a;
  text-decoration: underline;
  transition: color .4s;
}

a:hover {
  color: #000;
}

blockquote {
  color: #666;
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 22px;
}

.nav {
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.logo-text {
  color: #fff;
  margin-top: 11px;
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
}

.logo-text.green {
  color: #2e8b57;
}

.nav-link {
  opacity: .6;
  color: #fff;
  text-align: right;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  transition: opacity .35s;
}

.nav-link:hover, .nav-link.w--current {
  opacity: 1;
  color: #fff;
}

.nav-link.dark {
  color: var(--cornflower-blue);
  justify-content: center;
  align-items: center;
  width: 50%;
  font-weight: 900;
  display: flex;
}

.hero-container {
  background-color: #fff;
  padding: 5px;
  position: relative;
  top: -70px;
}

.hero-tile {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tile-image {
  background-image: url('../images/dance-background.jpg');
  background-position: 50% 100%;
  background-size: cover;
  height: 100%;
  transition: transform 1s;
  position: absolute;
  inset: 0;
}

.tile-image:hover {
  transform: scale(1.03);
}

.tile-text {
  z-index: 20;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 6px #0000005e;
  font-size: 27px;
  font-weight: 900;
  line-height: 30px;
  position: absolute;
  bottom: 24px;
  left: 25px;
}

.footer-section {
  background-color: #34495e;
  padding-top: 23px;
  padding-bottom: 23px;
}

.logo-footer.w--current, .footer-link-col {
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-overlay {
  z-index: 9999;
  opacity: 0;
  text-align: center;
  background-color: #000000e6;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  display: none;
  position: fixed;
  inset: 0;
  transform: scale(1.1);
}

.close-link {
  opacity: .5;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .4s;
  display: block;
}

.close-link:hover {
  opacity: 1;
  color: #fff;
}

.text-field {
  background-color: #ffffff1a;
  border: 1px solid #000000b3;
  border-radius: 3px;
  height: 50px;
  font-size: 16px;
}

.text-field:focus {
  color: #fff;
  border-color: #ffffff4d;
}

.text-field.text-area {
  height: 120px;
}

.form-wrapper {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.submit-button {
  background-color: #55acee;
  border-radius: 3px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 17px;
  transition: background-color .4s;
  display: block;
}

.submit-button:hover {
  background-color: #3765a3;
}

.contact-heading {
  color: #fff;
  font-size: 30px;
  line-height: 32px;
}

.small-divider {
  opacity: .2;
  background-color: #fff;
  width: 80px;
  height: 2px;
  margin: 10px auto;
  display: block;
}

.contact-text {
  opacity: .7;
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

.success-message {
  background-color: #2bab68;
}

.success-text {
  color: #fff;
  margin-bottom: 0;
}

.hero-overlay {
  background-color: #0009;
  height: 100%;
  position: absolute;
  inset: 0;
}

.cta-section {
  text-align: center;
  background-color: #3bc984;
  padding-top: 60px;
  padding-bottom: 60px;
  display: block;
}

.cta-heading {
  color: #fff;
  margin-bottom: 18px;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

.home-page-heading {
  letter-spacing: 0;
  text-transform: none;
  font-size: 55px;
  line-height: 60px;
}

.tile-overlay {
  background-color: #0003;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.graduation-image {
  background-image: url('../images/dance-background.jpg');
  background-position: 50% 100%;
  background-size: cover;
  height: 100%;
  transition: transform 1s;
  position: absolute;
  inset: 0;
}

.graduation-image:hover {
  transform: scale(1.03);
}

.graduation-image.hire {
  background-image: url('../images/graduation-background.jpg');
  background-position: 0 0;
  background-size: cover;
}

.photo-image {
  background-image: url('../images/dance-background.jpg');
  background-position: 50% 100%;
  background-size: cover;
  height: 100%;
  transition: transform 1s;
  position: absolute;
  inset: 0;
}

.photo-image:hover {
  transform: scale(1.03);
}

.photo-image.hire {
  background-image: url('../images/photo-requests.jpg');
  background-position: 0 0;
  background-size: cover;
}

.pool-party-image {
  background-image: url('../images/dance-background.jpg');
  background-position: 50% 100%;
  background-size: cover;
  height: 100%;
  transition: transform 1s;
  position: absolute;
  inset: 0;
}

.pool-party-image:hover {
  transform: scale(1.03);
}

.pool-party-image.hire {
  background-image: url('../images/pool-party.jpg');
  background-position: 0 0;
  background-size: cover;
}

.committee-image {
  background-image: url('../images/dance-background.jpg');
  background-position: 50% 100%;
  background-size: cover;
  height: 100%;
  transition: transform 1s;
  position: absolute;
  inset: 0;
}

.committee-image:hover {
  transform: scale(1.03);
}

.committee-image.hire {
  background-image: url('../images/dance-party.jpg');
  background-position: 0 0;
  background-size: cover;
}

.columns {
  display: flex;
}

.standard-paragraph {
  text-align: justify;
}

.dance-header-h3 {
  text-transform: uppercase;
  margin-top: 40px;
}

.heading {
  margin-top: 40px;
}

.dance-main-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.dance-hero-section {
  background-image: url('../images/dance-background.jpg');
  background-position: 50%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 145px;
  position: relative;
}

.graduation-hero-section {
  background-image: url('../images/graduation-background.jpg');
  background-position: 50%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 145px;
  position: relative;
}

.photos-hero-section {
  background-image: url('../images/photo-requests.jpg');
  background-position: 50%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 145px;
  position: relative;
}

.photos-button {
  text-transform: uppercase;
  background-color: #19975a;
  margin-right: 20px;
  padding: 15px 40px;
  font-size: 14px;
  transition: background-color .4s;
}

.photos-button:hover {
  color: #fff;
  background-color: #088347;
}

.photos-button.hidden {
  display: none;
}

.pool-party-hero-section {
  background-image: url('../images/pool-party.jpg');
  background-position: 25% 25%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 145px;
  position: relative;
}

.committee-hero-section {
  background-image: url('../images/dance-party.jpg');
  background-position: 25% 25%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 145px;
  position: relative;
}

.list-item {
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

.bold-text {
  color: var(--firebrick);
}

.bold-text-2 {
  color: var(--medium-sea-green);
}

.div-block {
  display: flex;
}

.home-hero-section {
  background-image: url('../images/hibiscus-background.jpg');
  background-position: 50%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 145px;
  position: relative;
}

.image {
  width: 25%;
  max-width: 75%;
}

.committee-block, .pool-block, .photo-block {
  float: left;
  width: 33.33%;
  height: 300px;
  padding: 5px;
}

.graduation-block {
  float: left;
  width: 40%;
  height: 300px;
  padding: 5px;
  position: relative;
}

.dance-block {
  float: left;
  width: 60%;
  height: 300px;
  padding: 5px;
}

.committee-main-section, .pool-party-main-secton, .photos-main-section, .graduation-main-section, .home-main-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.home-main-section.top-section {
  padding-top: 0;
  padding-bottom: 0;
}

.div-block-2, .footer-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.bold-text-3 {
  color: var(--firebrick);
}

.dance-button-block {
  margin-top: 20px;
  display: none;
}

.red {
  color: var(--firebrick);
}

.heading-2 {
  text-align: center;
}

.bottom-ad-block {
  margin-top: 40px;
}

.graduation-button-block {
  margin-top: 20px;
  display: block;
}

.pool-party-button-block {
  margin-top: 20px;
  display: flex;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .nav {
    padding-top: 10px;
  }

  .tile-text {
    font-size: 30px;
    line-height: 33px;
    bottom: 22px;
    left: 22px;
  }

  .menu-button {
    color: #fff;
  }

  .menu-button.w--open {
    background-color: #55acee;
  }

  .nav-menu {
    background-color: #242424;
  }

  .contact-overlay {
    opacity: 0;
    display: none;
    transform: scale(1.1);
  }

  .form-wrapper {
    width: 70%;
  }

  .dance-hero-section, .graduation-hero-section, .photos-hero-section, .pool-party-hero-section, .committee-hero-section, .home-hero-section {
    padding-top: 88px;
  }

  .home-main-section.top-section {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 41px;
  }

  .logo-text {
    margin-bottom: 19px;
  }

  .hero-container {
    padding: 5px 0;
    top: auto;
  }

  .tile-text {
    font-size: 23px;
    line-height: 29px;
    bottom: 14px;
    left: 17px;
  }

  .logo-footer {
    float: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .footer-link-col {
    text-align: center;
  }

  .form-wrapper {
    width: 80%;
  }

  .dance-main-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dance-hero-section, .graduation-hero-section, .photos-hero-section, .pool-party-hero-section, .committee-hero-section, .home-hero-section {
    padding-bottom: 25px;
  }

  .committee-main-section, .pool-party-main-secton, .photos-main-section, .graduation-main-section, .home-main-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-main-section.top-section.home-page {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    text-shadow: 1px 1px 6px #00000061;
    font-size: 24px;
    line-height: 32px;
  }

  .logo-text {
    font-size: 26px;
  }

  .nav-link {
    text-align: left;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-link.dark {
    display: none;
  }

  .tile-text {
    font-size: 35px;
    line-height: 35px;
    bottom: 30px;
    left: 30px;
  }

  .footer-section, .logo-footer {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .logo-footer.w--current {
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: flex;
  }

  .footer-link-col {
    flex: 0 auto;
    display: none;
  }

  .close-link:hover {
    color: #fff;
  }

  .form-wrapper {
    width: 90%;
  }

  .cta-heading {
    font-size: 28px;
  }

  .home-page-heading {
    font-size: 45px;
    line-height: 50px;
  }

  .dance-main-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .photos-button {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .image {
    width: 50%;
    max-width: 50%;
    height: auto;
    display: block;
  }

  .committee-block, .pool-block, .photo-block, .graduation-block, .dance-block {
    width: 100%;
  }

  .committee-main-section, .pool-party-main-secton, .photos-main-section, .graduation-main-section, .home-main-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-block {
    width: 100%;
  }

  .dance-button-block, .graduation-button-block, .pool-party-button-block {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}


