* {
  margin: 0;
  padding:0;
  box-sizing: border-box;
}
html,
body {
  --body-font: 'Nunito', Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
  --bitsbox-yellow: #FFB500;
  --homeschool-red: #E11D38;
  --see-through-white: rgba(255,255,255,.9);
  --highlighter-pink: #FF39A4;
  --mac-and-cheese: #FF9300;
  --sea-green: #009DA3;
  --dark-text: #002D44;
  --accent-color: var(--highlighter-pink);
  margin: 0px;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}
#scaley-backdrop {
  position: relative;
  background: rgb(0,64,96,0);
  background-image: linear-gradient(180deg,
    rgba(0,64,96,1) 0%,
    rgba(0,105,160,1) 100%),
    url(/img/scales-bw.jpg);
  background-size: contain;
  top: 75px;
  background-blend-mode: multiply;
}
#hero-container {
  position: relative;
  width: 100%;
  height: 598px;
  overflow: hidden;
  left: 50%;
  transform: translate(-50%, 0);
  border-top: 10px solid var(--accent-color);
}
h1 {
  margin-top: 24px;
  margin-bottom: -25px;
  padding: 0 40px;
  font-family: var(--body-font);
  font-size: 50px;
  color: white;
  line-height: 69px;
}
h1.products-for-schools {
  margin-top: 55px;
  margin-bottom: 30px;
  min-height: 71px;
}
#teacher-video-container {
  position: relative;
  display: inline-block;
  margin: 55px 5px;
  padding-left: 113px;
  cursor: pointer;
}
#teacher-video-play-button {
  width: 60px;
  height: 60px;
  background: #FF0000;
  border: none;
  border-radius: 30px;
  position: absolute;
  margin-left: calc(113px / 2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#teacher-video-play-button.hidden {
  display: none;
}
#teacher-video-play-button:after {
  content: '';
  position: absolute;
  display: block;
  border: 15px solid transparent;
  border-left: 26px solid white;
  left: 21px;
  top: 15px;
}
#teacher-video {
  height: 365px;
  width: 640px;
  background: #0a0a0a;
  border: 6px solid black;
  border-radius: 25px;
  filter: brightness(0.49);
}
#teacher-video.brighten {
  filter: brightness(1);
}
#hero-copy {
  display: inline-block;
  width: 350px;
  height: 270px;
  margin-top: 90px;
  vertical-align: top;
  padding: 20px 40px;
  padding-left: 21px;
  text-align: left;
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: white;
}
#subscribe-banner {
  position: absolute;
  display: flex;
  width: 100%;
  height: 71px;
  justify-content: center;
  background-color: black;
  color: rgb(213, 213, 213);
  font-family: var(--body-font);
  font-size: 20px;
  top: 534px;
  z-index: 10;
  transition: .3s width, .3s height;
}
#subscribe-banner:before,
#subscribe-banner:after {
  content: '';
  position: absolute;
  width: 100%;
  border-top: 8px dotted black;
  margin-top: -4px;
  z-index: -1;
}
#subscribe-banner:after {
  margin-top: 67px;
}
#subscribe-banner p {
  display: inline-block;
  text-align: left;
  margin: 0;
  padding: 27px;
  margin-left: 22px;
}
#subscribe-banner .button-cta {
  color: black;
  background-color: var(--bitsbox-yellow);
  padding: 16px 22px;
  font-size: 20px;
  font-weight: 700;
  margin-top: -30px;
  margin-left: 61px;
  border: 5px solid black;
  transition: .2s margin-top ease-out,
              .2s filter ease-out;
}
#subscribe-banner .button-cta:hover {
  filter: brightness(1.14);
  box-shadow: none;
}
#subscribe-banner.sticky {
  position: fixed;
  align-items: center;
  top: 42px;
}
#subscribe-banner.sticky .button-cta {
  margin-top: 67px;
}
#subscribe-banner.sticky:before {
  opacity: 0;
}
#subscribe-banner.sticky:after {
  margin-top: 71px;
}
.bitsbox-yellow {
  color: var(--bitsbox-yellow);
}
#reasons-to-love-coding-section {
  overflow: hidden;
}
#reasons-to-love-coding-section .reason {
  margin-top: 40px;
  width: 100%;
  height: 137px;
}
#reasons-to-love-coding-section .open-ended,
#reasons-to-love-coding-section .typed-javascript,
#reasons-to-love-coding-section .kids-share {
  border-top: 100px solid transparent;
  border-bottom: 195px solid var(--see-through-white);
  border-right: 144vw solid var(--see-through-white);
  margin-top: 0;
}
#reasons-to-love-coding-section .real-apps,
#reasons-to-love-coding-section .no-experience {
  border-top: 80px solid transparent;
  border-bottom: 178px solid var(--see-through-white);
  border-left: 100vw solid var(--see-through-white);
}
.reason-container {
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -65px;
}
.typed-javascript .reason-container {
  margin-top: -70px;
}
.no-experience .reason-container {
  margin-top: -119px;
}
.kids-share .reason-container {
  margin-top: -108px;
}
.reason-container:after {
  content: '';
  position: absolute;
  width: 100vw;
  border-top: 8px dotted black;
  margin-top: 274px;
}
.open-ended .reason-container:after {
  margin-top: 260px;
}
.real-apps .reason-container:after,
.typed-javascript .reason-container:after {
  margin-top: 265px;
}
.no-experience .reason-container:after {
  margin-top: 297px;
}
.kids-share .reason-container:after {
  margin-top: 293px;
  border-top: 10px solid var(--accent-color);
}
.real-apps .reason-container {
  margin-top: -87px;
}
.reason-img {
  height: 260px;
}
.reason-img.right {
  height: 265px;
}
.open-ended .reason-img {
  background: url(/img/open-ended-projects.png);
  background-size: 469px;
  width: 469px;
}
.real-apps .reason-img {
  background: url(/img/make-real-apps.png);
  background-size: 445px;
  width: 445px;
}
.typed-javascript .reason-img {
  background: url(/img/typed-javascript-coding.png);
  background-size: 442px;
  width: 442px;
  height: 265px;
}
.no-experience .reason-img {
  background: url(/img/no-experience-required.png);
  background-size: 446px;
  width: 446px;
  height: 297px;
}
.kids-share .reason-img {
  background: url(/img/kids-share-apps.png);
  background-size: 500px;
  width: 500px;
  height: 303px;
}
.reason-txt {
  width: 599px;
  text-align: left;
  margin-top: 30px;
  margin-left: 14px;
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #003E5F;
}
.no-experience .reason-txt {
  margin-top: 60px;
}
.kids-share .reason-txt {
  margin-top: 50px;
}
.reason-txt h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: bolder;
  color: var(--dark-text);
}
.reason-txt h3 span {
  font-size: 48px;
  line-height: 66px;
}
.bold {
  font-weight: bolder;
}
.open-ended .reason-txt h3 span {
  color: var(--accent-color);
}
.real-apps .reason-txt h3 span {
  color: var(--mac-and-cheese);
}
.typed-javascript .reason-txt h3 span,
.kids-share .reason-txt h3 span {
  font-size: 39px;
  color: var(--sea-green);
}
.no-experience .reason-txt h3 span {
  font-size: 44px;
  color: var(--accent-color);
}
#bitsbox-school-products {
  padding-top: 123px;
  margin-top: -123px;
  padding-bottom: 55px;
  border-bottom: 10px solid var(--accent-color);
}
#bitsbox-school-products h2 {
  font-family: var(--body-font);
  color: white;
  font-size: 33px;
  font-weight: 800;
  margin-top: 55px;
  margin-bottom: 25px;
  text-decoration: underline;
  text-underline-offset: 10px;
}
#bitsbox-school-products h2.extras {
  margin-top: 105px;
  margin-bottom: -75px;
}
#bitsbox-school-products .product {
  position: relative;
  display: inline-block;
  width: 220px;
  height: 275px;
  background-size: 220px;
  background-repeat: no-repeat;
  margin-right: 35px;
  font-family: var(--body-font);
  text-align: center;
  color: white;
}
#bitsbox-school-products .product p {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  margin-top: 230px;
}
#bitsbox-school-products .product span {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
}
.unit-1-cpbs {
  background: url(/img/unit-1-cpbs.png);
}
.unit-2-cpbs {
  background: url(/img/unit-2-cpbs.png);
}
.unit-3-cpbs {
  background: url(/img/unit-3-cpbs.png);
}
.coding-workbooks {
  background: url(/img/coding-workbooks.png);
}
.storage-container {
  background: url(/img/storage-container.png);
  margin-right: 0;
}
.school-products-backdrop {
  position: absolute;
  margin-top: 107px;
  width: 100vw;
  height: 194px;
  background: black;
}
.school-products-backdrop:before,
.school-products-backdrop:after {
  border-top: 8px dotted black;
}
.school-products-backdrop.extras {
  margin-top: 207px;
}
.school-products-container {
  padding-left: 35px;
}
.school-products-container a {
  text-decoration: none;
}
#extras-container {
  margin-top: 100px;
}
#learn-more-classroom-materials {
  padding: 0 30px;
}
#learn-more-classroom-materials a {
  max-width: 524px;
  max-height: 111px;
  line-height: 23px;
  background: var(--bitsbox-yellow);
  border: 5px solid black;
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: bold;
  text-transform: initial;
  padding: 16px;
  margin-top: 49px;
  margin-bottom: 22px;
  transition: .2s filter ease-out;
}
#learn-more-classroom-materials a:hover {
  filter: brightness(1.14);
  box-shadow: none;
}
.faq-bumper {
  padding-top: 123px;
  margin-top: -123px;
}
#faq-section,
#bottom-buffer {
  width: 100vw;
  background: var(--see-through-white);
  font-family: var(--body-font);
  text-align: left;
  padding: 56px;
}
#faq-section {
  padding-top: 39px;
}
#faq-body {
  max-width: 620px;
  margin: 0 auto;
}
h2 {
  font-size: 40px;
  font-weight: 900;
  padding-bottom: 39px;
  text-align: center;
}
#faq-section h2 {
  padding-bottom: 27px;
  line-height: 52px;
}
#faq-section h3 {
  font-size: 30px;
  font-weight: 900;
  color: var(--sea-green);
  padding-bottom: 21px;
  line-height: 40px;
}
#faq-section p, 
#faq-section li {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--dark-text);
}
#faq-section p {
  padding-bottom: 31px;
}
#faq-section a {
  color: var(--sea-green);
  text-decoration: none;
  font-weight: 900;
}
#faq-section a:hover {
  text-decoration: underline;
}
ul, ol {
  margin-top: -30px;
  margin-left: 1em;
}
li {
  margin-top: 12px;
}
#teacher-signup-banner {
  width: 100vw;
  border-top: 10px solid var(--accent-color);
}
#teacher-signup-banner p {
  font-family: var(--body-font);
  color: white;
  font-size: 24px;
  font-weight: 600;
  padding: 20px 20px;
  line-height: 34px;
}
#teacher-signup-banner form {
  margin-top: 6px;
}
#teacher-signup-banner .email {
  max-width: 358px;
  width: calc(100% - 40px);
  height: 60px;
  border-radius: 30px;
  border: 1px solid #707070;
  font-size: 22px;
  font-family: var(--body-font);
  font-weight: 600;
  padding: 10px 25px;
  margin-top: -10px;
  margin-bottom: 40px;
}
#teacher-signup-banner .email::placeholder {
  font-family: var(--body-font);
  font-size: 22px;
  font-weight: 600;
  color: #696969;
}
#teacher-signup-banner .schoolspage-button-email-02 {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 900;
  width: 240px;
  height: 60px;
  margin-bottom: 40px;
  border: 5px solid black;
  background: #00F5FF;
  color: black;
  vertical-align: initial;
  transition: .2s filter ease-out;
}
#teacher-signup-banner .schoolspage-button-email-02:hover {
  filter: brightness(1.14);
  box-shadow: none;
}
#bottom-buffer {
  margin-bottom: 75px;
  border-top: 10px solid var(--accent-color);
}

/* Custom UserVoice Widget */
#contact_icon {
  position: fixed;
  width: 148px;
  height: 67px;
  padding: 12px 20px;
  bottom: 20px;
  right: 22px;
  background-color: var(--accent-color);
  border-radius: 13px;
  text-decoration: none;
  user-select: none;
  z-index: 10;
  transition: .2s filter ease-out;
}
#contact_icon:hover,
#contact_icon.active {
  filter: brightness(1.1);
}
#contact_icon span {
  font-family: 'Nunito', Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  color: white;
}
#contact_icon span.bold {
  font-size: 20px;
  font-weight: bolder;
}


/* Homeschool and Step Up Styles */
.step-up #scaley-backdrop {
  top: 0;
}
.homeschool #hero-container {
  height: 680px;
}
.heading-sub-text {
  position: relative;
  display: block;
  margin-top: 27px;
  font-family: var(--body-font);
  font-size: 20px;
  line-height: 34px;
  color: white;
}
#homeschool-video-container {
  position: relative;
  display: inline-block;
  margin: 100px 5px;
}
.homeschooler-video {
  display: inline-block;
  cursor: pointer;
}
#why-video-play-button,
#how-video-play-button,
#what-video-play-button {
  width: 60px;
  height: 60px;
  background: #FF0000;
  border: none;
  border-radius: 30px;
  position: absolute;
  margin-left: -190px;
  margin-top: 60px;
  cursor: pointer;
}
#how-video-play-button {
  margin-left: -230px;
}
#why-video-play-button.hidden,
#how-video-play-button.hidden,
#what-video-play-button.hidden {
  display: none;
}
#why-video-play-button:after,
#how-video-play-button:after,
#what-video-play-button:after {
  content: '';
  position: absolute;
  display: block;
  border: 15px solid transparent;
  border-left: 26px solid white;
  left: 21px;
  top: 15px;
}
#why-video,
#how-video,
#what-video {
  height: 179px;
  width: 309px;
  background: #0a0a0a;
  border: 6px solid black;
  border-radius: 15px;
  filter: brightness(0.49);
}
#how-video {
  margin: 0 42px;
}
#why-video.brighten,
#how-video.brighten,
#what-video.brighten {
  filter: brightness(1);
}
.video-title-tab {
  position: absolute;
  width: 265px;
  height: 41px;
  margin-top: -41px;
  margin-left: 22px;
  padding: 16px 0px;
  border-radius: 13px 13px 0 0;
  background-color: black;
  color: white;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: bold;
}
.video-title-tab.how {
  margin-left: 65px;
}
.video-title-tab .bitsbox-yellow {
  font-weight: bolder;
}
.time-length {
  position: relative;
  display: block;
  color: white;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: bold;
  line-height: 34px;
}
.homeschool #subscribe-banner {
  font-size: 24px;
}
.step-up #subscribe-banner.sticky {
    top: 0;
}
.homeschool #subscribe-banner p {
  margin-left: 0;
  padding-right: 0;
}
.homeschool #subscribe-banner #awards-panel {
  position: absolute;
  top: -110px;
  height: 215px;
}
.homeschool-logo,
.step-up-logo {
  width: 78px;
  height: 91px;
  margin-top: -6px;
  margin-right: -23px;
  transition: .2s margin-top ease-out;
}
.sticky .homeschool-logo,
.sticky .step-up-logo {
  margin-top: 32px;
  margin-right: -10px;
}
.homeschool .typed-javascript .reason-img {
  background: url(/img/typed-javascript-coding-02.png);
  background-size: 415px;
  width: 415px;
  height: 265px;
  background-position: -10px -17px;
  background-repeat: no-repeat;
}
.homeschool .no-experience .reason-img {
  background: url(/img/no-experience-required-02.png);
  background-size: 520px;
  width: 520px;
  height: 297px;
  background-position: 0px 16px;
  background-repeat: no-repeat;
}
.homeschool-logo-big,
.step-up-logo-big {
  width: 92px;
  height: 82px;
  margin-top: 22px;
  margin-bottom: -60px;
}
.step-up-logo-big {
  width: 86px;
  height: 100px;
}
.homeschool-red {
  color: var(--homeschool-red);
}
.homeschool #subscribe-banner .homeschool-red,
.homeschool #subscribe-banner .bold {
  font-weight: bold;
}
.homeschool-products-subheading {
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 100;
  line-height: 34px;
  color: white;
  margin-bottom: -12px;
}
.homeschool-products-subheading .bold,
.homeschool-products-subheading .homeschool-red {
  font-weight: 900;
}
.step-up .homeschool-products-subheading .homeschool-red {
  font-weight: bold;
}
.homeschool #bitsbox-school-products {
  border-bottom: 10px solid transparent;
}
.homeschool h1.products-for-schools {
  font-weight: 800;
}
#homeschool-products {
  background-color: white;
  color: #002D44;
  font-family: var(--body-font);
  text-align: center;
  border-bottom: 10px solid var(--accent-color);
}
.homeschool-product h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 43px;
  padding-bottom: 11px;
}
.homeschool-product p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}
.homeschool-product h3 .black {
  font-weight: 800;
}
.homeschool-product .bold {
  font-weight: 800;
}
.homeschool-product img {
  display: block;
}
.levels-1-12 h3 {
  padding-top: 23px;
}
.levels-1-24 h3 {
  padding-top: 36px;
}
.levels-1-36 h3 {
  padding-top: 38px;
}
.basic-bitsbox-sub h3,
.extra-goodies h3 {
  padding-top: 45px;
}
.levels-1-12 img,
.levels-1-24 img,
.levels-1-36 img,
.basic-bitsbox-sub img {
  margin: 0 auto;
  width: 95%;
}
.levels-1-12 img {
  max-width: 576px;
  margin-top: 11px;
  margin-bottom: 14px;
}
.levels-1-24 img,
.levels-1-36 img {
  max-width: 758px;
}
.levels-1-24 img {
  margin-top: 19px;
  margin-bottom: 8px;
}
.levels-1-36 img:nth-child(4) {
  margin-top: 17px;
  margin-bottom: 17px;
}
.levels-1-36 img:nth-child(6) {
  max-width: 574px;
  margin-bottom: 46px;
}
.levels-1-36 .explanation {
  display: block;
  margin-top: -68px;
  margin-left: -28px;
  margin-bottom: 23px;
}
.levels-1-36 .explanation p {
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  opacity: .6;
}
.basic-bitsbox-sub img {
  max-width: 371px;
  margin-bottom: 4px;
}
.homeschool-product-separator {
  display: block;
  max-width: 1014px;
  width: 100%;
  margin: 0 auto;
  border-top: 5px dotted var(--accent-color);
}
#homeschool-shoutout {
  min-height: 293px;
  padding: 39px;
  border-bottom: 10px solid var(--accent-color);
}
#homeschool-shoutout p {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 9px;
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 28px;
  text-align: center;
  color: white;
}
#homeschool-shoutout .bold {
  font-style: normal;
  font-weight: 500;
}
.homeschool #bottom-buffer {
  border: none;
  padding: 0;
}
#main-bb-player {
  position: fixed;
  background: black;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 110px 30px;
  z-index: 9999;
}
#main-bb-player.hidden {
  display: none;
}
#video-close-button {
  position: fixed;
  width: 50px;
  height: 50px;
  padding: 15px;
  top: 15px;
  left: 15px;
  font-size: 40px;
  font-weight: 500;
  color: white;
  z-index: 10000;
  font-family: var(--body-font);
  transform: scaleY(.86);
  cursor: pointer;
}
#video-close-button.hidden {
  display: none;
}
.homeschool-product .order-now {
  width: 196px;
  height: 60px;
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  background-color: var(--bitsbox-yellow);
  border: none;
  border-radius: 15px;
  margin: 36px 0;
  cursor: pointer;
}
.homeschool .order-now:hover {
  box-shadow: 3px 3px 0px black;
}

/* Extra goodies */
.differentiator {
  width: 100%;
  max-width: 200px;
  min-height: 100px;
  display: inline-block;
  margin: 22px 6px;
  margin-bottom: 47px;
  vertical-align: top;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
}
.differentiator img {
  width: auto;
  border: 0;
  margin: 0 auto;
}
.differentiator img.complete-your-set-static {
  width: 163px;
  margin-top: 25px;
}
.differentiator-image-container {
  width: 200px;
  height: 170px;
}
.differentiator-image-container.complete-your-set-gif {
  padding: 20px 0px;
  width: 160px;
  overflow: hidden;
  display: flex;
  margin-top: 6px;
  margin-bottom: -6px;
  justify-content: center;
  margin-left: 20px;
}
.differentiator-image-container.complete-your-set-gif img {
  width: 200px;
  margin-top: unset;
}
.differentiator em {
  color: #d24711; 
  font-style: normal;
}
.differentiator a:link, .differentiator a:visited, .differentiator a:hover {
  color: inherit;
  text-decoration: none;
}
.quote a:link, .quote a:visited {
  font-size: 17px;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.quote a:hover {
  font-size: 17px;
  color: white;
  text-decoration: underline;
  cursor: pointer;
}
.differentiator a {
  font-size: 15px;
}
.differentiator b {
  font-size: 18px;
}
.differentiator form {
  padding-top: 10px;
}
.btn-yellow,
.btn-yellow:visited,
.btn-yellow:hover {
  background: var(--bitsbox-yellow);
  background-color: var(--bitsbox-yellow);
  padding: 8px 20px;
  color: black;
  font-family: var(--body-font);
  font-size: 15px;
  border-radius: 12px;
}
.btn-primary:hover {
  box-shadow: 2px 2px 0px rgba(0,0,0,.4);
  border: 1px solid rgba(255, 255, 255, .5);
}

/* Media Queries */
@media screen and (max-width: 1117px) {
  #hero-container h1 {
    font-size: 46px;
  }
  #teacher-video {
    width: 580px;
    height: 331px;
  }
  #teacher-video-play-button {
    width: 55px;
    height: 55px;
  }
  #teacher-video-play-button:after {
    top: 13px;
    left: 19px;
  }
  #hero-copy {
    padding-right: 80px;
    font-size: 22px;
  }
}
@media screen and (max-width: 1100px) {
  #subscribe-banner.sticky {
    justify-content: center;
  }
  .reason-container .reason-img {
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .reason-container .reason-txt {
    width: 539px;
    font-size: 18px;
  }
  .reason-container .reason-txt h3 {
    font-size: 26px;
  }
  .reason-container .reason-txt h3 span {
    font-size: 42px;
    line-height: 60px;
  }
  .faq-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }
  .faq-video iframe,
  .faq-video object,
  .faq-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1057px) {
  #teacher-video-container {
    padding-left: 55px;
  }
  #teacher-video-play-button {
    margin-left: calc(55px / 2);
  }
}
@media screen and (max-width: 1033px) {
  #bitsbox-school-products .product {
    margin-bottom: 35px;
  }
  .school-products-backdrop {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #hero-container {
    height: 700px;
  }
  #hero-container h1 {
    font-size: 40px;
  }
  #teacher-video-container {
    padding-left: 0;
  }
  #teacher-video-play-button {
    margin-left: 0;
  }
  #hero-copy {
    display: block;
    margin: 0 auto;
    margin-top: -35px;
    padding: 0;
    width: 510px;
  }
  #subscribe-banner {
    top: 640px;
  }
  #subscribe-banner.sticky {
    width: 100%;
  }
  #subscribe-banner p {
    width: 538px;
    padding: 17px 30px;
    margin-left: -5px;
    font-size: 18px;
  }
  #subscribe-banner .button-cta {
    margin-left: -20px;
  }
  .reason-container .reason-txt {
    padding-right: 15px;
    font-size: 17px;
  }
  .reason-container .reason-txt h3 {
    font-size: 24px;
  }
  .reason-container .reason-txt h3 span {
    font-size: 35px;
    line-height: 51px;
  }
  .kids-share .reason-txt h3 {
    font-size: 18px;
  }
  .kids-share .reason-txt h3 span {
    font-size: 31px;
  }
}
@media screen and (max-width: 910px) {
  #subscribe-banner p {
    width: 408px;
    padding: 17px 30px;
    margin-left: -5px;
    font-size: 18px;
  }
  #subscribe-banner .button-cta {
    margin-left: -20px;
  }
}
@media screen and (max-width: 860px) {
  #reasons-to-love-coding-section .reason {
    border-bottom: 425px solid var(--see-through-white);
  }
  .reason-container {
    display: block;
    margin-top: -72px !important;
    height: 497px;
  }
  .reason-container:after {
    left: 0;
  }
  .open-ended .reason-container:after {
    margin-top: 239px;
  }
  .real-apps .reason-container:after {
    margin-top: -4px;
  }
  .typed-javascript .reason-container:after {
    margin-top: 234px;
  }
  .no-experience .reason-container:after {
    margin-top: -4px;
  }
  .kids-share .reason-container:after {
    margin-top: 230px;
  }
  .reason-container .reason-img {
    display: block;
    margin: 0 auto;
    margin-top: 250px;
    width: calc(100% - 50px);
  }
  .no-experience .reason-container .reason-img.right {
    margin-top: -20px;
  }
  .kids-share .reason-container .reason-img {
    margin-top: 201px;
  }
  .reason-container .reason-img.right {
    margin-top: -6px;
  }
  .reason-container .reason-txt {
    display: block;
    margin: 0 auto;
    width: 561px;
    font-size: 20px;
    padding: 0;
    margin-top: -430px;
  }
  .typed-javascript .reason-txt,
  .no-experience .reason-txt {
    font-size: 18px;
  }
  .no-experience .reason-container .reason-txt.left {
    margin-top: 74px;
  }
  .reason-container .reason-txt.left {
    margin-top: 64px;
  }
  .reason-container .reason-txt h3 {
    font-size: 28px;
  }
  .typed-javascript .reason-txt h3,
  .no-experience .reason-txt h3 {
    font-size: 26px;
  }
  .reason-container .reason-txt h3 span {
    font-size: 44px;
    line-height: 62px;
  }
  .typed-javascript .reason-txt h3 span,
  .no-experience .reason-txt h3 span {
    font-size: 40px;
    line-height: 62px;
  }
  .kids-share .reason-txt h3 {
    font-size: 25px;
  }
  .kids-share .reason-txt h3 span {
    font-size: 38px;
  }
  .kids-share .reason-txt {
    font-size: 19px;
    margin-top: -460px;
  }
  .kids-share .reason-container .reason-img {
    margin-top: 240px;
  }
}
@media screen and (max-width: 810px) {
  #teacher-video {
    width: 555px;
    height: 317px;
  }
  #hero-copy {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 785px) {
  #hero-container h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 703px) {
  #hero-container {
    height: 780px;
  }
  #subscribe-banner {
    top: 720px;
  }
}
@media screen and (max-width: 640px) {
  #teacher-video-container {
    padding: 0 30px;
  }
  #teacher-video {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  #subscribe-banner {
    background: none;
  }
  #subscribe-banner.sticky {
    justify-content: end;
    right: 20px;
    top: 60px;
    transition: .3s right ease-out;
  }
  #subscribe-banner.sticky .button-cta {
    margin-top: 0;
  }
  #subscribe-banner p {
    display: none;
  }
  #subscribe-banner:before,
  #subscribe-banner:after {
    opacity: 0;
  }
  .reason-container .reason-txt {
    width: auto;
    padding: 0 25px;
    font-size: 16px;
    height: 172px;
  }
  .real-apps .reason-container .reason-txt,
  .no-experience .reason-container .reason-txt {
    height: 144px;
  }
  .typed-javascript .reason-container .reason-txt,
  .kids-share .reason-container .reason-txt {
    height: 170px;
  }
  .reason-container .reason-txt h3 span {
    font-size: 40px;
    line-height: 60px;
  }
  .open-ended .reason-container:after {
    margin-top: 241px;
  }
  .reason-container .reason-img.right {
    margin-top: 24px;
  }
  .typed-javascript .reason-container .reason-txt h3 span,
  .kids-share .reason-container .reason-txt h3 span {
    font-size: 34px;
    line-height: 58px;
  }
  .kids-share .reason-txt h3 {
    font-size: 21px;
  }
  .typed-javascript .reason-container:after {
    margin-top: 238px;
  }
  .no-experience .reason-container:after {
    margin-top: -2px;
  }
  .kids-share .reason-container:after {
    margin-top: 234px;
  }
  #bitsbox-school-products .product {
    margin-right: 0;
  }
  .school-products-container {
    padding-left: 0;
  }
}
@media screen and (max-width: 500px) {
  #hero-container {
    height: 730px;
  }
  #hero-container h1 {
    font-size: 32px;
    line-height: 47px;
  }
  #hero-copy {
    width: auto;
    height: auto;
  }
  #subscribe-banner {
    top: 670px;
  }
}
@media screen and (max-width: 485px) {
  #teacher-video-play-button {
    width: 40px;
    height: 40px;
  }
  #teacher-video-play-button:after {
    top: 11px;
    left: 14px;
    border: 9px solid transparent;
    border-left: 16px solid white;
  }
  #reasons-to-love-coding-section .reason.fix-opacity {
    filter: opacity(.95);
  }
  .reason-container .reason-txt {
    font-size: 14px;
    margin-top: -390px;
  }
  .reason-container .reason-txt.left,
  .no-experience .reason-container .reason-txt.left {
    margin-top: 110px;
  }
  .typed-javascript .reason-container .reason-txt,
  .kids-share .reason-container .reason-txt {
    margin-top: -414px;
  }
  .kids-share .reason-container .reason-txt {
    height: 144px;
  }
  .typed-javascript .reason-txt h3,
  .no-experience .reason-txt h3 {
    font-size: 24px;
  }
  .reason-container .reason-txt h3 span {
    font-size: 30px;
    line-height: 36px;
  }
  .typed-javascript .reason-container .reason-txt h3 span,
  .kids-share .reason-container .reason-txt h3 span {
    font-size: 28px;
    line-height: 36px;
  }
  .reason-container .reason-img.right {
    margin-top: -22px;
  }
  .no-experience .reason-container .reason-img.right {
    margin-top: -56px;
  }
  .kids-share .reason-container .reason-img {
    margin-top: 220px;
  }
  .open-ended .reason-container:after {
    margin-top: 201px;
  }
  .typed-javascript .reason-container:after {
    margin-top: 222px;
  }
}

/* Homeschool and Step Up Media Queries */
@media screen and (max-width: 1050px) {
  .homeschool #hero-container {
    height: auto;
  }
  .homeschool #homeschool-video-container {
    margin-top: -20px;
  }
  .homeschool .homeschooler-video {
    display: block;
    margin: 100px 0;
  }
  .homeschool #subscribe-banner {
    top: 1142px;
  }
  #main-bb-player {
    padding: 22vh 30px;
  }
  .homeschooler-video {
    cursor: initial;
  }
}
@media screen and (max-width: 1036px) {
  .step-up #subscribe-banner {
    top: 1222px;
  }
}
@media screen and (max-width: 1028px) {
  .homeschool #subscribe-banner {
    display: none;
  }
  .step-up #subscribe-banner {
    display: flex;
  }
}
@media screen and (max-width: 1000px) {
  .step-up #subscribe-banner {
    top: 1142px;
  }
}
@media screen and (max-width: 912px) {
  .step-up #subscribe-banner {
    top: 1222px;
  }
}
@media screen and (max-width: 815px) {
  #main-bb-player {
    padding: 28vh 30px;
  }
}
@media screen and (max-width: 600px) {
  #main-bb-player {
    padding: 34vh 30px;
  }
  .step-up #subscribe-banner {
    background: black;
  }
  .step-up #subscribe-banner.sticky {
    justify-content: end;
    right: 0;
    top: 0;
    transition: .3s right ease-out;
  }
  .step-up #subscribe-banner.sticky .button-cta {
    margin-top: 0;
  }
  .homeschool #subscribe-banner p {
    display: block;
    max-width: 398px;
    font-size: 16px;
  }
  .homeschool #subscribe-banner:before,
  .homeschool #subscribe-banner:after {
    opacity: 1;
  }
  .homeschool .homeschool-product h3 {
    font-size: 27px;
  }
  .homeschool .homeschool-product p {
    font-size: 17px;
  }
  .homeschool h1.products-for-schools {
    font-size: 37px;
  }
  .homeschool .homeschool-products-subheading {
    font-size: 21px;
  }
}
@media screen and (max-width: 570px) {
  .levels-1-36 .explanation {
    padding-top: 42px;
    margin-left: -4px;
    margin-bottom: 16px;
  }
  .homeschool .typed-javascript .reason-img {
    background-position: -10px 53px;
  }
  .homeschool .no-experience .reason-container .reason-img.right {
    margin-top: -6px;
  }
}