@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Sora:wght@100..800&display=swap");
html {
  box-sizing: border-box; }

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

* {
  border: 0;
  margin: 0;
  padding: 0; }

img {
  display: block;
  max-width: 100%;
  height: auto; }

a {
  text-decoration: none;
  color: inherit;
  outline: 0; }

ul {
  list-style-type: none; }

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0; }

:root {
  --c1: #e31f2f;
  --c2: #f7f7f7;
  --c3: #101010;
  --section: 180px;
  --margin: 30px;
  --gap: 60px;
  --radiusL: 80px;
  --radiusM: 30px; }

body {
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal; }

*, input::placeholder, textarea::placeholder, button, select, option, ::before, ::after {
  font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Sora", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--c3); }

h1 {
  text-transform: uppercase;
  font-size: clamp(42px, 7.3vw, 100px);
  line-height: clamp(46px, 7.3vw, 88px);
  font-weight: 900; }

h2 {
  font-size: clamp(40px, 7.3vw, 80px);
  line-height: clamp(45px, 7.3vw, 68px);
  font-weight: 600;
  color: #fff;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 var(--section) 0;
  text-wrap: balance; }

h3 {
  font-size: 32px;
  font-weight: 700; }

h4 {
  font-size: 32px;
  font-weight: 600; }
  @media only screen and (max-width: 900px) {
    h4 {
      font-size: 26px; } }

h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2; }

h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--c1);
  text-align: center;
  letter-spacing: 4px; }
  @media only screen and (max-width: 600px) {
    h6 {
      letter-spacing: 2px;
      font-size: 15px; } }

body > header {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0px, 1fr) auto minmax(0px, 1fr);
  padding-inline: var(--margin);
  padding-block: 20px; }
  body > header .logo {
    display: flex;
    align-items: center; }
  body > header nav {
    display: flex;
    align-items: center; }
    body > header nav span {
      display: flex;
      gap: 40px;
      align-items: center; }
      body > header nav span a {
        position: relative; }
        body > header nav span a:after {
          content: "";
          position: absolute;
          bottom: -5px;
          left: 0;
          width: 0;
          height: 2px;
          background: var(--c1);
          transition: all .3s ease; }
        body > header nav span a:hover:after {
          width: 100%; }
      @media only screen and (max-width: 750px) {
        body > header nav span {
          display: none; } }
    @media only screen and (max-width: 1100px) {
      body > header nav {
        justify-content: right; } }
  body > header .header-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    @media only screen and (max-width: 1100px) {
      body > header .header-cta {
        display: none; } }
  body > header .btn.cta:after {
    position: unset;
    content: unset;
    width: unset;
    height: 24px;
    background-image: url("../img/go.png");
    background-size: cover;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .3s ease; }
  body > header .btn.cta:hover {
    padding: 14px 50px;
    background-color: transparent;
    color: var(--c1);
    border-color: var(--c1); }
    body > header .btn.cta:hover:after {
      opacity: 1; }
  @media only screen and (max-width: 1100px) {
    body > header {
      grid-template-columns: auto auto;
      position: absolute; } }
  body > header #menu {
    display: none;
    padding: 10px;
    align-self: center;
    justify-self: right;
    z-index: 90; }
    @media only screen and (max-width: 750px) {
      body > header #menu {
        display: block; } }

@media only screen and (max-width: 750px) {
  .closed {
    display: block; }

  .opened {
    display: none; }

  #menu-toggle:checked + label .closed {
    display: none; }

  #menu-toggle:checked + label .opened {
    display: block; }

  #menu-toggle:checked + label + span {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 80;
    gap: 20px; } }
body {
  background-color: var(--c2);
  overflow-x: hidden; }

main {
  width: 100%; }

.center {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 80px; }

.grid-half {
  width: 100%;
  display: grid;
  grid-template-columns: var(--margin) 1fr minmax(0, calc(50% - ((var(--gap) / 2) + var(--margin)))) var(--gap) minmax(0, calc(50% - ((var(--gap) / 2) + var(--margin)))) 1fr var(--margin); }
  @media only screen and (max-width: 900px) {
    .grid-half {
      grid-template-columns: var(--margin) 1fr minmax(0, 100%) 1fr var(--margin); } }

.autoMargin {
  margin-inline: auto; }

.btn.cta {
  display: inline-block;
  padding: 14px 50px;
  border-radius: 1000px;
  background-color: var(--c1);
  color: #fff;
  font-weight: 600;
  transition: all ease .3s;
  border: 2px solid var(--c1); }
  .btn.cta:after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("../img/go.png");
    background-size: cover;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .3s ease; }
  .btn.cta:hover {
    padding-right: 90px; }
    .btn.cta:hover:after {
      opacity: 1; }

.btn.cta.ghost {
  position: relative;
  background-color: var(--c3);
  border: 2px solid var(--c1);
  transition: all ease .3s; }
  .btn.cta.ghost:after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("../img/go.png");
    background-size: cover;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .3s ease; }
  .btn.cta.ghost:hover {
    padding-right: 90px;
    background-color: var(--c1); }
    .btn.cta.ghost:hover:after {
      opacity: 1; }

.about {
  margin-inline: auto;
  width: 100%;
  max-width: 1750px;
  padding-inline: var(--margin);
  display: grid;
  grid-template-columns: 50% 50%;
  gap: var(--gap);
  padding-block: var(--section); }
  .about .left {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto 1fr;
    gap: 15px; }
    .about .left img, .about .left div {
      width: 100%;
      border-radius: var(--radiusM); }
    .about .left .profile {
      grid-column: 1 / 2;
      grid-row: 1 / 3; }
    .about .left .sketch {
      grid-column: 2 / 3;
      grid-row: 1 / 2; }
    .about .left .stack {
      background-image: url(../img/stack.jpg);
      background-size: cover;
      background-position: top center;
      grid-column: 2 / 3;
      grid-row: 2 / 3; }
  .about .right {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .about p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0; }
    @media only screen and (max-width: 1400px) {
      .about p {
        font-size: 20px; } }
    @media only screen and (max-width: 700px) {
      .about p {
        text-align: center;
        font-size: 16px; } }
  .about h2 {
    color: var(--c3);
    text-align: left;
    max-width: 100%;
    font-weight: 800;
    padding: 20px 0 60px 0; }
    @media only screen and (max-width: 700px) {
      .about h2 {
        text-align: center; } }
  .about h6 {
    text-align: left;
    font-weight: 600;
    padding-top: 0; }
    @media only screen and (max-width: 700px) {
      .about h6 {
        text-align: center; } }
  @media only screen and (max-width: 1200px) {
    .about {
      flex-direction: column-reverse; }
      .about > div {
        width: 100%; } }

.carousel {
  padding-block: 20px; }
  .carousel .carousel-wrapper {
    overflow: hidden;
    width: 100%; }
  .carousel .carousel-content {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 60s linear infinite; }
    .carousel .carousel-content div {
      flex: 0 0 auto;
      width: 200px;
      height: 140px;
      filter: brightness(0.3); }
    .carousel .carousel-content img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

@keyframes scroll {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }
.home .hero {
  height: 100%;
  padding-block: var(--section);
  position: relative;
  grid-auto-rows: auto auto 1fr; }
  .home .hero .eye {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15; }
  .home .hero p {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    margin-top: 100px;
    margin-bottom: calc(var(--gap) / 2);
    align-self: end;
    justify-self: end;
    max-width: 455px;
    text-align: right;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5; }
    @media only screen and (max-width: 900px) {
      .home .hero p {
        grid-column: 2 / 4;
        grid-row: 3 / 4;
        margin-bottom: unset;
        margin-top: unset;
        text-align: center;
        justify-self: center;
        align-self: unset;
        font-size: 18px;
        font-weight: 500; } }
    @media only screen and (max-width: 650px) {
      .home .hero p {
        font-size: 16px;
        font-weight: 600; } }
  .home .hero figure {
    min-height: 100vh;
    grid-column: 1 / 4;
    grid-row: 2 / 4;
    height: 100%;
    border-top-right-radius: var(--radiusL);
    border-bottom-right-radius: var(--radiusL);
    background-image: url(../img/heroImg1.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 0; }
    @media only screen and (max-width: 900px) {
      .home .hero figure {
        grid-column: 1 / 6;
        grid-row: 1 / 6;
        border-top-right-radius: unset;
        border-bottom-right-radius: unset;
        z-index: -1;
        filter: grayscale(50%); } }
    .home .hero figure:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: unset;
      z-index: 10; }
      @media only screen and (max-width: 900px) {
        .home .hero figure:before {
          background-color: rgba(255, 255, 255, 0.5); } }
  .home .hero h1 {
    grid-column: 5 / 6;
    grid-row: 1 / 3;
    max-width: 590px; }
    .home .hero h1 b {
      font-weight: inherit;
      color: var(--c1); }
    @media only screen and (max-width: 900px) {
      .home .hero h1 {
        grid-column: 2 / 5;
        grid-row: 2 / 3;
        max-width: unset;
        text-align: center;
        margin-top: 200px; } }
  .home .hero div {
    grid-column: 5 / 6;
    grid-row: 3 / 4;
    margin-bottom: 100px;
    margin-top: 40px; }
    .home .hero div .cta {
      margin-top: 20px;
      position: relative; }
    @media only screen and (max-width: 900px) {
      .home .hero div {
        grid-column: 2 / 5;
        grid-row: 4 / 5;
        justify-self: center; } }
  @media only screen and (max-width: 900px) {
    .home .hero {
      padding: 0;
      min-height: 100vh; } }

.slideshow {
  position: relative;
  grid-column: 1 / 4;
  grid-row: 2 / 4;
  height: 100%;
  border-top-right-radius: var(--radiusL);
  border-bottom-right-radius: var(--radiusL);
  overflow: hidden; }

.slideshow img.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0; }

.slideshow img.active {
  opacity: 1;
  z-index: 1; }

@media only screen and (min-width: 901px) {
  #eye-toggle,
  .eye {
    display: none; } }
@media only screen and (max-width: 900px) {
  .home .hero figure {
    transition: filter 0.3s ease; }

  .home .hero figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    transition: background-color 0.3s ease; }

  .home .hero h1,
  .home .hero p,
  .home .hero div {
    transition: opacity 0.3s ease; }

  .home .hero:has(#eye-toggle:checked) figure {
    filter: grayscale(0%); }

  .home .hero:has(#eye-toggle:checked) figure::before {
    background-color: rgba(225, 225, 225, 0); }

  .home .hero:has(#eye-toggle:checked) h1,
  .home .hero:has(#eye-toggle:checked) p,
  .home .hero:has(#eye-toggle:checked) div {
    opacity: 0; }

  .eye {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    z-index: 20; }
    .eye .icon-hide {
      display: none; }

  #eye-toggle:checked + .eye .icon-show {
    display: none; }

  #eye-toggle:checked + .eye .icon-hide {
    display: inline; } }
.sidekick {
  height: 100%;
  padding-top: var(--section);
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1750px; }
  .sidekick h1 {
    text-wrap: balance;
    text-align: center; }
    .sidekick h1 b {
      font-weight: inherit;
      color: var(--c1); }

.process {
  padding-block: var(--section) calc(var(--section) / 2);
  background-color: var(--c3); }
  .process .process-wrapper {
    margin-inline: auto;
    width: 100%;
    max-width: 1750px;
    padding-inline: var(--margin); }
    .process .process-wrapper h4 {
      color: #fff; }
    .process .process-wrapper .process-content {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px; }
      .process .process-wrapper .process-content div {
        background-color: #1C1C1C;
        padding: 50px;
        color: #fff;
        border-radius: var(--radiusM); }
        .process .process-wrapper .process-content div figure {
          margin: 140px 0 20px; }
        .process .process-wrapper .process-content div h4 {
          margin-bottom: 20px; }
      @media screen and (max-width: 1300px) {
        .process .process-wrapper .process-content {
          grid-template-columns: repeat(2, 1fr); } }
      @media screen and (max-width: 700px) {
        .process .process-wrapper .process-content {
          grid-template-columns: 1fr; } }

.myprocess-wrapper {
  padding-top: var(--section); }
  .myprocess-wrapper .myprocess {
    margin-inline: auto;
    width: 100%;
    max-width: 1750px;
    padding-inline: var(--margin);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px; }
    .myprocess-wrapper .myprocess .visuals {
      display: flex;
      flex-direction: column;
      gap: 30px; }
      .myprocess-wrapper .myprocess .visuals img {
        border-radius: var(--radiusM); }
      .myprocess-wrapper .myprocess .visuals img.border {
        border: 1px solid #e7e7e7; }
    .myprocess-wrapper .myprocess .content {
      display: grid;
      grid-template-columns: 100px 1fr;
      grid-template-rows: repeat(7, 60px auto); }
      .myprocess-wrapper .myprocess .content .nr {
        grid-column: 1 / 2;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-shadow: 0 0 0 2px var(--c1);
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 60px;
        font-size: 14px;
        font-weight: 800; }
      .myprocess-wrapper .myprocess .content span {
        grid-column: 1 / 2;
        margin-left: 29px;
        width: 2px;
        height: 100%;
        background-color: var(--c1); }
      .myprocess-wrapper .myprocess .content .step {
        grid-column: 2 / 3;
        grid-row: span 2;
        margin: 20px 0; }
        .myprocess-wrapper .myprocess .content .step h5 {
          margin-bottom: 10px; }
        .myprocess-wrapper .myprocess .content .step p {
          line-height: 1.7;
          opacity: .7; }
    @media screen and (max-width: 1350px) {
      .myprocess-wrapper .myprocess {
        grid-template-columns: 100%; }
        .myprocess-wrapper .myprocess .visuals {
          display: contents; }
          .myprocess-wrapper .myprocess .visuals img {
            grid-column: 1 / 2;
            order: 3; }
          .myprocess-wrapper .myprocess .visuals img:nth-child(2) {
            order: 1; }
        .myprocess-wrapper .myprocess .content {
          order: 2; }
        .myprocess-wrapper .myprocess .closing {
          grid-column: span 1;
          order: 4; } }
  @media screen and (max-width: 1000px) {
    .myprocess-wrapper {
      padding-top: calc(var(--section) / 2); } }
  @media screen and (max-width: 700px) {
    .myprocess-wrapper {
      padding-top: calc(var(--section) / 3); } }

.closing {
  position: relative;
  margin-top: 120px;
  padding-block: 120px;
  grid-column: span 2;
  max-width: 1040px;
  margin-inline: auto;
  text-align: center; }
  .closing h2 {
    color: var(--c3);
    padding-bottom: 40px;
    max-width: unset; }
  .closing p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 40px; }
  .closing .cta {
    position: relative; }
  .closing:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200vw;
    transform: translateX(-50%);
    background-color: #f1f1f1;
    z-index: -1; }

.showcase {
  padding-block: var(--section) calc(var(--section) / 2);
  background-color: var(--c3); }
  .showcase .showcase-wrapper {
    padding-inline: var(--margin);
    max-width: 1750px;
    margin-inline: auto; }
    .showcase .showcase-wrapper .showcase-content {
      display: flex;
      gap: var(--margin);
      align-items: center; }
      .showcase .showcase-wrapper .showcase-content span {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: var(--margin); }
      .showcase .showcase-wrapper .showcase-content div {
        width: 100%;
        background-size: cover;
        background-position: center center;
        border-radius: var(--radiusM);
        transition: 1s ease; }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-1 {
        aspect-ratio: 41 / 47;
        background-image: url(../imggrid/gemstone.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-2 {
        aspect-ratio: 41 / 38;
        background-image: url(../imggrid/larymiddlebrook.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-3 {
        aspect-ratio: 41 / 26;
        background-image: url(../imggrid/yellow.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-4 {
        aspect-ratio: 41 / 20;
        background-image: url(../imggrid/vilmart.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-5 {
        aspect-ratio: 41 / 32;
        background-image: url(../imggrid/nhordic.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-6 {
        aspect-ratio: 41 / 41;
        background-image: url(../imggrid/iceconemedia.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-7 {
        aspect-ratio: 41 / 17;
        background-image: url(../imggrid/carshoots.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-8 {
        aspect-ratio: 41 / 47;
        background-image: url(../imggrid/gripgaming.webp); }
      @media only screen and (max-width: 900px) {
        .showcase .showcase-wrapper .showcase-content {
          display: block;
          column-count: 2;
          column-gap: var(--margin); }
          .showcase .showcase-wrapper .showcase-content span {
            display: contents; }
          .showcase .showcase-wrapper .showcase-content div {
            break-inside: avoid;
            margin-bottom: var(--margin); } }

.showpage {
  padding-block: var(--section) calc(var(--section) / 2); }
  .showpage .pieces {
    margin-inline: auto;
    width: 100%;
    max-width: 1750px;
    padding-inline: var(--margin);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; }
    .showpage .pieces .piece .imgcontainer {
      overflow: hidden;
      aspect-ratio: 4 / 3;
      border-radius: var(--radiusM);
      transition: .3s ease; }
    .showpage .pieces .piece figure {
      aspect-ratio: 4 / 3;
      border-radius: var(--radiusM);
      background-size: cover;
      background-position: center center;
      transition: .3s ease; }
    .showpage .pieces .piece h4 {
      margin: 20px 0 0;
      font-size: 22px;
      transform: translateY(-30px);
      opacity: 0;
      transition: .3s ease;
      text-align: center; }
    .showpage .pieces .piece p {
      color: var(--c3);
      font-weight: 400;
      font-size: 15px;
      line-height: 1.2;
      transform: translateY(-40px);
      opacity: 0;
      transition: .3s ease;
      text-align: center; }
    .showpage .pieces .piece:hover .imgcontainer {
      transform: scale(1.03); }
    .showpage .pieces .piece:hover figure {
      transform: scale(1.1); }
    .showpage .pieces .piece:hover h4, .showpage .pieces .piece:hover p {
      transform: translateY(0);
      opacity: 1; }
    @media only screen and (max-width: 1200px) {
      .showpage .pieces {
        grid-template-columns: repeat(2, 1fr); } }
    @media only screen and (max-width: 900px) {
      .showpage .pieces {
        grid-template-columns: 100%; } }

#elltee {
  background-image: url(../showcase/elltee.jpg); }

#chequemate {
  background-image: url(../showcase/chequemate.jpg); }

#yellowwallpaper {
  background-image: url(../showcase/yellowwallpaper.jpg); }

#chord {
  background-image: url(../showcase/4chord.jpg); }

#nhordic {
  background-image: url(../showcase/nhordic.jpg); }

#gripgear {
  background-image: url(../showcase/gripgear.jpg); }

#komfourt {
  background-image: url(../showcase/komfourt.jpg); }

#vilmart {
  background-image: url(../showcase/vilmart.jpg); }

#koldingskagehus {
  background-image: url(../showcase/koldingskagehus.jpg); }

#gemstone {
  background-image: url(../showcase/gemstone.jpg); }

#myexome {
  background-image: url(../showcase/myexome.jpg); }

#adburyoaks {
  background-image: url(../showcase/adburyoaks.jpg); }

#investate {
  background-image: url(../showcase/investate.jpg); }

#tookatravel {
  background-image: url(../showcase/tookatravel.jpg); }

#minovary {
  background-image: url(../showcase/minovary.jpg); }

#trophy {
  background-image: url(../showcase/trophy.jpg); }

#bognoerden {
  background-image: url(../showcase/bornoerden.jpg); }

#icecone {
  background-image: url(../showcase/iceconemedia.jpg); }

#lunara {
  background-image: url(../showcase/lunara.jpg); }

#nounairsoft {
  background-image: url(../showcase/nounairsoft.jpg); }

#racent {
  background-image: url(../showcase/racent.jpg); }

#koderack {
  background-image: url(../showcase/koderack.jpg); }

#uniquewoodfloors {
  background-image: url(../showcase/uniquewoodfloors.jpg); }

#carshoots {
  background-image: url(../showcase/carshoots.jpg); }

#sandersandson {
  background-image: url(../showcase/sandersandson.jpg); }

#otwelve {
  background-image: url(../showcase/otwelve.jpg); }

#oktravel {
  background-image: url(../showcase/oktravel.jpg); }

.showcase {
  padding-block: var(--section) calc(var(--section) / 2);
  background-color: var(--c3); }
  .showcase .showcase-wrapper {
    padding-inline: var(--margin);
    max-width: 1750px;
    margin-inline: auto; }
    .showcase .showcase-wrapper .showcase-content {
      display: flex;
      gap: var(--margin);
      align-items: center; }
      .showcase .showcase-wrapper .showcase-content span {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: var(--margin); }
      .showcase .showcase-wrapper .showcase-content div {
        width: 100%;
        background-size: cover;
        background-position: center center;
        border-radius: var(--radiusM);
        transition: 1s ease; }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-1 {
        aspect-ratio: 41 / 47;
        background-image: url(../imggrid/gemstone.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-2 {
        aspect-ratio: 41 / 38;
        background-image: url(../imggrid/larymiddlebrook.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-3 {
        aspect-ratio: 41 / 26;
        background-image: url(../imggrid/yellow.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-4 {
        aspect-ratio: 41 / 20;
        background-image: url(../imggrid/vilmart.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-5 {
        aspect-ratio: 41 / 32;
        background-image: url(../imggrid/nhordic.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-6 {
        aspect-ratio: 41 / 41;
        background-image: url(../imggrid/iceconemedia.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-7 {
        aspect-ratio: 41 / 17;
        background-image: url(../imggrid/carshoots.webp); }
      .showcase .showcase-wrapper .showcase-content .showcase-entry-8 {
        aspect-ratio: 41 / 47;
        background-image: url(../imggrid/gripgaming.webp); }
      @media only screen and (max-width: 900px) {
        .showcase .showcase-wrapper .showcase-content {
          display: block;
          column-count: 2;
          column-gap: var(--margin); }
          .showcase .showcase-wrapper .showcase-content span {
            display: contents; }
          .showcase .showcase-wrapper .showcase-content div {
            break-inside: avoid;
            margin-bottom: var(--margin); } }

.showpage {
  padding-block: var(--section) calc(var(--section) / 2); }
  .showpage .pieces {
    margin-inline: auto;
    width: 100%;
    max-width: 1750px;
    padding-inline: var(--margin);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; }
    .showpage .pieces .piece .imgcontainer {
      overflow: hidden;
      aspect-ratio: 4 / 3;
      border-radius: var(--radiusM);
      transition: .3s ease; }
    .showpage .pieces .piece figure {
      aspect-ratio: 4 / 3;
      border-radius: var(--radiusM);
      background-size: cover;
      background-position: center center;
      transition: .3s ease; }
    .showpage .pieces .piece h4 {
      margin: 20px 0 0;
      font-size: 22px;
      transform: translateY(-30px);
      opacity: 0;
      transition: .3s ease;
      text-align: center; }
    .showpage .pieces .piece p {
      color: var(--c3);
      font-weight: 400;
      font-size: 15px;
      line-height: 1.2;
      transform: translateY(-40px);
      opacity: 0;
      transition: .3s ease;
      text-align: center; }
    .showpage .pieces .piece:hover .imgcontainer {
      transform: scale(1.03); }
    .showpage .pieces .piece:hover figure {
      transform: scale(1.1); }
    .showpage .pieces .piece:hover h4, .showpage .pieces .piece:hover p {
      transform: translateY(0);
      opacity: 1; }
    @media only screen and (max-width: 1200px) {
      .showpage .pieces {
        grid-template-columns: repeat(2, 1fr); } }
    @media only screen and (max-width: 900px) {
      .showpage .pieces {
        grid-template-columns: 100%; } }

#elltee {
  background-image: url(../showcase/elltee.jpg); }

#chequemate {
  background-image: url(../showcase/chequemate.jpg); }

#yellowwallpaper {
  background-image: url(../showcase/yellowwallpaper.jpg); }

#chord {
  background-image: url(../showcase/4chord.jpg); }

#nhordic {
  background-image: url(../showcase/nhordic.jpg); }

#gripgear {
  background-image: url(../showcase/gripgear.jpg); }

#komfourt {
  background-image: url(../showcase/komfourt.jpg); }

#vilmart {
  background-image: url(../showcase/vilmart.jpg); }

#koldingskagehus {
  background-image: url(../showcase/koldingskagehus.jpg); }

#gemstone {
  background-image: url(../showcase/gemstone.jpg); }

#myexome {
  background-image: url(../showcase/myexome.jpg); }

#adburyoaks {
  background-image: url(../showcase/adburyoaks.jpg); }

#investate {
  background-image: url(../showcase/investate.jpg); }

#tookatravel {
  background-image: url(../showcase/tookatravel.jpg); }

#minovary {
  background-image: url(../showcase/minovary.jpg); }

#trophy {
  background-image: url(../showcase/trophy.jpg); }

#bognoerden {
  background-image: url(../showcase/bornoerden.jpg); }

#icecone {
  background-image: url(../showcase/iceconemedia.jpg); }

#lunara {
  background-image: url(../showcase/lunara.jpg); }

#nounairsoft {
  background-image: url(../showcase/nounairsoft.jpg); }

#racent {
  background-image: url(../showcase/racent.jpg); }

#koderack {
  background-image: url(../showcase/koderack.jpg); }

#uniquewoodfloors {
  background-image: url(../showcase/uniquewoodfloors.jpg); }

#carshoots {
  background-image: url(../showcase/carshoots.jpg); }

#sandersandson {
  background-image: url(../showcase/sandersandson.jpg); }

#otwelve {
  background-image: url(../showcase/otwelve.jpg); }

#oktravel {
  background-image: url(../showcase/oktravel.jpg); }

.testimonials {
  padding-block: var(--section); }
  .testimonials > img {
    filter: brightness(0.1); }
  .testimonials .testimonial-slider {
    width: 60%;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    margin-inline: auto;
    margin-top: 30px; }
    .testimonials .testimonial-slider .testimonials-slides-container {
      display: grid;
      grid-template-columns: repeat(4, 100%);
      transition: transform 0.6s ease-in-out; }
      .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide {
        width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px; }
        .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .quote {
          font-size: 24px;
          font-weight: 400;
          line-height: 1.5;
          margin: 0;
          text-align: center; }
          @media only screen and (max-width: 900px) {
            .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .quote {
              font-size: 20px; } }
        .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .profile {
          display: flex;
          align-items: center;
          gap: 20px; }
          .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .profile figure {
            grid-row: 1 / 3;
            width: 75px;
            height: 75px;
            border-radius: 50px;
            background-size: cover;
            background-position: center center; }
          .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .profile #elltee {
            background-image: url(../testimonials/LaurelinTaylor-EllteeConsultancy.JPG); }
          .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .profile #chord {
            background-image: url(../testimonials/KyleGolembiewski-4chord.jpg); }
          .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .profile #sivak {
            background-image: url(../testimonials/ArtemSivak-SivakSolutions.jpg); }
          .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .profile #timestamp {
            background-image: url(../testimonials/BrandonReformado-Timestamp.jpg); }
          .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .profile .author {
            font-weight: 600;
            font-size: 18px; }
            .testimonials .testimonial-slider .testimonials-slides-container .testimonial-slide .profile .author span {
              display: block;
              font-weight: 400;
              font-size: 15px;
              margin-top: 3px;
              opacity: .8; }
  .testimonials .dots {
    display: flex;
    justify-content: center;
    margin-top: 20px; }
  .testimonials .dot {
    width: 10px;
    height: 10px;
    background-color: #a3a3a3;
    border-radius: 5px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease; }
  .testimonials .dot.active {
    width: 20px;
    background-color: var(--c1); }

.contact-page {
  padding-block: var(--section) calc(var(--section) / 2); }
  .contact-page .contact-wrapper {
    margin-inline: auto;
    width: 100%;
    max-width: 1750px;
    padding-inline: var(--margin);
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px; }
    .contact-page .contact-wrapper form {
      display: flex;
      flex-direction: column;
      background-color: #1C1C1C;
      padding: 120px 100px;
      border-radius: var(--radiusM); }
      .contact-page .contact-wrapper form h3 {
        line-height: 1.7;
        color: #fff;
        margin-bottom: 80px; }
      .contact-page .contact-wrapper form fieldset.personal {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px; }
        .contact-page .contact-wrapper form fieldset.personal input[type="text"], .contact-page .contact-wrapper form fieldset.personal input[type="email"] {
          all: unset;
          appearance: none;
          -webkit-appearance: none;
          -moz-appearance: none;
          color: #fff;
          padding-block: 6px;
          border-bottom: 1px solid #999;
          font-family: "Manrope", serif;
          font-optical-sizing: auto;
          font-weight: 400;
          font-style: normal;
          font-size: 22px; }
        .contact-page .contact-wrapper form fieldset.personal input[type="email"] {
          grid-column: span 2; }
          @media only screen and (max-width: 850px) {
            .contact-page .contact-wrapper form fieldset.personal input[type="email"] {
              grid-column: span 1; } }
        .contact-page .contact-wrapper form fieldset.personal input::placeholder {
          color: #999;
          opacity: 1;
          transition: opacity 0.3s ease;
          font-family: "Manrope", serif;
          font-optical-sizing: auto;
          font-weight: 400;
          font-style: normal;
          font-size: 22px; }
        .contact-page .contact-wrapper form fieldset.personal input:focus::placeholder {
          opacity: 0.2; }
        @media only screen and (max-width: 850px) {
          .contact-page .contact-wrapper form fieldset.personal {
            grid-template-columns: 1fr; } }
      .contact-page .contact-wrapper form fieldset.category {
        font-family: "Manrope", serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px; }
        .contact-page .contact-wrapper form fieldset.category label {
          color: #999;
          border: 1px solid #666;
          padding: 8px 16px;
          border-radius: 1000px;
          display: flex;
          gap: 10px;
          justify-content: center;
          align-items: center;
          flex: 1;
          font-size: 16px;
          font-weight: 500;
          cursor: pointer;
          white-space: nowrap; }
        .contact-page .contact-wrapper form fieldset.category label:has(input[type="checkbox"]:checked) {
          color: #333;
          background-color: #fff;
          border-color: #fff; }
        .contact-page .contact-wrapper form fieldset.category input[type="checkbox"] {
          display: none; }
      .contact-page .contact-wrapper form textarea {
        width: 100%;
        color: #fff;
        border-bottom: 1px solid #999;
        padding-block: 16px;
        background-color: transparent;
        font-family: "Manrope", serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 22px;
        color: #fff;
        margin-top: 80px; }
        .contact-page .contact-wrapper form textarea::placeholder {
          font-family: "Manrope", serif;
          font-optical-sizing: auto;
          font-weight: 400;
          font-style: normal;
          font-size: 22px;
          color: #999; }
        .contact-page .contact-wrapper form textarea:focus-visible {
          outline: none; }
      .contact-page .contact-wrapper form button {
        align-self: flex-end;
        margin-top: 30px;
        font-size: 16px;
        position: relative;
        cursor: pointer; }
      .contact-page .contact-wrapper form h5 {
        color: #fff;
        margin: 80px 0 20px; }
    @media only screen and (max-width: 1250px) {
      .contact-page .contact-wrapper {
        display: flex;
        flex-direction: column; } }

.information h3 {
  margin: 120px 0 20px;
  color: var(--c3);
  font-size: 32px; }
.information p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5; }
.information .some {
  margin-top: 40px;
  display: flex;
  column-gap: 30px;
  row-gap: 10px;
  flex-wrap: wrap; }
  .information .some a {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px; }
  .information .some img {
    filter: brightness(0.1); }
.information .write {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px; }
  .information .write a {
    display: block; }
  @media only screen and (max-width: 1250px) {
    .information .write {
      flex-direction: row; } }

.message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px 50px;
  border-radius: var(--radiusM);
  font-size: 22px;
  font-weight: 500;
  animation: fadeOut 1s ease 2s forwards;
  text-align: center; }
  .message h3 {
    margin-bottom: 10px; }

.success {
  background-color: #5cd35ccb; }

.error {
  background-color: #d35c6cc9; }

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden; } }
footer {
  background-color: var(--c3);
  padding-top: calc(var(--section) / 2);
  padding-bottom: 30px; }
  footer .content {
    padding-inline: var(--margin);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: auto;
    max-width: 1750px; }
    footer .content .links {
      display: flex;
      gap: 30px;
      padding-block: 30px; }
      footer .content .links a {
        transition: .3s ease;
        color: #999; }
        footer .content .links a:hover {
          color: #fff; }
    footer .content .some {
      display: flex;
      gap: 30px; }
      footer .content .some a {
        transition: .3s ease;
        opacity: .5; }
        footer .content .some a:hover {
          opacity: 1; }
  footer .extra {
    position: relative;
    margin-top: 30px;
    padding-top: 30px;
    padding-inline: var(--margin);
    display: flex;
    justify-content: space-between;
    margin-inline: auto;
    max-width: 1750px;
    color: #999;
    font-size: 14px; }
    footer .extra:before {
      content: "";
      position: absolute;
      top: 0;
      left: var(--margin);
      right: var(--margin);
      border-top: 1px solid #999; }
