:root {
  --beigs: #D0D6B5;
  --brun: #6D4C3D;
  --mork_gron: #041B15;
}

/* Lägg till detta för att ta bort standard margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
}

.header {
  background-color: var(--mork_gron);
  width: 100vw;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden; /* Förhindra scrollbars */
}

nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px 8%; /* Öka padding för mer avstånd från toppen */
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999; 
  color: var(--beigs);
  background-color: var(--mork_gron);
}

/* Logotyp till vänster */
.logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 50px; /* Öka avståndet mellan menyalternativen */
}

nav ul li a {
  text-decoration: none;
  color: var(--beigs);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Innehåll i mitten */
.content {
  text-align: center;
  color: var(--beigs);
  max-width: 900px;
  padding: 0 20px;
  margin-top: -100px; /* Flytta upp lite */
}

.content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.view-work {
  color: var(--beigs);
  text-decoration: underline;
  font-size: 18px;
  font-weight: 300;
}

/* Stor titel längst ner */
h1 {
  color: var(--beigs);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 130px; /* Gör den större */
  font-weight: 400;
  letter-spacing: 8px;
  margin: 0;
  position: absolute;
  bottom: 3px; /* Flytta upp lite från botten */
  left: 50%;
  transform: translateX(-50%); /* Centrera perfekt */
  width: 1335px;
  height: 178px;
  flex-shrink: 0;
}


.carousel {
  margin-top: 5rem;
  margin-bottom: 40rem;
}
/* karosell */

@layer base, demo; 
@import url(https://fonts.bunny.net/css?family=abel:400);  

@layer demo { 
	.carousel { 
		--items: 6; 
		--carousel-duration: 40s; 
		@media (width > 600px) { 
			--carousel-duration: 30s; 
		} 
		--carousel-width: min( 
			80vw, 
			1200px 
		); 
		--carousel-item-width: 280px; 
		--carousel-item-height: 350px; 
		--carousel-item-gap: 2rem;  

		position: relative; 
		width: var(--carousel-width); 
		height: var(--carousel-item-height); 
		overflow: clip;  

		&[mask] { 
			mask-image: linear-gradient( 
				to right, 
				transparent, 
				black 10% 90%, 
				transparent 
			); 
		}  

		&[reverse] > article { 
			animation-direction: reverse; 
		} 
		&:hover > article { 
			animation-play-state: paused; 
		} 
	} 

	.carousel > article { 
		position: absolute; 
		top: 0; 
		left: calc(100% + var(--carousel-item-gap)); 
		width: var(--carousel-item-width); 
		height: var(--carousel-item-height); 
		border-radius: 10px; 
		overflow: hidden; 
		
		will-change: transform; 
		animation-name: marquee; 
		animation-duration: var(--carousel-duration); 
		animation-timing-function: linear; 
		animation-iteration-count: infinite; 
		animation-delay: calc( 
			var(--carousel-duration) / var(--items) * 1 * var(--i) * -1 
		); 

		&:nth-child(1) { --i: 0; } 
		&:nth-child(2) { --i: 1; } 
		&:nth-child(3) { --i: 2; } 
		&:nth-child(4) { --i: 3; } 
		&:nth-child(5) { --i: 4; } 
		&:nth-child(6) { --i: 5; } 
		&:nth-child(7) { --i: 6; } 
		&:nth-child(8) { --i: 7; } 
	} 

	.carousel img { 
		width: 100%; 
		height: 100%; 
		object-fit: cover; 
		border-radius: 10px; 
	} 

	@keyframes marquee { 
		100% { 
			transform: translateX( 
				calc( 
					(var(--items) * (var(--carousel-item-width) + var(--carousel-item-gap))) * 
						-1 
				) 
			); 
		} 
	} 
}  

@layer base { 
	* { 
		box-sizing: border-box; 
	}    
	body { 
		background-color: var(--beigs); 
		color: var(--brun); 
		min-height: 100svh; 
		margin: 0; 
		padding: 1rem; 
		font-size: 1rem; 
		font-family: "Abel", sans-serif; 
		line-height: 1.5; 
		display: grid; 
		place-items: center; 
		gap: 2rem; 
	} 
}
/* här slutar karosell */

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: -35rem;
  margin-bottom: 10rem;
}

h2{
  width: 525px;
  height: 89px;
  flex-shrink: 0;

  color: var(--Grn, #041B15);
  text-align: center;
  font-family: "Playfair Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.8px;
}

.about-text {
  max-width: 465px;
  color: var(--mork_gron);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 auto;
}


.Arbete {
  justify-self: stretch; /* Tar hela bredden i grid */
  align-self: start; /* Flyttar till toppen istället för center */
  padding: 2rem;
}

.casesTitel {
  font-size: 25px;
  text-align: left;
  margin: 0;
  margin-left: 5rem;
  color: var(--mork_gron);
}

.bildETT, .bildTVA, .bildTRE, .bildFYRA{
  height: 45vh;
  margin-top: 2rem;
  justify-content: center;
  padding-left: 5rem;
}

.bildETT{
  margin-left: 5rem;
}

.bildTVA{
  margin-left: 10rem;
}

.bildTRE{
  margin-right: 10rem;
  margin-left: 5rem;
}

.bildFYRA {
  margin-right: 2rem;
}

/* service */

.service {
  background-color: var(--mork_gron);
  width: 100vw;
  height: 70vh;
  display: flex; /* Lägg till detta */
  align-items: center; /* Lägg till detta */
  padding: 2rem 5rem; /* Lägg till detta */
  gap: 3rem; /* Avstånd mellan elementen */
}

.service-left {
  flex: 1; /* Tar upp hälften av utrymmet */
}

.serviceTitel {
  color: var(--beigs);
  text-align: left;
  font-family: "Playfair Display";
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

ul.serviceOffers {
  color: var(--beigs);
  text-align: left;
  font-family: "Playfair Display";
  font-size: 36px;
  font-weight: 600;
  line-height: 100px;
  letter-spacing: 1.8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.serviceOffers li {
  border-bottom: 1px solid var(--beigs);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

ul.serviceOffers li:last-child {
  border-bottom: none;
}

.service-right {
  flex: 1; /* Tar upp hälften av utrymmet */
}

.service-image {
  margin-bottom: 1rem;
}

.service-image img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  border-radius: 8px;
}

.service-text {
  color: var(--beigs);
  font-size: 14px;
}
/* feedback */

/* Container för hela feedback-sektionen */
.feedback-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem;
  background-color: var(--beigs);
  min-height: 70vh;
  gap: 4rem;
}

/* Vänster sida med text */
.feedback-left {
  flex: 1;
  max-width: 45%;
}

/* Höger sida med bild */
.feedback-right {
  flex: 1;
  max-width: 50%;
}

/* Huvudcitat */
.feedbackRubrik {
  color: var(--mork_gron);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.8px;
  margin: 0 0 3rem 0;
  text-align: left;
}

/* Container för profilbild, namn och titel */
.feedback-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Profilbild */
.cirkle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Container för namn och titel */
.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* Namn */
.feedbackUnderRubrik {
  color: var(--mork_gron);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
  margin: 0;
}

/* Titel (Client) */
.feedbackP {
  color: var(--mork_gron);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  opacity: 0.8;
}

/* Bild till höger */
.feedbackImg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* kontakt formulär */

.contactRubrik {
  color: var(--beigs);
  text-align: left;
  font-family: "Playfair Display";
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40rem;
}

.contact-section {
  background-color: var(--mork_gron);
  padding: 4rem 2rem;
  min-height: 70vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  display: flex;
  gap: 6rem;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  justify-content: space-between;
}

.contact-info {
  color: var(--beigs);
  flex: 0 0 auto;
  min-width: 300px;
}

.contact-title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 4rem;
}

.contact-container {
  display: flex;
  gap: 6rem;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  justify-content: space-between;
}

.contact-info {
  color: var(--beigs);
  flex: 0 0 auto;
  min-width: 300px;
}

.contact-title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 4rem;
}

.email-display {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-top: 23rem;
  margin-left: -3rem;
}

.contact-form {
  flex: 1;
  max-width: 500px;
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-label {
  display: block;
  color: var(--beigs);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--beigs);
  padding: 1rem 0;
  font-size: 16px;
  color: var(--beigs);
  font-family: "Playfair Display", serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-bottom-color: #ffffff;
}

.form-input::placeholder {
  color: rgba(208, 214, 181, 0.6);
  font-family: "Playfair Display", serif;
}

.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--beigs);
  padding: 1rem 0;
  font-size: 16px;
  color: var(--beigs);
  font-family: "Playfair Display", serif;
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
  border-bottom-color: #ffffff;
}

.form-textarea::placeholder {
  color: rgba(208, 214, 181, 0.6);
  font-family: "Playfair Display", serif;
}

.submit-btn {
  background: transparent;
  border: 2px solid var(--beigs);
  color: var(--beigs);
  padding: 1rem 2.5rem;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background-color: var(--beigs);
  color: var(--mork_gron);
  transform: translateY(-2px);
}

.submit-btn::after {
  content: " →";
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
      gap: 3rem;
  }

  .contact-title {
      font-size: 24px;
  }

  .email-display {
      font-size: 16px;
  }
}


@media (min-width: 768px) and (max-width: 1205px) {
  .bildETT, .bildTVA, .bildTRE, .bildFYRA{
    height: 33vh;
    margin-top: 2rem;
  }
}



.container {
  max-width: 1200px;
  margin: 0 auto;
}


.cards-grid {
  display: grid;
  gap: 24px;
}

/* Mobile first - 1 kolumn */
@media (max-width: 575px) {
  .cards-grid {
      grid-template-columns: 1fr;
  }
}

/* Mobil landscape - 2 kolumner */
@media (min-width: 576px) and (max-width: 767px) {
  .cards-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Surfplatta - 3 kolumner */
@media (min-width: 768px) and (max-width: 991px) {
  .cards-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop - 4 kolumner */
@media (min-width: 992px) {
  .cards-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

.image-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-card:hover .card-overlay {
  transform: translateY(0);
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-hint {
  font-size: 12px;
  opacity: 0.9;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 16px;
  max-width: 800px;
  max-height: 90vh;
  width: 100%;
  position: relative;
  animation: slideIn 0.3s ease;
  overflow: hidden;
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.modal-text {
  padding: 24px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.modal-description {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}

.modal-details {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.detail-value {
  font-weight: 600;
  color: #333;
}

.close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Responsive modal */
@media (max-width: 768px) {
  .modal-content {
      margin: 10px;
      max-width: calc(100% - 20px);
  }
  
  .modal-title {
      font-size: 20px;
  }
  
  .modal-text {
      padding: 16px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
      opacity: 0;
      transform: scale(0.9) translateY(20px);
  }
  to { 
      opacity: 1;
      transform: scale(1) translateY(0);
  }
}

.image-gallery {
  margin-top: 20px;
}

.gallery-image {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.modal-content {
  max-height: 90vh;
  overflow-y: auto; /* Viktigt för scrollning */
  overflow-x: hidden;
}



.menu-toggle {
  display: none; /* Dold som standard */
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--beigs);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Animationer - också UTANFÖR media queries */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}




/* Mobiltelefoner */
@media (max-width: 768px) {
  /* Navigation för mobil */
  nav {
    padding: 15px 4%;
    flex-direction: row; /* Behåll horisontell för logo och hamburger */
    justify-content: space-between;
  }
  
  /* Visa hamburger menu på mobil */
  .menu-toggle {
    display: flex;
  }
  
  /* Dölj navigation menu som standard på mobil */
  .sidebar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--mork_gron);
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Visa menyn när den är aktiv */
  .sidebar.active {
    display: flex;
  }
  
  .sidebar li {
    margin-left: 0;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(208, 214, 181, 0.2);
  }
  
  .sidebar li:last-child {
    border-bottom: none;
  }
  
  .sidebar li a {
    font-size: 18px;
    padding: 1rem;
  }
  
  /* Logo */
  .logo {
    font-size: 20px;
  }
  
  /* Huvudtitel */
  h1 {
    font-size: 60px;
    letter-spacing: 2px;
    padding-top: 6rem;
  }
  .header{
  height: 75vh;
  }
  
  /* Content */
  .content {
    padding: 0 15px;
    margin-top: -50px;
  }
  
  .content p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Carousel */
  .carousel {
    margin-top: 3rem;
    margin-bottom: 20rem;
    margin-left: 5rem;
  }
  
  /* About section */
  .about-section {
    margin-top: -15rem;
    margin-bottom: 5rem;
    padding: 0 20px;
  }
  
  h2 {
    font-size: 28px;
    width: auto;
    height: auto;
  }
  
  .about-text {
    font-size: 16px;
    max-width: 100%;
  }
  
  /* Work/Cases section */
  .Arbete {
    padding: 1rem;
  }
  
  .casesTitel {
    font-size: 22px;
    margin-left: 1rem;
  }
  
  .bildETT, .bildTVA, .bildTRE, .bildFYRA {
    height: 30vh;
    margin-left: 3rem;
    margin-right: 1rem !important;
    margin-top: 1.5rem;
  }
  
  .bildTVA, .bildTRE{
    margin-left: 6rem;
  }
  /* Service section */
  .service {
    background-color: var(--mork_gron);
    width: 100vw;
    height: auto; /* Ändrat från 70vh till auto */
    min-height: 50vh; /* Lägg till min-höjd istället */
    display: flex;
    align-items: center;
    padding: 3rem 5rem; /* Minskade från 2rem till 3rem för mindre höjd */
    gap: 3rem;
  }
  
  .serviceTitel {
    font-size: 18px;
  }
  
  ul.serviceOffers {
    font-size: 18px;
    line-height: 45px;
    text-align: center;
  }
  
  .service-image img {
    height: 200px;
  }
  
  /* Feedback section */
  .feedback-section {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .feedback-left,
  .feedback-right {
    max-width: 100%;
  }
  
  .feedbackRubrik {
    font-size: 22px;
    text-align: center;
  }
  
  .feedbackUnderRubrik {
    font-size: 20px;
  }
  
  .feedbackImg {
    height: 250px;
  }
  
  /* Contact section */
  .contact-container {
    flex-direction: column;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .contact-info {
    min-width: auto;
    width: 100%;
    text-align: center;
  }
  
  .contact-title {
    font-size: 24px;
  }
  
  .email-display {
    font-size: 20px;
    margin-top: 2rem;
    margin-right: 6rem;
    word-break: break-all;
  }
  
  .contact-form {
    max-width: 100%;
  }
  
  .form-label {
    font-size: 16px;
  }
  .form-input{
    width: 25rem ;
  }
  .form-input,
  .form-textarea {
    font-size: 14px;
  }
  
  .submit-btn {
    font-size: 16px;
    padding: 0.8rem 2rem;
  }
}

/* Extra små skärmar */
@media (max-width: 480px) {
  /* Navigation */
  nav {
    padding: 10px 3%;
  }
  
  .logo {
    font-size: 18px;
  }
  
  /* Huvudtitel */
  h1 {
    font-size: 35px;
    letter-spacing: 1px;
  }
  
  /* Content */
  .content p {
    font-size: 14px;
  }
  
  /* About */
  h2 {
    font-size: 24px;
  }
  
  .about-text {
    font-size: 14px;
  }
  
  /* Cases/Work images */
  .bildETT, .bildTVA, .bildTRE, .bildFYRA {
    height: 25vh;
  }
  
  /* Service */
  ul.serviceOffers {
    font-size: 18px;
    line-height: 40px;
  }
  
  /* Feedback */
  .feedbackRubrik {
    font-size: 20px;
  }
  
  .cirkle {
    width: 60px;
    height: 60px;
  }
  
  .feedbackUnderRubrik {
    font-size: 18px;
  }
  
  /* Contact */
  .email-display {
    font-size: 16px;
  }
  
  .contact-title {
    font-size: 20px;
  }

  .contactRubrik{
    margin-left: 8rem;
  }

  .form-input{
    width: 20rem ;
  }

  .contact-container{
    margin-right: 10rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  
  h1{
    font-size: 75px;
    padding-top: 50px;
  }

  .arbeteRubrik{
    margin-right: 120px;
    padding-right: 185px;
  }

  .serviceOffers, li{
    font-size: 30px;
  }

  .feedbackRubrik{
    font-size: 25px;
  }

  .contact-container {
    flex-direction: column;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .contact-info {
    min-width: auto;
    width: 100%;
    text-align: center;
  }
  
  .contact-title {
    font-size: 24px;
  }
  
  .email-display {
    font-size: 20px;
    margin-top: 2rem;
    margin-right: 6rem;
    word-break: break-all;
  }
  
  .contact-form {
    max-width: 100%;
  }
  
  .form-label {
    font-size: 16px;
  }
  .form-input{
    width: 25rem ;
  }
  .form-input,
  .form-textarea {
    font-size: 14px;
  }
  
  .submit-btn {
    font-size: 16px;
    padding: 0.8rem 2rem;
  }
}

@media (min-width: 1669px) {
  .arbeteRubrik{
    justify-content: left;
    padding-right: 285px;
  }
}