* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

div, p, button, a {
  font-family: 'Arial', sans-serif;
}

:root {
  --primary: #3059AA;
  --primary-dark: #2f1656;
  --secondary: #ff9800;
  --white: #fff;
  --black: #302c30;
  --light-gray: #e9dae8;
  --gray: #6f6c6f;
  --section: #faf8fc;
  --linear-gradient: linear-gradient(112.09deg, #4983d6 25.91%, #3059aa 93.24%);

  --primary-head: #2f1656;
  --light-background: #faf8fc;
  --primary-accent: #571cb4;
  --active-background: #f1edf7;

  --linear-gradient-background: rgb(234, 82, 130);
  --text-black: #020f14b2;
  --purple: #4983d6;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("https://pages.devex.com/rs/685-KBL-765/images/HelveticaNeueRoman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("https://pages.devex.com/rs/685-KBL-765/images/HelveticaNeueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("https://pages.devex.com/rs/685-KBL-765/images/HelveticaNeueBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

li,
a {
  list-style-type: none;
  text-decoration: none;
}

p,
a,
span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-black);
}

/* h1: 5.143rem = 5.143 * 14 = 72px */
h1 {
  line-height: 97%;
  font-weight: 400;
}

/* h2: 3.143rem = 3.143 * 14 = 44px */
h2 {
  font-size: 42px;
  font-weight: 700;
}

/* h3: 2rem = 2 * 14 = 28px */
h3 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.84px;
}

/* h4: 1.143rem = 1.143 * 14 = 16px */
h4 {
  font-size: 1.143rem;
  font-weight: 600;
}

.container {
  max-width: 1296px;
  margin: 0 auto;
}

.section {
  width: 100%;
}

.form-steps {
  display: flex;
  justify-content: center;
  gap: 53px;
}
.form-step-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-step-block:nth-child(1),
.form-step-block:nth-child(2) {
  width: 80px;
}
.form-block-circle {
  margin-bottom: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #571cb466;
}
.form-block-circle.active {
  background: var(--white);
  border: 6px solid var(--secondary);
}
.form-block-circle.done {
  position: relative;
  background: #28c67c;
  border: 6px solid #28c67c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-block-circle.done::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 10" fill="none"><path d="M11 1L4 9L1 6" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.form-step-block:nth-child(2) .form-block-circle {
  position: relative;
}

.form-step-line {
  position: absolute;
  top: calc(20px / 2);
  width: 100%;
  height: 2px;
  background: #571cb466;
  left: 50%;
  border-radius: 20px;
}

.form-step-line.active {
  background: #28c67c;
}

/* .form-step-block:nth-child(2) .form-block-circle::before {
  content: "";
  position: absolute;
  top: calc(20px / 2);
  width: 96px;
  height: 2px;
  background: var(--secondary);
  right: calc(100% + 14px);
  border-radius: 20px;
}

.form-step-block:nth-child(2) .form-block-circle::after {
  content: "";
  position: absolute;
  top: calc(20px / 2);
  width: 96px;
  height: 2px;
  background: #571cb466;
  left: calc(100% + 14px);
  border-radius: 20px;
} */
.form-step-text {
  margin-top: 32px;
}
.form-block-number {
  font-size: 0.714rem;
  font-weight: 400;
  color: #201d2480;
}
.form-block-name.active {
  color: #2f1656;
  font-weight: 600;
  font-size: 14px;
}

.form-block-name {
  color: #2f165699;
  font-weight: 400;
  line-height: 100%;
  font-size: 14px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 0;
  background: #fff;
  z-index: 999;
}
.header-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper-logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.header-logo-item {
  max-width: 194px;
}
.header-nav-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.header-item-link {
  font-size: 1.143rem;
  font-weight: 400;
  color: var(--black);
  line-height: 18px;
  transition: 0.4s;
}
.header-wrapper-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header-info-calendar,
.header-info-location {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-item-link:hover {
  color: var(--primary);
}
.header-info-text {
  color: var(--primary);
}
.header-wrapper-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.header-burger-bar {
  width: 24px;
  height: 2px;
  background: #4e575b;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.header-wrapper-burger.active .header-burger-bar:nth-child(2) {
  opacity: 0;
}

.header-wrapper-burger.active .header-burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-wrapper-burger.active .header-burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.hero {
  background: var(--linear-gradient-background);
  background: var(--linear-gradient);
  padding-top: 150px;
  padding-bottom: 50px;
}
.hero-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-wrapper-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@media screen and (min-width: 1025px) and (max-width: 1300px) {
  .hero-wrapper-info h1 {
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .hero-wrapper-info h1 {
    width: 64%;
  }
}
.hero-wrapper-info h1 {
  color: var(--white);
  font-family: 'Helvetica Neue', sans-serif;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  br {
    display: none;
  }
}
.hero-info-extra {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-info-calendar,
.hero-info-location {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-info-calendar svg path,
.hero-info-location svg path {
  stroke: var(--white);
}
.hero-info-text {
  font-size: 18px;
  color: var(--white);
}
.hero-info-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.hero-button-primary {
  padding: 16px 22px;
  background: var(--white);
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  border: none;
  border-radius: 10px;
  outline: none;
  transition: 0.4s;
  line-height: normal;
  cursor: pointer;
}
.hero-button-primary:hover {
  transform: scale(1.05);
}
.hero-button-secondary {
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  border: 1px solid var(--white);
  border-radius: 10px;
  outline: none;
  transition: 0.4s;
  cursor: pointer;
}
.hero-button-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.05);
}
.hero-wrapper-banner {
  width: 50%;
  height: 510px;
  position: relative;
}
.hero-wrapper-banner img {
  max-height: 100%;
  position: absolute;
  bottom: -10px;
  right: -60px;
}
.about {
  padding: 40px 0;
}
.about-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.about-wrapper-cards {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}
.about-wrapper-card {
  padding: 32px;
  border: 1.5px solid #571cb433;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-wrapper-card h2 {
  font-weight: 600;
  line-height: 100%;
  color: var(--secondary);
}
.about-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-card-subtitle {
  color: var(--black);
}
.about-card-text {
  color: #201d2480;
  font-weight: 400;
}
.about-wrapper-inner {
  background: var(--primary);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.about-inner-banner {
  border-radius: 20px;
}
.about-inner-banner img {
  width: 472px;
}
.about-inner-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-info-heading {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-info-heading h2 {
  line-height: 100%;
  color: var(--white);
  font-weight: 700;
  font-family: 'Helvetica Neue', sans-serif;
}
.about-info-heading p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}

.about-info-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-body-extra {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-body-extra .about-body-card {
  flex-basis: 50%;
}

.about-body-card {
  padding: 16px 20px;
  border: 1px solid var(--purple);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.about-card-document {
  padding: 8px;
  border-radius: 8px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-card-content h4 {
  font-weight: 500;
  color: var(--white);
}
.about-card-content p {
  color: var(--white);
}
.agenda {
  padding: 40px 0;
}
.agenda-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.agenda-wrapper-heading {
  width: 54%;
  display: flex;
  flex-direction: column;
  gap: 24px;

  p {
    color: rgba(17, 17, 17, 0.75);
    font-size: 16px;
  }
}
.agenda-heading-title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.agenda-heading-title h2 {
  color: var(--primary);
  line-height: 100%;
}
.agenda-title-line {
  width: 2px;
  height: 42px;
  background: #e1deeb;
}
.agenda-wrapper-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.agenda-body-actions {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}
.agenda-action-button.active {
  background: var(--primary);
  color: var(--white);
}
.agenda-action-button {
  padding: 14px 72px;
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 10px;
  color: var(--primary);
  outline: none;
  cursor: pointer;
  transition: 0.4s;
}
.agenda-action-button:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}
.agenda-wrapper-body h3 {
  color: var(--primary);
  margin-top: 8px;
}
.agenda-body-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.agenda-steps-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 120px;
}
.agenda-step-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0;
}
.agenda-step-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.agenda-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.agenda-header-line {
  width: 100%;
  height: 1px;
  background: var(--primary);
  opacity: .2;
}
.agenda-step-header h4 {
  color: var(--secondary);
}
.agenda-step-header span {
  color: #6f6c6f99;
}
.agenda-block-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agenda-block-box {
  width: 100%;
  display: flex;
  gap: 26px;
}
.agenda-box-time {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agenda-time-hours {
  font-weight: 500;
  color: #2654AF;
}
@media screen and (min-width: 1025px) {
  .agenda-time-hours, .agenda-time-set {
    font-size: 16px;
  }
}
.agenda-time-set {
  color: var(--black);
}
.agenda-box-loc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.agenda-loc-circle {
  min-width: 16px;
  min-height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 5px solid var(--secondary);
}
.agenda-loc-line {
  width: 1px;
  height: 100%;
  background: #e1deeb;
}
.agenda-box-info {
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.agenda-box-info h4 {
  font-weight: 400;
}
.agenda-info-desc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.agenda-desc-active {
  color: var(--black);
  font-weight: 500;
}
.agenda-desc-primary {
  color: var(--primary);
}
.agenda-info-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agenda-desc-disabled {
  color: var(--gray);
}
.agenda-block-footer {
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-gray);
}
.agenda-block-footer a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.agenda-block-footer a p {
  font-size: 1.143rem;
}
.agenda-desc-link {
  color: var(--primary);
  text-decoration: underline;
  font-size: 1.143rem;
}
.agenda-desc-disabled.short {
  width: 62%;
}
.speakers.section {
  padding: 40px 0 80px;
}
.speakers-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.speakers-wrapper-title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.speakers-wrapper-title + p {
  font-size: 16px;
}
.speakers-wrapper-title h2 {
  color: var(--primary);
  line-height: 100%;
}
.speakers-title-line {
  width: 2px;
  height: 42px;
  background: #E1DEEB;
}
.speakers-wrapper-body {
  width: 100%;
  position: relative;
  margin-top: 32px;
}
.speakers-body-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}
.speakers-cards-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.speakers-item-circle {
  position: relative;
}
.speakers-circle-copy {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e9dae8;
  background: #ffffff99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  top: 8px;
  left: 0;
}
.speakers-circle-copy img {
  width: 100%;
  height: 100%;
}
.speakers-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.speakers-content-name {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #111111;
}
.speakers-content-desc {
  text-align: center;
  color: rgba(17, 17, 17, 0.75);
  font-weight: 400;
  line-height: 1.3;
}
.speakers-body-more {
  position: absolute;
  width: 100%;
  height: 326px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4976584383753502) 0%,
    rgba(255, 255, 255, 0.7805716036414566) 15%,
    rgba(255, 255, 255, 0.9626444327731093) 40%,
    rgba(255, 255, 255, 1) 100%
  );
}
.speakers-more-button {
  background: var(--primary);
  color: var(--white);
  padding: 14px 44px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: 0.4s;
}

.speakers-more-button:hover {
  transform: scale(1.05);
}
.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.newsletter-popup {
  position: fixed;
  overflow-y: scroll;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 754px;
  padding: 56px 46px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid #571cb466;
  z-index: 12;
}

/* Scrollbar for Popup Form */
.form-popup::-webkit-scrollbar {
  width: 6px;
}

.form-popup::-webkit-scrollbar-track {
  background: transparent;
}

.form-popup::-webkit-scrollbar-thumb {
  background: linear-gradient(
    to bottom,
    transparent,
    #571cb466,
    #561cb4,
    #561cb4,
    #571cb466,
    transparent
  );
  border-radius: 6px;
}
.form-popup {
  position: fixed;
  max-height: 95%;
  overflow-y: scroll;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 608px;
  padding: 56px 46px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid #571cb466;
  z-index: 12;
}
.form-popup .form-container {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.form-popup .registration-subtitle {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e1deeb;
}

.newsletter-popup-close,
.thank-you-popup-close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 36px;
  right: 36px;
  cursor: pointer;
}

.newsletter-popup-wrapper {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.newsletter-wrapper-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.newsletter-header-title {
  color: #2f1656;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 100%;
}
.newsletter-header-desc,
.thank-you-desc {
  text-align: center;
}

.thank-you-desc a {
  text-decoration: underline;
}

.newsletter-wrapper-form form {
  display: flex;
  padding: 8px;
  border-radius: 12px;
  background: #faf8fc;
  max-width: 660px;
  width: 100%;
  border: 1px solid #66666626;
}

.newsletter-wrapper-form form input {
  width: 100%;
  height: 52px;
  padding-left: 24px;
  border: none;
  outline: none;
  background: transparent;
}

.newsletter-wrapper-form form button {
  background: #ff9801;
  color: var(--white);
  font-size: 1.143rem;
  font-weight: 500;
  border: none;
  padding: 14px 70px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s;
}

.newsletter-wrapper-form form button:hover {
  transform: scale(1.05);
}

@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

:root {
  --padding-small: 10px;
  --padding-medium: 20px;
  --padding-large: 40px;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partners-baner {
  background: var(--primary);
  border-radius: 24px;
  padding: 45px 52px;
  color: var(--white);
}

.partners-baner {
  font-size: 1.143rem;
}

.partners-baner a {
  background: var(--white);
  color: var(--primary);
  font-size: 1.143rem;
  font-weight: 500;
  border: none;
  padding: 14px 52px;
  border-radius: 10px;
  cursor: pointer;
}

.partners-baner .speakers {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 22px;
}

.speakers button {
  transition: 0.4s;
}

.speakers button:hover {
  transform: scale(1.05);
}

.partners-baner ul {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 44px;
  padding: 0;
}

.partners-baner ul li {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  overflow: hidden;
}

.partners-baner ul li img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.partners-baner ul li:nth-child(1) {
  --offset: 1;
  z-index: 2;
  transform: translateX(80px);
}

.partners-baner ul li:nth-child(2) {
  --offset: 1;
  z-index: 2;
  transform: translateX(60px);
}

.partners-baner ul li:nth-child(3) {
  --offset: 2;
  z-index: 3;
  transform: translateX(40px);
}

.partners-baner ul li:nth-child(4) {
  --offset: 3;
  z-index: 4;
  transform: translateX(20px);
}

.partners-baner ul li:nth-child(5) {
  --offset: 3;
  z-index: 5;
}

.partners-baner h2 {
  font-family: 'Helvetica Neue', sans-serif;
}

.partners-baner p {
  color: var(--white);
}

/* partners */

.partners {
  padding-bottom: 78px;
}

.partners h3 {
  font-size: 28px;
  color: #111111;
  text-align: center;
  margin-bottom: 24px;
}

.partners .row {
  margin-top: 40px;
}

.partners .flex {
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.partners .partner-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 15px;
  background: var(--section);
  border-radius: 16px;
  width: 196px;
  height: 90px;
}

.partners .partner-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* faq */

.faq {
  background: var(--section);
  padding: 52px 0;
}

.faq .flex {
  align-items: flex-start;
  gap: 20px;
}

.faq-text {
  max-width: 468px;
  min-width: 468px;
}

.faq-text h2 {
  line-height: 124%;
  margin-bottom: 15px;
  color: var(--primary-head);
  font-family: 'Helvetica Neue', sans-serif;
}

.faq-text button {
  transition: 0.4s;
}

.faq-text button:hover {
  transform: scale(1.05);
}

.faq p span {
  display: block;
  font-weight: 500;
  color: var(--secondary);
  font-weight: normal;
  font-size: 1.429rem;
  margin-bottom: 8px;
}

.faq p {
  color: var(--gray);
}

.faq-text button {
  background: var(--primary);
  color: var(--white);
  font-size: 1.143rem;
  font-weight: 500;
  border: none;
  padding: 14px 52px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}

.accordeeon {
  border-radius: 8px;
  overflow: hidden;
  max-width: 680px;
}

.accordion-item {
  margin-bottom: 16px;
  background: var(--white);
  transition: 0.3s ease;
  border-radius: 12px;
}

.accordion-item.active {
  background: var(--active-background);
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.286rem;
  font-weight: 500;
  text-align: left;
  border: none;
  cursor: pointer;
  background: none;
  padding: var(--padding-medium);
}

.accordion-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #faf8fc;
  position: relative;
  transform: rotate(-90deg);
  transition: 0.4s ease;
}

.accordion-item.active .accordion-indicator {
  background: var(--primary);
  transform: rotate(0deg);
}

.accordion-item.active .accordion-indicator svg {
  transform: translate(-50%, -40%);
}

.accordion-indicator svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: stroke 0.3s ease;
}

.accordion-item svg path {
  stroke: var(--primary-accent);
}

.accordion-item.active svg path {
  stroke: var(--white);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  color: var(--gray);
  padding: var(--padding-medium);
  padding-bottom: 20px;
  padding-top: 0;
}

/* podcast */
.podcast {
  padding: 80px 0;
}

.podcast h2 {
  color: var(--primary-head);
  border-left: 1px solid #e1deeb;
  padding-left: 14px;
  line-height: 3.143rem;
  font-family: 'Helvetica Neue', sans-serif;
}

.podcast p {
  margin-top: 24px;
  margin-bottom: 32px;
  max-width: 690px;
  opacity: 0.7;
}

.podcast img {
  max-width: 1083px;
  object-fit: contain;
  width: 100%;
}

.event {
  padding-bottom: 80px;
}

.event .video { 
  display: flex;
  justify-content: center;
  align-items: center;
  height: 440px;
  margin: 40px 0;
  border-radius: 24px;
  padding: 0 50px;
  overflow: hidden;
}

.event .video iframe {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.event h2 {
  color: var(--primary-head);
  border-left: 1px solid #e1deeb;
  padding-left: 14px;
  line-height: 3.143rem;
  font-family: 'Helvetica Neue', sans-serif;
}

.reviews-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews {
  display: flex;
  gap: 22px;
  transition: transform 0.3s ease-in-out;
}

.review {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #571cb433;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}

.review img {
  margin-bottom: 10px;
}

.reviews-indicators {
  display: none;
}

.review-name {
  font-size: 16px;
  font-weight: 500;
  color: #571cb4;
  margin-top: 8px;
}

/* join-our-newsletter */
.join-our-newsletter h2 {
  line-height: 3.143rem;
  margin-bottom: 24px;
}

.join-our-newsletter .banner {
  background: var(--linear-gradient-background);
  background: var(--linear-gradient);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  padding: 64px 30px;
}

.join-our-newsletter .banner h2 {
  font-family: 'Helvetica Neue', sans-serif;
}

.join-our-newsletter .banner p {
  max-width: 462px;
  opacity: 0.7;
  color: var(--white);
}

.join-our-newsletter .banner form {
  display: flex;
  padding: 8px;
  border-radius: 12px;
  background: var(--white);
  max-width: 660px;
  width: 100%;
  margin-top: 32px;
}

.join-our-newsletter .banner form input {
  width: 100%;
  height: 52px;
  padding-left: 24px;
  font-size: 14px;
  border: none;
  outline: none;
}

.join-our-newsletter .banner form button {
  background: #ff9801;
  color: var(--white);
  font-size: 1.143rem;
  font-weight: 500;
  border: none;
  padding: 14px 70px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s;
}

.join-our-newsletter .banner form button:hover {
  transform: scale(1.05);
}

.recent-updates {
  padding: 80px 0;
}

.recent-updates .title {
  text-align: center;
  max-width: 482px;
  margin: 0 auto;
}

.recent-updates .title h2 {
  color: var(--primary-head);
  margin-bottom: 15px;
  font-family: 'Helvetica Neue', sans-serif;
}

.recent-updates .title p {
  opacity: 0.7;
}

.recent-updates-row {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.recent-updates-box {
  border: 1px solid #e1deeb;
  border-radius: 24px;
  padding: 16px 16px 24px 16px;
}

.recent-updates-box h4 {
  font-family: 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  color: var(--primary-head);
  font-size: 1.286rem;
  margin-bottom: 8px;
  margin-top: 18px;
}

.recent-updates-box p {
  opacity: 0.7;
}

.recent-updates-box .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.recent-updates-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
}

.recent-updates-box .options p {
  opacity: 0.5;
}

.recent-updates-box .options a {
  color: var(--secondary);
  font-size: 1.143rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

footer {
  padding-top: 88px;
  padding-bottom: 64px;
  background: #f8f8f8;
  h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
  }
}

.footer-bottom {
  display: flex;
}

.footer-links {
  display: flex;
}

.footer-links .line div {
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
}

.footer-links a {
  opacity: 0.4;
  text-decoration: underline;
}

.footer-links a:hover {
  text-decoration: none;
}

.footer-links .line {
  padding: 0 15px;
}

footer .container {
  display: flex;
  justify-content: space-between;
}

footer .desc {
  max-width: 745px;
  margin-top: 24px;
  margin-bottom: 78px;
  color: rgba(17, 17, 17, 0.75);
  line-height: 1.3;
}

.footer-copyright p {
  color: rgba(2, 15, 20, 0.70);
}

footer .desc a {
  text-decoration: underline;
}

footer a {
  color: #000;
  font-weight: 400;
}

.footer-menu,
.footer-menu-mobile {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  gap: 17px;
}

.footer-menu-mobile {
  display: none;
}

.registration {
  padding: 44px 0;
  background: #faf8fc;
}

.partners-baner-section {
  margin-top: 56px;
}

.registration-container {
  max-width: 600px;
  width: 100%;
  border-radius: 24px;
  margin: 0 auto;
}

.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--primary);
  border-radius: 500px;
  width: fit-content;
  margin: 0 auto;
  padding: 4px;
  margin-bottom: 24px;
}

.toggle-buttons button {
  font-family: 'Helvetica Neue', sans-serif;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: none;
  font-weight: bold;
  font-size: 1.429rem;
  color: var(--primary);
  cursor: pointer;
  border-radius: 500px;
  transition: all 0.3s ease;
}

.toggle-buttons .active {
  background: var(--primary);
  color: var(--white);
}

.registration-title,
.thank-you-title {
  text-align: center;
  font-weight: 700;
  color: var(--primary-head);
  margin-bottom: 8px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 2.286rem;
  margin-bottom: 20px;
}

.registration-subtitle {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-container {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.step-1 .input-group {
  display: flex;
  gap: 12px;
}

.step-1 label {
  display: block;
  color: #6f6c6f;
  margin-bottom: 8px;
  margin-top: 24px;
  text-align: left;
}

.step-1 input,
.step-1 select {
  width: 100%;
  padding: 12px;
  border: 1px solid #66666659;
  border-radius: 12px;
  font-size: 14px;
  background: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.step-1 .input-group > div {
  width: 50%;
}

.step-1 select {
  background: white
    url('data:image/svg+xml;utf8,<svg fill="%236A6A8B" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>')
    no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 32px;
}

.next-step {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 24px;
}

@media (max-width: 480px) {
  .input-group {
    flex-direction: column;
  }

  .steps::before {
    left: 20%;
    width: 60%;
  }
}

.form-step {
  display: none;
}

.active-step {
  display: block;
}

.prev-step,
.submit-form {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 24px;
}

.prev-step {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--primary);
  color: #7a59ae;
  font-weight: 500;
  max-width: 196px;
  position: relative;
}

.prev-step svg {
  position: absolute;
  left: 40px;
  height: 17px;
}

.step-2-box {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #66666659;
  border-radius: 12px;
  padding: 16px;
  margin-top: 8px;
}

.step-2 h4 {
  margin-top: 24px;
}

.step-2 input {
  display: block;
  width: 50px;
  height: 50px;
}

.step-2-checkbox-descr {
  opacity: 0.6;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  transition: all 0.3s ease-in-out;
}

.custom-checkbox input:checked + .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.step-3 textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #66666659;
  min-height: 200px;
  margin-bottom: 26px;
  outline: none;
  margin-top: 8px;
  resize: none;
  padding: 20px;
}

.step-3-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-btns {
  display: flex;
  gap: 14px;
}

.step-3-box a {
  color: var(--secondary);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .events .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }
}

.events {
  h2 {
    color: #fff;
    font-weight: 600;
    line-height: 1;
    max-width: 600px;
    margin-bottom: 16px;
  }
  .events__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
  }
  .events__subtitle {
    font-size: 18px;
    line-height: normal;
    color: rgba(255, 255, 255, .8);
  }
  .events__wrap {
    background-color: #0C2D6D;
    border-radius: 20px;
    padding: 32px;
  }
  .events__name {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: normal;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 54px;
    transition: .3s ease;
  }
  .events__name:hover {
    color: #0C2D6D;
  }
  .events__img {
    display: block;
    height: 159px;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .3s ease;
    }
  }
  .events__img:hover img {
    scale: 1.08;
  }
  .events__description {
    line-height: normal;
    color: #6F6C6F;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
    p {
      font-size: 15px;
    }
  }
  .events__slide {
    background-color: #fff;
    padding: 8px;
    border-radius: 16px;
    height: auto;
  }
  .events__link {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 8px;
    justify-content: flex-end;
    width: fit-content;
    font-size: 16px;
    color: #0C2D6D;
    text-decoration: underline;
  }
  .events__link::before {
    content: '';
    position: static;
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.38867 6.67285C9.4895 6.67285 9.56647 6.70326 9.64453 6.78125L14.5889 11.7256C14.6428 11.7795 14.6679 11.8215 14.6797 11.8496V11.8506C14.6945 11.8861 14.7031 11.9259 14.7031 11.9746C14.7031 12.0233 14.6945 12.0631 14.6797 12.0986V12.0996C14.6679 12.1277 14.6428 12.1697 14.5889 12.2236L9.62012 17.1924C9.54235 17.2702 9.47521 17.292 9.39453 17.2891C9.3005 17.2856 9.21964 17.2537 9.13379 17.168C9.05567 17.0898 9.02442 17.013 9.02441 16.9121C9.02441 16.8112 9.05566 16.7344 9.13379 16.6562L13.8154 11.9746L9.1084 7.26758C9.03073 7.18988 9.00879 7.12357 9.01172 7.04297C9.01517 6.9487 9.04773 6.86731 9.13379 6.78125C9.21171 6.70344 9.28808 6.67293 9.38867 6.67285Z' fill='%230C2D6D' stroke='%230C2D6D'/%3E%3C/svg%3E%0A");
  }
  .events__link:hover {
    text-decoration: unset;
  }
  .events__inner {
    padding: 0 8px 8px;
  }
  .events__pagination {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  .events__pagination-btn {
    display: flex;
    height: fit-content;
    color: rgba(255, 255, 255, .3);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: .3s ease;
  }
  .events__pagination-btn.active {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
  }
  .events__pagination-btn[disabled] {
    opacity: .4;
  }
  .events__switcher-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    * {
      font-size: 16px;
    }
  }
  .events__switcher {
    position: relative;
  }
  .events__text {
    color: #fff;
  }
  .events__current {
    color: #fff;
  }
  .events__arrow {
    display: flex;
  }
  .events__dropdown {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    width: 79px;
    position: absolute;
    top: -12px;
    right: -19px;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
  }
  .events__dropdown.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
  }
  .events__dropdown-item {
    font-size: 16px;
    font-weight: 500;
    color: #0C2D6D;
    cursor: pointer;
    input[type="radio"] {
      display: none;
    }
  }
  .events__dropdown-item.current {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .events__dropdown-item.current::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.3281 14.3242C17.3281 14.2234 17.2977 14.1464 17.2197 14.0684L12.2754 9.12402C12.2215 9.07014 12.1795 9.04495 12.1514 9.0332H12.1504C12.1148 9.01842 12.0751 9.00977 12.0264 9.00977C11.9777 9.00977 11.9379 9.01842 11.9023 9.0332H11.9014C11.8732 9.04496 11.8313 9.07014 11.7773 9.12402L6.80859 14.0928C6.73082 14.1705 6.70896 14.2377 6.71191 14.3184C6.71541 14.4124 6.74727 14.4933 6.83301 14.5791C6.91113 14.6572 6.98797 14.6885 7.08887 14.6885C7.18977 14.6885 7.2666 14.6572 7.34473 14.5791L12.0264 9.89746L16.7334 14.6045C16.8111 14.6822 16.8774 14.7041 16.958 14.7012C17.0523 14.6977 17.1337 14.6652 17.2197 14.5791C17.2975 14.5012 17.328 14.4248 17.3281 14.3242Z' fill='%230C2D6D' stroke='%230C2D6D'/%3E%3C/svg%3E%0A");
  }
  @media screen and (max-width: 767px) {
    .events__top {
      margin: 0 16px 24px 0;
    }
    h2 {
      font-size: 24px;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .events__subtitle {
      font-size: 14px;
    }
    .events__switcher, .events__pagination {
      display: none!important;
    }
    .events__slider {
      overflow: hidden;
    }
    .events__img {
      height: 167px;
    }
    .events__wrap {
      padding: 32px 0 32px 16px;
    }
  }
}


@media (max-width: 1280px) {
  .hero-button-primary,
  .hero-button-secondary {
    padding: 14px;
  }

  .hero-wrapper-info h1 {
    font-size: 4rem;
  }

  .hero-wrapper-banner {
    height: 360px;
  }

  .hero-wrapper-banner img {
    right: 0;
  }

  .speakers-body-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-button-primary,
  .hero-button-secondary {
    padding: 14px 24px;
  }

  .hero-wrapper {
    flex-direction: column;
  }

  .hero-wrapper-banner {
    width: 100%;
    height: 500px;
  }

  .hero-wrapper-info,
  .about-wrapper-card,
  .about-inner-banner img {
    width: 100%;
  }

  .about-wrapper-cards {
    flex-direction: column;
  }

  .about-wrapper-inner {
    flex-direction: column-reverse;
  }

  .agenda-action-button {
    padding: 8px 16px;
  }

  .agenda-steps-inner {
    flex-direction: column;
    gap: 56px;
    margin-bottom: 32px;
  }

  .agenda-wrapper-body h3 {
    font-size: 1.714rem;
  }

  .agenda-wrapper-heading {
    width: 100%;
  }

  .speakers.section {
    margin-top: 0;
  }

  .header-wrapper-burger {
    display: flex;
  }

  .header-wrapper {
    flex-wrap: wrap;
    align-items: start;
  }

  .header-wrapper-logo {
    width: 80%;
  }

  .header-wrapper-nav {
    width: 20%;
    display: flex;
    justify-content: flex-end;
  }

  .header-wrapper-info {
    width: 100%;
    flex-direction: row;
    margin-top: 16px;
  }

  .header-nav-list {
    position: fixed;
    width: 100%;
    left: 0%;
    opacity: 0;
    right: 0;
    top: 128px;
    height: fit-content;
    pointer-events: none;
    transition: 0.5s;
    background: var(--white);
    flex-direction: column;
    padding: 32px 0;
    z-index: 1000001;
  }

  .header__mobile_block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    position: fixed;
    top: 0px;
    left: 0%;
    right: 0;
    width: 100%;
    overflow-y: scroll;
    height: 100vh;
    padding: 20px 28px;
    opacity: 0;
    z-index: 100;
    pointer-events: none;
    transition: 0.5s;

    background: radial-gradient(50% 50% at 50% 50%, #fc98a6 0%, #ef7a82 100%);
  }

  .header-nav-list.active {
    opacity: 1;
    pointer-events: visible;
  }
}

@media (max-width: 768px) {

  .agenda-block-box {
    gap: 16px;
  }

  .about-wrapper {
    gap: 40px;
  }

  .speakers-body-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .speakers-more-button {
    width: 100%;
  }

  .speakers.section {
    padding-bottom: 20px;
  }

  .speakers-body-more {
    background: rgb(255, 255, 255);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.4976584383753502) 0%,
      rgba(255, 255, 255, 0.7805716036414566) 15%,
      rgba(255, 255, 255, 0.9850533963585434) 38%,
      rgba(255, 255, 255, 1) 100%
    );
  }

  .newsletter-wrapper-form form {
    display: flex;
    flex-direction: column;
  }

  .newsletter-wrapper-form form input {
    padding-left: 8px;
  }

  .newsletter-popup {
    padding: 60px 20px;
  }

  .newsletter-popup-close,
  .thank-you-popup-close {
    top: 30px;
    right: 30px;
  }

  .about-wrapper-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {

  *, .about-info-heading p, .agenda-heading-title h2, .speakers-content-desc, footer .desc {
    line-height: 1.3;
  }

  h3 {
    font-size: 28px;
  }
  .about {
    padding-top: 40px!important;
    padding-bottom: 20px;
  }
  .agenda {
    padding: 20px 0;
  }
  .agenda-wrapper {
    gap: 26px;
  }
  .speakers.section {
    padding: 20px 0 40px;
  }

  .agenda-box-time {
    min-width: 68px;
  }

  .agenda-header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .agenda-box-info {
    padding-bottom: 18px;
  }

  .about-wrapper-inner {
    padding: 26px 16px 12px 16px;
  }

  .agenda-desc-disabled.short {
    width: 100%;
  }

  .speakers-body-more {
    height: 280px;
  }

  .form-step-block:nth-child(2) .form-block-circle::before {
    width: 78px;
    right: calc(100% + 10px);
  }

  .form-steps {
    gap: 50px;
  }

  .form-step-block:nth-child(2) .form-block-circle::after {
    width: 78px;
    left: calc(100% + 10px);
  }

  .step-1 .input-group > div {
    width: 100%;
  }

  .step-1 label {
    margin-top: 16px;
  }

  .step-1 .input-group {
    gap: 0;
  }

  .event {
    padding-bottom: 56px;
  }

  .recent-updates {
    padding: 56px 0;
  }

  .form-popup .prev-step svg {
    left: 32%;
  }

  footer {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .form-popup {
    padding: 80px 16px 20px 16px;
  }

  .form-popup .step-btns {
    flex-direction: column;
    gap: 0;
  }

  .form-popup .next-step {
    /* margin-top: 0; */
  }
  .form-popup .prev-step {
    max-width: 100%;
  }

  .agenda-body-actions {
    gap: 8px;
    justify-content: center;
  }

  .about-body-extra {
    flex-direction: column;
  }

  .about-wrapper-cards {
    gap: 16px;
  }

  .hero-wrapper-banner {
   display: none;
  }

 
  .hero-wrapper-info h1 {
    font-size: 4rem;
  }

  .hero-wrapper-info h1 br {
    display: block;
  }

  .hero-info-actions {
    flex-direction: column;
  }

  .hero-button-primary,
  .hero-button-secondary {
    width: 100%;
  }

  .hero-info-actions {
    margin-top: 22px;
  }

  .hero-info-extra {
    gap: 9px;
  }
  .hero-info-text {
    font-size: 16px;
  }
  .hero-info-actions {
    gap: 8px;
  }

  .hero-info-extra {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .faq .flex {
    flex-direction: column;
  }

  .faq-text {
    max-width: 100%;
    min-width: 100%;
  }

  .faq-text h2 {
    font-size: 2.286rem;
  }

  .recent-updates .title h2 {
    font-size: 2.286rem;
  }

  .podcast {
    padding: 56px 0;
  }

  .podcast h2,
  .event h2 {
    font-size: 2.286rem;
  }

  .accordeeon {
    max-width: 100%;
  }

  .recent-updates-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .partners-baner {
    padding: 22px 24px;
  }

  .hero .hero-wrapper h1 {
    width: 80%;
  }

  .partners-baner .flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .partners-baner .speakers {
    align-items: flex-start;
    width: 100%;
  }

  .partners-baner ul li:nth-child(1) {
    --offset: 1;
    z-index: 2;
    transform: translateX(0px);
  }

  .partners-baner ul li:nth-child(2) {
    --offset: 1;
    z-index: 2;
    transform: translateX(-20px);
  }

  .partners-baner ul li:nth-child(3) {
    --offset: 2;
    z-index: 3;
    transform: translateX(-40px);
  }

  .partners-baner ul li:nth-child(4) {
    --offset: 3;
    z-index: 4;
    transform: translateX(-60px);
  }

  .partners-baner ul li:nth-child(5) {
    --offset: 3;
    z-index: 5;
    transform: translateX(-80px);
  }

  .partners-baner ul li {
    transform: translateX(calc(-20px * (5 - var(--offset))));
  }

  .partners-baner a {
    display: block;
    width: 100%;
  }

  .partners .flex {
    gap: 7px;
  }

  .partners .partner-block {
    width: 168px;
    height: 78px;
    border-radius: 13px;
  }

  .partners {
    padding-bottom: 80px;
  }

  .join-our-newsletter .banner form {
    flex-direction: column;
  }

  .partners h3 {
    font-size: 1.714rem;
    font-weight: 600;
  }

  .event .video {
    height: 209px;
  }

  .footer-menu-mobile {
    display: flex;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 64px;
  }

  .footer-bottom .line {
    display: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-menu {
    display: none;
  }

  .reviews {
    transition: transform 0.3s ease-in-out;
    gap: 0px;
  }

  .review {
    flex: 0 0 100%;
  }

  .reviews-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .reviews-indicators div {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }

  .reviews-indicators div.active {
    background: var(--primary);
  }
}

@media (max-width: 640px) {
  .faq-text button {
    width: 100%;
  }
}

@media (max-width: 1296px) {
  .container {
    width: 1024px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 100%;
    padding: 0 40px;
  }

  h2 {
    font-size: 2.286rem;
  }
}

@media (max-width: 768px) {

  h1 {
    font-size: 2.286rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}