.about-section {
  margin-top: 2rem;
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}

.about-section__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  row-gap: 1.625rem;
}

.about-section__article {
  margin-bottom: 0;
}

.about-section__approaches {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.625rem;
  margin-top: 5.625rem;
}

.about-section__approach-title {
  margin-bottom: 1rem;
}

.about-section__image-wrapper {
  overflow: hidden;
}

.about-section__image {
  width: 100%;
  height: 18.125rem;
  object-fit: cover;
  object-position: center;
  transition-property: transform;
  transition-duration: 300ms;
}

.about-section__image-wrapper:hover .about-section__image {
  transform: scale(1.1);
}

@media (min-width: 640px) {
  .about-section__approaches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .about-section {
    margin-top: 4.75rem;
  }

  .about-section__approach-title {
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .about-section {
    margin-top: 4.375rem;
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }

  .about-section__intro,
  .about-section__approaches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-section__title,
  .about-section__text {
    grid-column: span 2 / span 2;
  }

  .about-section__article {
    margin-bottom: 2.5rem;
  }

  .about-section__approaches {
    gap: 1.25rem;
    margin-top: 10.875rem;
  }

  .about-section__image {
    max-width: 26.875rem;
  }
}

.about-us__section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.875rem;
}

@media (min-width: 768px) {
  .about-us__section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 3.75rem;
  }
}

.open-doors__grid {
  display: none;
}

@media (min-width: 768px) {
  .open-doors__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.approaches-list__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.approaches-list__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.approaches-list__item {
  display: flex;
  justify-content: flex-start;
}

.approaches-list__image-group {
  overflow: hidden;
}

.approaches-list__image {
  object-fit: cover;
  object-position: center;
}

.approaches-list__image--desktop {
  display: none;
  width: 26.875rem;
  height: 18.125rem;
  transition-property: transform;
  transition-duration: 300ms;
}

.approaches-list__image-group:hover .approaches-list__image--desktop {
  transform: scale(1.1);
}

.approaches-list__content {
  width: 100%;
  max-width: 54.375rem;
  display: flex;
  flex-wrap: wrap;
}

.approaches-list__main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.approaches-list__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.approaches-list__mobile-content {
  border-left: 1px solid #464749;
  height: 100%;
  padding-left: 2.5rem;
}

.approaches-list__image--mobile {
  display: block;
  width: 100%;
  height: 18.125rem;
}

.approaches-list__paragraph {
  width: 100%;
  max-width: 22.875rem;
}

.approaches-list__paragraph--mobile {
  display: block;
  margin-top: 1.25rem;
}

.approaches-list__paragraph--desktop {
  display: none;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .approaches-list__items {
    gap: 3.75rem;
  }

  .approaches-list__title {
    font-size: 3.75rem;
    margin-bottom: 2.5rem;
  }

  .approaches-list__image--mobile {
    height: auto;
  }
}

@media (min-width: 1024px) {
  .approaches-list__inner {
    gap: 50px;
  }
}

@media (min-width: 1280px) {
  .approaches-list__items {
    gap: 1.25rem;
  }

  .approaches-list__item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
  }

  .approaches-list__content {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .approaches-list__mobile-content {
    padding-left: 0;
  }

  .approaches-list__image--desktop {
    display: block;
  }

  .approaches-list__image--mobile,
  .approaches-list__paragraph--mobile {
    display: none;
  }

  .approaches-list__paragraph--desktop {
    display: block;
    margin-top: 0;
  }
}