:root {
  --black: #000000;
  --white: #ffffff;
  --white-but-darker: #f6f7fb;
  --ghost-white-darker: #eff3fe;
  --slightly-dark-gray: #3d3d3d;
  --dark-gray: #1f1f1f;
  --persian-blue: #003aba;
  --medium-light-blue: #dfeafc;
  --gray: #757575;
  --lighter-blue: #0640bf;
  --lavander: #dadfeb;
  --powder-blue: #9faac5;
  --yinmn-blue: #4a5f93;
  --ghost-white: #f6f7fb;
  --slightly-dark-gray: #3d3d3d;
  --selective-yellow: #ffb200;
  --light-gray: #cecece;
  --delft-blue: #344067;

  --light-bg: linear-gradient(to right, #ffffff, #dee0f5);
  --dark-bg: linear-gradient(82.33deg, #303c4a 27.33%, #000315 88.68%);
  --blue-gradient-conference: linear-gradient(to right, #275fdc, #003aba);
  --white-linear-gradient: linear-gradient(
    to bottom,
    #ffffff00 0%,
    #fffffff6 50%,
    #ffffff 100%
  );
  --white-linear-gradient-to-right: linear-gradient(
    to right,
    #ffffff00 0%,
    #fffffff6 50%,
    #ffffff 100%
  );
}
* {
  font-family: "Poppins", sans-serif;
}
body {
  background-color: var(--white-but-darker);
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
@media (min-width: 768px) {
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .section-margin {
    margin: 3.75rem 0;
  }
}
@media (min-width: 992px) {
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .intro-section {
    margin-top: 3.75rem;
  }
  .section-margin {
    margin: 7.5rem 0;
  }
}
@media (min-width: 1200px) {
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
}
@media (min-width: 1400px) {
  .w-xxl-25 {
    width: 25% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
}
.h-fit-content {
  height: fit-content !important;
}
.section-margin {
  margin: 3rem 0;
}
.intro-section {
  margin-top: 1.25rem;
}
.container__content-wrapper {
  padding: 2.5rem 5.25rem 2.5rem 3.5rem;
  background-color: var(--white);
  border-radius: 1.5rem;
  width: 25.25rem;
}
.container__content-wrapper h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 108%;
  color: var(--black);
}
.container__content-wrapper p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
}
.container__video {
  width: 95vw;
  height: 30.25rem;
  border-radius: 1.5rem;
}
.container__video .container {
  bottom: 4.5rem;
  transform: translateX(-50%);
}
.counter-wrapper__item h3 {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 126%;
  color: var(--black);
}
.counter-wrapper__item p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
}
.container__nysora-360-section {
  border-radius: 0.75rem;
  background: linear-gradient(to right, #ffffff, #dee0f5);
}
.nysora-360-section__left-block {
  padding: 3rem 2rem 0 2rem;
}
.nysora-360-section__left-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--yinmn-blue);
}
.nysora-360-section__left-block h1 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 100%;
  color: var(--delft-blue);
  margin-top: 1.25rem;
}
.nysora-360-section__left-block h1 span {
  font-weight: 600;
}
.nysora-360-section__right-block {
  transform: skewX(-12deg);
}
.nysora-360-section__right-block img {
  width: 100%;
  height: auto;
  object-position: top;
  object-fit: cover;
  display: block;
  margin-top: 5%;
}
.left-block__link {
  margin-top: 0.75rem;
  gap: 0.75rem;
}
.left-block__link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--yinmn-blue);
  border-radius: 0.5rem;
  gap: 0.75rem;
  overflow: hidden;
  text-decoration: none;
}
.left-block__link a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-gradient-conference);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: inherit;
  z-index: 0;
}
.left-block__link a:hover::before {
  opacity: 1;
}
.left-block__link a span,
.left-block__link a svg {
  position: relative;
  z-index: 1;
}
.left-block__link a svg {
  fill: currentColor;
}
.left-block__link a:hover {
  color: var(--white);
}
.link__line {
  height: 1px;
  background-color: var(--yinmn-blue);
}
.yt-content-wrapper__row {
  padding-top: 4.5rem;
}
.yt-content-wrapper__badge,
.left-block__badge,
.podcast-content-wrapper__badge {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--light-gray);
  border-radius: 3rem;
  width: fit-content;
  margin-bottom: 1.25rem;
}
.container__yt-content-wrapper h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
  color: var(--black);
}
.left-block__content-wrapper {
  border-radius: 1.5rem;
  background-color: var(--white);
  padding: 2rem 1.75rem;
  z-index: 1;
}
.left-block__content-wrapper p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--slightly-dark-gray);
}
.content-wrapper__logo-link-wrapper {
  height: 2rem;
}
.content-wrapper__logo-link-wrapper img {
  width: 4.5rem;
  height: 4.5rem;
  padding: 0.25rem;
  background-color: var(--white);
  top: -3.3rem;
}
.logo-link-wrapper__link {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 100%;
  color: var(--powder-blue);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  width: fit-content;
  height: fit-content;
  z-index: 2;
}
.logo-link-wrapper__link:hover {
  color: var(--white);
  background: var(--blue-gradient-conference);
}
.logo-link-wrapper__link:hover svg path {
  fill: var(--white);
}
.app-about__horizontal-separator {
  height: 1px;
  background-color: var(--ghost-white-darker);
}
.content-wrapper__heading {
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: var(--black);
  gap: 0.5rem;
}
.heading__check-mark {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.5rem;
  background-color: var(--persian-blue);
}
.heading__check-mark img {
  width: 0.75rem;
  height: 0.5rem;
}
.content-wrapper__stats {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 100%;
  color: var(--slightly-dark-gray);
}
.content-wrapper__stats p {
  font-weight: 600;
}
.content-wrapper__stats ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content-wrapper__stats ul li {
  position: relative;
  padding-left: 1.5em;
}
.content-wrapper__stats ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  text-align: center;
}
.mb-28 {
  margin-bottom: 1.75rem;
}
.newsletter-section .container {
  padding: 5rem 4.25rem;
  border-radius: 1.25rem;
  background-color: var(--white);
}
.newsletter-section .container h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.newsletter-section .container p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 113%;
  color: var(--black);
  margin-bottom: 2.25rem;
}
.newsletter-section .container a {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 113%;
  color: var(--white);
  background-color: var(--persian-blue);
  border-radius: 0.5rem;
  padding: 1.5rem 2.25rem;
}
.newsletter-section .container a:hover {
  background-color: var(--black);
}
.newsletter-section .container a svg {
  width: 0.75rem;
}
.left-block__badge {
  margin-bottom: 1.5rem;
}
.container__left-block h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.container__left-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.left-block__social-media-links {
  gap: 0.75rem;
}
.left-block__social-media-links a {
  padding: 0.5rem;
  background-color: var(--persian-blue);
  border-radius: 0.5rem;
}
.left-block__social-media-links a:hover {
  background-color: var(--black);
}
.podcast-section .container {
  border-radius: 2rem;
  background-color: var(--white);
}
.container__podcast-bg {
  z-index: 0;
  transform: translateY(-50%);
}
.container__white-overlay {
  z-index: 1;
  transform: translateX(-50%);
  width: 16rem;
  background: var(--white-linear-gradient-to-right);
}
.container__podcast-content-wrapper {
  z-index: 2;
  padding: 4.75rem;
}
.podcast-content-wrapper__badge {
  margin-bottom: 2rem;
}
.container__podcast-content-wrapper h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.container__podcast-content-wrapper p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 3rem;
}
@media (max-width: 575.98px) {
  .nysora-360-section__right-block {
    height: 12rem;
  }
}
@media (min-width: 576px) {
  .content-wrapper__logo-link-wrapper {
    height: 3rem;
  }
}
@media (max-width: 767.98px) {
  .nysora-360-section__right-block {
    height: 27.188rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .nysora-360-section__right-block {
    height: 25.188rem;
  }
}
@media (min-width: 768px) {
  .nysora-360-section__left-block {
    padding: 3rem 4.5rem 0 4.5rem;
  }
  .left-block__content-wrapper p {
    font-size: 1rem;
  }
  .left-block__content-wrapper {
    top: 3rem;
    padding: 1.25rem 2.75rem 2.5rem 2.75rem;
  }
  .content-wrapper__logo-link-wrapper {
    height: 3rem;
  }
  .content-wrapper__logo-link-wrapper img {
    width: 6.75rem;
    height: 6.75rem;
    top: -4.5rem;
  }
  .content-wrapper__heading {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .container__nysora-360-section {
    height: 28rem;
  }
  .nysora-360-section__left-block {
    padding: 7rem 4.5rem;
  }
  .nysora-360-section__left-block h1 {
    font-size: 3rem;
    margin-top: 1.5rem;
  }
  .nysora-360-section__right-block {
  }
  .nysora-360-section__right-block img {
    width: 150%;
    height: 150%;
  }
  .nysora-360-section__right-block img {
    height: 100%;
  }
  .left-block__content-wrapper {
    width: 27rem;
    left: 4.75rem;
    bottom: -3rem;
    transform: initial;
    top: initial;
  }
}
