.about__inner {
  padding-top: 4em;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .about__inner {
    padding: 3em 1.25em 0;
  }
}
.about__title {
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .about__title {
    margin-bottom: 3.75em;
  }
}
.about__text {
  text-align: center;
  margin-bottom: 3.125em;
}
@media (max-width: 768px) {
  .about__text {
    text-align: left;
    font-size: 0.875em;
    margin-bottom: 1.875em;
  }
}
.about__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}
@media (max-width: 768px) {
  .about__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875em;
    margin-bottom: 2.5em;
  }
}
.about__link {
  width: 25%;
  max-width: 240px;
}
@media (max-width: 768px) {
  .about__link {
    width: 100%;
    max-width: 100%;
  }
}
.about__link:nth-child(2n) {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .about__link:nth-child(2n) {
    margin-top: 0;
  }
}
.about__link a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about__link a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.about__link a:hover .about__link-title {
  background-color: #1B2F6C;
}
.about__link-image img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4/5;
}
@media (max-width: 768px) {
  .about__link-image img {
    aspect-ratio: 3/2;
  }
}
.about__link-title {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 8px 0 8px 0;
  font-size: 1.125em;
  font-weight: bold;
  color: #ffffff;
  padding: 0.5em 1em;
  background-color: #566272;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.555em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .about__link-title {
    font-size: 0.875em;
    padding: 1em;
  }
}
.about__link-title::after {
  content: "";
  display: block;
  width: 0.658125em;
  height: 1.150625em;
  background: url(../img/common/icons/triangle-white.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .about__link-title::after {
    width: 8.31px;
    height: 14.5px;
  }
}
.about__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 41px;
}
@media (max-width: 768px) {
  .about__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.about__btn {
  width: 50%;
  max-width: 222px;
}
@media (max-width: 768px) {
  .about__btn {
    width: 100%;
    max-width: 100%;
  }
}