@media screen and (min-width: 992px) {
  body {
    margin: 0;
  }

  main {
    margin-top: 0;
  }

  header {
    width: 100%;
  }

  /* Navbar */

  .line {
    display: none;
  }

  #navbar {
    display: block;
    top: 0;
    z-index: 2;
    background-color: var(--tamblack);
    height: 4rem;
    width: 100%;
    max-width: 2100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
  }

  #navbar img {
    display: block;
    margin-left: 1rem;
  }

  #navbar-isologo {
    width: 120px;
    height: 100%;
  }

  #navbar ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-right: 1rem;
  }

  #navbar a {
    color: var(--tamwhite);
    padding: 0.5rem 1rem;
    transition: 0.2s;
  }

  #navbar a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }

  #navbar .contact-button:hover {
    text-shadow: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }

  #calltoaction-top {
    display: none;
  }

  /* Desktop header */

  #desktop-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    padding-top: 0;
  }

  #isologo {
    max-width: 400px;
    max-height: 250px;
    margin: 5rem auto;
    margin-left: 0;
  }

  #isologo-wrapper {
    background-color: transparent;
  }

  #services li {
    width: 400px;
    height: 120px;
    font-size: 2rem;
  }

  .carousel {
    position: absolute;
    width: 100%;
    max-width: 2100px;
    height: 430px;
    overflow: hidden;
    z-index: -1;
    margin-left: -1rem;
  }

  .gallery {
    width: 100%;
  }

  .gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  #first-picture {
    margin-top: -20%;
  }

  #second-picture {
    margin-top: -25%;
  }

  #third-picture {
    margin-top: -30%;
  }

  #services li {
    color: var(--tamwhite);
    background: linear-gradient(
      var(--tamblacker) 0%,
      var(--tamblacker) 90%,
      var(--tamblack) 90%,
      var(--tamblack) 100%
    );
  }

  /* Description */

  #description {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  #logo {
    max-height: 200px;
    max-width: 200px;
    margin: auto 2rem;
  }

  #main-description {
    font-size: 1rem;
    text-overflow: clip;
    margin: auto;
    margin-right: 2rem;
  }

  /* Treatment details */

  #treatment-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #treatment-cards li {
    width: 90%;
  }

  /* Staff */

  .staff-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(415px, 1fr));
    justify-items: center;
    align-items: center;
  }

  .staff-list li {
    width: 410px;
    align-self: flex-start;
  }

  #staff img {
    width: 410px;
    height: 550px;
  }

  /* Contact info */

  #contact-info h2 {
    padding: 0;
  }

  #address-time {
    display: flex;
    justify-content: center;
    gap: 10rem;
    margin-bottom: 3rem;
  }

  #time,
  #address {
    margin: auto;
    align-items: center;
  }

  #contact-data h2 {
    padding: 0;
  }

  #map {
    margin: auto;
  }

  #map iframe {
    height: 600px;
  }
}
