@media (max-width: 2100px) {
  .header {
    height: auto;
  }
}
@media (max-width: 1556px) {
  .header {
    height: auto;
  }
}
@media (max-width: 1480px) {
  body {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .header {
    height: auto;
  }
  button {
    height: 2rem;
  }
  .pin_container {
    width: calc(100% - 40px);
    -moz-columns: 3;
         columns: 3;
  }
  .portfolio-overview {
    width: calc(100% - 3rem);
    grid-auto-rows: 12rem;
  }
}
@media (max-width: 1020px) {
  .header {
    height: auto;
    padding: 0;
  }
  .menu-title.secondary {
    font-size: 3rem;
    line-height: normal;
    color: #fff;
    text-align: center;
  }
  .open {
    display: flex !important;
  }
  .wrap-burger {
    display: flex;
    justify-content: space-between;
    padding: 3% 3% 0px 3%;
    position: relative;
  }
  .wrap-burger a:hover {
    opacity: 0.6;
  }
  .menu-burger {
    display: flex;
  }
  .navigation_item {
    display: none;
    flex-direction: column;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    overflow-y: auto;
    padding: 50px 40px;
    background-color: #212121;
    animation: burgerAnimation 0.4s;
  }
  .navigation_item a {
    flex-direction: column;
    row-gap: 30px;
  }
  @keyframes burgerAnimation {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  button {
    height: 3.5rem;
    width: 15rem;
  }
}
@media (max-width: 992px) {
  .portfolio-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 3rem;
  }
  .biography-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .biography-description {
    font-size: 1rem;
  }
  .biography-description, .biography-image {
    width: 100%;
  }
  .biography-image {
    text-align: center;
  }
}
@media (max-width: 874px) {
}
@media (max-width: 768px) {
  button {
    width: 8rem;
  }
  .pin_container {
    -moz-columns: 2;
         columns: 2;
  }
  .portfolio-overview {
    width: calc(100% - 2rem);
    grid-template-columns: 1fr;
    grid-auto-rows: 16rem;
    gap: 0.85rem;
  }
  .portfolio-card-large,
  .portfolio-card-wide {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 480px) {
  .pin_container {
    -moz-columns: 1;
         columns: 1;
  }
}
