:root {
  --background: #03041C;
  --text: #FFF;
  --works-item-text: #FFF;
  --accent: #CC3535;
  --accent-h: #FFF;
  --watermark-50: rgba(3, 4, 28, .5);
  --watermark-60: rgba(3, 4, 28, .6);
  --watermark-70: rgba(3, 4, 28, .7);
  --watermark-80: rgba(3, 4, 28, .8);
  --pagination: rgba(249, 250, 255, 0.5);
  --background-contact: #0B0C23;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #03041C;
    --text: #FFF;
    --works-item-text: #FFF;
    --accent: #CC3535;
    --accent-h: #FFF;
    --watermark-50: rgba(3, 4, 28, .5);
    --watermark-60: rgba(3, 4, 28, .6);
    --watermark-70: rgba(3, 4, 28, .7);
    --watermark-80: rgba(3, 4, 28, .8);
    --pagination: rgba(249, 250, 255, 0.5);
    --background-contact: #0B0C23;
  }
}
@media (prefers-color-scheme: light) {
  :root {
    --background: #F9FAFF;
    --text: #1C1D2A;
    --works-item-text: #FFF;
    --accent: #E21F1F;
    --accent-h: #1C1D2A;
    --watermark-50: rgba(249, 250, 255, .5);
    --watermark-60: rgba(249, 250, 255, .6);
    --watermark-70: rgba(249, 250, 255, .7);
    --watermark-80: rgba(249, 250, 255, .8);
    --pagination: rgba(3, 4, 28, .3);
    --background-contact: #F6E9E9;
  }
}
@font-face {
  font-family: "Gambarino-Regular";
  src: url("../src/fonts/Gambarino-Regular.woff2") format("woff2"), url("../src/fonts/Gambarino-Regular.woff") format("woff"), url("../src/fonts/Gambarino-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
/*

hero__pictures + draggable works + rest scss + nav

*/
* {
  margin: 0;
  margin-inline: 0;
  margin-block: 0;
  padding: 0;
  padding-inline: 0;
  padding-block: 0;
}

*::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--text);
  overflow-x: hidden;
}

button, a {
  cursor: pointer;
}

h2 {
  position: relative;
  font-size: 4.3rem;
  font-family: "Gambarino-Regular";
  letter-spacing: -0.129rem;
  font-weight: 400;
  line-height: 100%;
  padding: 1.6rem;
  background-color: var(--background);
  z-index: 99;
}

#works, #contact {
  scroll-margin-top: 4.8rem;
}

#about {
  scroll-margin-top: 5.4rem;
}

.main {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 1.6rem 2.4rem;
  height: 4.6rem;
  transition: background-color 0.3s ease-out;
}
.nav__logo--link {
  display: block;
  height: 100%;
}
.nav__logo--icon {
  display: block;
  height: 100%;
}
.nav__logo--icon img {
  height: 100%;
}
.nav__title {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.nav__ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 2.4rem;
  background-color: var(--background);
  font-size: 4.3rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}
.nav__ul--active {
  transform: translateY(0%);
}
.nav__ul--temp {
  display: contents;
}
.nav__li {
  list-style: none;
}
.nav__li--sN {
  margin-top: 1.6rem;
  height: 4.8rem;
  display: flex;
  gap: 0.8rem;
}
.nav__li a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3.4%;
  text-underline-offset: 10%;
  font-family: "Gambarino-Regular";
}
.nav__li a.fb {
  display: block;
  height: 100%;
  width: 4.8rem;
  background-color: var(--accent);
  mask: url("../src/assets/logo/social/fb.svg") no-repeat center/contain;
  -webkit-mask: url("../src/assets/logo/social/fb.svg") no-repeat center/contain;
}
.nav__li a.ig {
  display: block;
  height: 100%;
  width: 4.8rem;
  background-color: var(--accent);
  mask: url("../src/assets/logo/social/ig.svg") no-repeat center/contain;
  -webkit-mask: url("../src/assets/logo/social/ig.svg") no-repeat center/contain;
}

.nav__btn {
  padding: 1.2rem 0.8rem;
  background-color: transparent;
  border: 1px solid var(--accent);
  border-radius: 0.4rem;
  transition: all 0.3s ease-out;
}
.nav__btn--iconContainer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.nav__btn--iconEl {
  width: 2.4rem;
  height: 0.3rem;
  background-color: var(--text);
  transition: all 0.15s ease-out;
}
.nav__btn:active {
  background-color: var(--accent);
}

.nav:has(.nav__ul--active) .nav__btn--iconEl:nth-of-type(2) {
  opacity: 0;
}
.nav:has(.nav__ul--active) .nav__btn--iconEl:nth-of-type(1) {
  position: absolute;
  transform: rotate(45deg);
}
.nav:has(.nav__ul--active) .nav__btn--iconEl:nth-of-type(3) {
  position: absolute;
  transform: rotate(-45deg);
}

.hero {
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero__pictures {
  width: 100%;
  height: 100svh;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 16px;
}

.hero__picture {
  position: relative;
  aspect-ratio: 16/9;
}
.hero__picture * {
  width: 100%;
  aspect-ratio: 278/175;
  object-fit: cover;
  object-position: center center;
}
.hero__picture::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__picture.picture--1 {
  grid-column: 1/4;
  margin-top: 16.7916svh;
  width: 74.2vw;
}
.hero__picture.picture--1::after {
  background-color: var(--watermark-60);
}
.hero__picture.picture--2 {
  grid-column: 3/5;
  margin-top: 14.3928svh;
  margin-left: 1rem;
  width: 47.7vw;
}
.hero__picture.picture--2::after {
  background-color: var(--watermark-50);
}
.hero__picture.picture--3 {
  grid-column: 1/3;
  margin-top: -1.95svh;
  width: 37.9vw;
}
.hero__picture.picture--3::after {
  background-color: var(--watermark-80);
}
.hero__picture.picture--4 {
  grid-column: 3/5;
  grid-row: 4;
  margin-top: 0.75svh;
  width: 36.8vw;
}
.hero__picture.picture--4::after {
  background-color: var(--watermark-70);
}
.hero__picture.picture--5 {
  display: none;
}
.hero__picture.picture--5::after {
  background-color: var(--watermark-60);
}
.hero__picture.picture--6 {
  display: none;
}
.hero__picture.picture--6::after {
  background-color: var(--watermark-50);
}

.hero__decoration {
  position: absolute;
  width: 83%;
  height: 100svh;
  left: 17%;
  z-index: -2;
  opacity: 0.5;
  overflow-x: clip;
  overflow-y: visible;
}
.hero__decoration .decoration--1 {
  position: absolute;
  width: 61.9vw;
  height: 61.9vw;
  top: 21.2rem;
  left: 0;
  border: 0.15rem solid var(--accent);
}
.hero__decoration .decoration--2 {
  position: absolute;
  top: 42.4rem;
  left: 6.7rem;
  width: 88vw;
  height: 88vw;
  border: 0.15rem solid var(--accent);
}

.hero__scroll {
  position: absolute;
  bottom: 11.2rem;
  border-radius: 4rem;
  border: 0.1rem solid var(--accent);
  width: 3rem;
  height: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99;
}
.hero__scroll .circle {
  position: absolute;
  top: 0.8rem;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--accent);
  border-radius: 10rem;
  animation: scrollDown 1.2s infinite ease-out;
}

.works {
  display: flex;
  flex-direction: column;
  margin-top: 18rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.works::before {
  display: block;
  content: "";
  width: calc(100% - 2.4rem);
  height: 33svh;
  position: absolute;
  top: 4rem;
  left: 1.2rem;
  border: 1px solid var(--accent);
  opacity: 0.5;
  z-index: -1;
}
.works__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
  padding: 0 4.8rem;
  list-style: none;
  margin-bottom: 2.4rem;
}
.works__h2 {
  align-self: flex-start;
  padding-left: 2.4rem;
  margin-bottom: 3.2rem;
}
.works__item {
  width: 100%;
  height: 100%;
  user-select: none;
}
.works__item .works__picture, .works__item .works__picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.works__item--h {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.works__item--v {
  grid-row: span 2;
  aspect-ratio: 3/4;
}
.works__CTA {
  display: flex;
  width: fit-content;
  position: relative;
  gap: 0.8rem;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1.4rem;
  color: var(--works-item-text);
  text-decoration: none;
  background-color: transparent;
  border: none;
  border-radius: 0.4rem;
  z-index: 0;
  margin-left: 4.8rem;
  padding: 0.8rem;
  transition: all 0.1s ease-out;
}
.works__CTA span:nth-of-type(2) {
  transition: all 0.1s ease-out;
  width: 1.2rem;
}
.works__CTA span:nth-of-type(2) img {
  width: 100%;
  margin-bottom: -1px;
}
.works__CTA:hover, .works__CTA:active {
  scale: 1.05;
}
.works__CTA:hover::before, .works__CTA:active::before {
  transform: scaleX(1.08);
}
.works__CTA:hover span:nth-of-type(2), .works__CTA:active span:nth-of-type(2) {
  transform: translateX(8px);
}
.works__CTA::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  border-radius: 0.4rem;
  z-index: -1;
  transform-origin: left;
  transition: all 0.1s ease-out;
}
.works__archive {
  margin-top: 6.4rem;
}

.about {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3.2rem;
  margin-top: 16rem;
}
.about::before {
  display: block;
  content: "";
  width: calc(100% - 1.6rem);
  height: calc(100% - 1rem);
  position: absolute;
  top: 4rem;
  left: 0.8rem;
  border: 1px solid var(--accent);
  opacity: 0.5;
  z-index: -1;
}
.about::after {
  display: block;
  content: "";
  width: 22vw;
  height: calc(13.2rem + 69svh);
  position: absolute;
  top: calc(-69svh - 7.5rem);
  left: 80vw;
  border: 1px solid var(--accent);
  opacity: 0.5;
  z-index: -1;
}
.about__h2 {
  width: fit-content;
  margin-bottom: 3.2rem;
}
.about__text {
  font-size: 1.8rem;
  font-family: "Familjen Grotesk", sans-serif;
  line-height: 140%;
  margin-bottom: 3.2rem;
}
.about__picture {
  width: 100%;
  aspect-ratio: 16/9;
}
.about__picture img {
  width: 100%;
  aspect-ratio: inherit;
  object-fit: cover;
  object-position: 10% 30%;
}
.about__link {
  color: var(--accent);
  transition: color 0.25s ease-out;
}
.about__link:hover {
  color: var(--accent-h);
}

.contact {
  position: relative;
  margin-top: 16rem;
  padding: 6rem 0 11.2rem;
  background-color: var(--background-contact);
}
.contact::before {
  content: "";
  width: 26.5vw;
  height: 25.7rem;
  position: absolute;
  top: -14.7rem;
  left: -2rem;
  border: 1px solid var(--accent);
  opacity: 0.5;
  z-index: 2;
}
.contact__h2 {
  background-color: var(--background-contact);
  width: fit-content;
  margin: 0 0 1.6rem 0.8rem;
  line-height: 120%;
}
.contact__h3 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 100%;
}
.contact__link {
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 100%;
  transition: color 0.25s ease-out;
}
.contact__link:hover {
  color: var(--accent-h);
}
.contact__content {
  padding: 0 3.2rem;
  font-family: "Familjen Grotesk", sans-serif;
}
.contact__tempContainer {
  display: contents;
}
.contact__tel, .contact__mail {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__tel {
  margin-bottom: 2.4rem;
}
.contact__text {
  font-size: 2.4rem;
  letter-spacing: -0.072rem;
  margin-top: 9.6rem;
  text-wrap: pretty;
}
.contact__text .text--emph {
  color: var(--accent);
  font-style: normal;
}
.contact--frame {
  position: absolute;
  width: calc(100% - 1.6rem);
  height: calc(100% - 11.1rem);
  top: 10rem;
  left: 0.8rem;
  border: 1px solid var(--accent);
  border-bottom: none;
  opacity: 0.5;
  z-index: 0;
  box-sizing: border-box;
  pointer-events: none;
}

.footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem;
  background-color: var(--background-contact);
  font-family: "Familjen Grotesk", sans-serif;
  z-index: 0;
}
.footer__logo--link {
  display: block;
  height: 5rem;
}
.footer__ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.footer__li {
  font-size: 1.4rem;
}
.footer__li a {
  color: var(--text);
  text-decoration: none;
}
.footer__li:nth-of-type(2) {
  margin: 1.2rem 0;
}

.lottie__container {
  padding: 2.4rem;
}

@keyframes scrollDown {
  0% {
    top: 0.8rem;
  }
  40%, 100% {
    top: 3.6rem;
  }
}
@keyframes fadeIn {
  from {
    transform: translateY(-2%);
    opacity: 0.1;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@media (min-height: 800px) {
  .hero__scroll {
    bottom: 18rem;
  }
}
@media (max-width: 360px) {
  .contact__content {
    padding: 0 2.4rem;
  }
}
@media (min-width: 743px) {
  h2 {
    font-size: 7.6rem;
    letter-spacing: -0.228rem;
  }
  .nav {
    height: 7.2rem;
    align-items: center;
  }
  .nav__ul {
    padding: 0;
    align-items: center;
  }
  .nav__ul--temp {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
  }
  .nav__li {
    align-self: flex-start;
    font-size: 5.7rem;
  }
  .nav__btn {
    height: 5.8rem;
    width: 5.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
  }
  .nav__btn--iconContainer {
    gap: 0.6rem;
  }
  .nav__btn--iconEl {
    width: 2.8rem;
  }
  .hero__picture.picture--1 {
    width: 47.135vw;
    margin-top: 4.6875svh;
    margin-left: 2rem;
    grid-column: 3/4;
    grid-row: 1;
  }
  .hero__picture.picture--2 {
    width: 45.312vw;
    grid-column: 1/3;
    margin-left: -11.1rem;
    margin-top: -11rem;
    grid-row: 2;
  }
  .hero__picture.picture--3 {
    width: 47.135vw;
    grid-column: 3/5;
    grid-row: 3;
    margin-left: 7.4rem;
    margin-top: 5.8rem;
  }
  .hero__picture.picture--4 {
    width: 30.859vw;
    grid-column: 1/2;
    grid-row: 4;
    margin-left: 4.8rem;
    margin-top: -2rem;
  }
  .hero__picture.picture--5 {
    display: block;
    width: 31.25vw;
    grid-row: 5;
    grid-column: 3/4;
    margin-bottom: 1.2rem;
  }
  .hero__decoration {
    left: 22.4%;
  }
  .hero__decoration .decoration--1 {
    width: 51.43vw;
    height: 51.43vw;
    top: 13.2rem;
  }
  .hero__decoration .decoration--2 {
    top: 47.8rem;
    left: 15.3rem;
    width: 72.265vw;
    height: 72.265vw;
  }
  .hero__scroll {
    bottom: 32rem;
  }
  .works::before {
    top: 6rem;
    width: calc(100% - 4.8rem);
    left: 2.4rem;
  }
  .works__gallery {
    padding: 0 10%;
    gap: 6.4rem;
  }
  .works__archive {
    margin-top: 11.2rem;
  }
  .works__CTA {
    margin-left: 10%;
    font-size: 1.8rem;
  }
  .works__CTA span:nth-of-type(2) {
    width: 1.4rem;
  }
  .works__content {
    padding: 0 2.4rem;
    margin-bottom: 3.2rem;
  }
  .works__content .works__title {
    font-size: 4.3rem;
  }
  .works__content .works__text {
    font-size: 1.8rem;
  }
  .about {
    padding: 0 12.8rem;
  }
  .about__h2 {
    margin-bottom: 4rem;
  }
  .about__text {
    margin-bottom: 4.8rem;
  }
  .about::before {
    width: calc(100% - 4.8rem);
    left: 2.4rem;
    height: calc(100% - 1rem);
    top: 6rem;
  }
  .about::after {
    height: calc(16.2rem + 69svh);
  }
  .contact {
    margin-top: 25.6rem;
  }
  .contact::before {
    height: 36rem;
    top: -23.7rem;
  }
  .contact__content {
    padding: 0 7.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .contact__tempContainer {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .contact__h2 {
    margin: 0 0 6.4rem 2.4rem;
  }
  .contact__h3 {
    font-size: 2.4rem;
  }
  .contact__link {
    font-size: 3.2rem;
  }
  .contact__text {
    font-size: 3.2rem;
    text-align: center;
  }
  .contact--frame {
    width: calc(100% - 4.8rem);
    left: 2.4rem;
    top: 13rem;
  }
  .footer__ul {
    flex-direction: row;
    gap: 3.2rem;
  }
  .footer__li {
    margin: 0;
    font-size: 1.8rem;
  }
  .footer__li:nth-of-type(2) {
    margin: 0;
  }
  .lottie__container {
    padding: 10.5rem;
  }
}
@media (min-width: 1023px) {
  .works__h2 {
    margin-bottom: 6.4rem;
  }
  .works__gallery {
    padding: 0 20%;
  }
  .works__CTA {
    margin-left: 20%;
    font-size: 2.1rem;
    gap: 1.2rem;
  }
  .works__CTA span:nth-of-type(2) {
    width: 1.6rem;
  }
  .works__CTA span:nth-of-type(2) img {
    margin-bottom: -2px;
  }
  .about {
    padding: 0 21.8rem;
  }
  .about__h2 {
    margin-bottom: 6.4rem;
  }
}
@media (min-width: 1440px) {
  .nav {
    height: 5.6rem;
  }
  .nav__ul {
    position: static;
    transform: translateX(0);
    width: fit-content;
    height: fit-content;
    flex-direction: row;
    background-color: transparent;
  }
  .nav__ul--temp {
    display: contents;
  }
  .nav__li {
    font-size: 1.8rem;
    height: 100%;
  }
  .nav__li a {
    text-decoration: none;
    padding: 0.8rem 2.4rem;
    position: relative;
  }
  .nav__li a::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background);
    border-radius: 0.4rem;
    border: 1px solid var(--accent);
    z-index: -1;
    transform-origin: center;
    transition: all 0.2s ease-out;
  }
  .nav__li a:hover::before {
    scale: 0.95;
    background-color: var(--accent);
  }
  .nav__li--sN {
    margin: 0;
    height: 2.5rem;
    background-color: transparent;
    padding: 0;
    border: none;
    align-self: center;
  }
  .nav__li--sN a.fb, .nav__li--sN a.ig {
    background-size: contain;
    background-repeat: no-repeat;
    width: 2.5rem;
    padding: 0;
    transition: background-color 0.2s ease-out;
  }
  .nav__li--sN a.fb::before, .nav__li--sN a.ig::before {
    content: none;
  }
  .nav__li--sN a.fb:hover, .nav__li--sN a.ig:hover {
    background-color: white;
  }
  .nav__btn {
    display: none;
  }
  .hero__pictures {
    grid-template-columns: repeat(12, 8.33%);
  }
  .hero__picture.picture--1 {
    width: 22.361vw;
    grid-column: 9/13;
    grid-row: 1;
    margin-top: 0.9569svh;
    margin-left: 3rem;
  }
  .hero__picture.picture--2 {
    width: 15.694vw;
    margin-right: 6.4rem;
    grid-column: 8/10;
    grid-row: 2;
  }
  .hero__picture.picture--3 {
    grid-column: 2/6;
    margin-top: -11rem;
    margin-left: 0;
    grid-row: 2;
    width: 24.16vw;
  }
  .hero__picture.picture--4 {
    grid-column: 8/12;
    grid-row: 4;
    margin-top: 6.7rem;
    width: 33.82vw;
  }
  .hero__picture.picture--5 {
    width: 24.16vw;
    margin-top: -24rem;
    margin-left: -2.4rem;
    grid-column: 1/4;
    grid-row: 5;
  }
  .hero__picture.picture--6 {
    display: block;
    width: 24.16vw;
    margin-top: -7.368svh;
    grid-column: 5/8;
    grid-row: 6;
    margin-left: -5rem;
  }
  .hero__decoration {
    left: 31.2%;
  }
  .hero__decoration .decoration--1 {
    width: 27.014vw;
    height: 27.014vw;
    top: 6.2rem;
  }
  .hero__decoration .decoration--2 {
    width: 38.542vw;
    height: 37.7vw;
    top: 40.8rem;
    left: 15.2rem;
  }
  .hero__scroll {
    bottom: 22%;
  }
  .works {
    margin-top: 24rem;
  }
  .works::before {
    width: calc(100% - 24rem);
    height: 40svh;
    left: 12rem;
  }
  .works__h2 {
    padding: 2.4rem;
    margin-left: 9.6rem;
  }
  .works__gallery {
    padding: 0 25%;
    min-height: 50svh;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: 170px;
    grid-auto-flow: dense;
    gap: 1.6rem;
    margin-bottom: 4.8rem;
  }
  .works__item.active {
    height: 49svh;
  }
  .works__item {
    height: 41svh;
  }
  .works__archive {
    margin-top: 12.8rem;
    margin-bottom: 12rem;
  }
  .works__CTA {
    margin: 0 auto;
  }
  .works__CTA span:nth-of-type(2) img {
    margin-bottom: 0;
  }
  .about {
    padding: 0 31%;
  }
  .about::before {
    width: 66.667%;
    left: 16.667%;
  }
  .about::after {
    left: 70vw;
    width: 32vw;
  }
  .contact__h2 {
    margin: 0 0 6.4rem 9.6rem;
  }
  .contact__link {
    font-size: 4.3rem;
  }
  .contact__content {
    padding: 0 16.667%;
  }
  .contact__text {
    font-size: 4.3rem;
  }
  .contact--frame {
    width: calc(100% - 24rem);
    left: 12rem;
  }
}
@media (min-width: 1535px) {
  .works__gallery {
    padding: 0 28%;
  }
  .about::before {
    width: 60%;
    left: 20%;
  }
  .about {
    padding: 0 35%;
  }
  .contact__content {
    padding: 0 25%;
  }
}
@media (min-width: 1600px) {
  .hero__decoration {
    left: 33%;
  }
  .hero__decoration .decoration--1 {
    width: 27.014vw;
    height: 27.014vw;
    top: 2.4rem;
  }
  .hero__decoration .decoration--2 {
    width: 38.542vw;
    height: 36.7vw;
    top: 37.8rem;
    left: 15.2rem;
  }
  .hero__pictures .picture--1 {
    width: 20.3vw;
    margin-top: 2svh;
    grid-row: 1;
  }
  .hero__pictures .picture--1::after {
    background-color: var(--watermark-60);
  }
  .hero__pictures .picture--2 {
    width: 12.5vw;
    margin-top: 15.8svh;
    grid-row: 1;
  }
  .hero__pictures .picture--2::after {
    background-color: var(--watermark-80);
  }
  .hero__pictures .picture--3 {
    width: 19.8vw;
    margin-top: 9.2svh;
    margin-left: 3vw;
    grid-row: 1;
  }
  .hero__pictures .picture--3::after {
    background-color: var(--watermark-50);
  }
  .hero__pictures .picture--4 {
    width: 25.7vw;
    margin-top: 16.2svh;
    margin-left: 10vw;
    grid-row: 2;
  }
  .hero__pictures .picture--4::after {
    background-color: var(--watermark-50);
  }
  .hero__pictures .picture--5 {
    width: 20.2vw;
    margin-top: 24.2svh;
    grid-row: 2;
  }
  .hero__pictures .picture--5::after {
    background-color: var(--watermark-50);
  }
  .hero__pictures .picture--6 {
    width: 21vw;
    margin-top: 49.2svh;
    grid-row: 2;
  }
  .hero__pictures .picture--6::after {
    background-color: var(--watermark-80);
  }
}
@media (min-width: 1601px) {
  .hero__decoration {
    left: 36%;
  }
  .hero__decoration .decoration--1 {
    width: 27.014vw;
    height: 25.014vw;
    top: 2.4rem;
  }
  .hero__decoration .decoration--2 {
    width: 38.542vw;
    height: 36.7vw;
    top: 37.8rem;
    left: 15.2rem;
  }
}

/*# sourceMappingURL=style.css.map */
