:root {
  --roetsbruin: #d15027;
  --roetsbruin-accent: #662611;
  --roetsbruin-accent-hover: #451a0c;
  --appelgroen: #0c9681;
  --appelgroen-accent: #055549;
  --appelgroen-accent-hover: #023830;
  --text-color-dark: #171717;
  --text-color-medium: #757575;
  --text-color-white: #ffffff;
  --background: #f2f2f2;
  --default-color: var(--roetsbruin);
  --accent-color: var(--roetsbruin-accent);
  --hover-color: var(--roetsbruin-accent-hover);
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", serif;
  background: var(--background);
  display: flex;
  flex-direction: column;
}

header {
  width: 100%;
  background: white;
  padding: 7px 15px 7px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 30;
  box-shadow: 6px 4px 4px 0px rgba(0, 0, 0, 0.05);
}
header .fa-bars,
header .fa-times {
  color: var(--default-color);
  font-size: 2rem;
  display: block;
  height: 32px;
  width: 32px;
}
/* header .mid,
header .right {
  background: var(--default-color);
  border-radius: 50%;
  display: block;
  width: 38px;
  height: 38px;
} */
header .mid img {
  position: relative;
  top: 4px;
  left: 2px;
  height: 75px;
  /* width: 38px; */
  filter: brightness(1) invert(0);
}

#breadcrumbs {
  display: flex;
  align-items: center;
  margin: 1rem 10px;
}
#breadcrumbs > #back {
  display: block;
  font-weight: 700;
  color: var(--default-color);
  text-decoration: none;
  margin: 4px;
}
#breadcrumbs a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--default-color);
  text-decoration: none;
}

#sidenav {
  height: 100%;
  width: 90%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: -95%;
  background-color: white;
  overflow-x: hidden;
  padding-top: 60px;
  padding-left: 40px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.4);
  transition: 0.15s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#sidenav h1 {
  font-weight: 700;
  color: var(--default-color);
}
#sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--default-color);
  display: block;
  transition: 0.3s;
}
#sidenav a:hover {
  color: var(--text-color-dark);
}
#sidenav ul {
  margin: 20px 0;
}
#sidenav li {
  list-style-type: none;
}
#sidenav li a {
  padding: 15px;
}
#sidenav ul .sub-menu {
  margin: 0;
  padding-left: 2.5rem;
}
#sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#overlay {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.5);
}

main {
  margin-top: 100px;
}

.lower {
  background: var(--background);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  align-items: stretch;
}

section {
  background: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

section.hero {
  margin-bottom: 2rem;
}
section.hero,
section.frontmatter {
  position: relative;
  background: none;
  border-radius: 0;
}
section.hero .imageheader,
section.frontmatter .imageheader {
  position: relative;
  height: 500px;
  z-index: 10;
  padding-top: clamp(75px, 7.5vw, 100px);
  display: block;
}

.therapie section.frontmatter .imageheader {
  height: clamp(300px, 30vw, 375px);
}

.therapie section.frontmatter article {
  margin: -3rem auto 0 auto;
}

.therapie .grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: 2rem;
  gap: 2rem;
}

section.hero .imageheader {
  height: clamp(375px, 50vw, 500px);
}

.vragen-en-contact section.hero .imageheader,
.over-mij section.hero .imageheader {
  height: clamp(375px, 50vw, 750px);
}

.over-mij section.hero article {
  margin: -3rem auto 0 auto;
  width: 90%;
  max-width: 70ch;
}

section.hero article,
section.frontmatter article {
  background: white;
  width: 90%;
  height: 100%;
  position: relative;
  margin: -4rem auto 0 auto;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
section.frontmatter article {
  margin: -2rem auto 0 auto;
  min-height: 16rem;
}

.bulletpoints {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 2rem 3rem 2rem;
}
.bulletpoints > h1 {
  margin: 0;
}
.bulletpoints .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
}
.bulletpoints img {
  height: 2rem;
  width: 2rem;
}
.bulletpoints .point {
  width: 85%;
  text-align: left;
  color: var(--text-color-medium);
}

section img {
  max-width: 100%;
}

section .imageheader {
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section .imageheader2 {
  width: 100%;
  background-size: cover;
  background-repeat: none;
  background-position: 0px 0px;
  height: 175px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section h1 {
  color: var(--text-color-medium);
  margin-top: 1rem;
  margin-bottom: 0;
}

section h2 {
  color: var(--text-color-medium);
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 1.25rem;
  margin-bottom: 0rem;
}

section h2.poppins {
  font-family: "Poppins", sans-serif;
}

section h3 {
  font-size: 3rem;
}

section h3.pacifico {
  font-family: "Pacifico", sans-serif;
}

section h4 {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 1.25rem;
  margin-bottom: 0rem;
}

section h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 0rem;
}

section h5.text-title {
  color: var(--text-color-medium);
}

section h6 {
  text-align: left;
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0rem;
}

section article {
  padding: 1.5rem;
}
section article > p > a {
  color: var(--default-color);
}

section article > p > a:visited {
  color: var(--accent-color);
}
section p {
  line-height: 1.5;
  margin: 1rem;
  color: var(--text-color-medium);
  text-align: center;
}

section ul {
  text-align: left;
  position: relative;
  left: 1rem;
  margin: 1rem 1rem 2rem 1rem;
  color: var(--text-color-medium);
}
section ul > li {
  margin: 1rem 0;
}

section a.more {
  display: block;
  border-radius: 25px;
  padding: 0.75rem 1.25rem;
  background-color: var(--accent-color);
  color: #fff;
  width: 10rem;
  margin: 0;
  text-decoration: none;
  text-align: center;
  hyphens: none;
}

section a.more:hover {
  background-color: var(--hover-color);
}

section .profile {
  display: flex;
  align-items: center;
  padding: 10px;
}
section .profile img {
  width: 50%;
  height: 75%;
  object-fit: cover;
  border-radius: 20px;
  color: white;
  padding: 10px;
}
section .profile .about {
  width: 50%;
  margin: 0px;
}
section .profile .about p {
  text-align: left;
  color: var(--text-color-medium);
}
section .profile .about h2 {
  text-align: left;
  margin: 1rem;
}
section .profile .text {
  margin: 0;
}
section .profile-list {
  display: flex;
  justify-content: space-evenly;
}
section .profile-list i {
  background: var(--default-color);
  color: white;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
}
section .profile-list a {
  color: var(--text-color-dark);
}

section .text {
  margin: 1rem;
  color: var(--text-color-medium);
}

section hr {
  color: var(--text-color-medium);
}

section .text p {
  text-align: justify;
  hyphens: auto;
}

section.therapy img {
  height: 200px;
  object-fit: cover;
}
section .paardencoaching-text {
  border-top: 2px solid #cccccc;
  padding-bottom: 20px;
}

.swiper-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  background: var(--default-color);
}

.testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}

.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 10px;
  height: 100%;
  width: 100%;
  color: white;
}

.slide p {
  text-align: center;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  max-height: 450px;
  overflow-y: scroll;
}

.slide .quote-icon {
  font-size: 30px;
  color: white;
}

.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide .details .name {
  font-size: 14px;
  font-weight: 600;
}

.slide .details .job {
  font-size: 12px;
  font-weight: 400;
}

.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.2s;
}

.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0);
  opacity: 0.6;
  margin: 0 2px;
}

.swiper-pagination-bullet-active {
  background-color: white;
}

footer {
  position: relative;
  width: 100%;
  color: white;
  background: var(--accent-color);
  line-height: 1.5rem;
  font-weight: 300;
}

footer h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

footer a {
  color: white;
}

footer .top {
  padding: 2rem;
}

footer ul {
  list-style-type: none;
}
footer li > a {
  text-decoration: none;
}
footer .contact {
  margin-bottom: 1rem;
}

footer .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: black;
  text-justify: center;
  padding: 0.5rem;
  margin: 0 auto;
}

.wpcf7 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 300px;
}

.wpcf7 input[name="your-subject"],
.wpcf7 textarea[name="your-message"] {
  width: 300px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"] {
  height: 1.75rem;
}

.wpcf7 input[type="submit"] {
  display: block;
  border: 0;
  border-radius: 10px;
  padding: 0.75rem 2.25rem;
  background-color: var(--accent-color);
  color: #fff;
  width: 10rem;
  margin: 2rem auto 1rem auto;
  text-decoration: none;
}

.wp-image-273 {
  height: 275px;
  object-fit: cover;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

section.paardencoaching {
  padding: 2rem;
}

section.paardencoaching li {
  position: static;
  text-align: left;
  left: 0;
}
.single-therapieen section.frontmatter article,
.over-mij section.frontmatter article,
.overige-therapieen section.frontmatter article {
  max-width: 70ch;
  margin-bottom: 2rem;
}

.panel {
  padding: 1rem;
  display: none;
  background-color: white;
  color: var(--text-color-medium);
  overflow: hidden;
}

#afspraak {
  margin: 2rem 2rem;
}

.align-left > p {
  text-align: left;
}

.accordion-container {
  /* margin: 0 auto; */
  margin: 0 2rem;
  padding: 2rem;
  max-width: 48rem;
  background: white;
}

.cw-accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid var(--default-color);
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--text-color-medium);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover {
  cursor: pointer;
  color: var(--roetsbruin);
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--roetsbruin);
  border: 1px solid var(--default-accent-hover);
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded="true"] {
  color: var(--roetsbruin);
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  margin: 2em 0;
  color: var(--text-color-medium);
}

.longtext > p {
  text-align: left;
}

@media only screen and (min-width: 720px) {
  .therapie .grid {
    grid-template-columns: 1fr 1fr;
  }
  .lower {
    max-width: 1200px;
    margin: auto;
    padding: 1.5rem;
    gap: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .content {
    max-width: 1200px;
    margin: auto;
  }

  section.hero .imageheader {
    padding-top: 10rem;
  }

  section.hero article {
    width: 50%;
  }

  section.frontmatter article {
    min-height: 20rem;
  }

  section.therapy {
    height: 300px;
    box-shadow: none;
    border-top: 2px solid #f6f6f6;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  section.therapy > .about {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 50%;
  }

  section.therapy > .about > h2 {
    /* set lang="nl" inside html tag */
    hyphens: auto;
  }

  section.therapy img {
    width: 50%;
    object-fit: cover;
    border-radius: 20px;
    color: white;
    padding: 10px;
  }

  #sidenav {
    width: 400px;
  }

  footer .top {
    margin: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "sitemap contactinfo";
  }

  footer .contact {
    grid-area: contactinfo;
    text-align: right;
  }

  footer .sitemap {
    grid-area: sitemap;
  }

  section.therapy img {
    height: 250px;
    object-fit: cover;
  }

  .accordion-container {
    padding: 4rem;
  }
}

@media only screen and (min-width: 1024px) {
  section.hero article {
    width: 50%;
    max-width: 800px;
  }

  footer .top {
    max-width: 1150px;
    margin: auto;
  }

  section.frontmatter article {
    min-height: 16rem;
  }

  .post-type-archive-therapieen .hero .imageheader {
    background-position-y: -100px;
  }
}
