.c-media-read-block {
  margin-bottom: 0;
  gap: 0;
}
.c-media-read-block__image {
  border-radius: 0;
  align-self: unset;
}
.c-media-read-block__image img {
  height: 100%;
  object-fit: cover;
}
.c-media-read-block__content {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 80px;
  padding-right: 80px;
}
@media screen and (max-width: 768px) {
  .c-media-read-block__content {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-media-read-block__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .c-media-read-block__text {
    font-size: 14px;
  }
}

.border-box {
  border: 1px solid #d5dddf;
  border-radius: 5px;
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 10px;
  max-width: 400px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .border-box {
    max-width: 100%;
    min-height: auto;
    height: auto;
  }
}
.border-box__content {
  padding-left: 20px;
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .border-box__content {
    font-size: 18px;
  }
}
.border-box::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(45deg, #caefff, #fbfec1);
  border-radius: 10px;
}
.border-box:last-child {
  max-width: 100%;
  border: 0;
  border-radius: 0;
  padding-left: 0;
}
.border-box:last-child::before {
  display: none;
}
.border-box:last-child * {
  font-size: 16px;
  padding-left: 0;
}

.two-images {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .two-images {
    border-radius: 5px;
  }
}
.two-images > * {
  flex: 1;
}

.person__head {
  display: flex;
  margin-bottom: 74px;
}
@media screen and (max-width: 768px) {
  .person__head {
    flex-flow: column;
    margin-bottom: 37px;
  }
}
.person__head ul {
  margin-left: 206px;
}
@media screen and (max-width: 768px) {
  .person__head ul {
    margin-left: 0;
  }
}
.person__head ul li {
  line-height: 2;
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 0.75em;
}
@media screen and (max-width: 768px) {
  .person__head ul li {
    line-height: 1.6;
    font-size: 18px;
  }
}
.person__head ul li::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #007cc5;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .person__head ul li::after {
    width: 5px;
    height: 5px;
  }
}

.colored-section {
  background: linear-gradient(45deg, #caefff, #fbfec1);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}