*, *::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: #333;
  background-color: #F5EBDD;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #F5EBDD;
  height: 114px;
}

.header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  gap: 235px;
  align-items: center;  
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-image {
  width: 72px;
  height: 66px;
}

.header__logo-text {
  font-family: 'Gothic A1', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  flex-shrink: 0;
  -webkit-overflow-scrolling: touch;
}

.header__nav::-webkit-scrollbar {
  display: none;
}

.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;
}

.header__nav-link:hover {
  color: #1CBBEE;
}

.hero {
  position: relative;
  min-height: 742px;
  margin-top: 82px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 75px;
}

.hero__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__title-regular {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 88px;
  color: #FFFFFF;
}

.hero__title-bold {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__title-white {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 96px;
  line-height: 88px;
  color: #FFFFFF;
}

.hero__title-accent {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 96px;
  line-height: 88px;
  color: #1CBBEE;
}

.hero__subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #FFFFFF;
}

.hero__info-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__info-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__info-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}

.hero__info-item svg {
  flex-shrink: 0;
}

.hero__info-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}


.hero__info-label, .hero__info-text {
  align-content: center;
}

.hero__info-divider {
  width: 0;
  height: 80px;
  border: 1px solid #E8E8E8;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 368px 1fr;
  gap: 24px;
  align-items: stretch;
}

.hero__card {
  background-color: #3440AB;
  border-radius: 30px;
  padding: 40px;
  height: 100%;
}

.hero__card-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 44px;
  color: #FFFFFF;
}

.hero__right-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hero__stat {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(2.5px);
  border-radius: 30px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.hero__stat--full {
  width: 100%;
}

.hero__stat-icon {
  width: 82px;
  height: 82px;
  background-color: #3440AB;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__stat-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hero__stat-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  color: #FFFFFF;
}

.hero__stat-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
}

.hero__legal {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(2.5px);
  border-radius: 30px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.hero__legal-icon {
  width: 82px;
  height: 82px;
  background-color: #3440AB;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__legal-icon img {
  width: 48px;
  height: 44px;
}

.hero__legal-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  flex: 1;
}

.modules {
  background-color: #10202D;
  padding: 40px 0;
}

.modules__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.modules__header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}

.modules__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #FFFFFF;
}

.modules__date {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #1CBBEE;
}

.modules__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modules__item {
  display: flex;
  align-items: stretch;
  height: 178px;
  border-radius: 30px;
  overflow: hidden;
}

.modules__item-number-section {
  width: 279px;
  background-color: #021037;
  border-radius: 30px 0 0 0;
  padding: 0 0 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.modules__item-number-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 178px;
  height: 178px;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

.modules__item-number-section > span,
.modules__item-number-section > div {
  position: relative;
  z-index: 1;
}

.modules__item-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  color: #FFFFFF;
}

.modules__item-date-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modules__item-calendar {
  width: 20px;
  height: 19px;
}

.modules__item-date {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}

.modules__item-content {
  flex: 1;
  background-color: #021037;
  border-radius: 0 0 30px 0;
  padding: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.modules__item-content--light {
  background-color: #FFFFFF;
}

.modules__item-content--light:hover {
  background-color: #021037;
}

.modules__item-content--light:hover .modules__item-title--dark {
  color: #FFFFFF;
}

.modules__item-content--light:hover .modules__item-tag--gray {
  background-color: #3440AB;
  color: #FFFFFF;
}

.modules__item-content--light:hover .modules__item-address--dark {
  color: #FFFFFF;
}
.modules__item-content--light:hover .modules__item-address--dark svg path {
  fill: #FFFFFF;
}
.modules__item-content--light:hover .modules__item-arrow--dark path {
  stroke: #1CBBEE;
}

.modules__item-content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 50%;
}

.modules__item-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.modules__item-title--dark {
  color: #333333;
}

.modules__item-tags {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.modules__item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.modules__item-tag--blue {
  background-color: #3440AB;
  color: #FFFFFF;
}

.modules__item-tag--gray {
  background-color: #F3F3F3;
  color: #333333;
}

.modules__item-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  width: 40%;
}

.modules__item-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 19px;
  color: #FFFFFF;
  max-width: 158px;
  transition: color 0.3s ease;
}

.modules__item-address--dark {
  color: #333333;
}
.modules__item-address svg path {
  transition: fill 0.3s ease;
}

.modules__item-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  align-self: flex-end;
}

.modules__item-arrow--dark path {
  stroke: #333;
  transition: stroke 0.3s ease;
}

.experts {
  padding: 40px 0;
}

.experts__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.experts__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  margin-bottom: 24px;
}

.experts__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: normal;
  gap: 27.5px;
}

.experts__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 250px;
}

.experts__card-photo {
  width: 250px;
  height: 250px;
  border-radius: 92px 0;
  object-fit: cover;
  transition: border-radius 0.4s ease;
}

.experts__card:hover .experts__card-photo {
  border-radius: 100%;
}

.experts__card-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.experts__card-role {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.partners {
  padding: 40px 0;
}

.partners__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.partners__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  align-self: flex-start;
}

.partners__section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.partners__section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #333333;
}

.partners__grid {
  display: grid;
  gap: 12px;
}

.partners__section--general {
  display: flex;
  flex-direction: row;
}

.partners__section-titel--general {
  align-content: center;
}

.partners__grid--general {
  grid-template-columns: 327px;
}

.partners__grid--info {
  grid-template-columns: repeat(4, 1fr);
}

.partners__grid--partners {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 63px);
}

.partners__card {
  background-color: #F1F1F1;
  border-radius: 8px;
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partners__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partners__card--general {
  height: 137px;
  min-height: 137px;
}

.graduates {
  padding: 40px 0;
}

.graduates__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.graduates__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  margin-bottom: 24px;
}

.graduates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.graduates__card {
  background-color: #FFFFFF;
  border-radius: 30px 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.graduates__card-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.graduates__card-photo {
  width: 64px;
  height: 64px;
  border-radius: 30px;
  object-fit: cover;
  flex-shrink: 0;
}

.graduates__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.graduates__card-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 33px;
  color: #333333;
}

.graduates__card-role {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #333333;
}

.graduates__card-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.contacts {
  padding: 40px 0;
}

.contacts__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.contacts__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  margin-bottom: 24px;
}

.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contacts__card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contacts__card-photo {
  width: 184px;
  height: 184px;
  border-radius: 92px 0;
  object-fit: cover;
  flex-shrink: 0;
  transition: border-radius 0.4s ease;
}

.contacts__card:hover .contacts__card-photo {
  border-radius: 100%;
}

.contacts__card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
  height: 184px;
}

.contacts__card-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 33px;
  color: #333333;
}

.contacts__card-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacts__card-detail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contacts__card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contacts__card-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #333333;
}

.contacts__card-link--underline {
  text-decoration: underline;
}

.contacts__card-phones {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contacts__card-phones span {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #333333;
}

.contacts__card-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.media {
  padding: 40px 0;
}

.media__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.media__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #333333;
  margin-bottom: 24px;
}

.media__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.media__card {
  background-color: #FFFFFF;
  border: 1px solid #F1F1F1;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 230px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.media__card-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media__card-logo {
  width: 48px;
  height: 44px;
}

.media__card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.media__card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 0 0 30px 30px;
  background: #FFFFFF;
  transition: background-color 0.3s ease;
}

.media__card:hover .media__card-bottom {
  background-color: #1CBBEE;
}

.media__card-link-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px;
}

.media__card-link-text {
  font-family: 'Gothic A1', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #00439D;
  transition: color 0.3s ease;
}

.media__card:hover .media__card-link-text {
  color: #333333;
}

.media__card-arrow {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq {
  padding: 40px 0;
}

.faq__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq__wrapper {
  background-color: #021037;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #FFFFFF;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq__item {
  background-color: #021037;
  border: 1px solid #1CBBEE;
  border-radius: 30px 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item--expanded {
  grid-template-rows: auto 1fr;
}

.faq__item-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  text-align: left;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.faq__item-question span {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  flex: 1;
}

.faq__item-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq__item-icon .faq__icon-plus {
  display: block;
}

.faq__item-icon .faq__icon-minus {
  display: none;
}

.faq__item--expanded .faq__item-icon .faq__icon-plus {
  display: none;
}

.faq__item--expanded .faq__item-icon .faq__icon-minus {
  display: block;
}

.faq__item-answer {
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: opacity 0.3s ease, padding 0.3s ease;
}

.faq__item--expanded .faq__item-answer {
  padding: 0 24px 24px;
  opacity: 1;
}

.faq__item-answer p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}

.footer {
  background-color: #F5EBDD;
  padding: 40px 0;
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo-image {
  width: 72px;
  height: 66px;
}

.footer__logo-text {
  font-family: 'Gothic A1', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.footer__nav {
  display: flex;
  gap: 40px;
}

.footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.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;
}

.footer__nav-link:hover {
  color: #1CBBEE;
}

@media (max-width: 1024px) {
  .header {
    height: 162px;
  }

  .header__container {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    height: auto;
    min-height: 114px;
  }

  .header__nav {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0;
  }

  .hero__container {
    padding: 0 24px;
    padding-top: 75px;
  }

  .hero__title-regular,
  .hero__title-white,
  .hero__title-accent {
    font-size: 64px;
    line-height: 64px;
  }

  .hero__subtitle {
    font-size: 28px;
    line-height: 28px;
  }

  .hero__info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero__info-divider {
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid #E8E8E8;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
  }

  .hero__card {
    height: auto;
  }

  .hero__card-text {
    font-size: 28px;
    line-height: 32px;
  }

  .hero__stats-row {
    grid-template-columns: 1fr;
  }

  .hero__stat-number {
    font-size: 48px;
    line-height: 48px;
  }

  .hero__stat-text {
    font-size: 20px;
    line-height: 20px;
  }

  .hero__legal-text {
    font-size: 20px;
    line-height: 28px;
  }

  .modules__container {
    padding: 0 24px;
  }

  .modules__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .modules__title,
  .modules__date {
    font-size: 32px;
    line-height: 44px;
  }

  .modules__item {
    flex-direction: column;
    height: auto;
  }

  .modules__item-number-section {
    width: 100%;
    border-radius: 30px 30px 0 0;
    padding: 24px 40px;
    justify-content: space-between;
  }

  .modules__item-content {
    border-radius: 0 0 30px 30px;
    padding: 24px 40px;
    flex-direction: column;
    gap: 16px;
  }

  .modules__item-content-inner {
    width: 100%;
  }

  .modules__item-footer {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .experts__container {
    padding: 0 24px;
  }

  .experts__grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .partners__container {
    padding: 0 24px;
  }

  .partners__grid--info {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners__grid--partners {
    grid-template-columns: repeat(2, 1fr);
  }

  .graduates__container {
    padding: 0 24px;
  }

  .graduates__grid {
    grid-template-columns: 1fr;
  }

  .contacts__container {
    padding: 0 24px;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .media__container {
    padding: 0 24px;
  }

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

  .faq__container {
    padding: 0 24px;
  }

  .footer__container {
    padding: 0 24px;
  }

  .footer__top {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 124px;
  }

  .header__logo-image {
    width: 48px;
    height: 44px;
  }

  .header__container {
    padding: 16px 24px;
  }

  .hero {
    margin-top: 80px;
    min-height: auto;
  }

  .hero__container {
    padding: 0 12px;
    padding-top: 75px;
  }

  .hero__title-regular,
  .hero__title-white,
  .hero__title-accent {
    font-size: 48px;
    line-height: 44px;
  }

  .hero__title-bold {
    gap: 12px;
  }

  .hero__subtitle {
    font-size: 24px;
    line-height: 24px;
  }

  .hero__card {
    padding: 24px;
    border-radius: 20px;
  }

  .hero__card-text {
    font-size: 24px;
    line-height: 44px;
  }

  .hero__stat {
    padding: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero__stat-icon {
    width: 82px;
    height: 82px;
  }

  .hero__stat-number {
    font-size: 64px;
    line-height: 64px;
  }

  .hero__stat-text {
    font-size: 24px;
    line-height: 24px;
  }

  .hero__legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero__legal-icon {
    width: 82px;
    height: 82px;
  }

  .hero__legal-text {
    font-size: 24px;
    line-height: 32px;
  }

  .modules {
    padding: 24px 0;
  }

  .modules__container {
    padding: 0 12px;
  }

  .modules__title,
  .modules__date {
    font-size: 32px;
    line-height: 44px;
  }

  .modules__item-number-section {
    padding: 24px 24px 60px;
  }

  .modules__item-content {
    padding: 24px;
  }

  .modules__item-title {
    font-size: 20px;
    line-height: 24px;
  }

  .experts {
    padding: 24px 0;
  }

  .experts__container {
    padding: 0;
  }

  .experts__title {
    font-size: 32px;
    line-height: 44px;
    padding: 0 12px;
    margin-bottom: 16px;
  }

  .experts__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 0 12px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: auto;
    margin: 0;
    max-width: 100%;
  }

  .experts__grid::-webkit-scrollbar {
    display: none;
  }

  .experts__card {
    flex-shrink: 0;
    width: 250px;
    scroll-snap-align: start;
  }

  .partners {
    padding: 24px 0;
  }

  .partners__container {
    padding: 0 12px;
  }

  .partners__title {
    font-size: 32px;
    line-height: 44px;
  }

  .partners__section--general {
    flex-direction: column;
  }

  .partners__grid--info {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners__grid--partners {
    grid-template-columns: repeat(2, 1fr);
  }

  .graduates {
    padding: 24px 0;
  }

  .graduates__container {
    padding: 0 12px;
  }

  .graduates__title {
    font-size: 32px;
    line-height: 44px;
  }

  .contacts {
    padding: 24px 0;
  }

  .contacts__container {
    padding: 0 12px;
  }

  .contacts__title {
    font-size: 32px;
    line-height: 44px;
  }

  .contacts__card-photo {
    width: 100px;
    height: 100px;
    border-radius: 50px 0;
  }

  .contacts__card-content {
    height: auto;
    align-items: flex-start;
  }

  .contacts__card-socials {
    justify-content: center;
  }

  .media {
    padding: 24px 0;
  }

  .media__container {
    padding: 0;
  }

  .media__title {
    font-size: 32px;
    line-height: 44px;
    padding: 0 12px;
    margin-bottom: 16px;
  }

  .media__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;
  }

  .media__grid::-webkit-scrollbar {
    display: none;
  }

  .media__card {
    flex-shrink: 0;
    width: 263px;
    scroll-snap-align: start;
  }

  .faq {
    padding: 24px 0;
  }

  .faq__container {
    padding: 0 12px;
  }

  .faq__wrapper {
    padding: 24px;
  }

  .faq__title {
    font-size: 32px;
    line-height: 44px;
  }

  .footer {
    padding: 24px 0;
  }

  .footer__container {
    padding: 0 12px;
  }

  .footer__nav {
    gap: 24px;
  }
}