/* ------------------

Boilerplate CSS

------------------ */

* {
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  line-height: 1.5em;
  color: rgb(34, 34, 34);
}
body > footer {
  margin-top: auto;
}
main {
  padding-top: 83px;
}
a,
a:visited {
  color: rgb(0, 113, 235);
}
@media (min-width: 32em) { /* 512px */
  main {
    padding-top: 91px;
  }
}
@media (min-width: 72em) { /* 1152px */
  main {
    padding-top: 99px;
  }
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  text-wrap-mode: initial;
  text-wrap-style: balance;
}
p, blockquote, q, li {
  text-wrap: pretty;
}

body, p, ol, ul, td, h1, h2, h3, h4, form, input, label {
  font-family: 'gilroy', Helvetica, 'shin-go', sans-serif;
  font-variant-ligatures: none;
  font-weight: 300;
}

/* Pure Utility */
.nowrap { 
  white-space: nowrap; 
}
.breakword {
      word-wrap: break-word;
  overflow-wrap: break-word;
}
.hidden {
  display: none;
}
.content ul.bullet li {
  list-style: disc;
  margin-left: 1.2em;
  margin-bottom: 8px;
}
.screen-reader-text { 
  clip: rect(1px, 1px, 1px, 1px); 
  height: 1px; 
  width: 1px; 
  overflow: hidden; 
  position: absolute !important;
}
.sectionBreak,
.sectionBreakODot {
  clear: both;
  position: relative;
}
.sectionBreak:before,
.sectionBreakODot:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 260px;
  border-top: 1px solid #f4f4f4;
  background: -moz-linear-gradient(180deg, rgba(247,247,247,1) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(247,247,247,1) 0%, rgba(255,255,255,1) 100%);
  background: linear-gradient(180deg, rgba(247,247,247,1) 0%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f4f4",endColorstr="#ffffff",GradientType=1);
}
.sectionBreak .content,
.sectionBreakODot .content {
  position: relative;
  z-index: 1;
}
@media (min-width:75em) { /* 1200px */
  .sectionBreakODot:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1200px;
    max-width: 100%;
    height: 260px;
    background: transparent url('https://cdn.oreillystatic.com/oreilly/images/odot_white_578x212.svg') right top no-repeat;
    background-size: cover;
    background-position: 120px 60px;
  }
}
/* End Pure Utility */


/* common elements */
main .content {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.pageWidth {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.nowrap {
  white-space: nowrap;
}
.hidden {
  display: none !important;
}
.textHighlight {
  color: rgb(0,113,235);
}
@supports (-webkit-background-clip: text) or (-moz-background-clip: text) {
  .textHighlight {
    width: fit-content;
    background: rgb(0,113,235) linear-gradient(135deg, rgb(0,113,235) 0%, rgb(142,34,167) 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    box-decoration-break: clone;
  }
}
.button__blueArrow {
  display: block;
  width: max-content;
  padding: 5px 20px 3px;
  background-color: rgb(0,113,235);
  font-weight: 600;
  color: rgb(255,255,255);
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  font-size: 1.25rem;
  line-height: 1.5em;
  text-decoration: none;
  transition: box-shadow .2s;
}
.button__blueArrow:hover,
.button__blueArrow:focus {
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
}
.button__blueArrow:after {
  content: "";
  display: inline-block;
  margin: -2px -2px 0 6px;
  width: 8px;
  height: 14px;
  vertical-align: middle;
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_arrow_right_white.svg) right center no-repeat;
  background-size: contain;
}
.button__blueArrow:visited {
  color: rgb(255,255,255);
}
@media (min-width: 50em) { /* 800px */
  .button__blueArrow {
    padding: 5px 20px 3px;
    font-size: 1.5rem;
    line-height: 1.5em;
  }
  .button__blueArrow:after {
    margin: -2px -2px 0 6px;
    width: 10px;
    height: 16px;
  }
}
/* END common elements */



/* nav */
.nav__SkipToMain {
  position: relative;
  z-index: 501;
  width: 100%;
}
.nav__SkipToMain a {
  position: absolute;
  z-index: 0;
  display: block;
  padding: 8px 12px 0;
  height: 41px;
  margin: -41px 0 0 10px;
  cursor: pointer;
  background: rgb(241, 241, 241);
  border-radius: 2px;
  transition: margin .2s ease-in-out;
  color: rgb(34, 34, 34);
}
.nav__SkipToMain a:focus {
  margin-top: 10px;
  transition: margin .2s ease-in;
}
.nav__GlboalHeader {
  position: fixed;
  top: 0;
  z-index: 500;
  width: 100%;
  max-width: 100%;
  padding: 20px 0;
  background-color: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: saturate(200%) blur(16px);
  backdrop-filter: saturate(200%) blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.nav__GlboalHeader .nav__GlobalNav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.nav__GlboalHeader .nav__Logo {
  display: block;
  flex-shrink: 0;
}
.nav__GlboalHeader .nav__Logo img {
  display: block;
  height: 40px;
  max-width: 100%;
}
.nav__GlboalHeader .nav__NavItems {
  display: flex;
  align-items: center;
  width: 100%;
}
.nav__GlboalHeader .nav__NavGroup {
  display: none;
  position: absolute;
  flex-direction: column;
  z-index: 100;
  right: 0;
  top: 83px;
  width: 240px;
  padding: 10px 0;
  background: rgba(247,247,247,.98);
}
.nav__GlboalHeader .nav__NavItems.isActive .nav__NavGroup {
  display: flex;
}
.nav__GlboalHeader .nav__Link {
  display: block;
  padding: 4px 20px;
  font-weight: 400;
  line-height: 1.4em;
  color: rgb(34, 34, 34);
  text-decoration: none;
}
.nav__GlboalHeader .nav__Link:hover {
  text-decoration: underline;
}
.nav__GlboalHeader .nav__Link.active {
  color: rgb(211, 0, 0);
  text-decoration: underline;
  cursor: default;
}
.nav__GlboalHeader .nav__CTA {
  display: flex;
  align-items: flex-start;
  margin-left: auto;
}
.nav__GlboalHeader .nav__Cart {
  position: relative;
  margin-right: 0;
  padding: 8px 0 4px 30px;
  font-weight: 600;
  line-height: 1em;
  color: rgb(34,34,34);
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  border-bottom: 2px solid rgba(34,34,34,0);
  align-items: center;
}
.nav__GlboalHeader .nav__Cart:hover {
  border-bottom: 2px solid rgba(34,34,34,1);
}
.nav__GlboalHeader .nav__Cart:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  display: block;
  width: 20px;
  height: 20px;
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_cart_gray.svg) center center no-repeat;
  background-size: contain;
}
.nav__GlboalHeader .nav__Cart.active:before {
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_cart_red.svg) center center no-repeat;
}
.nav__GlboalHeader .nav__MobileBtn {
  display: block;
  margin: 0 0 0 20px;
  padding: 0;
  cursor: pointer;
  transition-property: opacity,filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  overflow: visible;
  outline: none;
}
.nav__GlboalHeader .nav__MobileBtn:hover, 
.nav__GlboalHeader .nav__MobileBtn:focus {
  opacity: 0.7;
}
.nav__GlboalHeader .nav__MobileBtn > span {
  display: block;
  width: 48px;
  height: 42px;
  position: relative;
  -webkit-perspective: 80px;
  -moz-perspective: 80px;
  -ms-perspective: 80px;
  perspective: 80px;
}
.nav__GlboalHeader .nav__MobileBtn:focus > span {
  outline: auto;
  outline: -webkit-focus-ring-color auto 5px;
}
.nav__GlboalHeader .nav__MobileBtn > span > span {
  position: absolute;
  z-index: 0;
  top: calc(50% - 2px);
  left: 10px;
  display: block;
  width: 28px;
  height: 4px;
  background-color: rgb(34, 34, 34);
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  transition: transform 0.15s cubic-bezier(0.645,0.045,0.355,1),background-color 0s 0.1s cubic-bezier(0.645,0.045,0.355,1);
}
.nav__GlboalHeader .nav__MobileBtn > span > span:before,
.nav__GlboalHeader .nav__MobileBtn > span > span:after {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  background-color: rgb(34, 34, 34);
  position: absolute;
  z-index: 0;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  transition: transform 0s 0.1s cubic-bezier(0.645,0.045,0.355,1);
}
.nav__GlboalHeader .nav__MobileBtn > span > span:before {
  top: -9px;
}
.nav__GlboalHeader .nav__MobileBtn > span > span:after {
  bottom: -9px;
}
.nav__GlboalHeader .nav__MobileBtn.isActive > span > span {
  background-color: transparent;
  transform: rotateY(180deg);
}
.nav__GlboalHeader .nav__MobileBtn.isActive > span > span:before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.nav__GlboalHeader .nav__MobileBtn.isActive > span > span:after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}
@media (min-width: 32em) { /* 512px */
  .nav__GlboalHeader .nav__Logo {
    margin: 0;
  }
  .nav__GlboalHeader .nav__Logo img {
    height: 50px;
  }
  .nav__GlboalHeader .nav__MobileBtn {
    padding: 0;
  }
  .nav__GlboalHeader .nav__NavGroup {
    top: 91px;
  }
}
@media (min-width: 60em) { /* 960px */
  .nav__GlboalHeader .nav__NavItems {
    padding-left: 40px;
  }
  .nav__GlboalHeader .nav__NavGroup,
  .nav__GlboalHeader .nav__NavItems.isActive .nav__NavGroup {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
  }
  .nav__GlboalHeader .nav__MobileBtn {
    display: none;
  }
  .nav__GlboalHeader .nav__Link {
    margin-right: 20px;
    padding: 8px 0 4px;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 600;
    border-bottom: 2px solid rgba(34,34,34,0);
    line-height: 1em;
  }
  .nav__GlboalHeader .nav__Link:hover {
    text-decoration: none;
    border-bottom: 2px solid rgba(34,34,34,1);
  }
  .nav__GlboalHeader .nav__Link.active {
    text-decoration: none;
    border-bottom: 2px solid rgb(211, 0, 0);
  }
}
@media (min-width: 72em) { /* 1152 px */
  .nav__GlboalHeader {
    padding: 24px 0 24px;
  }
}
/* END nav */



/* footer */
.footer__FooterSection {
  background-color: rgb(241, 241, 241);
  vertical-align: top;
  color: rgb(34, 34, 34);
  padding: 40px 0;
}
.footer__FooterTop {
  padding-bottom: 20px;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.footer__FooterTop p {
  font-size: .875rem;
  line-height: 1.5em;
}
.footer__FooterTop a {
  display: block;
  color: rgb(34, 34, 34);
  text-decoration: none;
}
.footer__FooterTop a:hover {
  text-decoration: underline;
}
.footer__FooterTop .footer__List,
.footer__FooterTop .footer__Apps {
  margin-bottom: 20px;
}
.footer__FooterTop .footer__List h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer__FooterTop .footer__List h3 a {
  font-size: 1rem;
  line-height: 1.5em;
}
.footer__FooterTop .footer__Apps h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5em;
}
.footer__FooterTop .footer__List a {
  display: block;
  margin-bottom: 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: rgb(34, 34, 34);
  text-decoration: none;
  font-size: .875rem;
  line-height: 1.5em;
}
.footer__FooterTop .footer__List a:last-child {
  margin-bottom: 0;
}
.footer__FooterTop .footer__List a:hover {
  text-decoration: underline;
}
.footer__FooterTop .footer__Apps p {
  margin-bottom: 20px;
}
.footer__FooterTop .footer__DownloadLinks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.footer__FooterTop .footer__DownloadLinks a {
  display: block;
  margin: 0 10px;
}
.footer__FooterTop .footer__DownloadLinks img {
  height: 44px;
}
.footer__FooterBase .footer__Logo {
  display: block;
  width: 100px;
  margin-bottom: 20px;
}
.footer__FooterBase .footer__Logo img {
  display: block;
  max-width: 100%;
}
.footer__FooterBase {
  border-top: 1px dashed rgb(153, 153, 153);
  padding-top: 40px;
}
.footer__FooterBase p {
  font-size: .875rem;
  line-height: 1.5em;
}
.footer__FooterBase p a {
  font-weight: 500;
  color: rgb(34, 34, 34);
  text-decoration: none;
}
.footer__FooterBase p a:hover {
  text-decoration: underline;
}
@media (min-width: 50em) { /* 800px */
  .footer__FooterTop {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
  .footer__FooterTop .footer__List {
    margin: 0 20px 20px 20px;
    width: calc(25% - 40px);
  }
  .footer__FooterTop .footer__Apps {
    margin: 0 20px 20px 20px;
    width: calc(50% - 40px);
  }
}
/* END footer */



/* hero */
.hero {
  position: relative;
  z-index: 0;
  clear: both;
  background-repeat: no-repeat;
  background-color: #eee;
  color: #fff;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}
.hero .content {
  padding-top: 60px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  height: 100%;
}
.hero-extra {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  width: calc(100% - 40px);
}
.hero-extra p:last-child {
  margin-bottom: 0;
}
.hero-cta {
  display: inline-block;
  padding: 10px 20px 8px;
  border-radius: 2px;
  background-color: #fff;
  font-family: 'gilroy', Arial, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d30000;
  font-weight: 600;
  text-decoration: none;
}
.hero-cta:after {
  content: "";
  display: inline-block;
  margin: -8px -2px -6px 6px;
  width: 13px;
  height: 22px;
  vertical-align: middle;
  background: transparent url('https://cdn.oreillystatic.com/images/icons/icon_right_arrow_red.svg') center center no-repeat;
  background-size: contain;
}
.hero-cta:hover,
.hero-cta:active {
  color: #d30000;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hero-auto .hero-cta {
  position: absolute;
  bottom: 20px;
  margin: 16px 0 20px;
  background-color: #0071eb;
  color: #fff;
}
.hero-auto .hero-cta:after {
    background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_right_arrow_white.svg) center center no-repeat;
}
.hero div.mobileHidden,
.hero p.mobileHidden,
.hero span.mobileHidden {
  display: none;
}
.hero h1 {
  margin: 0 0 8px;
  font-size: 46px;
  font-size: 2.875rem;
  line-height: 1.08em;
  font-family: 'gilroy', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.hero.hero-general > .content h1:last-child {
  margin-bottom: 14px;
}
.hero p {
  margin: 14px 0 20px 0;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4em;
  font-family: 'guardian-text-oreilly', Arial, sans-serif;
  font-weight: 400;
}
.hero.hero-inPerson p {
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 8px;
}
.hero.hero-inPerson p:last-of-type {
  margin-bottom: 20px;
}
.hero.hero-inPerson h1 a {
  text-decoration: none;
  color: #fff;
}
@media (min-width: 30em) {
  .hero h1 {
    max-width: 80%;
  }
  .hero p {
    max-width: 80%;
  }
  .hero.hero-general h1 {
    max-width: 100%;
  }
  .hero.hero-inPerson h1 {
    max-width: 100%;
  }
  .hero-auto .hero-cta {
    margin: 24px 0 20px;
  }
}
@media (min-width: 40em) { /* 640px */
  .hero {
    background-size: cover;
  }
  .hero.hero-home,
  .hero.hero-onlineLearning,
  .hero.hero-onlineLearning-individuals,
  .hero.hero-onlineLearning-teams,
  .hero.hero-onlineLearning-enterprise,
  .hero.hero-onlineLearning-government,
  .hero.hero-onlineLearning-academic,
  .hero.hero-onlineLearning-features,
  .hero.hero-ourApproach,
  .hero.hero-conferences,
  .hero.hero-blendedCourses,
  .hero.hero-blendedCourses-ds-series,
  .hero.hero-blendedCourses-ds-course,
  .hero.hero-velocitySoftwareArchitecture {
    height: 400px;
  }
  .hero.hero-home:after,
  .hero.hero-onlineLearning:after,
  .hero.hero-onlineLearning-individuals:after,
  .hero.hero-onlineLearning-teams:after,
  .hero.hero-onlineLearning-enterprise:after,
  .hero.hero-onlineLearning-government:after,
  .hero.hero-onlineLearning-academic:after,
  .hero.hero-onlineLearning-features:after,
  .hero.hero-ourApproach:after,
  .hero.hero-conferences:after,
  .hero.hero-blendedCourses:after,
  .hero.hero-blendedCourses-ds-series:after,
  .hero.hero-blendedCourses-ds-course:after,
  .hero.hero-velocitySoftwareArchitecture:after {
    display: none;
  }
  .hero.hero-home:before,
  .hero.hero-onlineLearning:before,
  .hero.hero-onlineLearning-individuals:before,
  .hero.hero-onlineLearning-teams:before,
  .hero.hero-onlineLearning-enterprise:before,
  .hero.hero-onlineLearning-government:before,
  .hero.hero-onlineLearning-academic:before,
  .hero.hero-onlineLearning-features:before,
  .hero.hero-ourApproach:before,
  .hero.hero-conferences:before,
  .hero.hero-blendedCourses:before,
  .hero.hero-blendedCourses-ds-series:before,
  .hero.hero-blendedCourses-ds-course:before,
  .hero.hero-velocitySoftwareArchitecture:before {
    background-position: right top;
  }
  .hero h1 {
    margin: 0 0 3px;
    max-width: 60%;
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.125em;
  }
  .hero.hero-general h1 {
    max-width: 100%;
  }
  .hero.hero-inPerson h1 {
    max-width: 100%;
  }
  .hero p {
    margin: 14px 0 0 0;
    max-width: 60%;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.3em;
    font-family: 'gilroy', Arial, sans-serif;
    font-weight: 300;
  }
  .hero.hero-general p {
    max-width: 100%;
  }
  .hero.hero-inPerson p {
    max-width: 100%;
    font-size: 24px;
    font-size: 1.5rem;
  }
  .hero.hero-auto {
    height: auto;
  }
  .hero-auto .hero-cta {
    position: static;
    bottom: auto;
    margin: 24px 0 60px;
  }
  .hero div.mobileHidden,
  .hero p.mobileHidden {
    display: block;
  }
  .hero span.mobileHidden {
    display: inline;
  }
  .hero div.desktopHidden,
  .hero p.desktopHidden,
  .hero span.desktopHidden {
    display: none;
  }
}

@media (min-width: 50em) {
  .hero.hero-general .content:after {
    content: "";
    position: absolute;
    top: 0;
    right: -60px;
    z-index: 0;
    width: 600px;
    max-width: 100%;
    height: 800px;
    background: transparent url('https://cdn.oreillystatic.com/oreilly/images/odot_white_578x212.svg') right top no-repeat;
    background-size: contain;
    background-position: 0 -30px;
    opacity: .2;
  }
  .hero.hero-inPerson .content:after {
    content: "";
    position: absolute;
    top: 0;
    right: -60px;
    z-index: 0;
    width: 600px;
    max-width: 100%;
    height: 800px;
    background: transparent url('https://cdn.oreillystatic.com/oreilly/images/odot_white_578x212.svg') right top no-repeat;
    background-size: contain;
    background-position: 0 -30px;
    opacity: .2;
  }
  .hero.hero-home:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_home_1368x605.jpg');
  }
  .hero.hero-onlineLearning:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_online_training_1368x605.jpg');
  }
  .hero.hero-onlineLearning-individuals:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_individuals_1368x605.jpg');
  }
  .hero.hero-onlineLearning-teams:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_teams_1368x605.jpg');
  }
  .hero.hero-onlineLearning-enterprise:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_enterprise_1368x605.jpg');
  }
  .hero.hero-onlineLearning-government:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_government_1368x605.jpg');
  }
  .hero.hero-onlineLearning-academic:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_academic_1368x605.jpg');
  }
  .hero.hero-onlineLearning-features:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_features_1368x605.jpg');
  }
  .hero.hero-ourApproach:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_our_approach_1368x605.jpg');
  }
  .hero.hero-conferences:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_conferences_1368x605.jpg');
  }
  .hero.hero-blendedCourses:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_academic_1368x605.jpg');
  }
  .hero.hero-blendedCourses-ds-series:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_blended_courses_ds_series_1368x605.jpg');
  }
  .hero.hero-blendedCourses-ds-course:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_blended_courses_ds_course_1368x605.jpg');
  }
  .hero.hero-velocitySoftwareArchitecture:before {
    background-image: url('https://cdn.oreillystatic.com/oreilly/images/odot_vl_sa_1368x605.jpg');
  }
  .hero h1 {
    margin: 0 0 3px;
    max-width: 40%;
  }
  .hero p {
    max-width: 40%;
  }
  .hero.hero-general h1 {
    max-width: 66%;
  }
  .hero.hero-inPerson h1 {
    max-width: 66%;
  }
  .hero.hero-general p {
    max-width: 66%;
  }
  .hero.hero-inPerson p {
    max-width: 66%;
  }
}

@media (min-width: 65em) {
  .hero.hero-home,
  .hero.hero-onlineLearning,
  .hero.hero-onlineLearning-individuals,
  .hero.hero-onlineLearning-teams,
  .hero.hero-onlineLearning-enterprise,
  .hero.hero-onlineLearning-government,
  .hero.hero-onlineLearning-academic,
  .hero.hero-onlineLearning-features,
  .hero.hero-ourApproach,
  .hero.hero-conferences,
  .hero.hero-blendedCourses,
  .hero.hero-blendedCourses-ds-series,
  .hero.hero-blendedCourses-ds-course,
  .hero.hero-velocitySoftwareArchitecture {
    height: 480px;
  }
  .hero.hero-home:before,
  .hero.hero-onlineLearning:before,
  .hero.hero-onlineLearning-individuals:before,
  .hero.hero-onlineLearning-teams:before,
  .hero.hero-onlineLearning-enterprise:before,
  .hero.hero-onlineLearning-government:before,
  .hero.hero-onlineLearning-academic:before,
  .hero.hero-onlineLearning-features:before,
  .hero.hero-ourApproach:before,
  .hero.hero-conferences:before,
  .hero.hero-blendedCourses:before,
  .hero.hero-blendedCourses-ds-series:before,
  .hero.hero-blendedCourses-ds-course:before,
  .hero.hero-velocitySoftwareArchitecture:before {
    background-size: cover;
    background-position: right top;
  }
  .hero h1 {
    margin: 0 0 3px;
    max-width: 46%;
    font-size: 64px;
    font-size: 4rem;
    line-height: 1.08em;
  }
  .hero.hero-general h1 {
    max-width: 66%;
  }
  .hero.hero-inPerson h1 {
    max-width: 66%;
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.125em;
  }
  .hero p {
    margin: 14px 0 0 0;
    max-width: 46%;
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.12em;
    font-family: 'gilroy', Arial, sans-serif;
    font-weight: 300;
  }
  .hero.hero-general p {
    max-width: 66%;
  }
  .hero.hero-inPerson p {
    max-width: 66%;
    font-size: 32px;
    font-size: 2rem;
  }
  .hero-auto .hero-cta {
    margin: 40px 0 60px;
  }
  .hero div.mobileHidden,
  .hero p.mobileHidden {
    display: block;
  }
  .hero div.desktopHidden,
  .hero p.desktopHidden {
    display: none;
  }
}

@media (min-width: 85em) {
  .hero.hero-home,
  .hero.hero-onlineLearning,
  .hero.hero-onlineLearning-individuals,
  .hero.hero-onlineLearning-teams,
  .hero.hero-onlineLearning-enterprise,
  .hero.hero-onlineLearning-government,
  .hero.hero-onlineLearning-academic,
  .hero.hero-onlineLearning-features,
  .hero.hero-ourApproach,
  .hero.hero-conferences,
  .hero.hero-blendedCourses,
  .hero.hero-blendedCourses-ds-series,
  .hero.hero-blendedCourses-ds-course,
  .hero.hero-velocitySoftwareArchitecture {
    height: 605px;
  }
  .hero h1 {
    margin: 0 0 3px;
    max-width: 46%;
    font-size: 74px;
    font-size: 4.625rem;
    line-height: 1.08em;
  }
  .hero.hero-general h1 {
    max-width: 66%;
  }
  .hero.hero-inPerson h1 {
    max-width: 66%;
    font-size: 64px;
    font-size: 4rem;
    line-height: 1.1em;
  }
  .hero p {
    margin: 14px 0 0 0;
    max-width: 46%;
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 1.12em;
    font-family: 'gilroy', Arial, sans-serif;
    font-weight: 300;
  }
  .hero.hero-general p {
    max-width: 66%;
  }
  .hero.hero-inPerson p {
    max-width: 100%;
  }
  .hero-auto .hero-cta {
    margin: 40px 0 80px;
  }
}

@media (min-width: 100em) {
  .hero.hero-home:before,
  .hero.hero-onlineLearning:before,
  .hero.hero-onlineLearning-individuals:before,
  .hero.hero-onlineLearning-teams:before,
  .hero.hero-onlineLearning-enterprise:before,
  .hero.hero-onlineLearning-government:before,
  .hero.hero-onlineLearning-academic:before,
  .hero.hero-onlineLearning-features:before,
  .hero.hero-ourApproach:before,
  .hero.hero-conferences:before,
  .hero.hero-blendedCourses:before,
  .hero.hero-blendedCourses-ds-series:before,
  .hero.hero-blendedCourses-ds-course:before,
  .hero.hero-velocitySoftwareArchitecture:before {
    width: 1600px;
    left: 50%;
    margin-left: -800px;
    background-size: 1600px;
    background-position: center top;
  }
}
/* ------------------

End Boilerplate CSS

------------------ */







/* ------------------

Teams Page CSS

------------------ */
.teams {
  opacity: 1 !important;
  transition: opacity 400ms 1s;
}

.textBlock {
  display: inline-block;
}

/* .hero-teams */
.teams-hero {
  background-color: transparent;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.teams-hero .content {
  position: relative;
  padding: 0 20px;
}
.teams-hero .content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #fff transparent transparent transparent;
}
.teams-hero .sectionText {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 54px 0 0;
}
.teams-hero .sectionText:after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -20px;
  top: 0;
  width: calc(100% + 40px);
  height: 100%;
  background: linear-gradient(91.31deg, rgba(0,113,235,1) 0%, rgba(0,113,235,1) 50%, rgba(20,212,216,1) 200%);
}
.teams-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  max-width: 100%;
  color: #fff;
  font-family: "gilroy", Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.2em;
}
.teams-hero .teams-hero-odotAnimal {
  display: none;
}
.teams-hero p.teams-hero-subtitle {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  max-width: 100%;
  font-family: "gilroy", Arial, sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.3em;
  color: #fff;
}
.teams-hero p.teams-hero-intro {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 0 0 54px;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.5em;
  color: #fff;
}
.teams-hero .teams-hero-form .pardotForm > p {
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #515151;
}
.teams-hero .teams-hero-form p.pardotForm-privacy {
  text-align: left;
}
.teams-hero .blueButton {
  display: block;
  margin: 0 auto;
  width: max-content;
  text-decoration: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
  border-radius: 2px;
  padding: 8px 16px 6px;
  background: rgb(0, 113, 235);
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 600;
  font-family: "gilroy", Arial, sans-serif;
  cursor: pointer;
  transition: box-shadow .2s;
}
.teams-hero .blueButton:after {
  content: "";
  display: inline-block;
  margin: -8px -2px -6px 6px;
  width: .75rem;
  height: 1.5rem;
  vertical-align: middle;
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_right_arrow_white.svg) center center no-repeat;
  background-size: contain;
}
@media (min-width: 40em) { /* 640px */
  .teams-hero h1 {
    font-size: 3.75rem;
    line-height: 1em;
  }
  .teams-hero p.teams-hero-subtitle {
    font-size: 2.5rem;
    line-height: 1.1em;
  }
  .teams-hero p.teams-hero-intro {
    font-family: "gilroy", Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.5em;
    font-weight: 300;
  }
}
@media (min-width: 50em) { /* 800px */
  .teams-hero .sectionText {
    text-align: left;
  }
  .teams-hero .sectionText:after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -20px;
    top: 0;
    width: calc(100% + 40px);
    height: 640px;
    background: linear-gradient(220deg, rgba(0,113,235,1) 2%, rgba(20,212,216,1) 16%, rgba(20,212,216,0) 32%);
  }
  .teams-hero h1 {
    margin: 0 0 12px;
    width: calc(100% - 360px);
    text-align: left;
    color: #222;
  }
  .teams-hero h1 .highlight {
    color: rgb(0,113,235);
  }
  @supports (-webkit-background-clip: text) or (-moz-background-clip: text) {
    .teams-hero h1 .highlight {
      background: rgb(0,113,235) linear-gradient(135deg, rgb(0,113,235) 30%, rgb(20,212,216) 150%);
      background-size: 100%;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-text-fill-color: transparent;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }
  }
  .teams-hero p.teams-hero-subtitle {
    margin: 0 0 20px;
    width: calc(100% - 360px);
    color: #222;
    text-align: left;
  }
  .teams-hero p.teams-hero-intro {
    width: calc(100% - 360px);
    color: #222;
  }
  .teams-hero .teams-hero-odotAnimal {
    display: block;
    position: absolute;
    z-index: 1;
    top: 54px;
    right: 40px;
    margin: 0;
    width: 280px;
  }
  .teams-hero .teams-hero-odotAnimal figure {
    display: block;
    width: 100%;
    padding-bottom: 81.87%;
    background: transparent url(https://cdn.oreillystatic.com/oreilly/images/hero-odot-penguins.png) 0 0 no-repeat;
    background-size: contain;
  }
}
@media (min-width: 58em) { /* 928px */
  .teams-hero p.teams-hero-intro {
    color: #222;
  }
}
@media (min-width: 76.5em) { /* 1224px */
  .teams-hero .sectionText:after {
    right: 0;
    top: 0;
    width: 100%;
    height: 480px;
  }
}
/* END .teams-hero */



/* .teamsSection */
.teamsSection .content {
  padding: 72px 20px 80px;
}
.teamsSection h2 {
  margin: 0 auto 4px;
  max-width: 960px;
  text-align: center;
  font-family: "gilroy", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.2em;
  color: #222;
}
.teamsSection p {
  margin: 0 auto 20px;
  max-width: 960px;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.5em;
  color: #222;
}
/* END .teamsSection */



.teams .textCTA-light,
.teams .textCTA-blue,
.teams .redCTA {
  position: relative;
  display: block;
  width: max-content;
  padding-right: 20px;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 600;
  color: #0071eb;
  text-decoration: none;
}
.teams .redCTA {
  color: #d30000;
}
.teams .textCTA-light {
  color: #fff;
}
.teams .textCTA-light:hover,
.teams .textCTA-light:focus,
.teams .textCTA-blue:hover,
.teams .textCTA-blue:focus,
.teams .redCTA:hover,
.teams .redCTA:focus {
  text-decoration: underline;
}
.teams .textCTA-light .inner,
.teams .textCTA-blue .inner,
.teams .redCTA .inner {
  position: relative;
}
.teams .textCTA-light .inner:after,
.teams .textCTA-blue .inner:after,
.teams .redCTA .inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -16px;
  width: 8px;
  height: 100%;
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_right_arrow_blue.svg) right center no-repeat;
  background-size: contain;
}
.teams .redCTA .inner:after {
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_right_arrow_red.svg) right center no-repeat;
  background-size: contain;
}
.teams .textCTA-light .inner:after {
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_right_arrow_white.svg) right center no-repeat;
  background-size: contain;
}
.teams .redButton,
.teams .blueButton,
.teams .whiteButton {
  display: block;
  width: max-content;
  margin: 0 auto 0;
  padding: 12px 20px 10px;
  border-radius: 4px;
  color: #fff;
  font-family: "gilroy", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow .2s;
}
.teams .redButton {
  background-color: #d30000;
}
.teams .blueButton {
  background-color: #0071eb;
}
.teams .whiteButton {
  background-color: #fff;
  color: #0071eb;
}
.teams .redButton:hover,
.teams .redButton:focus,
.teams .blueButton:hover,
.teams .blueButton:focus,
.teams .whiteButton:hover,
.teams .whiteButton:focus {
  text-decoration: none;
  box-shadow: 0 2px 8px rgb(0 0 0 / 30%);
}


/* .teams-hero-form */
.teams .teams-hero-form {
  margin: 0 auto;
  width: 100%;
  max-width: 485px;
}
.teams .teams-hero-form > p {
  margin-bottom: 8px;
}
.teams .teams-hero-form .pardotForm {
  max-width: 100%;
  color: #515151;
}
.teams .teams-hero-form p {
  width: 100%;
  max-width: 100%;
}
.teams .teams-hero-form .pardotForm p {
  margin-bottom: 20px;
  font-family: 'guardian-text-oreilly', Helvetica, sans-serif;
}
.teams .teams-hero-form .pardotForm p.pardotForm-privacy {
  display: inline-block;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.5em;
}
.teams .teams-hero-form .pardotForm-thankyou {
  margin: 0 auto;
  max-width: 485px;
}
.teams .teams-hero-form .pardotForm-thankyou h2 {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
  text-align: center;
  font-family: 'gilroy', Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 600;
  color: #222;
}
@media (min-width: 37.5em) {
  .teams .teams-hero-form .pardotForm,
  .teams .teams-hero-form .pardotForm-thankyou {
    width: 100%;
    float: none;
  }
}
@media (min-width: 50em) {
  .teams .teams-hero-form {
    width: calc(50% - 40px);
  }
  .teams .teams-hero-form p {
    margin-bottom: 0;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5em;
  }
  .teams .teams-hero-form > p {
    margin-bottom: 8px;
  }
}
@media (min-width: 46.25em) { /* 740px */
  .teams .teams-hero-form,
  .teams .teams-hero-form .pardotForm,
  .teams .teams-hero-form .pardotForm-thankyou {
    width: 100%;
    float: none;
  }
}
@media (min-width: 56.25em) { /* 900px */
  .teams .teams-hero-form .pardotForm,
  .teams .teams-hero-form .pardotForm-thankyou {
    width: 100%;
  }
}
@media (min-width: 71em) {
  .teams .teams-hero-form h2 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.2em;
  }
}
/* END .teams-hero-form */


/* .teams-upskill */
.teamsSection.teams-upskill {
}
.teamsSection.teams-upskill .content {
  position: relative;
  max-width: 1000px;
  padding: 72px 20px 40px;
}
.teamsSection.teams-upskill .content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #fff transparent transparent transparent;
}
.teamsSection.teams-upskill h2,
.teamsSection.teams-upskill p {
  color: #222;
}
.teamsSection.teams-upskill .sectionFigure {
  display: block;
  margin: 0 auto 40px;
  width: 80%;
  text-decoration: none;
}
.teamsSection.teams-upskill .sectionFigure img {
  display: block;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
}
.teamsSection.teams-upskill .textCTA-blue {
  margin: 0 auto 0;
}
@media (min-width: 50em) {
  .teamsSection.teams-upskill .content {
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .teamsSection.teams-upskill .sectionText {
    margin: 0;
    width: calc(50% - 40px);
    text-align: left;
  }
  .teamsSection.teams-upskill .sectionText *:last-child {
    margin-bottom: 0;
  }
  .teamsSection.teams-upskill .sectionText h2,
  .teamsSection.teams-upskill .sectionText p {
    text-align: left;
  }
  .teamsSection.teams-upskill .sectionFigure {
    margin: 0;
    width: calc(50% - 40px);
  }
  .teamsSection.teams-upskill .textCTA-blue {
    margin: 0;
  }
}
/* end .teams-upskill */



/* .teamsSection-industry */
.teamsSection.teamsSection-industry .content {
  position: relative;
  max-width: 1000px;
  padding: 72px 20px 40px;
}
.teamsSection.teamsSection-industry .content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #fff transparent transparent transparent;
}
.teamsSection.teamsSection-industry .sectionText {
  margin-bottom: 28px;
}
.teamsSection.teamsSection-industry .awardsGrid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 960px;
}
.teamsSection.teamsSection-industry .awardsGrid figure {
  margin: 0 30px 40px;
  width: calc(50% - (120px / 2));
}
.teamsSection.teamsSection-industry .awardsGrid figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 200px;
}
@media (min-width: 50em) {
  .teamsSection.teamsSection-industry .nowrap-desktop {
    white-space: nowrap;
  }
  .teamsSection.teamsSection-industry .awardsGrid figure {
    margin: 0 20px 40px;
    width: calc(25% - (180px / 3));
  }
}
/* END .teamsSection-industry */



/* .teamsSection-org */
.teamsSection.teamsSection-org {
  background: linear-gradient(265.91deg, #0071EB 6.68%, #474AC9 76.77%, #8E22A7 146.86%);
}
.teamsSection.teamsSection-org .content {
  position: relative;
  max-width: 1000px;
  padding: 72px 20px 80px;
}
.teamsSection.teamsSection-org .content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #3057d5 transparent transparent transparent;
}
.teamsSection.teamsSection-org .sectionText {
  margin-bottom: 28px;
}
.teamsSection.teamsSection-org h2 {
  margin: 0 0 4px;
  color: #fff;
}
.teamsSection.teamsSection-org p {
  margin: 0;
  color: #fff;
}
.teamsSection.teamsSection-org .sectionFigure {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.2);
}
.teamsSection.teamsSection-org .sectionFigure img {
  display: block;
  margin: 30px;
}
.teamsSection.teamsSection-org .sectionFigure img.height_xs {
  height: 15px;
}
.teamsSection.teamsSection-org .sectionFigure img.height_s {
  height: 20px;
}
.teamsSection.teamsSection-org .sectionFigure img.height_m {
  height: 40px;
}
.teamsSection.teamsSection-org .sectionFigure img.height_l {
  height: 50px;
}
@media (min-width: 65em) {
  .teamsSection.teamsSection-org .sectionFigure img.height_xs {
    height: 20px;
  }
  .teamsSection.teamsSection-org .sectionFigure img.height_s {
    height: 30px;
  }
  .teamsSection.teamsSection-org .sectionFigure img.height_m {
    height: 50px;
  }
  .teamsSection.teamsSection-org .sectionFigure img.height_l {
    height: 60px;
  }
}
/* END .teamsSection-org */




/* .teamsSection-video */
.teamsSection.teamsSection-video {
  background: linear-gradient(258.17deg, #8E22a7 41.34%, #0071eb 100%);
}
.teamsSection.teamsSection-video .content {
  position: relative;
  max-width: 1000px;
  padding: 72px 20px 80px;
}
.teamsSection.teamsSection-video .content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #653abc transparent transparent transparent;
}
.teamsSection.teamsSection-video .sectionText {
  margin-bottom: 30px;
}
.teamsSection.teamsSection-video h2 {
  margin-bottom: 8px;
  color: #fff;
}
.teamsSection.teamsSection-video p {
  color: #fff;
}
.teamsSection.teamsSection-video .sectionFigure {
  position: relative;
  margin: 40px auto 20px;
  width: 100%;
  padding-bottom: 56.25%;
}
.teamsSection.teamsSection-video .sectionFigure .kWidgetIframeContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
}
.teamsSection.teamsSection-video .sectionFigure:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -1px;
  border-radius: inherit;
  background: transparent linear-gradient(135deg, #d30000 0%, #d30000 30%, #FF9C1A 100%);
}
.teamsSection.teamsSection-video .textCTA-light {
  margin: 20px auto 0;
}
/* .teamsSection-video */




/* .teams-topics */
.teamsSection.teams-topics .content {
  position: relative;
  max-width: 1000px;
  padding: 72px 20px 60px;
}
.teamsSection.teams-topics .content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #fff transparent transparent transparent;
}
.teamsSection.teams-topics .sectionText {
  margin-bottom: 30px;
}
.teamsSection.teams-topics h2 {
  margin-bottom: 8px;
}
.teamsSection.teams-topics p {
  margin-bottom: 20px;
}
.teamsSection.teams-topics .textCTA-blue {
  display: inline-block;
}
.teamsSection.teams-topics ul.teams-topics-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.teamsSection.teams-topics ul.teams-topics-list > li {
  display: block;
  margin-bottom: 20px;
  padding: 16px 20px 8px;
  border: 1px solid #8e22a7;
  border-radius: 8px;
  background: #fff;
  width: calc(50% - 10px);
  text-align: center;
}
.teamsSection.teams-topics ul.teams-topics-list > li a {
  display: block;
  margin: 0 0 8px;
  font-family: 'guardian-text-oreilly', Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 600;
  text-decoration: none;
}
.teamsSection.teams-topics ul.teams-topics-list > li a:hover {
  text-decoration: underline;
}
.teamsSection.teams-topics ul.teams-topics-list > li li a {
  font-weight: 400;
}
@media (min-width: 40em) {
  .teamsSection.teams-topics ul.teams-topics-list > li a {
  }
}
@media (min-width: 50em) { /* 800px */
  .teamsSection.teams-topics ul.teams-topics-list > li {
    width: calc(25% - 10px);
  }
  .teamsSection.teams-topics ul.teams-topics-list > li a {
    font-size: 1.25rem;
    line-height: 1.5em;
  }
}
/* END .teams-topics */




/* .teams-awards */
.teamsSection.teams-awards {
  background-color: rgb(0,0,0,1);
  background-image: linear-gradient(-70deg, rgba(226,190,110,.1), rgba(226,190,110,0)), linear-gradient(130deg, rgba(255,255,255,0) 45%, rgba(255,255,255,.1) 100%), linear-gradient(170deg, rgba(255,255,255,0) 70%, rgba(255,255,255,.2) 100%);
  background-size: cover;
}
.teamsSection.teams-awards .content {
  position: relative;
  max-width: 1000px;
  padding: 72px 20px;
}
.teamsSection.teams-awards .content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #46443e transparent transparent transparent;
}
.teamsSection.teams-awards h2 {
  margin-bottom: 8px;
  color: #fff;
}
.teamsSection.teams-awards p {
  margin-bottom: 20px;
  color: #fff;
}
.teamsSection.teams-awards .sectionFigure {
  display: block;
  margin: 0 auto 40px;
  width: 80%;
  text-decoration: none;
}
.teamsSection.teams-awards .sectionFigure:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 76.6%;
  background: transparent url(https://cdn.oreillystatic.com/oreilly/images/raven_awards_2024_443x442.png) center center no-repeat;
  background-size: contain;
}
.teamsSection.teams-awards .sectionFigure video {
  display: none;
}
.teamsSection.teams-awards .teams-awards-logos {
  display: none;
}
.teamsSection.teams-awards .textCTA-light {
  margin: 0 auto 0;
}
@media (min-width: 50em) {
  .teamsSection.teams-awards .content {
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  .teamsSection.teams-awards .content:after {
    border-color: #282828 transparent transparent transparent;
  }
  .teamsSection.teams-awards .sectionText {
    margin: 0;
    width: calc(50% - 40px);
    text-align: left;
  }
  .teamsSection.teams-awards h2 {
    text-align: left;
  }
  .teamsSection.teams-awards p {
    text-align: left;
  }
  .teamsSection.teams-awards .sectionFigure {
    margin: -30px 0;
    padding: 0;
    width: calc(50% - 40px);
  }
  .teamsSection.teams-awards .textCTA-light {
    margin: 0;
  }
}
/* end .teams-awards */



/* .teamsSection-rfp */
.teamsSection.teamsSection-rfp .content {
  position: relative;
  max-width: 1000px;
  padding: 72px 20px 80px;
}
.teamsSection.teamsSection-rfp .content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #fff transparent transparent transparent;
}
.teamsSection.teamsSection-rfp h2 {
  margin-bottom: 8px;
}
.teamsSection.teamsSection-rfp p {
  margin-bottom: 20px;
}
.teamsSection.teamsSection-rfp .sectionFigure {
  position: relative;
  margin: 40px auto 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
}
.teamsSection.teamsSection-rfp .sectionFigure img {
  display: block;
  width: 100%;
  max-width: 700px;
  border-radius: 7px;
}
.teamsSection.teamsSection-rfp .sectionFigure:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -1px;
  border-radius: inherit;
  background: transparent linear-gradient(135deg, #d30000 0%, #d30000 30%, #FF9C1A 100%);
}
.teamsSection.teamsSection-rfp .sectionText {
  margin: 0 0 40px;
}
.teamsSection.teamsSection-rfp .textCTA-blue {
  margin: 0 auto;
}
@media (min-width: 50em) { /* 800px */
  .teamsSection.teamsSection-rfp .content {
    padding: 80px 20px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .teamsSection.teamsSection-rfp .sectionText {
    margin: 0;
    width: calc(50% - 30px);
    text-align: left;
  }
  .teamsSection.teamsSection-rfp h2 {
    text-align: left;
  }
  .teamsSection.teamsSection-rfp p {
    margin-bottom: 30px;
    text-align: left;
  }
  .teamsSection.teamsSection-rfp .sectionText *:last-child {
    margin-bottom: 0;
  }
  .teamsSection.teamsSection-rfp .sectionFigure {
    margin: 0;
    width: calc(50% - 30px);
  }
  .teamsSection.teamsSection-rfp .textCTA-blue {
    margin: 0;
  }
}
/* END .teamsSection-rfp */




/* .teamsSection-govEd */
.teamsSection.teamsSection-govEd {
  position: relative;
  background: linear-gradient(360deg, #14D4D8 -152.84%, #00C5E3 -102.27%, #00B4EF -51.7%, #00A1F6 -1.13%, #008BF6 49.43%, #0071eb 100%);
}
.teamsSection.teamsSection-govEd .content {
  max-width: 1000px;
  padding: 72px 20px 72px;
}
.teamsSection.teamsSection-govEd .content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #01a0f7 transparent transparent transparent;
}
.teamsSection.teamsSection-govEd h2 {
  margin-bottom: 8px;
  color: #fff;
}
.teamsSection.teamsSection-govEd p {
  margin-bottom: 20px;
  color: #fff;
}
.teamsSection.teamsSection-govEd .sectionText {
  margin: 0 0 40px;
}
.teamsSection.teamsSection-govEd .sectionText:last-child {
  margin: 0;
}
.teamsSection.teamsSection-govEd .textCTA-light {
  margin: 0 auto;
}
@media (min-width: 50em) {
  .teamsSection.teamsSection-govEd .content {
    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    align-items: top;
  }
  .teamsSection.teamsSection-govEd h2 {
    text-align: left;
  }
  .teamsSection.teamsSection-govEd p {
    margin-bottom: 30px;
    text-align: left;
  }
  .teamsSection.teamsSection-govEd .sectionText {
    margin: 0;
    width: calc(50% - 30px);
    text-align: left;
  }
  .teamsSection.teamsSection-govEd .textCTA-light {
    margin: 0;
  }
}
/* END .teamsSection-govEd */



/* .teams-cta */
.teamsSection.teams-cta .content {
  max-width: 1000px;
}
.teamsSection.teams-cta h2 {
  margin: 0 auto 28px;
}
/* END .teams-cta */



/* .bentoSection */
.bentoSection {
  position: relative;
  z-index: 2;
}
.bentoSection .content {
  padding: 20px 20px;
}
.bentoSection-grid {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: minmax(100px, auto);
  gap: 20px;
}
.bentoSection-item {
  border: 1px solid rgba(0,0,0,0.22);
  border-radius: 24px;
  padding: 40px;
  background: rgba(255,255,255,0.8);
}
.bentoSection-item.item-1 {
  grid-column: 1;
}
.bentoSection-item.item-2 {
  grid-column: 1;
}
.bentoSection-item.item-3 {
  grid-column: 1;
}
.bento-events {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.bento-events a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  border: 0;
  color: #222;
  text-decoration: none;
}
.bento-events .bento-events-day {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 700;
}
.bento-events .bento-events-time {
  margin: 0;
  font-size: .875rem;
  line-height: 1.5em;
  color: #525358;
}
.bento-events .bento-events-cta {
  position: relative;
  width: max-content;
  padding: 0 24px 0 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5em;
  color: #d30000;
  font-weight: 500;

  .bento-events a:hover &,
  .bento-events a:focus & {
    text-decoration: underline;
  }
}
.bento-events .bento-events-cta:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_full_right_arrow_red.svg) center center no-repeat;
  background-size: contain;
}
.bentoSection h2 {
  margin: 0;
  font-family: "gilroy", Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.2em;
  text-align: center;
}
.bentoSection h3 {
  text-align: center;
}
.bentoSection p {
  font-size: 1rem;
  line-height: 1.5em;
  text-align: center;
}
.bentoSection .pardotForm-test-group-heading p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.bentoSection .pardotForm-test p.pardotForm-test-privacy {
  font-size: .75rem;
  line-height: 1.5em;
}
.bentoSection .redButton {
  position: relative;
  display: block;
  margin: 32px auto 0;
  padding: 12px 44px 12px 20px;
  width: max-content;
  border: 0;
  border-radius: 8px;
  background-color: #d30000;
  font-size: 1rem;
  line-height: 1.25em;
  color: #fff;
  font-family: 'guardian-text-oreilly', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 200ms;
}
.bentoSection .redButton:hover,
.bentoSection .redButton:focus {
  opacity: 1;
  text-decoration: none;
  background-color: #BC123C;
  color: #fff;
  box-shadow: none;
}
.bentoSection .redButton:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_full_right_arrow_white.svg) center center no-repeat;
  background-size: contain;
}
@media (min-width: 50em) { /* 800px */
  .bentoSection .content {
    padding: 0 20px 32px;
  }
  .bentoSection-grid {
    grid-template-columns: 56% auto;
    grid-auto-rows: auto 1fr;
    gap: 32px;
  }
  .bentoSection-item.item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .bentoSection-item.item-2 {
    grid-column: 2;
  }
  .bentoSection-item.item-3 {
    grid-column: 2;
  }
  .bento-events a {
    align-items: unset;
    text-align: left;
  }
  .bentoSection h2 {
    text-align: left;
  }
  .bentoSection h3 {
    text-align: left;
  }
  .bentoSection p {
    text-align: left;
  }
  .bentoSection .redButton {
    margin: 32px 0 0;
  }
}

/* ------------------

End Teams Page CSS

------------------ */





/* ------------------

Exit Intent Overlay CSS

------------------ */
.exitIntentOverlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 501;
  transform: scale(0);
  opacity: 1;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0);
  transition: background-color .5s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.exitIntentOverlay.visible {
  transform: scale(1);
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
}
.exitIntentOverlay:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
}
.exitIntentOverlay .exitIntentOverlay-contents {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 30px 20px 20px;
  width: calc(100% - 40px);
  max-width: 640px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}
.exitIntentOverlay .exitIntentOverlay-text {
  text-align: center;
}
.exitIntentOverlay .exitIntentOverlay-text h2 {
  margin: 0;
  font-family: "gilroy",Arial,sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.15em;
  color: #222;
}
.exitIntentOverlay .exitIntentOverlay-text h3 {
  margin: 0;
  font-family: "gilroy",Arial,sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5em;
  color: #222;
}
.exitIntentOverlay .exitIntentOverlay-text p {
  margin-bottom: 12px;
  font-family: "gilroy",Arial,sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5em;
  color: #222;
}
.exitIntentOverlay .exitIntentOverlay-events {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  grid-template-rows: repeat(2, 1fr); /* Two rows */
  gap: 10px;
  padding: 8px;
}
.exitIntentOverlay .exitIntentOverlay-events > a {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 8px;
  border: 1px solid #0071EB;
  border-radius: 8px;
  font-family: "gilroy",Arial,sans-serif;
  font-size: 1rem;
  line-height: 1.4em;
  color: #222;
  text-decoration: none;
  transition: box-shadow .25s;
}
.exitIntentOverlay .exitIntentOverlay-events > a:focus,
.exitIntentOverlay .exitIntentOverlay-events > a:hover {
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.exitIntentOverlay .exitIntentOverlay-events-day {
  display: block;
  font-weight: 600;
}
.exitIntentOverlay .exitIntentOverlay-events-time {
  display: block;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5em;
}
.exitIntentOverlay .exitIntentOverlay-close {
  display: block;
  position: absolute;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  padding: 15px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  opacity: .8;
  background: transparent;
  transition: opacity .25s;
}
.exitIntentOverlay .exitIntentOverlay-close:focus,
.exitIntentOverlay .exitIntentOverlay-close:hover {
  opacity: 1;
}
.exitIntentOverlay .exitIntentOverlay-close:before {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  background: transparent url(https://cdn.oreillystatic.com/oreilly/images/icon_close_16x16.svg) 0 0 no-repeat;
  background-size: contain;
}
.exitIntentOverlay .exitIntentOverlay-close .hide-text {
  display: block;
  height: 0;
  width: 0;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
@media (min-width: 40em) {
  .exitIntentOverlay .exitIntentOverlay-contents {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 40px 40px; 
  }
  .exitIntentOverlay .exitIntentOverlay-text h2 {
    font-size: 2rem;
    line-height: 1.125em;
  }
  .exitIntentOverlay .exitIntentOverlay-text h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  .exitIntentOverlay .exitIntentOverlay-text p {
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  .exitIntentOverlay .exitIntentOverlay-events > a {
    font-size: 1.25rem;
    line-height: 1.2em;
  }
}
/* ------------------

End Exit Intent Overlay CSS

------------------ */






/* ------------------

Pardot Form CSS

------------------ */
.pardotForm-test, .pardotForm-test-thankyou {
  max-width: 100%;
  margin: 0 auto;
  font-family: 'guardian-text-oreilly', Arial, sans-serif;
}
.pardotForm-test-fields {
  margin: 24px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pardotForm-test-group {
  display: flex;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pardotForm-test-group-heading h3 {
  margin: 0 0 4px;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 500;
}
.pardotForm-test-group-heading p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5em;
  color: #525358;
}
.pardotForm-test fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
}
.pardotForm-test input, .pardotForm-test label {
  display: block;
  font-family: inherit;
}
.pardotForm-test label {
  margin: 0 0 4px;
  font-size: .875rem;
  line-height: 1.5em;
  font-weight: 500;
}
.pardotForm-test legend {
  margin: 0 0 4px;
  font-size: .875rem;
  line-height: 1.5em;
  font-weight: 400;
}
.pardotForm-test .disabled {
  opacity: .5;
}
.pardotForm-test .disabled label,
.pardotForm-test .disabled input,
.pardotForm-test .disabled textarea,
.pardotForm-test .disabled select {
  pointer-events: none;
  cursor: default;
}
.pardotForm-test.salesforce-form p.required {
  margin: 0 0 4px;
  font-size: 0.875rem;
  line-height: 1.5em;
  font-weight: 700;
}
.pardotForm-test input[type="text"],
.pardotForm-test input[type="email"],
.pardotForm-test input[type="date"],
.pardotForm-test textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  padding: 12px 10px;
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  border: 1px solid #BCBEC3;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5em;
  color: #525358;
}
.pardotForm-test .option-select input[type="radio"],
.pardotForm-test .option-select label {
  display: inline-block;
  margin-right: 8px;
}
.pardotForm-test select {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  padding: 12px 10px;
  min-height: 48px;
  box-sizing: border-box;
  border: 1px solid #BCBEC3;
  border-radius: 8px;
  appearance: none;
  background: transparent url(https://cdn.oreillystatic.com/oreilly/images/inbound-aisf-select-arrow.png) right center no-repeat;
  color: #525358;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.pardotForm-test select,
.pardotForm-test .option-select {
  width: 100%;
  margin: 0;
}
.pardotForm-test textarea {
 height: auto;
}
.pardotForm-test-cta {
  position: relative;
  display: block;
  margin: 0 auto 16px;
  padding: 12px 44px 12px 20px;
  width: max-content;
  border-radius: 8px;
  background-color: #d30000;
  font-size: 1rem;
  line-height: 1.25em;
  color: #fff;
  font-family: 'guardian-text-oreilly', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  transition: background-color 200ms;
}
.pardotForm-test-cta:hover,
.pardotForm-test-cta:active {
  text-decoration: none;
  background-color: #BC123C;
  color: #fff;
}
.pardotForm-test-cta:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_full_right_arrow_white.svg) center center no-repeat;
  background-size: contain;
}

p.pardotForm-test-fillout {
  font-weight: bold;
  margin-bottom: 0;
}
.pardotForm-test p.pardotForm-test-privacy {
  margin: 0 auto;
  width: 100%;
  max-width: max-content;
  font-size: .75rem;
  line-height: 1.5em;
  color: #9C9EA3;
}
.pardotForm-test p.pardotForm-test-privacy:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  width: 20px;
  height: 20px;
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_lock_gray.svg) center center no-repeat;
  background-size: contain;
}
.pardotForm-test p.pardotForm-test-privacy a {
  color: #9C9EA3;
}
.pardotForm-test-thankyou h2 {
  margin: 0 0 12px;
  font-family: "gilroy", Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.2em;
  text-align: center;
  font-weight: 700;
}
.pardotForm-test-thankyou p {
  font-size: 1rem;
  line-height: 1.5em;
  text-align: center;
}
@media (min-width: 50em) {
  .pardotForm-test-thankyou h2 {
    text-align: left;
  }
  .pardotForm-test-thankyou p {
    text-align: left;
  }
}
@media (min-width: 28em ) and  /* 448px */
       (max-width: 71em ),  /* px */
       (min-width: 71em) {  /* 1120px */
  .pardotForm-test-split {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
  }
  .pardotForm-test-split > div {
    width: 50%;
  }
}
@media (min-width: 37.5em) { /* 600px */
  .pardotForm-test-text, .pardotForm-test, .pardotForm-test-thankyou {
    box-sizing: border-box;
    width: 100%;
  }
  .pardotForm-test-text {
    margin-right: 0;
  }
}
@media (min-width: 56.25em) { /* 900px */
  .pardotForm-test-text {
    width: 100%;
  }
  .pardotForm-test, .pardotForm-test-thankyou {
    width: 100%;
  }
}
/* pardotForm error message styles */
.pardotForm-test input[type="text"].error,
.pardotForm-test input[type="email"].error,
.pardotForm-test select.error,
.pardotForm-test .option-select.error {
  border-width: 2px;
  border-color: #e00;
}
.pardotForm-test select.error,
.pardotForm-test .option-select.error {
  background-color: #fae0de;
  color: #e00;
}
.pardotForm-test label.error,
.pardotForm-test-errorMessage p,
.pardotForm-test .option-select.error legend {
  padding-left: 28px;
  color: #e00;
  position: relative;
}
.pardotForm-test noscript {
  font-weight: 600;
  color: #e00;
  position: relative;
}
.pardotForm-test noscript p {
  padding-left: 28px;
}
.pardotForm-test label.error:before,
.pardotForm-test-errorMessage p:before,
.pardotForm-test noscript p:before,
.pardotForm-test .option-select.error legend:before {
  content: url('https://cdn.oreillystatic.com/images/icons/baseline-error_outline-24px.svg');
  position: absolute;
  left: 0;
  top: -2px;
}
.pardotForm-test button {
  cursor: pointer;
  border: 0;
}
.pardotForm-test button[disabled],
.pardotForm-test input[disabled],
.pardotForm-test textarea[disabled],
.pardotForm-test select[disabled] {
  opacity: 0.5;
}
/* ------------------

End Pardot Form CSS

------------------ */






/* ------------------

Demo Sessions CSS

------------------ */
.demoSessions h3 {
  margin: 0 0 8px;
  max-width: 880px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4em;
  font-family: 'gilroy', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.demoSessions .session {
  display: block;
  margin: 0 0 20px;
}
.demoSessions .session-date {
  display: block;
  margin-bottom: 8px;
  font-weight:bold;
}
.demoSessions .session-btn {
  display: block;
  width: max-content;
  text-decoration: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
  border-radius: 2px;
  padding: 8px 16px;
  background: rgb(0, 113, 235);
  color: rgb(255, 255, 255);
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 600;
  font-family: 'guardian-text-oreilly', Arial, sans-serif;
  cursor: pointer;
  transition: box-shadow .2s;
}
.demoSessions .session-btn:hover,
.demoSessions .session-btn:focus {
  box-shadow: 0 0 4px rgba(0, 0, 0, .3);
}
.demoSessions .session-btn:after {
  content: "";
  display: inline-block;
  margin: -8px -2px -6px 6px;
  width: 13px;
  height: 22px;
  vertical-align: middle;
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_right_arrow_white.svg) center center no-repeat;
  background-size: contain;
}
@media (min-width: 40em) { /* 640px */
  .demoSessions h3 {
    margin: 0 0 12px;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3em;
  }
}
/* ------------------

End Demo Sessions CSS

------------------ */