:root {
  --size: 500;
}

@media screen and (min-height: 480px) {
  :root {
    --size: 900;
  }
}
@media screen and (min-height: 768px) {
  :root {
    --size: 900;
  }
}
.webinars {
  padding-bottom: calc(120 / var(--size) * 100 * var(--vh, 1vh));
}

.webinar-top {
  margin-bottom: calc(96 / var(--size) * 100 * var(--vh, 1vh));
}
.webinar-top .breadcrumbs {
  padding-top: 0;
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .webinar-top .blog-hero__content {
    padding-top: calc(200 / var(--size) * 100 * var(--vh, 1vh));
    padding-bottom: calc(80 / var(--size) * 100 * var(--vh, 1vh));
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .webinar-top .blog-hero__content {
    padding-top: calc(180 / var(--size) * 100 * var(--vh, 1vh));
    padding-bottom: calc(60 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.webinar-top .blog-detail__head {
  margin-top: calc(32 / var(--size) * 100 * var(--vh, 1vh));
  padding: calc(48 / var(--size) * 100 * var(--vh, 1vh)) calc(56 / var(--size) * 100 * var(--vh, 1vh));
  background: #000;
  border: 2px solid #fff;
  border-radius: calc(28 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .webinar-top .blog-detail__head {
    padding: calc(32 / var(--size) * 100 * var(--vh, 1vh)) calc(24 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .webinar-top .blog-detail__head {
    padding: calc(24 / var(--size) * 100 * var(--vh, 1vh)) calc(18 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.webinar-top__meta {
  display: flex;
  align-items: center;
  gap: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  margin: calc(24 / var(--size) * 100 * var(--vh, 1vh)) 0 calc(28 / var(--size) * 100 * var(--vh, 1vh));
  font-family: Roboto;
  font-size: calc(18 / var(--size) * 100 * var(--vh, 1vh));
  color: #b7b7b7;
}
.webinar-top__tags {
  display: inline-flex;
  gap: calc(12 / var(--size) * 100 * var(--vh, 1vh));
}
.webinar-top__tag {
  color: #80d207;
}
.webinar-top__title {
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(80 / var(--size) * 100 * var(--vh, 1vh));
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: calc(32 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .webinar-top__title {
    font-size: calc(48 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .webinar-top__title {
    font-size: calc(34 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.webinar-top__desc {
  font-family: Roboto;
  font-weight: 300;
  font-size: calc(22 / var(--size) * 100 * var(--vh, 1vh));
  line-height: 1.6;
  color: #fff;
  max-width: 70%;
  margin-bottom: calc(48 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .webinar-top__desc {
    max-width: 100%;
    font-size: calc(18 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.webinar-top__bottom {
  display: flex;
  align-items: center;
  gap: calc(40 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 480px) {
  .webinar-top__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.webinar-top__read {
  font-family: Roboto;
  font-size: calc(18 / var(--size) * 100 * var(--vh, 1vh));
  color: #b7b7b7;
}

.slides {
  margin-bottom: calc(120 / var(--size) * 100 * var(--vh, 1vh));
}

.slides-marquee {
  overflow: hidden;
  width: 100%;
}

.slides-list {
  display: flex;
  gap: calc(30 / var(--size) * 100 * var(--vh, 1vh));
  align-items: center;
  animation: slides-marquee 60s linear infinite;
  width: max-content;
}

.slides__slide {
  flex-shrink: 0;
  margin-right: calc(30 / var(--size) * 100 * var(--vh, 1vh));
}

.slides__image {
  max-height: calc(326 / var(--size) * 100 * var(--vh, 1vh));
  max-width: 100vw;
  object-fit: contain;
}
@media (max-width: 480px) {
  .slides__image {
    max-height: calc(160 / var(--size) * 100 * var(--vh, 1vh));
  }
}

.slides__bottom {
  margin-top: calc(64 / var(--size) * 100 * var(--vh, 1vh));
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.slides__button {
  padding: calc(14 / var(--size) * 100 * var(--vh, 1vh)) calc(32 / var(--size) * 100 * var(--vh, 1vh));
  color: white;
  border-radius: calc(100 / var(--size) * 100 * var(--vh, 1vh));
  background-color: #80d207;
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(30 / var(--size) * 100 * var(--vh, 1vh));
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .slides__button {
    font-size: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.slides__button:hover {
  background: rgb(99, 192, 0);
}

@keyframes slides-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.speakers {
  margin-bottom: calc(120 / var(--size) * 100 * var(--vh, 1vh));
}
.speakers__title {
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(96 / var(--size) * 100 * var(--vh, 1vh));
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: calc(56 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .speakers__title {
    font-size: calc(48 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .speakers__title {
    font-size: calc(36 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.speakers__card {
  display: flex;
  padding: calc(64 / var(--size) * 100 * var(--vh, 1vh));
  gap: calc(66 / var(--size) * 100 * var(--vh, 1vh));
  align-items: stretch;
  height: calc(480 / var(--size) * 100 * var(--vh, 1vh));
  overflow: hidden;
  color: white;
}
.speakers__card .card__left {
  flex: 1 1 auto;
}
.speakers__card .card__left img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 480px) {
  .speakers__card .card__left {
    width: 100%;
    min-height: calc(280 / var(--size) * 100 * var(--vh, 1vh));
    padding: 0;
  }
}
.speakers__card .card__right {
  flex: 0 0 66%;
}
.speakers__card .card__right .card__title {
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(40 / var(--size) * 100 * var(--vh, 1vh));
  text-transform: uppercase;
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .speakers__card .card__right .card__title {
    font-size: calc(36 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.speakers__card .card__right .card__subtitle {
  margin-top: calc(14 / var(--size) * 100 * var(--vh, 1vh));
  color: #80d207;
  font-family: Roboto;
  font-size: calc(28 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .speakers__card .card__right .card__subtitle {
    font-size: calc(22 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.speakers__card .card__right .card__skills {
  margin-top: calc(45 / var(--size) * 100 * var(--vh, 1vh));
  font-family: Roboto;
  font-size: calc(24 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .speakers__card .card__right .card__skills {
    font-size: calc(18 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.speakers__card .card__right .card__skill {
  display: flex;
  align-items: flex-start;
}
.speakers__card .card__right .card__skill:before {
  content: "";
  display: block;
  flex: 0 0 calc(14 / var(--size) * 100 * var(--vh, 1vh));
  width: calc(14 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(14 / var(--size) * 100 * var(--vh, 1vh));
  border-radius: 50%;
  border: 1px solid #80d207;
  transform: translate(0, 50%);
  margin-right: calc(20 / var(--size) * 100 * var(--vh, 1vh));
}
.speakers__card .card__right .card__skill:not(:last-child) {
  margin-bottom: calc(33 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .speakers__card .card__right .card__skill:not(:last-child) {
    margin-bottom: calc(22 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .speakers__card .card__right {
    flex: 0 0 62%;
  }
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .speakers__card {
    padding: calc(40 / var(--size) * 100 * var(--vh, 1vh)) calc(20 / var(--size) * 100 * var(--vh, 1vh));
    gap: calc(30 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .speakers__card {
    flex-direction: column;
  }
}

.benefits {
  margin-bottom: calc(120 / var(--size) * 100 * var(--vh, 1vh));
}
.benefits__title {
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(96 / var(--size) * 100 * var(--vh, 1vh));
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: calc(56 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .benefits__title {
    font-size: calc(48 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .benefits__title {
    font-size: calc(36 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.benefits__list {
  margin-top: calc(80 / var(--size) * 100 * var(--vh, 1vh));
}
.benefits__item {
  padding: calc(32 / var(--size) * 100 * var(--vh, 1vh)) 0;
  border-top: 1px solid rgb(255, 255, 255);
}
.benefits__item:last-child {
  border-bottom: 1px solid rgb(255, 255, 255);
}
.benefits__item-title {
  color: #80d207;
  font-family: Oswald;
  font-size: calc(36 / var(--size) * 100 * var(--vh, 1vh));
  text-transform: uppercase;
}
.benefits__item-text {
  margin-top: calc(28 / var(--size) * 100 * var(--vh, 1vh));
  color: #fff;
  font-family: Roboto;
  font-size: calc(28 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(42 / var(--size) * 100 * var(--vh, 1vh));
  width: 75%;
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .benefits__item-text {
    font-size: calc(24 / var(--size) * 100 * var(--vh, 1vh));
    line-height: calc(40 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .benefits__item-text {
    width: 100%;
  }
}

.audience {
  margin-bottom: calc(120 / var(--size) * 100 * var(--vh, 1vh));
}
.audience__title {
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(96 / var(--size) * 100 * var(--vh, 1vh));
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: calc(56 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .audience__title {
    font-size: calc(48 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .audience__title {
    font-size: calc(36 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.audience__card {
  padding: calc(60 / var(--size) * 100 * var(--vh, 1vh)) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.audience__card h3 {
  margin-top: calc(56 / var(--size) * 100 * var(--vh, 1vh));
  color: white;
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(96 / var(--size) * 100 * var(--vh, 1vh));
  text-transform: uppercase;
  line-height: 130%;
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .audience__card svg {
    width: calc(260 / var(--size) * 100 * var(--vh, 1vh));
    height: calc(260 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .audience__card {
    padding: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  }
}

.who {
  position: relative;
}
.who__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  margin-bottom: calc(12 / var(--size) * 100 * var(--vh, 1vh));
}
.who__title h2 {
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(64 / var(--size) * 100 * var(--vh, 1vh));
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .who__title h2 {
    font-size: calc(40 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.who__write {
  display: inline-flex;
  flex-shrink: 0;
}
.who__subtitle {
  display: inline-block;
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(28 / var(--size) * 100 * var(--vh, 1vh));
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: calc(10 / var(--size) * 100 * var(--vh, 1vh));
  margin-bottom: calc(48 / var(--size) * 100 * var(--vh, 1vh));
  transition: color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .who__subtitle:hover {
    color: #80d207;
  }
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .who__subtitle {
    font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  }
}

[data-modal=webinarRecord] .modal__panel {
  max-width: calc(700 / var(--size) * 100 * var(--vh, 1vh));
  max-height: 92vh;
  overflow-y: auto;
  padding: calc(32 / var(--size) * 100 * var(--vh, 1vh)) calc(42 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 480px) {
  [data-modal=webinarRecord] .modal__panel {
    padding: calc(24 / var(--size) * 100 * var(--vh, 1vh)) calc(20 / var(--size) * 100 * var(--vh, 1vh));
  }
}

[data-modal=webinarRecord] .modal__title {
  margin-bottom: calc(20 / var(--size) * 100 * var(--vh, 1vh));
}

.webinar-form {
  display: flex;
  flex-direction: column;
  gap: calc(36 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 480px) {
  .webinar-form {
    gap: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.webinar-form .form-input {
  font-size: calc(22 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(30 / var(--size) * 100 * var(--vh, 1vh));
  padding: calc(8 / var(--size) * 100 * var(--vh, 1vh)) 0;
}

.webinar-form__checkboxes {
  display: flex;
  flex-direction: column;
  gap: calc(12 / var(--size) * 100 * var(--vh, 1vh));
}

.webinar-form__submit {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .webinar-form__submit {
    justify-content: center;
  }
}
.webinar-form__submit .button--round {
  text-transform: uppercase;
  width: calc(90 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(90 / var(--size) * 100 * var(--vh, 1vh));
  min-width: calc(90 / var(--size) * 100 * var(--vh, 1vh));
  font-size: calc(14 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 480px) {
  .webinar-form__submit .button--round {
    width: 100%;
    height: auto;
    border-radius: calc(50 / var(--size) * 100 * var(--vh, 1vh));
    padding: calc(16 / var(--size) * 100 * var(--vh, 1vh)) calc(32 / var(--size) * 100 * var(--vh, 1vh));
    font-size: calc(18 / var(--size) * 100 * var(--vh, 1vh));
  }
}

[data-modal=webinarThanks] {
  padding: 0;
}

.webinar-thanks {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background: rgba(20, 20, 20, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(53 / var(--size) * 100 * var(--vh, 1vh)) calc(72 / var(--size) * 100 * var(--vh, 1vh));
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .webinar-thanks {
    padding: calc(30 / var(--size) * 100 * var(--vh, 1vh)) calc(24 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.webinar-thanks__title {
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(40 / var(--size) * 100 * var(--vh, 1vh));
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: calc(32 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 480px) {
  .webinar-thanks__title {
    font-size: calc(28 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.webinar-thanks__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  margin-bottom: calc(48 / var(--size) * 100 * var(--vh, 1vh));
}
.webinar-thanks__link {
  background: none;
  border: none;
  padding: 0;
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: calc(6 / var(--size) * 100 * var(--vh, 1vh));
  cursor: pointer;
}
@media (max-width: 480px) {
  .webinar-thanks__link {
    font-size: calc(15 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (hover: hover) and (pointer: fine) {
  .webinar-thanks__link:hover {
    color: #80d207;
  }
}
.webinar-thanks__logo {
  height: calc(48 / var(--size) * 100 * var(--vh, 1vh));
  width: auto;
}

.who-tags .swiper-wrapper {
  align-items: stretch;
}

.who-tags .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.who-tags .card {
  flex: 1;
}