ul {
  list-style-type: none;
}

/*Matserclass*/
#masterClassInfo {
  background-color: #1c1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; 
  font-family: "Lato", sans-serif;
  
}

.master-class-container {
  display: flex;
  justify-content: space-around; 
  align-items: center;
  gap: 30%;
  max-width: 1200px; /* Maximale Breite des Containers */
}

.master-class-img img {
  width: 180%;
}



.master-class-content h1 {
  color: #fff;
  font-size: 49px;
}

.master-class-content h1 > span {
  color: yellow;
}

.master-class-content p {
  color: #fff;
  font-size: 17px;
  padding-top: 4%;
  line-height: 1.6;
}

/*Pricing*/

#pricing {
    background-color: #1c1a1a;
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    font-family: "Lato", sans-serif;
}

.pricing-card {
    background-color: #252831;
    width: 348px;
    height: 800px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
}

.pricing-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2%;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-cards-container .pricing-card:nth-child(2):hover {
    transform: scale(1.1);
}

.pricing-card h2 {
    color: #fff;
    text-align: center;
    padding-top: 3%;
    font-size: 30px;
    font-weight: 700;
}

.price {
    text-align: center;
    padding-top: 8%;
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}

.price-info {
    text-align: center;
    color: #fff;
    padding-top: 5%;
    font-size: 16px;
}

.card-list {
    text-align: center;
    padding-top: 10%;
}

.card-list ul {
    padding-right: 6%;
}

.card-list ul li {
    padding-bottom: 7%;
    color: #fff;
}



/*MiddleCard*/
.pricing-cards-container > .pricing-card:nth-child(2) {
    height: 900px;
}


.pricing-card-populoar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 100%;
    background-color: yellow;
    margin-top: 10%;
}

.pricing-card-populoar p {
    color: #000;
    font-weight: 550;
    font-size: 18px;
}


.green-check::before {
    content: "✔"; 
    color: green; 
    margin-right: 8px; 
    font-size: 20px;
}

.red-x::before {
  content: "✘"; 
  color: red; 
  margin-right: 8px; 
  font-size: 20px;
}

.pricng-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3%;
    padding-top: 3%;
}

.pricing-animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: greenyellow;
    box-shadow: 0 0 0 2px greenyellow;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .pricing-animated-button svg {
    position: absolute;
    width: 24px;
    fill: greenyellow;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .pricing-animated-button .arr-1 {
    right: 16px;
  }
  
  .pricing-animated-button .arr-2 {
    left: -25%;
  }
  
  .pricing-animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: greenyellow;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .pricing-animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .pricing-animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
  }
  
  .pricing-animated-button:hover .arr-1 {
    right: -25%;
  }
  
  .pricing-animated-button:hover .arr-2 {
    left: 16px;
  }
  
  .pricing-animated-button:hover .text {
    transform: translateX(12px);
  }
  
  .pricing-animated-button:hover svg {
    fill: #212121;
  }
  
  .pricing-animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px greenyellow;
  }
  
  .pricing-animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
  }
  

/*Vorteile*/
#vorteile {
    background-color: #1c1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 10%;
}

#vorteile span {
  color: yellow;
}


.vorteile-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 20%;
}

.vorteile-content {
  width: 50vw;
  font-family: "Lato", sans-serif;
  line-height: 1.5;
}

.vorteile-h1{
  color: #fff;
  font-size: 50px;
  padding-bottom: 2%;
}

.vorteile-content p {
  color: #fff;
  margin-right: 23%;
  line-height: 1.7;
}

.vorteile-list {
  padding-top: 4%;
}

.vorteile-list ul li {
  padding-bottom: 3%;
}

.vorteile-list ul li h1 {
  font-size: 23px;
  color: #fff;
  padding-bottom: 1%;
}


.vorteile-img {
  width: 50vw;
}


.vorteile-img img {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}


/*FAQ*/
#faq-section {
  padding-top: 5%;
  background-color: #1c1a1a;
  font-family: "Lato", sans-serif;
}


#faq {
  max-width: 700px;
  margin: auto;
  padding: 0 15px;
  text-align: center;

}

section.faq {
  padding-top: 2em;
  padding-bottom: 3em;
}

#faq ul {
  text-align: left;
}
.transition, p, ul li i:before, ul li i:after {
  transition: all 0.3s;
}

#faq .no-select, #faq h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

#faq h1 {
  color: yellow;
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 37px;
}

#faq h2 {
  color: #fff;
  font-family: 'hm_light', sans-serif;
  font-size: 20px;
  line-height: 34px;
  text-align: left;
  padding: 15px 15px 0;
  text-transform: none;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  transition: .2s;
}

#faq p {
  color: #fff;
  text-align: left;
  font-family: 'hm_light', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  position: relative;
  overflow: hidden;
  max-height: 250px;
  will-change: max-height;
  contain: layout;
  display: inline-block;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 50px 0 15px;
  transition: .3s opacity, .6s max-height;
  hyphens: auto;
  z-index: 2;
}

#faq ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
#faq ul li {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  /*padding-bottom: 4px;*/
  /*padding-top: 18px;*/
  background: #262931;
  box-shadow: 0 3px 10px -2px rgba(0,0,0,0.1);
  -webkit-tap-highlight-color: transparent;
}
#faq ul li + li {
  margin-top: 15px;
}
#faq ul li:last-of-type {
  padding-bottom: 0;
}
#faq ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 28px;
  right: 15px;
}
#faq ul li i:before, 
#faq ul li i:after {
  content: "";
  position: absolute;
  background-color: yellow;
  width: 3px;
  height: 9px;
}
#faq ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#faq ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
#faq ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  touch-action: manipulation;
}
#faq ul li input[type=checkbox]:checked ~ h2 {
  color: #fff;
}
#faq ul li input[type=checkbox]:checked ~ p {
  /*margin-top: 0;*/
  max-height: 0;
  transition: .3s;
  opacity: 0;
  /*transform: translate(0, 50%);*/
}
#faq ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#faq ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}



  /*Responsive CSS*/

/*Responsive Matser Class Mobile*/
@media (max-width: 767px) {
  #masterClassInfo {
    padding-top: 100%;
  }
  
  .master-class-container {
    display: block;
    justify-content: center;
    align-items: center;
  }

  .master-class-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .master-class-img img {
    width: 70%;
  }

  .master-class-content {
    margin-left: 3%;
    margin-right: 3%;
    padding-top: 10%;
  }

  .master-class-content p {
    margin-right: 0;
  }

  .master-class-content h1 {
    font-size: 37px;
  }

  .matser-class-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
  }
}

/*Responsive Pricing Mobile*/
@media (max-width: 767px) {
  #pricing {
    padding-top: 100%;
  }


  .pricing-cards-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pricing-card {
    margin-bottom: 20%;
  }
}

/*Responsive Vorteile Class Mobile*/
@media (max-width: 767px) {
  .vorteile-container {
    display: flex;
    flex-direction: column-reverse; 
    align-items: center;
    justify-content: center;
    padding-top: 100%;
  }

  .vorteile-content {
    width: 100vw;
    margin-left: 3%;
    margin-right: 3%;
  }

  .vorteile-content h1 {
    margin-right: 5%;
    font-size: 42px;
  }

  .vorteile-list ul li {
    padding-top: 5%;
  }

  .vorteile-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vorteile-img img {
    width: 150%;
  }

  #contact-section {
    padding-top: 25%;
  }
}

/*Reponsve CSS Tablets*/

/*Responsive Matser Class Tablet*/
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  #masterClassInfo {
    padding-top: 50%;
  }
  
  .master-class-container {
    display: block;
    justify-content: center;
    align-items: center;
  }

  .master-class-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .master-class-img img {
    width: 70%;
  }

  .master-class-content {
    margin-left: 3%;
    margin-right: 3%;
    padding-top: 10%;
  }

  .master-class-content p {
    margin-right: 0;
  }

  .master-class-content h1 {
    font-size: 42px;
  }

  .matser-class-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
  }
}

/*Responsive Pricing Tablet*/
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  #pricing {
    padding-top: 45%;
  }


  .pricing-cards-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pricing-card {
    margin-bottom: 20%;
  }
}

/*Responsive Vorteile Tablet*/
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .vorteile-container {
    display: flex;
    flex-direction: column-reverse; 
    align-items: center;
    justify-content: center;
  }

  .vorteile-content {
    width: 100vw;
    margin-left: 3%;
    margin-right: 3%;
  }

  .vorteile-content h1 {
    margin-right: 5%;
    font-size: 42px;
  }

  .vorteile-list ul li {
    padding-top: 3%;
  }

  .vorteile-list ul li:last-child {
    padding-top: 0%;
  }
 

  .vorteile-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -14%;
  }

  .vorteile-img img {
    width: 150%;
  }

  #contact-section {
    padding-top: 25%;
  }
}