html {
  font-family: "Roboto", sans-serif;
  --arrow-height: 1.675rem;
  --arrow-width: 2.75rem;
  --blue: #04364c;
  --dark-blue: #181c28;
}

/* headline */
.eyebrow {
  font-family: "orbitron", sans-serif;
  padding: 0.35rem 0.1rem;
}
.headline {
  background-image: url("https://d2z65klgtz99km.cloudfront.net/JA2/ja2_launch_0725/ja2hot_bg.webp");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.5rem 1.5rem;
  gap: 2rem;
}

.deep-blue-logo {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.james-altucher-image {
  max-width: 375px;
  width: 100%;
}

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

  .headline {
    padding: 1rem 1rem 2.5rem;
  }
}

h1 img {
  width: 111vw;
}

.deck {
  color: #4199e1;
  font-family: "obvia", sans-serif;
  font-weight: 900;
}

.subdeck {
  font-family: "arial", Helvetica, sans-serif;
  color: #fff;
}

/* all sections */
section {
  padding: 2rem 1rem 4rem;
}

.wrapper {
  max-width: 40rem;
}
.xl-wrapper {
  max-width: 50rem;
}

/*  */
.bg-blue {
  background-color: var(--blue);
}

.bg-dark-blue {
  background-color: var(--dark-blue);
}

.bg-gray {
  background-color: #ebebeb;
}

/* stock ticker */
.iframe-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

iframe {
  border: none;
  border-radius: 1rem;
  box-shadow: 5px 5px 20px 5px #a2a2a2;
}

.widgetExplainer {
  padding: 0.5rem;
  border: 3px groove rgb(111, 111, 111);
  border-radius: 5px;
  background-color: white;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .widgetExplainer {
    width: 55%;
    padding: 0.875rem;
    border-width: 4px;
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .widgetExplainer {
    width: 50%;
    padding: 0.875rem;
    border-width: 4px;
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
.widgetArrow {
  object-fit: contain;
  position: relative;
  top: -3rem;
  left: 0.125rem;
}
/* steps to take section */
.subheadline {
  font-family: "obvia", sans-serif;
  font-size: 2.5rem;
  font-size: clamp(1.4rem, 6vw, 2.5rem);
}

#steps a,
#steps a:visited {
  color: #00f;
}

ol {
  list-style: none;
  padding: 0;
}

.steps-list {
  padding-left: 3rem;
}

.steps-list li {
  margin-top: 2rem;
  position: relative;
  font-size: 1.25rem;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.steps-list li::before {
  font-weight: 900;
  content: '1.';
  display: inline-block;
  font-family: "obvia", sans-serif;
  text-align: center;
  font-size: 1rem;
  position: absolute;
  left: -1.5rem;
  top: 0.125rem;
}

.steps-list li:nth-child(2)::before {
  content: '2.';
}

.steps-list li:nth-child(3)::before {
  content: '3.';
}

.steps-list li:nth-child(4)::before {
  content: '4.';
}

.steps-list li:nth-child(5)::before {
  content: '5.';
}

.steps-list li::after {
  content: '';
  position: absolute;
  width: 2.3ch;
  aspect-ratio: 1;
  background-size: contain;
  background-repeat: no-repeat;
  left: -3.3rem;
  top: 0.1rem;
  background-image: url(img/step1.svg)
}
.steps-list li:nth-child(2)::after {
  background-image: url(img/step2.svg)
}

.steps-list li:nth-child(3)::after {
  background-image: url(img/step3.svg)
}

.steps-list li:nth-child(4)::after {
  background-image: url(img/step4.svg)
}

.steps-list li:nth-child(5)::after {
  background-image: url(img/step1.svg)
}
@media (min-width: 768px) {
  .steps-list li::after {
    width: 3.7ch;
    left: -5rem;
    top: -0.5rem;
  }
}
/* updates section */
#updates {
  margin-top: -2rem;
  padding-top: 4rem;
}

.update {
  background-color: #fff;
  padding: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
}

.update-copy {
  /* to make sure the copy section width is consistent regardless of amount of copy */
  flex-grow: 1;
}

.update img {
  align-self: flex-start;
}

.locked-copy {
  color: #969696;
  font-size: 35px;
  font-size: clamp(1rem, 6vw, 1.45rem);
}

.unlocked-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 35px;
  font-size: clamp(1.3rem, 6vw, 1.45rem);
}

.update-link {
  background-color: #308bfb;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 5px 15px !important;
  text-transform: uppercase;
  width: fit-content !important;
  align-self: flex-end;
  box-shadow: 0px 3px 6px #00000029;
  font-size: 1.5rem !important;
  border-radius: 0.25rem;
}

@media (max-width: 600px) {
  .update {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .update img,
  .update-link {
    align-self: center;
  }
}

/* calendar */
#calendar {
  margin-top: -2rem;
  /* extra padding since its a small section */
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.calendar_wrapper h2 {
  /* margin-top: 2rem; */
  padding: 1rem 1rem 1rem;
  /* background-color: #308bfb; */
  background-color: var(--blue);
  color: #fff;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  box-shadow: 0px 0px 15px 2px #a2a2a2;
}

.add-to-calendar {
  background-color: #fff;
  color: #000;
  border: 1px solid black;
  font-size: 1.25rem;
  font-weight: bold;
  margin: -1rem auto 1rem;
  padding: 0rem 1rem;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
}

.add-to-calendar label {
  font-size: 0.9rem;
  line-height: 1.1;
}

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

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

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

/* about */
#about {
  margin-top: -2rem;
  padding-top: 4rem;
}

/* testimonials */
#testimonials {
  margin-top: -2rem;
  padding-top: 4rem;
  position: relative;
  z-index: 99;
}
.max-width {
  max-width: 42rem;
}

figure {
  background-color: #efefef;
  box-shadow: 0 3px 4px #0000004b;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.figureGrid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.figureGrid img {
  border-radius: 5px;
}

@media (min-width: 768px) {
  figure {
    width: 90%;
  }
  .figureGrid {
    flex-direction: row;
  }
  .figureGrid blockquote {
    width: calc(100% - 150px - 1rem)
  }
}

figcaption {
  text-align: right;
  font-style: italic;
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

figure b {
  font-weight: 900;
}

/* in the media */
#media {
  margin-top: -2rem;
  padding-top: 4rem;
}
.media-wrapper {
  max-width: 1250px;
}
#inthemedia p,
#inthemedia h3 {
  text-wrap: balance;
}

#inthemedia h3 {
  font-size: clamp(1.2rem, 5vw, 1.85rem);
}

.divider {
  height: 3px;
  background-color: #c0bfbf;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

/* sms signup section   */
#sms {
  margin-top: -2rem;
  padding-top: 4rem;
}
.enter-number {
  font-family: "obvia", sans-serif;
  font-size: 1.875rem;
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 900;
  line-height: 1.2;
}

@media (max-width: 850px) {
  .sms-box {
    border-radius: 0;
  }
}

.sms-subheadline {
  font-size: 1rem;
}

@media (max-width: 650px) {
  .sms-subheadline br {
    display: none;
  }
}

/* sms input and button */
.sms-input-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sms-phone-input {
  padding: 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #939393;
  outline: none;
  font-size: 1.25rem;
  box-shadow: 0px 3px 6px #00000029;
}

.sms-submit-btn {
  padding: 0.5rem;
  background-color: #308bfb;
  color: #fff;
  font-size: 1.75rem;
  font-size: clamp(1rem, 4vw, 1.75rem);
  border: none;
  border-radius: 0.25rem;
  box-shadow: 0px 3px 6px #00000029;
}

.sms-submit-btn:hover:not([disabled]) {
  transform: scale(1.01);
  cursor: pointer;
}

.sms-submit-btn:active {
  transform: scale(1);
}

/* [disabled] {
    background-color: rgb(169, 168, 168) !important;
  } */
[disabled] {
  background-color: #8a8a8a !important;
}

/* sms disclaimer */
.disclaimer {
  font-size: 0.6rem;
  color: #939393;
  text-align: center !important;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
}

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

/* screen reader */
.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 {
  color: #939393;
}

/* sms - misc */
.success {
  font-size: 1.35rem !important;
  color: #02981ed0 !important;
}

.errorMessage,
.success {
  margin-top: 1rem;
}

.errorMessage {
  font-size: 1.35rem !important;
}

#noVid2Message {
  font-size: 0.65rem;
  text-align: center;
}

@media (max-width: 600px) {
  #noVid2Message br {
    display: none;
  }
}

.double-down-arrow {
  clip-path: polygon(
    0 0,
    calc(50% - var(--arrow-width)) 0,
    50% var(--arrow-height),
    calc(50% + var(--arrow-width)) 0,
    100% 0,
    100% calc(100% - var(--arrow-height)),
    calc(50% + var(--arrow-width)) calc(100% - var(--arrow-height)),
    50% 100%,
    calc(50% - var(--arrow-width)) calc(100% - var(--arrow-height)),
    0 calc(100% - var(--arrow-height))
  );
}

.bottom-down-arrow {
  clip-path: polygon(
    100% 0,
    100% calc(100% - var(--arrow-height)),
    calc(50% + var(--arrow-width)) calc(100% - var(--arrow-height)),
    50% 100%,
    calc(50% - var(--arrow-width)) calc(100% - var(--arrow-height)),
    0 calc(100% - var(--arrow-height)),
    0 0
  );
}

.top-down-arrow {
  clip-path: polygon(
    50% calc(0% + var(--arrow-height)),
    calc(50% + var(--arrow-width)) 0,
    100% 0,
    100% 100%,
    0 100%,
    0 0,
    calc(50% - var(--arrow-width)) 0
  );
}

.bg-gray {
  background-color: #ebebeb;
}

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

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

.fz-18 {
  font-size: clamp(0.75rem, 1.3176vw, 0.9514rem);
}

.fz-25 {
  font-size: clamp(0.75rem, 1.83vw, 1.3214rem);
}

.fz-30 {
  font-size: clamp(0.75rem, 2.196vw, 1.5857rem);
}

.fz-35 {
  font-size: clamp(1.1rem, 2.562vw, 1.85rem);
}

.fz-40 {
  font-size: clamp(1rem, 2.928vw, 2.11428rem);
}

.fz-45 {
  font-size: clamp(1rem, 3.294vw, 2.37857rem);
}

.fz-50 {
  font-size: clamp(1rem, 3.66vw, 2.64286rem);
}

.fz-60 {
  font-size: clamp(1rem, 4.392vw, 3.1714rem);
}

.nobreak2,
.nobreak3,
.nobreak4 {
  white-space: normal;
}

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

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

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

/* .hidden {
    display: none !important;
} */

@media (min-width: 768px) {
  .md\:inline {display: inline !important}
}
@media (min-width: 1200px) {
  .lg\:inline {display: inline !important}
  .lg\:flex {display: flex !important}
  .lg\:hidden {display: hidden !important}
  .lg\:block {display: block !important}
}

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