.about-company {
  background: #fff;
  padding: 60px 43px;
  border-radius: 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.about-company__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  @media screen and (width <= 780px) {
    gap: 40px;
  }
}

.span_btn {
  background: none;
  border: 1px solid #14141433;
  color: #0C0B0B;
  font-size: 18px;
  padding: 8px 17px;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: max-content;
  height: 40px;
  text-align: left;

  .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #d9003c;
    border-radius: 50%;
    margin-left: 8px;
  }
}

.about-company__divider {
  width: 1px;
  height: 132px;
  background: rgba(20, 20, 20, 0.2);
  margin: 0 0 0 0;
  align-self: flex-start;
}

.about-company__mission {
  font-size: clamp(16px,3vw,20px);
  line-height: 1.2;
  color: #0C0B0B;
  letter-spacing: -1px;
}

.about-company__numbers {
  width: 100%;
  max-width: 70%;
  min-width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(40px, 3vw, 185px);

  .about-company__title {
    font-weight: 600;
    font-size: clamp(24px, 3vw, 42px);
    line-height: clamp(25px, 3vw, 44px);
    letter-spacing: -0.42px;
  }

  @media screen and (max-width: 780px) {
    max-width: 100%;
  }
}

.about-company__numbers-label {
  background: #D31C21;
  border-radius: 5px;
  padding: 8px 17px;
  color: #fff;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 400;
  letter-spacing: -1px;
  width: fit-content;
  margin-bottom: 24px;
}

.about-company__numbers-list {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content:space-between;
  @media (width <= 780px) {
    width: 100%;
    scrollbar-width: none;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-scroll-snap-type: mandatory;
    scroll-snap-type: x mandatory;
    flex-flow: nowrap;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    margin: 0;
    &::-webkit-scrollbar {
      width: 0;
    }
    .about-company__numbers-item{
      width: 100%;
      max-width: 90%;
      min-width: 90%;
    }
  }
}

.about-company__numbers-item {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 460px;
}

.about-company__numbers-value {
  font-size: clamp(64px, 5.8vw, 120px);
  font-weight: 600;
  color: #0C0B0B;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 19px;
}

.about-company__numbers-desc {
  font-size: clamp(16px, 3vw, 18px);
  color: #0C0B0B;
  font-weight: 400;
  line-height: 21.6px;
  letter-spacing: -0.18px;
}

.about-company__photos {
  position: relative;
  margin-top: 48px;
  width: 408px;
  height: 241px;
}

.about-company__photo {
  > img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  @media screen and (max-width: 780px) {
    margin-bottom: 40px;
  }
}

.about-company__photo-bg {
  position: absolute;
  left: 0;
  top: -84px;
  width: 440px;
  height: 440px;
  z-index: 1;
}

.about-company__photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-company__photo-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 415px;
  height: 242px;
  z-index: 2;
}

.about-company__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.mobile {
  display: none;
}

@media (max-width: 780px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}

@media (max-width: 1200px) {
  .about-company {
    padding: 24px 10px;
  }
  .about-company__photos {
    width: 100%;
    height: auto;
  }
}

}
