:root {
    --primary-text-color: #5d3f3f; /* Donkerbruin/rood voor titels */
    --secondary-text-color: #555; /* Grijs voor paragraaftekst */
    --background-color-page: #f0edea; /* Lichte, crème-achtige achtergrond van de pagina */
    --background-color-box: rgba(255, 255, 255, 0.9); /* Semi-transparant wit voor de box */
    --border-color: #ccc; /* Lichte grijze rand voor afbeelding en box */
    --button-border-color: #999; /* Grijze rand voor knop */
    --button-text-color: #555; /* Grijze tekst voor knop */
}

body {
  font-family: "Open Sans", sans-serif;
  color: #8a8a8a;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: #8a8a8a;
  transition: 0.2s ease-in;
}
a:hover {
  text-decoration: none;
  color: #8a8a8a;
}

img {
  width: 100%;
}

h1 {
  font-weight: 300;
}

h2 {
  font-weight: 200;
  font-size: 50px;
  color: #45445a;
}

h3 {
  font-size: 26px;
  font-weight: 200;
}

h4 {
  font-size: 20px;
  font-weight: 200;
}

.container {
  max-width: 1400px;
}

.container-xl {
  max-width: 1640px;
}

.bg-grey {
  background-color: #f5f6f7;
}
.bg-lightgrey {
  background-color: #f9f9f9;
}
.bg-orange {
  background-color: #ff9640;
}
.bg-brown {
  background-color: #630a0a;
}
.bg-plum {
  background-color: #ac0f55;
}
.bg-olive {
  background-color: #544941;
}
.bg-beige {
	background-color: #EFEEEB;
}
.bg-white {
	background-color: #fff;
}
.bg-darkgrey {
	background-color: #9F988E;
}
.bg-footer {
	background-color: #4F1310;
}

.theme-header__bottom-logo-wrapper a img { height: 69%; }

.theme-header__bottom-navigation ul { margin-top: 10px; }

.theme-subpage-hero-title {
  margin-bottom: 0;
}

.theme-location-map-wrapper {
  height: 450px;
}

.text-orange {
  color: #ff9640;
}
.text-start {
  text-align: start !important;
}
.text-end {
  text-align: end;
}

.quotation-icon {
    font-size: 100px;
    font-weight: 700;
    color: #4D1713;
    display: block;
    margin-bottom: -44px;
	margin-top: -20px;
}


/* THEME HEADER */

.theme-header__bottom .logo-col {
	display: flex;
	flex-direction: row;
	align-items: center;
	z-index: 9;
}
a.logo-link {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    align-items: center;
}
.theme-header__bottom-logo-wrapper {
    width: 182px; /* was 100px */
    margin-right: 22px;
}
.theme-header__bottom h3 {
    font-size: 20px;
    color: #9F2229;
    font-weight: 600;
    text-transform: uppercase;
	max-width: 300px;
	margin-bottom: 12px;
}
.theme-header__bottom .navigation-col {
	position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    right: 0;
    margin-right: 200px;
}
.theme-header__bottom-navigation ul li a {
    color: #2B2E34;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 16px;
}

/* THEME HERO */

.theme-wrapper.hero {
    padding: 20px 0;
    position: relative;
    min-height: 600px;
}

.theme-wrapper.hero .hero-section-content {
    position: relative;
    padding-top: 50px;
    margin-bottom: 180px;
}

.theme-wrapper.hero .hero-left-column {
    padding-right: 30px;
}

.theme-wrapper.hero .main-titles h1 {
    font-family: "Open Sans", sans-serif;
    font-size: 3em;
    color: #4D1713;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 5px;
    font-weight: 700;
}

.theme-wrapper.hero .main-titles h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 1.5em;
    color: #9F2229;
    margin-bottom: 20px;
    font-weight: 700;
}

.theme-wrapper.hero .main-titles p {
    font-size: 1em;
    color: var(--secondary-text-color);
    max-width: 400px;
    font-weight: 400;
}

.theme-wrapper.hero .hero-right-column {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.theme-wrapper.hero .hero-image-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.theme-wrapper.hero .text-box-overlay {
    position: absolute;
    left: 40%;
    bottom: -137px;
    width: 35%;
    background-color: var(--background-color-box);
    padding: 24px;
    border: 1px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.theme-wrapper.hero .text-box-overlay p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
	color: #4D1713;
}

.theme-wrapper.hero .text-box-overlay .learn-more-button {
    display: inline-block;
    padding: 10px 58px;
    margin: 20px auto 0;
    border: 1px solid var(--button-border-color);
    color: #4D1713;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
    float: right;
}

.theme-wrapper.hero .text-box-overlay .learn-more-button:hover {
    background-color: #4D1713;
    color: #fff;
}

.hero-image-container {
    width: 292px;
    height: 300px;
}

@media (max-width: 991.98px) {
    .theme-wrapper.hero .hero-section-content {
        padding-top: 20px;
        margin-bottom: 50px;
    }

    .theme-wrapper.hero .hero-left-column,
    .theme-wrapper.hero .hero-right-column {
        padding-right: var(--bs-gutter-x, 1.5rem);
        padding-left: var(--bs-gutter-x, 1.5rem);
        text-align: center;
    }

    .theme-wrapper.hero .main-titles {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .theme-wrapper.hero .main-titles p {
        max-width: 90%;
        margin: 0 auto;
    }

    .theme-wrapper.hero .hero-image-container {
        padding-top: 0;
        margin-bottom: 30px;
        justify-content: center;
    }

    .theme-wrapper.hero .text-box-overlay {
        position: static;
        width: 90%;
        margin: 30px auto 0;
        left: auto;
        bottom: auto;
        transform: none;
        text-align: left;
        max-width: none;
    }

    .theme-wrapper.hero .text-box-overlay .learn-more-button {
        margin: 20px auto 0;
    }
}

@media (max-width: 767.98px) {
    .theme-wrapper.hero .main-titles h1 {
        font-size: 2.5em;
    }

    .theme-wrapper.hero .main-titles h2 {
        font-size: 1.2em;
    }
}

@media (max-width: 575.98px) {
    .theme-wrapper.hero .main-titles h1 {
        font-size: 2em;
    }

    .theme-wrapper.hero .main-titles h2 {
        font-size: 1em;
    }

    .theme-wrapper.hero .text-box-overlay {
        padding: 20px;
    }
}

/* END THEME HERO */


/* THEME TILES */


.theme-tiles-content-wrapper {
    padding: 25px 30px;
    background-color: #fff;
    position: relative;
    width: 92%;
    float: right;
    margin-top: -100px;
	min-height: 236px;
}

.theme-tiles-content-row {
	padding-left: 80px;
	padding-right: 80px;
}
.theme-tiles-head-title {
    color: #491617;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
}

.theme-tiles-image-wrapper {
    width: 328px;
    height: 440px;
}

.theme-tiles-content {
    font-size: 14px;
    color: #4D1713;
    font-weight: 400;
}

.theme-tiles-button {
    position: absolute;
    display: inline-block;
    right: 8px;
    font-size: 26px;
}

.theme-tiles-button i {
	color: #000;
	margin-left: -36px;
}

a.theme-tiles-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.theme-tiles-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-tiles-title {
    font-size: 26px;
    font-weight: 700;
    color: #AA2525;
    margin-bottom: 18px;
}

/* THEME CONTENT */
.theme-wrapper.content h1 {
    font-size: 48px;
    color: #4D1713;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.theme-wrapper.content .subtitle {
	font-size: 15px;
	color: #4D1713;
	font-weight:700;
	margin-bottom: 28px;
}

.theme-wrapper.content .content {
    font-size: 15px;
    font-weight: 400;
    color: #4D1713;
}

.theme-wrapper.content .button_wrapper {
	float: right;
}

.theme-wrapper.content .button_wrapper h4 {
	font-size: 15px;
	font-weight: 700;
	color:#4D1713;
	margin-left: 28px;
	margin-bottom: 4px;
}

.theme-wrapper.content .button_wrapper h3 {
	font-size: 24px;
	font-weight: 700;
	color:#AA2525;
	margin-bottom: 20px;
}

.theme-wrapper.content .button_wrapper .button_inner_wrapper {
	display: block;
	text-align:center;
}


/* THEME EXTRA CONTENT */
.theme-wrapper.extra-content .content {
	font-size: 15px;
    font-weight: 400;
    color: #4D1713;
	margin-bottom: 30px;
}

.theme-wrapper.extra-content .content.has-box-shadow {
	background-color: #EFEEEB;
	padding: 30px 40px;
	height: 100%;
}

.theme-wrapper.extra-content .content h2 {
	font-size: 26px;
    font-weight: 700;
    color: #AA2525;
	margin-bottom: 20px;
	text-transform: uppercase;
	margin-top: 20px;
}

.theme-wrapper.extra-content .content .items ul {
	padding: 0;
	margin-left: 20px;
}

.theme-wrapper.extra-content .content .items ul li::marker {
    content: "\f00c";
    font-family: 'FontAwesome';
    font-size: 26px;
    color: #707070;
}

.theme-wrapper.extra-content .content .items ul li {
	font-size: 15px;
	font-weight:700;
	color: #4D1713;
	padding-left: 14px;
	text-transform: uppercase;
}

#gform_1 label.gfield_label.gform-field-label {
    display: none;
}

.gform-theme--foundation .gform_fields {
    display: block !important;
}

#gform_1 input,textarea {
	margin-bottom: 12px;
	border: 0;
    box-shadow: none;
    background-color: #EFEEEB;
	border-radius: 0;
}

input#gform_submit_button_1 {
    margin-left: auto;
    background-color: transparent;
    color: #000;
    border: 1px solid;
    padding: 0 40px;
    border-radius: 0;
}

#gform_1 .gform-footer.gform_footer.top_label {
    margin-top: 16px;
}

.gform-theme--foundation .gfield textarea.medium {
	border: 0;
    box-shadow: none;
    background-color: #EFEEEB;
	border-radius: 0;
}


/* THEME BANNER */
.theme-wrapper.theme-banner {
	padding-bottom: 0;
	position: relative;
    overflow: hidden;
}
.theme-banner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 400px;
}
.theme-banner h3 {
	font-size: 30px;
	color: #4D1713;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	margin-top: -60px;
}

.theme-banner-wrapper {
	padding: 100px;
	background-color: #DBDBDB;
	width: 100%;
	opacity: 0.79;
	height: 100%;
	position: absolute;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

/* THEME ALT HERO */

.theme-wrapper.alt-hero {
	position: relative;
	overflow: hidden;
	min-height: 80vh;
	padding: 0;
}

.theme-wrapper.alt-hero .cover-image-wrapper {
	position: absolute;
	left:0;
	top:0;
	width: 600px;
	height: 100%;
}

.theme-wrapper.alt-hero .content {
	margin-top: 200px;
}

.theme-wrapper.alt-hero .content h3 {
	color: #4D1713;
	font-size: 52px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}

.theme-wrapper.alt-hero .content span {
	color: #4D1713;
	font-size: 14px;
	font-weight: 700;
	margin-top: 12px;
	margin-bottom: 38px;
	text-transform: uppercase;
	display: block;
}

.theme-wrapper.alt-hero .content .desc {
	color: #4D1713;
	font-size: 14px;
	font-weight: 400;
}

.theme-button {
  padding: 6px 24px;
  border: 2px solid;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
}
.theme-button__dark {
  background-color: #4D1713;
  border-color: #4D1713;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.theme-button__dark:hover {
  background-color: transparent;
  color: #4D1713;
}

.theme-wrapper {
  padding: 64px 0;
}

.theme-header__top {
  padding: 12px 0;
  border: 1px solid rgba(222, 222, 222, 0.2);
  font-size: 12px;
  color: #8a8a8a;
  font-weight: 400;
}
.theme-header__top-location {
  position: relative;
}
.theme-header__top-location:before {
  font: var(--fa-font-solid);
  content: "\f3c5";
  color: #ff9640;
}
.theme-header__top-working-hours {
  position: relative;
  text-align: end;
}
.theme-header__top-working-hours:before {
  font: var(--fa-font-solid);
  content: "\f017";
  color: #ff9640;
}

.theme-header__bottom .burger-col {
	display: none;
}
.theme-header__bottom {
  padding: 24px 0;
  padding-bottom:0;
  background-color: #fff;
  z-index: 200;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s ease-in-out;
}
.theme-header__bottom-logo-wrapper a {
  display: inline-block;
  width: 100%;
  height: 80px;
  margin-left: 12px;
}
.theme-header__bottom-logo-wrapper a img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-header__bottom-navigation ul {
  display: flex;
  list-style-type: none;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.theme-header__bottom-navigation ul li {
  position: relative;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
}
.theme-header__bottom-navigation ul li:hover > a {
  color: #9F2229;
}
.theme-header__bottom-navigation ul li:hover .sub-menu {
  transform: translate(0%, 0%);
  opacity: 1;
  visibility: visible;
}
.theme-header__bottom-navigation ul li a {
  color: #2B2E34;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0;
  font-size: 15px;
}
.theme-header__bottom-navigation ul li .sub-menu {
  position: absolute;
  top: 32px;
  left: 0;
  width: 200px;
  flex-direction: column;
  background-color: #ac0f55;
  z-index: 5;
  padding: 16px 0;
  transform: translate(0%, 40%);
  transition: 0.3s ease-in;
  opacity: 0;
  visibility: hidden;
}
.theme-header__bottom-navigation ul li .sub-menu a {
  color: #fff;
  padding: 8px 12px;
  display: block;
  border-radius: 5px;
}
.theme-header__bottom-navigation ul li .sub-menu a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
.theme-header__bottom-navigation ul li.li-open > a {
  color: #ff9640;
}
.theme-header__bottom-navigation ul li.li-open .sub-menu {
  transform: translate(0%, 0%);
  opacity: 1;
  visibility: visible;
}
.theme-header__bottom-navigation ul li.current_page_item > a {
  color: #AA2525;
  font-weight:600;
}
.theme-header__bottom-button {
  text-align: end;
}

.theme-hero {
  position: relative;
  padding: 0;
}
.theme-hero-prev {
  position: absolute;
  top: 50%;
  left: 20px;
  color: #fff;
  font-size: 24px;
  z-index: 5;
}
.theme-hero-next {
  position: absolute;
  top: 50%;
  right: 20px;
  color: #fff;
  font-size: 24px;
  z-index: 5;
}
.theme-hero-slider {
  height: 630px;
}
.theme-hero-slider-slide {
  height: 630px !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 30%;
  display: flex !important;
  align-items: center;
}
.theme-hero-slider-slide-wrapper {
  padding-left: 40px;
}
.theme-hero-slider-slide-wrapper-title {
  color: #544641;
  font-size: 48px;
  transition: 0.25s ease-in;
  opacity: 0;
  transform: translate(0%, -30%);
}
.theme-hero-slider-slide-wrapper-title.slide-effect {
  opacity: 1;
  transform: translate(0%, 0%);
}
.theme-hero-slider-slide-wrapper-content {
  color: #ac0f55;
  font-size: 30px;
  transition: 0.25s ease-in;
  opacity: 0;
  transform: translate(0%, 30%);
}
.theme-hero-slider-slide-wrapper-content.slide-effect {
  opacity: 1;
  transform: translate(0%, 0%);
}
.theme-hero-slider-slide-wrapper-button {
  background-color: #ff9640;
  color: #fff;
  padding: 8px 60px;
  transition: 0.2s ease-in;
  font-size: 20px;
  font-weight: 500;
  transition: 0.25s ease-in;
  opacity: 0;
  transform: translate(0%, 50%);
}
.theme-hero-slider-slide-wrapper-button.slide-effect {
  opacity: 1;
  transform: translate(0%, 0%);
}
.theme-hero-slider-slide-wrapper-button:hover {
  color: #ff9640;
  background-color: #fff;
}

.theme-subpage-hero {
  display: flex;
  text-align: center;
}
.theme-subpage-hero .theme-button {
  margin-top: 32px;
}
.theme-subpage-hero-title {
	color: #fff;
	padding: 14px 0;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}
.theme-subpage-hero-content {
    color: #4D1713;
    font-size: 14px;
    text-align: center;
    width: 242px;
    margin: 0 auto;
}
.theme-subpage-hero-left {
  height: 500px;
  width: 50%;
  background-size: cover;
}
.theme-subpage-hero-right {
  width: 50%;
  background-color: #931755;
  padding-left: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.theme-subpage-hero-right__container {
  max-width: 670px;
}
.theme-subpage-hero-right-subtitle {
  color: #ff9640;
}
.theme-subpage-hero-right-title {
  color: #fff;
}
.theme-subpage-hero-right-content {
  color: #fff;
  padding: 22px 24px;
  border-left: 1px solid #ff9640;
  font-size: 22px;
}
.theme-subpage-hero-right-content p {
  margin: 0;
}
.theme-subpage-hero-right-link {
  background-color: #ff9640;
  color: #fff;
  padding: 8px 16px;
  display: inline-block;
  margin-top: 12px;
  border: 1px solid #ff9640;
}
.theme-subpage-hero-right-link:hover {
  background-color: transparent;
  color: #fff;
}
.theme-subpage-hero-breadcrumb {
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.theme-subpage-hero-breadcrumb a {
  color: #fff;
  transition: 0.2s ease-in;
}
.theme-subpage-hero-breadcrumb a:hover {
  opacity: 0.8;
}

.theme-subpage-hero__bottom.flex-row-reverse .theme-subpage-hero-right {
  padding-left: 25px;
  align-items: flex-end;
}

.theme-content-title {
  text-align: center;
  margin-bottom: 24px;
}
.theme-content-divider {
  position: relative;
  border: 1px solid rgba(222, 222, 222, 0.3);
  margin-bottom: 40px;
}
.theme-content-divider:after {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("https://staging.odekerkenlogopedie.wemexcloud.net/wp-content/uploads/2023/11/logokleinderlogopedie.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 22px;
}
.theme-content-wrapper {
  text-align: end;
}
.theme-content-wrapper-content {
  font-size: 15px;
  margin-bottom: 20px;
}
.theme-content-wrapper-content__large {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 40px;
}
.theme-content-wrapper-subtitle {
  color: #ff9640;
}
.theme-content-wrapper-link {
  color: #000;
}
.theme-content-wrapper-link__wrapper {
  margin-bottom: 20px;
}
.theme-content-wrapper-link__wrapper a:hover {
  color: #ff9640;
}
.theme-content-altwrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-content-image-wrapper {
  display: block;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  overflow: hidden;
}
.theme-content-image-content {
  font-style: italic;
  margin-top: 24px;
}

.theme-content-logo-title {
  text-align: center;
  margin-bottom: 60px;
}
.theme-content-logo-content {
  text-align: center;
}

.theme-double-text-title {
  text-align: center;
  font-size: 54px;
  margin-bottom: 32px;
}
.theme-double-text-subtitle {
  color: #ff9640;
  margin-bottom: 24px;
  font-size: 30px;
}

.theme-cases-archief-wrapper {
  text-align: center;
}
.theme-cases-archief-wrapper-content {
  margin-bottom: 80px;
}
.theme-cases-archief-post {
  visibility: hidden;
}
.theme-cases-archief-post-title {
  text-align: center;
  margin: 12px 0 48px 0;
  color: #45445a;
  transition: 0.2s ease-in;
  font-weight: 500;
}
.theme-cases-archief-post-title:hover {
  color: #ff9640;
}

.theme-single-case-wrapper__inner {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.theme-single-case-wrapper-info {
  display: flex;
  flex-direction: row;
  font-size: 12px;
  font-weight: 500;
  margin-top: 12px;
}
.theme-single-case-wrapper-info-speciality {
  border-right: 1px solid black;
  padding-right: 8px;
  margin-right: 8px;
}
.theme-single-case-wrapper-info-case {
  border-right: 1px solid black;
  padding-right: 8px;
  margin-right: 8px;
}
.theme-single-case-wrapper-tab {
  margin-top: 48px;
  display: inline-block;
}
.theme-single-case-wrapper-tab-tablinks {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}
.theme-single-case-wrapper-tab-tablinks:hover {
  background-color: #ddd;
}
.theme-single-case-wrapper-tab-tablinks:focus {
  outline: none;
}
.theme-single-case-wrapper-tab-tablinks.active {
  background-color: #ccc;
}
.theme-single-case-wrapper-tabcontent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 6px 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in;
  display: flex;
  flex-direction: row;
}
.theme-single-case-wrapper-tabcontent.active {
  opacity: 1;
  visibility: visible;
}
.theme-single-case-wrapper-tabcontent-image-wrapper {
  overflow: hidden;
  width: 40%;
}
.theme-single-case-wrapper-tabcontent-image-wrapper img {
  border-radius: 999px;
  height: 300px;
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-single-case-wrapper-tabcontent-content {
  width: 60%;
  padding: 0px 15px;
}
.theme-single-case-button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  background-color: #ac0f55;
  color: #fff;
}
.theme-single-case-button:hover {
  color: #ff9640;
}

.theme-services {
  color: #45445a;
}
.theme-services-title {
  color: #45445a;
}
.theme-services-button {
  display: block;
  padding: 12px 24px;
  color: #fff;
  border: 1px solid;
  transition: 0.2s ease-in;
  text-align: center;
  margin-top: 32px;
  font-weight: 500;
}
.theme-services-button.bg-orange {
  border-color: #ff9640;
}
.theme-services-button.bg-orange:hover {
  color: #ff9640;
}
.theme-services-button.bg-brown {
  border-color: #630a0a;
}
.theme-services-button.bg-brown:hover {
  color: #630a0a;
}
.theme-services-button.bg-plum {
  border-color: #ac0f55;
}
.theme-services-button.bg-plum:hover {
  color: #ac0f55;
}
.theme-services-button:hover {
  background-color: transparent;
}
.theme-services-image-wrapper {
  border-radius: 999px;
  overflow: hidden;
  width: 75%;
}
.theme-services-quote {
  background-color: #ff9640;
  padding: 40px 32px 40px 64px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  position: relative;
}
.theme-services-quote p {
  position: relative;
}
.theme-services-quote::before {
  content: "";
  background-image: url("https://staging.odekerkenlogopedie.wemexcloud.net/wp-content/uploads/2023/11/quotes-icon.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
  left: 50px;
  width: 60px;
  height: 60px;
  filter: invert(100%);
  opacity: 0.3;
}

.theme-disciplines-title {
  text-align: center;
  font-size: 50px;
}
.theme-disciplines-wrapper-card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.theme-disciplines-wrapper-card-left {
  width: 50%;
  margin: 0 60px;
}
.theme-disciplines-wrapper-card-left-title {
  margin-bottom: 32px;
  color: #45445a;
}
.theme-disciplines-wrapper-card-right {
  background-color: #ac0f55;
  padding: 24px;
  color: #fff;
  border-radius: 999px;
}
.theme-disciplines-wrapper-card-right-icon {
  width: 20px;
  height: 20px;
  text-align: center;
}
.theme-disciplines-wrapper.card-left .theme-disciplines-wrapper-card-left {
  text-align: right;
}
.theme-disciplines-wrapper.card-right .theme-disciplines-wrapper-card {
  flex-direction: row-reverse;
}

.theme-registered-title {
  text-align: center;
  margin-bottom: 24px;
}
.theme-registered-divider {
  position: relative;
  border: 1px solid rgba(222, 222, 222, 0.3);
  margin-bottom: 40px;
}
.theme-registered-divider:after {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("https://staging.odekerkenlogopedie.wemexcloud.net/wp-content/uploads/2023/11/logokleinderlogopedie.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 22px;
}
.theme-registered-subtitle {
  color: #ff9640;
  text-align: right;
}
.theme-registered-content {
  text-align: right;
}
.theme-registered-image-wrapper {
  text-align: end;
}
.theme-registered-image-wrapper img {
  width: 90%;
}

.theme-specialist {
  text-align: center;
}
.theme-specialist-title {
  margin-bottom: 32px;
}
.theme-specialist-content {
  margin-bottom: 48px;
}
.theme-specialist-wrapper {
  min-height: 650px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 48px;
}
.theme-specialist-wrapper-image-wrapper {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.theme-specialist-wrapper-title {
  margin-bottom: 8px;
}
.theme-specialist-wrapper-functions {
  color: #ff9640;
  font-size: 18px;
}
.theme-specialist-wrapper-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.theme-specialist-wrapper-buttons a {
  padding: 12px 12px;
  color: #fff;
  transition: 0.2s ease-in;
  border-radius: 8px;
  font-weight: 500;
}
.theme-specialist-wrapper-buttons-profiel {
  background-color: #ac0f55;
}
.theme-specialist-wrapper-buttons-profiel:hover {
  color: #ff9640;
}
.theme-specialist-wrapper-buttons-mail {
  background-color: #ff9640;
}
.theme-specialist-wrapper-buttons-mail:hover {
  color: #ac0f55;
}

.theme-single-specialist h4 {
  font-size: 24px;
  color: #45445a;
}
.theme-single-specialist p {
  margin: 32px 0;
}
.theme-single-specialist a:hover {
  color: #ff9640;
}
.theme-single-specialist-title {
  margin-bottom: 4px;
  color: #45445a;
}
.theme-single-specialist-functions {
  color: #ff9640;
  font-weight: 200;
  margin-bottom: 16px;
  font-size: 18px;
}
.theme-single-specialist-image-wrapper {
  overflow: hidden;
  border-radius: 999px;
  margin-bottom: 24px;
  width: 240px;
  height: 240px;
}
.theme-single-specialist-image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.theme-single-specialist-contact-locatie {
  margin-bottom: 4px;
  display: block;
}
.theme-single-specialist-contact-phone {
  margin-bottom: 16px;
  display: block;
}
.theme-single-specialist-contact-socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 16px;
  display: block;
}
.theme-single-specialist-contact-socials a {
  padding: 6px 10px;
  border-radius: 999px;
  overflow: hidden;
  background-color: #45445a;
  color: #fff;
  opacity: 0.3;
  margin-right: 8px;
}
.theme-single-specialist-contact-socials a:hover {
  opacity: 1;
  color: #fff;
}
.theme-single-specialist-contact-socials a i {
  width: 16px;
  height: 16px;
  text-align: center;
}
.theme-single-specialist .wpforms-submit {
  background-color: #ff9640 !important;
}
.theme-single-specialist .wpforms-submit:focus::after {
  display: none !important;
}

.theme-news-archive-post {
  display: block;
}
.theme-news-archive-post-title {
  color: #45445a;
  font-size: 50px;
}
.theme-news-archive-post-content {
  margin-top: 24px;
}
.theme-news-archive-post:hover-title {
  color: #ff9640;
}
.theme-news-archive-button {
  padding: 16px 32px;
  display: inline-block;
  background-color: #FF9640;
  border: 1px solid transparent;
  color: #fff;
  transition: 0.2s ease-in;
  margin: 24px 0;
}
.theme-news-archive-button:hover {
  border: 1px solid #ff9640;
  background-color: transparent;
  color: #ff9640;
}

.theme-news-wrapper-info {
  display: flex;
  flex-direction: row;
  font-size: 12px;
  font-weight: 500;
  margin-top: 12px;
}
.theme-news-wrapper-info-date {
  color: #ff9640;
  border-right: 1px solid black;
  padding-right: 8px;
  margin-right: 8px;
}
.theme-news-wrapper-info-date i {
  margin-right: 8px;
}
.theme-news-wrapper-info-author {
  border-right: 1px solid black;
  padding-right: 8px;
  margin-right: 8px;
}
.theme-news-wrapper-info-author i {
  margin-right: 8px;
}
.theme-news-wrapper-info-news a:hover {
  color: #ff9640;
}
.theme-news-wrapper-content {
  margin-top: 40px;
}
.theme-news-wrapper-content a {
  color: #ff9640;
}
.theme-news-more {
  background-color: #f5f6f7;
  padding: 16px;
}
.theme-news-more-title {
  font-size: 24px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dedede;
}
.theme-news-more-item {
  display: block;
  margin-bottom: 24px;
}
.theme-news-more-item-wrapper {
  display: flex;
  flex-direction: row;
}
.theme-news-more-item-wrapper-image-wrapper img {
  width: 150px;
}
.theme-news-more-item-wrapper-title {
  padding-left: 8px;
  font-size: 14px;
}

.theme-locations-wrapper {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-bottom: 60px;
}
.theme-locations-wrapper-title {
  color: #fff;
  padding: 120px 0;
  font-weight: 200;
  text-align: center;
  font-size: 52px;
}
.theme-locations-title {
  text-align: center;
  margin-bottom: 24px;
}
.theme-locations-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.theme-locations-card {
  color: #fff;
  margin: 12px 0;
  background-color: #ac0f55;
  width: 49%;
  display: flex;
}
.theme-locations-card:nth-of-type(4n + 3), .theme-locations-card:nth-of-type(4n + 3) + * {
  background-color: #ff9640;
}
.theme-locations-card-left {
  width: 50%;
}
.theme-locations-card-left a {
  display: none;
}
.theme-locations-card-right {
  width: 50%;
  padding: 48px 20px;
}
.theme-locations-card-right-name {
  font-size: 24px;
}
.theme-locations-card-right-adres {
  font-size: 16px;
  color: #fff;
}
.theme-locations-card-right-link {
  color: #fff;
  font-size: 16px;
}
.theme-locations-card-right-link i {
  margin-right: 8px;
}
.theme-locations-card-right-link:hover {
  color: #8a8a8a;
}

.theme-reviewslider {
  background-image: url("https://staging.odekerkenlogopedie.wemexcloud.net/wp-content/uploads/2023/11/Testimonials-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
}
.theme-reviewslider-slider-slide {
  cursor: grab;
  outline: none;
}
.theme-reviewslider-slider-slide-content {
  color: #fff;
  text-align: center;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 400;
}
.theme-reviewslider-slider-slide-name {
  color: #ff9640;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 24px;
}

.theme-cta {
  background-color: #fea146;
}
.theme-cta-wrapper {
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.theme-cta-wrapper-title {
  color: #fff;
  margin-bottom: 16px;
}
.theme-cta-wrapper-content {
  margin-bottom: 40px;
}
.theme-cta-wrapper-button {
  padding: 16px 32px;
  background-color: #FF9640;
  border: 1px solid transparent;
  color: #fff;
  transition: 0.2s ease-in;
}
.theme-cta-wrapper-button:hover {
  border: 1px solid #ff9640;
  background-color: transparent;
  color: #ac0f55;
}

.theme-appointment {
  background-color: #ff9640;
  text-align: center;
}
.theme-appointment-title {
  color: #fff;
}
.theme-appointment-content {
  color: #fff;
  font-size: 14px;
}

.theme-contact {
  text-align: center;
  color: #fff;
}
.theme-contact-title {
  font-size: 52px;
}
.theme-contact-content a {
  color: #ff9640;
  transition: 0.2s ease-in;
}
.theme-contact-content a:hover {
  color: #8a8a8a;
}
.theme-contact-form {
  text-align: left;
}
.theme-contact-form .spacer {
  display: none !important;
}
.theme-contact-form .gform_submission_error {
  color: #ff9640 !important;
}
.theme-contact-form .gform_validation_error_link {
  color: #ff9640 !important;
}
.theme-contact-form .gfield_label {
  color: #ccc !important;
  font-weight: 500 !important;
}
.theme-contact-form .gfield_required {
  color: #ff9640 !important;
}
.theme-contact-form .validation_message {
  color: #ff9640 !important;
}
.theme-contact-form .gform_button {
  background-color: #ff9640 !important;
  font-weight: 500 !important;
  padding: 12px 10px !important;
}
.theme-contact.bg-orange .theme-contact-content a {
  color: #ac0f55;
}
.theme-contact.bg-orange .theme-contact-content a:hover {
  color: #8a8a8a;
}
.theme-contact.bg-orange .gform_submission_error {
  color: #ac0f55 !important;
}
.theme-contact.bg-orange .gform_validation_error_link {
  color: #ac0f55 !important;
}
.theme-contact.bg-orange .gfield_label {
  color: #fff !important;
}
.theme-contact.bg-orange .gfield_required {
  color: #ac0f55 !important;
}
.theme-contact.bg-orange .validation_message {
  color: #ac0f55 !important;
}
.theme-contact.bg-orange .gform_button {
  background-color: #ac0f55 !important;
}

.theme-footer {
	
}
.theme-footer h3 {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 50px;
}
.theme-footer-logo-wrapper-col {
    display: flex;
	flex-direction: row;
	align-items: center;
}
.theme-footer-logo-wrapper {
	width: 100px;
    overflow: hidden;
    height: 100%;
    display: flex;
}
.theme-footer-logo-wrapper a {
  display: inline-block;
  width: 300px;
  height: 70px;
}
.theme-footer-logo-wrapper a img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-footer-link-wrapper {
  font-weight: 400;
  margin: 10px 12px;
}
.theme-footer-link-wrapper a:first-child {
  margin-left: 0;
}
.theme-footer-link-wrapper a {
  color: #fff;
  font-size: 14px;
  transition: 0.3s ease-in-out;
  margin-left: 60px;
}
.theme-footer-link-wrapper a:hover {
  color: #fff;
  opacity: 0.7;
}
.theme-footer-link.special {
	text-transform: uppercase;
	letter-spacing: 0.96px;
}
.theme-footer-social-wrapper {
	
}
.theme-footer-social-wrapper-link {
  background-color: rgba(149, 152, 160, 0.2);
  padding: 6px 6px 2px 6px;
  margin: 0 2px;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.theme-footer-social-wrapper-link i {
  width: 20px;
  height: 20px;
}
.theme-footer-social-wrapper-link:hover {
  color: #fff;
  background-color: #45445a;
}

.theme-back-to-top {
  background-color: #4F1310;
  color: #fff;
  position: fixed;
  right: 32px;
  bottom: -60px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s ease-in;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
.theme-subpage-hero .theme-button {
	margin-top: 20px;
	margin-bottom: 14px;
}
.theme-back-to-top.visable {
  visibility: visible;
  opacity: 1;
  bottom: 16px;
}


@media screen and (max-width: 1420px) {
	.theme-wrapper.alt-hero .cover-image-wrapper {
		width: 500px;
	}
	.menu-main-menu {
		margin-top: 22px;
	}
	.theme-header__bottom-navigation ul li a {
		margin-bottom: 8px;
		font-size: 22px;
	}
	.theme-header__bottom-navigation ul {
        flex-direction: column;
    }
	.theme-header__bottom-navigation.open-nav {
        max-height: unset;
		text-align: center;
    }
	.theme-header__bottom-navigation {
        max-height: 0px;
        overflow: hidden;
        transition: 0.2s ease-in;
    }
	.theme-header__bottom-navigation {
        margin: 12px 0;
    }
	.theme-header__bottom .burger-active span:nth-of-type(1) {
        rotate: -135deg;
        top: 9.5px;
    }
	.theme-header__bottom .burger-active span:nth-of-type(4) {
        rotate: 135deg;
        bottom: 9.5px;
    }
	.theme-header__bottom .burger-active span.center {
        opacity: 0;
    }
	.theme-header__bottom-burger-trigger span.center {
		top: calc(50% - 1px);
	}
	.theme-header__bottom-burger-trigger span:first-child {
		top: 0px;
	}
	.theme-header__bottom-burger-trigger span:last-child {
        bottom: 0px;
    }
	.theme-header__bottom-burger-trigger span {
		position: absolute;
		width: 30px;
		height: 2px;
		background-color: #5D5152;
		transition-duration: 0.3s;
	}
	.theme-header__bottom .logo-col {
		order: 1;
	}
	.theme-header__bottom .burger-col {
		order: 2;
		display: flex;
		justify-content: flex-end;
	}
	.theme-header__bottom .navigation-col {
		order: 3;
		position: relative;
		top: unset;
		transform: unset;
		right: unset;
		margin-right: 0;
	}
	.theme-header__bottom-navigation {
		max-height: 0px;
		overflow: hidden;
		transition: 0.2s ease-in;
	}
	.theme-header__bottom-burger-trigger {
		position: relative;
		height: 22px;
		width: 30px;
		z-index: 15;
		cursor: pointer;
	}
}

@media screen and (max-width:1320px) {
	.theme-wrapper.alt-hero .cover-image-wrapper {
		display: none;
	}
}
@media screen and (max-width: 992px) {
.theme-tiles-head-title {
   font-size:38px;
}
.theme-wrapper.content h1 {
	font-size:38px;
}
.theme-wrapper.content .button_wrapper {
	float: unset;
	text-align:center;
	margin-top:20px;
}
.theme-wrapper.content .button_wrapper h4 {
    margin-left: 0;
}
.ml-5 {
	margin-left: 0 !important;
}
.ml-4 {
	margin-left: 0 !important;
}
.theme-tiles-content-row {
    padding-left: 20px;
    padding-right: 20px;
}
.theme-tiles-image-wrapper {
    width: auto;
    height: 378px;
}
.theme-tiles-content-wrapper {
    margin-bottom: 35px;
}
  .theme-footer-link-wrapper a {
	  margin-left:0;
	  margin-top: 6px;
	  display: block;
  }
  .hero-image-container {
	  margin: 0 auto;
  }
  .theme-location-map-wrapper {
    height: 324px;
    overflow: hidden;
  }
  .theme-header__bottom-navigation {
    margin: 12px 0;
  }
  .theme-header__bottom-navigation ul {
    justify-content: center;
  }
  .theme-header__bottom-button {
    text-align: center;
  }
  .theme-subpage-hero {
    flex-direction: column !important;
  }
  .theme-subpage-hero-left {
    width: 100%;
    height: 500px;
  }
  .theme-subpage-hero-right {
    width: 100%;
    padding: 24px 20px;
    align-items: flex-start !important;
  }
  .theme-disciplines-wrapper-card-left {
    margin: 0 30px;
  }
  .theme-news-more {
    margin-top: 48px;
  }
  .theme-single-case-wrapper-info {
    flex-direction: column;
  }
  .theme-single-case-wrapper__inner {
    min-height: auto;
  }
  .theme-single-case-wrapper-tabcontent {
    flex-direction: column;
  }
  .theme-single-case-wrapper-tabcontent.active {
    display: contents;
  }
  .theme-single-case-wrapper-tabcontent-image-wrapper {
    width: 300px;
    height: 300px;
    display: contents;
    border-radius: 999px;
    overflow: hidden;
  }
  .theme-single-case-wrapper-tabcontent-image-wrapper img {
    width: 300px;
    height: 300px;
  }
  .theme-single-case-wrapper-tabcontent-content {
    margin-top: 16px;
    width: 100%;
  }
  .theme-single-specialist .col-lg-3 {
    order: 1;
  }
  .theme-single-specialist .col-lg-5 {
    order: 3;
  }
  .theme-single-specialist .col-lg-4 {
    order: 2;
  }
  .theme-single-specialist .form-col {
    order: 4;
  }
  .theme-single-specialist-about {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .theme-registered-image-wrapper img {
    width: 50%;
  }
  .theme-disciplines-title {
    margin-bottom: 40px;
  }
  .theme-disciplines-image-wrapper {
    display: none;
  }
  .theme-locations-card {
    width: 100%;
  }
  .theme-services-image-wrapper {
    margin: 24px 0;
  }
  .theme-services-quote {
    margin: 32px 0;
  }
}
@media screen and (max-width: 568px) {
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  .theme-header__top-location {
    text-align: center;
  }
  .theme-header__top-working-hours {
    text-align: center;
  }
  .theme-header__bottom {
    background-color: #fff;
    position: relative;
  }
  .theme-header__bottom-navigation {
    max-height: 0px;
    overflow: hidden;
    transition: 0.2s ease-in;
  }
  .theme-header__bottom-navigation.open-nav {
    max-height: unset;
  }
  .theme-header__bottom-navigation ul {
    flex-direction: column;
  }
  .theme-header__bottom-navigation ul li:not(:first-child) {
    border: none;
  }
  .theme-header__bottom-navigation ul li:hover .sub-menu {
    transform: translate(0%, 0%);
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .theme-header__bottom-navigation ul li .sub-menu {
    padding-bottom: 8px;
    display: none;
  }
  .theme-header__bottom-navigation ul li .sub-menu li {
    padding: 0;
  }
  .theme-header__bottom-navigation ul li .sub-menu li a {
    padding: 0 12px;
    color: #454545;
  }
  .theme-header__bottom-navigation .menu-item-has-children .sub-menu {
    background-color: transparent;
    position: relative;
    top: 0;
    width: auto;
    padding: 0;
    transition: 0.2s ease-in;
    transform: translate(0, 0);
    overflow: hidden;
  }
  .theme-header__bottom-navigation .menu-item-has-children .sub-menu a:hover {
    color: #454545;
  }
  .theme-header__bottom-navigation .menu-item-has-children::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.2s ease-in;
  }
  .theme-header__bottom-navigation .menu-item-has-children:hover:after {
    transform: rotateZ(180deg);
  }
  .theme-header__bottom-button {
    display: none;
  }
  .theme-header__bottom .logo-col {
    order: 1;
  }
  .theme-header__bottom .navigation-col {
    order: 3;
  }
  .theme-header__bottom .burger-col {
    order: 2;
    display: flex;
    justify-content: flex-end;
  }
  .theme-header__bottom-burger-trigger {
    position: relative;
    height: 22px;
    width: 30px;
    z-index: 15;
    cursor: pointer;
  }
  .theme-header__bottom-burger-trigger span {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #5D5152;
    transition-duration: 0.3s;
  }
  .theme-header__bottom-burger-trigger span:first-child {
    top: 0px;
  }
  .theme-header__bottom-burger-trigger span.center {
    top: calc(50% - 1px);
  }
  .theme-header__bottom-burger-trigger span:last-child {
    bottom: 0px;
  }
  .theme-header__bottom .burger-active span:nth-of-type(1) {
    rotate: -135deg;
    top: 9.5px;
  }
  .theme-header__bottom .burger-active span.center {
    opacity: 0;
  }
  .theme-header__bottom .burger-active span:nth-of-type(4) {
    rotate: 135deg;
    bottom: 9.5px;
  }
  .theme-hero-slider-slide-wrapper-title {
    font-size: 32px;
  }
  .theme-hero-slider-slide-wrapper-content {
    font-size: 24px;
  }
  .theme-hero-slider-slide-wrapper-button {
    font-size: 20px;
  }
  .theme-subpage-hero-left {
    background-position: 50%;
  }
  .theme-double-text-title {
    font-size: 40px;
  }
  .theme-disciplines-title {
    font-size: 40px;
  }
  .theme-disciplines-wrapper-card-left {
    width: 100%;
    margin: 0 20px;
  }
  .theme-disciplines-wrapper.card-right {
    margin-top: 32px;
  }
  .theme-news-archive-post-title {
    font-size: 40px;
  }
  .theme-single-specialist-specialisatie {
    margin-top: 40px;
  }
  .theme-registered-image-wrapper {
    text-align: center;
  }
  .theme-registered-image-wrapper img {
    width: 80%;
  }
  .theme-footer-logo-wrapper a {
    width: auto;
  }
}/*# sourceMappingURL=style.css.map */