.about__inner {
  display: grid;
  grid-template-columns: max-content 1fr auto;
  gap: 22px 25px;
  grid-template-areas: "title subtitle logo" "description link logo";
}
.about__title {
  grid-area: title;
}
.about__title svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__subtitle {
  grid-area: subtitle;
}
.about__subtitle h2 {
  font-size: calc(32px + 32 * (100vw - 360px) / 1560);
}
.about__description {
  grid-area: description;
  max-width: 450px;
  align-self: end;
  color: #747474;
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.about__description p {
  margin: 0;
  background-color: #fff;
}
.about__link {
  grid-area: link;
  position: relative;
  max-width: 824px;
  width: 100%;
  height: 451px;
  display: grid;
}
.about__link-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50px;
  overflow: hidden;
}
.about__link-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__link-button {
  position: relative;
  align-self: end;
}
.about__link-button .button {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  max-width: 332px;
}
.about__link .about-substract-2 {
  display: none;
}
.about__link .about-substract-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 395px;
  height: 148px;
}
.about__logo {
  grid-area: logo;
  max-width: 439px;
  width: 100%;
  align-self: end;
  position: relative;
  aspect-ratio: 439/605;
  max-width: 100%;
  height: 605px;
}
.about__logo-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 82%;
  height: 63%;
}
.about__logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  background-image: url(../images/logo-front-letter-colorful.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.about__logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background-image: url(../images/logo-front-letter-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.about__logo:hover::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1700px) {
  .about__inner {
    grid-template-columns: 3fr 5fr auto;
    grid-template-areas: "title subtitle subtitle" "description link logo";
  }
  .about__link {
    height: 379px;
  }
  .about__logo {
    height: 379px;
    aspect-ratio: 283/389;
  }
}
@media (max-width: 1300px) {
  .about__link .about-substract-1 {
    width: 305px;
    height: 115px;
  }
  .about__link-button .button {
    max-width: 255px;
  }
}
@media (max-width: 1100px) {
  .about__inner {
    grid-template-areas: "title subtitle subtitle" "title description description" "link link logo";
    gap: 0 16px;
    grid-template-columns: 4fr 300px 2fr;
  }
  .about__description {
    max-width: unset;
    font-size: 16px;
  }
  .about__link {
    height: 300px;
    z-index: 0;
    max-width: unset;
    align-self: end;
  }
  .about__link-image {
    height: 380px;
    top: auto;
    bottom: 0;
  }
  .about__link .about-substract-2 {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 345px;
    height: auto;
  }
  .about__description {
    position: relative;
    z-index: 5;
    padding-bottom: 26px;
  }
  .about__description, .about__subtitle {
    padding-left: 10px;
  }
  .about__subtitle {
    margin-bottom: 6px;
  }
  .about__subtitle h2 {
    font-size: calc(20px + 44 * (100vw - 360px) / 1560);
  }
  .about__logo {
    height: 300px;
    width: auto;
  }
}
@media (max-width: 1000px) {
  .about__link-button .button {
    max-width: 200px;
  }
  .about__link .about-substract-1 {
    width: 240px;
    height: 95px;
  }
}
@media (max-width: 850px) {
  .about__logo, .about__subtitle {
    display: none;
  }
  .about__inner {
    grid-template-areas: "title description" "link link";
    gap: 0 16px;
    grid-template-columns: 1fr 300px;
    grid-template-rows: auto 185px;
  }
  .about__link {
    height: 160px;
  }
  .about__link-image {
    height: 230px;
  }
  .about__link .about-substract-2 {
    width: 325px;
  }
  .about__description {
    padding-bottom: 0;
    padding-left: 28px;
  }
}
@media (max-width: 767px) {
  .about__link-image {
    height: 285px;
  }
  .about__link-image img {
    height: 130%;
  }
  .about__link .about-substract-2 {
    width: 355px;
  }
  .about__inner {
    grid-template-columns: 1fr 333px;
    grid-template-rows: auto 225px;
  }
}
@media (max-width: 640px) {
  .about__inner {
    grid-template-areas: "logo title" "logo description" "link link";
    grid-template-columns: 23vw 62vw;
    grid-template-rows: max-content max-content 215px;
    gap: 0 5vw;
  }
  .about__logo {
    display: block;
    height: auto;
    width: 27vw;
    align-self: start;
  }
  .about__description {
    padding: 26px 0 0 0;
    background-color: #fff;
  }
  .about__description p {
    max-width: 290px;
  }
  .about__link-image img {
    height: 155%;
  }
  .about__link .about-substract-2 {
    width: 74vw;
  }
}
@media (max-width: 480px) {
  .about__inner {
    grid-template-columns: 28vw 60vw;
    grid-template-rows: max-content max-content 234px;
    gap: 0 4vw;
  }
  .about__title {
    padding-top: 20px;
  }
  .about__description {
    padding: 20px 0 0 0;
    font-size: 14px;
  }
  .about__link-image {
    height: 275px;
  }
  .about__link-image img {
    height: 115%;
  }
  .about__link-button .button {
    max-width: 175px;
    height: 34px;
    font-size: 14px;
  }
  .about__link .about-substract-1 {
    width: 207px;
    height: 64px;
  }
}
@media (max-width: 400px) {
  .about__inner {
    grid-template-columns: 31vw 56vw;
    grid-template-rows: max-content max-content 212px;
  }
  .about__title {
    max-width: 176px;
    padding-top: 8px;
  }
  .about__description {
    padding: 10px 0 0 0;
  }
  .about__link-image {
    height: 250px;
  }
  .about__link .about-substract-2 {
    width: 68vw;
  }
  .about__logo {
    width: 33vw;
  }
}/*# sourceMappingURL=about.css.map */