body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 22px;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
  }
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  padding: 0;
  margin: 0;
}

p {
  margin: 0 0 1em 0;
}

.bold {
  font-weight: 900;
}

.button {
  background-color: white;
  color: #ed002d;
  font-family: inherit;
  border: none;
  padding: 10px 20px;
  font-size: 41px;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  border-radius: 100px;
}
.button:hover {
  background-color: rgb(135, 0, 25.6329113924);
}
.button.red {
  background-color: #ed002d;
  color: white;
}
.button.red:hover {
  background-color: rgb(255, 84, 116.4683544304);
}

.hero {
  background-color: #ed002d;
  height: 100svh;
  min-height: 930px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-top: 10svh;
  padding-bottom: 10svh;
  align-items: center;
  color: white;
  text-align: center;
  margin-bottom: 140px;
  row-gap: 40px;
}
.hero img {
  width: 580px;
}
.hero img.drinkaware {
  width: 20% !important;
  min-width: 180px !important;
}
.hero h1 {
  font-size: 58px;
  text-transform: uppercase;
  width: 1160px;
  max-width: 80%;
}
.hero h2 {
  font-size: 30px;
  font-weight: 400;
  width: 1030px;
  line-height: 1.1;
  letter-spacing: 0em;
  max-width: 80%;
}
@media screen and (max-width: 991px) {
  .hero {
    padding-top: 5svh;
    margin-bottom: 100px;
    min-height: auto;
  }
  .hero img {
    width: 400px;
    max-width: 60%;
  }
}
@media screen and (max-width: 991px) and (max-width: 767px) {
  .hero {
    padding-top: 5svh;
  }
  .hero img {
    width: 300px;
    max-width: 80%;
  }
  .hero h1 {
    font-size: 34px;
    width: 90%;
  }
  .hero h2 {
    font-size: 18px;
    width: 90%;
  }
  .hero .button {
    font-size: 24px;
    padding: 8px 16px;
  }
}

.duo-column {
  padding: 0 80px;
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10vw;
  margin-bottom: 100px;
}
.duo-column h2 {
  white-space: nowrap;
  letter-spacing: 0em;
}
.duo-column ul,
.duo-column ol {
  margin-top: 0;
  margin-bottom: 2em;
  margin-left: 0;
}
.duo-column ul li,
.duo-column ol li {
  margin-bottom: 0.3em;
}
.duo-column img {
  width: 100%;
  margin-top: 1em;
}
.duo-column .button {
  font-size: 30px;
  margin-top: 1.5rem;
}
.duo-column .faq {
  margin-bottom: 1em;
}
.duo-column .faq .red {
  color: red;
}
@media screen and (max-width: 991px) {
  .duo-column {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    row-gap: 1.5em;
  }
  .duo-column h2 {
    white-space: normal;
  }
  .duo-column button {
    margin: auto;
    display: block;
  }
}
@media screen and (max-width: 991px) and (max-width: 767px) {
  .duo-column {
    padding: 0 20px;
  }
  .duo-column h2 {
    font-size: 24px;
  }
  .duo-column ul li {
    font-size: 16px;
  }
  .duo-column .button {
    font-size: 24px;
    padding: 8px 16px;
  }
}

#submission-form {
  background-color: #ed002d;
  color: white;
  padding-top: 150px;
  padding-bottom: 150px;
  margin-top: 150px;
  margin-bottom: 150px;
}
#submission-form form {
  width: 52vw;
  margin: auto;
  max-width: 1000px;
}
#submission-form form h2 {
  font-size: 58px;
  text-align: center;
  margin-bottom: 50px;
}
#submission-form form label,
#submission-form form .label {
  font-size: 0.5em;
  font-weight: 900;
  text-transform: uppercase;
  display: block;
}
#submission-form form label input,
#submission-form form label textarea,
#submission-form form .label input,
#submission-form form .label textarea {
  display: block;
  font-size: 2em;
  width: 100%;
  font-family: inherit;
  box-sizing: border-box;
}
#submission-form form label textarea,
#submission-form form .label textarea {
  height: 3.5em;
  resize: vertical;
}
#submission-form form .checkbox {
  font-size: 1em;
  text-transform: none;
  margin: 0.3em 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
#submission-form form .checkbox input {
  display: inline-block;
  width: auto;
  cursor: pointer;
  height: 0.5em;
  width: 0.5em;
  margin-right: 0.1em;
  flex-shrink: 0;
}
#submission-form form .button {
  margin: 1em auto;
  display: block;
}
#submission-form form .button.hide {
  display: none;
}
#submission-form form .successfully-submitted {
  display: none;
  text-align: center;
  font-size: 1.5em;
  margin-top: 20px;
  width: 100%;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}
@media screen and (max-width: 991px) {
  #submission-form form {
    width: 80%;
  }
  #submission-form form .button {
    font-size: 24px;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 991px) and (max-width: 767px) {
  #submission-form {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  #submission-form form {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  #submission-form form h2 {
    font-size: 36px;
  }
}

.smirnoff-collectives-footer {
  background-color: #ed002d;
  color: white;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.smirnoff-collectives-footer .logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  max-width: 1500px;
  width: 55%;
  margin: 0 auto;
}
.smirnoff-collectives-footer .logos img {
  min-width: none;
  overflow: hidden;
  width: 100%;
  display: block;
}
.smirnoff-collectives-footer .logos img#district-logo {
  width: 100%;
}
.smirnoff-collectives-footer .logos img#smirnoff-logo {
  width: 100%;
}
.smirnoff-collectives-footer .logos img#ep-logo {
  width: 100%;
}
.smirnoff-collectives-footer h2 {
  font-size: 68px;
  text-transform: uppercase;
  text-align: center;
  max-width: 1500px;
  width: 80%;
}
.smirnoff-collectives-footer h2 a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.smirnoff-collectives-footer h2 a:hover {
  color: rgb(255, 186, 199.1012658228);
}
.smirnoff-collectives-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.smirnoff-collectives-footer a:hover {
  color: rgb(255, 186, 199.1012658228);
}
@media screen and (max-width: 991px) {
  .smirnoff-collectives-footer {
    padding-top: 5svh;
    padding-top: 5svh;
    row-gap: 40px;
  }
  .smirnoff-collectives-footer .logos {
    grid-template-columns: 1fr;
  }
  .smirnoff-collectives-footer .logos img {
    width: 55%;
    max-width: 300px;
    margin: auto;
  }
  .smirnoff-collectives-footer h2 {
    font-size: 30px;
    width: 90%;
  }
}

footer#colophon {
  margin-top: 0 !important;
}

.site-branding {
  display: none !important;
}

/*# sourceMappingURL=style.css.map */
