@import url("https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --background-color: #060b19;
  --primary: #0f388c;
  --medium-primary: #0b1f4b;
  --dark-primary: #01061a;
  --secondary: #cad2f7;
  --accent: #ed1c24;
  --dim-text: rgba(255, 255, 255, 0.5);
  --dim-border: rgb(255, 255, 255, 0.1);
  --h1: 3rem;
  --h2: 2.5rem;
  --h3: 2rem;
  --h4: 1.75rem;
  --large: 1.5rem;
  --body: 1rem;
  --s3: 0.75rem;
  --s2: 0.5rem;
  --s1: 0.25rem;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Inter";
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

img {
  width: 100%;
}

/* LANDING */
/* Navigation */
.navigation img {
  max-width: 12.5em;
}

.navigation label img {
  width: 2rem;
  height: 2rem;
}

.navigation nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navigation .links-container {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.navigation {
  position: relative;
  z-index: 15;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 10em;
}

.navigation a {
  text-decoration: none;
  font-size: var(--body);
  padding-inline: 1em;
  color: white;
  transition: 0.5s ease-in-out;
  text-align: center;
}

.navigation a:hover {
  scale: 1.2;
  color: var(--secondary);
}

/* Menu */
#sidebar-active,
.open-sidebar-button,
.close-sidebar-button {
  display: none;
}

#image-track {
  display: flex;
  gap: 4vmin;
  transform: translateX(0%);
  user-select: none;
  width: max-content;
}

#image-track .image-wrapper .image {
  width: 40vmin;
  height: 56vmin;
  object-fit: cover;
  object-position: 100% center;
  flex-shrink: 0;
  transition: 0.5s ease;
  position: relative;
}

.image-track {
  cursor: grab;
}
.image-track:active {
  cursor: grabbing;
}

/* Home */
.home {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
}

.home .landing-background img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  inset: 0;
}

.home .landing-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    black 0%,
    black 15%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.home .landing-background::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
}

.home .title {
  position: absolute;
  z-index: 2;
  top: 55%;
  transform: translateY(-55%);
  padding-inline: 10em;
  color: white;
  display: flex;
  flex-direction: column;
}

.home .container {
  max-width: 1536px;
  margin-inline: auto;
}

.home .info .heading {
  font-family: "Roboto Condensed";
  font-size: 5rem;
  font-weight: 900;
  line-height: 4.5rem;
}

.home .info .small {
  font-size: var(--s3);
  padding-top: 0.5em;
  color: var(--secondary);
}

.home .info .body {
  font-size: var(--body);
  line-height: calc(var(--body) + 0.5rem);
  margin-block: 2.5em;
  width: 50%;
}

.home .buttons {
  display: flex;
  gap: 2em;
}

.home .buttons > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: var(--body);
  padding: 1em 2em;
  border-radius: 10px;
  color: white;
}

.home .btn-learn {
  border: none;
  background: linear-gradient(to right, var(--medium-primary), var(--primary));
  box-shadow: inset 0 4px 5px rgba(255, 255, 255, 0.13);
  transition: 0.5s ease;
}

.home .btn-contact {
  border: 1px solid var(--primary);
  transition: 0.5s ease;
}

.home .btn-learn:hover,
.home .btn-contact:hover {
  scale: 1.1;
  color: var(--secondary);
}

/* ABOUT US */
.aboutus {
  position: relative;
  z-index: 2;
  gap: 2.5em;
  padding-inline: 10em;
  max-width: 1536px;
  margin: auto;
  padding-top: 15em;
  padding-bottom: 7.5em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: 1s ease;
  animation: fade-in linear;
  animation-timeline: view();
  animation-range: entry;
}

.aboutus img {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

body::after {
  content: "";
  position: absolute;
  top: 100vh;
  left: 0;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-top: 10em solid rgb(0, 0, 0);
  pointer-events: none;
}

.aboutus .info {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.aboutus .info .heading {
  font-size: var(--h1);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(
    to right,
    var(--dark-primary),
    var(--primary),
    var(--secondary)
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SERVICES */
/* Services */
.services {
  position: relative;
  background-color: var(--background-color);
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 5em solid rgb(255, 255, 255);
  pointer-events: none;
  z-index: 12;
}

/* Slider */
.slider {
  position: relative;
  height: 100vh;
  color: white;
}

.slider .list .item {
  position: absolute;
  inset: 0 0 0 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.slider .list .item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slider .list .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    var(--background-color) 40%,
    transparent
  );
}

.slider .list .item .content {
  position: absolute;
  left: 10em;
  right: 10em;
  top: 20%;
  width: 50vw;
  z-index: 1;
}

.slider .list .item .content p:nth-child(1) {
  text-transform: uppercase;
  letter-spacing: 10px;
}

.slider .list .item .content h2 {
  font-family: "Montserrat";
  font-size: 4rem;
  line-height: 3.5rem;
  padding-block: 2rem;
  margin: 0;
}

.slider .list .item.active {
  opacity: 1;
  z-index: 10;
}

@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3) {
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 0.7s ease-in-out 1 forwards;
}

.slider .list .item.active h2 {
  animation-delay: 1s;
}

.slider .list .item.active p:nth-child(3) {
  animation-duration: 1.3s;
}

.arrows {
  position: absolute;
  top: 30%;
  right: 10em;
  z-index: 11;
}

.arrows button {
  background-color: #eee5;
  border: none;
  font-family: monospace;
  width: 3rem;
  height: 3rem;
  border-radius: 5px;
  font-size: x-large;
  color: #eee;
  transition: 0.5s;
  cursor: pointer;
  font-size: var(--large);
}

.arrows button:hover {
  background-color: #eee;
  color: black;
  scale: 1.1;
}

.thumbnail {
  position: absolute;
  bottom: 50px;
  z-index: 11;
  display: flex;
  gap: 10px;
  width: 100%;
  height: 250px;
  padding-inline: 10em;
  box-sizing: border-box;
  overflow: auto;
  justify-content: center;
  cursor: pointer;
}

.thumbnail::-webkit-scrollbar {
  width: 0;
}

.thumbnail .item {
  width: 150px;
  height: 220px;
  filter: brightness(0.5);
  transition: 0.5s;
  flex-shrink: 0;
  position: relative;
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: center;
}

.thumbnail .item.active {
  filter: brightness(1);
  border: 1px solid white;
}

.thumbnail .item .content {
  font-family: "Montserrat";
  position: absolute;
  inset: auto 10px 10px 10px;
}

/* WHY CHOOSE US */
.why-choose-us {
  position: relative;
  top: 50%;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50vw solid var(--background-color);
  border-right: 50vw solid var(--background-color);
  border-bottom: 5em solid transparent;
  pointer-events: none;
  z-index: 1;
}

.why-choose-us .content {
  padding-top: 10em;
  padding-bottom: 10em;
  padding-inline: 10em;
  max-width: 1536px;
  margin: auto;
  animation: fade-in linear;
  animation-timeline: view();
  animation-range: entry;
}

.why-choose-us .content .heading {
  font-size: var(--h1);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(
    to right,
    var(--dark-primary),
    var(--primary),
    var(--secondary)
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 2em;
}

.why-choose-us .reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 2em 3em;
}

.why-choose-us .reason {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.why-choose-us .reasons .bold {
  font-weight: 700;
}

.why-choose-us .reasons .body {
  text-align: justify;
  max-width: 250px;
}

.why-choose-us .reasons .icon {
  width: 3rem;
}

/* PARTNERS */
/* Partners */
.partners {
  display: none;
  padding-bottom: 5em;
  animation: fade-in linear;
  animation-timeline: view();
  animation-range: entry;
}

.partners .heading {
  font-size: var(--h1);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(
    to right,
    var(--dark-primary),
    var(--primary),
    var(--secondary)
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 2.5rem;
}

/* Scroller */
.scroller {
  margin: auto;
  max-width: 75%;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 10s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 30s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* PROJECTS */
/* Projects */
.projects {
  background-color: var(--background-color);
  color: white;
  z-index: 2;
}

/* Carousel */
main {
  position: relative;
  flex-grow: 1;
  height: 100vh;
  overflow-x: hidden;
  max-width: 1536px;
  margin: auto;
}

main > article {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 2fr 1fr;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  transition: transform 400ms ease;
}

main > article[data-status="inactive"] {
  transform: translateX(-100%);
  transition: none;
}

main > article[data-status="active"] {
  transform: translateX(0%);
}

main > article[data-status="before"] {
  transform: translateX(-100%);
}

main > article[data-status="after"] {
  transform: translateX(100%);
}

main > article[data-status="becoming-active-from-before"] {
  transform: translateX(-100%);
  transition: none;
}

main > article[data-status="becoming-active-from-after"] {
  transform: translateX(100%);
  transition: none;
}

main > article > .article-section {
  height: 100%;
  display: flex;
}

main > article > .article-title-section,
main > article > .article-nav-section {
  border-top: 1px solid var(--dim-border);
}

main > article > .article-description-section,
main > article > .article-nav-section {
  border-right: 1px solid var(--dim-border);
}

main > article > .article-title-section {
  border-left: 1px solid var(--dim-border);
  border-right: 1px solid var(--dim-border);
}

main > article > .article-nav-section > .article-nav-button:nth-child(2) {
  border-left: 1px solid var(--dim-border);
}

main > article:first-child > .article-image-section {
  background-image: url("./Images/western-harbour-tunnel.jpg");
}

main > article:nth-child(2) > .article-image-section {
  background-image: url("./Images/abp-amazon.jpeg");
}

main > article:nth-child(3) > .article-image-section {
  background-image: url("./Images/warringah-freeway-upgrade.jpeg");
}

main > article > .article-image-section {
  background-position: center;
  background-size: cover;
}

main > article > .article-description-section {
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
}

main > article > .article-description-section > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.25em;
}

main > article > .article-title-section {
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
}

main > article > .article-title-section * {
  color: #c1c2c5;
}

main > article > .article-title-section > h2 {
  flex-basis: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  line-height: 3rem;
  margin: 0px;
  text-transform: uppercase;
}

main > article > .article-nav-section > .article-nav-button {
  background-color: transparent;
  flex-grow: 1;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 3rem;
  cursor: pointer;
}

main svg {
  transition: 0.5s ease;
}

main svg:hover {
  scale: 1.5;
}

main > article > .article-nav-section > .article-nav-button:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

/* CONTACT */
/* Contact */
.contact {
  position: relative;
  background-color: #060b19;
  color: white;
}

.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--dim-border);
  width: 100%;
  height: 1px;
}

.contact .cards {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  padding: 10em;
  max-width: 1536px;
  margin: auto;
}

.contact .card {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.contact .card .icon-text {
  display: flex;
  align-items: center;
  gap: 1em;
  line-height: 2em;
}

.contact .card a {
  text-decoration: none;
  color: white;
  transition: 0.5s ease;
}

.contact .card .heading {
  text-transform: uppercase;
  font-style: italic;
  font-size: var(--large);
  font-weight: 700;
  transition: 0.5s ease;
  cursor: pointer;
}

.contact .card .heading:hover {
  color: var(--secondary);
}

.contact .card .icon-text img {
  width: 1.2em;
  height: auto;
}

.contact .card .divider {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border: none;
  border-radius: 20px;
}

.contact a:hover {
  scale: 1.1;
  color: var(--secondary) !important;
  transform: translateX(10%);
}

/* Copyright  */
.copyright-flex img {
  position: absolute;
  width: 4em;
  height: auto;
}

.copyright-flex {
  display: flex;
  align-items: center;
  padding: 2em;
}

.copyright-flex .text {
  font-size: var(--s3);
  margin: auto;
}

.copyright .divider {
  border: none;
  border-top: 1px solid var(--dim-border);
  width: 100%;
}

/* Scroll animation */
@keyframes fade-in {
  from {
    opacity: 0;
    scale: 0.8;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

/* RESPONSIVE */
/* Tablet */
@media (max-width: 1150px) {
  .home .title,
  .home .navigation,
  .aboutus,
  .why-choose-us .content,
  .contact .cards,
  .projects .article-title-section,
  .projects .article-description-section {
    padding-inline: 5em;
  }

  .about-us .info {
    gap: 1em;
  }

  .slider .list .item .content {
    right: 5em;
    left: 5em;
  }

  .arrows {
    right: 5em;
  }

  .thumbnail {
    padding-inline: 5em;
  }

  .navigation img {
    width: 7.5em;
  }

  .home .title .heading {
    font-size: calc(var(--h1) + 1.25rem);
    line-height: calc(var(--h1) + 1.25rem - 0.5rem);
  }

  .contact .cards {
    padding-block: 5em;
    gap: 5em;
  }

  .why-choose-us .reasons {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 2em;
  }
}

@media (max-width: 1100px) {
  main > article {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 2fr 1fr;
  }

  main > article > .article-description-section {
    padding: 2rem;
  }
}

@media (max-width: 1100px) {
  main > article {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.5fr 1fr;
  }
}

@media (max-width: 1000px) {
  main > article {
    grid-template-columns: none;
    grid-template-rows: 1.5fr 0.75fr 0.75fr 0.5fr;
    height: max(900px, 100%);
  }

  main > article > .article-title-section > h2 {
    font-size: 3rem;
    line-height: 2.6rem;
  }

  main > article > .article-description-section {
    border-left: none;
  }

  main > article > .article-image-section {
    order: 1;
  }

  main > article > .article-title-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    order: 2;
  }

  main > article > .article-description-section {
    justify-content: center;
    order: 3;
  }

  main > article > .article-nav-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    order: 4;
  }
}

@media (max-width: 1070px) {
  .aboutus {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 736px) {
  .navigation .links-container {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 15;
    width: 60vw;
    background-color: #171f3f;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
  }

  .navigation {
    padding-block: 0.5em;
    position: relative;
  }

  .navigation a {
    height: auto;
    width: 100%;
    padding: 1.5em 2.5em;
    justify-content: flex-start;
    font-size: var(--xl-body);
    text-align: start;
    transition: 0.5s ease-in-out;
  }

  .navigation a:hover {
    scale: 1.1;
    transform: translateX(10%);
  }

  .open-sidebar-button {
    display: block;
    padding: 1em 0em;
  }

  .close-sidebar-button {
    display: block;
    padding-top: 2em;
    padding-bottom: 1em;
    padding-inline: 2em;
  }

  #sidebar-active:checked ~ .links-container {
    right: 0;
  }

  #sidebar-active:checked ~ #overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;
  }
}

@media (max-width: 730px) {
  .home .title,
  .home .navigation,
  .aboutus,
  .why-choose-us .content,
  .contact .cards,
  .projects .article-title-section,
  .projects .article-description-section {
    padding-inline: 2em;
  }

  .contact .cards {
    flex-direction: column;
  }

  .thumbnail {
    justify-content: start;
  }

  .slider .list .item .content h2 {
    font-size: 3rem;
    line-height: 2.8rem;
  }

  .slider .list .item .content {
    right: 2em;
    left: 2em;
  }

  .arrows {
    right: 2em;
  }

  .thumbnail {
    padding-inline: 2em;
  }

  .home .buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home .info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home .heading {
    text-align: center;
  }

  .home .title .body {
    width: 100%;
    text-align: center;
  }

  .home .buttons {
    display: flex;
    justify-content: center;
  }

  .slider {
    height: 1000px;
  }
}

/* Landscape tablet */
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .slider {
    height: 150vh;
  }
}

/* Mobile */
@media (max-width: 600px) {
  main > article > .article-description-section p {
    font-size: var(--body);
  }

  main > article {
    height: max(500px, 100%);
  }
}

@media (max-width: 600px) {
  .home .info .heading {
    font-size: calc(var(--h1) + var(--body));
    line-height: calc(var(--h1) + var(--body) - 0.25rem);
  }

  .why-choose-us .reasons {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, auto);
    gap: 3em;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 14px;
  }

  .home .title .heading {
    font-size: var(--h1);
    line-height: calc(var(--h1) - 0.05rem);
  }
}

/* Landscape mobile */
@media screen and (max-width: 932px) and (orientation: landscape) {
  .home {
    height: 200vh;
  }

  body::after {
    top: 200vh;
  }

  .home .title {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }

  main {
    height: 250vh;
  }

  main > article > .article-description-section,
  main > article > .article-nav-section {
    border-left: 1px solid var(--dim-border);
  }

  .home .container,
  .aboutus,
  .contact .cards,
  .why-choose-us .content,
  main {
    max-width: 600px;
    margin-inline: auto;
  }

  .home .title,
  .home .navigation,
  .aboutus,
  .why-choose-us .content,
  .contact .cards {
    padding-inline: 0;
  }

  .contact .cards {
    flex-direction: column;
  }

  .slider {
    height: 200vh;
  }

  .home .title {
    text-align: center;
    align-items: center;
  }

  .home .buttons {
    flex-direction: column;
  }

  .home .info .body {
    width: 100%;
  }
}

@media screen and (max-width: 667px) and (orientation: landscape) {
  .home .container,
  .aboutus,
  .contact .cards,
  .why-choose-us .content,
  main {
    max-width: 500px;
  }
}

/* Widescreen */
@media (min-width: 1441px) {
  .arrows {
    top: 55%;
    right: 50%;
    transform: translate(55%, -50%);
  }

  .slider .content {
    margin: auto;
  }

  main > article > .article-description-section,
  main > article > .article-nav-section {
    border-left: 1px solid var(--dim-border);
  }
}

@media (min-width: 2560px) {
  html {
    font-size: 24px;
  }

  .home .title,
  .home .navigation,
  .aboutus,
  .why-choose-us .content,
  .contact .cards,
  .projects .article-title-section,
  .projects .article-description-section {
    padding-inline: 0;
  }

  .why-choose-us .reasons .body {
    max-width: 500px;
  }
}

@media (min-width: 3840px) {
  html {
    font-size: 32px;
  }

  .thumbnail {
    bottom: 5rem;
    width: 100%;
    height: 20rem;
    gap: 1rem;
  }

  .thumbnail .item {
    width: 10rem;
    height: 17.5rem;
  }
}
