.new_mission {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.new_mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.new_mission__content {
  min-width: 0 !important;
  max-width: 100% !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-right: 20px;
}
.new_mission__content_item h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #1c1c20;
  margin-bottom: 16px;
}
.new_mission__content_item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.new_mission__content_item img {
  max-width: 64px;
}
.new_mission__content_item > *:last-child {
  margin-bottom: 0;
}
.new_mission__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 7px 21px;
  transition: 0.3s;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #1c1c20;
  background: #34cca9;
  border: 1px solid #1c1c20;
  border-radius: 6px;
  margin-top: 32px;
}
.new_mission__btn:hover {
  background: #1c1c20;
  color: #fff;
}
.new_mission__quotes {
  min-width: 0 !important;
  max-width: 100% !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.new_mission__quotes_item {
  padding: 32px;
  background: #fafafa;
  border-radius: 12px;
}
.new_mission__quotes_item-header {
  display: flex;
  margin-bottom: 24px;
}
.new_mission__quotes_item-header-img {
  margin-right: 24px;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.new_mission__quotes_item-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new_mission__quotes_item-header-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #1c1c20;
  margin-bottom: 4px;
}
.new_mission__quotes_item-header-position {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #7d7d82;
}
.new_mission__quotes_item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #525252;
}

@media (max-width: 1024px) {
  .new_mission__inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .new_mission__column {
    text-align: center;
  }
  .new_mission__content {
    gap: 64px;
    padding-right: 0;
  }
  .new_mission__content_item {
    text-align: center;
  }
  .new_mission__content_item img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 580px) {
  .new_mission {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .new_mission__content {
    gap: 40px;
  }
  .new_mission__content_item h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .new_mission__quotes_item-header-name {
    font-size: 18px;
    line-height: 24px;
  }
  .new_mission__quotes_item-header-position {
    font-size: 14px;
    line-height: 20px;
  }
  .new_mission__quotes_item-text {
    font-size: 14px;
    line-height: 20px;
  }
}