* {
  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;
  }
}


/* common elements */
.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 */




/* mktoDemoForm */
.mktoDemoForm {
  width: 100%;
  max-width: 444px;
}
.mktoDemoForm.overlayDemoForm {
  max-width: 100%;
}
.mktoDemoForm-text h2, .mktoDemoForm-thankyou h2 {
  margin-bottom: 18px;
  max-width: 880px;
  font-family: 'gilroy', Arial, sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.2em;
  font-weight: 300;
}
.mktoDemoForm h3 {
  margin-top: 0;
  margin-bottom: 18px;
  max-width: 880px;
  font-family: 'gilroy', Arial, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 300;
}
.mktoDemoForm-text h3,
.mktoDemoForm-thankyou h3 {
  margin-top: 0;
  margin-bottom: 18px;
  max-width: 880px;
  font-family: 'gilroy', Arial, sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2em;
  font-weight: 300;
}
.mktoDemoForm-text p {
  margin-bottom: 20px;
  max-width: 880px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5em;
}
.mktoDemoForm-image {
  float: left;
  width: 136px;
  max-width: 33%;
  margin: 10px 32px 32px 0;
}
.mktoDemoForm-image-circle {
  display: block;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.mktoDemoForm input:not([type=checkbox]):not([type=radio]),
.mktoDemoForm textarea,
.mktoDemoForm select,
.mktoDemoForm button,
.mktoDemoForm label
 {
  font-family: 'gilroy', Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mktoDemoForm form {
  margin-bottom: 10px;
  padding: 0;
}
.mktoDemoForm label {
  float: none !important;
  display: block !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  color: #222;
  font-weight: 400 !important;
  font-size: 1rem;
  line-height: 1em;
}
.mktoDemoForm label.error {
  color: #d30000;
}
.mktoDemoForm input.error, .mktoDemoForm select.error {
  border-color: #d30000;
}
.mktoDemoForm form,
.mktoDemoForm .mktoFormRow,
.mktoDemoForm .mktoFormCol,
.mktoDemoForm .mktoFieldWrap,
.mktoDemoForm .mktoLabel,
.mktoDemoForm input:not([type=checkbox]):not([type=radio]),
.mktoDemoForm select,
.mktoDemoForm textarea,
.mktoDemoForm .mktoButtonWrap,
.mktoDemoForm .mktoButtonRow {
  width:100% !important;
  max-width:100% !important;
}
.mktoDemoForm input:not([type=checkbox]):not([type=radio]),
.mktoDemoForm select,
.mktoDemoForm textarea {
  min-height: 40px !important;
  font-size: 1rem !important;
  line-height: 20px !important;
  padding-left: 12px !important;
}
.mktoDemoForm input.error::-webkit-input-placeholder,
.mktoDemoForm input.error::-moz-placeholder,
.mktoDemoForm input.error:-ms-input-placeholder,
.mktoDemoForm input.error:-moz-placeholder {
  color: #d30000;
}
.mktoDemoForm label .label-error {
  display: none;
}
.mktoDemoForm label .label,
.mktoDemoForm label.error .label-error {
  display: inline
}
.mktoDemoForm label .mktoAsterix {
  display: none !important;
}
.mktoDemoForm label[for=industry_other] {
  position: absolute;
}
.mktoDemoForm label[for="marketing_consent"] {
  position: static;
  display: block !important;
  font-weight: normal !important;
  margin: 16px 0 8px !important;
  padding: 0 !important;
  color: #222 !important;
  line-height: 1.4em !important;
}
.mktoDemoForm .mktoRadioList {
  padding: 0 !important;
}
.mktoDemoForm .mktoRadioList > label {
  position: static;
  display: inline-block !important;
  float: none !important;
  margin: 0 16px 0 0 !important;
}
.mktoDemoForm .mktoRadioList > input {
  margin: 2px 6px 8px 0;
  display: inline-block !important;
  float: none;
}
.mktoDemoForm select.mbz {
  margin-bottom: 0;
  border-bottom: none;
}
.mktoDemoForm input:not([type=checkbox]):not([type=radio]),
.mktoDemoForm select {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 4px;
  padding: 0.625em 0.65em !important;
  border: .5px solid #999;
  border-radius: 0;
  font-size: 0.875rem;
  line-height: 1em;
  color: #222;
  white-space: normal;
  background: none;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.mktoDemoForm select {
  background: transparent url(https://cdn.oreillystatic.com/oreilly/images/inbound-aisf-select-arrow.png) right center no-repeat !important;
  color: #222 !important;
}
.mktoDemoForm .mktoButtonWrap {
  margin: 0 !important;
  width: auto !important;
}
.mktoDemoForm button {
  width: auto !important;
  display: inline-block !important;
  margin: 8px 0 0 !important;
  padding: 5px 20px 3px !important;
  border: none;
  border-radius: 2px !important;
  font-family: 'gilroy',Arial,sans-serif !important;
  font-size: 1.25rem !important;
  line-height: 1.5em !important;
  font-weight: 600;
  color: rgb(255,255,255);
  white-space: normal !important;
  background: rgb(0,113,235) !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  border: none !important;
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  -webkit-transition: box-shadow 200ms;
  transition: box-shadow 200ms;
}
.mktoDemoForm button:hover,
.mktoDemoForm button:active {
  -webkit-text-decoration: none;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
}
.mktoDemoForm button:focus {
  outline: auto !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
.mktoDemoForm .mktoDemoForm-privacy {
  display: inline-block;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.5em;
}
.mktoDemoForm.overlayDemoForm p {
  margin-bottom: 20px;
}
.mktoDemoForm .mktoGutter,
.mktoDemoForm .mktoOffset {
  display: none !important;
}
.mktoDemoForm .mktoDemoForm-subtitle {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.mktoDemoForm-addendum p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 600;
}
.mktoDemoForm .academic-survey p {
  margin: 0 0 8px;
}
.mktoDemoForm.answersDemoForm .contentMarketingForm-cta {
  margin-bottom: 20px !important;
}
.noscript-error {
  font-weight: 600;
  color: #d30000;
}
@media (min-width: 37.5em) {
  .mktoDemoForm, .mktoDemoForm-thankyou {
    width: 47.5%;
    float: left;
  }
  .mktoDemoForm.answersDemoForm, .mktoDemoForm-thankyou.answersDemoForm-thankyou {
    width: 100%;
  }
  .mktoDemoForm.overlayDemoForm, .mktoDemoForm-thankyou.overlayDemoForm-thankyou {
    width: 100%;
  }
  .mktoDemoForm.resellerForm, .mktoDemoForm-thankyou.resellerForm {
    width: 100%;
    float: none;
  }
  .mktoDemoForm-formWrapper .mktoDemoForm-thankyou {
    width: 100%;
    float: none;
  }
  .mktoDemoForm.contentForm, .mktoDemoForm-thankyou.contentForm {
    width: 100%;
    float: none;
  }
}
@media (min-width: 40em) { /* 640px */
  .mktoDemoForm-text p:last-of-type {
    margin-bottom: 40px;
  }
  .mktoDemoForm-text p {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5em;
    margin-bottom: 24px;
  }
  .mktoDemoForm .mktoDemoForm-subtitle {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em;
  }
}
@media (min-width: 46.25em) { /* 740px */
  .mktoDemoForm-text, .mktoDemoForm, .mktoDemoForm-thankyou, .mktoDemoForm-addendum {
    float: left;
    box-sizing: border-box;
    width: 47.5%;
  }
  .mktoDemoForm.answersDemoForm, .mktoDemoForm-thankyou.answersDemoForm-thankyou {
    width: 100%;
  }
  .mktoDemoForm.overlayDemoForm, .mktoDemoForm-thankyou.overlayDemoForm-thankyou {
    width: 100%;
    float: none;
  }
  .mktoDemoForm.resellerForm, .mktoDemoForm-thankyou.resellerForm {
    width: 100%;
    float: none;
  }
  .mktoDemoForm-formWrapper .mktoDemoForm-thankyou {
    width: 100%;
    float: none;
  }
  .mktoDemoForm.contentForm, .mktoDemoForm-thankyou.contentForm {
    width: 100%;
    float: none;
  }
  .mktoDemoForm-addendum {
    float: right;
  }
  .mktoDemoForm-text {
    margin-right: 5%;
  }
  .mktoDemoForm form {
    padding: 0;
  }
  .mktoDemoForm p {
    margin: 0 0 20px;
  }
  .mktoDemoForm .form-group {
    clear: both;
  }
}
@media (min-width: 50em) {
  .mktoDemoForm button {
    padding: 5px 20px 3px !important;
    font-size: 1.5rem !important;
    line-height: 1.5em !important;
  }
}
@media (min-width: 53em) { /* 848px */
  .mktoDemoForm-text p:last-of-type {
    margin-bottom: 20px;
  }
}
@media (min-width: 55em) { /* 880px */
  .mktoDemoForm .mktoFormRow:nth-of-type(1),
  .mktoDemoForm .mktoFormRow:nth-of-type(2) {
    width: 50% !important;
    width: calc(50% - 10px) !important;
    margin-right: 20px !important;
    float: left !important;
    clear: none !important;
  }
  .mktoDemoForm .mktoFormRow:nth-of-type(2) {
    margin-right: 0 !important;
  }
}
@media (min-width: 56.25em) { /* 900px */
  .mktoDemoForm-text {
    width: 57.5%;
  }
  .mktoDemoForm, .mktoDemoForm-thankyou, .mktoDemoForm-addendum {
    width: 37.5%;
  }
  .mktoDemoForm.answersDemoForm, .mktoDemoForm-thankyou.answersDemoForm-thankyou {
    width: 100%;
  }
  .mktoDemoForm-formWrapper .mktoDemoForm-thankyou {
    width: 100%;
    float: none;
  }
  .mktoDemoForm.overlayDemoForm, .mktoDemoForm-thankyou.overlayDemoForm-thankyou {
    width: 100%;
  }
  .mktoDemoForm.resellerForm, .mktoDemoForm-thankyou.resellerForm {
    width: 100%;
  }
  .mktoDemoForm.contentForm, .mktoDemoForm-thankyou.contentForm {
    width: 100%;
  }
}
@media (min-width: 71em) { /* 1136px */
  .mktoDemoForm-text h2 {
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 1.2em;
  }
  .mktoDemoForm h3 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.2em;
  }
  .mktoDemoForm-text h3 {
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 1.2em;
  }
}
/* END mktoDemoForm */




/* teams */
.teams .sectionText {
  margin: 0 auto;
  max-width: 1050px;
  text-align: center;
}
.teams h2 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2em;
  font-family: 'gilroy', Arial, sans-serif;
  margin-bottom: 20px;
}
.teams p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 20px;
}
.teams .textCTA-light,
.teams .textCTA-dark,
.teams .textCTA-red {
  position: relative;
  display: block;
  width: max-content;
  padding-right: 20px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3em;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}
.teams .textCTA-red {
  color: #d30000;
}
.teams .textCTA-light {
  color: #fff;
}
.teams .textCTA-light:hover,
.teams .textCTA-light:focus,
.teams .textCTA-dark:hover,
.teams .textCTA-dark:focus,
.teams .textCTA-red:hover,
.teams .textCTA-red:focus {
  text-decoration: underline;
}
.teams .textCTA-light .inner,
.teams .textCTA-dark .inner,
.teams .textCTA-red .inner {
  position: relative;
}
.teams .textCTA-light .inner:after,
.teams .textCTA-dark .inner:after,
.teams .textCTA-red .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_black.svg) right center no-repeat;
  background-size: contain;
  opacity: 1;
}
.teams .textCTA-red .inner:after {
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_right_arrow_red.svg) right center no-repeat;
}
.teams .textCTA-light .inner:after {
  background: transparent url(https://cdn.oreillystatic.com/images/icons/icon_right_arrow_white.svg) right center no-repeat;
}
.teams .btnCTA-red,
.teams .btnCTA-blue,
.teams .btnCTA-light {
  display: block;
  width: max-content;
  margin-bottom: 20px;
  padding: 10px 20px 8px;
  border-radius: 2px;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 600;
  text-decoration: none;
}
.teams .btnCTA-red {
  background-color: #d30000;
}
.teams .btnCTA-blue {
  background-color: rgb(0,113,235);
}
.teams .btnCTA-light {
  background-color: #fff;
  color: rgb(0,113,235);
}
.teams .btnCTA-red:hover,
.teams .btnCTA-red:focus,
.teams .btnCTA-blue:hover,
.teams .btnCTA-blue:focus,
.teams .btnCTA-light:hover,
.teams .btnCTA-light:focus {
  text-decoration: none;
  box-shadow: 0 1px 4px rgb(0,0,0,.3);
}
@media (min-width: 40em) { /* 640px */
  .teams p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  .teams .textCTA-light,
  .teams .textCTA-dark,
  .teams .textCTA-red {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3em;
  }
  .teams .textCTA-light .inner:after,
  .teams .textCTA-dark .inner:after,
  .teams .textCTA-red .inner:after {
    right: -20px;
    width: 10px;
  }
}
@media (min-width: 58em) { /* 928px */
  .teams p {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em;
    font-family: 'gilroy', Arial, sans-serif;
    font-weight: 300;
  }
  .teams .textCTA-light,
  .teams .textCTA-dark,
  .teams .textCTA-red {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em;
    font-family: 'gilroy', Arial, sans-serif;
  }
  .teams .btnCTA-red,
  .teams .btnCTA-blue,
  .teams .btnCTA-light {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2em;
    font-family: 'gilroy', Arial, sans-serif;
  }
}
@media (min-width: 65em) { /* 1040px */
  .teams h2 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.2em;
  }
  .teams p {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3em;
  }
  .teams .textCTA-light,
  .teams .textCTA-dark,
  .teams .textCTA-red {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3em;
  }
  .teams .btnCTA-red,
  .teams .btnCTA-blue,
  .teams .btnCTA-light {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2em;
  }
}


.teams-hero {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}
.teams-hero .pageWidth {
  padding: 40px 20px 20px;
  text-align: center;
}
.teams-hero-cloudRect {
  display: block;
  pointer-events: all;
  width: calc(100% + 40px);
  margin: -10px -20px 10px;
  height: 143px;
  background: transparent url(https://cdn.oreillystatic.com/oreilly/images/topic_cloud_rect.png) center center no-repeat;
  background-size: cover;
}
.teams-hero .sectionText {
  text-align: center;
  margin: 0;
  pointer-events: none;
}
.teams-hero h1 {
  margin: 0 0 20px;
  max-width: 100%;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2em;
  font-family: 'gilroy', Arial, sans-serif;
}
.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-subhead {
  margin: 0 0 20px;
  max-width: 100%;
  font-weight: 600;
}
.teams-hero .btnCTA-blue {
  margin: 0 auto 40px;
}
.teams-hero .hero-form .mktoDemoForm-fillout > p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}
.teams-hero .hero-form p.mktoDemoForm-privacy {
  text-align: left;
}
@media (min-width: 40em) { /* 640px */
  .teams-hero p.teams-hero-intro {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5em;
  }
}
@media (min-width: 50em) { /* 800px */
  .teams-hero .pageWidth {
    position: relative;
    padding: 40px 20px 20px;
  }
  .teams-hero .sectionText {
    position: relative;
    z-index: 1;
    text-align: left;
  }
  .teams-hero h1 {
    margin: 0 0 4px;
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.1em;
    max-width: 66%;
    text-align: left;
  }
  .teams-hero p.teams-hero-subhead {
    margin: 0 0 20px;
    max-width: 50%;
    text-align: left;
  }
  .teams-hero p.teams-hero-intro {
    max-width: 55%;
  }
  .teams-hero .btnCTA-blue {
    margin: 0;
  }
  .teams-hero-cloud {
    display: block;
    position: absolute;
    top: 60px;
    right: 20px;
    height: calc(100% - 120px);
    width: calc(40% - 40px);
    background: transparent url(https://cdn.oreillystatic.com/oreilly/images/topic_cloud_odot.png) right center no-repeat;
    background-size: contain;
  }
  .teams-hero-cloudRect {
    display: none;
  }
}
@media (min-width: 58em) { /* 928px */
  .teams-hero .pageWidth {
    position: relative;
    padding: 40px 20px 20px;
  }
  .teams-hero h1 {
    font-size: 44px;
    font-size: 2.75rem;
    line-height: 1.1em;
  }
  .teams p {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em;
    font-family: 'gilroy', Arial, sans-serif;
    font-weight: 300;
  }
  .teams-hero p.teams-hero-intro {
    font-family: 'guardian-text-oreilly', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
}
@media (min-width: 65em) { /* 1040px */
  .teams-hero .pageWidth {
    padding: 40px 20px 20px;
  }
  .teams-hero h1 {
    margin: 0 0 4px;
    font-size: 54px;
    font-size: 3.375rem;
    line-height: 1.1em;
  }
  .teams-hero p {
    margin: 0 0 30px;
  }
  .teams-hero-cloud {
    right: -40px;
    width: calc(56% - 40px);
  }
}
@media (min-width: 94em) { /* 1504px */
  .teams-hero-cloud {
    right: -220px;
    width: calc(66% + 20px);
  }
}



.teams .hero-form-container {
  pointer-events: all;
}
.teams .hero-form {
  min-height: 552px;
}
.teams .hero-form-container,
.teams .hero-form {
  width: 100%;
  max-width: 100%;
}
.teams .hero-form > p {
  margin-bottom: 8px;
}
.teams .hero-form .mktoDemoForm {
  max-width: 100%;
}
.teams-hero .hero-form-container p {
  width: 100%;
  max-width: 100%;
}
.teams .hero-form .mktoDemoForm p {
  margin-bottom: 20px;
  font-family: 'guardian-text-oreilly', Helvetica, sans-serif;
}
.teams .hero-form .mktoDemoForm p.mktoDemoForm-privacy {
  display: inline-block;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.5em;
}
.teams .hero-form-container .mktoDemoForm-thankyou {
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f4f4f4 0%, #fff 100%);
}
.teams .hero-form-container .mktoDemoForm-thankyou p {
  margin-bottom: 0;
}
@media (min-width: 37.5em) {
  .teams .hero-form .mktoDemoForm,
  .teams .hero-form-container .mktoDemoForm-thankyou {
    width: 100%;
    float: none;
  }
}
@media (min-width: 50em) {
  .teams .hero-form-container {
    width: calc(50% - 40px);
  }
  .teams .hero-form p {
    margin-bottom: 0;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5em;
  }
  .teams .hero-form > p {
    margin-bottom: 8px;
  }
}
@media (min-width: 46.25em) { /* 740px */
  .teams .hero-form,
  .teams .hero-form .mktoDemoForm,
  .teams .hero-form-container .mktoDemoForm-thankyou {
    width: 100%;
    float: none;
  }
}
@media (min-width: 56.25em) { /* 900px */
  .teams .hero-form-container .mktoDemoForm,
  .teams .hero-form-container .mktoDemoForm-thankyou {
    width: 100%;
  }
}
@media (min-width: 71em) {
  .teams .hero-form h2 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.2em;
  }
}
/* end .teams */