@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@200..900&family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swa");
body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  background-color: #fcf8ed;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

:root {
  --z-index-header: 1000;
  --z-index-nav-menu: 10000;
  --z-index-nav-toggle: 10001;
  --z-index-landing: 10002;
}

.site__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: var(--z-index-header);
}
@media (max-width: 960px) {
  .site__header {
    padding: 1rem;
  }
}
.site__header #logo img {
  height: 3rem;
}
.site__header #nav-toggle {
  background-color: #ffe5c3;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border-radius: 100vw;
  z-index: var(--z-index-nav-toggle);
  cursor: pointer;
}
@media (max-width: 960px) {
  .site__header #nav-toggle {
    padding: 0.5rem 1.25rem;
  }
}
.site__header #nav-toggle > span {
  color: #525252;
  font-size: 1rem;
}
.site__header #nav-toggle.open .bar span:nth-child(1) {
  transform: translateY(0.5625rem) rotateZ(225deg);
}
.site__header #nav-toggle.open .bar span:nth-child(2) {
  transform: translateY(0) rotate(-225deg);
}
.site__header #nav-toggle.open .bar span:nth-child(3) {
  transform: translateY(-0.5625rem) rotate(225deg);
}
.site__header #nav-toggle .bar {
  width: 2rem;
  display: grid;
  gap: 0.375rem;
}
.site__header #nav-toggle .bar span {
  background-color: #FFAF50;
  height: 0.1875rem;
  transform-origin: center;
  transition: 0.3s;
}
.site__header #nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 20rem);
  height: 100dvh;
  background-color: #ffe5c3;
  padding: 12rem 1.5rem;
  transition: 0.3s ease-in-out;
  z-index: var(--z-index-nav-menu);
  transform: translateX(100%);
}
.site__header #nav.open {
  display: block;
  transform: translateX(0);
}
.site__header #nav ul {
  list-style: none;
  padding: 0;
}
.site__header #nav ul li {
  border-block-end: 1px solid #ffffff;
}
.site__header #nav ul li a {
  display: block;
  text-decoration: none;
  color: #525252;
  font-size: 2rem;
  line-height: 2;
  padding: 0.5rem 2.5rem 0.25rem;
}

#landing {
  background-color: #fcf8ed;
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  min-height: 100dvh;
  z-index: var(--z-index-landing);
}
@media (max-width: 960px) {
  #landing {
    grid-template-areas: "bg" "title";
    padding: 4rem 2rem;
  }
}
#landing .bg {
  grid-area: stack;
  max-width: min(60rem, 80vw);
  max-height: min(60rem, 100dvh);
  aspect-ratio: 1/1;
}
@media (max-width: 960px) {
  #landing .bg {
    grid-area: bg;
    width: 100%;
    transform: scale(1.2);
  }
}
#landing .bg img {
  width: 100%;
  height: 100%;
}
#landing .en-head {
  font-family: "Bodoni Moda", serif;
}
#landing .title {
  grid-area: stack;
  color: #525252;
  justify-self: start;
  align-self: end;
  z-index: 1;
  padding: 4rem 3rem;
}
@media (max-width: 960px) {
  #landing .title {
    grid-area: title;
    padding: 0;
  }
}
#landing .title h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Noto Serif TC", serif;
  width: min(100%, 34rem);
  margin-block-end: 3rem;
}
@media (max-width: 960px) {
  #landing .title h2 {
    width: min(100%, 19rem);
    font-size: 1.25rem;
    margin-block-end: 1.5rem;
  }
}
#landing .title p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Noto Sans TC", sans-serif;
  width: min(100%, 28rem);
}
@media (max-width: 960px) {
  #landing .title p {
    width: min(100%, 19rem);
    font-size: 1.125rem;
  }
}

#kv {
  position: relative;
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  min-height: 100dvh;
  background-image: url(img/home/kv/main-kv.jpg);
  background-size: cover;
  background-position: center bottom 3rem;
  background-repeat: no-repeat;
  contain: paint;
  padding: 4rem 4rem 6rem;
}
#kv .door {
  position: absolute;
  bottom: 4.5rem;
  right: -1rem;
  width: min(20vw, 30rem);
  aspect-ratio: 115/150;
  --door-parallax-y: 0px;
  -webkit-mask-image: url(img/home/kv/door.svg);
          mask-image: url(img/home/kv/door.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  overflow: hidden;
  will-change: transform;
}
#kv .door::before {
  content: "";
  position: absolute;
  inset: -150px;
  background-image: url(img/home/kv/sky.jpg);
  background-size: 150% 150%;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, var(--door-parallax-y), 0);
  will-change: transform;
}
#kv .title {
  grid-area: stack;
  color: #525252;
  width: min(100%, 34rem);
}
#kv .title h3 {
  margin-top: -5rem;
  color: #FFAF50;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: end;
}
@media (max-width: 960px) {
  #kv .title h3 {
    font-size: 2rem;
    margin-top: 0rem;
  }
}
#kv .title h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  font-family: "Noto Serif TC", serif;
  margin-block-end: 1.5rem;
}
#kv .title p {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.75;
  font-family: "Noto Sans TC", sans-serif;
}

#service {
  padding: 4rem 2rem;
}
#service .sec__wrapper {
  width: min(100%, 80rem);
  margin: 0 auto;
}
#service .sec__wrapper .title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5rem 0 5rem auto;
  color: #FFAF50;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 960px) {
  #service .sec__wrapper .title {
    font-size: 1.5rem;
    font-size: 700;
    text-align: center;
    margin-block-end: 2rem;
  }
}
#service .sec__wrapper .service__list {
  display: grid;
  gap: 10rem;
  width: min(87.5%, 70rem);
  margin: auto;
}
@media (max-width: 960px) {
  #service .sec__wrapper .service__list {
    gap: 3rem;
    width: 100%;
  }
}
#service .sec__wrapper .service__list article {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
}
@media (max-width: 960px) {
  #service .sec__wrapper .service__list article {
    grid-template-columns: 1fr;
  }
}
#service .sec__wrapper .service__list article .txt h3 {
  color: #FFAF50;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 600;
}
#service .sec__wrapper .service__list article .txt h4 {
  color: #44464D;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  margin-block-end: 0.5rem;
}
#service .sec__wrapper .service__list article .txt p {
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 400;
  color: #44464D;
  padding: 0 1rem 0 4rem;
}
@media (max-width: 960px) {
  #service .sec__wrapper .service__list article .txt p {
    padding: 0;
  }
}

#team {
  padding: 4rem 2rem;
}
#team .sec__wrapper {
  width: min(100%, 80rem);
  margin: 0 auto;
}
#team .sec__wrapper .title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5rem auto 5rem 0;
  color: #525252;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: start;
}
@media (max-width: 960px) {
  #team .sec__wrapper .title {
    font-size: 1.5rem;
    font-size: 700;
    text-align: center;
    margin-block-end: 2rem;
  }
}
#team .sec__wrapper .team__wrapper {
  display: grid;
  grid-template-columns: 180fr 288fr 484fr 198fr;
  align-items: end;
  -moz-column-gap: 4vw;
       column-gap: 4vw;
}
@media (max-width: 960px) {
  #team .sec__wrapper .team__wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
  }
}
#team .sec__wrapper .team__wrapper .content__column {
  display: grid;
  gap: 1rem;
}
#team .sec__wrapper .team__wrapper .content__column h3 {
  color: #FFAF50;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 960px) {
  #team .sec__wrapper .team__wrapper .content__column h3 {
    font-size: 1.25rem;
  }
}
#team .sec__wrapper .team__wrapper .content__column h4 {
  color: #44464D;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  margin-block-end: 0.5rem;
}
@media (max-width: 960px) {
  #team .sec__wrapper .team__wrapper .content__column h4 {
    font-size: 1rem;
  }
}
#team .sec__wrapper .team__wrapper .content__column .link {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
#team .sec__wrapper .team__wrapper .content__column .link:has(a) {
  text-align: end;
}
#team .sec__wrapper .team__wrapper .content__column .link a {
  text-decoration: none;
  color: rgba(113, 112, 113, 0.5019607843);
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
#team .sec__wrapper .team__wrapper .content__column .link a:hover {
  color: #FFAF50;
}
#team .sec__wrapper .team__wrapper .content__column p {
  color: #44464D;
  font-size: 0.9375rem;
  line-height: 1.75;
}
#team .sec__wrapper .team__wrapper .content__column img {
  filter: grayscale(1);
  transition: 0.3s ease-in-out;
}
#team .sec__wrapper .team__wrapper .content__column img:hover {
  filter: grayscale(0);
}
#team .sec__wrapper .team__wrapper .content__column .caption[end] {
  text-align: end;
}
#team .sec__wrapper .team__wrapper .content__column .caption h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  color: #FFAF50;
}
@media (max-width: 960px) {
  #team .sec__wrapper .team__wrapper .content__column .caption h3 {
    font-size: 1rem;
  }
}
#team .sec__wrapper .team__wrapper .content__column .caption h4 {
  color: #44464D;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 960px) {
  #team .sec__wrapper .team__wrapper .content__column .caption h4 {
    font-size: 0.875rem;
  }
}

#project-slider {
  padding: 4rem 0;
}
#project-slider .sec__wrapper {
  width: min(100%, 90rem);
  margin: 0 auto;
  --swiper-navigation-sides-offset: 0;
  --swiper-navigation-top-offset: 0;
  --swiper-navigation-size: 4rem;
}
#project-slider .sec__wrapper .swiper {
  padding: 4rem 0 0;
}
#project-slider .sec__wrapper .swiper .swiper-wrapper .swiper-slide {
  width: 20rem;
  margin-right: 1.5rem;
}
@media (max-width: 960px) {
  #project-slider .sec__wrapper .swiper .swiper-wrapper .swiper-slide {
    width: min(36%, 14rem);
    margin-right: 1rem;
  }
}
#project-slider .sec__wrapper .swiper .swiper-wrapper .swiper-slide a {
  display: block;
  width: 100%;
  aspect-ratio: 380/591;
  overflow: hidden;
}
#project-slider .sec__wrapper .swiper .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: grayscale(0.5);
  transition: 0.3s ease-in-out;
}
#project-slider .sec__wrapper .swiper .swiper-wrapper .swiper-slide:hover a img {
  width: 105%;
  height: 105%;
  filter: grayscale(0);
}
#project-slider .sec__wrapper .swiper .swiper-button-next,
#project-slider .sec__wrapper .swiper .swiper-button-prev {
  transform: translateY(0);
  margin-top: 0;
}
#project-slider .sec__wrapper .swiper .swiper-button-next::after,
#project-slider .sec__wrapper .swiper .swiper-button-prev::after {
  display: none;
}
@media (max-width: 960px) {
  #project-slider .sec__wrapper .swiper .swiper-button-next {
    right: 0.5rem;
  }
}
#project-slider .sec__wrapper .swiper .swiper-button-prev {
  left: auto;
  right: 4rem;
}
@media (max-width: 960px) {
  #project-slider .sec__wrapper .swiper .swiper-button-prev {
    right: 4.5rem;
  }
}
#project-slider .sec__wrapper .swiper .swiper-button-prev img {
  transform: rotateZ(180deg);
}

#marquee {
  color: #717071;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 6.5rem;
  margin-top: 2rem;
  --scroll-start: 110vw;
  --scroll-end: -100%;
}
@media (max-width: 960px) {
  #marquee {
    height: 3rem;
  }
}
#marquee p {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Noto Serif TC", serif;
  padding: 0.75rem 0;
  min-width: 100%;
  line-height: 1.5;
  display: flex;
  text-wrap: nowrap;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
}
@media (max-width: 960px) {
  #marquee p {
    animation: scroll 30s linear infinite;
  }
}
#marquee p:hover {
  animation-play-state: paused;
}
#marquee p span {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 500;
  padding: 1rem 1rem 1rem 0.375rem;
  text-wrap: nowrap;
  white-space: nowrap;
}
@media (max-width: 960px) {
  #marquee p span {
    font-size: 2rem;
    padding: 0rem 1rem 0 0.375rem;
  }
}
@keyframes scroll {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

.site__footer {
  /*.copyright {
      width: min(100%, 80rem);
      margin: 0 auto;
      padding: 1rem;
      display: flex;
      justify-content: space-between;

      @include for-mobile {
          flex-direction: column;
          align-items: center;
          gap: .5rem;
      }

      span {
          color: #717071;
          font-size: 1rem;
          line-height: 1.5;
      }
  } */
}
.site__footer .footer__wrapper {
  width: min(100%, 40rem);
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 960px) {
  .site__footer .footer__wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
  }
}
.site__footer .footer__wrapper .contact__link {
  text-decoration: none;
  grid-column: span 2;
  background-color: #8ACDC6;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 4rem;
  border-radius: 100vw;
  color: #fff;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  transition: 0.3s;
}
@media (max-width: 960px) {
  .site__footer .footer__wrapper .contact__link {
    grid-column: span 1;
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }
}
.site__footer .footer__wrapper .contact__link:hover {
  background-color: #FFAF50;
}
.site__footer .footer__wrapper .contact__info {
  color: #717071;
  font-size: 1rem;
  line-height: 2.25;
  font-style: normal;
  padding: 2rem;
}
@media (max-width: 960px) {
  .site__footer .footer__wrapper .contact__info {
    font-size: 0.875rem;
    padding: 0;
  }
}
.site__footer .footer__wrapper .contact__qrcode {
  width: 16rem;
  padding: 4rem;
}
@media (max-width: 960px) {
  .site__footer .footer__wrapper .contact__qrcode {
    width: 10rem;
    padding: 1rem;
  }
}
.site__footer .footer__wrapper .contact__qrcode p {
  color: #717071;
  text-align: center;
}
.site__footer .copyright {
  width: min(100%, 80rem);
  margin: 0 auto 2rem;
  padding: 1rem;
  text-align: center;
}
@media (max-width: 960px) {
  .site__footer .copyright {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
.site__footer .copyright span {
  color: #717071;
  font-size: 1rem;
  line-height: 1.5;
}

#contact {
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  border-radius: 50%;
  z-index: var(--z-index-header);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.25s ease;
}
#contact:hover {
  transform: scale(1.2);
}
@media (max-width: 960px) {
  #contact {
    bottom: 2rem;
    right: 0.5rem;
  }
}
#contact a {
  position: relative;
  display: block;
  width: 10rem;
  aspect-ratio: 1/1;
  text-decoration: none;
}
@media (max-width: 960px) {
  #contact a {
    width: 6rem;
  }
}
#contact a img {
  position: absolute;
}
#contact a img:nth-child(2) {
  animation: rotate 20s linear infinite;
  animation-play-state: running;
}
#contact a img:nth-child(2):hover {
  animation-play-state: paused;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#projects_main {
  padding: 4rem 2rem;
}
#projects_main h1 {
  color: #000;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-block-end: 2rem;
}
#projects_main .project__list {
  width: min(100%, 80rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 2.5rem;
}
@media (max-width: 960px) {
  #projects_main .project__list {
    grid-template-columns: 1fr;
  }
}
#projects_main .project__list article {
  width: 100%;
  display: grid;
  gap: 1rem;
}
#projects_main .project__list article:hover .img {
  transition: 0.3s ease-in-out;
}
#projects_main .project__list article:hover .img img {
  transform: scale(1.025);
}
#projects_main .project__list article a {
  text-decoration: none;
}
#projects_main .project__list article a .img {
  position: relative;
  background-color: #f3edde;
  padding: 3rem;
  /*&::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3rem;
      height: .25rem;
      background-color:#d5ccb6;
      display: block;
      transition: .3s ease-in-out;
  } 
      */
}
#projects_main .project__list article a .img img {
  transition: 0.3s;
  filter: grayscale(1);
}
#projects_main .project__list article a .img img:hover {
  filter: grayscale(0);
}
#projects_main .project__list article a .img .id {
  position: absolute;
  top: 1rem;
  right: -1.5rem;
  color: #d5ccb6;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 700;
  padding: 0rem 1rem;
  writing-mode: vertical-rl;
}
#projects_main .project__list article a .img .id::after {
  position: absolute;
  top: 100%;
  right: 1rem;
  content: "o";
  display: block;
  width: 1rem;
  font-weight: 500;
  font-size: 1rem;
  color: #d5ccb6;
}
#projects_main .project__list article a .txt {
  padding: 0.75rem 0;
}
#projects_main .project__list article a .txt h3 {
  color: #333;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}
#projects_main .project__list article a .txt h4 {
  color: #717071;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 300;
}

.page__project.template-1 {
  padding: 8rem 2rem;
}
.page__project.template-1 .page__wrapper {
  width: min(100%, 80rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
}
@media (max-width: 960px) {
  .page__project.template-1 .page__wrapper {
    grid-template-columns: 1fr;
  }
}
.page__project.template-1 .page__wrapper .info h1 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
}
.page__project.template-1 .page__wrapper .info h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
}
.page__project.template-1 .page__wrapper .info .summary {
  color: #717071;
  font-size: 0.875rem;
  line-height: 1.75;
  white-space: pre-line;
  padding: 4rem 0 0;
}
.page__project.template-1 .page__wrapper .info .summary a {
  color: #8ACDC6;
  text-decoration: none;
  font-size: 0.75rem;
  border-bottom: #8ACDC6 1px solid;
  padding-bottom: 1px;
  transition: 0.3s ease-in-out;
  padding-top: 20px;
}
.page__project.template-1 .page__wrapper .info .summary a:hover {
  color: #FFAF50;
  border-bottom: #FFAF50 1px solid;
}
.page__project.template-1 .page__wrapper .content {
  padding: 5rem 0 0;
}
.page__project.template-1 .page__wrapper .content p {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  margin-block-end: 2rem;
}
.page__project.template-1 .page__wrapper .content a {
  color: #8ACDC6;
  text-decoration: none;
  font-size: 0.75rem;
  border-bottom: #8ACDC6 1px solid;
  padding-bottom: 1px;
  transition: 0.3s ease-in-out;
  padding-top: 20px;
}
.page__project.template-1 .page__wrapper .content a:hover {
  color: #FFAF50;
  border-bottom: #FFAF50 1px solid;
}
.page__project.template-2 {
  padding: 8rem 2rem;
}
.page__project.template-2 .page__wrapper {
  width: min(100%, 80rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
}
@media (max-width: 960px) {
  .page__project.template-2 .page__wrapper {
    grid-template-columns: 1fr;
  }
}
.page__project.template-2 .page__wrapper .info h1 {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 600;
  color: #000;
}
.page__project.template-2 .page__wrapper .info h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
}
.page__project.template-2 .page__wrapper .info .summary {
  color: #717071;
  font-size: 0.875rem;
  line-height: 1.75;
  white-space: pre-line;
}
.page__project.template-2 .page__wrapper .info .summary a {
  color: #8ACDC6;
  text-decoration: none;
  font-size: 0.75rem;
  border-bottom: #8ACDC6 1px solid;
  padding-bottom: 1px;
  transition: 0.3s ease-in-out;
  padding-top: 20px;
}
.page__project.template-2 .page__wrapper .info .summary a:hover {
  color: #FFAF50;
  border-bottom: #FFAF50 1px solid;
}
.page__project.template-2 .page__wrapper .content {
  padding: 5rem 0 0;
}
.page__project.template-2 .page__wrapper .content p {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  margin-block-end: 2rem;
}
.page__project.template-2 .page__wrapper .gallery {
  grid-column: 1/-1;
  display: grid;
  justify-items: center;
  gap: 2rem;
}
.page__project.template-2 .page__wrapper .gallery img {
  width: min(80%, 50rem);
  height: auto;
}
@media (max-width: 960px) {
  .page__project.template-2 .page__wrapper .gallery img {
    width: min(90%, 50rem);
  }
}
.page__project .back {
  padding: 2rem 0 1rem;
  transition: 0.3s ease-in-out;
  width: 100px;
}
.page__project .back:hover {
  filter: brightness(0);
}/*# sourceMappingURL=style.css.map */