@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(60%);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-60%);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
#sns_main {
  padding-left: 0;
  padding-right: 0;
  min-height: calc(100vh - 199px);
  position: relative;
  transition: z-index 1s step-end;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-container, .flex {
  display: flex;
}

body > main #sns_main {
  background: #f9f9f9;
  padding-bottom: 0;
  margin-bottom: -12px;
}
body > main div.breadcrumbs {
  margin-bottom: 0;
}
body > main .flex {
  display: flex;
}
body > main .vertical {
  flex-direction: column;
}
body > main .center {
  justify-content: center;
}
body > main a.blue-button {
  display: inline-block;
  flex: 1;
  margin-right: 12px;
  padding: 0 16px !important;
  height: 40px !important;
  line-height: 40px !important;
  font-size: 14px !important;
  text-align: center;
  user-select: none;
}
body > main a.blue-button:last-of-type {
  margin-right: 0;
}
body > main a.blue-button.secondary {
  background: transparent !important;
  border: 1.5px solid #0088CE !important;
  color: #0088CE !important;
}
body > main a.blue-button.secondary:hover {
  background: #0088CE !important;
  color: #FFF !important;
  border: 1.5px solid #0088CE !important;
}
body > main h3 {
  font-size: 18px;
  font-weight: 500;
  text-transform: none !important;
  width: 640px;
  max-width: 100%;
  margin: 0 auto !important;
  line-height: 1.4;
}
body > main .flickity {
  position: relative;
  transition: 0.24s ease;
  opacity: 0;
  pointer-events: none;
  display: flex;
  margin: auto;
  padding: 16px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  body > main .flickity {
    padding: 16px 0;
    overflow: unset;
  }
}
body > main .flickity.flickity-enabled {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
body > main .flickity.flickity-enabled + .loader-placeholder {
  display: none;
}
body > main .flickity .flickity-button {
  border-radius: 100%;
  transition: 0.24s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0px 0px 8px rgba(2, 2, 2, 0.05);
  display: none;
}
body > main .flickity .flickity-button:disabled {
  opacity: 0.25;
}
body > main .flickity .flickity-button.previous {
  left: -50px;
  content: "";
  background-image: url("https://d2we78jv268onp.cloudfront.net/icons/arrow-left.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
body > main .flickity .flickity-button.next {
  right: -50px;
  content: "";
  background-image: url("https://d2we78jv268onp.cloudfront.net/icons/arrow-right.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
body > main .slider-wrapper {
  position: relative;
  margin: 80px auto 32px;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  max-width: 100%;
}
@media (max-width: 991px) {
  body > main .slider-wrapper {
    margin: 48px auto;
  }
}
@media (max-width: 768px) {
  body > main .slider-wrapper {
    margin: 48px auto 32px;
  }
}
body > main .slider-wrapper::before, body > main .slider-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 22px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1200px) {
  body > main .slider-wrapper::before, body > main .slider-wrapper::after {
    display: none;
  }
}
body > main .slider-wrapper::before {
  left: -4px;
  background: linear-gradient(to right, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0) 100%);
}
body > main .slider-wrapper::after {
  right: -4px;
  background: linear-gradient(to left, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0) 100%);
}
body > main .slider-wrapper.dark-blue::before {
  background: linear-gradient(to right, rgb(0, 79, 157) 20%, rgba(0, 79, 157, 0) 100%);
}
body > main .slider-wrapper.dark-blue::after {
  background: linear-gradient(to left, rgb(0, 79, 157) 20%, rgba(0, 79, 157, 0) 100%);
}
body > main .slider-wrapper.loaded .prev-button, body > main .slider-wrapper.loaded .next-button {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  body > main .slider-wrapper.loaded .prev-button, body > main .slider-wrapper.loaded .next-button {
    transform-origin: left;
    transform: scale(0.72);
  }
}
body > main .slider-wrapper .prev-button, body > main .slider-wrapper .next-button {
  cursor: pointer;
  width: 48px;
  height: 48px;
  box-shadow: 0px 0px 8px rgba(2, 2, 2, 0.05);
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
  z-index: 3;
  border-radius: 100%;
  border: 1px solid #dfdfdf;
}
body > main .slider-wrapper .prev-button:hover svg, body > main .slider-wrapper .next-button:hover svg {
  stroke: #f58220;
}
body > main .slider-wrapper .prev-button:disabled, body > main .slider-wrapper .next-button:disabled {
  pointer-events: none;
  box-shadow: 0px 0px 8px rgba(2, 2, 2, 0);
  opacity: 0.3;
}
body > main .slider-wrapper .prev-button svg, body > main .slider-wrapper .next-button svg {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.18s ease;
}
body > main .slider-wrapper .prev-button {
  left: -64px;
}
@media (max-width: 1200px) {
  body > main .slider-wrapper .prev-button {
    right: auto;
    top: auto;
    bottom: -72px;
    left: 0px;
  }
}
@media (max-width: 768px) {
  body > main .slider-wrapper .prev-button {
    bottom: -40px;
  }
}
body > main .slider-wrapper .next-button {
  right: -64px;
}
@media (max-width: 1200px) {
  body > main .slider-wrapper .next-button {
    right: auto;
    top: auto;
    bottom: -72px;
    left: 60px;
  }
}
@media (max-width: 768px) {
  body > main .slider-wrapper .next-button {
    left: 42px;
    bottom: -40px;
  }
}
body > main .slider-wrapper.dark-blue .prev-button, body > main .slider-wrapper.dark-blue .next-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
body > main .slider-wrapper.dark-blue .prev-button svg, body > main .slider-wrapper.dark-blue .next-button svg {
  stroke: #fff;
}
body > main .slider-wrapper.dark-blue .prev-button:hover, body > main .slider-wrapper.dark-blue .next-button:hover {
  background: rgb(255, 255, 255);
}
body > main .slider-wrapper.dark-blue .prev-button:hover svg, body > main .slider-wrapper.dark-blue .next-button:hover svg {
  stroke: #0088CE;
}
body > main .header-area {
  background: #1d4165;
  min-height: 520px;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
  min-height: 31.25vw;
}
@media (max-width: 1024px) {
  body > main .header-area {
    min-height: 410px;
  }
}
@media (max-width: 480px) {
  body > main .header-area {
    min-height: 340px;
  }
}
body > main .header-area h1, body > main .header-area h2, body > main .header-area h3 {
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 12px rgba(2, 2, 2, 0.12);
}
body > main .header-area h1 {
  margin-top: 0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 40px;
}
@media (max-width: 991px) {
  body > main .header-area h1 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  body > main .header-area h1 {
    font-size: 26px;
  }
}
body > main .header-area h2 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 991px) {
  body > main .header-area h2 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  body > main .header-area h2 {
    font-size: 18px;
  }
}
body > main .header-area h3 {
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
  width: 668px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  body > main .header-area h3 {
    font-size: 16px;
    width: 486px;
  }
}
@media (max-width: 480px) {
  body > main .header-area h3 {
    font-size: 14px;
  }
}
body > main .header-area .content-wrapper {
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.16s;
  transform: translateY(-18px);
}
body > main .header-area .background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
body > main .header-area .background.cover {
  background: rgba(2, 2, 2, 0.62);
  z-index: 2;
  opacity: 0.95;
}
body > main .header-area .background.cover::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(circle at 105% 110%, rgba(0, 150, 157, 0.44) 0%, rgba(0, 79, 157, 0) 60%), radial-gradient(circle at -15% 20%, rgba(0, 79, 157, 0.44) 0%, rgba(0, 79, 157, 0) 100%), radial-gradient(circle at 50% 50%, rgba(0, 79, 157, 0.4) 0%, rgba(0, 79, 157, 0) 100%);
}
body > main .header-area .background.image {
  filter: saturate(0);
  background: url("https://d2we78jv268onp.cloudfront.net/landing-pages/webinars/images/header/Webinars-Header-2.jpg") !important;
  background-position: center top !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.24s;
}
body > main .header-area .buttons {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
body > main .header-area .buttons .white-button {
  height: 40px;
  line-height: 38px;
  display: inline-block;
  border: 1px solid #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0 18px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  transition: 0.18s ease;
}
body > main .header-area .buttons .white-button:hover {
  background: #fff;
  color: #0088CE;
}
body > main .header-area .buttons .white-button:nth-of-type(1) {
  margin-right: 12px;
}
body > main section {
  margin: 0 !important;
  padding: 64px 16px;
  position: relative;
}
@media (min-width: 1600px) {
  body > main section {
    padding: 92px 16px;
  }
}
@media (max-width: 991px) {
  body > main section {
    padding: 48px 16px;
  }
}
body > main section h2, body > main section h3 {
  text-align: center;
}
body > main section h2 {
  font-weight: 800;
  color: #353535;
  font-family: "proxima-nova", sans-serif;
  font-size: 24px;
  line-height: 120%;
  margin: 16px 0;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  body > main section h2 {
    font-size: 32px;
    margin: 24px 0;
  }
}
body > main section h2 span.thin {
  font-weight: 300;
  font-size: inherit !important;
  color: inherit !important;
}
@media (max-width: 991px) {
  body > main section h2 {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  body > main section h2 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  body > main section h3 {
    font-size: 16px;
  }
}
body > main section.upcoming-webinars {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 40px;
}
body > main section.upcoming-webinars h3 {
  opacity: 0;
  animation: fadein 0.18s;
  animation-fill-mode: forwards;
}
body > main section.upcoming-webinars h3.no-webinars {
  color: #666;
  transform: translateY(100px);
}
@media (max-width: 768px) {
  body > main section.upcoming-webinars h3.no-webinars {
    transform: translateY(64px);
  }
}
body > main section.upcoming-webinars .inner-page {
  width: 1500px;
  max-width: 100%;
  min-height: 25vw;
  box-shadow: 0px 0px 12px rgba(2, 2, 2, 0.02);
  padding: 64px 16px 24px;
  margin: 0 auto;
  margin-top: -48px;
  background: #fff;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body > main section.upcoming-webinars .inner-page {
    padding-top: 40px;
  }
}
@media (max-width: 500px) {
  body > main section.upcoming-webinars .inner-page {
    padding-top: 24px;
  }
}
body > main section.upcoming-webinars .inner-page .content {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.16s;
}
body > main section.upcoming-webinars .inner-page:before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100vw;
  top: 20%;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 40%);
  pointer-events: none;
  left: 0;
}
@media (max-width: 1200px) {
  body > main section.upcoming-webinars .inner-page:before {
    top: 50%;
  }
}
body > main section.upcoming-webinars .slider-wrapper {
  margin: 64px auto 32px;
}
@media (max-width: 768px) {
  body > main section.upcoming-webinars .slider-wrapper {
    margin-top: 40px;
  }
}
body > main section.upcoming-webinars .webinars-slider {
  width: 1024px;
  max-width: 100%;
  position: relative;
}
body > main section.upcoming-webinars .webinars-slider .webinar {
  background: #f9f9f9;
  box-shadow: 0px 0px 8px rgba(2, 2, 2, 0.05);
  border: 1px solid #dfdfdf;
  padding: 24px;
  margin-right: 16px;
  width: 320px;
  max-width: 100%;
  transition: 0.24s ease;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
}
body > main section.upcoming-webinars .webinars-slider .webinar:last-of-type {
  margin-right: 0;
}
@media (max-width: 1024px) {
  body > main section.upcoming-webinars .webinars-slider .webinar {
    width: 31%;
    margin-right: 12px;
  }
}
@media (max-width: 991px) {
  body > main section.upcoming-webinars .webinars-slider .webinar {
    padding: 24px 16px 16px 16px;
  }
}
@media (max-width: 768px) {
  body > main section.upcoming-webinars .webinars-slider .webinar {
    width: 44%;
    padding: 24px 16px 16px 16px;
  }
}
@media (max-width: 600px) {
  body > main section.upcoming-webinars .webinars-slider .webinar {
    width: 60%;
  }
}
@media (max-width: 400px) {
  body > main section.upcoming-webinars .webinars-slider .webinar {
    width: calc(100% - 12.4vw);
  }
}
body > main section.upcoming-webinars .webinars-slider .webinar h4, body > main section.upcoming-webinars .webinars-slider .webinar h5, body > main section.upcoming-webinars .webinars-slider .webinar p {
  cursor: default;
}
body > main section.upcoming-webinars .webinars-slider .webinar .webinar-image img {
  display: block;
  margin: 0 auto;
  height: 160px;
  width: 160px;
  border-radius: 100%;
  user-select: none;
}
@media (max-width: 1024px) {
  body > main section.upcoming-webinars .webinars-slider .webinar .webinar-image img {
    width: 13vw;
    height: 13vw;
  }
}
@media (max-width: 768px) {
  body > main section.upcoming-webinars .webinars-slider .webinar .webinar-image img {
    width: 100px;
    height: 100px;
  }
}
body > main section.upcoming-webinars .webinars-slider .webinar .webinar-title h4 {
  text-align: center;
  font-size: 22px;
  letter-spacing: -0.2px;
  text-transform: none;
  line-height: 1.1;
  transform: translateY(3px);
}
body > main section.upcoming-webinars .webinars-slider .webinar .date-and-time h5.date {
  font-size: 18px;
  color: #0088ce;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
}
@media (max-width: 991px) {
  body > main section.upcoming-webinars .webinars-slider .webinar .date-and-time h5.date {
    font-size: 16px;
  }
}
body > main section.upcoming-webinars .webinars-slider .webinar .date-and-time p {
  text-align: center;
  font-weight: 700;
}
@media (max-width: 991px) {
  body > main section.upcoming-webinars .webinars-slider .webinar .date-and-time p {
    font-size: 14px;
  }
}
body > main section.upcoming-webinars .webinars-slider .webinar .buttons {
  display: flex;
  margin-top: 18px;
}
@media (max-width: 1024px) {
  body > main section.upcoming-webinars .webinars-slider .webinar .buttons {
    flex-direction: column-reverse;
  }
  body > main section.upcoming-webinars .webinars-slider .webinar .buttons a.blue-button {
    width: 100%;
    margin-right: 0 !important;
  }
  body > main section.upcoming-webinars .webinars-slider .webinar .buttons a.blue-button:last-of-type {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  body > main section.upcoming-webinars .webinars-slider .webinar .buttons a.blue-button {
    height: 32px !important;
    line-height: 32px !important;
    font-size: 12px !important;
  }
}
body > main section.jpp-experts {
  background: #004f9d;
  overflow-x: hidden;
}
body > main section.jpp-experts h2, body > main section.jpp-experts h3 {
  color: #fff;
}
body > main section.jpp-experts .expert-slider {
  width: 844px;
  max-width: 100%;
  outline: none;
  min-height: 450px;
}
@media (max-width: 768px) {
  body > main section.jpp-experts .expert-slider {
    min-height: 430px;
  }
}
@media (max-width: 1200px) {
  body > main section.jpp-experts .expert-slider {
    overflow: hidden;
  }
}
body > main section.jpp-experts .expert-slider .flickity-viewport, body > main section.jpp-experts .expert-slider .flickity-slider {
  position: relative;
  transition: height 0.4s ease;
}
@media (min-width: 991px) {
  body > main section.jpp-experts .expert-slider .flickity-viewport, body > main section.jpp-experts .expert-slider .flickity-slider {
    height: 420px;
  }
}
body > main section.jpp-experts .expert-slider .expert {
  padding: 24px;
  background: #fff;
  margin-right: 16px;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  width: calc(33.333% - 10.666px);
}
@media (max-width: 768px) {
  body > main section.jpp-experts .expert-slider .expert {
    padding: 16px;
    width: 30%;
  }
  body > main section.jpp-experts .expert-slider .expert h4 {
    font-size: 18px;
  }
  body > main section.jpp-experts .expert-slider .expert p {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  body > main section.jpp-experts .expert-slider .expert {
    width: 80%;
  }
}
@media (max-width: 400px) {
  body > main section.jpp-experts .expert-slider .expert {
    width: calc(100% - 25vw);
  }
}
body > main section.jpp-experts .expert-slider .expert img {
  width: 212px;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 1px 6px rgba(2, 2, 2, 0.08);
}
@media (max-width: 991px) {
  body > main section.jpp-experts .expert-slider .expert img {
    width: 100%;
    height: auto;
  }
}
body > main section.jpp-experts .expert-slider .expert h4, body > main section.jpp-experts .expert-slider .expert p {
  text-align: center;
  cursor: default;
}
body > main section.jpp-experts .expert-slider .expert h4 {
  font-size: 20px;
  color: #0088ce;
  margin-top: 22px;
}
body > main section.jpp-experts .expert-slider .expert p {
  color: #000;
  margin-bottom: 6px;
}
body > main section.jpp-experts .expert-slider .expert p:last-of-type {
  margin-bottom: 0;
}
body > main section.featured-webinar {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  position: relative;
  padding: 64px 16px 20px;
}
@media (min-width: 1600px) {
  body > main section.featured-webinar {
    padding: 92px 16px 20px;
  }
}
@media (max-width: 991px) {
  body > main section.featured-webinar {
    padding-bottom: 16px;
  }
}
body > main section.featured-webinar h2 + h3 {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  body > main section.featured-webinar h2 + h3 {
    padding-bottom: 0;
  }
}
body > main section.featured-webinar .vid-title {
  transform: translateY(44px);
}
body > main section.featured-webinar .vid-title h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: none !important;
  width: 928px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
  padding: 12px;
  border-radius: 24px;
  padding-bottom: 48px;
  color: #fff;
  background: #121212;
}
@media (max-width: 768px) {
  body > main section.featured-webinar .vid-title h3 {
    font-size: 18px;
    border-radius: 12px;
  }
}
body > main section.featured-webinar .featured-webinar-video {
  position: relative;
  width: 928px;
  max-width: 100%;
  margin: 64px auto 0;
  margin-top: 8px;
  border-radius: 24px;
  box-shadow: 0px 0px 24px rgba(2, 2, 2, 0.16);
}
body > main section.featured-webinar .featured-webinar-video::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%) translateY(-50%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.18) 100%);
  pointer-events: none;
}
body > main section.featured-webinar .featured-webinar-video .vid-wrap {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  z-index: 2;
  border-radius: 24px;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  overflow: hidden;
  background: #222;
}
@media (max-width: 768px) {
  body > main section.featured-webinar .featured-webinar-video .vid-wrap {
    border-radius: 12px;
  }
}
body > main section.featured-webinar .featured-webinar-video .vid-wrap .play-cover {
  background: linear-gradient(315deg, rgba(2, 2, 2, 0.6) 0%, rgba(2, 2, 2, 0.4) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  transition: 0.4s ease;
  opacity: 1;
  cursor: pointer;
  display: none;
}
body > main section.featured-webinar .featured-webinar-video .vid-wrap .play-cover svg {
  margin: 0 auto;
  width: 70px;
  height: 70px;
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(1);
  filter: drop-shadow(0px 0px 5px #555);
  transition: 0.18s ease;
  background: #00699e;
  border-radius: 100%;
}
@media (max-width: 768px) {
  body > main section.featured-webinar .featured-webinar-video .vid-wrap .play-cover svg {
    width: 14vw;
    height: 14vw;
  }
}
body > main section.featured-webinar .featured-webinar-video .vid-wrap .play-cover:hover svg {
  transform: translateX(-50%) translateY(-50%) scale(1.04);
}
body > main section.featured-webinar .featured-webinar-video .vid-wrap video, body > main section.featured-webinar .featured-webinar-video .vid-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
}
body > main section.featured-webinar .featured-webinar-video.playing .play-cover {
  opacity: 0;
  pointer-events: none;
}
body > main section.previous-webinars {
  position: relative;
  z-index: 2;
  padding: 20px 16px 64px;
  transition: height 0.6s ease;
  transition-delay: 0.6s;
}
@media (min-width: 1600px) {
  body > main section.previous-webinars {
    padding: 20px 16px 92px;
  }
}
@media (max-width: 991px) {
  body > main section.previous-webinars {
    padding-top: 16px;
  }
}
body > main section.previous-webinars h2, body > main section.previous-webinars h3 {
  color: #fff;
}
body > main section.previous-webinars .webinar-filters {
  display: flex;
  justify-content: center;
  max-height: 62px;
  transform: scale(0.92);
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  body > main section.previous-webinars .webinar-filters {
    width: 100%;
  }
}
@media (max-width: 768px) {
  body > main section.previous-webinars .webinar-filters {
    flex-direction: column;
    max-height: none;
  }
}
body > main section.previous-webinars .webinar-filters .filter, body > main section.previous-webinars .webinar-filters .searchbar-wrapper {
  width: 280px;
  margin-right: 32px;
  position: relative;
  align-self: flex-start;
  z-index: 2;
  border-radius: 4px;
}
@media (max-width: 991px) {
  body > main section.previous-webinars .webinar-filters .filter, body > main section.previous-webinars .webinar-filters .searchbar-wrapper {
    margin-right: 12px;
    width: calc(33.333% - 8px);
  }
}
@media (max-width: 768px) {
  body > main section.previous-webinars .webinar-filters .filter, body > main section.previous-webinars .webinar-filters .searchbar-wrapper {
    width: 100%;
    margin-right: 0 !important;
  }
}
body > main section.previous-webinars .webinar-filters .filter .video-search, body > main section.previous-webinars .webinar-filters .searchbar-wrapper .video-search {
  width: 100%;
}
body > main section.previous-webinars .webinar-filters .filter {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  height: 62px;
  transition: all 0.5s, height 0.6s ease;
  transition-timing-function: cubic-bezier(0.79, 0.13, 0.26, 0.91);
  box-shadow: 0px 4px 12px rgba(2, 2, 2, 0);
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  body > main section.previous-webinars .webinar-filters .filter {
    margin-bottom: 12px;
  }
}
body > main section.previous-webinars .webinar-filters .filter.active {
  height: auto;
  box-shadow: 0px 8px 32px rgba(2, 2, 2, 0.32);
  z-index: 5;
}
body > main section.previous-webinars .webinar-filters .filter.active .toggle svg {
  transform: rotate(-180deg) translateZ(0);
  -webkit-tap-highlight-color: transparent;
}
body > main section.previous-webinars .webinar-filters .filter .toggle {
  display: flex;
  padding-bottom: 17px;
  cursor: pointer;
}
body > main section.previous-webinars .webinar-filters .filter .toggle label {
  font-size: 20px;
  color: #0088ce;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
body > main section.previous-webinars .webinar-filters .filter .toggle svg {
  margin-left: 12px;
  transition: 0.24s ease;
  transform-origin: center center;
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  body > main section.previous-webinars .webinar-filters .filter .toggle svg {
    margin-left: auto;
  }
}
body > main section.previous-webinars .webinar-filters .filter .options {
  display: flex;
  flex-direction: column;
}
body > main section.previous-webinars .webinar-filters .filter .options div {
  margin-bottom: 12px;
}
body > main section.previous-webinars .webinar-filters .filter .options div input {
  margin-top: 0;
  top: 0;
  margin-right: 9px;
  cursor: pointer;
}
body > main section.previous-webinars .webinar-filters .filter .options div label {
  user-select: none;
  font-size: 16px;
  font-weight: 500;
  margin-left: 0;
  transform: translateY(-1px);
  display: inline-block;
  color: #000;
  cursor: pointer;
}
body > main section.previous-webinars .webinar-filters .filter .options div:last-of-type {
  margin-bottom: 0;
}
body > main section.previous-webinars .webinar-filters .searchbar-wrapper {
  margin-right: 0;
  position: relative;
}
@media (max-width: 768px) {
  body > main section.previous-webinars .webinar-filters .searchbar-wrapper {
    margin-right: 0;
  }
}
body > main section.previous-webinars .webinar-filters .searchbar-wrapper input {
  height: 62px;
  padding: 20px;
  padding-top: 26px;
  font-size: 16px;
  border: 0px solid transparent !important;
  position: relative;
  z-index: 1;
  background: #f9f9f9;
  border-radius: 4px;
}
body > main section.previous-webinars .webinar-filters .searchbar-wrapper input::placeholder {
  color: rgba(0, 0, 0, 0.48);
}
body > main section.previous-webinars .webinar-filters .searchbar-wrapper .submit {
  background: transparent;
  border-radius: 100%;
  border: 0px solid transparent;
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  padding: 0;
}
body > main section.previous-webinars .webinar-filters .searchbar-wrapper .submit:active, body > main section.previous-webinars .webinar-filters .searchbar-wrapper .submit:focus {
  box-shadow: 0px 0px 4px rgba(2, 2, 2, 0);
}
body > main section.previous-webinars .webinar-filters .searchbar-wrapper .submit svg {
  transform: scale(0.84) translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
body > main section.previous-webinars .previous-webinars-grid {
  margin: 40px auto 32px;
  min-height: 334px;
  width: 1420px;
  max-width: 100%;
  position: relative;
}
@media (max-width: 480px) {
  body > main section.previous-webinars .previous-webinars-grid {
    max-height: 238px;
  }
}
body > main section.previous-webinars .previous-webinars-grid:not(.flickity-enabled) {
  display: flex;
  flex-wrap: wrap;
  max-height: 754px;
  pointer-events: none;
}
body > main section.previous-webinars .previous-webinars-grid:not(.flickity-enabled) * {
  opacity: 0 !important;
}
@media (max-width: 1280px) {
  body > main section.previous-webinars .previous-webinars-grid:not(.flickity-enabled) {
    max-height: 1100px;
  }
}
body > main section.previous-webinars .previous-webinars-grid + .loader-placeholder {
  position: absolute;
  top: 48% !important;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
body > main section.previous-webinars .previous-webinars-grid.flickity-enabled + .loader-placeholder {
  display: none;
}
@media (max-width: 991px) {
  body > main section.previous-webinars .previous-webinars-grid {
    margin: 32px auto;
  }
}
body > main section.previous-webinars .previous-webinars-grid > .webinar {
  opacity: 0;
}
body > main section.previous-webinars .previous-webinars-grid .flickity-button {
  display: none !important;
  opacity: 0 !important;
}
body > main section.previous-webinars .previous-webinars-grid .flickity-viewport, body > main section.previous-webinars .previous-webinars-grid .flickity-slider {
  width: 100%;
  position: relative;
}
body > main section.previous-webinars .previous-webinars-grid .flickity-page-dots {
  display: flex;
  width: 100%;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 32px 0 12px;
  position: absolute;
  bottom: -80px;
}
@media (max-width: 480px) {
  body > main section.previous-webinars .previous-webinars-grid .flickity-page-dots {
    bottom: -64px;
  }
}
body > main section.previous-webinars .previous-webinars-grid .flickity-page-dots li.dot {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0);
  border: 1.5px solid #fff;
  margin-right: 10px;
  transition: 0.2s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  body > main section.previous-webinars .previous-webinars-grid .flickity-page-dots li.dot {
    width: 16px;
    height: 16px;
  }
}
body > main section.previous-webinars .previous-webinars-grid .flickity-page-dots li.dot:only-of-type {
  display: none;
}
body > main section.previous-webinars .previous-webinars-grid .flickity-page-dots li.dot:last-of-type {
  margin-right: 0;
}
body > main section.previous-webinars .previous-webinars-grid .flickity-page-dots li.dot:hover {
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
body > main section.previous-webinars .previous-webinars-grid .flickity-page-dots li.dot.is-selected {
  background: rgb(255, 255, 255) !important;
  cursor: default;
}
body > main section.previous-webinars .previous-webinars-grid .not-found {
  color: #fff;
  font-size: 16px;
  opacity: 0;
  animation: fadein 0.6s;
  animation-fill-mode: forwards;
}
body > main section.previous-webinars .previous-webinars-grid .previous-webinars-page, body > main section.previous-webinars .previous-webinars-grid .previous-videos-page {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.5s, opacity 1.2s, transform 1s;
  transition-timing-function: cubic-bezier(0.785, 0.165, 0.345, 0.945);
  pointer-events: none;
}
body > main section.previous-webinars .previous-webinars-grid .previous-webinars-page > .webinar, body > main section.previous-webinars .previous-webinars-grid .previous-videos-page > .webinar {
  opacity: 1;
}
body > main section.previous-webinars .previous-webinars-grid .previous-webinars-page.is-selected, body > main section.previous-webinars .previous-webinars-grid .previous-videos-page.is-selected {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
body > main section.previous-webinars .previous-webinars-grid .webinar {
  background: #fff;
  width: calc(50% - 5px);
  max-width: 100%;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.4s ease;
  box-shadow: 0px 0px 12px rgba(2, 2, 2, 0.18);
}
body > main section.previous-webinars .previous-webinars-grid .webinar:nth-of-type(2n) {
  margin-right: 0;
}
@media (min-width: 992px) {
  body > main section.previous-webinars .previous-webinars-grid .webinar {
    width: calc(33.333% - 10.666px);
    margin-right: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
  }
  body > main section.previous-webinars .previous-webinars-grid .webinar:nth-of-type(2n) {
    margin-right: 16px;
  }
  body > main section.previous-webinars .previous-webinars-grid .webinar:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  body > main section.previous-webinars .previous-webinars-grid .webinar {
    width: calc(25% - 12px);
  }
  body > main section.previous-webinars .previous-webinars-grid .webinar:nth-of-type(3n) {
    margin-right: 16px;
  }
  body > main section.previous-webinars .previous-webinars-grid .webinar:nth-of-type(4n) {
    margin-right: 0;
  }
}
body > main section.previous-webinars .previous-webinars-grid .webinar h4 {
  margin: 0;
  text-transform: none;
  font-size: 20px;
  font-weight: 700;
  cursor: default;
  text-align: center;
}
@media (max-width: 768px) {
  body > main section.previous-webinars .previous-webinars-grid .webinar h4 {
    font-size: 16px;
  }
}
body > main section.previous-webinars .previous-webinars-grid .webinar .webinar-title, body > main section.previous-webinars .previous-webinars-grid .webinar .buttons {
  padding: 20px 16px;
}
@media (max-width: 768px) {
  body > main section.previous-webinars .previous-webinars-grid .webinar .webinar-title, body > main section.previous-webinars .previous-webinars-grid .webinar .buttons {
    padding: 10px 16px;
  }
}
@media (max-width: 480px) {
  body > main section.previous-webinars .previous-webinars-grid .webinar .webinar-title, body > main section.previous-webinars .previous-webinars-grid .webinar .buttons {
    transform: scale(0.94);
  }
}
body > main section.previous-webinars .previous-webinars-grid .webinar .webinar-image a {
  position: relative;
  display: block;
  padding-bottom: 56.25%;
  overflow: hidden;
}
body > main section.previous-webinars .previous-webinars-grid .webinar .webinar-image a img {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
}
body > main section.previous-webinars .previous-webinars-grid .webinar .webinar-title {
  padding-bottom: 0 !important;
  pointer-events: none;
}
body > main section.previous-webinars .previous-webinars-grid .webinar .buttons {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-bottom: 28px;
}
@media (max-width: 768px) {
  body > main section.previous-webinars .previous-webinars-grid .webinar .buttons {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  body > main section.previous-webinars .previous-webinars-grid .webinar .buttons {
    display: flex;
    flex-direction: column-reverse;
  }
}
body > main section.previous-webinars .previous-webinars-grid .webinar .buttons a.blue-button {
  display: inline-block;
  margin-right: 12px;
  height: 34px !important;
  font-size: 12px !important;
  padding: 0 14px !important;
  line-height: 33px !important;
  max-width: 120px;
}
@media (max-width: 600px) {
  body > main section.previous-webinars .previous-webinars-grid .webinar .buttons a.blue-button {
    width: 100%;
    max-width: 100%;
    margin-right: 0 !important;
  }
  body > main section.previous-webinars .previous-webinars-grid .webinar .buttons a.blue-button:nth-of-type(2) {
    margin-bottom: 6px;
  }
}
body > main section.previous-webinars .previous-webinars-grid .webinar .buttons a.blue-button:last-of-type {
  margin-right: 0;
}
body > main section.previous-webinars .previous-webinars-grid .webinar .buttons a.blue-button.secondary, body > main section.previous-webinars .previous-webinars-grid .webinar .buttons a.blue-button.download-files {
  background: #fff !important;
  border: 1.5px solid #0088CE !important;
  color: #0088CE !important;
  line-height: 31px !important;
}
body > main section.previous-webinars .previous-webinars-grid .webinar .buttons a.blue-button.secondary:hover, body > main section.previous-webinars .previous-webinars-grid .webinar .buttons a.blue-button.download-files:hover {
  background: #0088CE !important;
  color: #FFF !important;
  border: 1.5px solid #0088CE !important;
}
body > main section.resources {
  min-height: 39.89vw;
  position: relative;
  background: linear-gradient(to right, #ededed 0%, #e9e9e9 50%, #eeeeee 100%);
}
@media (max-width: 1200px) {
  body > main section.resources {
    padding-top: 186px;
    min-height: calc(40vw + 186px);
  }
}
body > main section.resources .background-image {
  background: url("https://d2we78jv268onp.cloudfront.net/landing-pages/webinars/resources-bg.png");
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1200px) {
  body > main section.resources .background-image {
    top: 186px;
  }
}
body > main section.resources .side-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28vw;
  padding: 5vw;
  max-width: 100%;
  z-index: 1;
}
@media (max-width: 1200px) {
  body > main section.resources .side-card {
    width: calc(100% - 32px);
    max-width: 100%;
    padding: 64px 32px 32px;
    left: auto;
    top: 0;
    min-height: 186px;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  body > main section.resources .side-card {
    padding: 46px 32px 32px;
  }
}
@media (max-width: 500px) {
  body > main section.resources .side-card {
    padding: 40px 0;
  }
}
body > main section.resources .side-card h2 {
  margin-top: 0;
  font-size: 24px;
  text-align: left;
}
@media (max-width: 1200px) {
  body > main section.resources .side-card h2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  body > main section.resources .side-card h2 {
    width: 358px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 500px) {
  body > main section.resources .side-card h2 {
    font-size: 20px;
  }
}
body > main section.resources .side-card a.blue-button {
  display: inline-block;
  min-width: 140px;
}
@media (max-width: 1200px) {
  body > main section.resources .side-card a.blue-button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
body > main section.webinar-suggestions {
  padding-top: 100px;
  padding-bottom: 200px;
  background: #fff;
}
@media (max-width: 991px) {
  body > main section.webinar-suggestions {
    padding-bottom: 100px;
  }
}
body > main section.webinar-suggestions h2 {
  color: #0088ce;
  text-transform: none !important;
  font-size: 32px;
  font-weight: 800;
}
body > main section.webinar-suggestions .form-area {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
body > main section.webinar-suggestions .form-area form .hs_submit .actions .hs-button {
  text-decoration: none !important;
  transition: all 0.24s ease, height 0s;
  transition-delay: 0s;
  border-radius: 0 !important;
  box-sizing: border-box;
  color: #fff;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px !important;
  padding: 13px 25px !important;
  background-color: #0088ce !important;
  border: 1px solid #0088ce !important;
  font-weight: 800 !important;
  height: auto !important;
  line-height: normal !important;
}
body > main section.webinar-suggestions .form-area form .hs_submit .actions .hs-button:hover {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.24s ease, height 0s;
  transition-delay: 0s;
  background-color: #1e95d4 !important;
}
@media (min-width: 480px) {
  body > main section.webinar-suggestions .form-columns-2 > div {
    width: calc(50% - 16px) !important;
  }
}
body > main section.webinar-suggestions .form-columns-2 > div:nth-of-type(1) {
  transform: translateX(0);
}
body > main section.webinar-suggestions .form-columns-2 > div:nth-of-type(2) {
  transform: translateX(16px);
}
body > main section.webinar-suggestions div.input {
  margin-right: 0;
  box-shadow: none;
  border-radius: 0px;
}
body > main section.webinar-suggestions div.input input.hs-input {
  box-shadow: none;
  border-radius: 0;
  padding: 0 10px !important;
}
body > main section.webinar-suggestions div.input textarea {
  border-radius: 0;
  border: 1px solid #ededed;
  box-shadow: none;
  padding: 10px !important;
  min-height: 88px;
  background: #f5f5f5;
  color: #222;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 20px;
}
body > main section.webinar-suggestions .field {
  margin-bottom: 12px !important;
}
body > main section.webinar-suggestions .hs-error-msgs {
  position: absolute !important;
  width: 100%;
}
body > main section.webinar-suggestions .hs-error-msgs label {
  margin-top: 4px !important;
  transform: translateY(0) !important;
}
body > main section.webinar-suggestions .hs-main-font-element {
  display: none;
}
body > main section.webinar-suggestions .legal-consent-container {
  margin: 0 !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
}
body > main section.webinar-suggestions .legal-consent-container p {
  margin: 0 !important;
  font-size: 10px;
  width: 100%;
  padding: 0 !important;
  line-height: 1.2;
  opacity: 0.75;
}
body > main section.webinar-suggestions .legal-consent-container p a {
  font-size: inherit !important;
}
body > main section.webinar-suggestions .hs-button.primary {
  min-width: 180px;
  box-shadow: none;
  margin: 0 auto;
  display: block;
}
body > main section.video-view, body > main section.description-view {
  position: fixed;
  z-index: 999;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.76s ease;
  transition-delay: 0.2s;
}
body > main section.video-view.active, body > main section.description-view.active {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
body > main section.video-view.active .modal, body > main section.description-view.active .modal {
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.2s;
  opacity: 1;
}
body > main section.video-view a.close, body > main section.description-view a.close {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0px 0px 12px rgba(2, 2, 2, 0.12);
  position: absolute;
  z-index: 2;
  top: -5px;
  right: -40px;
  filter: drop-shadow(2px 4px 12px #222);
  opacity: 0.33;
  transition: 0.2s ease;
}
body > main section.video-view a.close:hover, body > main section.description-view a.close:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  body > main section.video-view a.close, body > main section.description-view a.close {
    top: -38px;
    right: -8px;
  }
}
body > main section.video-view .modal, body > main section.description-view .modal {
  top: 10vh;
  left: 50%;
  transform: translateX(-50%) translateY(5vh);
  width: 740px;
  margin: auto;
  max-width: calc(100% - 32px);
  max-height: calc(100% - 48px);
  position: absolute;
  z-index: 2;
  background: #fff;
  transition: 0.68s ease;
  transition-timing-function: cubic-bezier(0.785, 0.165, 0.345, 0.945);
  transition-delay: 0s;
  opacity: 0;
  box-shadow: 0px 2px 48px rgba(2, 2, 2, 0.4);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1400px) {
  body > main section.video-view .modal, body > main section.description-view .modal {
    top: 24px;
    width: 540px;
  }
  body > main section.video-view .modal h2, body > main section.description-view .modal h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 768px) {
  body > main section.video-view .modal, body > main section.description-view .modal {
    top: 16px;
    max-height: calc(100% - 32px);
  }
  body > main section.video-view .modal h2, body > main section.description-view .modal h2 {
    font-size: 24px !important;
  }
}
body > main section.video-view .modal .video-wrapper video, body > main section.video-view .modal .video-wrapper .video, body > main section.description-view .modal .video-wrapper video, body > main section.description-view .modal .video-wrapper .video {
  background: #222;
}
body > main section.video-view .modal .content-wrapper, body > main section.description-view .modal .content-wrapper {
  padding: 24px;
  overflow-y: scroll;
}
body > main section.video-view .modal .content-wrapper::-webkit-scrollbar, body > main section.description-view .modal .content-wrapper::-webkit-scrollbar {
  width: 8px;
}
body > main section.video-view .modal .content-wrapper::-webkit-scrollbar-track, body > main section.description-view .modal .content-wrapper::-webkit-scrollbar-track {
  background: #E8E8E8;
}
body > main section.video-view .modal .content-wrapper::-webkit-scrollbar-thumb, body > main section.description-view .modal .content-wrapper::-webkit-scrollbar-thumb {
  background: #0088ce;
}
body > main section.video-view .modal .content-wrapper::-webkit-scrollbar-thumb:hover, body > main section.description-view .modal .content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #0096E3;
}
body > main section.video-view .modal .content-wrapper h2, body > main section.description-view .modal .content-wrapper h2 {
  margin-top: 6px;
  margin-bottom: 18px;
  text-transform: none !important;
  text-align: left;
}
body > main section.video-view .modal .content-wrapper p, body > main section.description-view .modal .content-wrapper p {
  line-height: 1.4;
}
body > main section.video-view .modal .webinar-image, body > main section.description-view .modal .webinar-image {
  width: 100%;
}
body > main section.video-view .modal .button-area, body > main section.description-view .modal .button-area {
  background: #f9f9f9;
  padding: 24px;
  margin-bottom: -24px;
  margin-left: -24px;
  margin-top: 28px;
  width: calc(100% + 48px);
  display: flex;
}
body > main section.video-view .modal .button-area a.blue-button, body > main section.description-view .modal .button-area a.blue-button {
  height: 50px !important;
  line-height: 50px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
body > main section.video-view .modal .button-area a.blue-button svg, body > main section.description-view .modal .button-area a.blue-button svg {
  margin-right: 10px;
  transform: scale(0.84);
}
body > main section.video-view .modal .button-area .register, body > main section.description-view .modal .button-area .register {
  width: 300px;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}
body > main section.video-view .background, body > main section.description-view .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 2, 2, 0.5);
  z-index: 1;
}
body > main div.breadcrumbs {
  display: none;
}
body > main .webinars.header-area .background.image.videos {
  background: none !important;
  opacity: 0;
}
body > main .header-area .background.cover::after {
  background-image: radial-gradient(circle at 105% 110%, rgba(157, 51, 0, 0.44) 0%, rgba(0, 79, 157, 0) 60%), radial-gradient(circle at -15% 20%, rgba(157, 46, 0, 0.44) 0%, rgba(0, 79, 157, 0) 100%), radial-gradient(circle at 50% 50%, rgba(157, 138, 0, 0.4) 0%, rgba(0, 79, 157, 0) 100%) !important;
  filter: saturate(2) hue-rotate(10deg);
}
body > main section.recent-videos .recent-videos-slider {
  width: 1280px;
}
body > main section.recent-videos .recent-videos-slider .video {
  min-height: 0;
  padding: 0;
  border: 0;
  width: 400px;
  margin-right: 24px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #111;
}
body > main section.recent-videos .recent-videos-slider .video .inner-wrapper {
  width: 100%;
  padding-bottom: 56.25%;
  z-index: 3;
}
body > main section.recent-videos .recent-videos-slider .video .video-title, body > main section.recent-videos .recent-videos-slider .video .buttons {
  z-index: 2;
}
body > main section.recent-videos .recent-videos-slider .video .buttons {
  display: none;
}
body > main section.recent-videos .recent-videos-slider .video .video-title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 3;
  width: calc(100% - 24px);
}
body > main section.recent-videos .recent-videos-slider .video .video-title h4 {
  color: #fff;
  margin: 0;
  font-size: 20px;
  max-width: calc(100% - 24px);
  text-transform: none;
  text-shadow: 0px 0px 4px rgba(2, 2, 2, 0.6), 0px 0px 6px rgba(2, 2, 2, 0.12);
}
body > main section.recent-videos .recent-videos-slider .video:before {
  z-index: 2;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
body > main section.recent-videos .recent-videos-slider .video img.featured-image {
  display: block;
  position: absolute;
  z-index: 1;
}
body > main section.recent-videos .recent-videos-slider .video a.watch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
body > main .featured-previous-wrapper {
  background: linear-gradient(to bottom, #f9fcfe 0%, #ffcf87 33%, #201c14 50%, #000000 66%, #000000 100%);
}
body > main .featured-previous-wrapper::before {
  background-image: radial-gradient(circle at 38% 80%, rgba(245, 130, 32, 0.34902) 0%, rgba(0, 136, 206, 0) 82%), radial-gradient(circle at 20% 74%, rgba(206, 0, 0, 0.2) 0%, rgba(0, 136, 206, 0) 48%), radial-gradient(circle at 96% 108%, rgb(245, 130, 32) 0%, rgba(0, 136, 206, 0) 62%) !important;
  filter: saturate(1.4);
}
body > main .resources .side-card a.blue-button {
  background-color: #0088ce;
  color: #ffffff;
  transition: all 0.24s ease, height 0s;
  transition-delay: 0s;
}
body > main .resources .side-card a.blue-button:hover {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.16);
  background-color: #1e95d4 !important;
}
body > main section.previous-videos .previous-videos-grid {
  margin: 40px auto 32px;
  min-height: 334px;
  width: 1420px;
  max-width: 100%;
  position: relative;
  outline: none;
}
@media (max-width: 480px) {
  body > main section.previous-videos .previous-videos-grid {
    max-height: 238px;
  }
}
body > main section.previous-videos .previous-videos-grid:not(.flickity-enabled):not(.vue-grid) {
  display: flex;
  flex-wrap: wrap;
  max-height: 754px;
  pointer-events: none;
}
body > main section.previous-videos .previous-videos-grid:not(.flickity-enabled):not(.vue-grid) * {
  opacity: 0 !important;
}
@media (max-width: 1280px) {
  body > main section.previous-videos .previous-videos-grid:not(.flickity-enabled):not(.vue-grid) {
    max-height: 1100px;
  }
}
body > main section.previous-videos .previous-videos-grid.vue-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  pointer-events: auto;
  max-height: none;
  gap: 16px;
}
@media (max-width: 480px) {
  body > main section.previous-videos .previous-videos-grid.vue-grid {
    max-height: none;
    gap: 10px;
  }
}
body > main section.previous-videos .previous-videos-grid.vue-grid > .webinar {
  animation: fadeInScale 0.5s ease-out both;
  flex-grow: 0;
  margin: 0 !important;
  width: calc(25% - 12px);
}
@media (max-width: 1279px) {
  body > main section.previous-videos .previous-videos-grid.vue-grid > .webinar {
    width: calc(33.333% - 11px);
  }
}
@media (max-width: 991px) {
  body > main section.previous-videos .previous-videos-grid.vue-grid > .webinar {
    width: calc(50% - 8px);
  }
}
@media (max-width: 480px) {
  body > main section.previous-videos .previous-videos-grid.vue-grid > .webinar {
    width: 100%;
  }
}
body > main section.previous-videos .previous-videos-grid.vue-grid.slide-out-left, body > main section.previous-videos .previous-videos-grid.vue-grid.slide-out-right {
  overflow: hidden;
}
body > main section.previous-videos .previous-videos-grid.vue-grid.slide-out-left > .webinar {
  animation: slideOutLeft 0.3s ease-in both;
}
body > main section.previous-videos .previous-videos-grid.vue-grid.slide-out-right > .webinar {
  animation: slideOutRight 0.3s ease-in both;
}
body > main section.previous-videos .previous-videos-grid.vue-grid.slide-in-right > .webinar {
  animation: slideFromRight 0.5s ease-out both;
}
body > main section.previous-videos .previous-videos-grid.vue-grid.slide-in-left > .webinar {
  animation: slideFromLeft 0.5s ease-out both;
}
body > main section.previous-videos .previous-videos-grid.vue-grid + .loader-placeholder {
  display: none !important;
}
body > main section.previous-videos .previous-videos-grid + .loader-placeholder {
  position: absolute;
  top: 48% !important;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
body > main section.previous-videos .previous-videos-grid.flickity-enabled + .loader-placeholder {
  display: none;
}
@media (max-width: 991px) {
  body > main section.previous-videos .previous-videos-grid {
    margin: 32px auto;
  }
}
body > main section.previous-videos .previous-videos-grid > .webinar {
  opacity: 0;
}
body > main section.previous-videos .previous-videos-grid .flickity-button {
  display: none !important;
  opacity: 0 !important;
}
body > main section.previous-videos .previous-videos-grid .flickity-viewport, body > main section.previous-videos .previous-videos-grid .flickity-slider {
  width: 100%;
  position: relative;
}
body > main section.previous-videos .previous-videos-grid .flickity-page-dots {
  display: flex;
  width: 100%;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 32px 0 12px;
  position: absolute;
  bottom: -80px;
}
@media (max-width: 480px) {
  body > main section.previous-videos .previous-videos-grid .flickity-page-dots {
    bottom: -64px;
  }
}
body > main section.previous-videos .previous-videos-grid .flickity-page-dots li.dot {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0);
  border: 1.5px solid #fff;
  margin-right: 10px;
  transition: 0.2s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  body > main section.previous-videos .previous-videos-grid .flickity-page-dots li.dot {
    width: 16px;
    height: 16px;
  }
}
body > main section.previous-videos .previous-videos-grid .flickity-page-dots li.dot:only-of-type {
  display: none;
}
body > main section.previous-videos .previous-videos-grid .flickity-page-dots li.dot:last-of-type {
  margin-right: 0;
}
body > main section.previous-videos .previous-videos-grid .flickity-page-dots li.dot:hover {
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
body > main section.previous-videos .previous-videos-grid .flickity-page-dots li.dot.is-selected {
  background: rgb(255, 255, 255) !important;
  cursor: default;
}
body > main section.previous-videos .previous-videos-grid .not-found {
  color: #fff;
  font-size: 16px;
  opacity: 0;
  animation: fadein 0.6s;
  animation-fill-mode: forwards;
}
body > main section.previous-videos .previous-videos-grid .previous-videos-page {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.5s, opacity 1.2s, transform 1s;
  transition-timing-function: cubic-bezier(0.785, 0.165, 0.345, 0.945);
  pointer-events: none;
}
body > main section.previous-videos .previous-videos-grid .previous-videos-page > .webinar {
  opacity: 1;
}
body > main section.previous-videos .previous-videos-grid .previous-videos-page.is-selected {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
body > main section.previous-videos .previous-videos-grid .webinar {
  background: #111;
  background-size: cover;
  background-position: center;
  width: calc(50% - 5px);
  max-width: 100%;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.4s ease;
  box-shadow: 0px 0px 12px rgba(2, 2, 2, 0.18);
  position: relative;
}
body > main section.previous-videos .previous-videos-grid .webinar:nth-of-type(2n) {
  margin-right: 0;
}
@media (min-width: 992px) {
  body > main section.previous-videos .previous-videos-grid .webinar {
    width: calc(33.333% - 10.666px);
    margin-right: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
  }
  body > main section.previous-videos .previous-videos-grid .webinar:nth-of-type(2n) {
    margin-right: 16px;
  }
  body > main section.previous-videos .previous-videos-grid .webinar:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  body > main section.previous-videos .previous-videos-grid .webinar {
    width: calc(25% - 12px);
  }
  body > main section.previous-videos .previous-videos-grid .webinar:nth-of-type(3n) {
    margin-right: 16px;
  }
  body > main section.previous-videos .previous-videos-grid .webinar:nth-of-type(4n) {
    margin-right: 0;
  }
}
body > main section.previous-videos .previous-videos-grid .webinar h4 {
  margin: 0;
  text-transform: none;
  font-size: 18px;
  font-weight: 700;
  cursor: default;
  text-align: left;
  color: #fff;
  max-width: calc(100% - 52px);
  z-index: 3;
  text-shadow: 0px 0px 4px rgba(2, 2, 2, 0.6), 0px 0px 6px rgba(2, 2, 2, 0.12);
}
@media (max-width: 768px) {
  body > main section.previous-videos .previous-videos-grid .webinar h4 {
    font-size: 16px;
  }
}
body > main section.previous-videos .previous-videos-grid .webinar .webinar-title, body > main section.previous-videos .previous-videos-grid .webinar .buttons {
  padding: 20px 16px;
  z-index: 3;
  position: absolute;
  bottom: 16px;
  left: 20px;
}
@media (max-width: 768px) {
  body > main section.previous-videos .previous-videos-grid .webinar .webinar-title, body > main section.previous-videos .previous-videos-grid .webinar .buttons {
    padding: 10px 16px;
  }
}
@media (max-width: 480px) {
  body > main section.previous-videos .previous-videos-grid .webinar .webinar-title, body > main section.previous-videos .previous-videos-grid .webinar .buttons {
    transform: scale(0.94);
  }
}
body > main section.previous-videos .previous-videos-grid .webinar .webinar-image {
  position: relative;
}
body > main section.previous-videos .previous-videos-grid .webinar .webinar-image:before {
  z-index: 2;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
}
body > main section.previous-videos .previous-videos-grid .webinar .webinar-image a {
  position: relative;
  display: block;
  padding-bottom: 56.25%;
  overflow: hidden;
}
body > main section.previous-videos .previous-videos-grid .webinar .webinar-image a img {
  position: absolute;
  min-width: 102%;
  height: 102%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
body > main section.previous-videos .previous-videos-grid .webinar .webinar-title {
  padding: 0 !important;
  pointer-events: none;
}
body > main section.previous-videos .previous-videos-grid .webinar .buttons {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-bottom: 28px;
  display: none;
}
@media (max-width: 768px) {
  body > main section.previous-videos .previous-videos-grid .webinar .buttons {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  body > main section.previous-videos .previous-videos-grid .webinar .buttons {
    display: flex;
    flex-direction: column-reverse;
  }
}
body > main section.previous-videos .previous-videos-grid .webinar .buttons a.blue-button {
  display: inline-block;
  margin-right: 12px;
  height: 34px !important;
  font-size: 12px !important;
  padding: 0 14px !important;
  line-height: 33px !important;
  max-width: 120px;
}
@media (max-width: 600px) {
  body > main section.previous-videos .previous-videos-grid .webinar .buttons a.blue-button {
    width: 100%;
    max-width: 100%;
    margin-right: 0 !important;
  }
  body > main section.previous-videos .previous-videos-grid .webinar .buttons a.blue-button:nth-of-type(2) {
    margin-bottom: 6px;
  }
}
body > main section.previous-videos .previous-videos-grid .webinar .buttons a.blue-button:last-of-type {
  margin-right: 0;
}
body > main section.previous-videos .previous-videos-grid .webinar .buttons a.blue-button.secondary, body > main section.previous-videos .previous-videos-grid .webinar .buttons a.blue-button.download-files {
  background: #fff !important;
  border: 1.5px solid #0088CE !important;
  color: #0088CE !important;
  line-height: 31px !important;
}
body > main section.previous-videos .previous-videos-grid .webinar .buttons a.blue-button.secondary:hover, body > main section.previous-videos .previous-videos-grid .webinar .buttons a.blue-button.download-files:hover {
  background: #0088CE !important;
  color: #FFF !important;
  border: 1.5px solid #0088CE !important;
}
body > main section.previous-videos .video-pagination {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0;
  margin: 32px 0 12px;
}
body > main section.previous-videos .video-pagination .dot {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0);
  border: 1.5px solid #fff;
  margin-right: 10px;
  transition: 0.2s ease;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 991px) {
  body > main section.previous-videos .video-pagination .dot {
    width: 16px;
    height: 16px;
  }
}
body > main section.previous-videos .video-pagination .dot:only-of-type {
  display: none;
}
body > main section.previous-videos .video-pagination .dot:last-of-type {
  margin-right: 0;
}
body > main section.previous-videos .video-pagination .dot:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}
body > main section.previous-videos .video-pagination .dot.selected {
  background: #fff !important;
  cursor: default;
}

.featured-previous-wrapper {
  background: linear-gradient(to bottom, #f9fcfe 0%, #87d7ff 33%, #4fb1e4 50%, #1f92cf 66%, #007cbb 100%);
  overflow: hidden;
  position: relative;
}
.featured-previous-wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 130vw;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 136, 206, 0.66) 0%, rgba(0, 136, 206, 0) 40%), radial-gradient(circle at 20% 74%, rgba(206, 0, 193, 0.2) 0%, rgba(0, 136, 206, 0) 48%), radial-gradient(circle at 96% 108%, rgba(49, 233, 181, 0.46) 0%, rgba(0, 136, 206, 0) 62%);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  filter: brightness(0.8) contrast(0.72) saturate(0.8);
}
.featured-previous-wrapper section {
  z-index: 2;
  position: relative;
}

.loader-placeholder {
  left: 50% !important;
  position: absolute !important;
  top: 50% !important;
  width: 44px;
  z-index: 9000 !important;
  transform: translateX(-22px) translateY(-44px);
}
.loader-placeholder .loader {
  position: relative;
  margin: 0px auto;
  width: 40px;
  height: 40px;
}
.loader-placeholder .loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.loader-placeholder .loader .circular-loader {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}
.loader-placeholder .loader .loader-path {
  stroke-dasharray: 150, 200;
  stroke-dashoffset: -10;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}
.loader-placeholder .loader .loader-path.white {
  animation: dash 1.5s ease-in-out infinite, white 6s ease-in-out infinite !important;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@keyframes color {
  0% {
    stroke: #0088ce;
  }
  40% {
    stroke: #0088ce;
  }
  66% {
    stroke: #0088ce;
  }
  80%, 90% {
    stroke: #0088ce;
  }
}
@keyframes white {
  0% {
    stroke: #FFF;
  }
  40% {
    stroke: #FFF;
  }
  66% {
    stroke: #FFF;
  }
  80%, 90% {
    stroke: #FFF;
  }
}

/*# sourceMappingURL=video-list.css.map */
