/* ++++ HERO SECTION START ++++ */
.hero  {
  font-size: var(--font-sub);
  margin-top: 0px;
}

.hero .x-small-container{
  color: var(--color-light);
}

.hero h1 {
  color: var(--color-light);
  font-size: var(--h1);
}

.full-img-hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  background-image: linear-gradient(to bottom, rgba(40, 56, 72, 0.293), rgba(21, 25, 29, 0.682)), url('../img/hero.jpg');
  background-size: cover; 
  background-position: top; 
  background-repeat: no-repeat; 
  background-attachment: fixed;
  box-shadow: var(--shadow-2);  
}

@media screen and (max-width: 530px ){
    .full-img-hero {
      background-image: linear-gradient(to bottom, rgba(40, 56, 72, 0.293), rgba(21, 25, 29, 0.682)), url('../img/hero-mob.jpg');
      background-attachment: scroll;
    }
}


/* ++++ CARD BILD SECTION - START ++++ */
.card-wrapper {
  overflow: hidden;
  margin-bottom: 50px;
  border: var(--border);
  padding: 0;
  border-radius: var(--border-radius);
  flex-basis: 260px !important;
  flex-grow: 1;
  flex-shrink: 4;
  box-shadow: var(--shadow-2);
}

.card-gap {
  column-gap: 20px;
}

.hidden-box-card {
  overflow: hidden;
  height: 320px;
  margin-bottom: 20px;
  z-index: 1;
}

.card-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition-4s);
  z-index: 1;
}

.card-wrapper:hover img {
  cursor: pointer;
  transform: scale(1.1);
}

.card-wrapper a {
  margin-bottom: 30px;
  margin-left: 20px;
  margin-right: 20px;
}

.card-wrapper p {
  margin-left: 20px;
  margin-right: 20px;
}

.card-wrapper h5 {
  margin-left: 20px;
  margin-right: 20px;
}

/* ++++ CARD BILD SECTION - END ++++ */
.full-img-cta {
  padding-top: 70px;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  background-image: linear-gradient(to bottom, rgba(40, 56, 72, 0.926), rgba(40, 56, 72, 0.4)), url('../img/counter.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media screen and (max-width: 530px ){
  .full-img-cta  {
    background-image: linear-gradient(to bottom, rgba(40, 56, 72, 0.926), rgba(40, 56, 72, 0.4)), url('../img/counter-mob.jpg');
    background-attachment: scroll; 
  }
}

#motion .full-img-cta  {
  background-image: linear-gradient(to bottom, rgba(40, 56, 72, 0.926), rgba(40, 56, 72, 0.4)), url('../img/counter.jpg');
}

@media screen and (max-width: 530px ){
  #motion .full-img-cta  {
    background-image: linear-gradient(to bottom, rgba(40, 56, 72, 0.926), rgba(40, 56, 72, 0.4)), url('../img/counter-mob.jpg');
  }
}




.simple-card {
  flex-basis: 40%;
  flex-grow: 1;
  flex-shrink: 0;
  padding: 30px;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-2);
}

.icon-box {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}



.card-icon {
  color: var(--color-accent);
  font-size: 43px;
  transition: var(--transition-4s);
  
}

.card-icon:hover {
  color: var(--color-text);
  transform: scale(1.1);
  transform-origin: center;
}


/* ++++ COUNTER SECTION - START ++++ */
.counter-box {
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.counter-txt {
  padding-left: 20px;
  padding-right: 20px;
  color: var(--color-light);
  margin-bottom: 50px;
  text-align: center;
}

.counter-txt h4 {
  color: var(--color-light);
  font-size: 2rem;
}

.counter-plus {
  font-size: 3rem;
  color: var(--color-light);
  text-align: left;
  vertical-align: middle;
  padding-top: 11px;
}

.counter {
  margin-top: 20px;
  font-size: 3rem;
  width: 30px;
  text-align: left;
  color: var(--color-light);
  margin-right: 70px;
}

@media screen and (max-width: 770px) {
  .counter-wrapper {
    flex-direction: column;
  }
}


/* ++++ LEISTUNGEN SEKTION - START ++++ */
.leistungen {
  row-gap: 50px;
}

.leistungen .container-2 {
  vertical-align: middle;
  text-align: start;
  margin: auto;
}


.leistungen img {
  width: 90%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: var(--shadow-2);
  border-radius: var(--border-radius);
}

@media (min-width: 526px) {
  .el-1 {
    order: 1;
  }

  .el-2 {
    order: 2;
  }

  .el-4 {
    order: 3;
  }

  .el-3 {
    order: 4;
  }

  .el-5 {
    order: 5;
  }

  .el-6 {
    order: 6;
  }

  .el-8 {
    order: 7;
  }

  .el-7 {
    order: 8;
  }
}


/* ++++ FAQ SECTION - START ++++ */
.faq-container {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  margin-bottom: 10px;
  border-radius: var(--border-radius);
  border: var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  background-color: var(--white);
  color: var(--color-light);
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: var(--color-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #f9f9f9;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 20px 0;
}

.icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: var(--color-accent);
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px
}

@media screen and (max-width: 528px) {
  .cta .button-frame {
    justify-content: flex-start !important;
    margin: auto;
  }
  .faq-container {
    margin-top: 50px;
  }
}

/* ++++ MOTION SECTION - START ++++ */
.motion-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 900px;
}

.motion-wrapper h1 {
  color: var(--color-light);
  margin: auto;
}

.motion-wrapper .social-box{
  justify-content: center;
  margin: 30px auto;
}
.motion-wrapper .social-item {
font-size: 40px;
}

  /* ++++ KONTAKT SECTION - START ++++ */
.contact {
  column-gap: 40px !important
}

@media screen and (max-width: 694px) {
  .contact {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}

.contact .container-2 {
  flex-basis: 47% !important;
}

.contact-form-container {
  /* width: 80%; */
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-2);
  font-size: 16px;
  color: var(--color-text);
  font-family: var(--body-text);
  font-weight: 100;
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-container {
  margin-bottom: 15px;
}

.checkbox-container label {
  font-size: 14px;
}

.checkbox-container input[type="checkbox"] {
  margin-bottom: 5px;
  margin-right: 10px;
}

.contact-form button {
  margin-top: 10px;
  background-color: var(--color-accent);
  color: var(--color-light);
  border: solid 1.6px var(--color-accent);
  border-radius: 5px;
  padding: 18px 18px;
  font-size: var(--font-mid);
  font-weight: 300;
  letter-spacing: .15rem;
  line-height: 0px;
  transition: var(--transition-4s);
}

.contact-form button:hover {
  background-color: rgba(255, 255, 255, 0.37);
  color: var(--color-accent);
  border: solid 1.6px var(--color-accent);
  transform: scale(1.04);
}

.maps-wrapper {
  overflow: hidden;
  width: 100%;
  height: 300px;
  bottom: 0;
  filter: saturate(50%);
  transition: var(--transition-4s);
}

.maps-wrapper:hover {
  filter: saturate(80%);
}

.contact-info {
  flex-direction: column;
}

.info {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 30px;
}

.info-a .ph-fill {
  line-height: 2 !important;
}

.nav-icon {
  list-style: none;
  display: inline;
}

.nav-icon li {
  margin-bottom: 10px;
  line-height: 21px;
  display: flex;
  align-items: baseline;
}

.nav-icon li::before {
  font-family: "Phosphor-Fill";
  font-size: medium;
  margin-right: 10px;
}

.li-1::before {
  content: "\e2c6";
}

.li-2::before {
  content: "\e19a";
}

.li-3::before {
  content: "\e3b8";
}

.li-4::before {
  content: "\e0ac";
}
  
/* ++++ FOOTER SECTION - START ++++ */
.footer {
  background-color: var(--color-accent);
  bottom: 0;
}

.footer .wrapper {
  align-items: end;
  margin-bottom: 0px;
}

.footer-logo {
  width: 170px;
}

.cls-1 {
  fill: var(--color-light) !important;
}

.footer p {
  color: var(--color-light);
  font-size: var(--font-mid);
}

.footer a {
  color: var(--color-light);
  transition: var(--transition-4s);
  padding: 0px 11px 0px 0px;
}

.footer a:hover {
  color: var(--color-light-grey);
}

.terms,
.copyright {
  font-size: var(--font-mid);
}

.terms {
  max-width: 250px;
}

.divider:hover {
  color: var(--color-light);
}

.footer .nav-list {
  list-style: none;
  text-transform: uppercase;
  font-weight: 200;
  margin: 0px;
}

.footer-social-box,
.terms {
  justify-content: end;
}

.footer-social-box a {
  padding: 0;
}

@media screen and (max-width: 528px) {

  .footer-social-box,
  .terms {
    justify-content: start;
  }
}

.social-box {
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 10px;
  overflow: visible;
  width: 300px;
  height: 30px;
}

.social-item {
  cursor: pointer;
  font-size: 28px;
  color: var(--color-light);
  transition: var(--transition-4s);
}

.social-item:hover {
  transform: scale(1.1);
  transform-origin: center;
  color: var(--color-light-grey);
}

.footer .container {
  padding: 0px;
  margin-bottom: 0px;
}

.footer .container-2 {
  align-items: center;
}

@media screen and (max-width: 758px) {
  .footer .nav-list {
    display: block;
  }
  .divider {
    display: none;
  }
  .social-box {
    justify-content: start;
  }
}

@media (max-width: 500px) {
  .footer .container-2:nth-child(5) {
    order: 6;
  }

  .footer .container-2:nth-child(6) {
    order: 5;
  }
}

     










