.about_page {
  position: relative;
  background-color: var(--color_0);
  padding: 15em 0;
}
@media screen and (max-width: 1023px) {
  .about_page {
    padding: 10em 0 5em 0;
  }
}
.about_page .content {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .about_page .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20rem;
  }
  .about_page .content .content_text {
    position: relative;
    line-height: 1;
    margin-top: 10em;
  }
  .about_page .content .content_text h1 {
    font-size: 6em;
    margin: 0;
    font-weight: 700;
    margin-bottom: 3rem;
  }
  .about_page .content .content_text h2 {
    font-size: 3.6em;
    margin: 0;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  .about_page .content .content_text h3 {
    font-size: 5.4em;
    margin: 0;
    font-weight: 400;
    margin-bottom: 2rem;
  }
  .about_page .content .content_text p {
    font-size: 3.6em;
    margin: 0;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  .about_page .content .content_text p:nth-last-child {
    margin-bottom: 3rem;
  }
  .about_page .content .content_text .block p:nth-last-of-type(1) {
    margin-bottom: 3rem;
  }
  .about_page .content .photo_list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about_page .content .photo_list img {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .about_page .content {
    display: flex;
    flex-direction: column;
  }
  .about_page .content .content_text {
    order: 1;
    position: relative;
    line-height: 1;
    margin-top: 5em;
  }
  .about_page .content .content_text h1 {
    font-size: 3.4em;
    margin: 0;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  .about_page .content .content_text h2 {
    font-size: 2.6em;
    margin: 0;
    font-weight: 400;
    margin-bottom: 1rem;
  }
  .about_page .content .content_text h3 {
    font-size: 3.2em;
    margin: 0;
    font-weight: 400;
    margin-bottom: 1rem;
  }
  .about_page .content .content_text p {
    font-size: 2.2em;
    margin: 0;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  .about_page .content .content_text p:nth-last-child {
    margin-bottom: 2rem;
  }
  .about_page .content .content_text .block p:nth-last-of-type(1) {
    margin-bottom: 1.5rem;
  }
  .about_page .content .photo_list {
    order: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .about_page .content .photo_list img {
    width: 100%;
    max-width: 100%;
  }
}
.about_page .history {
  position: relative;
  margin: 5em 0;
}
@media screen and (min-width: 1024px) {
  .about_page .history:before {
    position: absolute;
    content: '';
    width: 0.4em;
    background-color: var(--color_2);
    height: 100%;
    display: block;
    left: calc(50%);
    transform: translateX(-50%);
    border-radius: 1em;
  }
  .about_page .history .item {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8em;
    padding: 4em 0;
  }
  .about_page .history .item .info {
    position: relative;
    width: 75%;
    margin-left: auto;
  }
  .about_page .history .item .info:before {
    position: absolute;
    content: '';
    width: 3em;
    height: 3em;
    border-radius: 100%;
    background-color: var(--color_2);
    right: -4em;
    top: 4em;
    transform: translateX(50%) translateY(-50%);
  }
  .about_page .history .item .info:after {
    position: absolute;
    content: '';
    width: 100%;
    border-bottom: 0.3em dashed var(--color_2);
    top: 4em;
    left: 4em;
  }
  .about_page .history .item .info .ico {
    position: relative;
    aspect-ratio: 1/1;
    width: 8em;
    height: 8em;
    background-color: var(--color_2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .about_page .history .item .info .ico svg {
    position: relative;
    width: 4em;
    fill: var(--color_0);
  }
  .about_page .history .item .info .year {
    position: relative;
    font-size: 6em;
    font-weight: 700;
    line-height: 1;
    color: var(--color_2);
    text-align: right;
    padding: 2rem 0;
  }
  .about_page .history .item .info .text {
    position: relative;
    font-size: 2.23em;
    line-height: 1;
    color: var(--color_4);
    text-align: right;
    margin-left: auto;
  }
  .about_page .history .item .picture {
    position: relative;
    overflow: hidden;
    display: flex;
    border-radius: 0.5rem;
  }
  .about_page .history .item .picture img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .about_page .history .item:nth-child(even) {
    position: relative;
  }
  .about_page .history .item:nth-child(even) .info {
    position: relative;
    order: 1;
    margin: 0;
    margin-right: auto;
  }
  .about_page .history .item:nth-child(even) .info:before {
    right: auto;
    left: -4em;
    transform: translateX(-50%) translateY(-50%);
  }
  .about_page .history .item:nth-child(even) .info:after {
    left: -4em;
  }
  .about_page .history .item:nth-child(even) .info .ico {
    position: relative;
    aspect-ratio: 1/1;
    width: 8em;
    height: 8em;
    background-color: var(--color_2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    z-index: 1;
  }
  .about_page .history .item:nth-child(even) .info .ico svg {
    position: relative;
    width: 4em;
    fill: var(--color_0);
  }
  .about_page .history .item:nth-child(even) .info .year {
    position: relative;
    font-size: 6em;
    font-weight: 700;
    line-height: 1;
    color: var(--color_2);
    text-align: left;
    padding: 2rem 0;
  }
  .about_page .history .item:nth-child(even) .info .text {
    position: relative;
    font-size: 2.23em;
    line-height: 1;
    color: var(--color_4);
    text-align: left;
    margin: 0;
    margin-right: auto;
  }
  .about_page .history .item:nth-child(even) .picture {
    order: 0;
  }
}
@media screen and (max-width: 1023px) {
  .about_page .history:before {
    position: absolute;
    content: '';
    border-left: 0.4em dashed var(--color_2);
    display: block;
    top: 3em;
    left: 3em;
    bottom: 3em;
  }
  .about_page .history .item {
    position: relative;
    display: grid;
    gap: 2em;
    margin-bottom: 2em;
  }
  .about_page .history .item .info {
    position: relative;
    display: flex;
    flex-flow: wrap;
    gap: 2em;
  }
  .about_page .history .item .info .ico {
    position: relative;
    aspect-ratio: 1/1;
    width: 6em;
    height: 6em;
    background-color: var(--color_2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .about_page .history .item .info .ico svg {
    position: relative;
    width: 50%;
    fill: var(--color_0);
  }
  .about_page .history .item .info .year {
    position: relative;
    font-size: 4em;
    font-weight: 700;
    line-height: 1;
    color: var(--color_2);
    text-align: right;
    margin: auto 0;
  }
  .about_page .history .item .info .text {
    position: relative;
    font-size: 2.23em;
    line-height: 1;
    color: var(--color_4);
    margin-left: 3em;
  }
  .about_page .history .item .info .text br {
    display: none;
  }
  .about_page .history .item .picture {
    position: relative;
  }
  .about_page .history .item .picture img {
    max-width: 100%;
  }
}
.about_page .company_overview {
  position: relative;
}
.about_page .company_overview .title {
  position: relative;
  font-size: 9em;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  margin-bottom: 4rem;
  color: var(--color_2);
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .about_page .company_overview .title {
    font-size: 2.8em;
    margin-bottom: 2rem;
  }
}
.about_page .company_overview .list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4em;
}
.about_page .company_overview .list .item {
  position: relative;
}
.about_page .company_overview .list .item .picture {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 0.5em;
}
.about_page .company_overview .list .item .picture:before {
  position: absolute;
  content: '';
  background-color: var(--color_2);
  opacity: 0.4;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.about_page .company_overview .list .item .picture img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_page .company_overview .list .item .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4em;
  color: var(--color_0);
  display: flex;
  flex-direction: column;
}
.about_page .company_overview .list .item .info .ico {
  position: relative;
}
.about_page .company_overview .list .item .info .ico svg {
  fill: var(--color_1);
  width: 8em;
  height: auto;
}
.about_page .company_overview .list .item .info .number {
  margin-top: auto;
  position: relative;
  font-size: 5.05em;
  line-height: 1;
}
.about_page .company_overview .list .item .info .text {
  position: relative;
  font-size: 3.615em;
  line-height: 1.2;
  margin-bottom: auto;
}
@media screen and (max-width: 1023px) {
  .about_page .company_overview .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em;
  }
  .about_page .company_overview .list .item {
    aspect-ratio: 1/1;
  }
  .about_page .company_overview .list .item .picture {
    height: 100%;
  }
  .about_page .company_overview .list .item .info {
    padding: 2em;
  }
  .about_page .company_overview .list .item .info .ico {
    position: relative;
  }
  .about_page .company_overview .list .item .info .ico svg {
    width: 6em;
  }
  .about_page .company_overview .list .item .info .number {
    font-size: 3.8em;
  }
  .about_page .company_overview .list .item .info .text {
    font-size: 2.4em;
  }
}
.about_page .our_partners {
  position: relative;
  margin-top: 10em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4em;
}
.about_page .our_partners .info {
  position: relative;
}
.about_page .our_partners .info .header {
  position: relative;
  display: flex;
  gap: 2em;
}
.about_page .our_partners .info .header .ico {
  position: relative;
  margin: auto 0;
}
.about_page .our_partners .info .header .ico svg {
  width: 8em;
}
.about_page .our_partners .info .header .title {
  position: relative;
  font-size: 9em;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}
.about_page .our_partners .info .text {
  position: relative;
  padding: 0 7rem;
  font-size: 2.2em;
  font-weight: 400;
  line-height: 1.25;
}
.about_page .our_partners .logo_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8em;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.about_page .our_partners .logo_list .item {
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.about_page .our_partners .logo_list .item img {
  position: relative;
}
.about_page .our_partners .logo_list .item svg {
  position: relative;
  fill: var(--color_4);
  width: 100%;
  height: auto;
  max-width: 260px;
}
.about_page .our_partners .logo_list .item:hover svg {
  fill: var(--color_3);
}
@media screen and (max-width: 1023px) {
  .about_page .our_partners {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em;
    margin: 5em 0;
  }
  .about_page .our_partners .info {
    position: relative;
  }
  .about_page .our_partners .info .header {
    position: relative;
    gap: 1rem;
    margin-bottom: 1em;
  }
  .about_page .our_partners .info .header .ico {
    position: relative;
  }
  .about_page .our_partners .info .header .ico svg {
    width: 5em;
  }
  .about_page .our_partners .info .header .title {
    font-size: 3.3em;
    margin: auto 0;
  }
  .about_page .our_partners .info .text {
    padding: 0;
    font-size: 1.6em;
  }
  .about_page .our_partners .logo_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4em;
  }
  .about_page .our_partners .logo_list .item svg {
    min-width: 200px;
  }
}
