@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
}

:root {
  --shadow: #1a2236;
  --scrollbarBG: #eee;
  --thumbBG: #fdc157;
}
::-webkit-scrollbar {
  width: 16px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  box-shadow: 0 -100vh 0 100vh var(--shadow), 0 0 15px 5px black;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .wrapper {
    display: flex;
    flex-direction: column;
  }

  i {
    padding-left: 1em;
  }

  .top-nav,
  .pop-up-menu {
    display: flex;
    justify-content: space-between;
  }

  .top-nav .hamburger,
  .pop-up-menu .cancel {
    display: flex;
    flex-direction: column;
    margin: 1.5em 1em 0 0;
  }

  .top-nav .hamburger div,
  .pop-up-menu .cancel div{
    width: 25px;
    height: 3px;
    background-color: #1a2236;
    padding: 2px 0;
    border: 1px solid #fff;
    border-radius: 20px;
  }

  .top-nav .hamburger:active .bar:nth-child(1) {
    opacity: 0;
  }

  .top-nav .hamburger:active .bar:nth-child(2) {
    transform: translateY(3px) rotate(-45deg);
    transition: transform 0.1s ease-in-out;
    border: none;
  }

  .top-nav .hamburger:active .bar:nth-child(3) {
    transform: translateY(-1px) rotate(46deg);
    transition: transform 0.1s ease-in-out;
    border: none;
  }

  .pop-up-menu .cancel .cancel-bar-1 {
    transform: translateY(3px) rotate(-45deg);
    border: none;
  }

  .pop-up-menu .cancel .cancel-bar-2 {
    transform: translateY(-1px) rotate(46deg);
    border: none;
  }

  .modal {
    padding: 0 1em;
    background-color: #fff;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    overflow: auto;
    animation: zoomin 0.5s linear 1;
    animation-delay: 0.1s;
    visibility: hidden;
    animation-fill-mode: forwards;
  }

  .modal .cancel {
    float: right;
    margin: 1em 1em 0 0;
  }

  .modal .cancel i {
    font-size: xx-large;
  }

  .modal h2 {
    margin-top: 2em;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 80%;
    color: #1a2236;
  }

  .top-nav .dropdown-menu {
    position: fixed;
    background-color: #fff;
    color: #000;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 300%;
    background-image: url('assets/img/pop-up-menu-footer.svg');
    background-repeat: no-repeat;
    background-position-y: bottom;
    background-size: contain;
    animation: fadeIn 1.5s;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .visibility,
  .pauseName {
    display: none;
  }

  .dropdown-menu ul {
    padding: 3em 2em;
    list-style: none;
    text-decoration: none;
    color: inherit;
  }

  .dropdown-menu .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    background: url('assets/img/pop-image-dots.svg') bottom left no-repeat,
      url('assets/img/pop-image-dots.svg') top right no-repeat;
    margin: 2em auto;
    position: relative;
    top: 6%;
  }

  .dropdown-menu ul li {
    padding-bottom: 1em;
  }

  .mobile-nav-links .cancel-menu {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  footer a {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1em;
    line-height: 24px;
    color: #92dcdc;
    background-color: inherit;
    border: none;
  }

  .dropdown-menu button {
    float: right;
    margin: 1em 2em;
    font-size: 1em;
    background: none;
    border: none;
  }

  .introduction {
    padding: 1em;
  }

  .introduction h1 {
    font-family: 'Playfair Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    animation: zoomin 1s linear 1;
    animation-delay: 2s;
    visibility: hidden;
    animation-fill-mode: forwards;
  }

  @keyframes zoomin {
    0% {
      transform: scale(0.5);
      visibility: visible;
    }

    100% {
      transform: scale(1);
      visibility: visible;
    }
  }

  .introduction p {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    margin: 1em 0;
  }

  .card .card-description button {
    background-color: #1a2236;
    color: #fff;
    border: 1px solid #fff;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1em;
    height: 3em;
    width: 60%;
  }

  .introduction .collaboration a,
  .about .get-cv a,
  .form form .contact-collaboration button {
    width: 100%;
    height: 50px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    background-color: #1a2236;
    color: #fff;
    padding: 0.7em;
  }

  .about .get-cv {
    margin: 2em;
    text-align: center;
  }


  .card .card-description button:hover {
    background-color: #fff;
    color: #1a2236;
    border: 1px solid #1a2236;
  }

  .card .card-description button:focus {
    background-color: #fff;
    color: #1a2236;
    border: 2px solid #1a2236;
  }

  .introduction .collaboration a:focus,
  .about .get-cv a:focus {
    background-color: #fff;
    color: #1a2236;
    border: 2px solid #1a2236;
  }

  .introduction .collaboration a:hover,
  .about .get-cv a:hover,
  .form form .contact-collaboration button:hover {
    background-color: #fff;
    color: #1a2236;
    border: 1px solid #1a2236;
  }

  .form form .contact-collaboration button:focus {
    background-color: #fff;
    color: #1a2236;
    border: 2px solid #1a2236;
  }

  .introduction .collaboration,
  .form form .contact-collaboration {
    text-align: center;
  }

  .intro-geo {
    width: 100%;
  }

  .project h2 {
    font-family: 'Playfair Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    padding: 0.5em;
  }

  .project .card-container {
    display: grid;
    grid-template-columns: auto;
  }

  .card-container .card {
    display: flex;
    flex-direction: column;
  }

  .modal .carousel-previews {
    display: flex;
  }

  .modal .carousel-previews img {
    width: 25%;
  }

  .modal .carousel img,
  .card-container .card img {
    width: 100%;
    margin-bottom: -10px;
  }

  .modal p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    padding: 1em 0;
  }

  .modal .modal-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal .modal-footer a {
    text-decoration: none;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #1a2236;
    border: 1px solid #1a2236;
    width: 80%;
    text-align: center;
    padding: 1em;
    margin: 1em 0;
  }

  .modal .modal-footer a i {
    float: right;
  }

  .modal .modal-footer a:hover {
    background-color: #1a2236;
    color: #fff;
  }

  .card-container .card .card-description {
    background-color: #1a2236;
    padding: 1.5em;
  }

  .card-container .card .card-description > * {
    margin: 1em 0;
  }

  .about p {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 1em;
  }

  .form p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    padding: 0 2em;
  }

  .card .card-description p {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
  }

  .modal ul {
    display: flex;
    margin: 1.5em 0;
  }

  .modal ul li {
    list-style: none;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 10.3334px;
    margin-right: 1em;
    border: 0.516669px solid #1a2236;
    padding: 6px 10px;
  }

  .card .card-description ul {
    display: flex;
  }

  .about ul li {
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.0525em;
  }

  .card .card-description ul li {
    list-style: none;
    background-color: #98dede;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 10.3334px;
    margin-right: 1em;
    padding: 1em;
  }

  .about {
    padding: 1em;
  }

  .about h2 {
    font-family: 'Playfair Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    margin: 1em 0 0.5em 0;
  }

  .about h3 {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    padding-bottom: 1.5em;
  }

  .about .languages {
    background-color: #1c528a;
    height: 21em;
    background-image: url('assets/img/ic_languages_mob.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 102px;
    color: #fff;
    padding: 0.5em 3em;
  }

  .about .frameworks {
    background-color: #e2505c;
    height: 21em;
    background-image: url('assets/img/ic_framework.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 102px;
    color: #fff;
    padding: 0.5em 3em;
  }

  .about .skills {
    background-color: #1a2236;
    height: 21em;
    background-image: url('assets/img/ic_skills.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 102px;
    color: #fff;
    padding: 0.5em 3em;
  }

  .form {
    background-color: #f9f9fa;
  }

  .form h2 {
    font-family: 'Playfair Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    padding: 0.5em 0.5em 0.2em 0.5em;
  }

  .form form {
    padding: 2em;
    display: flex;
    flex-direction: column;
  }

  .form fieldset {
    display: flex;
    flex-direction: column;
    padding: 0.5em 1em;
    border-radius: 4px;
    margin-bottom: 0.5em;
    background-color: #fff;
  }

  .form fieldset:focus-within {
    border: 2px solid #1a2236;
  }

  #error {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #f00;
    float: right;
  }

  .form fieldset label {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    padding-bottom: 0.5em;
  }

  .form fieldset input {
    border: none;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    outline-style: none;
    background-color: #fff;
  }

  .form textarea {
    width: 100%;
    height: 7em;
    padding: 1em;
    margin-bottom: 1em;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
  }

  footer {
    background-color: #1a2236;
    margin-top: 1em;
    padding: 2em;
  }

  footer .socials {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
  }

  .desktop-header,
  .introduction-desktop,
  .project-desktop,
  footer a #desktop-download-icon {
    display: none;
  }
}

/* Desktop */
@media screen and (min-width: 769px) {
  .mobile-header,
  .introduction,
  .project,
  .form header img,
  footer a #mobile-download-icon,
  main figure {
    display: none;
  }

  #desktop-top-spacer {
    height: 3.9em;
    background-color: #e04a54;
  }

  i {
    padding-left: 1em;
  }

  .modal {
    border: 2em solid #1a2236;
    padding: 2em;
    background-color: #fff;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 2;
    left: 0;
    top: 0;
    overflow: auto;
    animation: fadeIn 1.5s;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .visibility {
    display: none;
  }

  .modal h2 {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 80%;
  }

  .modal .cancel div {
    width: 25px;
    height: 3px;
    background-color: #1a2236;
    padding: 2px 0;
    border: 1px solid #fff;
    border-radius: 20px;
  }

  .modal .cancel {
    float: right;
    margin: 1em 1em 0 0;
  }

  .modal .cancel i {
    font-size: xx-large;
  }

  .modal ul {
    display: flex;
    margin: 1.5em 0;
  }

  .modal ul li {
    list-style: none;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 10.3334px;
    margin-right: 1em;
    border: 0.516669px solid #1a2236;
    padding: 6px 10px;
    width: 129px;
    text-align: center;
  }

  .modal .carousel-previews {
    display: flex;
  }

  footer .socials a img {
    transition: transform 1s;
  }

  .modal .carousel-previews img {
    width: 25%;
  }

  .modal .carousel img {
    width: 100%;
    margin-bottom: -10px;
  }

  .modal p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #1a2236;
    width: 50%;
    margin: 3em auto;
  }

  .modal .modal-footer {
    width: 50%;
    margin: 0 auto;
  }

  .desktop-header {
    position: fixed;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1em 0;
    text-align: center;
    display: flex;
    justify-content: center;
    box-shadow: 0 0.5px 0 #dddfe6;
    z-index: 1;
  }

  .desktop-header nav {
    display: flex;
    width: 30%;
    justify-content: space-around;
    padding: 0.1em;
  }

  .desktop-header nav a {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: inherit;
    animation: movedown 1s linear 1;
    animation-delay: 1s;
    visibility: hidden;
    animation-fill-mode: forwards;
  }

  @keyframes movedown {
    0% {
      transform: translateY(-100px);
      visibility: visible;
    }

    100% {
      transform: translateY(0);
      visibility: visible;
    }
  }

  footer .socials a {
    padding-left: 2em;
  }

  .modal .modal-footer a {
    text-decoration: none;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #1a2236;
    border: 1px solid #1a2236;
    text-align: center;
    padding: 0.5em;
    margin: 1em 1em 0 0;
  }

  .introduction-texts .collaboration {
    margin-top: 4em;
  }

  .introduction-texts .collaboration a {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    background-color: #1a2236;
    border: 1px solid #1a2236;
    color: #fff;
    padding: 0.8em 1em;
  }

  .desktop-header nav a:first-child {
    border-bottom: 2px solid #1a2236;
  }

  .modal .modal-footer a i {
    padding-left: 2em;
  }

  .modal .modal-footer a:hover {
    background-color: #1a2236;
    color: #fff;
  }

  .introduction-desktop {
    display: flex;
  }

  .introduction-desktop .introduction-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('assets/img/image_dots.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 102px;
    padding: 3em 5em;
  }

  .introduction-texts h1 {
    font-family: 'Playfair Display', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 100%;
    animation: zoomin 1s linear 1;
    animation-delay: 2s;
    visibility: hidden;
    animation-fill-mode: forwards;
  }

  @keyframes zoomin {
    0% {
      transform: scale(0.5);
      visibility: visible;
    }

    100% {
      transform: scale(1);
      visibility: visible;
    }
  }

  .introduction-texts p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    margin: 3em 4em 0 0;
  }

  footer a {
    background-color: inherit;
    border: none;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
  }

  .card .card-description button {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    padding: 0.5em;
    border: 1px solid #1a2236;
  }

  .desktop-card-2 button,
  .desktop-card-3 button,
  .desktop-card-4 button,
  .desktop-card-5 button,
  .desktop-card-6 button {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    padding: 0.5em;
    border: 1px solid #1a2236;
  }

  .about-description .get-cv a {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    background-color: #1a2236;
    border: 1px solid #1a2236;
    color: #fff;
    padding: 0.8em 1.8em;
  }

  .form .contact-collaboration button {
    background-color: #1a2236;
    border: 1px solid #1a2236;
    color: #fff;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 27px;
    padding: 0.8em;
  }

  .introduction-texts .collaboration a:hover,
  .about-description .get-cv a:hover,
  .form .contact-collaboration button:hover {
    background-color: #fff;
    color: #1a2236;
    border: 1px solid #1a2236;
  }

  .introduction-texts .collaboration a:focus,
  .about-description .get-cv a:focus,
  .form .contact-collaboration button:focus {
    background-color: #fff;
    color: #1a2236;
    border: 2px solid #1a2236;
  }

  .introduction-desktop .hero-geometry {
    width: 100%;
  }

  .introduction-desktop .hero-geometry img {
    width: 100%;
  }

  #projects-desktop-section {
    height: 10em;
  }

  .project-desktop .flex-wrapper {
    display: flex;
  }

  .project-desktop header {
    display: inline-flex;
    background-image: url('assets/img/image_dots.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;
    background-size: 102px;
  }

  .project-desktop h2 {
    font-family: 'Playfair Display', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 110px;
    line-height: 100%;
    transform: rotate(-90deg);
    height: 3em;
    margin-top: 0.25em;
  }

  .project-desktop .card {
    background-image: url('assets/img/desktop-project-1/featured.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
  }

  .project-desktop .card .card-description {
    background-color: rgba(26, 34, 54, 0.95);
    padding: 4em;
    margin-top: 13em;
  }

  .form header p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    padding: 2.5em 0;
  }

  .card .card-description p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    color: #fff;
  }

  .card .card-description ul {
    display: flex;
    padding-top: 1em;
    padding-bottom: 2em;
  }

  .card .card-description ul li {
    list-style: none;
    background-color: #98dede;
    padding: 0.5em;
    margin-right: 1em;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
  }

  .card .card-description button:hover,
  .desktop-card-2 button:hover,
  .desktop-card-3 button:hover,
  .desktop-card-4 button:hover,
  .desktop-card-5 button:hover,
  .desktop-card-6 button:hover {
    background-color: #1a2236;
    color: #fff;
    border: 1px solid #fff;
  }

  .card .card-description button:focus,
  .desktop-card-2 button:focus,
  .desktop-card-3 button:focus,
  .desktop-card-4 button:focus,
  .desktop-card-5 button:focus,
  .desktop-card-6 button:focus {
    background-color: #1a2236;
    color: #fff;
    border: 2px solid #fff;
  }

  .project-desktop .grid-container {
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    margin-top: 2em;
    padding: 0 0.5em;
  }

  .project-desktop .grid-container > * {
    width: 100%;
  }

  .desktop-card-2,
  .desktop-card-3,
  .desktop-card-4,
  .desktop-card-5,
  .desktop-card-6 {
    background-color: rgba(26, 34, 54, 0.95);
    padding: 2em;
    position: absolute;
    bottom: 0px;
    width: 100%;
  }

  .desktop-card-container-2 {
    background-image: url(assets/img/mobile-project-2/featured.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 378px;
    position: relative;
  }

  .desktop-card-container-3 {
    background-image: url(assets/img/mobile-project-3/featured.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 378px;
    position: relative;
  }

  .desktop-card-container-4 {
    background-image: url(assets/img/mobile-project-4/featured.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 378px;
    position: relative;
  }

  .desktop-card-container-5 {
    background-image: url(assets/img/desktop-project-2/featured.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 378px;
    position: relative;
  }

  .desktop-card-container-6 {
    background-image: url(assets/img/mobile-project-6/featured.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 378px;
    position: relative;
  }

  .desktop-card-design {
    background-image: url(assets/img/grid-image-geometry.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 378px;
    position: relative;
  }

  .desktop-card-2 p,
  .desktop-card-3 p,
  .desktop-card-4 p,
  .desktop-card-5 p,
  .desktop-card-6 p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
  }

  .desktop-card-2 ul,
  .desktop-card-3 ul,
  .desktop-card-4 ul,
  .desktop-card-5 ul,
  .desktop-card-6 ul {
    display: flex;
    padding: 1em 0;
  }

  .desktop-card-2 ul li,
  .desktop-card-3 ul li,
  .desktop-card-4 ul li,
  .desktop-card-5 ul li,
  .desktop-card-6 ul li {
    list-style: none;
    background-color: #98dede;
    padding: 0.5em;
    margin-right: 1em;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1em;
  }

  .about {
    display: flex;
    flex-direction: row-reverse;
  }

  .about .skills-wrapper {
    display: grid;
    grid-template-columns: 18em 18em;
    padding: 10em 5em;
  }

  .about .skills-wrapper section ul li {
    list-style: none;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: -0.0525em;
  }

  .about .skills-wrapper .languages {
    background-color: #1c528a;
    height: 20em;
    background-image: url('assets/img/ic_languages_mob.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 102px;
    color: #fff;
    padding: 1.5em 3em;
  }

  .about .skills-wrapper .frameworks {
    background-color: #e2505c;
    height: 20em;
    background-image: url('assets/img/ic_framework.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 102px;
    color: #fff;
    padding: 1.5em 3em;
  }

  .about .skills-wrapper .skills {
    background-color: #1a2236;
    height: 20em;
    background-image: url('assets/img/ic_skills.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 102px;
    color: #fff;
    padding: 1em 3em;
  }

  .about .skills-wrapper .desktop-design {
    background-image: url('assets/img/image_dots_with_teal.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 222px;
    color: #fff;
    height: 20em;
  }

  .about .about-description {
    padding: 10em 5em;
  }

  .form header h2 {
    font-family: 'Playfair Display', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 90px;
    line-height: 100%;
  }

  .about .about-description h2 {
    font-family: 'Playfair Display', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 90px;
  }

  .about .about-description p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    padding-bottom: 2em;
  }

  .form {
    background-image: url('assets/img/desktop-form-geo.svg'),
      url('assets/img/contact-footer-geometry.svg');
    background-repeat: no-repeat, no-repeat;
    background-position-x: left, right;
    background-position-y: top, bottom;
    padding: 10em 20em;
  }

  .form fieldset {
    display: flex;
    flex-direction: column;
    padding: 0.5em 0;
    border-radius: 4px;
    margin-bottom: 0.5em;
    border: none;
  }

  .form .desktop-style {
    display: flex;
    justify-content: space-between;
  }

  .form fieldset input {
    border: none;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    outline-style: none;
    padding: 2em 1em;
    border-radius: 4px;
  }

  .form fieldset input:focus {
    border: 1px solid #1a2236;
  }

  #error {
    margin: 1em;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #f00;
  }

  #error-indicator {
    border: 1px solid #f00;
  }

  .form fieldset label {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #7d7c84;
    padding-bottom: 0.5em;
  }

  .form textarea {
    width: 100%;
    height: 7em;
    padding: 1em;
    margin-bottom: 1em;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
  }

  footer .socials a img:hover {
    transform: rotate(360deg);
  }

  .form .contact-collaboration {
    text-align: center;
    margin-top: 3em;
  }

  footer {
    background-color: #1a2236;
    display: flex;
    justify-content: space-between;
    padding: 1em 10em;
  }
}

/* Tablet */
@media only screen and (min-width: 769px) and (max-width: 1100px){

  .desktop-header nav a {
    margin: 0 0.5em;
  }

  .desktop-card-2 ul,
  .desktop-card-3 ul,
  .desktop-card-4 ul,
  .desktop-card-5 ul,
  .desktop-card-6 ul {
    display: block;
  }

  .desktop-card-2 ul li,
  .desktop-card-3 ul li,
  .desktop-card-4 ul li,
  .desktop-card-5 ul li,
  .desktop-card-6 ul li {
    margin: 0.5em 0;
  }

  .about .skills-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about .skills-wrapper .languages,
  .about .skills-wrapper .frameworks,
  .about .skills-wrapper .skills{
    padding: 1em 2em 1em 1em;
    width: 15em;
  }

  .about .about-description {
    margin-top: 5em;
  }

  .about .skills-wrapper .desktop-design {
    display: none;
  }

  .form {
    padding: 10em;
  }

  footer {
    padding: 1em 5em;
  }
}
