/* colors */
/* .quicksand-regular {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
} */
* {
  font-family: "Quicksand", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #363947;
  font-weight: 600;
}

/* style reset */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

h1 {
  font-family: "Quicksand";
  font-weight: 400;
  color: #363947;
  display: inline-block;
  text-transform: uppercase;
  font-size: 2.4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  h1 {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.6rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 4.2rem;
  }
}

h2 {
  color: #363947;
  font-weight: 400;
  font-size: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  color: #575c72;
  font-weight: 400;
  font-size: 1.5rem;
}
@media (min-width: 576px) {
  h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.7rem;
  }
}
@media (min-width: 992px) {
  h3 {
    font-size: 1.8rem;
  }
}

.btn {
  border: solid 2px;
  border-color: #363947;
  border-radius: 0%;
  font-size: 1.2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  margin-top: 1rem;
  background: transparent;
  color: #363947;
}
.btn:hover {
  color: #fdfbfa;
  background: #363947;
  border-color: #363947;
}

a {
  color: #363947;
}
a:hover {
  color: #D55143;
}

body {
  background-color: #fdfbfa;
  color: #363947;
  display: flex;
  flex-direction: column;
}

nav {
  flex-direction: row;
  height: 64px;
}

#logo {
  display: flex;
  flex-direction: row;
}

.nav-elements {
  display: flex;
  position: relative;
  color: #363947;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}
.nav-elements .fas {
  color: #D55143;
}
@media (min-width: 768px) {
  .nav-elements {
    font-size: 0.9rem;
  }
}
@media (min-width: 992px) {
  .nav-elements {
    font-size: 1rem;
  }
}

.bgLeft {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  left: 0vw;
  top: 0px;
  width: 0vw;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
}

.bgRight {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  left: 100%;
  top: 0px;
  width: 0vw;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
}

.nav-link {
  padding: 0.25em 0.3em 0.25em 0.3em;
}
.nav-link:hover {
  color: #D55143;
}
@media (min-width: 360px) {
  .nav-link {
    padding: 0.25em 0.5em 0.25em 0.5em;
  }
}
@media (min-width: 400px) {
  .nav-link {
    padding: 0.25em 0.875em 0.25em 0.875em;
  }
}

.nav-highlighter {
  left: 0px;
  height: 6px;
  width: 50px;
  bottom: 0;
  background: #D55143;
  position: absolute;
  transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
}

.projectContent {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 576px) {
  .projectContent {
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .projectContent {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .projectContent {
    padding-bottom: 2rem;
  }
}
.projectContent img {
  width: 100%;
  height: auto;
}

section {
  margin-bottom: 2rem;
}

.sticky-top {
  position: fixed;
  display: flex;
  top: 2em;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
}

#welcome {
  height: -moz-fit-content;
  height: fit-content;
  height: 100vh;
  max-height: 100vh;
  background: #F5F1ED;
  position: relative;
}

@keyframes showWelcome {
  0% {
    opacity: 0;
    top: 24rem;
  }
  100% {
    opacity: 1;
    top: 20rem;
  }
}
.reveal {
  position: relative;
  transform: translateY(4rem);
  opacity: 0;
  transition: 2s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.alignNav {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .alignNav {
    justify-content: flex-end;
  }
}

footer {
  background-color: #F5F1ED;
  min-height: 20rem;
  display: flex;
  align-items: center;
}
footer .container {
  margin-bottom: 2rem;
}
footer .logo {
  display: flex;
  font-size: 1.5rem;
  align-items: center;
  flex-direction: row;
  margin-bottom: 1em;
  margin-top: 1em;
}
footer .logo .pehlke {
  margin-left: 2rem;
  color: #363947;
  font-size: 1.5rem;
}
footer #copyright {
  display: flex;
  align-items: center;
  color: #363947;
  font-size: 1.2rem;
}

.vert-center {
  display: flex;
  flex-direction: column;
}

#aboutImage {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: baseline;
}
#aboutImage img {
  max-width: 800px;
  width: 70%;
  height: auto;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  #aboutImage img {
    width: 60%;
  }
}
@media (min-width: 768px) {
  #aboutImage img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  #aboutImage img {
    width: 100%;
  }
}

.about-text {
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0 1rem 1rem 1rem;
}
@media (min-width: 576px) {
  .about-text {
    padding: 0 1rem 1rem 1rem;
  }
}
@media (min-width: 768px) {
  .about-text {
    padding: 0 2rem 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .about-text {
    padding: 0 5rem 1rem 5rem;
  }
}

#contact .container .row {
  margin-left: 0;
  margin-right: 0;
}
#contact .container .row .col a {
  color: #D55143;
  text-decoration: none;
}

.socials {
  padding: 0.2em 0.2em 1em 0.2em;
  display: flex;
  align-items: center;
}
.socials object {
  padding: 0.8em;
  margin-right: 1em;
  height: 70px;
}
@media (min-width: 768px) {
  .socials object {
    margin-right: 0.5em;
  }
}
@media (min-width: 992px) {
  .socials object {
    margin-right: 2em;
  }
}
.socials a {
  color: #363947;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .socials a {
    font-size: 0.9rem;
  }
}
@media (min-width: 992px) {
  .socials a {
    font-size: 1rem;
  }
}

.vertSpacer {
  height: 8rem;
}

.img-thumbnail {
  border: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding: 0;
}

header {
  height: -moz-fit-content;
  height: fit-content;
}

video {
  width: 100%;
  border-radius: 10px;
}

/* Image Gallery */
.modal-content {
  background-color: #D55143;
}

.modal-header {
  border: 0;
}

.modal-body {
  max-width: 100vw;
  max-height: 100vh;
}

#changeText {
  position: absolute;
  padding-bottom: 1rem;
  left: 0;
  transform: translate(0, -50%);
  opacity: 0;
  animation: fade-in 0.5s ease-in-out forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translate(0, -60%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.fade-out {
  animation: fade-out 0.5s ease-in-out forwards;
}

@keyframes fade-out {
  from {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
}
header {
  background-color: transparent;
  background: none;
}

#logo-top {
  width: -moz-fit-content;
  width: fit-content;
  height: 64px;
  position: absolute;
  top: 2rem;
  color: #363947;
  align-items: center;
  flex-direction: row;
  display: none;
}
@media (min-width: 992px) {
  #logo-top {
    display: flex;
  }
}

.pehlke {
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
}
.pehlke span.firstname {
  font-family: "Quicksand";
  color: #363947;
}
.pehlke span.lastname {
  font-family: "Quicksand";
  color: #D55143;
}

.mt10 {
  margin-top: 5rem;
}
@media (min-width: 576px) {
  .mt10 {
    margin-top: 6rem;
  }
}
@media (min-width: 768px) {
  .mt10 {
    margin-top: 8rem;
  }
}
@media (min-width: 992px) {
  .mt10 {
    margin-top: 10rem;
  }
}

#mobileTexts {
  position: relative;
  display: block;
}
@media (min-width: 992px) {
  #mobileTexts {
    display: none;
  }
}

.mtext {
  display: none;
  margin-top: 2rem;
}
.mtext h1 {
  color: #575c72;
}

.mtext.active {
  display: block;
}

.carousel-item {
  padding-left: 0;
  height: 100%;
}

p {
  line-height: 170%;
}

.individual-caption {
  position: absolute;
  left: 1rem;
  top: 20rem;
}
@media (min-width: 576px) {
  .individual-caption {
    left: 10rem;
  }
}
@media (min-width: 768px) {
  .individual-caption {
    left: 16rem;
  }
}
@media (min-width: 992px) {
  .individual-caption {
    left: 20rem;
  }
}
.individual-caption a {
  text-decoration: none;
  transition: all 1s ease;
}
.individual-caption a h5 {
  font-size: 2rem;
  color: #D55143;
  text-transform: uppercase;
  font-family: "Quicksand";
}
@media (min-width: 576px) {
  .individual-caption a h5 {
    font-size: 2.3rem;
  }
}
@media (min-width: 768px) {
  .individual-caption a h5 {
    font-size: 2.6rem;
  }
}
@media (min-width: 992px) {
  .individual-caption a h5 {
    font-size: 2.9rem;
  }
}
.individual-caption a p {
  font-size: 1rem;
  color: #D55143;
}
@media (min-width: 576px) {
  .individual-caption a p {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .individual-caption a p {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .individual-caption a p {
    font-size: 1.6rem;
  }
}

.pImage {
  padding-top: 1.5rem;
}
.pImage img {
  width: 100%;
}

.ptype {
  color: #D55143;
}

.glide__slide {
  height: 100%;
  display: flex;
  align-items: center;
}
.glide__slide a {
  text-decoration: none;
}
.glide__slide a h1, .glide__slide a h2 {
  color: #363947;
}

.hero-heading {
  width: -moz-fit-content;
  width: fit-content;
}

.hero-heading:hover h1, .hero-heading:hover h2 {
  color: #D55143;
}

.glide {
  height: 100%;
}

.glide__track {
  height: 100%;
}

.glide__slides {
  height: 100%;
}

#slide-a {
  position: relative;
  z-index: 2;
}

#slide-a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../img/Chiro/ChiroHero.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
}

#slide-b {
  position: relative;
  z-index: 2;
}

#slide-b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../img/Neue_Welten/Neue_Welten_Hero.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
}

#slide-c {
  position: relative;
  z-index: 2;
}

#slide-c::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../img/Tape_und_Papier/Tape_und_Papier_Hero.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
}

.glide__bullets {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 2em;
  width: 100%;
}

.glide__bullet {
  margin: 0.5em;
  padding: 0;
  border: none;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #575c72;
}

.glide__bullet--active {
  background-color: #D55143;
}

.description {
  color: #575c72;
}

.awards {
  margin-top: 1.25rem;
}
@media (min-width: 576px) {
  .awards {
    margin-top: 1.5rem;
  }
}
@media (min-width: 768px) {
  .awards {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .awards {
    margin-top: 2.5rem;
  }
}

.exhibition-year {
  font-weight: 700;
  padding-right: 0.9rem;
  white-space: nowrap;
  color: #575c72;
}
@media (min-width: 576px) {
  .exhibition-year {
    padding-right: 1.4rem;
  }
}
@media (min-width: 768px) {
  .exhibition-year {
    padding-right: 1.4rem;
  }
}
@media (min-width: 992px) {
  .exhibition-year {
    padding-right: 1.8rem;
  }
}

th, td {
  vertical-align: top;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  th, td {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

td span {
  display: block;
  font-weight: inherit;
  color: inherit;
}
@media (min-width: 768px) {
  td span {
    display: inline;
  }
}/*# sourceMappingURL=style.css.map */