* {
   margin: 0;
   padding: 0;
   font-family: 'Roboto Condensed', sans-serif;
}

#home {
   background: linear-gradient(65deg, rgba(247, 121, 125, 0.3), rgba(251, 215, 134, 0.7), rgba(198, 255, 221, 0.4)), url(images/banner.png);
   height: 100vh;
   background-position: left;
   background-repeat: no-repeat;
   background-size: cover;
   background-blend-mode: darken;
   padding-top: 10%;
}

.banner-text .logo {
   max-width: 60%;
}

.banner-text {
   text-align: center;
   color: #fff;
}

.banner-btn {
   margin: 50px auto 0;
   text-transform: uppercase;
}

.banner-btn a {
   font-family: 'Roboto Condensed', sans-serif;
   font-weight: 300;
   font-size: 16px;
   letter-spacing: 1px;
   width: 230px;
   text-decoration: none;
   display: inline-block;
   margin: 0 10px;
   padding: 16px 0;
   background-color: rgb(223, 166, 202);
   color: #fff;
   border-radius: 15px;
   position: relative;
   z-index: 1;
   transition: color 0.5s;
}

.banner-btn a span {
   width: 0;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background: #fff;
   border-radius: 15px;
   z-index: -1;
   transition: 0.5s;
}

.banner-btn a:hover span {
   width: 100%;
   border-radius: 10px;
}

.banner-btn a:hover {
   color: rgb(223, 166, 202);
}

#sideNav {
   font-weight: 300;
   letter-spacing: 0.06em;
   font-size: 22px;
   text-transform: uppercase;
   width: 250px;
   height: 100vh;
   position: fixed;
   right: -250px;
   top: 0;
   background: rgb(223, 166, 202);
   z-index: 2;
   transition: 0.5s;
}

nav ul li {
   list-style: none;
   margin: 50px 20px;
}

nav ul li a {
   text-decoration: none;
   color: #fff;
}

#menuBtn {
   width: 50px;
   height: 50px;
   background: rgb(223, 166, 202);
   text-align: center;
   position: fixed;
   right: 30px;
   top: 20px;
   border-radius: 50%;
   z-index: 3;
   cursor: pointer;
}

#menuBtn img {
   width: 20px;
   margin-top: 15px;
}

@media screen and (max-width: 770px) {
   .banner-text .logo {
      max-width: 80%;
      margin-bottom: 30px;
   }

   .banner-text {
      text-align: center;
      color: #fff;
      padding-top: 100px;
   }

}


/*--Vita--*/

#vita {
   width: 100%;
   padding: 70px 0;
}

.vita-box {
   width: 80%;
   margin: auto;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   text-align: center;
}

.feature-box {
   width: 80%;
   margin: auto;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   text-align: center;
}

.features {
   flex-basis: 50%;
}

.features-img {
   flex-basis: 50%;
   margin: auto;
}

.features-img img {
   width: 70%;
   border-radius: 50%;
}

.features h1 {
   text-transform: uppercase;
   text-align: left;
   font-size: 68px;
   font-weight: 300;
   color: rgba(223, 166, 202, 0.6)
}

.features h2 {
   text-align: left;
   font-size: 25px;
   margin-bottom: 60px;
   padding-left: 4px;
   font-weight: 300;
   color: rgba(0, 0, 0, 0.3);
}

.features-desc {
   display: flex;
   align-items: center;
   margin-bottom: 40px;
}

.titel-text ul li {
   font-size: 18px;
   line-height: 26px;
   list-style: none;
   padding: 0 15px;
}

.titel-text ul li::before {
   content: "\2022";
   color: rgb(223, 166, 202);
   font-weight: 500;
   display: inline-block;
   width: 0.8em;
   margin-left: -0.8em;
}

li {
   color: rgba(0, 0, 0, 0.3);
   font-weight: 300;
   padding: 0;
   text-align: left;
   line-height: 24px;
}

@media screen and (max-width: 770px) {
   .title-text h1 {
      font-size: 35px;
   }

   .title-text .anker {
      min-width: 30%;
      margin-bottom: 30px;
   }

   .features {
      flex-basis: 100%;
   }

   .features-img {
      flex-basis: 100%;
   }

   .features-img img {
      width: 100%;
   }
}



/*--Angebot--*/

#angebot {
   background: linear-gradient(65deg, rgba(247, 121, 125, 0.3), rgba(251, 215, 134, 0.7), rgba(198, 255, 221, 0.4));
   width: 100%;
   padding: 70px 0;
}

.card {
   width: 80%;
   max-width: 320px;
   color: rgba(255, 255, 255);
   text-align: center;
   padding: 30px 30px;
   background: rgba(255, 255, 255, 0.3);
   border-radius: 20px;
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
   backdrop-filter: blur(5px);
   margin: 20px;
}

.card-box {
   width: 80%;
   margin: auto;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   text-align: center;
}

.card img {
   width: 140px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.5);
}

.card h2 {
   font-size: 30px;
   font-weight: 300;
   margin: 20px auto;
   color: rgba(0, 0, 0, 0.5)
}

.card p {
   font-size: 18px;
   line-height: 24px;
   font-weight: 300;
   margin: 20px auto;
   max-width: 330px;
   color: rgba(247, 121, 125, 0.7);
}

.card .fa {
   padding-left: 5px;
}

.btn {
   text-decoration: none;
   display: inline-block;
   font-size: 18px;
   font-weight: 600;
   background: rgba(247, 121, 125, 0.7);
   color: rgba(255, 255, 255, 0.8);
   padding: 12px 40px;
   border-radius: 10px;
   margin: 20px 0 20px 0;
}

.btn:hover {
   background: rgba(255, 255, 255, 0.5);
   color: rgba(247, 121, 125, 0.7);
   transition: 0.8s;
}

@media screen and (max-width: 770px) {
   .card h2 {
      font-size: 26px;
   }
}


/*--Studio--*/

#studio {
   background-color: rgba(247, 121, 125, 0.2);
   width: 100%;
   padding: 70px 0;
}

.studio-box {
   width: 80%;
   padding: 0px 30px;
   margin: auto;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   text-align: center;
}

.single-studio img {
   width: 500px;
   border-radius: 15px;
}

.single-studio {
   margin: 20px;
}

@media screen and (max-width: 770px) {
   .single-studio img {
      width: 360px;
   }
}

/*--impressum--*/

#impressum {
   background: linear-gradient(65deg, rgba(247, 121, 125, 0.3), rgba(251, 215, 134, 0.7), rgba(198, 255, 221, 0.4));
   width: 100%;
   padding: 70px 0;
}

.impressum-box {
   width: 80%;
   margin: auto;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   text-align: center;
}

.features-impr {
   flex-basis: 70%;
}

.features-impr h1 {
   text-transform: uppercase;
   text-align: left;
   font-size: 68px;
   font-weight: 300;
   color: rgba(247, 121, 125, 0.7);
}

.features-impr h3 {
   text-align: left;
   font-size: 25px;
   margin-top: 40px;
   margin-bottom: 10px;
   padding-left: 4px;
   font-weight: 300;
   color: rgba(247, 121, 125, 0.7);
}

.features-desc-impr {
   display: flex;
   align-items: center;
   margin-bottom: 40px;
}

.titel-text-impr p {
   text-align: left;
   color: rgba(0, 0, 0, 0.3);
   font-size: 18px;
   line-height: 26px;
   list-style: none;
   padding: 10px 20px;
}

.link-impr {
   text-decoration: none;
   color: rgba(0, 0, 0, 0.3);
}

.link-impr:hover {
   color: rgba(247, 121, 125, 0.7);
}

.datenschutz ul li {
   font-size: 18px;
   line-height: 26px;
   font-weight: 500;
   list-style: none;
   padding: 0 30px;
}

.datenschutz ul li::before {
   content: "\2022";
   color: rgba(247, 121, 125, 0.7);
   display: inline-block;
   width: 0.9em;
   margin-left: -0.9em;
}

li {
   color: rgba(0, 0, 0, 0.3);
   padding: 0;
   text-align: left;
}

.tel-impr {
   text-decoration: none;
   color: rgba(0, 0, 0, 0.3);
   pointer-events: none;
}

.quelle {
   text-align: left;
   font-size: 0.9em;
   padding-left: 20px;
   color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 770px) {

   .features-impr h1 {
      font-size: 50px;
   }

   .features-impr {
      flex-basis: 100%;
   }
}



/*--Angebot--*/

#angebot {
   background: linear-gradient(65deg, rgba(247, 121, 125, 0.3), rgba(251, 215, 134, 0.7), rgba(198, 255, 221, 0.4));
   width: 100%;
   padding: 70px 0;
}

.card {
   width: 80%;
   max-width: 320px;
   color: rgba(255, 255, 255);
   text-align: center;
   padding: 30px 30px;
   background: rgba(255, 255, 255, 0.3);
   border-radius: 20px;
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
   backdrop-filter: blur(5px);
   margin: 20px;
}

.card-box {
   width: 80%;
   margin: auto;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   text-align: center;
}

.card img {
   width: 140px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.5);
}

.card h2 {
   font-size: 30px;
   font-weight: 300;
   margin: 20px auto;
   color: rgba(0, 0, 0, 0.5)
}

.card p {
   font-size: 18px;
   line-height: 24px;
   font-weight: 300;
   margin: 20px auto;
   max-width: 330px;
   color: rgba(247, 121, 125, 0.7);
}

.card .fa {
   padding-left: 5px;
}

.btn {
   text-decoration: none;
   display: inline-block;
   font-size: 18px;
   font-weight: 600;
   background: rgba(247, 121, 125, 0.7);
   color: rgba(255, 255, 255, 0.8);
   padding: 12px 40px;
   border-radius: 10px;
   margin: 20px 0 20px 0;
}

.btn:hover {
   background: rgba(255, 255, 255, 0.5);
   color: rgba(247, 121, 125, 0.7);
   transition: 0.8s;
}

@media screen and (max-width: 770px) {
   .card h2 {
      font-size: 26px;
   }
}



/*--footer--*/

#kontakt {
   padding: 250px 0 50px;
   background: #333;
   position: relative;
}

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

.footer-row {
   width: 80%;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}

.footer-left,
.footer-right {
   flex-basis: 45%;
   padding: 10px;
   margin-bottom: 20px;
}

.footer-right {
   text-align: right;
}

.footer-row h1 {
   margin: 10px 0;
   color: rgba(247, 121, 125, 0.7);
}

.footer-row p {
   font-weight: 300;
   line-height: 30px;
   color: #ccc;
}

.footer-right .link {
   text-decoration: none;
   color: #ccc;
}

.footer-right .link:hover {
   color: rgba(247, 121, 125, 0.7);
}

.footer-right .tel {
   text-decoration: none;
   color: #ccc;
   pointer-events: none;
}

.footer-img {
   max-width: 300px;
   opacity: 0.2;
   position: absolute;
   left: 50%;
   top: 150px;
   transform: translate(-50%, -50%);
}

.social-links {
   text-align: center;
}

.social-links .fa {
   height: 50px;
   width: 50px;
   font-size: 25px;
   line-height: 50px;
   border: 1px solid rgba(247, 121, 125, 0.7);
   border-radius: 50%;
   margin: 40px 5px 20px;
   color: rgba(247, 121, 125, 0.7);
   cursor: pointer;
   transition: .5s;
}

.social-links .fa:hover {
   background: rgba(247, 121, 125, 0.7);
   color: #333;
   transform: translateY(-7px);
}

.social-links p {
   font-size: 12px;
   line-height: 19px;
   font-weight: 300;
   letter-spacing: 0.5px;
   color: #ccc;
}

.social-links .link {
   text-decoration: none;
   color: rgba(247, 121, 125, 0.7);
}

.social-links .link:hover {
   color: #ccc;
}

.footer-right .fa {
   padding-right: 5px;
}

@media screen and (max-width: 770px) {

   .footer-left,
   .footer-right {
      flex-basis: 100%;
      font-size: 14px;
      text-align: center;
   }

   .footer-img {
      top: 20%;
      opacity: 0.2;
   }
}