/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #17594A;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 7rem;
  border-radius: 20%;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 4.8rem;
  
}


.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color:#D8D9DA;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
  
  
}

.main-nav-link:hover,
.main-nav-link:active {
  color: rgb(0, 0, 0);
  padding: 1.2rem 1.2rem;
  border-radius: 9px;
  background-color: #D8D9DA;
  color:#17594A;
  
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: white;
  background-color: #17594A;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: white;
  color: black;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
  z-index: 1005;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #D8D9DA;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 9.6rem;
  padding-top: 20px;
  padding-bottom: 0;
  background-color: #17594A;
  border-bottom: #D8D9DA 5px solid;
  padding-bottom: 20px;
  z-index: 1005;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: white;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
  border-radius: 50%;
}

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  padding: 9.6rem 0;
}

.koranrejsen {
  display: block;
  font-size: 3rem;
  font-weight: 500;
  color: black;
  text-transform: uppercase;
  margin-bottom: 6rem;
  letter-spacing: 0.75px;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.step-img-box1 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 60px;
  visibility: hidden;
}
.step-img-box2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 60px;
  visibility: hidden;
}
.step-img-box3 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 60px;
  visibility: hidden;
}
.step-img-box4 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 60px;
  visibility: hidden;
}

.step-img {
  width: 50%;
  height: 50%;
  /* border-radius: 50%; */
}

.all-recipes {
  display: flex;
  text-align: center;
  justify-content: start;
  font-size: 1.8rem;
  margin-left: -3.2rem;
}

/**************************/
/* MEALS SECTION */
/**************************/

.section-pricing {
  padding: 9.6rem 0;
  background-color: white;
}

.pricing-plan {
  border-radius: 11px;
  width: 75%;
  margin: 0 auto;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid black;
  padding: 4.6rem;
}

.pricing-plan--complete {
  background-color: black;
  opacity: 0.4;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: white;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: white;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.feature-icon {
  color: #398378;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #b0cdc9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
  background-color: #17594A;
  color: white;
  margin-bottom: none;
  position: absolute;
  width: 100%;
}

.grid--footer {
  grid-template-columns: 2fr 2fr 2fr;
}

.logo-col {
  display: inline-block;
margin-left: 20px;
position: relative;
}
.mail:hover {
  color: #d8c690;
}

.footer-link:hover {
  text-decoration: underline;
}
.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  gap: 2.4rem;
  
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: white;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.mail {
  display: inline-block;
  justify-content: center;
  font-size: 4rem;
  color: white;
  margin: 5px;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: white;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: white;
  opacity: 0.5;
}


.container .grid--footer {
  display: flex;
  justify-content: space-between;
}
/* Niveau1*/

/* niveau1 */
.btn {
  margin-top: 5rem;
}

#symbolsk1 {
  background-color: white;
}

.container-grid1 {
  color: white;
  background-color: white;
}
.pricing-plan-pricing-plan--complete1 {
  background-color: white;
}

/* subscribepage*/

.tilmeldingscontainer {
  width: 100%;
  max-width: 650px;
  background: #b0cdc9;
  padding: 28px;
  margin: 0 5rem;
  border-radius: 10px;
  box-shadow: inset -2px 2px 2px white;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.form-title {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 6px;
  color: white;
  text-shadow: 2px 2px 2px black;
  border-bottom: solid 1px white;
}

.main-user-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

.user-input-box:nth-child(2n) {
  justify-content: end;
}

.user-input-box {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  padding-bottom: 15px;
}

.user-input-box label {
  width: 95%;
  color: white;
  font-size: 20px;
  font-weight: 400;
  margin: 5px 0;
}

.user-input-box input {
  height: 40px;
  width: 95%;
  border-radius: 7px;
  outline: none;
  border: 1px solid grey;
  padding: 0 10px;
}

.gender-title {
  color: white;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid white;
}

.gender-category {
  margin: 15px 0;
  color: white;
}

.gender-category label {
  padding: 0 20px 0 5px;
}

.gender-category label,
.gender-category input,
.form-submit-btn input {
  cursor: pointer;
}

.form-submit-btn {
  margin-top: 40px;
}

.form-submit-btn input {
  display: block;
  width: 100%;
  margin-top: 10px;
  font-size: 20px;
  padding: 10px;
  border: none;
  border-radius: 20px;
  color: rgb(209, 209, 209);
  background: black;
}

.form-submit-btn input:hover {
  background-color: #d8c690;
  color: black;
}

@media (max-width: 600px) {
  .container {
    min-width: 280px;
  }

  .user-input-box {
    margin-bottom: 12px;
    width: 100%;
  }

  .user-input-box:nth-child(2n) {
    justify-content: space-between;
  }

  .gender-category {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .main-user-info {
    max-height: 380px;
    overflow: auto;
  }

  .main-user-info::-webkit-scrollbar {
    width: 0;
  }
}

.logo1 {
  height: 9.2rem;
  border-radius: 20%;
  margin: auto;
  margin-top: 5%;
  display: grid;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: min(1600px, 100%);
  margin: auto;
  background-color: white;
  margin-bottom: 15rem;
}

.pricing-card {
  flex: 1;
  max-width: 360px;
  background-color: #000000;
  margin: 20px 10px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  color: #d8c690;
  transition: 0.3s linear;
  border-style: solid;
}

.pricing-card-header {
  background-color: #d8c690;
  display: inline-block;
  color: black;
  padding: 12px 30px;
  border-radius: 0 0 20px 20px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.4s linear;
}

 .pricing-card:hover .pricing-card-header  {
  box-shadow: 0 0 0 50em #d8c690;
  background-color: black;
  color: #d8c690;
 
}

.price {
  font-size: 70px;
  color: #d8c690;
  margin: 40px 0;
  transition: 0.2s linear;
}

.price sup,
.price span {
  font-size: 22px;
  font-weight: 700;
}

.pricing-card:hover,
.pricing-card:hover .price {
  color: black;

}

.pricing-card li {
  font-size: 16px;
  padding: 10px 0;
  text-transform: uppercase;
  break-inside: avoid;
}

.order-btn {
  display: inline-block;
  margin-top: 100px;
  color: black;
  background-color: #d8c690;
  padding: 18px 40px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.3s linear;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 10px;
}


.myman{
  visibility: hidden;
}

.order-btn:hover {
  background-color:  black;
  color:#d8c690;


}


@media screen and (max-width: 1100px) {
  .pricing-card {
    flex: 50%;
  }
}

.Lektiontag{
  text-align: center;

}



.dropbtn {
  background-color: transparent;
  color: #d8c690;
  font-weight: bolder;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-bottom: solid 2px #d8c690;  
  padding-bottom: 5px;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: bolder;
  font-size: larger;
}

/* Change color of dropdown links on hover */


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn .dropdown-content {
  border: #d8c690 2px solid;
  background-color: #d8c690;
  color: black;
  border-bottom: solid 2px black;  
  padding-bottom: 5px;
  
}
.dropdown:hover .dropdown-content a {
  background-color: #d8c690;
  color: white;
}

.faq {
  margin-bottom: 20px;
  border-bottom: 10px solid #d8c690;
  padding-bottom: 20px;
  text-align: center;
  max-width: 30%;
  align-items: center;
  margin: auto;
}

.faq h2 {
  font-size: 3rem;
  color: #d8c690;
  cursor: pointer;
}

.faq h2::after {
  content:"\25BC";
  font-size: 20px;
  margin-left: 5px;
}

.faq p {
  font-size: 2rem;
  color: #d8c690;
  margin-top: 0;
  margin-bottom: 10px;
  display: none;
}

.faq > h1 {
  font-size: 10rem;
  margin-bottom: 5rem;
  color: #d8c690;
  cursor: pointer;
  text-decoration: underline;
}



/* Slideshow container */
.slideshow-container {
  max-width: 30rem;
  position: relative;
  margin: auto;
  margin-top: 10rem;
  box-shadow: -3px 1px 29px 5px rgba(0,0,0,1);

}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: white;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  max-width:30rem;
border: #000000 3px solid ;
  margin-left: -23rem;
  margin-bottom: 18rem;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}


@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
 
}


@media screen and (max-width: 800px) {
  .text {
      display: none;
  }
}

.question {
  display: flex;
  flex: row;
  justify-content: space-between;
  margin: 20px;

}


@media screen and (max-width: 800px) {
  .question > div {
    flex-basis: 48%; /* Adjust for smaller screens if needed */
  }
}



.faq {

  border-bottom: transparent;
  display: block;
  text-align: center;
  max-width: 100%;
  align-items: center;
  margin: auto;
  align-items: center;


}

.faq h2 {
  font-size: 3rem;
  color: #ffffff;
  cursor: pointer;
}

.faq h2::after {
  content:"\25BC";
  font-size: 20px;
  margin-left: 5px;
  
}

.faq p {
  font-size: 2rem;
  color: #ffffff;
  display: none;
  margin: auto;
  width: 100%;
  margin-top: 20px;
}

.faq > h1 {
  font-size: 10rem;
  margin-bottom: 5rem;
  color: #ffffff;
  cursor: pointer;
  text-decoration: underline;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}
