.home-hero-content {
  display: flex;
  position: relative;
}
.home-hero-content > .content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 75.73vw;
  position: relative;
  z-index: 2;
  width: 100%;
}
.home-hero-content > .content > .name {
  color: var(--color-project-blue);
  font-size: 4.8vw;
  font-weight: 900;
}
.home-hero-content > .content > .title {
  color: var(--color-project-blue);
  font-size: 6.93vw;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.556;
}
.home-hero-content > .content > .title > .text {
  background-color: var(--color-white);
  display: inline;
}
.home-hero-content > .content > .lead {
  color: var(--color-project-blue);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.667;
}
.home-hero-content > .image > .group {
  display: grid;
  align-items: start;
  gap: 0.625rem;
  grid-template-columns: repeat(3, 1fr);
  line-height: 0;
  position: absolute;
  inset: 0 calc(var(--margin-side-small) * -1) auto auto;
  z-index: 1;
  width: calc(100vw - var(--margin-side-small));
}
.home-hero-content > .image > .group img {
  border-radius: 5px;
  height: auto;
  width: 100%;
}
.home-hero-content > .image > .group picture:nth-child(2) {
  margin-top: 20.83%;
}

.home-about {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.home-about > .image {
  aspect-ratio: 1/1;
  position: relative;
}
.home-about > .image .main {
  aspect-ratio: 1/1;
  height: auto;
  width: 76.3%;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.home-about > .image .sub {
  border-radius: 5px;
  height: auto;
  position: absolute;
  inset: auto 0 0 auto;
  width: 42.65%;
  z-index: 2;
}
.home-about > .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-service {
  background-color: var(--color-project-lavender);
  border-radius: 5px;
  padding: 0 0 2.5rem;
  position: relative;
}
.home-service > .inner {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin: 0 auto;
  padding: 0 var(--margin-side-small);
}
.home-service > .inner > .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-service > .inner > .image {
  order: -1;
  line-height: 0;
  margin-top: -1.25rem;
  margin-left: calc(var(--margin-side-small) * -1.375);
  width: calc(100% + var(--margin-side-small) * 2.75);
}

.home-news {
  display: grid;
  align-items: center;
  gap: 0;
  grid-template-areas: "title" "content" "button";
  grid-template-columns: 1fr;
}
.home-news > .title {
  grid-area: title;
}
.home-news > .content {
  grid-area: content;
}
.home-news > .button {
  grid-area: button;
  margin-top: 1.5rem;
}
@media screen and (min-width: 821px) and (max-width: 1100px) {
  .home-hero-content > .image > .group {
    right: calc(var(--margin-side) * -1) !important;
    width: calc(61.32% + var(--margin-side)) !important;
  }
}
@media screen and (min-width: 821px) and (max-width: 1000px) {
  .home-service > .inner > .image {
    right: calc(var(--margin-side) * -1) !important;
  }
}