body {
  background-color: white;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, main {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-family: 'Manrope', sans-serif;
}

body.page {
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #F5EBDD;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.conf-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #F5EBDD;
  height: 114px;
}

.conf-header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  gap: 235px;
  align-items: center;
}

.conf-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.conf-header__logo-image {
  width: 72px;
  height: 66px;
}

.conf-header__logo-text {
  font-family: 'Gothic A1', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.conf-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  flex-shrink: 0;
  -webkit-overflow-scrolling: touch;
}

.conf-header__nav::-webkit-scrollbar {
  display: none;
}

.conf-header__nav-link {
  font-family: 'Gothic A1', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 48px;
  color: #333333;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.conf-header__nav-link:hover {
  color: #1CBBEE;
}

.conf-breadcrumbs {
  margin-top: 114px;
  padding: 24px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.conf-breadcrumbs::-webkit-scrollbar {
  display: none;
}

.conf-breadcrumbs__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.conf-breadcrumbs__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.conf-breadcrumbs__link:hover {
  color: #1CBBEE;
}

.conf-breadcrumbs__separator {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #999999;
}

.conf-breadcrumbs__current {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #7C7C7C;
  white-space: nowrap;
}

.conf-hero-module {
  position: relative;
  padding: 0 40px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.conf-hero-module__background {
  position: relative;
  width: 100%;
  height: 469px;
  border-radius: 30px;
  overflow: hidden;
}

.conf-hero-module__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conf-hero-module__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(2, 16, 55, 0.2) 0%, rgba(2, 16, 55, 0.2) 50%, rgba(2, 16, 55, 0.1) 100%);
}

.conf-hero-module__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 60px 60px 60px 75px;
  z-index: 2;
}

.conf-hero-module__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.conf-hero-module__label {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
}

.conf-hero-module__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #FFFFFF;
}

.conf-hero-module__meta {
  display: flex;
  gap: 32px;
}

.conf-hero-module__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.conf-hero-module__meta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.conf-hero-module__meta-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.conf-hero-module__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background: linear-gradient(230.39deg, #1CBBEE -1.64%, #ADDEED 46.87%, #1CBBEE 99.26%);
  border-radius: 30px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #091F67;
  width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conf-hero-module__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(28, 187, 238, 0.3);
}

.conf-program {
  padding: 40px 0;
}

.conf-program__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.conf-program__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  margin-bottom: 24px;
}

.conf-program__content {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 40px;
}

.conf-program__topic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 24px 0;
}

.conf-program__topic-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conf-program__topic-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.conf-program__topic-clock {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.conf-program__topic-time {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #999999;
}

.conf-program__topic-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 33px;
  color: #333333;
}

.conf-program__topic-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.conf-program__topic-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.conf-program__topic-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background-color: #F3F3F3;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.conf-program__topic-speakers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conf-program__speakers-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: rgb(153, 153, 153);;
}

.conf-program__speakers-icon {
  width: 20px;
  height: 20px;
}

.conf-program__speakers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conf-program__speakers-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.conf-program__speaker {
  display: flex;
  align-items: center;
  gap: 16px;
}

.conf-program__speaker-photo {
  width: 64px;
  height: 64px;
  border-radius: 30px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #E0E0E0;
}

.conf-program__speaker-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.conf-program__speaker-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
}

.conf-program__speaker-role {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.conf-program__divider {
  height: 1px;
  background-color: #F1F1F1;
}

.conf-speakers {
  padding: 40px 0;
}

.conf-speakers__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.conf-speakers__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  margin-bottom: 24px;
}

.conf-speakers__grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.conf-speakers__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 250px;
}

.conf-speakers__card-photo {
  width: 250px;
  height: 250px;
  border-radius: 92px 0;
  object-fit: cover;
  background-color: #E0E0E0;
  transition: border-radius 0.4s ease;
}

.conf-speakers__card:hover .conf-speakers__card-photo {
  border-radius: 100%;
}

.conf-speakers__card-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.conf-speakers__card-role {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.conf-conditions {
  padding: 40px 0;
}

.conf-conditions__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.conf-conditions__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  margin-bottom: 24px;
}

.conf-conditions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.conf-conditions__card {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conf-conditions__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.conf-conditions__card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.conf-conditions__card-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.conf-conditions__card-sublabel {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.conf-conditions__card-divider {
  height: 1px;
  background-color: #F1F1F1;
}

.conf-conditions__card-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  color: #333333;
  text-align: center;
}

.conf-conditions__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conf-conditions__card-item {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
  padding: 12px 16px;
  background-color: #F9F9F9;
  border-radius: 12px;
}

.conf-conditions__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 20px 40px;
  background: linear-gradient(230.39deg, #1CBBEE -1.64%, #ADDEED 46.87%, #1CBBEE 99.26%);
  border-radius: 30px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #091F67;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conf-conditions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(28, 187, 238, 0.3);
}

.conf-special-offer {
  padding: 0 40px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.conf-special-offer__container {
  background-color: #3440AB;
  border-radius: 30px;
  padding: 60px;
}

.conf-special-offer__content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.conf-special-offer__percent {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 120px;
  line-height: 120px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.conf-special-offer__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  color: #FFFFFF;
}

.conf-moderators {
  padding: 40px 0;
}

.conf-moderators__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.conf-moderators__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  margin-bottom: 24px;
}

.conf-moderators__card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
}

.conf-moderators__card-photo {
  width: 184px;
  height: 184px;
  border-radius: 92px 0;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #E0E0E0;
  transition: border-radius 0.4s ease;
}

.conf-moderators__card:hover .conf-moderators__card-photo {
  border-radius: 100%;
}

.conf-moderators__card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conf-moderators__card-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 33px;
  color: #333333;
}

.conf-moderators__card-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conf-moderators__card-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.conf-moderators__card-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.conf-moderators__card-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #333333;
  transition: color 0.3s ease;
}

.conf-moderators__card-link:hover {
  color: #1CBBEE;
}

.conf-moderators__card-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.conf-moderators__card-phones span {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #333333;
}

.conf-moderators__card-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.conf-moderators__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.conf-moderators__social-link:hover {
  transform: scale(1.1);
}

.conf-module-partners {
  padding: 40px 0;
}

.conf-module-partners__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.conf-module-partners__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  margin-bottom: 24px;
}

.conf-module-partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.conf-module-partners__item {
  background-color: #F1F1F1;
  border-radius: 8px;
  height: 63px;
  object-fit: contain;
}

.conf-footer {
  background-color: #F5EBDD;
  padding: 40px 0;
}

.conf-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.conf-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.conf-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.conf-footer__logo-image {
  width: 72px;
  height: 66px;
}

.conf-footer__logo-text {
  font-family: 'Gothic A1', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.conf-footer__nav {
  display: flex;
  gap: 40px;
}

.conf-footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conf-footer__nav-link {
  font-family: 'Gothic A1', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
  transition: color 0.3s ease;
}

.conf-footer__nav-link:hover {
  color: #1CBBEE;
}

.reg-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reg-modal-overlay.reg-modal--active {
  opacity: 1;
  visibility: visible;
}

.reg-modal-overlay .reg-modal {
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.reg-modal-overlay.reg-modal--active .reg-modal {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .conf-header {
    height: 162px;
  }

  .conf-header__container {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    height: auto;
    min-height: 114px;
  }

  .conf-header__nav {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0;
  }

  .conf-breadcrumbs__container {
    padding: 0 24px;
  }

  .conf-breadcrumbs {
    margin-top: 135px;
  }

  .conf-hero-module {
    padding: 0 24px 24px;
  }

  .conf-hero-module__container {
    padding: 40px;
  }

  .conf-hero-module__title {
    font-size: 36px;
    line-height: 44px;
  }

  .conf-program__container {
    padding: 0 24px;
  }

  .conf-hero-module__meta {
    flex-wrap: wrap;
    max-width: 750px;
  }

  .conf-program__content {
    padding: 24px;
  }

  .conf-program__topic {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .conf-speakers__container {
    padding: 0 24px;
  }

  .conf-speakers__grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .conf-conditions__container {
    padding: 0 24px;
  }

  .conf-conditions__grid {
    grid-template-columns: 1fr;
  }

  .conf-special-offer {
    padding: 0 24px 24px;
  }

  .conf-special-offer__container {
    padding: 40px;
  }

  .conf-special-offer__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .conf-special-offer__percent {
    font-size: 80px;
    line-height: 60px;
  }

  .conf-special-offer__title {
    font-size: 24px;
    line-height: 32px;
    text-align: left;
  }

  .conf-moderators__container {
    padding: 0 24px;
  }

  .conf-moderators__card {
    justify-content: left;
    gap: 24px;
  }

  .conf-module-partners__container {
    padding: 0 24px;
  }

  .conf-module-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conf-footer__container {
    padding: 0 24px;
  }

  .conf-footer__top {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {

  .conf-header {
    height: 124px;
  }

  .conf-header__logo-image {
    width: 48px;
    height: 44px;
  }

  .conf-header__container {
    padding: 16px 24px;
  }

  .conf-breadcrumbs {
    margin-top: 125px;
    padding: 16px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .conf-breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .conf-breadcrumbs__container {
    padding: 0 12px;
    min-width: max-content;
  }

  .conf-breadcrumbs__link {
    white-space: nowrap;
  }

  .conf-breadcrumbs__current {
    white-space: nowrap;
  }

  .conf-hero-module {
    padding: 0 12px 12px;
  }

  .conf-hero-module__background {
    height: 539px;
  }

  .conf-hero-module__container {
    padding: 24px;
    align-items: flex-start;
  }

  .conf-hero-module__image {
    object-position: 70% 0;
  }

  .conf-hero-module__content {
    max-width: 100%;
    height: 100%;
  }

  .conf-hero-module__label {
    font-size: 18px;
    line-height: 24px;
  }

  .conf-hero-module__title {
    font-size: 28px;
    line-height: 36px;
  }

  .conf-hero-module__meta {
    flex-wrap: wrap;
    gap: 16px;
  }

  .conf-hero-module__meta-item {
    width: 100%;
  }

  .conf-hero-module__button {
    margin-top: auto;
    margin-bottom: 24px;
    width: 100%;
    padding: 16px 24px;
  }

  .conf-program {
    padding: 24px 0;
  }

  .conf-program__container {
    padding: 0 12px;
  }

  .conf-program__title {
    font-size: 32px;
    line-height: 44px;
  }

  .conf-program__content {
    padding: 16px;
  }

  .conf-program__topic {
    padding: 16px 0;
  }

  .conf-program__topic-name {
    font-size: 20px;
    line-height: 28px;
  }

  .conf-program__speakers-list--grid {
    grid-template-columns: 1fr;
  }

   .conf-speakers {
    padding: 24px 0;
  }

  .conf-speakers__container {
    padding: 0;
  }

  .conf-speakers__title {
    font-size: 32px;
    line-height: 44px;
    padding: 0 12px;
    margin-bottom: 16px;
  }

  .conf-speakers__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 12px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 12px;
    justify-content: flex-start;
  }

  .conf-speakers__grid::-webkit-scrollbar {
    display: none;
  }

  .conf-speakers__card {
    flex-shrink: 0;
    width: 250px;
    scroll-snap-align: start;
  }

  .conf-conditions {
    padding: 24px 0;
  }

  .conf-conditions__container {
    padding: 0 12px;
  }

  .conf-conditions__title {
    font-size: 32px;
    line-height: 44px;
  }

  .conf-conditions__card {
    padding: 24px;
  }

  .conf-conditions__card-price {
    font-size: 36px;
    line-height: 44px;
  }

  .conf-special-offer {
    padding: 0 12px 12px;
  }

  .conf-special-offer__container {
    padding: 24px;
  }

  .conf-moderators {
    padding: 24px 0;
  }

  .conf-moderators__container {
    padding: 0 12px;
  }

  .conf-moderators__title {
    font-size: 32px;
    line-height: 44px;
  }

  .conf-moderators__card-photo {
    width: 100px;
    height: 100px;
    border-radius: 50px 0;
  }

  .conf-module-partners {
    padding: 24px 0;
  }

  .conf-module-partners__container {
    padding: 0 12px;
  }

  .conf-module-partners__title {
    font-size: 32px;
    line-height: 44px;
  }

  .conf-module-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conf-footer {
    padding: 24px 0;
  }

  .conf-footer__container {
    padding: 0 12px;
  }

  .conf-footer__nav {
    gap: 40px;
  }

  .reg-modal-overlay {
    padding: 10px;
    align-items: flex-end;
  }
  
  .reg-modal-overlay .reg-modal {
    max-height: 95vh;
    border-radius: 20px 20px 0 0;
  }
}