#contact {
  width: 100%;
  padding: 0 1rem 0;
  background-color:transparent
}

.contact {
  max-width: 1024px;
  margin: 4em auto 1em;
  display: flex;
  gap: 2rem;
  border-radius: 5px;
}

/* ======= Kontakt- och kartboxar ======= */
.contact .box {
  flex: 1;
  border-radius: 5px;
  background-color: transparent;
}

/* ======= Bild och namn ======= */
.contact picture img {
  max-width:400px;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 4px;
 
}

.namn {
  text-align: center;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ======= Rubriker ======= */
.contact h1,
.contact h2 {
  text-align: center;
  color: #181818;
  margin-bottom: 1rem;
  padding: 0;
  margin: 1em;
}

.contact h1 {
  font-size: 1.8rem;

}

.contact h2 {
  font-size: 1.5rem;

 
/*   font-weight: 400; */
}

/* ======= Text & länkar ======= */
.contact p {
  margin:0;
  line-height: normal;

}

.contact a {
  text-decoration: underline;
}


/* ======= Telefonikon ======= */
/* .phone1 {
  position: relative;
  margin-top: 1rem;
  text-align: center;
}

.phone1 .fa-solid {
  color: rgb(64, 138, 53);
  font-size: 1.9rem;
  transition: color 0.3s ease;
}

.phone1 .fa-solid:hover {
  color: rgb(145, 199, 135);
} */

/* ======= Iframe - Google Maps ======= */
iframe {
  width: 100%;
 min-height: 250px;
  margin: auto;
 height: auto;
  border: none;
  border-radius: 6px;
  margin-top: 2.9rem;
}

/* ======= Adressblock & centrerat innehåll ======= */
.center {
  max-width: 90%;
  margin: 1rem auto 2rem;
  text-align: center;
}

/* address {
  font-style: normal;
  line-height: 1.6;
} */

/* ======= Responsivitet ======= */

@media (max-width: 768px) {
  .contact {
    flex-direction: column;
    gap: 2rem;
    background-color: transparent;
  }

  .contact .box {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact h1 {
    font-size: 1.5rem;
  }

  .contact h2 {
    font-size: 1.3rem;
  }

  .contact picture img {
    padding: 0 1rem;
  }
}