html {
  /* font-family: "Roboto", sans-serif; */
  font-family: "Lato", sans-serif;
}

#overlay2 {
  position: fixed;
  inset: 0;
  background-color: #000;
  z-index: 999;
}

#grid {
  display: grid;
  grid-template-columns: 1fr;
  /* grid-template-rows: 88vh 1fr; */
  grid-template-rows: 100vh 1fr;
  transition: grid-template-rows 1s;
}

/* TODO here */
#grid.post-intro {
  /* grid-template-rows: 6.25rem 1fr; */
  grid-template-rows: 10.7vw 1fr;
}

/* video and masthead */
.video-wrapper .wistia_responsive_wrapper {
  aspect-ratio: 16 / 9;
  position: absolute;
  inset: 0;
}
.mastheadimg{
  background: black;
  
}
.masthead{
  width: auto;
  margin: 0 auto;
  
}
.self-center {
  align-self: center;
}

/* for bg auto play wistia vid */
[data-handle="click-for-sound-backdrop"] {
  display: none !important;
}

main {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

#overlay {
  z-index: 2;
  position: fixed;
  inset: 0;
}

#timer {
  padding: 0.25rem 0.25rem 0.5rem;
  font-family: "acumin-pro-condensed", sans-serif;
  background-color: #000;
}

#timer .flex {
  gap: 0 0.5rem;
  width: fit-content;
}

.timer-value {
  font-size: 1.75rem;
  padding: 0 0.25rem 0.5rem;
  font-weight: 900;
  background-color: #fff;
  line-height: 1;
  text-shadow: none;
  /* so white boxes don't shift in size */
  width: 2rem;
}

.timer-label {
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-top: 0.25rem;
}

@media (max-width: 999px) {
  #introVideo {
    display: none;
  }
}

@media (min-width: 1000px) {
  .masthead {
   /* display: none; */
  }

  #timer {
    padding: 0.25rem 0.25rem 0.5rem;
    background-color: transparent;
    position: absolute;
    opacity: 1;
    /*
    top: -12vw;
     right: 2.55rem; */
    right: 1vw;
    /* opacity: 0; */
    transition: opacity 0.6s 0.3s;
    text-shadow: #000000b1 0px 0px 6px;
    transform: scale(0.8);
  }

  #timer .flex {
    gap: 0 0.25rem;
  }

  .timer-value {
    font-size: 2.125rem;
    /* so white boxes don't shift in size */
    width: 2.58rem;
  }
}

@media (min-width: 1200px) {
  #timer {
    transform: none;
    top: 2rem;
    /*
      top: -6rem;
    */
  }
}

/* navigation */
nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 0.75rem 5px;
  gap: 3rem;
  font-size: 0.75rem;
  font-size: clamp(0.65rem, 4.5vw, 0.75rem);
  text-align: center;
}

@media (max-width: 768px) {
  nav ul {
    gap: 0.25rem;
    font-size: 0.65rem;
  }
}

nav ul li [data-href] {
  color: #7b7b7b;
}

nav ul li [href] {
  text-decoration: none;
  color: black;
}

@media (min-width: 350px) {
  .new-content {
    position: relative;
  }

  .new-content::after {
    height: 10px;
    width: 10px;
    content: "\00a0";
    margin-left: 2.75rem;
    position: absolute;
    top: 0;
    background-color: #02c102;
    border-radius: 100%;
    animation: pulse 1.5s ease-out alternate infinite;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.75);
  }

  100% {
    transform: scale(1.2);
  }
}

/* video section */
#video, #doug{
  /* font-family: "elza-narrow", sans-serif; */
  padding: 2rem 8vw;
}

.text-darkred {
  color: #e30606;
}

.semibold {
  font-weight: 600;
}
#video-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  /* padding: 2rem 8vw; */
  align-items: center;
  margin-top: 2rem;
}

#video-container .wistia_responsive_wrapper {
  aspect-ratio: 16 / 9;
  background-color: green;
  width: 100%;
  max-width: 32rem;
  z-index: 3;
  position: relative;
  /*  */
  min-width: 0;
  align-self: center;
  justify-self: center;
  box-shadow: 6px 6px 6px #000000b4;
}

@media (min-width: 1300px) {
  #video-container {
    grid-template-columns: 44.6vw 1fr;
  }
  #video-container .wistia_responsive_wrapper {
    justify-self: end;
  }
}

.video-copy {
  container-type: inline-size;
}
.video-copy p {
  font-size: 1.33rem;
  font-size: clamp(1rem, 5.42cqw, 1.33rem);
}

/* confirmed section */
.confirmed-section {
  /* font-family: "elza-narrow", sans-serif; */
  background-color: #efefef;
}
.enrique {
  text-transform: uppercase;
  font-weight: 700;
}

/* updates/briefings */
.update-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  max-width: 41rem;
  gap: 1rem;
  margin-bottom: 2rem;
}

.update-title {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  line-height: 1;
}

.update-title a:hover {
  color: #0000ed;
}

.update-link {
  text-align: right;
}

.update-link a {
  text-decoration: none;
  color: #0000ed;
}

.update-title a {
  text-decoration: none;
  color: #000;
}

@media (max-width: 650px) {
  .update-container {
    grid-template-columns: 1fr;
  }

  .update-container h3,
  .update-text,
  .update-link {
    text-align: center;
  }
}

.update-pending {
  font-family: "obvia", sans-serif;
  font-size: 1.5rem;
  font-size: clamp(1.2rem, 5vw, 1.5rem);
  color: #444444;
  text-align: center;
}

/* discover section */
@media (max-width: 425px) {
  #discover h2 br {
    display: none;
  }
}
#discover ul {
  margin-left: 0.5rem;
}

.list-green-checkmark {
  list-style-image: url(https://d2z65klgtz99km.cloudfront.net/PMG/pmg_allin_0825/green_check.png);
}

.relative {
  position: relative;
}
.editor-checkmark {
  width: clamp(75px, 15vw, 115px);
}

/* editor section */
#about {
  background-color: #e6f5ff;
  padding-bottom: 1.5rem;
}

#about h2 {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.headshot {
  width: clamp(200px, 33%, 350px);
}

.wrapper-padding {
  padding: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.divider {
  width: 75%;
  margin: 2rem auto 2rem;
  background-color: #5f5f5f;
  height: 1px;
}

/* misc text */
.highlight {
  background-color: #ff0;
  padding-left: 2px;
  padding-right: 2px;
}
.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.h2-bg {
  font-family: "Oxanium", sans-serif;
  background-color: #000;
  color: white;
  line-height: 1.1;
  padding: 1rem 0.25rem;
  font-size: 2.1rem;
  font-size: clamp(1.5rem, 5vw, 2.1rem);
}

.text-neongreen {
  color: #00f601;
}

.max-width {
  max-width: 42rem;
}

.fz-35 {
  font-size: clamp(1.25rem, 2.5vw, 1.675rem);
}

.fz-40 {
  font-size: clamp(1.325rem, 3vw, 1.75rem);
}

.fz-45 {
  font-size: clamp(1.6rem, 3.3vw, 2rem);
}

.fz-50 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.fz-35,
.fz-40,
.fz-45,
.fz-50 {
  line-height: 1.2;
}

.text-left {
  text-align: left;
}

.font-black {
  font-weight: 900;
}

.wrapper {
  max-width: 38rem;
}

.no-scroll {
  overflow-y: hidden;
}

.font-lato {
  font-family: "Lato", sans-serif;
}

.font-acumin {
  font-family: "acumin-pro-condensed", sans-serif;
}

.text-green {
  color: #2f9816;
}

.text-gray {
  color: #7b7b7b;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fade-in {
  animation: fade-in 1s;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  from {
    background-color: rgba(0, 0, 0, 0);
  }

  to {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.fz-2rem {
  font-size: 2rem;
}

.mw-850 {
  width: 100%;
  max-width: 850px;
}

.text-md {
  font-size: clamp(1rem, 5cqw, 1.25rem);
}

.text-lg {
  font-size: 1.15rem;
  font-size: clamp(1.15rem, 6.4cqw, 1.6rem);
  /* font-family: elza-narrow, sans-serif; */
}

.text-date {
  font-size: 0.95rem;
  font-size: clamp(0.95rem, 5cqw, 1.2rem);
  /* font-family: elza-narrow, sans-serif; */
}

@media (max-width: 1299px) {
  .text-lg {
    font-size: 1.75rem;
    font-size: clamp(1.75rem, 6.4cqw, 2.6rem);
  }

  .text-date {
    font-size: 1.4rem;
    font-size: clamp(1.4rem, 5cqw, 2rem);
  }
}

.nobreak {
  white-space: normal;
}

@media (min-width: 415px) {
  .nobreak {
    white-space: nowrap;
  }
}

.report-container {
  position: relative;
}

.discover-report-annotation {
  position: absolute;
  right: -225px;

  top: -100px;
  width: 200px;
}

@media (max-width: 1475px) {
  .discover-report-annotation {
    right: -150px;
    top: -70px;
    width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 1325px) {
  .discover-report-annotation {
    display: none;
  }
}

@media (max-width: 768px) {
  .discover-report-annotation {
    right: 50px;
    top: 0;
    width: 150px;
  }
}

@media (max-width: 715px) {
  .discover-report-annotation {
    right: 0;
    top: 0;
    width: 125px;
  }
}

@media (max-width: 650px) {
  .discover-report-annotation {
    right: 0;
    top: 0;
    width: 125px;
  }
}

@media (max-width: 575px) {
  .discover-report-annotation {
    display: none;
  }
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-top: 50px solid #000;
  margin-top: 0.25rem;
}

.font-obvia {
  font-family: "obvia", sans-serif;
}

.subheadline {
  font-size: 2.25rem;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1.1;
}

.position-relative {
  position: relative;
}

.alpha-fuse-img {
  float: right;
  margin-left: 1rem;
  width: 300px;
  margin-bottom: 2rem;
}

@media (max-width: 650px) {
  .alpha-fuse-img {
    width: 225px;
    float: none;
    margin: 0 auto;
  }
}

.secret2 {
  background-color: #efefef;
  border-top: 3px solid #707070;
}

.alpha-fuse-plays {
  background-color: #fff;
  border: 1px solid #707070;
  box-shadow: 0px 3px 6px #0000008d;
  width: 100%;
  max-width: 765px;
  padding: 1rem;
  margin: 1rem auto 0;
  font-size: 1.4rem;
  /* font-weight: 700; */
}

.alpha-fuse-plays ul {
  margin-left: 2rem;
}

@media (max-width: 768px) {
  .alpha-fuse-plays ul {
    margin-left: 1rem;
  }
  .alpha-fuse-plays ul > * + * {
    margin-top: 1rem;
  }
}

.alpha-fuse-plays li {
  line-height: 1.3;
}

.text-lightgreen {
  color: #0da800;
}

.annotation-perfect-record {
  position: absolute;
  width: 250px;
  left: -12rem;
  bottom: 0.5rem;
  transform: rotate(10deg);
}

@media (max-width: 1550px) {
  .annotation-perfect-record {
    width: 200px;
    bottom: 3rem;
    left: -9rem;
  }
}

@media (max-width: 1400px) {
  .annotation-perfect-record {
    width: 160px;
    bottom: 5rem;
    left: -6rem;
  }
}

@media (max-width: 1275px) {
  .annotation-perfect-record {
    display: none;
  }
}

.freegift-box {
  background-color: #fff;
  border: 1px solid #707070;
  box-shadow: 0px 3px 6px #0000008d;
  width: 100%;
  max-width: 765px;
  padding: 1rem;
  margin: 1rem auto 0;
  font-size: 1.4rem;
  /* font-weight: 700; */
}

.meet-enrique {
  background-color: #efefef;
  clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  padding-bottom: 5rem;
  margin-bottom: 1rem;
}

.enrique-hs {
  margin-left: -5rem;
  width: 325px;
  margin-top: 1rem;
}

@media (max-width: 1175px) {
  .enrique-hs {
    margin-left: 0;
    width: 275px;
  }
}

@media (max-width: 575px) {
  .enrique-hs {
    width: 175px;
  }
}

.ml-2 {
  margin-left: 2rem;
}

.wrapper-padding-large {
  padding: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}

.testimonial-box {
  background-color: #fff;
  border: 1px solid #707070;
  box-shadow: 0px 3px 6px #0000008d;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-headshot {
  width: 100%;
  max-width: 200px;
  margin-left: -100px;
  transform: scale(1.1);
}

@media (max-width: 1325px) {
  .testimonial-headshot {
    margin-left: 0;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .testimonial-box {
    flex-direction: column;
    padding-top: 1rem;
  }

  .column-reverse {
    flex-direction: column-reverse;
  }
}

.testimonial-headshot-right {
  width: 100%;
  max-width: 200px;
  margin-right: -100px;
  transform: scale(1.1);
}

@media (max-width: 1325px) {
  .testimonial-headshot-right {
    margin-right: 0;
    transform: scale(1);
  }
}

.testimonial-box div {
  padding: 0.25rem 0.5rem;
}

.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}

.box {
  background-color: #fff;
  border: 1px solid #707070;
  box-shadow: 0px 3px 6px #0000008d;
  width: 100%;
  padding: 1rem;
  margin: 1rem auto 0;
  font-size: 1.4rem;
}

.annotation-secret {
  position: absolute;
  width: 300px;
  bottom: 1.5rem;
  right: -12rem;
  transform: rotate(10deg);
}

@media (max-width: 1650px) {
  .annotation-secret {
    width: 250px;
    right: -8rem;
  }
}

@media (max-width: 1430px) {
  .annotation-secret {
    display: none;
  }
}

.report-container {
  position: relative;
  width: fit-content;
  margin: 1rem auto 0;
}

.report-cover {
  width: 300px;
  /* filter: drop-shadow(0 0 5px #000); */
}

.annotation-nocc {
  width: 500px;
  position: absolute;
  top: 1rem;
  right: -14rem;
  transform: rotate(10deg);
}

@media (max-width: 1015px) {
  .annotation-nocc {
    width: 250px;
    right: -11rem;
  }
}

@media (max-width: 875px) {
  .annotation-nocc {
    width: 200px;
    right: -8rem;
    top: 0;
  }
}

@media (max-width: 768px) {
  .annotation-nocc {
    display: none;
  }
}

/* sms */
.sms-box {
  background-color: #fff;
  border: 1px solid #707070;
  box-shadow: 0px 3px 6px #0000008d;
  width: 100%;
  padding: 1rem;
  margin: 1rem auto 2rem;
  position: relative;
}

.sms-box .sms-disclaimer {
  font-size: 0.7rem;
  color: #939393;
  text-align: center !important;
  line-height: 1.3;
  margin: 0 auto;
}

p.sms-disclaimer a {
  color: #7d7d7d;
}

.smsNumberLabel {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1rem;
}

#smsPhoneNumber-noVid2 {
  padding: 0.5rem;
  font-size: 1.4rem;
  text-align: center;
  border: 1px solid #000;
  width: 100%;
  outline: none;
  margin-bottom: 1rem;
}

#smsSubmit-noVid2 {
  width: 100%;
  max-width: 450px;
  padding: 0.5rem;
  font-size: 1.25rem;
  border-radius: 2rem;
  background-color: #0da800;
  color: #fff;
  border: 3px solid #000;
  margin: 0 auto -2.5rem;
  transition: all 0.2s ease;
  line-height: 1;
}

#smsSubmit-noVid2:disabled {
  background-color: #cacaca;
  color: #888888;
  border: none;
  cursor: not-allowed;
}

#smsSubmit-noVid2:hover:not(:disabled) {
  cursor: pointer;
  background-color: #0c9000;
}

.annotation-text {
  width: 300px;
  position: absolute;
  bottom: 0;
  left: -11rem;
  transform: rotate(-25deg);
}

@media (max-width: 1500px) {
  .annotation-text {
    width: 225px;
    left: -8rem;
  }
}

@media (max-width: 1350px) {
  .annotation-text {
    display: none;
  }
}

[type="text"]::placeholder {
  color: #a8a8a8;
}

.sms-input-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto 0;
  max-width: 800px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only a,
.disclaimer a {
  color: #939393;
}

.international {
  border: solid red 1px;
  padding: 10px;
}

.annotation-fuse {
  position: absolute;
  width: 275px;
  top: 0rem;
  right: -12rem;
  transform: rotate(15deg);
  /* border: none !important; */
}

@media (max-width: 1650px) {
  .annotation-fuse {
    width: 220px;
    top: 2.5rem;
    right: -9rem;
  }
}

@media (max-width: 1500px) {
  .annotation-fuse {
    display: none;
  }
}

/* calendar */
.calendar_wrapper {
  clear: both;
  background: #ebebeb;
  padding-top: 1.5rem;
  position: relative;
  clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
  padding-bottom: 2.5rem;
}

.calendar_wrapper h2 {
  font-size: 2rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
  padding: 1rem 1rem 2rem;
  line-height: 1.2;
}

.add-to-calendar {
  background-color: #fff;
  color: #000;
  border: 3px solid #000;
  border-radius: 4rem;
  font-family: "obvia", sans-serif;
  font-size: 1.25rem;
  font-size: clamp(0.8rem, 5vw, 1.25rem);
  font-weight: bold;
  margin: -1.25rem auto 1rem;
  padding: 0.5rem 2rem;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
}

.add-to-calendar a {
  color: #000;
  font-size: 0.7em;
}

.add-to-calendar-checkbox[type="checkbox"] {
  display: none;
}

.calendar_inside {
  font-family: "elza-narrow", sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #0da800;
  border: 3px solid #000;
  color: #fff;
  border-radius: 4rem;
  box-shadow: 0px 3px 6px #0000008d;
}

.add-to-calendar-checkbox:hover {
  cursor: pointer;
}

@media (max-width: 550px) {
  .calendar_wrapper h2 {
    padding: 0.5rem 1rem 1.25rem;
  }
  .calendar_inside {
    margin: 0 0.25rem;
  }
}

.calendar-img {
  width: 100%;
  max-width: 200px;
}

@media (max-width: 350px) {
  .calendar-img {
    float: none;
    margin: 0 auto;
  }
}

/* */
@media (max-width: 500px) {
  .break-500 {
    display: none;
  }
}

.flow-lg > * + * {
  margin-top: 1.75rem;
}
