/* --------------------------------------------------- */
/* Basic Setup*/
/* --------------------------------------------------- */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  background-color: #fff;
  color: #555;
  font-family: "Lato", "Arial", sans-serif;
  font-weight: 300;
  font-size: 2vh;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow: visible;
  max-width: 100%;
}

.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

/* --------------------------------------------------- */
/* Reusable components */
/* --------------------------------------------------- */

.center {
  margin: 0px auto;
}

.row {
  max-width: 80%;
  margin: 0px, auto, 0px, auto;
}

section {
  height: 100vh;
  padding: 15vh 0px;
}

/* --------------------------------------------------- */
/* Texts */
/* --------------------------------------------------- */

h1 {
  font-size: 400%;
  color: white;
  margin-bottom: 25px;
}
h1:hover,
h1:active {
  font-size: 410%;
  margin-bottom: 23px;
}

h2 {
  font-size: 200%;
  color: white;
  margin-bottom: 50px;
}

h3 {
  font-size: 200%;
  color: white;
}

h4 {
  font-size: 180%;
}

h5 {
  font-size: 130%;
}
/* --------------------------------------------------- */
/* header */
/* --------------------------------------------------- */

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/hero.jpeg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  background-attachment: fixed;
  background-repeat: no-repeat;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
}

.hero-text-box {
  position: absolute;
  width: 80%;
  top: 12%;
  left: 50%;
  line-height: 1.6;
  transform: translate(-50%, 0%);
  text-align: center;
}

.header-phone {
  height: 25vh;
}

.header-type-text {
  color: #62d7b3;
  padding-bottom: 5px;
  border-bottom: 5px solid #62d7b3;
}

.download-store {
  margin-top: 2rem;
}

.download-store-btn img {
  margin: 2px 0.5rem;
  height: 7vh;
  border-bottom: 1px solid transparent;
}

.download-store-btn img:hover,
.download-store-btn img:active {
  margin: 0px 12px 2px 11px;
  height: 7.1vh;
  border-bottom: 1px solid transparent;
}

.menu-burger {
  width: 6vh;
}

.menu-burger-btn:link,
.menu-burger-btn:visited {
  float: right;
}

.menu-burger-btn:hover,
.menu-burger-btn:active {
  float: right;
  background-color: #62d7b3;
}

/* --------------------------------------------------- */
/* About section */
/* --------------------------------------------------- */

.about-section {
  background-color: #7af0d0;
}

/* --------------------------------------------------- */
/* Function section */
/* --------------------------------------------------- */

.function-section {
  background: linear-gradient(
    to bottom right,
    #7af0d0,
    #7af0d0 40%,
    white 100%
  );
}

.app-description-bg-container {
  backdrop-filter: blur(21px);
  opacity: 0.7;
  position: absolute;
  content: none;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.4);
}

.app-description-bg-container-left {
  height: 46vh;
  width: 60vw;
  margin-top: 4vh;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.8)
  );
  border-radius: 0px 23vh 23vh 0px;
}

.app-description-bg-container-right {
  height: 55vh;
  width: 90vw;
  margin-top: 15vh;
  right: 0px;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.2)
  );
  border-radius: 28vh 0px 0px 28vh;
}

.function-section-slide {
  align-items: flex-start;
  justify-content: flex-start;
}

.function-section-content {
  position: absolute;
  height: 60%;
  width: 85%;
  top: 5vh;
  left: 15%;
}

.function-section-img {
  margin-top: 2vh;
  width: 28%;
  height: auto;
  display: inline;
  float: left;
}

.function-section-description {
  display: inline;
  float: left;
  margin-top: 15%;
  margin-left: 3%;
  color: black;
  width: 50%;
}

.function-section-description img {
  width: 80%;
  margin: 1vh 0px;
}

/* --------------------------------------------------- */
/* socials section */
/* --------------------------------------------------- */

.socials-section {
  background: linear-gradient(
    to top right,
    #7af0d0 0%,
    #7af0d0 40%,
    white 100%
  );
}

.socials-section h2 {
  padding-top: 5%;
}

.socials-section-content {
  text-align: center;
}

.social-icon {
  height: 60px;
  margin: 75px 40px;
}

.social-icon:active,
.social-icon:hover {
  height: 64px;
  margin: 73px 38px;
}

.download-app-bottom {
  margin: 50px 0px;
}

/* --------------------------------------------------- */
/* Netzwerk section */
/* --------------------------------------------------- */

.netzwerk-section {
  background: linear-gradient(to bottom left, #7af0d0, #7af0d0 40%, white 100%);
  padding: 40px 0px;
}

.socials-section-content {
  text-align: center;
}

.netzwerk-section h2 {
  padding-top: 12%;
}

.netzwerk-container {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  justify-content: center;
  margin-top: 10%;
}

.netzwerk-item {
  margin: 5px;
}

.netzwerk-logo {
  height: 12vh;
  margin: 25px 40px;
  max-width: 80%;
}

.netzwerk-logo:active,
.netzwerk-logo:hover {
  height: 12.1vh;
  margin: 23px 38px;
}

/* --------------------------------------------------- */
/* Team section */
/* --------------------------------------------------- */

.team-section {
  background-image: url(../img/team.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  min-height: 800px;
  padding: 0px;
}

.team-showcase {
  list-style: none;
  width: 100%;
  height: 40%;
}

#team-showcase-2 {
  height: 60%;
}

.team-showcase li {
  display: block;
  float: left;
  width: 50%;
  height: 100%;
}

#team-showcase-2 li {
  width: 33.33%;
}

figure {
  height: 100%;
}

.team-description {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background-color: transparent;
  padding: auto;
  text-align: center;
}

.team-description:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.team-description img,
.team-description h5,
.team-description h4,
.team-description p {
  opacity: 0;
}

.team-description:hover .team-description-img {
  opacity: 1;
}

.team-description-img {
  display: inline-block;
  opacity: 0;
  margin-top: 20px;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 6.5rem;
  max-width: 80%;
  background-size: cover;
  background-position: center;
}

.team-description-img#ben {
  background-image: url(../img/team/Ben.jpeg);
}
.team-description-img#doro {
  background-image: url(../img/team/Doro.jpeg);
}
.team-description-img#bambi {
  background-image: url(../img/team/Bambi.jpeg);
}
.team-description-img#geo {
  background-image: url(../img/team/geo.jpeg);
}
.team-description-img#katrin {
  background-image: url(../img/team/katrin.jpeg);

}

.team-description:hover h5,
.team-description:hover h4,
.team-description:hover p {
  opacity: 1;
}

.team-description h4 {
  margin-top: 3px;
  color: white;
}

.team-description h5 {
  margin: 10px 10% 0px 10%;
  color: white;
  font-size: 1.2rem;
}

.team-description p {
  font-style: italic;
  color: rgb(232,232,232);
}

.team-under {
  margin: 20px 10% 0px 10%;
  font-size: 1rem;
}

.team-upper {
  margin: 10px 10% 0px 10%;
  font-size: 0.9rem;
}
