@charset "UTF-8";
/* --------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Variables
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Custom
# Widgets
# Pop-up
# Content
	## Posts and pages
	## Comments
# Projects
# Posts
# Infinite scroll
# Media
	## Captions
	## Galleries
# Woocommerce
# Footer
# Bootstrap
# Font Awesome
# Splide
# Bootstrap
# WPBakery
# Contact Form 7
-------------------------------------------------------------- */
/* --------------------------------------------------------------
# Variables
-------------------------------------------------------------- */
:root {
  --font: 'neue-haas-grotesk-display', sans-serif;
  --font-tx: 'neue-haas-grotesk-text', sans-serif;
  --background: #fff;
  --primary: #34eca1;
  --secondary: #3d195b;
  --header: #fff;
  --content: var(--secondary);
  --link: var(--secondary);
  --footer_color: #fff;
  --footer_title: #fff;
  --footer_link: #fff;
  --footer_link_hover: #506a83;
  --copyright_color: #506a83;
  --copyright_link: #506a83;
  --copyright_link_hover: #506a83;
  --icon: #506a83;
  --heading: var(--secondary);
  --page_title: #fff;
  --primary_button_background_hover: #2ee097;
  --secondary_button: #fff;
  --secondary_button_background_hover: #30114a;
  --custom_button: #172e43;
  --custom_button_background: #fff;
  --custom_button_border: #d3dce5;
  --custom_button_hover: #172e43;
  --custom_button_background_hover: #d3dce5;
  --custom_button_border_hover: #d3dce5;
  --custom_button2: #172e43;
  --custom_button2_background: #fff;
  --custom_button2_border: #d3dce5;
  --custom_button2_hover: #172e43;
  --custom_button2_background_hover: #d3dce5;
  --custom_button2_border_hover: #d3dce5;
}

[data-theme=dark] {
  --background: #000;
  --header: #000;
  --content: #fff;
  --heading: #fff;
  --link: #fff;
  --secondary: #484e55;
}

/* --------------------------------------------------------------
# Normalize
-------------------------------------------------------------- */
*::after, *::before, * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin: 0;
  font-family: var(--font-tx);
  font-size: 21px;
  font-weight: 400;
  line-height: 34px;
  color: var(--content);
  text-align: left;
  background-color: var(--background);
  opacity: 1;
  transition: opacity 0.3s;
}
@media (max-width: 478px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  color: var(--link);
  text-decoration: none;
  background-color: transparent;
  transition: all 0.15s ease-in-out;
}

a:active, a:hover {
  outline: 0;
  color: var(--link);
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -8px;
}

sub {
  bottom: -4px;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 15px 30px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

button {
  overflow: visible;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 5px;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

::placeholder,
placeholder {
  color: var(--secondary);
  opacity: 1;
  font-weight: 400;
  font-family: var(--font-tx);
  font-size: 18px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search] {
  line-height: normal;
  height: 45px;
  border: none;
  border-bottom: 3px solid var(--secondary);
  background: transparent;
  border-radius: 0;
  font-size: 18px;
  padding: 12px;
  margin-bottom: 40px;
  font-family: inherit;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 5px 10px;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  border: none;
  border-bottom: 3px solid var(--secondary);
  background: transparent;
  border-radius: 0;
  font-size: 18px;
  padding: 12px;
  height: 120px;
  resize: none;
  font-family: inherit;
}

select {
  border: 1px solid #98aec3;
  border-radius: 5px;
  font-size: 16px;
  padding: 12px;
  margin-bottom: 12px;
  appearance: none;
  height: 45px;
  background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
  background-position: calc(100% - 0.75rem) center !important;
  background-color: #eaeef2;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 10px 0 0;
  width: 18px;
  height: 18px;
  border: 1px solid #aaa;
  border-radius: 2px;
  background-color: #fcfcfc;
  background-image: none;
  vertical-align: middle;
}

input[type=checkbox]::before,
input[type=checkbox]::after {
  content: none;
  display: none;
}

input[type=checkbox]:checked {
  background-color: #506a83;
  border-color: #506a83;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

input[type=checkbox]:disabled {
  color: #b8b8b8;
  cursor: auto;
  opacity: 0.6;
}

td,
th {
  padding: 0;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
}

ol,
ul {
  padding-left: 15px;
}

.primary {
  background-color: var(--primary);
}

.secondary {
  background-color: var(--secondary);
}

/* --------------------------------------------------------------
# Typography
-------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--heading);
  font-family: var(--font);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1;
}

h1 {
  font-size: 60px;
  line-height: 72px;
}

h2 {
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 1.14px;
  font-weight: 600;
}
@media (max-width: 478px) {
  h2 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0.47px;
  }
}

h3 {
  margin-bottom: 25px;
  font-size: 30px;
  line-height: 36px;
}
@media (max-width: 478px) {
  h3 {
    font-size: 30px;
  }
}

h4 {
  font-size: 20px;
  letter-spacing: 0.02px;
  line-height: 19.2px;
  margin-bottom: 20px;
}

h5 {
  font-size: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 30px;
}

/* --------------------------------------------------------------
# Elements
-------------------------------------------------------------- */
img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 15px 0;
}

table {
  margin: 0 0 25px;
  width: 100%;
}

.btn {
  display: inline-block;
  color: var(--secondary);
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: var(--primary);
  padding: 12px 30px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 50px;
  transition: all 0.15s ease-in-out;
  font-family: var(--font-tx);
  font-weight: 500;
}
.btn::first-letter {
  text-transform: uppercase;
}
.btn:hover {
  text-decoration: none;
  background-color: var(--primary_button_background_hover);
}
.btn:focus {
  outline: 0;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn.focus {
  outline: 0;
}

.btn.disabled {
  opacity: 0.65;
}

a.btn.disabled {
  pointer-events: none;
}

fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary:hover {
  background-color: var(--primary_button_background_hover);
}
.btn-primary:focus {
  opacity: 0.8;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.focus {
  opacity: 0.8;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: var(--secondary_button);
  background-color: var(--secondary);
}
.btn-secondary:hover {
  color: var(--secondary_button);
  background-color: var(--secondary_button_background_hover);
}

#toggle-admin-bar i {
  transition: 0.2s;
}
#toggle-admin-bar {
  transition: 0.2s;
  position: fixed;
  top: 32px;
  right: 0;
  background-color: #1d2327;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 0;
  border-bottom-left-radius: 15px;
  z-index: 9999;
}
#toggle-admin-bar:hover {
  background-color: #555;
}

.admin-bar {
  position: relative;
}

.btn-custom {
  color: var(--custom_button);
  background-color: var(--custom_button_background);
  border: 2px solid var(--custom_button_border);
}
.btn-custom:hover {
  color: var(--custom_button_hover);
  background-color: var(--custom_button_background_hover);
  border: 2px solid var(--custom_button_border_hover);
}

.btn-custom2 {
  color: var(--custom_button2);
  background-color: var(--custom_button2_background);
  border: 2px solid var(--custom_button2_border);
}
.btn-custom2:hover {
  color: var(--custom_button2_hover);
  background-color: var(--custom_button2_background_hover);
  border: 2px solid var(--custom_button2_border_hover);
}

.btn-container.btn-center {
  text-align: center;
}

.btn-container.btn-left {
  text-align: left;
}

.btn-container.btn-right {
  text-align: right;
}

/* --------------------------------------------------------------
# Navigation
-------------------------------------------------------------- */
@keyframes slide-down {
  0% {
    transform: translateX(0) translateY(-120%);
    transform-origin: left top;
  }
  100% {
    transform: translateY(0);
    transform-origin: left top;
  }
}
@keyframes slide-down {
  0% {
    transform: translateX(0) translateY(-120%);
    transform-origin: left top;
  }
  100% {
    transform: translateY(0);
    transform-origin: left top;
  }
}
header {
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-bottom: 0;
  background-color: var(--header);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.navbar-usps {
  padding: 10px 0;
}

.usp i {
  margin-right: 5px;
}

.navbar-wrapper {
  padding: 15px 0;
}
.navbar-wrapper > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand img {
  vertical-align: middle;
}
.navbar-brand > a:visited {
  text-decoration: none;
}
.navbar-brand > a:hover {
  text-decoration: none;
}

.navbar-contact ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.navbar-contact ul li {
  list-style: none;
  margin: 0 15px;
}
.navbar-contact ul li:last-child {
  margin-right: 0;
}
.navbar-contact ul li i {
  margin: 0 5px 0 0;
}

.navbar-toggler {
  display: box;
  display: flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  z-index: 9999999;
}
.navbar-toggler .burger-bars {
  position: relative;
  width: 30px;
  height: 2px;
  background: #000;
}
.navbar-toggler .burger-bars::before {
  top: -8px;
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  background: inherit;
  left: 0;
  transform-origin: center center;
  transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}
.navbar-toggler .burger-bars::after {
  bottom: -8px;
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  background: inherit;
  left: 0;
  transform-origin: center center;
  transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}
.navbar-toggler .burger-bars.active {
  background: transparent;
}
.navbar-toggler .burger-bars.active::before {
  transform: rotate(45deg);
  top: 0;
  width: 30px;
  background: #000;
}
.navbar-toggler .burger-bars.active::after {
  transform: rotate(-45deg);
  bottom: 0;
  width: 30px;
  background: #000;
}

.navbar-toggle-title {
  margin-left: 5px;
}

.sticky-nav {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: fixed !important;
  z-index: 1000;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition-duration: 0s;
}

.slide-down {
  transition-duration: 1s;
  transform: translateY(0);
  animation: slide-down 0.7s ease forwards;
}

/* --------------------------------------------------------------
## Hero
-------------------------------------------------------------- */
#hero {
  position: relative;
  text-align: center;
  font-size: 20px;
  background-color: var(--primary);
  background-size: cover !important;
  background-position: center;
  height: 500px;
}
#hero .hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
#hero h1 {
  color: #fff;
  margin: 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  font-size: 60px;
}
#hero p {
  color: #fff;
  margin: 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  font-size: 40px;
  margin-bottom: 50px;
}

#hero-page .hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/**
 * My Account
 */
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 20%;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 0;
  border-top: 1px solid #eee;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  list-style: none;
  border-bottom: 1px solid #eee;
  padding-bottom: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  padding: 10px 5px;
  display: block;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a::before {
  margin-right: 20px;
  opacity: 0.25;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover::before {
  opacity: 1;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a::before {
  opacity: 1;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e4";
  font-weight: 900;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f291";
  font-weight: 900;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f1c6";
  font-weight: 900;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f015";
  font-weight: 900;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f09d";
  font-weight: 900;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f007";
  font-weight: 900;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f08b";
  font-weight: 900;
}
.woocommerce-account .woocommerce-MyAccount-content {
  display: inline-block;
  float: left;
  margin-left: 5%;
  width: 75%;
}
.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-size: 25px;
  text-align: center;
  font-weight: 600;
}
.woocommerce-account p.order-again {
  text-align: right;
}
.woocommerce-account .woocommerce-EditAccountForm button[type=submit] {
  margin-top: 50px;
  display: inline-block;
}
.woocommerce-account section .woocommerce {
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-account p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide {
  display: flex;
  flex-direction: column;
}
.woocommerce-account p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide #username {
  max-width: 200px;
  padding: 10px;
  margin-bottom: 0;
}
.woocommerce-account p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide #password {
  max-width: 200px;
  padding: 10px;
}

.woocommerce-orders-table__cell-order-actions {
  display: flex;
  flex-direction: column;
}

.woocommerce-EditAccountForm label {
  min-width: 137px;
  display: inline-block;
}
.woocommerce-EditAccountForm em {
  font-size: 12px;
}

.woocommerce-MyAccount-content input {
  margin-bottom: 0;
}

body .coupon button[type=submit] {
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100% !important;
}

.woocommerce-form-login {
  width: 100%;
}
.woocommerce-form-login > .form-row {
  display: flex;
  flex-direction: column;
}

.woocommerce-form-login__submit {
  max-width: 150px;
}

#hero-page {
  position: relative;
  background-color: #eef3f3;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
  padding-top: 122px;
  padding-bottom: 90px;
}
#hero-page h1 {
  margin: 0;
  margin-bottom: 28px;
  line-height: 72px;
  letter-spacing: 1.14px;
  color: var(--heading);
}
@media (max-width: 768px) {
  #hero-page h1 {
    line-height: 30px;
    letter-spacing: 0.57px;
  }
}
@media (max-width: 768px) {
  #hero-page {
    padding-top: 70px;
    padding-bottom: 40px;
    margin-bottom: 50px;
  }
}

#hero_slider {
  display: block;
  position: relative;
  height: 505px;
}
#hero_slider .splide__track {
  height: 100%;
}
#hero_slider .splide__track li {
  display: flex;
  align-items: center;
  background-size: cover;
  height: 100%;
}
#hero_slider .splide__track li .slide-title {
  margin-left: 65px;
  position: relative;
  max-width: 642px;
}
#hero_slider .splide__track li .slide-title::before {
  content: "";
  display: block;
  width: 218px;
  height: 218px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -65px;
  border-radius: 100%;
  background-color: var(--primary);
  z-index: 1;
}
#hero_slider .splide__track li .slide-title h2 {
  font-size: 40px;
  letter-spacing: 0.76px;
  line-height: 48px;
  font-family: var(--font);
  color: #fff;
  z-index: 3;
  position: relative;
}
@media (max-width: 478px) {
  #hero_slider .splide__track li .slide-title {
    margin-left: 30px;
  }
  #hero_slider .splide__track li .slide-title::before {
    width: 142px;
    height: 142px;
    left: -40px;
  }
  #hero_slider .splide__track li .slide-title h2 {
    font-size: 30px;
    line-height: 37px;
  }
}
@media (max-width: 478px) {
  #hero_slider {
    height: 409px;
  }
}

@keyframes zoomout {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomout {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
/* --------------------------------------------------------------
## Menus
-------------------------------------------------------------- */
/* , .navbar ul.navbar-nav ul li.current_page_ancestor */
header nav {
  padding-left: 0;
  padding-right: 0;
}

.navbar ul {
  padding: 0;
  margin: 0;
}
.navbar ul.navbar-nav {
  display: flex;
  justify-content: center;
}
.navbar ul.navbar-nav li {
  list-style: none;
  position: relative;
}
.navbar ul.navbar-nav li:hover > ul {
  display: block;
}
.navbar ul.navbar-nav > li {
  display: inline-block;
  line-height: 1;
}
.navbar ul.navbar-nav > li > a {
  font-size: 18px;
  text-decoration: none;
  padding: 15px;
  color: var(--content);
  display: block;
  text-transform: uppercase;
  transition: color 0.4s ease-in-out;
}
.navbar ul.navbar-nav > li > a:hover {
  color: var(--secondary);
}
.navbar ul.navbar-nav > li:first-child a {
  padding-left: 0;
}
.navbar ul.navbar-nav > li:last-child > a {
  padding-right: 0;
}
.navbar ul.navbar-nav > li.current_page_item > a {
  color: var(--link);
}
.navbar ul.navbar-nav > li.current_page_parent > a {
  color: var(--link);
}
.navbar ul.navbar-nav > li.current_page_ancestor > a {
  color: var(--link);
}
.navbar ul.navbar-nav > li.menu-item-has-children > a > span {
  position: relative;
}
.navbar ul.navbar-nav ul {
  display: none;
  position: absolute;
  left: 0;
  background: #fff;
  min-width: 150px;
  z-index: 9;
  font-size: 14px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.navbar ul.navbar-nav ul li {
  transition: background 0.4s ease 0s;
}
.navbar ul.navbar-nav ul li:hover {
  background: #fff;
}
.navbar ul.navbar-nav ul li a {
  color: var(--heading);
  text-decoration: none;
  padding: 15px;
  display: block;
}
.navbar ul.navbar-nav ul li:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.navbar ul.navbar-nav ul li.current_page_item {
  background: #fff;
}
.navbar ul.navbar-nav ul ul {
  left: 100%;
  top: 0;
  position: absolute;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.nav-bar ul {
  padding: 0;
  margin: 0;
}

.comment-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-content.card-block {
  padding: 20px;
}

/* --------------------------------------------------------------
# Accessibility
-------------------------------------------------------------- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 0.313rem;
  line-height: normal;
  padding: 0.938rem 1.438rem 0.875rem;
  text-decoration: none;
  top: 0.313rem;
  width: auto;
  z-index: 100000;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

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

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float: right;
  margin: 5px 0 15px 15px;
}
a img.alignnone {
  margin: 5px 0 15px 15px;
}
a img.alignleft {
  float: left;
  margin: 5px 0 15px 15px;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption.alignnone {
  margin: 5px 0 15px 15px;
}

.wp-caption.alignleft {
  margin: 5px 0 15px 15px;
}

.wp-caption.alignright {
  margin: 5px 0 15px 15px;
}

/* --------------------------------------------------------------
# Content
-------------------------------------------------------------- */
.dienst {
  display: flex;
  flex-direction: column-reverse;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.15s ease-in-out;
}
.dienst:hover {
  border-color: #d3dce5;
}
.dienst:hover h2 {
  background-color: #e7ebef;
}
.dienst h2 {
  background-color: #fff;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  padding: 15px 0;
  transition: all 0.15s ease-in-out;
  font-size: 24px;
}

/* --------------------------------------------------------------
## Posts and pages
-------------------------------------------------------------- */
.fa-regular::before {
  font-weight: 900;
}

.sticky .entry-title::before {
  content: "\f08d";
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  left: -2.5rem;
  position: absolute;
  top: 0.375rem;
  font-weight: 900;
}
.sticky .entry-title {
  position: relative;
}

.single .byline {
  display: inline;
}

.group-blog .byline {
  display: inline;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.posted-on {
  color: #9a9a9a;
}

.byline {
  color: #9a9a9a;
}

.comments-link {
  color: #9a9a9a;
}

.entry-title > a {
  color: inherit;
}

.post-navigation {
  margin: 30px 0;
}
.post-navigation ul {
  margin: 0;
  padding: 0;
}
.post-navigation li a {
  color: #fff;
  text-decoration: none;
  background-color: #506a83;
  border-radius: 3px;
  cursor: pointer;
  padding: 12px;
  display: inline-block;
}
.post-navigation li a:hover {
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 12px;
  display: inline-block;
  background-color: #172e43;
}
.post-navigation li {
  display: inline;
}
.post-navigation li.active a {
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 12px;
  display: inline-block;
  background-color: #172e43;
}
.post-navigation li.disabled {
  color: #fff;
  text-decoration: none;
  background-color: #506a83;
  border-radius: 3px;
  cursor: pointer;
  padding: 12px;
  display: inline-block;
}

form.post_filter {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 25.5px;
  padding-bottom: 24px;
  margin-bottom: 50px;
  border-top: 0.5px solid #ccc;
  border-bottom: 0.5px solid #ccc;
}

.all_filters_wrapper {
  flex-wrap: nowrap;
  padding-top: 24px;
  padding-bottom: 25px;
  justify-content: space-between;
  padding-right: 30px;
  padding-left: 30px;
  margin-bottom: 50px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: none !important;
}

.post_filters_wrapper {
  position: relative;
  z-index: 10;
}
.post_filters_wrapper .btn.filter_button {
  background: linear-gradient(90deg, #1a3176, #001552);
}
.post_filters_wrapper .btn.filter_button:hover {
  background: linear-gradient(90deg, #001552, #1a3176);
}
.post_filters_wrapper .btn.filter_button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  margin-left: 0.6rem;
}
.post_filters_wrapper ul.filter_dropdown {
  position: absolute;
  min-width: 332px;
  padding: 12px 0;
  background-color: white;
  border-radius: 24px;
  box-shadow: 10px 10px 20px rgba(0, 0, 69, 0.1019607843);
}
.post_filters_wrapper ul.filter_dropdown li {
  list-style-type: none;
  padding-top: 13px;
  padding-bottom: 13px;
}
.post_filters_wrapper ul.filter_dropdown li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.post_filters_wrapper ul.filter_dropdown li .filter_option {
  position: relative;
  display: block;
  padding: 0 20px;
  width: 100%;
}

.filter_option::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  display: block;
  height: 24px;
  width: 24px;
  border: 1px solid #ccc;
  border-radius: 100px;
  transition: 0.25s ease-in-out;
}
.filter_option::before {
  content: "\f00c";
  opacity: 0;
  display: block;
  position: absolute;
  top: 56%;
  right: 2.35rem;
  transform: translateY(-50%);
  color: #ccc;
  font-family: "Font Awesome 6 Free";
  font-size: 0.8em;
  font-weight: 700;
  transition: 0.25s ease-in-out;
  z-index: 5;
}

.filter_dropdown li:hover .filter_option::after {
  border-color: var(--content);
}
.filter_dropdown li:hover .filter_option::before {
  opacity: 1;
}
.filter_dropdown li .filter_option:focus::after {
  background-color: var(--content);
  border-color: var(--content);
}
.filter_dropdown li .filter_option:focus::before {
  color: #fff;
  opacity: 1;
}

#filter-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
#filter-form > button {
  transition: 0.25s ease-in-out;
}

#text_filter_search {
  min-height: 50px;
  min-width: 336px;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 100px;
  border-color: #ccc;
  padding-left: 25px;
  font-size: 18px;
  color: var(--content);
}

.purple {
  color: #6c5ce7;
}

/* --------------------------------------------------------------
## Projects
-------------------------------------------------------------- */
#single_project_wrapper {
  position: relative;
  margin: 30px 0;
}
#single_project_wrapper .single_project_inner {
  position: relative;
  display: block;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
#single_project_wrapper .project_description {
  padding: 30px 0;
}
#single_project_wrapper .project-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
#single_project_wrapper #project_thumbnails {
  margin: 15px 0;
}

.project .project-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
  transition: all 0.15s ease-in-out;
}
.project .project-card:hover {
  border-color: #d3dce5;
}
.project .project-card:hover .project-title {
  background-color: var(--secondary);
}
.project .project-thumb {
  display: block;
  width: 100%;
  height: 250px;
}
.project .project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project .project-title {
  background-color: #fff;
  padding: 15px 0;
  text-align: center;
  transition: all 0.15s ease-in-out;
}
.project .project-title h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.project a {
  color: var(--link);
}

.all_projects {
  text-align: center;
  margin: 15px 0;
}

.splide_projects .splide__track {
  padding: 30px;
}

/* --------------------------------------------------------------
## Blog
-------------------------------------------------------------- */
.post_wrapper {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.post .post_wrapper .post_thumbnail {
  width: 100%;
  height: 300px;
  background-color: #eee;
}

.post .post_wrapper .post_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post .post_wrapper .post_meta {
  padding: 10px 30px;
  border-bottom: 1px solid #f8f8f8;
}

.post .post_meta ul {
  margin: 0;
  padding: 0;
}

.post .post_meta > ul > li {
  margin-right: 30px;
}

.post .post_meta li {
  list-style: none;
  padding-left: 0;
  display: inline-block;
}

.post .post_meta li span {
  margin: 0 7px;
}

.post .post_excerpt {
  padding: 16px 30px;
  overflow: hidden;
  font-weight: 500;
  font-family: var(--font);
}

.blog_slider .splide__track {
  padding: 30px;
}

.post_all {
  text-align: center;
  margin: 15px 0;
}

.single-post .post_thumbnail {
  width: fit-content;
  margin-top: 30px;
  margin-bottom: 10px;
  margin-inline: auto;
}

.single-post .post_thumbnail > img,
.single-artikelen .post_thumbnail > img {
  width: 100%;
  max-width: 800px;
  border-radius: 6px;
}

.single-post .post_meta {
  margin-bottom: 45px;
  text-align: center;
}

/* --------------------------------------------------------------
## Reviews
-------------------------------------------------------------- */
.review {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 600px;
  border: 2px solid #d3dce5;
  padding: 30px;
  text-align: center;
  box-shadow: 0 25px 25px -30px rgba(102, 102, 102, 0.6);
}
.review .fa-quote-left {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #d3dce5;
  font-size: 32px;
}
.review .review-rating {
  display: block;
  text-align: center;
  margin: 0 0 15px;
}
.review .review-rating::after {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  color: #f4b92d;
  letter-spacing: 5px;
}
.review .review-content {
  margin-bottom: 15px;
}

.splide_reviews .splide__track {
  padding: 15px 0 30px;
}
.splide_reviews .splide__pagination {
  bottom: -15px;
}

.whatsappbtn {
  position: fixed;
  top: 50%;
  right: 5px;
  z-index: 9999;
  background: #25d366;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsappbtn i {
  font-size: 38px;
  color: white;
}

/* --------------------------------------------------------------
## Logo Slider
-------------------------------------------------------------- */
.splide_logos li {
  padding: 15px;
  text-align: center;
}
.splide_logos .slide_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(100, 100, 100, 0.1);
  height: 120px;
}
.splide_logos .slide_logo span {
  font-weight: 600;
}
.splide_logos .splide__arrow {
  background: #506a83;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.splide_logos .splide__arrow svg {
  fill: #fff;
  width: 15px;
  height: 15px;
}
.splide_logos .splide__arrow:hover svg {
  fill: #fff;
}

/* --------------------------------------------------------------
## Pop-up
-------------------------------------------------------------- */
.sw_popup {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: visibility;
  top: 0;
  z-index: 999;
  visibility: hidden;
}
.sw_popup .sw_popup_inner {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 15px;
  flex-direction: column;
  display: flex;
  align-items: center;
  transform: scale(0);
  transition-property: all;
  transition: ease-in-out 200ms;
  background: #fff;
  text-align: center;
  line-height: 2;
  font-family: inherit;
  border-radius: 2px;
  box-shadow: 0 0 25px 2px rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.sw_popup .sw_popup_inner h2 {
  display: inline-block;
  margin-bottom: 10px;
}
.sw_popup .sw_popup_inner p:last-of-type {
  margin-bottom: 0;
}
.sw_popup .sw_popup_inner .btn {
  display: inline-block;
  margin-top: 15px;
}
.sw_popup .close_popup {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #ba211e;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
  cursor: pointer;
  transition-property: background;
  transition: ease 200ms;
}
.sw_popup .close_popup:hover {
  background: #9e1d1b;
}
.sw_popup .popup_button:hover {
  background: #9e1d1b;
}

.sw_popup.active {
  visibility: visible;
  z-index: 9999999;
}
.sw_popup.active .sw_popup_inner {
  transform: scale(1);
  opacity: 1;
}

/* --------------------------------------------------------------
# Theme Mode Toggle
-------------------------------------------------------------- */
/* --------------------------------------------------------------
## Comments
-------------------------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comment-body .pull-left {
  padding-right: 0.625rem;
}

.comment-list .comment {
  display: block;
}
.comment-list {
  padding-left: 0;
}
.comment-list .pingback {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.563rem 0;
}
.comment-list .pingback:first-child {
  border: medium none;
}

.comments-title {
  font-size: 1.125rem;
}

#toggle-admin-bar {
  display: none;
}

.logged-in #toggle-admin-bar {
  display: block;
}

/* --------------------------------------------------------------
# Infinite scroll
-------------------------------------------------------------- */
.infinite-scroll .posts-navigation {
  display: none;
}

.infinite-scroll.neverending .site-footer {
  display: none;
}

.infinity-end.neverending .site-footer {
  display: block;
}

/* --------------------------------------------------------------
# Media
-------------------------------------------------------------- */
/* Make sure embeds and iframes fit their containers. */
.page-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.entry-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed {
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

object {
  max-width: 100%;
}

/* --------------------------------------------------------------
## Captions
-------------------------------------------------------------- */
.wp-caption {
  background: #f1f1f1 none repeat scroll 0 0;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 0.313rem 0.313rem 0;
  text-align: center;
}
.wp-caption img[class*=wp-image-] {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
.wp-caption .wp-caption-text {
  font-size: 0.688rem;
  line-height: 1.063rem;
  margin: 0;
  padding: 0.625rem;
}

.wp-caption-text {
  text-align: center;
}

/* --------------------------------------------------------------
## Galleries
-------------------------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-item .gallery-columns-2 {
  max-width: 50%;
}
.gallery-item .gallery-columns-3 {
  max-width: 33.33333%;
}
.gallery-item .gallery-columns-4 {
  max-width: 25%;
}
.gallery-item .gallery-columns-5 {
  max-width: 20%;
}
.gallery-item .gallery-columns-6 {
  max-width: 16.66667%;
}
.gallery-item .gallery-columns-7 {
  max-width: 14.28571%;
}
.gallery-item .gallery-columns-8 {
  max-width: 12.5%;
}
.gallery-item .gallery-columns-9 {
  max-width: 11.11111%;
}

.gallery-caption {
  display: block;
}

/* --------------------------------------------------------------
# Plugin Compatibility
-------------------------------------------------------------- */
.wpcf7 {
  position: relative;
}
.wpcf7 p {
  margin: 0;
}
.wpcf7 .wpcf-title {
  font-size: 32px;
  color: var(--primaryheading);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
  text-align: center;
  width: 100%;
}
.wpcf7 p.wpcf-subtitle {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}
.wpcf7 .row {
  margin-left: -5px;
  margin-right: -5px;
}
.wpcf7 .col-md-6 {
  padding-left: 5px;
  padding-right: 5px;
}
.wpcf7 .col-md-12 {
  padding-left: 5px;
  padding-right: 5px;
}
.wpcf7 input[type=text] {
  width: 100%;
}
.wpcf7 input[type=email] {
  width: 100%;
}
.wpcf7 input[type=tel] {
  width: 100%;
}
.wpcf7 textarea {
  width: 100%;
}
.wpcf7 select {
  width: 100%;
}
.wpcf7 input[type=submit] {
  display: block;
  margin-left: auto;
  border: none;
}
.wpcf7 .wpcf7-spinner {
  visibility: hidden;
  display: block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 15px auto 0;
  position: relative;
}
.wpcf7 .wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.wpcf7 form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-acceptance {
  width: 100%;
  display: block;
  text-align: left;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.45;
}
.wpcf7-acceptance span.wpcf7-list-item {
  display: block;
  margin: 0;
}
.wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  line-height: 1.45;
}
.wpcf7-acceptance input[type=checkbox] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  border-color: #98aec3;
  background-color: #fff;
}
.wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #34eca1;
  border-color: #34eca1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%233d195b' stroke-width='2' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}
.wpcf7-acceptance .wpcf7-list-item-label {
  flex: 1;
  font-size: 18px;
  line-height: 1.45;
}
.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: none;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #f00;
  position: absolute;
  right: 10px;
  font-size: 75%;
}

.wpcf7-response-output {
  text-align: center;
  display: block;
}

.screen-reader-response {
  display: none;
}

.above-footer {
  padding: 75px 0;
}
.above-footer .wpcf7 {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 3px 20px rgba(100, 100, 100, 0.1);
  border-radius: 10px;
  padding: 60px 50px 15px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* --------------------------------------------------------------
## Woocommerce
-------------------------------------------------------------- */
.woocommerce-cart-form .shop_table .coupon .input-text {
  width: 8.313rem !important;
}

.variations_form .variations .value > select {
  margin-bottom: 0.625rem;
}

.woocommerce-MyAccount-content .col-1 {
  max-width: 100%;
}
.woocommerce-MyAccount-content .col-2 {
  max-width: 100%;
}

.mobile-product-cats {
  width: 200vw;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 100vw;
  overflow-y: scroll;
  list-style: none;
  transition: all 0.3s ease-in-out;
  padding: 0;
  background-color: #f3f3f3;
  z-index: 9999999;
}
.mobile-product-cats li a {
  display: block;
  border-bottom: 1px solid #efefef;
  padding: 15px;
}
.mobile-product-cats li a:hover {
  text-decoration: none;
}
.mobile-product-cats ul {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 100vw;
  z-index: 90000;
  overflow-y: scroll;
  list-style: none;
  transition: all 0.3s ease-in-out;
  padding: 0;
  background-color: #f3f3f3;
}
.mobile-product-cats ul.active {
  left: 0;
}
.mobile-product-cats .has-children a::after {
  content: "\f054";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  right: 15px;
  font-weight: 600;
  left: 95vw;
}

.mobile-product-cats.fixed {
  padding-top: 55px;
}
.mobile-product-cats.fixed .children-cats {
  padding-top: 55px;
}
.mobile-product-cats.fixed .menu-action {
  top: 0;
  position: fixed;
  z-index: 999999999;
}

.mobile-product-cats.active {
  left: 0;
}

.mobile-product-cats.push {
  left: -100vw;
}

a.mobile-product-cats-btn {
  display: block;
  text-align: center;
  text-transform: uppercase;
  border-radius: 15px;
  background-color: var(--primary);
  color: #fff !important;
  font-size: 14px;
  padding: 15px;
  margin-bottom: 30px;
  cursor: pointer;
}

.menu-action {
  display: block;
  width: 100%;
  background-color: var(--primary);
  font-size: 24px;
  line-height: 50px;
  padding: 0 15px;
  cursor: pointer;
  color: #fff;
}
.menu-action i {
  color: #fff;
}
.menu-action .title {
  color: #fff;
  font-size: 14px;
  line-height: 50px;
  padding: 0 25px;
  position: relative;
  top: -3px;
}

.product-categories {
  padding: 0;
  list-style: none;
}
.product-categories .cat-item:not(.current-cat):not(.current-cat-parent) .children {
  display: none;
}
.product-categories a {
  color: rgb(128, 128, 128);
}
.product-categories a:hover {
  color: #ff6000;
  text-decoration: none;
}
.product-categories > li > a {
  font-size: 1.1rem;
}
.product-categories ul.children {
  margin: 15px 0;
  list-style: none;
  border-left: 1.7px solid #ff6000;
  padding-left: 15px;
  max-height: 400px;
  overflow-y: scroll;
  position: relative;
}
.product-categories .cat-parent {
  position: relative;
}
.product-categories .cat-parent > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 10px;
  color: #a1a1a1;
  font-size: 12px;
  position: absolute;
  right: 15px;
  top: 10px;
}
.product-categories .current-cat.cat-parent::after {
  content: " ";
  background: linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 100%);
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  pointer-events: none;
  transition: height 0.1s ease-in-out;
}
.product-categories .current-cat.cat-parent::before {
  content: " ";
  background: linear-gradient(bottom, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 100%);
  background: linear-gradient(to top, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  display: block;
  position: absolute;
  top: 48px;
  left: 0;
  height: 0;
  width: 100%;
  pointer-events: none;
  z-index: 10;
  transition: height 0.1s ease-in-out;
}
.product-categories .current-cat-parent.cat-parent::after {
  content: " ";
  background: linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 100%);
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  pointer-events: none;
  transition: height 0.1s ease-in-out;
}
.product-categories .current-cat-parent.cat-parent::before {
  content: " ";
  background: linear-gradient(bottom, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 100%);
  background: linear-gradient(to top, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  display: block;
  position: absolute;
  top: 48px;
  left: 0;
  height: 0;
  width: 100%;
  pointer-events: none;
  z-index: 10;
  transition: height 0.1s ease-in-out;
}
.product-categories .cat-parent.fade-bottom::after {
  height: 50px;
}
.product-categories .cat-parent.fade-top::before {
  height: 50px;
}
.product-categories .current-cat-parent > a {
  color: #ff6000 !important;
  font-weight: 700;
}
.product-categories .current-cat > a {
  color: #ff6000 !important;
  font-weight: 700;
}

/* --------------------------------------------------------------
## Visual Composer
-------------------------------------------------------------- */
.wpb_row.row-has-fill {
  padding: 0;
}

.row-has-fill.row-no-padding.row-o-equal-height.row-o-content-middle.row-flex .col .vc_column-inner {
  height: 100%;
}

.align-content-left-container > .column:first-child > .vc_column-inner > .wpb_wrapper {
  max-width: 605px;
  margin-left: auto;
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}

.align-content-right-container > .column:last-child > .vc_column-inner > .wpb_wrapper {
  max-width: 605px;
  margin-right: auto;
  padding-top: 50px;
  padding-left: 50px;
  padding-bottom: 50px;
}

.vc_custom_heading {
  margin-bottom: 0;
}

.wpb_text_column ul {
  padding-left: 15px;
}

.wpb_row.row-has-fill {
  padding: 0;
}

.row-has-fill.row-no-padding.row-o-equal-height.row-o-content-middle.row-flex .col .vc_column-inner {
  height: 100%;
}

.align-content-left-container > .column:first-child > .vc_column-inner > .wpb_wrapper {
  max-width: 605px;
  margin-left: auto;
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}

.align-content-right-container > .column:last-child > .vc_column-inner > .wpb_wrapper {
  max-width: 605px;
  margin-right: auto;
  padding-top: 50px;
  padding-left: 50px;
  padding-bottom: 50px;
}

.vc_custom_heading {
  margin-bottom: 0;
}

.wpb_text_column ul {
  padding-left: 15px;
}

/* --------------------------------------------------------------
# Footer
-------------------------------------------------------------- */
footer {
  background-color: var(--secondary);
  color: var(--footer_color);
}
footer .footer-widget {
  padding: 5rem 0;
}
footer .footer-title {
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
  color: var(--footer_title);
}
footer ul {
  padding: 0;
}
footer ul li {
  list-style: none;
  font-size: 16px;
  line-height: 30px;
}
footer a {
  color: var(--footer_link);
  font-size: 16px;
  line-height: 30px;
}
footer a:hover {
  color: var(--footer_link_hover);
}
footer .copyright {
  font-size: 14px;
  text-align: left;
  background-color: var(--secondary);
  color: var(--footer_color);
  padding: 10px 0;
}
footer .copyright > .container {
  display: flex;
}
footer .copyright p {
  margin: 0;
}
footer .copyright a {
  color: var(--copyright_link);
}
footer .copyright a:hover {
  color: var(--copyright_link_hover);
}

ul.contact-info-widget.vertical {
  margin-bottom: 25px;
  margin-left: 40px;
}

ul.contact-info-widget li {
  display: block;
  color: #fff;
  text-indent: 0;
}
ul.contact-info-widget li:nth-child(2) {
  margin-bottom: 20px;
}
ul.contact-info-widget li:nth-child(5) {
  margin-bottom: 20px;
}
ul.contact-info-widget li i {
  margin: 0 0 0 -40px;
  width: 30px;
  font-size: 14px;
  text-align: left;
  display: inline-block;
}
ul.contact-info-widget li span.infotxt {
  font-weight: 700;
}
ul.contact-info-widget a {
  color: var(--footer_link);
  transition: color 0.3s;
}
ul.contact-info-widget a:hover {
  color: var(--footer_link_hover);
}
ul.contact-info-widget li.info-title {
  padding-left: 0;
}

ul.sw-social-icons {
  display: flex;
}
ul.sw-social-icons li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 7px 0 0;
  background: #fff;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

/* --------------------------------------------------------------
# Media Query
-------------------------------------------------------------- */
/* --------------------------------------------------------------
## Notebook
-------------------------------------------------------------- */
@media only screen and (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
  .close_sidenav {
    display: none;
  }
  .sticky-nav .navbar-wrapper {
    padding: 15px;
  }
  .sticky-nav .navbar-wrapper .navbar-brand {
    max-width: 180px !important;
  }
  .sticky-nav .navbar-wrapper .header_contact-menu {
    display: flex;
    flex-direction: row-reverse;
    gap: 25px;
  }
  .toggle_sub_menu {
    display: none;
  }
  a.mobile-product-cats-btn {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .mobile-contact {
    display: none;
  }
}
/* --------------------------------------------------------------
## iPad horizontal
-------------------------------------------------------------- */
@media only screen and (max-width: 991px) {
  .navbar {
    display: none;
  }
  .navbar ul.navbar-nav li:hover > ul {
    display: none;
  }
  .site-header .navbar-wrapper .navbar-contact {
    display: none;
  }
  body.scrolling-off {
    overflow: hidden;
  }
  .sidenav {
    border-top: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 999999;
    top: 0;
    right: -100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: opacity 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  .sidenav .container {
    padding: 0;
  }
  .sidenav .nav-bar {
    background: #fff;
    width: 300px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 0;
    box-shadow: 30px 40px 30px 30px rgba(0, 0, 0, 0.3);
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .sidenav .nav-bar .navbar-nav {
    display: block;
    margin-top: 75px;
  }
  .sidenav ul.navbar-nav ul li a {
    color: var(--content);
    padding: 0 25px;
    font-size: 15px;
  }
  .sidenav ul.navbar-nav ul {
    display: none;
    position: relative;
    background: transparent;
    box-shadow: unset;
  }
  .sidenav ul.navbar-nav ul ul {
    display: none;
    position: relative;
    background: transparent;
    box-shadow: unset;
  }
  .sidenav ul.navbar-nav ul .toggle_sub_menu {
    height: 27px;
  }
  .sidenav ul.navbar-nav > li.menu-item-has-children > a > span::after {
    content: none;
  }
  .sidenav ul.navbar-nav ul.active {
    display: block;
  }
  .sidenav ul li {
    display: block;
    width: 100%;
    position: relative;
  }
  .sidenav ul li a {
    display: block;
    padding: 10px 15px;
  }
  .sidenav ul > li > .toggle_sub_menu.rotate i {
    transform: rotate(90deg);
  }
  .sidenav.sidenav-expanded .nav-bar {
    right: 0;
  }
  .sidenav.sidenav-expanded {
    visibility: visible;
    opacity: 1;
    right: 0;
  }
  .toggle_sub_menu {
    position: absolute;
    top: -2px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transform: rotate(270deg);
  }
  .close_sidenav {
    display: block;
    font-size: 32px;
    color: var(--link);
    text-align: right;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 15px;
    line-height: 1;
  }
  .align-content-left-container > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper {
    padding-left: 15px;
  }
  .align-content-right-container > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper {
    padding-right: 15px;
  }
}
/* --------------------------------------------------------------
## iPad
-------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  p.vc_custom_heading {
    font-size: 16px !important;
  }
  #hero {
    height: 300px;
  }
  #hero h1 {
    font-size: 32px;
  }
  #hero p {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .dienst h2 {
    font-size: 18px;
  }
  .project .project-title h3 {
    font-size: 18px;
  }
  h1 {
    font-size: 32px;
    line-height: 39px;
  }
  h2 {
    font-size: 28px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 18px;
  }
  .footer-col {
    margin-bottom: 30px;
  }
  .mobile-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
  }
  .mobile-contact ul {
    display: flex;
    justify-content: space-around;
    padding: 0;
  }
  .mobile-contact ul li {
    list-style: none;
    flex: 1;
  }
  .mobile-contact ul li:nth-child(2) {
    border-left: 1px solid var(--icon);
    border-right: 1px solid var(--icon);
  }
  .mobile-contact ul li a {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-contact ul li i {
    color: var(--icon);
  }
}
/* --------------------------------------------------------------
## Mobile
-------------------------------------------------------------- */
@media only screen and (max-width: 480px) {
  .post .post_wrapper .post_thumbnail {
    height: 150px;
  }
  .post .post_excerpt {
    height: 275px;
  }
  .above-footer {
    margin-top: 30px;
  }
  .above-footer .wpcf7 {
    padding: 30px;
  }
  .wpcf7-acceptance span.wpcf7-list-item {
    font-size: 16px;
  }
  h1 {
    font-size: 30px;
    line-height: 37px;
  }
}
/* --------------------------------------------------------------
## Font Awesome Free 6 (only regular)
-------------------------------------------------------------- */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/content/themes/io/assets/webfonts/fa-regular-400.woff2") format("woff2"), url("/content/themes/io/assets/webfonts/fa-regular-400.woff") format("woff");
}
@media (min-width: 1200px) {
  .container {
    max-width: 1252px;
  }
}

.narrow-container {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  padding: 0 15px;
}

.mobile-contact-header .btn {
  padding: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
@media (min-width: 991px) {
  .mobile-contact-header {
    display: none;
  }
}

.btn.tag {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.21px;
  padding-top: 8.5px;
  padding-bottom: 9.8px;
  padding-left: 18px;
  padding-right: 18px;
}
.btn.tag.themas {
  background-color: var(--primary);
  color: var(--secondary);
}
@media (max-width: 478px) {
  .btn.tag {
    font-size: 11px;
    line-height: 24px;
    letter-spacing: 0.17px;
    padding-top: 2px;
    padding-bottom: 2.5px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.btn.back {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.21px;
  width: fit-content;
}
.btn.back i {
  font-size: 14px;
}

.btn.share {
  padding: 11px;
  font-size: 21px;
  line-height: 1;
}
.btn.share.linkedin {
  padding-left: 13px;
  padding-right: 13px;
}

.btn-share-linkedin {
  background: transparent;
  color: var(--secondary);
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  line-height: 19.2px;
}
.btn-share-linkedin::after {
  content: "\f0e1";
  margin-left: 8px;
  padding: 8px 10px;
  background: var(--secondary);
  color: #fff;
  border-radius: 100%;
  font-family: "Font Awesome 6 Brands";
  font-size: 18px;
}
.btn-share-linkedin:hover {
  background: transparent;
}

.pt-first {
  padding-top: 54px;
}
@media (max-width: 478px) {
  .pt-first {
    padding-top: 34px;
  }
}

.pt-45 {
  padding-top: 45px;
}
@media (max-width: 478px) {
  .pt-45 {
    padding-top: 24px;
  }
}

.pb-45 {
  padding-bottom: 45px;
}
@media (max-width: 478px) {
  .pb-45 {
    padding-bottom: 24px;
  }
}

a:not(.btn) {
  font-weight: 500;
  text-decoration: underline;
}

.dep {
  position: relative;
  display: inline-block;
  width: 94px;
  height: 50px;
}
.dep::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  background-image: url(/content/uploads/Huisstijl_woord_dep_paars.svg);
  width: 94.75px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .dep {
    width: 50px;
    height: 26px;
  }
  .dep::before {
    width: 52.75px;
    height: 28px;
    bottom: -5px;
  }
}

.fa.send::before {
  content: "";
  background-image: url(/content/uploads/Icon_Send.svg);
  background-size: contain;
  display: inline-block;
  width: 19.5px;
  height: 19.5px;
}

.wpcf7-submit {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
  text-transform: none;
}

.fa-chat::before {
  content: "";
  background-image: url(/content/uploads/Icon_Chat.svg);
  background-size: contain;
  display: block;
  width: 14.21px;
  height: 14.21px;
}

.fa-chat-white::before {
  content: "";
  background-image: url(/content/uploads/Icon_Chat_Wit.svg);
  background-size: contain;
  display: block;
  width: 17.5px;
  height: 17.5px;
}

header .navbar-wrapper {
  padding-bottom: 5px;
}
header .navbar-wrapper .container {
  align-items: flex-start;
}
header .navbar-wrapper .container .navbar-brand {
  max-width: 250px;
}
@media (max-width: 478px) {
  header .navbar-wrapper .container .navbar-brand {
    max-width: 166px;
  }
}
header .navbar-wrapper .container .header_contact-menu .navbar-contact {
  margin-bottom: 5px;
}
header .navbar-wrapper .container .header_contact-menu .navbar-contact ul {
  justify-content: flex-end;
}
@media (max-width: 991px) {
  header .navbar-wrapper .container {
    align-items: center;
  }
}
@media (max-width: 991px) {
  header .navbar-wrapper {
    padding-bottom: 15px;
  }
}

#main-nav {
  visibility: visible;
}
#main-nav ul.navbar-nav li {
  position: unset;
}
#main-nav ul.navbar-nav li span {
  position: relative;
}
#main-nav ul.navbar-nav li span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--primary);
  bottom: -5px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
#main-nav ul.navbar-nav li span:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
#main-nav ul.navbar-nav li.current_page_item.active > a span::before {
  transform: scaleX(1);
}
#main-nav ul.navbar-nav li > ul.submenu {
  background-color: #fff;
  opacity: 1;
  background-image: linear-gradient(#d6cfdc 1px, transparent 1px), linear-gradient(to right, #d6cfdc 1px, #fff 1px);
  background-size: 25px 25px;
  width: 100%;
  min-height: 453px;
}
#main-nav ul.navbar-nav li > ul.submenu .mega-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 453px;
}
#main-nav ul.navbar-nav li > ul.submenu .mega-menu .mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 85px;
  margin-top: 100px;
  margin-left: 110px;
}
#main-nav ul.navbar-nav li > ul.submenu .mega-menu .mega-menu-inner > li {
  height: fit-content;
  width: fit-content;
}
#main-nav ul.navbar-nav li > ul.submenu .mega-menu .mega-menu-inner > li:hover {
  background: transparent;
}
#main-nav ul.navbar-nav li > ul.submenu .mega-menu .mega-menu-inner > li a {
  padding: 0;
  color: var(--secondary);
  font-size: 20px;
  letter-spacing: -0.04px;
  line-height: 35px;
  font-weight: 400;
}
#main-nav ul.navbar-nav li > ul.submenu .mega-menu .mega-menu-inner > li a:hover {
  font-weight: 600;
}

.sidenav .nav-bar {
  background-color: #fff;
  opacity: 1;
  background-image: linear-gradient(#eef3f3 1px, transparent 1px), linear-gradient(to right, #eef3f3 1px, #fff 1px);
  background-size: 24px 24px;
  width: 100%;
  max-width: 338px;
  padding-left: 60px;
}
.sidenav .nav-bar a.close_sidenav {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 100%;
  line-height: 1;
  font-size: 29px;
  top: 23px;
  right: 23px;
}
.sidenav .nav-bar li.menu-item-has-children {
  position: relative !important;
}
.sidenav .nav-bar li.menu-item-has-children ul.submenu {
  background-color: transparent !important;
  background-image: unset !important;
  min-height: fit-content !important;
}
.sidenav .nav-bar li.menu-item-has-children .toggle_sub_menu {
  position: absolute !important;
  right: 10px;
  top: 5px;
}
.sidenav .nav-bar li.menu-item-has-children .toggle_sub_menu::before {
  display: none;
}

.menu-link-header {
  display: flex;
  align-items: center;
  font-size: 34px;
  font-weight: 700;
  position: absolute;
  left: 28.5%;
  top: 55px;
  text-transform: lowercase;
}
.menu-link-header span {
  margin-bottom: 9px;
  margin-left: 5px;
}

.navbar .container {
  padding-right: 0;
}
.navbar .container .nav-bar {
  margin-left: auto;
  width: fit-content;
}
.navbar .container ul.navbar-nav > li > a {
  padding: 15px 25px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.31px;
  text-transform: none;
  font-weight: 400;
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: rgba(255, 255, 255, 0.807);
  width: 8px;
  height: 8px;
}
.splide__pagination__page:hover {
  background: var(--primary);
}

.splide__pagination__page.is-active {
  position: relative;
  background: white;
  width: 10px;
  height: 10px;
}

.splide__pagination__page.is-active::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  border: 1px solid black;
}

.categories_list_wrapper {
  margin-top: 26.5px;
}
.categories_list_wrapper .category-flex {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 900px;
  margin-inline: auto;
}
.categories_list_wrapper .category-flex:first-of-type {
  margin-bottom: 25px;
}
@media (max-width: 478px) {
  .categories_list_wrapper .category-flex {
    gap: 15px;
  }
}

.actuele-artikelen-row .vc_custom_heading {
  margin-bottom: 25.63px;
}
@media (max-width: 768px) {
  .actuele-artikelen-row {
    flex-direction: column;
    gap: 67px;
  }
  .actuele-artikelen-row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.actuele_artikelen_wrapper > a {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid black;
  text-decoration: none;
}
.actuele_artikelen_wrapper > a:first-child {
  padding-top: 0;
}
.actuele_artikelen_wrapper > a:last-child {
  border: none;
}
.actuele_artikelen_wrapper > a:hover h3 {
  text-decoration: underline;
}
.actuele_artikelen_wrapper .actuele_artikelen_item {
  display: flex;
  gap: 27.81px;
}
.actuele_artikelen_wrapper .actuele_artikelen_item img {
  width: 100%;
  max-width: 184px;
  height: 142px;
  object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 478px) {
  .actuele_artikelen_wrapper .actuele_artikelen_item img {
    height: 94px;
    max-width: 122px;
  }
}
.actuele_artikelen_wrapper .actuele_artikelen_item .actuele_artikelen_info .author_wrapper {
  font-size: 16px;
  font-family: var(--font);
  line-height: 19.2px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 478px) {
  .actuele_artikelen_wrapper .actuele_artikelen_item .actuele_artikelen_info .author_wrapper {
    font-size: 14px;
  }
}
.actuele_artikelen_wrapper .actuele_artikelen_item .actuele_artikelen_info h3 {
  max-width: 362px;
  margin-bottom: 0;
}
@media (min-width: 576px) and (max-width: 991px) {
  .actuele_artikelen_wrapper .actuele_artikelen_item .actuele_artikelen_info h3 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 478px) {
  .actuele_artikelen_wrapper .actuele_artikelen_item .actuele_artikelen_info h3 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 478px) {
  .actuele_artikelen_wrapper .actuele_artikelen_item {
    gap: 14.45px;
  }
}

.artikelen-row {
  padding-top: 65px;
  padding-bottom: 160px;
}

.post_wrapper.artikelen {
  box-shadow: none;
  border-radius: 3px;
  display: block;
}
.post_wrapper.artikelen a {
  text-decoration: none;
}
.post_wrapper.artikelen:hover h3 {
  text-decoration: underline;
}
.post_wrapper.artikelen .post_excerpt {
  padding-top: 5px;
  padding-left: 13px;
  padding-right: 13px;
  padding-bottom: 0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.post_wrapper.artikelen .post_excerpt .author-title span {
  font: var(--font);
  font-size: 16px;
  line-height: 19.2px;
  margin-bottom: 16px;
  font-weight: 500;
}
.post_wrapper.artikelen .post_excerpt .btn {
  margin-top: auto;
  width: fit-content;
}
.post_wrapper.artikelen .post_thumbnail {
  height: 230px;
  position: relative;
}
.post_wrapper.artikelen .post_thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
}
.post_wrapper.artikelen .post_thumbnail .article-loop-category {
  width: fit-content;
  position: absolute;
  bottom: 20px;
  right: 14px;
}

.article_hero {
  background-color: #eef3f3;
  padding: 85px 0;
}
.article_hero h1 {
  max-width: 712px;
}
.article_hero .article_hero-categories {
  display: flex;
  gap: 10px;
  margin-bottom: 33px;
  flex-wrap: wrap;
}
@media (max-width: 478px) {
  .article_hero {
    padding: 54px 0;
  }
}

.article_hero-meta,
.article_footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 70px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .article_hero-meta,
  .article_footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.author_and_read_time {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
}
.author_and_read_time img {
  width: 76px;
  height: 75px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 478px) {
  .author_and_read_time {
    font-size: 12px;
  }
  .author_and_read_time img {
    width: 51px;
    height: 50px;
  }
}

@media (max-width: 478px) {
  .article_hero-meta {
    padding-top: 27px;
  }
}

.share_buttons {
  display: flex;
  align-items: center;
}
.share_buttons > span {
  margin-right: 28px;
}
.share_buttons .share-buttons {
  display: flex;
  align-items: center;
  gap: 13px;
}
@media (max-width: 768px) {
  .share_buttons {
    width: 100%;
    justify-content: space-between;
    margin-top: 34px;
  }
}

.article_photo_description {
  text-align: right;
  font-size: 14px;
  font-family: var(--font-tx);
  line-height: 13.2px;
  letter-spacing: 0.15px;
  font-weight: 300;
}
.article_photo_description img {
  width: 16.6px;
  height: 14.93px;
  margin-right: 6px;
}

.article_footer-outro {
  border-top: 2px solid var(--primary);
  margin-top: 51px;
  padding-top: 31px;
}
.article_footer-outro strong {
  margin-bottom: 13px;
}
.article_footer-outro.page {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.article_footer-outro.page p {
  margin-bottom: 10px;
}
.article_footer-outro.page img.page_footer_image {
  border-radius: 100%;
  height: 100px;
  width: 100px;
}

.steps-paragraphs {
  margin-top: 60px;
  margin-bottom: 15px;
}

.step-p {
  position: relative;
  margin-bottom: 50px;
}
.step-p p:has(strong) {
  margin-bottom: 15px;
}

.p-1::before {
  content: "1";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-1::before {
    left: -20px;
    top: -45px;
  }
}

.p-2::before {
  content: "2";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-2::before {
    left: -20px;
    top: -45px;
  }
}

.p-3::before {
  content: "3";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-3::before {
    left: -20px;
    top: -45px;
  }
}

.p-4::before {
  content: "4";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-4::before {
    left: -20px;
    top: -45px;
  }
}

.p-5::before {
  content: "5";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-5::before {
    left: -20px;
    top: -45px;
  }
}

.p-6::before {
  content: "6";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-6::before {
    left: -20px;
    top: -45px;
  }
}

.p-7::before {
  content: "7";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-7::before {
    left: -20px;
    top: -45px;
  }
}

.p-8::before {
  content: "8";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-8::before {
    left: -20px;
    top: -45px;
  }
}

.p-9::before {
  content: "9";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-9::before {
    left: -20px;
    top: -45px;
  }
}

.p-10::before {
  content: "10";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-10::before {
    left: -20px;
    top: -45px;
  }
}

.p-11::before {
  content: "11";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-11::before {
    left: -20px;
    top: -45px;
  }
}

.p-12::before {
  content: "12";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-12::before {
    left: -20px;
    top: -45px;
  }
}

.p-13::before {
  content: "13";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-13::before {
    left: -20px;
    top: -45px;
  }
}

.p-14::before {
  content: "14";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-14::before {
    left: -20px;
    top: -45px;
  }
}

.p-15::before {
  content: "15";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-15::before {
    left: -20px;
    top: -45px;
  }
}

.p-16::before {
  content: "16";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-16::before {
    left: -20px;
    top: -45px;
  }
}

.p-17::before {
  content: "17";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-17::before {
    left: -20px;
    top: -45px;
  }
}

.p-18::before {
  content: "18";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-18::before {
    left: -20px;
    top: -45px;
  }
}

.p-19::before {
  content: "19";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-19::before {
    left: -20px;
    top: -45px;
  }
}

.p-20::before {
  content: "20";
  position: absolute;
  left: -50px;
  top: -30px;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font);
  font-weight: 600;
  z-index: -1;
}
@media (max-width: 991px) {
  .p-20::before {
    left: -20px;
    top: -45px;
  }
}

.single-post .post_thumbnail,
.single-artikelen .post_thumbnail {
  width: 100%;
  margin: 0;
}
.single-post .post_thumbnail img,
.single-artikelen .post_thumbnail img {
  max-width: unset;
  max-height: 701px;
  object-fit: cover;
  border-radius: 0;
}
.single-post .post_thumbnail.full_size img,
.single-artikelen .post_thumbnail.full_size img {
  display: block;
  margin-inline: auto;
  width: 100%;
  max-width: 600px;
  max-height: unset;
  object-fit: contain;
}
.single-post article .wpb_text_column,
.single-artikelen article .wpb_text_column {
  margin-top: 24px;
  margin-bottom: 24px;
}
.single-post .back-to-articles,
.single-artikelen .back-to-articles {
  margin-bottom: 195px;
}
@media (max-width: 768px) {
  .single-post .back-to-articles,
  .single-artikelen .back-to-articles {
    margin-bottom: 70px;
  }
}

.green_circle_block {
  background-image: url(/content/uploads/Huisstijl_Cirkel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 48px;
  margin-bottom: 48px;
  padding-top: 31px;
}
.green_circle_block h3 {
  max-width: 424px;
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
  font-size: 40px;
  line-height: 48px;
}
@media (max-width: 860px) {
  .green_circle_block h3 {
    font-size: calc(25px + 15 * (100vw - 375px) / 485);
    line-height: calc(30px + 18 * (100vw - 375px) / 485);
  }
}
@media (max-width: 375px) {
  .green_circle_block h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.green_circle_block .linkedin_share_wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  max-width: 213px;
  margin-top: 10px;
  margin-inline: auto;
  padding-top: 5px;
  font-size: 16px;
  text-align: right;
  border-top: 1px solid var(--secondary);
}
.green_circle_block .linkedin_share_wrapper a {
  padding: 4px 8px;
  margin-right: 13px;
}
.green_circle_block .linkedin_share_wrapper a i {
  font-size: 16px;
}

.notebook-wrapper {
  padding: 23px;
  background-color: #eef3f3;
  margin-top: 20px;
  margin-bottom: 60px;
}

.notebook_block {
  position: relative;
  background-color: #eef3f3;
  opacity: 1;
  background-image: linear-gradient(#d6cfdc 1px, transparent 1px), linear-gradient(to right, #d6cfdc 1px, #eef3f3 1px);
  background-size: 23px 23px;
  min-height: 460px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  padding-right: 88px;
}
@media (max-width: 860px) {
  .notebook_block {
    min-height: calc(345px + 115 * (100vw - 375px) / 485);
    padding-right: calc(40px + 48 * (100vw - 375px) / 485);
  }
}
@media (max-width: 428px) {
  .notebook_block {
    background-size: 15.8px 15.8px;
    min-height: 345px;
    padding-right: 40px;
  }
}
.notebook_block img {
  position: absolute;
  top: 40px;
  left: 45px;
  max-width: 154px;
}
@media (max-width: 860px) {
  .notebook_block img {
    max-width: calc(99px + 55 * (100vw - 375px) / 485);
  }
}
@media (max-width: 550px) {
  .notebook_block img {
    top: 10px;
    left: 10px;
  }
}
@media (max-width: 428px) {
  .notebook_block img {
    max-width: 99px;
  }
}
.notebook_block h3 {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 424px;
  margin-bottom: 0;
  font-size: 40px;
  line-height: 48px;
  z-index: 1;
}
@media (max-width: 860px) {
  .notebook_block h3 {
    max-width: calc(186px + 238 * (100vw - 375px) / 485);
    font-size: calc(25px + 15 * (100vw - 375px) / 485);
    line-height: calc(30px + 18 * (100vw - 375px) / 485);
  }
}
@media (max-width: 428px) {
  .notebook_block h3 {
    max-width: 186px;
    font-size: 25px;
    line-height: 30px;
  }
}
.notebook_block::before {
  content: "";
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  max-width: 274px;
  height: 321px;
  background-image: url(/content/uploads/Huisstijl_Cirkel_Open.svg);
}
@media (max-width: 860px) {
  .notebook_block::before {
    background-size: contain;
    max-width: calc(175px + 99 * (100vw - 375px) / 485);
    height: calc(205px + 116 * (100vw - 375px) / 485);
  }
}

.notebook_row {
  padding: 23px;
  background-color: #eef3f3;
}
.notebook_row > .column {
  background-color: #eef3f3;
  opacity: 1;
  background-image: linear-gradient(#d6cfdc 1px, transparent 1px), linear-gradient(to right, #d6cfdc 1px, #eef3f3 1px);
  background-size: 23px 23px;
}

.featured_post_block {
  display: flex;
  padding-top: 30px;
  padding-bottom: 80px;
}
.featured_post_block > div {
  flex: 0 0 50%;
}
.featured_post_block > div h3 {
  max-width: 424px;
  margin-bottom: 23px;
  font-size: 40px;
  line-height: 48px;
}
@media (max-width: 478px) {
  .featured_post_block > div h3 {
    font-size: 30px;
    line-height: 37px;
  }
}
.featured_post_block > div .post_excerpt {
  max-width: 530px;
  margin-top: 23.38px;
}
.featured_post_block > div .author_wrapper {
  margin-top: 28px;
}
.featured_post_block > div .share_buttons {
  display: none;
}
.featured_post_block .featured_post_thumbnail {
  width: 100%;
  max-width: 606px;
}
.featured_post_block .featured_post_thumbnail > img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .featured_post_block .featured_post_thumbnail {
    margin-top: 28px;
  }
}
.featured_post_block .post_categories {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 1250px) {
  .featured_post_block .post_categories {
    flex-wrap: wrap;
  }
}
.featured_post_block .post_categories a {
  min-width: fit-content;
}
@media (max-width: 991px) {
  .featured_post_block {
    flex-direction: column;
    padding-top: 0;
  }
}
.featured_post_block.image-left {
  padding-top: 86px;
}
.featured_post_block.image-left .post_categories {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 1250px) {
  .featured_post_block.image-left .post_categories {
    flex-wrap: wrap;
  }
}
.featured_post_block.image-left .post_categories a {
  min-width: fit-content;
}
@media (min-width: 991px) {
  .featured_post_block.image-left .featured_post_details {
    padding-left: 106px;
  }
}

body.tax-casecard-cat {
  background: #eef3f3;
}

body.post-type-archive-casecards {
  background: #eef3f3;
}

body.single-casecards {
  background: #eef3f3;
}

article.casecards {
  padding-top: 123px;
  padding-bottom: 160px;
}

#override .categories-dropdown-wrapper .btn.categories-dropdown {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0.2px;
  max-width: fit-content;
}
@media (min-width: 768px) {
  #override .categories-dropdown-wrapper .btn.categories-dropdown {
    display: none;
  }
}
#override .categories-dropdown-wrapper .categories {
  display: none;
}
@media (min-width: 768px) {
  #override .categories-dropdown-wrapper .categories {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  #override .categories-dropdown-wrapper .categories a {
    margin-bottom: 13px;
    margin-right: 13px;
  }
}
@media (max-width: 478px) {
  #override .categories-dropdown-wrapper .categories a {
    font-size: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 10px;
    margin-right: 8px;
  }
}

#override .categories-dropdown-wrapper.all-articles-page {
  padding-top: 120px;
}
#override .categories-dropdown-wrapper.all-articles-page .btn.categories-dropdown {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0.2px;
  max-width: fit-content;
}
#override .categories-dropdown-wrapper.all-articles-page .categories {
  display: none;
  margin-top: 22px;
}
#override .categories-dropdown-wrapper.all-articles-page .categories a {
  margin-bottom: 13px;
  margin-right: 13px;
}
@media (max-width: 478px) {
  #override .categories-dropdown-wrapper.all-articles-page .categories a {
    font-size: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 10px;
    margin-right: 8px;
  }
}
@media (max-width: 768px) {
  #override .categories-dropdown-wrapper.all-articles-page {
    padding-top: 70px;
  }
}

#hero-page {
  padding: 0;
}
#hero-page .archive-intro-text {
  max-width: 815px;
}
#hero-page .categories {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 60px;
}
#hero-page .categories .btn {
  font-size: 16px;
  letter-spacing: 0.24px;
  line-height: 24px;
  padding-left: 16px;
  padding-right: 16px;
  min-width: fit-content;
}
#hero-page .categories .btn.active {
  background-color: var(--secondary);
  color: #fff;
}
#hero-page.thema-oplossingen {
  background-color: #eef3f3;
}
#hero-page .thema-oplossingen-hero_inner,
#hero-page .page-hero_inner {
  display: flex;
  gap: 94px;
  padding-top: 115px;
  padding-bottom: 75px;
}
#hero-page .thema-oplossingen-hero_inner .post_thumbnail,
#hero-page .page-hero_inner .post_thumbnail {
  flex: 0 0 40%;
}
#hero-page .thema-oplossingen-hero_inner .archive-intro-text,
#hero-page .page-hero_inner .archive-intro-text {
  flex: 0 0 55%;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 75px;
}
@media (max-width: 1210px) {
  #hero-page .thema-oplossingen-hero_inner,
  #hero-page .page-hero_inner {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  #hero-page .thema-oplossingen-hero_inner,
  #hero-page .page-hero_inner {
    gap: 5px;
    flex-direction: column-reverse;
    padding-top: 70px;
  }
  #hero-page .thema-oplossingen-hero_inner .post_thumbnail,
  #hero-page .page-hero_inner .post_thumbnail {
    flex: 0 0 100%;
  }
  #hero-page .thema-oplossingen-hero_inner .archive-intro-text,
  #hero-page .page-hero_inner .archive-intro-text {
    flex: 0 0 100%;
    margin-bottom: 0;
    line-height: 23px;
  }
}
#hero-page .hero-page_inner {
  padding-top: 115px;
  padding-bottom: 75px;
}
@media (max-width: 768px) {
  #hero-page .hero-page_inner {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .reverse-columns {
    flex-direction: column-reverse;
  }
}
.casecard-single-page {
  position: relative;
  max-width: 818px;
  margin-inline: auto;
  margin-bottom: 166px;
  padding-left: 42px;
  padding-right: 44px;
  padding-top: 70px;
  padding-bottom: 50px;
  border-radius: 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: white;
  overflow: hidden;
}
.casecard-single-page .casecard-category-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  padding-left: 42px;
  padding-top: 2px;
  padding-bottom: 8px;
}
.casecard-single-page .casecard-category-wrapper a {
  color: var(--secondary);
  font-family: var(--font-tx);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.24px;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width: 478px) {
  .casecard-single-page .casecard-category-wrapper {
    padding-left: 14px;
    padding-top: 10px;
  }
}
.casecard-single-page h1 {
  font-size: 40px;
  line-height: 52px;
}
@media (max-width: 478px) {
  .casecard-single-page h1 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0.47px;
  }
}
.casecard-single-page .post_thumbnail img {
  width: 100%;
  max-height: 324px;
  object-fit: cover;
}
@media (max-width: 478px) {
  .casecard-single-page {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.casecard-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}
.casecard-footer p {
  font-size: 16px;
  letter-spacing: 0.26px;
  line-height: 19.2px;
  margin-bottom: 0;
  font-weight: 900;
}
@media (max-width: 991px) {
  .casecard-footer {
    flex-wrap: wrap;
    gap: 21px;
  }
}

.casecard_footer_buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.casecard_footer_buttons .share_buttons {
  width: fit-content;
}
.casecard_footer_buttons .share_buttons > a {
  width: 40px;
  height: 40px;
}

.printfriendly,
.btn-tooltip-share,
.btn-print {
  width: fit-content;
  cursor: pointer;
}
.printfriendly a,
.btn-tooltip-share a,
.btn-print a {
  background: var(--primary);
  width: 57px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.btn-tooltip-share img {
  width: 24.74px;
  height: 28.28px;
}

.btn-tooltip-share {
  position: relative;
}
.btn-tooltip-share .share_buttons {
  visibility: hidden;
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 10px;
  z-index: 100;
  width: fit-content;
}

.animate-share-buttons {
  visibility: visible !important;
}

@keyframes bounceInT {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.btn-print a {
  background: var(--secondary);
}

@media print {
  .noprint {
    display: none;
  }
}
.above-slider-title {
  margin-bottom: 51px;
}
@media (max-width: 478px) {
  .above-slider-title {
    text-align: center;
    margin-bottom: 34px;
  }
}

.casecards-posts {
  margin-bottom: 130px;
}

#casecard_slider .post_wrapper.casecard-wrapperino {
  height: 100%;
}

body.single-casecards #casecard_slider .post_wrapper.casecard-wrapperino {
  height: unset;
}

.post_wrapper.casecard-wrapperino {
  box-shadow: none;
  transition: 0.25s ease-in-out;
  margin-bottom: 90px;
  position: relative;
}
.post_wrapper.casecard-wrapperino:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.post_wrapper.casecard-wrapperino > a {
  height: 255px;
  display: block;
}
.post_wrapper.casecard-wrapperino .casecard-category {
  background-color: var(--primary);
  padding-left: 22px;
  padding-top: 5px;
  padding-bottom: 7px;
}
.post_wrapper.casecard-wrapperino .casecard-category a {
  font-size: 18px;
  line-height: 19.2px;
  letter-spacing: 0.02px;
  font-family: var(--font);
  font-weight: 600;
  text-decoration: none;
}
.post_wrapper.casecard-wrapperino .post_thumbnail {
  height: unset;
}
.post_wrapper.casecard-wrapperino .post_thumbnail img {
  height: 255px;
  object-fit: cover;
}
.post_wrapper.casecard-wrapperino .post_excerpt {
  height: 280px;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.11px;
  padding-left: 22.5px;
  padding-right: 14px;
  padding-bottom: 18px;
  padding-top: 16px;
  font-family: var(--font);
  background-color: #fff;
}
.post_wrapper.casecard-wrapperino .post_excerpt h4 {
  display: box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-bottom: 17px;
}
.post_wrapper.casecard-wrapperino .post_excerpt p {
  display: box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 0;
}
.post_wrapper.casecard-wrapperino .post_excerpt .casecards-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  right: 10px;
}
.post_wrapper.casecard-wrapperino .post_excerpt .casecards-buttons .btn.tag {
  padding-right: 22px;
  padding-left: 22px;
}
.post_wrapper.casecard-wrapperino .post_excerpt .casecards-buttons .btn-tooltip-share a {
  width: 35px;
  height: 35px;
}
.post_wrapper.casecard-wrapperino .post_excerpt .casecards-buttons .btn-tooltip-share a img {
  width: 15px;
  height: 17px;
}

.one h3,
.two h3,
.three h3,
.four h3 {
  position: relative;
}
.one h3::before,
.two h3::before,
.three h3::before,
.four h3::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  display: block;
  font-family: var(--font);
  font-size: 300px;
  line-height: 48px;
  letter-spacing: -25.5px;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .one h3::before,
  .two h3::before,
  .three h3::before,
  .four h3::before {
    letter-spacing: -75px;
  }
}

.three {
  margin-top: 85px;
}

.four {
  margin-top: -250px;
}

.one h3::before {
  content: "1";
}

.two h3::before {
  content: "2";
  right: 96%;
}

.three h3::before {
  content: "3";
  right: 96%;
  top: -20px;
}

.four h3::before {
  content: "4";
  right: 95%;
  top: -40px;
}

.splide__arrow {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(52, 236, 162, 0.61);
  border-radius: 100%;
  top: 47%;
}
.splide__arrow.splide__arrow--prev {
  left: -0.4em;
}
.splide__arrow.splide__arrow--next {
  right: -0.4em;
}
.splide__arrow svg {
  width: 7.21px;
  height: 13.48px;
  fill: white;
}
@media (min-width: 991px) {
  .splide__arrow {
    display: none;
  }
}

.contact-page {
  background-color: #eef3f3;
  padding-top: 115px;
  padding-bottom: 170px;
}
.contact-page h1 {
  margin-bottom: 20px;
}
@media (max-width: 478px) {
  .contact-page {
    padding-top: 65px;
  }
}

ul.contact-list li {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}
ul.contact-list li a {
  text-decoration: none;
}
ul.contact-list li a:hover {
  text-decoration: underline;
}
ul.contact-list li.phone::before {
  content: "";
  display: block;
  width: 37px;
  height: 37px;
  background-image: url(/content/uploads/Icon_Phone_Paars.svg);
  background-repeat: no-repeat;
  background-position: center;
  padding: 5px;
  background-color: var(--primary);
  border-radius: 100%;
}
ul.contact-list li.mail::before {
  content: "";
  display: block;
  width: 37px;
  height: 37px;
  background-image: url(/content/uploads/Icon_Mail_Paars.svg);
  background-repeat: no-repeat;
  background-position: center;
  padding: 5px;
  background-color: var(--primary);
  border-radius: 100%;
}

.xx {
  display: flex;
  justify-content: center;
  align-items: center;
}
.xx img {
  width: 22px;
}

.toparch img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.post-type-archive-vacatures {
  background-color: #eef3f3;
}

.rank-math-breadcrumb {
  font-size: 16px;
}
.rank-math-breadcrumb a {
  color: #3d195b;
  text-decoration: none !important;
  font-weight: 500;
}
.rank-math-breadcrumb .last {
  color: #9e8bad;
  font-weight: 500;
}

.type-vacatures h1 {
  margin-top: 50px;
}
.type-vacatures .post_thumbnail img {
  width: 100%;
  margin-top: -25px;
  margin-bottom: 35px;
}
.type-vacatures .mediumcontainer.container {
  max-width: 1030px;
}
.type-vacatures .article_hero-intro {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.type-vacatures .cap {
  text-transform: lowercase;
}
.type-vacatures .vaccy {
  display: inline-flex;
  align-items: center;
}
.type-vacatures .vaccy img {
  margin-right: 15px;
}
.type-vacatures .article_footer-meta {
  justify-content: flex-end;
  font-weight: 600;
}
.type-vacatures .post_content b {
  font-size: 30px;
  display: block;
}
.type-vacatures .post_content b:first-child {
  margin-top: 60px;
}
.type-vacatures .post_content ul {
  margin-bottom: 20px;
}
.type-vacatures .post_content ul li {
  margin-bottom: 10px;
}
.type-vacatures .post_content ul li::marker {
  color: #34eca1;
}
.type-vacatures .post_content p {
  margin-bottom: 20px;
}

.archive .vacature_filter {
  margin-top: 75px;
}

.vacature_filter {
  display: flex;
  justify-content: space-between;
}

#override .homefilter {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 125px 0 150px;
  margin-bottom: 100px;
  margin-top: 25px;
}
#override .homefilter h3 {
  color: #fff;
  font-size: 55px;
  line-height: 60px;
  text-align: center;
  width: 100%;
  margin-bottom: 100px !important;
  position: relative;
  display: block;
}
#override .homefilter::before {
  content: "";
  background: rgba(0, 0, 0, 0.2549019608);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vacature_filter select {
  background: #fff 0% 0% no-repeat padding-box;
  border-radius: 25px;
  padding: 10px 20px;
  width: 100%;
  border: none;
  max-width: 220px;
  color: #3d195b;
  font-size: 18px;
  font-weight: 600;
  background-image: url("/content/uploads/Icon_Arrow-1.svg");
  background-position-x: calc(100% - 1rem) !important;
  height: 50px;
}

.vacature_filter button {
  background-color: #34eca1;
  border-radius: 25px;
  padding: 10px 40px;
  color: #3d195b;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.vacature_filter button img {
  margin-left: 10px;
}

.vacature {
  background-color: white;
  background: #fff 0% 0% no-repeat padding-box;
  border-radius: 10px;
}
.vacature .linkbtn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 50px;
}
.vacature h4 {
  background: #34eca1 0% 0% no-repeat padding-box;
  border-radius: 10px 10px 0 0;
  letter-spacing: 0.02px;
  font-size: 18px;
  padding: 15px 20px;
  margin-bottom: 0;
}
.vacature .inner {
  padding: 25px;
}
.vacature .inner h3 {
  font-size: 20px;
  letter-spacing: 0.02px;
  margin-bottom: 10px;
}
.vacature .inner ul {
  padding: 0;
}
.vacature .inner ul li {
  font-size: 18px;
  letter-spacing: 0.11px;
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
}
.vacature .inner ul li img {
  position: absolute;
  left: 0;
}
.vacature .inner .intro {
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.11px;
  margin-top: 25px;
  display: box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

#override footer a {
  text-decoration: none;
  font-weight: 400;
}
#override footer .footer-widget {
  padding-bottom: 0;
}
#override footer .footer-widget .footer-col {
  display: flex;
  justify-content: center;
  text-decoration: none;
}
#override footer .footer-widget .footer-col.logo-footer {
  padding-left: 0;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  #override footer .footer-widget .footer-col.logo-footer {
    padding-left: 15px;
  }
}
#override footer .footer-widget .footer-col:nth-child(3) {
  display: block;
}
#override footer .footer-widget .footer-col:nth-child(3) > div {
  padding-left: 60px;
}
@media (max-width: 991px) {
  #override footer .footer-widget .footer-col:nth-child(3) > div {
    padding-left: 0;
  }
}
#override footer .footer-widget .footer-col > div {
  width: fit-content;
}
#override footer .footer-widget .footer-col img.image {
  max-width: 249px !important;
}
@media (max-width: 1199px) {
  #override footer .footer-widget .footer-col img.image {
    max-width: 176px !important;
  }
}
@media (max-width: 991px) {
  #override footer .footer-widget .footer-col.flexanje {
    display: flex;
    gap: 50px;
  }
}
@media (max-width: 991px) {
  #override footer .footer-widget .footer-col {
    justify-content: flex-start;
    padding-bottom: 40px;
  }
}
#override footer .footer-widget .footer-title {
  letter-spacing: 0.26px;
  line-height: 19.2px;
}
#override footer .footer-widget #nav_menu-5 {
  margin-bottom: 46px;
}
#override footer .footer-widget .footer-locations ul {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  #override footer .footer-widget .footer-locations {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  #override footer .footer-widget {
    padding-top: 40px;
  }
}
#override footer .copyright {
  padding-bottom: 55px;
}
#override footer .copyright .copyright-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
#override footer .copyright .copyright-flex .contact-logo-footer {
  margin-bottom: -20px;
}
#override footer .copyright .copyright-flex .left-copyright .share_buttons {
  margin-bottom: 68px;
  gap: 25px;
}
@media (max-width: 991px) {
  #override footer .copyright .copyright-flex .left-copyright .share_buttons {
    justify-content: center;
  }
}
#override footer .copyright .copyright-flex .left-copyright a {
  color: var(--footer_link);
  text-decoration: none;
  min-width: fit-content;
}
#override footer .copyright .copyright-flex .left-copyright a.share {
  color: var(--secondary);
  font-size: 28px;
}
@media (max-width: 991px) {
  #override footer .copyright .copyright-flex {
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .vacature_filter {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
  }
  .vacature_filter select {
    max-width: 45%;
  }
}
@media (max-width: 992px) {
  .toparch .row > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .toparch .col-md-7 {
    margin-bottom: 35px;
  }
  .single-vacatures .container {
    max-width: 850px;
  }
}
@media (max-width: 600px) {
  .article_hero-intro {
    flex-direction: column;
  }
  .single-vacatures .standplaats {
    margin-bottom: 10px;
  }
  .single-vacatures .type-vacatures .post_content b {
    font-size: 22px;
    line-height: 26px;
  }
  .single-vacatures .share_buttons > span {
    font-size: 12px;
  }
  .single-vacatures .article_footer-outro {
    font-size: 16px;
    line-height: 24px;
  }
  .single-vacatures .article_footer-outro strong {
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 26px;
    display: block;
  }
  .type-vacatures .post_content ul li {
    font-size: 16px;
    line-height: 24px;
  }
  .type-vacatures .post_content p {
    font-size: 16px;
    line-height: 24px;
  }
  .post-type-archive-vacatures h1 {
    margin-bottom: 15px;
  }
  #override .homefilter {
    padding: 40px 0 50px;
  }
  #override .homefilter h3 {
    font-size: 33px;
    line-height: 36px;
    margin-bottom: 25px !important;
  }
  .vacature_filter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .vacature_filter select {
    max-width: 230px;
    width: 100%;
  }
  .vacature_filter button {
    max-width: 230px;
    width: 100%;
  }
  .zoeky {
    display: none;
  }
  .post-type-archive-vacatures .artikelen-row {
    padding-top: 10px;
  }
  .post-type-archive-vacatures .vacature .inner ul li {
    font-size: 16px;
  }
  .post-type-archive-vacatures .vacature .inner h3 {
    font-size: 18px;
  }
  .post-type-archive-vacatures .vacature h4 {
    font-size: 16px;
  }
  .post-type-archive-vacatures .vacature_filter select {
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
  }
  .post-type-archive-vacatures .vacature_filter button {
    max-width: 100%;
    width: 100%;
  }
  .post-type-archive-vacatures .artikelen-row .intro {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .contact-logo-footer {
    margin-bottom: 128px !important;
    padding-left: 15px;
  }
}
.copyright-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.no_underline a {
  text-decoration: none;
}

.bold, .bold a {
  font-weight: 600;
}

.intro_rij img {
  height: calc(100% - 90px) !important;
}

body.postid-1305 .post_thumbnail {
  display: none;
}

#categories_dropdown {
  display: none;
}

#categories_dropdown.active {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

#categories_dropdown a, .thema-hero-categories-dropdown {
  font-size: 16px;
  letter-spacing: 0.24px;
  line-height: 24px;
  padding-left: 16px;
  padding-right: 16px;
  min-width: fit-content;
}

.thema-hero-categories-dropdown i {
  margin-left: 15px;
}

#override .navbar > .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

header.site-header {
  position: fixed !important;
}

#override .header-search {
  position: relative;
}

#override .nav-bar .header-search {
  margin-top: 30px;
}

#override .search-form {
  position: absolute;
  bottom: -5rem;
  left: -150px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 0;
  transition: 0.5s ease-in-out;
}

#override header .search-form {
  left: unset;
  right: -12px;
}

#override .nav-bar .search-form {
  left: -35px;
}

#override .search-form input {
  margin-bottom: 0;
  width: 250px;
  border: 3px solid var(--custom_button_border);
  background-color: var(--custom_button_border);
}

#override .search-form .btn {
  padding: 0.7rem 1rem;
  border: 1px solid var(--custom_button_border);
  margin-left: -3px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

#override .woocommerce_header_search {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/content/uploads/Icon_Search.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

#override .woocommerce_header_search.active ~ .search-form {
  width: 310px;
}

.featured_post_details .casecard-title {
  font-size: 32px;
}

.singlevac img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.singlevac {
  margin-top: -25px;
  margin-bottom: 35px;
}

.type-vacatures .post_content p {
  word-break: break-word;
}
