.hero {
  height: 100vh;
  width: 100vw;
  position: relative;
}
.hero .bg {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 72%, rgba(255, 255, 255, 1)), url("../images/sibylle-bechstein-psychotherapeutin.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-position-y: top;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.hero .group {
  position: relative;
  top: 36%;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* .hero .group h1 { */
.hero .group h2 {
  font-size: 60px;
  font-weight: lighter;
  color: #3a80b3;
  text-align: center;
  line-height: 1.3;
  text-transform: none !important;
}
.hero .group p {
  /* border-top: 2px solid rgba(85, 149, 200, 0.7333333333); */
  max-width: 300px;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  font-size: 20px;
  color: #f36d1a;
  font-weight: normal;
  margin: 0 auto 0 auto;
}
.hero .group a {
  max-width: 300px;
  height: 50px;
  width: 100%;
  background-color: transparent;
  border: 2px solid #3a80b3;
  color: #3a80b3;
  font-size: 18px;
  font-weight: 500;
  margin-top: 70px;
  transition: 250ms;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.hero .group a:hover {
  border: 2px solid #e78701;
  color: #e78701;
}

.content {
  padding: 0 30px;
  max-width: 1000px;
  width: 100%;
  margin: 80px auto 40px auto;
  text-align: center;
}
/* .content h2 {
  font-size: 35px;
  font-weight: normal;
  color: #3a80b3;
} */
.content .divider {
  margin: 20px auto 25px auto;
  width: 150px;
  height: 4px;
  background-color: #e78701;
}
.content p {
  font-size: 18px;
  color: #3a80b3;
  margin: 30px 0;
  font-weight: lighter;
}
.content .normal {
  font-weight: normal;
  max-width: 700px;
  margin: 0 auto;
}
.content p:first-child {
  margin-bottom: 40px;
}

.icons-section {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  padding: 30px 0;
  max-width: 1000px;
  margin: 80px auto;
  align-items: start;
  justify-items: center;
  grid-row-gap: 30px;
}
.icons-section .item {
  grid-column: span 2;
  width: 220px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}
.icons-section .item .item-link {
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease-in-out;
}
.icons-section .item p {
  margin: 10px 0 30px 0;
  color: #3a80b3;
}
.icons-section .item .highlighted {
  color: #e78701;
}
.icons-section .item .image {
  padding: 15px;
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease-in-out;
}
.icons-section .item .image:hover {
  transform: scale(1.02);
}
.icons-section .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.icons-section .second-column-start {
  grid-column: 2/4;
}
.footer {
  width: 100vw;
  background-color: #e0edf4;
}
.footer .top {
  padding: 40px 30px;
  max-width: 1000px;
  /* margin: 40px auto 0 auto; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  justify-items: center;
}
.footer .top .title {
  font-size: 22px;
  color: #3a80b3;
}
.footer .top .divider {
  width: 50px;
  height: 3px;
  background-color: #e78701;
  margin: 5px auto 15px auto;
}
.footer .top p {
  text-align: center;
  font-size: 16px;
  color: #7db4d7;
  margin: 5px 0;
}
.footer .top a {
  color: #3a80b3;
}
.footer .bottom {
  width: 100vw;
  padding: 20px 30px;
  background-color: #f36d1a;
}
.footer .bottom p {
  width: 100%;
  color: white;
}

@media (max-width: 991.98px) {
  .hero {
    height: 100vh;
    width: 100vw;
    position: relative;
  }
  .hero .group {
    top: 25%;
    padding: 0 30px;
  }
  .hero .group h1 {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 767.98px) {
  .hero .group h2 {
    font-size: 35px;
    line-height: 1.3;
  }
  .hero .group p {
    font-size: 20px;
    line-height: 1.3;
  }
  .content {
    padding: 0 30px;
    max-width: 1000px;
    width: 100%;
    margin: 50px auto 40px auto;
    text-align: center;
  }
  .content h2 {
    font-size: 25px;
    color: #3a80b3;
  }
  .icons-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
    margin-bottom: 0;
  }
  .icons-section .item {
    grid-column: span 2;
    width: 220px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
  }
  .icons-section .item p {
    margin: 10px 0 30px 0;
    color: #3a80b3;
  }
  .icons-section .item .highlighted {
    color: #e78701;
  }
  .icons-section .item .image {
    padding: 15px;
  }
  .icons-section .item:nth-child(4) {
    grid-column: span 2;
  }
  .footer .top {
    padding: 40px 30px;
    margin: 0 auto 0 auto;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}/*# sourceMappingURL=landing.css.map */