@charset "UTF-8";
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1527px !important;
  }
}

@media (min-width: 992px) {
  .container-fluid-left {
    margin-left: calc((100vw - 960px) / 2) !important;
    max-width: calc(100% - (100vw - 960px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1140px) / 2) !important;
    max-width: calc(100% - (100vw - 1140px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1400px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1320px) / 2) !important;
    max-width: calc(100% - (100vw - 1320px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1500px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1527px) / 2) !important;
    max-width: calc(100% - (100vw - 1527px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 768px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 720px) / 2) !important;
    max-width: calc(100% - (100vw - 720px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 960px) / 2) !important;
    max-width: calc(100% - (100vw - 960px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1140px) / 2) !important;
    max-width: calc(100% - (100vw - 1140px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1400px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1320px) / 2) !important;
    max-width: calc(100% - (100vw - 1320px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1500px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1527px) / 2) !important;
    max-width: calc(100% - (100vw - 1527px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateZ(0);
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-property: opacity, transform;
}

[data-animate^=fade].animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-animate^=zoom].animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-animate=fade-up] {
  transform: translate3d(0, 6px, 0);
  opacity: 0;
}

[data-animate=zoom-in] {
  transform: scale(0.98);
  opacity: 0;
}

[data-animate-delay="50"].animate {
  transition-delay: 50ms;
}

[data-animate-delay="100"].animate {
  transition-delay: 100ms;
}

[data-animate-delay="150"].animate {
  transition-delay: 150ms;
}

[data-animate-delay="200"].animate {
  transition-delay: 200ms;
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.slide-left-on-scroll {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-left-on-scroll.in-view {
  opacity: 1;
  transform: translateX(0);
}

.slide-right-on-scroll {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-right-on-scroll.in-view {
  opacity: 1;
  transform: translateX(0);
}

.scale-up-on-scroll {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scale-up-on-scroll.in-view {
  opacity: 1;
  transform: scale(1);
}

.rotate-in-on-scroll {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rotate-in-on-scroll.in-view {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.bounce-in-on-scroll {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.bounce-in-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.flip-in-on-scroll {
  opacity: 0;
  transform: perspective(1000px) rotateY(-90deg);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.flip-in-on-scroll.in-view {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg);
}

.typewriter-on-scroll {
  opacity: 0;
}
.typewriter-on-scroll.in-view {
  opacity: 1;
  animation: typewriter 2s steps(40, end);
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.delayed-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s, transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s;
}
.delayed-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stagger-on-scroll .stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-on-scroll .stagger-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.slide-fade-up-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-fade-up-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.elastic-on-scroll {
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.elastic-on-scroll.in-view {
  opacity: 1;
  transform: scale(1);
}

.blur-focus-on-scroll {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(20px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}
.blur-focus-on-scroll.in-view {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.fade-up-quick {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up-quick.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .fade-in-on-scroll,
  .slide-left-on-scroll,
  .slide-right-on-scroll {
    transform: translateY(15px);
  }
  .fade-in-on-scroll.in-view,
  .slide-left-on-scroll.in-view,
  .slide-right-on-scroll.in-view {
    transform: translateY(0);
  }
  .slide-left-on-scroll {
    transform: translateX(-25px);
  }
  .slide-left-on-scroll.in-view {
    transform: translateX(0);
  }
  .slide-right-on-scroll {
    transform: translateX(25px);
  }
  .slide-right-on-scroll.in-view {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in-on-scroll,
  .slide-left-on-scroll,
  .slide-right-on-scroll,
  .scale-up-on-scroll,
  .rotate-in-on-scroll,
  .bounce-in-on-scroll,
  .flip-in-on-scroll,
  .delayed-on-scroll,
  .stagger-on-scroll .stagger-item,
  .slide-fade-up-on-scroll,
  .elastic-on-scroll,
  .blur-focus-on-scroll,
  .fade-up-quick {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
  .fade-in-on-scroll.in-view,
  .slide-left-on-scroll.in-view,
  .slide-right-on-scroll.in-view,
  .scale-up-on-scroll.in-view,
  .rotate-in-on-scroll.in-view,
  .bounce-in-on-scroll.in-view,
  .flip-in-on-scroll.in-view,
  .delayed-on-scroll.in-view,
  .stagger-on-scroll .stagger-item.in-view,
  .slide-fade-up-on-scroll.in-view,
  .elastic-on-scroll.in-view,
  .blur-focus-on-scroll.in-view,
  .fade-up-quick.in-view {
    opacity: 1 !important;
    transform: none !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  color: var(--title-color);
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: "avenir-next-lt-pro", sans-serif, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 22px;
    margin-bottom: 122px;
  }
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

h1,
h1 span {
  font-size: 54px;
  margin-top: 24px;
  letter-spacing: 0.5px;
}
@media (max-width: 1199px) {
  h1,
  h1 span {
    font-size: 34px;
  }
}
@media (max-width: 992px) {
  h1,
  h1 span {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  h1,
  h1 span {
    font-size: 24px;
  }
}

h2 {
  font-size: 40px;
  font-family: "gimlet-display", serif;
  font-weight: 400;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 40px;
  color: black;
  font-weight: 600;
  font-family: "liebling", sans-serif;
}
@media (max-width: 1199px) {
  h3 {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 1em;
}

p {
  -webkit-font-smoothing: antialiased;
  color: var(--paragraph-color);
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 992px) {
  p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

ul {
  -webkit-font-smoothing: antialiased;
  list-style: disc;
  font-size: 16px;
  color: var(--paragraph-color);
}
ul li {
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0.5rem;
  color: var(--paragraph-color);
}

a {
  -webkit-font-smoothing: antialiased;
  color: var(--link-color);
  font-weight: 500;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.black-text {
  color: black;
}

p {
  font-family: "liebling", sans-serif;
  font-weight: 200;
}

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

body,
html {
  padding: 0;
  margin: 0;
  font-family: "avenir-next-lt-pro", sans-serif, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333b6f;
}
picture {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.text_image {
  overflow-x: hidden;
}
.text_image .row {
  display: flex;
  align-items: stretch;
}
.text_image .row > [class*=col-] {
  display: flex;
  flex-direction: column;
}
.text_image__row {
  position: relative;
}
.text_image__row > [class*=col-]:has(.text_image__grid-container) {
  justify-content: center;
}
.text_image__divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-1%, -50%);
  z-index: 10;
  pointer-events: none;
  line-height: 0;
  font-size: 0;
}
.text_image__divider img {
  display: block;
  width: auto;
  height: auto;
}
@media (max-width: 992px) {
  .text_image__divider {
    display: none;
  }
}
.text_image.theme_2 {
  background-color: #3129b9;
}
.text_image.theme_2 h2 {
  color: #fff !important;
}
.text_image.theme_2 p {
  color: #fff !important;
}
.text_image.theme_2 a {
  color: #3129b9 !important;
  background-color: #fff !important;
}
.text_image.theme_2 a:hover {
  color: #fff !important;
  background-color: #000 !important;
}
.text_image .text_image__text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  min-height: 471px;
  padding: 40px 0;
}
.text_image .text_image__text-container h2 {
  margin: 0;
  color: #000;
  font-size: 25px;
  width: 100%;
  text-align: left;
  font-style: italic;
}
.text_image .text_image__text-container p {
  color: #000;
  line-height: 27px;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: left;
}
.text_image .text_image__text-container ul {
  list-style: none;
  padding-left: 0;
}
.text_image .text_image__text-container ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #000;
  line-height: 27px;
  font-size: 18px;
  font-family: "liebling", sans-serif;
}
.text_image .text_image__text-container ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3129b9;
  font-weight: bold;
  font-size: 20px;
}
.text_image .text_image__image-container {
  display: flex;
  flex: 1;
  min-height: 471px;
  position: relative;
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}
.text_image .text_image__image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.text_image .text_image__image-container:hover {
  box-shadow: 0 0 0 3px #21468b, 0 0 0 6px #ffffff, 0 0 0 9px #ae1c28;
}
.text_image .text_image__grid-container {
  display: flex;
  gap: 30px;
  padding: 10px;
}
@media (max-width: 992px) {
  .text_image .text_image__grid-container {
    gap: 20px;
  }
}
.text_image .text_image__grid-left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 992px) {
  .text_image .text_image__grid-left {
    gap: 20px;
  }
}
.text_image .text_image__grid-right {
  flex: 0 0 calc(60% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .text_image .text_image__grid-right {
    flex: 0 0 calc(60% - 20px);
  }
}
.text_image .text_image__grid-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}
.text_image .text_image__grid-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.text_image .text_image__grid-image:hover {
  box-shadow: 0 0 0 3px #21468b, 0 0 0 6px #ffffff, 0 0 0 9px #ae1c28;
}

.txt_block.theme_2 {
  background-color: #3129b9;
}
.txt_block.theme_2 h2 {
  color: #fff !important;
}
.txt_block.theme_2 p {
  color: #fff !important;
}
.txt_block.theme_2 a {
  color: #3129b9 !important;
  background-color: #fff !important;
}
.txt_block.theme_2 a:hover {
  color: #fff !important;
  background-color: #000 !important;
}
.txt_block a {
  color: #fff !important;
  background-color: #3129b9 !important;
}
.txt_block a:hover {
  color: #fff !important;
  background-color: #000 !important;
}
.txt_block .text-container h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  width: 100%;
  font-family: "liebling", sans-serif;
  font-weight: 700;
}
.txt_block .text-container p {
  color: #000;
  line-height: 27px;
  font-size: 18px;
  margin-bottom: 20px;
}
.txt_block .text-container ul {
  list-style: none;
  padding-left: 0;
}
.txt_block .text-container ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #000;
  line-height: 27px;
  font-size: 18px;
  font-family: "liebling", sans-serif;
}
.txt_block .text-container ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3129b9;
  font-weight: bold;
  font-size: 20px;
}
.txt_block .text-container.left {
  text-align: left;
}
.txt_block .text-container.center {
  text-align: center;
}
.txt_block .text-container.right {
  text-align: right;
}

.form_block.theme_2 {
  background-color: #3129b9;
}
.form_block.theme_2 h2 {
  color: #fff !important;
}
.form_block.theme_2 p {
  color: #fff !important;
}
.form_block.theme_2 a {
  color: #3129b9 !important;
  background-color: #fff !important;
}
.form_block.theme_2 a:hover {
  color: #fff !important;
  background-color: #000 !important;
}
.form_block__wrapper {
  padding: 50px;
  background-color: #f2f5fa;
  border-radius: 30px;
}
.form_block__content h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  width: 100%;
  font-family: "liebling", sans-serif;
  font-weight: 700;
}
.form_block__content p {
  color: #000;
  line-height: 27px;
  font-size: 18px;
  margin-bottom: 20px;
}
.form_block__content ul {
  list-style: none;
  padding-left: 0;
}
.form_block__content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #000;
  line-height: 27px;
  font-size: 18px;
  font-family: "liebling", sans-serif;
}
.form_block__content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3129b9;
  font-weight: bold;
  font-size: 20px;
}
.form_block__content form {
  margin-top: 30px;
}
.form_block__content input[type=text],
.form_block__content input[type=email],
.form_block__content input[type=tel],
.form_block__content input[type=url],
.form_block__content textarea,
.form_block__content select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: "liebling", sans-serif;
  transition: border-color 0.3s ease;
}
.form_block__content input[type=text]:focus,
.form_block__content input[type=email]:focus,
.form_block__content input[type=tel]:focus,
.form_block__content input[type=url]:focus,
.form_block__content textarea:focus,
.form_block__content select:focus {
  outline: none;
  border-color: #3129b9;
}
.form_block__content textarea {
  min-height: 120px;
  resize: vertical;
}
.form_block__content input[type=submit],
.form_block__content button[type=submit] {
  padding: 14px 32px;
  background-color: #3129b9;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form_block__content input[type=submit]:hover,
.form_block__content button[type=submit]:hover {
  background-color: #000;
}
.form_block__content label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000;
}
.form_block__content.left {
  text-align: left;
}
.form_block__content.center {
  text-align: center;
}
.form_block__content.right {
  text-align: right;
}

.image_block.theme_2 {
  background-color: #3129b9;
}
.image_block.theme_2 h2 {
  color: #fff !important;
}
.image_block.theme_2 a {
  color: #3129b9 !important;
  background-color: #fff !important;
}
.image_block.theme_2 a:hover {
  color: #fff !important;
  background-color: #000 !important;
}
.image_block__image-container {
  width: 100%;
}
.image_block__image-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image_block .image_block__title-container {
  display: flex;
  justify-content: center;
}
.image_block .image_block__button-container {
  display: flex;
  justify-content: center;
  margin: 30px 0px;
}

.faq_block .faq_block__title-container {
  display: flex;
  justify-content: center;
}
.faq_block .faq_block__title-container h2 {
  color: #000;
}
.faq_block .faq_block__item[open] {
  border-bottom: none;
}
.faq_block .faq_block__item[open] .faq_block__question {
  color: #000;
  border-bottom: none;
}
.faq_block .faq_block__item[open] .faq_block__question::after {
  content: "—";
  transform: rotate(180deg);
  color: #000;
  font-size: 14px;
}
.faq_block .faq_block__item[open] .faq_block__answer p {
  color: #000 !important;
}
.faq_block .faq_block__item[open] .faq_block__answer li {
  color: #000 !important;
}
.faq_block .faq_block__item .faq_block__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  padding: 20px 10px;
  border-bottom: 1px solid #000;
  cursor: pointer;
}
.faq_block .faq_block__item .faq_block__question::-webkit-details-marker {
  display: none;
}
.faq_block .faq_block__item .faq_block__question:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.faq_block .faq_block__item .faq_block__question:hover p {
  text-decoration: underline;
}
.faq_block .faq_block__item .faq_block__question p {
  font-weight: bold;
  font-size: 19px;
}
.faq_block .faq_block__item .faq_block__question::after {
  content: "+";
  color: #000;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}
.faq_block .faq_block__item .faq_block__answer {
  color: #000;
  padding: 20px 10px;
}
.faq_block .faq_block__item .faq_block__answer p {
  margin: 0;
  color: #000;
}
.faq_block.theme_2 {
  background-color: #3129b9;
}
.faq_block.theme_2 .faq_block__title-container h2 {
  color: #fff !important;
  margin-top: 0px;
}
.faq_block.theme_2 .faq_block__item[open] .faq_block__question {
  color: #fff;
  border-bottom: none;
}
.faq_block.theme_2 .faq_block__item[open] .faq_block__question::after {
  content: "—";
  transform: rotate(180deg);
  color: #fff;
  font-size: 14px;
}
.faq_block.theme_2 .faq_block__item[open] .faq_block__answer p {
  color: #fff !important;
}
.faq_block.theme_2 .faq_block__item .faq_block__question {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 20px 10px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
.faq_block.theme_2 .faq_block__item .faq_block__question:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.faq_block.theme_2 .faq_block__item .faq_block__question:hover p {
  text-decoration: underline;
}
.faq_block.theme_2 .faq_block__item .faq_block__question p {
  font-weight: bold;
  font-size: 19px;
}
.faq_block.theme_2 .faq_block__item .faq_block__question::after {
  content: "+";
  color: #fff;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}
.faq_block.theme_2 .faq_block__item .faq_block__answer {
  color: #fff;
  padding: 20px 10px;
}
.faq_block.theme_2 .faq_block__item .faq_block__answer p {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.block-masonry.theme_2 {
  background-color: #3129b9;
}
.block-masonry .masonry-grid {
  margin: 0 auto;
}
.block-masonry .masonry-item {
  display: block;
  width: calc(33.333% - 20px);
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}
.block-masonry .masonry-item img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .block-masonry .masonry-item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 480px) {
  .block-masonry .masonry-item {
    width: 100%;
  }
}

.breadcrumbs-block.theme_2 {
  background-color: #3129b9;
  color: white;
}
.breadcrumbs-block.theme_2 a {
  color: white;
}
.breadcrumbs-block.theme_2 a:hover {
  color: #000;
}

.hero_banner {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.hero_banner__content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero_banner__title-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  max-width: 90%;
  width: 100%;
  text-align: center;
}
.hero_banner__title-container h1 {
  color: white;
  font-weight: 700;
  font-size: clamp(32px, 8vw, 96px);
}
.hero_banner__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero_banner__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero_banner__divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1920px;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
  font-size: 0;
}
.hero_banner__divider-svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero_banner__arrow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceArrow 2s ease-in-out infinite;
  color: white;
}
.hero_banner__arrow svg {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
.hero_block {
  position: relative;
  height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero_block__container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_block__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero_block__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero_block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero_block__content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero_block__content--center {
  text-align: center;
}
.hero_block__content--left {
  text-align: left;
  justify-content: flex-start;
}
.hero_block__content--right {
  text-align: right;
  justify-content: flex-end;
}
.hero_block__text-container {
  max-width: 800px;
  width: 100%;
}
.hero_block__description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 500;
}
.hero_block__description p {
  margin-bottom: 1rem;
}
.hero_block__description h1,
.hero_block__description h2,
.hero_block__description h3,
.hero_block__description h4,
.hero_block__description h5,
.hero_block__description h6 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero_block__description h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero_block__description h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero_block__description h1 {
    font-size: 2rem;
  }
}
.hero_block__description h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero_block__description h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero_block__description h2 {
    font-size: 1.8rem;
  }
}
.hero_block__description h3 {
  font-size: 2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero_block__description h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .hero_block__description h3 {
    font-size: 1.5rem;
  }
}
.hero_block__button {
  margin-top: 2rem;
}
.hero_block__button .btn-hero {
  background-color: #3129b9;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--button-border-radius, 4px);
  transition: all 0.3s ease;
  display: inline-block;
}
.hero_block__button .btn-hero:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background-color: #000;
}
@media (max-width: 768px) {
  .hero_block {
    min-height: 80vh;
  }
  .hero_block__container {
    height: 80vh;
  }
  .hero_block__content {
    padding: 1.5rem;
  }
  .hero_block__description {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .hero_block {
    min-height: 70vh;
  }
  .hero_block__container {
    height: 70vh;
  }
  .hero_block__content {
    padding: 1rem;
  }
  .hero_block__description {
    font-size: 1rem;
  }
  .hero_block__button .btn-hero {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

.hero_slider_block {
  position: relative;
  height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero_slider_block__container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_slider_block__slider {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero_slider_block__slider .owl-stage-outer {
  height: 100%;
}
.hero_slider_block__slider .owl-stage {
  height: 100%;
}
.hero_slider_block__slider .owl-item {
  height: 100vh;
}
.hero_slider_block__slide {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_slider_block__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero_slider_block__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero_slider_block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero_slider_block__content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero_slider_block__content--center {
  text-align: center;
}
.hero_slider_block__content--left {
  text-align: left;
  justify-content: flex-start;
}
.hero_slider_block__content--right {
  text-align: right;
  justify-content: flex-end;
}
.hero_slider_block__text-container {
  max-width: 800px;
  width: 100%;
}
.hero_slider_block__description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 500;
}
.hero_slider_block__description p {
  margin-bottom: 1rem;
}
.hero_slider_block__description h1,
.hero_slider_block__description h2,
.hero_slider_block__description h3,
.hero_slider_block__description h4,
.hero_slider_block__description h5,
.hero_slider_block__description h6 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero_slider_block__description h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero_slider_block__description h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero_slider_block__description h1 {
    font-size: 2rem;
  }
}
.hero_slider_block__description h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero_slider_block__description h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero_slider_block__description h2 {
    font-size: 1.8rem;
  }
}
.hero_slider_block__description h3 {
  font-size: 2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero_slider_block__description h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .hero_slider_block__description h3 {
    font-size: 1.5rem;
  }
}
.hero_slider_block__button {
  margin-top: 2rem;
}
.hero_slider_block__button .btn-hero {
  background-color: #3129b9;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--button-border-radius, 4px);
  transition: all 0.3s ease;
  display: inline-block;
  color: white;
}
.hero_slider_block__button .btn-hero:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background-color: #000;
}
.hero_slider_block .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 4;
  pointer-events: none;
}
.hero_slider_block .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  color: white !important;
  font-size: 1.5rem !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  pointer-events: all;
  cursor: pointer;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.hero_slider_block .owl-nav button:before, .hero_slider_block .owl-nav button:after {
  display: none !important;
  content: none !important;
}
.hero_slider_block .owl-nav button:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-50%) !important;
  width: 50px !important;
  height: 50px !important;
}
.hero_slider_block .owl-nav button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.hero_slider_block .owl-nav button.owl-prev {
  left: 30px;
}
.hero_slider_block .owl-nav button.owl-next {
  right: 30px;
}
.hero_slider_block .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero_slider_block .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.hero_slider_block .owl-dots .owl-dot.active {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: scale(1.2);
}
.hero_slider_block .owl-dots .owl-dot:hover {
  background: rgba(255, 255, 255, 0.7) !important;
}
@media (max-width: 768px) {
  .hero_slider_block {
    min-height: 80vh;
    height: 80vh;
  }
  .hero_slider_block__container {
    height: 80vh;
  }
  .hero_slider_block__slider {
    height: 80vh;
  }
  .hero_slider_block__slider .owl-item {
    height: 80vh;
  }
  .hero_slider_block__slide {
    height: 80vh;
  }
  .hero_slider_block__content {
    padding: 1.5rem;
  }
  .hero_slider_block__description {
    font-size: 1.1rem;
  }
  .hero_slider_block .owl-nav button {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }
  .hero_slider_block .owl-nav button.owl-prev {
    left: 15px;
  }
  .hero_slider_block .owl-nav button.owl-next {
    right: 15px;
  }
  .hero_slider_block .owl-dots {
    bottom: 20px;
  }
  .hero_slider_block .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 480px) {
  .hero_slider_block {
    min-height: 70vh;
    height: 70vh;
  }
  .hero_slider_block__container {
    height: 70vh;
  }
  .hero_slider_block__slider {
    height: 70vh;
  }
  .hero_slider_block__slider .owl-item {
    height: 70vh;
  }
  .hero_slider_block__slide {
    height: 70vh;
  }
  .hero_slider_block__content {
    padding: 1rem;
  }
  .hero_slider_block__description {
    font-size: 1rem;
  }
  .hero_slider_block__button .btn-hero {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .hero_slider_block .owl-nav button {
    width: 35px !important;
    height: 35px !important;
    font-size: 1rem !important;
  }
  .hero_slider_block .owl-nav button.owl-prev {
    left: 10px;
  }
  .hero_slider_block .owl-nav button.owl-next {
    right: 10px;
  }
  .hero_slider_block .owl-dots {
    bottom: 15px;
  }
  .hero_slider_block .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
  }
}

.hero_video_block {
  position: relative;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero_video_block__container {
  position: relative;
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_video_block__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero_video_block__video-container iframe,
.hero_video_block__video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: none;
}
.hero_video_block__video-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
.hero_video_block__video-container iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero_video_block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero_video_block__content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero_video_block__content--center {
  text-align: center;
}
.hero_video_block__content--left {
  text-align: left;
  justify-content: flex-start;
}
.hero_video_block__content--right {
  text-align: right;
  justify-content: flex-end;
}
.hero_video_block__text-container {
  max-width: 800px;
  width: 100%;
}
.hero_video_block__description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 500;
}
.hero_video_block__description p {
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.hero_video_block__description h1,
.hero_video_block__description h2,
.hero_video_block__description h3,
.hero_video_block__description h4,
.hero_video_block__description h5,
.hero_video_block__description h6 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero_video_block__description h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
@media (max-width: 768px) {
  .hero_video_block__description h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero_video_block__description h1 {
    font-size: 2rem;
  }
}
.hero_video_block__description h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero_video_block__description h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero_video_block__description h2 {
    font-size: 1.8rem;
  }
}
.hero_video_block__description h3 {
  font-size: 2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero_video_block__description h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .hero_video_block__description h3 {
    font-size: 1.5rem;
  }
}
.hero_video_block__svg {
  position: relative;
}
.hero_video_block__svg svg {
  max-width: 612px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero_video_block__svg svg {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .hero_video_block__svg svg {
    max-width: 250px;
  }
}
.hero_video_block__button {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
}
.hero_video_block__video-container video {
  pointer-events: auto;
}
@media (max-width: 768px) {
  .hero_video_block {
    min-height: 80vh;
    height: 80vh;
  }
  .hero_video_block__container {
    height: 80vh;
  }
  .hero_video_block__content {
    padding: 1.5rem;
  }
  .hero_video_block__description {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .hero_video_block {
    min-height: 70vh;
    height: 70vh;
  }
  .hero_video_block__container {
    height: 70vh;
  }
  .hero_video_block__content {
    padding: 1rem;
  }
  .hero_video_block__description {
    font-size: 1rem;
  }
}
.hero_video_block__video-container iframe[title=""]::before,
.hero_video_block__video-container video[title=""]::before {
  content: "Background video";
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hero_video_block__divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1920px;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
  font-size: 0;
}
.hero_video_block__divider-svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero_video_block__arrow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceArrow 2s ease-in-out infinite;
  color: white;
}
.hero_video_block__arrow svg {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
.video_block {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .video_block {
    padding: 40px 0;
  }
}
.video_block__text {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .video_block__text {
    margin-bottom: 30px;
  }
}
.video_block__text h1,
.video_block__text h2,
.video_block__text h3,
.video_block__text h4,
.video_block__text h5,
.video_block__text h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.video_block__text h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-family: "liebling", sans-serif;
  color: #000;
}
.video_block__text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-family: "liebling", sans-serif;
}
.video_block__text h3 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-family: "liebling", sans-serif;
}
.video_block__text p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  margin-bottom: 15px;
}
.video_block__text p:last-child {
  margin-bottom: 0;
}
.video_block__text ul,
.video_block__text ol {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 20px;
  padding-left: 20px;
}
.video_block__text ul li,
.video_block__text ol li {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  margin-bottom: 10px;
}
.video_block__text a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.video_block__text a:hover {
  opacity: 0.7;
}
.video_block__video-container {
  position: relative;
  width: 100%;
  padding-bottom: 45%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-height: 600px;
}
@media (max-width: 768px) {
  .video_block__video-container {
    border-radius: 12px;
    padding-bottom: 56.25%;
    max-height: none;
  }
}
.video_block__video-container iframe,
.video_block__video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive_block.theme_2 {
  background-color: #3129b9;
}
.archive_block.theme_2 .archive_block__title {
  color: #fff !important;
}
.archive_block.theme_2 .archive_block__search-button {
  background: #3129b9 !important;
}
.archive_block .archive_block__search-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.archive_block .archive_block__search-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.archive_block .archive_block__search-wrapper:focus-within {
  border-color: #3129b9;
}
.archive_block .archive_block__search-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}
.archive_block .archive_block__search-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.archive_block .archive_block__search-input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.archive_block .archive_block__search-button {
  padding: 12px 16px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.archive_block .archive_block__search-button:hover {
  background: #3129b9;
}
.archive_block .archive_block__search-button i {
  font-size: 16px;
}
.archive_block .archive_block__results-container {
  position: relative;
}
.archive_block .archive_block__loading {
  text-align: center;
  padding: 2rem;
  color: #000;
}
.archive_block .archive_block__loading .archive_block__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left: 4px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.archive_block .archive_block__posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .archive_block .archive_block__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive_block .archive_block__post-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.archive_block .archive_block__post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.archive_block .archive_block__card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.archive_block .archive_block__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.archive_block .archive_block__card-image:hover img {
  transform: scale(1.05);
}
.archive_block .archive_block__placeholder-image {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.3);
}
.archive_block .archive_block__placeholder-image i {
  font-size: 3rem;
}
.archive_block .archive_block__card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.archive_block .archive_block__card-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.archive_block .archive_block__card-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.archive_block .archive_block__card-title a:hover {
  color: #3129b9;
}
.archive_block .archive_block__card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}
.archive_block .archive_block__card-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.archive_block .archive_block__card-date::before {
  content: "📅";
  font-size: 0.75rem;
}
.archive_block .archive_block__card-category {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(49, 41, 185, 0.1);
  color: #3129b9;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.archive_block .archive_block__card-category::before {
  content: "🏷️";
  font-size: 0.75rem;
}
.archive_block .archive_block__card-excerpt {
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  font-size: 0.9rem;
  flex-grow: 1;
}
.archive_block .archive_block__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3129b9;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  margin-top: auto;
}
.archive_block .archive_block__card-link:hover {
  color: #000;
}
.archive_block .archive_block__card-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.archive_block .archive_block__card-link:hover i {
  transform: translateX(2px);
}
.archive_block .archive_block__no-posts {
  text-align: center;
  padding: 3rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.1rem;
}
.archive_block .archive_block__load-more-container {
  text-align: center;
  margin-top: 2rem;
}
.archive_block .archive_block__load-more-btn {
  background: #3129b9;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.archive_block .archive_block__load-more-btn:hover {
  background: rgb(37.9424778761, 31.7477876106, 143.2522123894);
  transform: translateY(-1px);
}
.archive_block .archive_block__load-more-btn:active {
  transform: translateY(0);
}
.archive_block .archive_block__pagination-info {
  text-align: center;
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}
.archive_block.theme_2 {
  background-color: #3129b9;
}
.archive_block.theme_2 .archive_block__search-wrapper {
  background: #fff;
  border-color: #fff;
}
.archive_block.theme_2 .archive_block__search-wrapper:focus-within {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
.archive_block.theme_2 .archive_block__search-input {
  color: #000;
}
.archive_block.theme_2 .archive_block__search-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.archive_block.theme_2 .archive_block__search-input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.archive_block.theme_2 .archive_block__search-button {
  background: #000;
  color: #fff;
}
.archive_block.theme_2 .archive_block__search-button:hover {
  background: black;
}
.archive_block.theme_2 .archive_block__loading {
  color: #fff;
}
.archive_block.theme_2 .archive_block__loading .archive_block__spinner {
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: #fff;
}
.archive_block.theme_2 .archive_block__post-card {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.archive_block.theme_2 .archive_block__no-posts {
  color: rgba(255, 255, 255, 0.8);
}
.archive_block.theme_2 .archive_block__load-more-btn {
  background: #fff;
  color: #000;
}
.archive_block.theme_2 .archive_block__load-more-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}
.archive_block.theme_2 .archive_block__pagination-info {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .archive_block .archive_block__posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .archive_block .archive_block__search-wrapper {
    margin: 0 1rem;
  }
  .archive_block .archive_block__card-content {
    padding: 1rem;
  }
  .archive_block .archive_block__card-title {
    font-size: 1.1rem;
  }
}

.logo_slider_block.theme_2 {
  background-color: #3129b9;
}
.logo_slider_block__wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.logo_slider_block__slider {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.logo_slider_block__slider:hover {
  animation-play-state: paused;
}
.logo_slider_block__slider--grayscale .logo_slider_block__item img {
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.logo_slider_block__slider--grayscale .logo_slider_block__item a:hover img,
.logo_slider_block__slider--grayscale .logo_slider_block__item:hover img {
  filter: none;
  opacity: 1;
}
.logo_slider_block__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  flex-shrink: 0;
}
.logo_slider_block__item img {
  max-height: 80px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.contact_block.theme_2 {
  background-color: #3129b9;
}
.contact_block.theme_2 h2 {
  color: #fff !important;
}
.contact_block.theme_2 p {
  color: #fff !important;
}
.contact_block.theme_2 a {
  color: #3129b9 !important;
  background-color: #fff !important;
}
.contact_block.theme_2 a:hover {
  color: #fff !important;
  background-color: #000 !important;
}
.contact_block.theme_2 label {
  color: #fff !important;
}
.contact_block.theme_2 legend {
  color: #fff !important;
}
.contact_block .contact-container h2 {
  margin-top: 0;
}
.contact_block .contact-container .gform_wrapper .gfield {
  margin-bottom: 20px;
}
.contact_block .contact-container .gform_wrapper .gfield label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.contact_block .contact-container .gform_wrapper .gfield input[type=text],
.contact_block .contact-container .gform_wrapper .gfield input[type=email],
.contact_block .contact-container .gform_wrapper .gfield input[type=tel],
.contact_block .contact-container .gform_wrapper .gfield input[type=url],
.contact_block .contact-container .gform_wrapper .gfield textarea,
.contact_block .contact-container .gform_wrapper .gfield select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.contact_block .contact-container .gform_wrapper .gfield input[type=text]:focus,
.contact_block .contact-container .gform_wrapper .gfield input[type=email]:focus,
.contact_block .contact-container .gform_wrapper .gfield input[type=tel]:focus,
.contact_block .contact-container .gform_wrapper .gfield input[type=url]:focus,
.contact_block .contact-container .gform_wrapper .gfield textarea:focus,
.contact_block .contact-container .gform_wrapper .gfield select:focus {
  outline: none;
  border-color: #3129b9;
  box-shadow: 0 0 0 2px rgba(49, 41, 185, 0.2);
}
.contact_block .contact-container .gform_wrapper .gfield textarea {
  min-height: 120px;
  resize: vertical;
}
.contact_block .contact-container .gform_wrapper .gform_footer {
  margin-top: 20px;
}
.contact_block .contact-container .gform_wrapper .gform_footer .gform_button {
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact_block .contact-container .gform_wrapper .gform_footer .gform_button:hover {
  background-color: #000;
}
.contact_block .contact-container .gform_wrapper .gfield_error .gfield_label {
  color: #d63638;
}
.contact_block .contact-container .gform_wrapper .gfield_error input,
.contact_block .contact-container .gform_wrapper .gfield_error textarea,
.contact_block .contact-container .gform_wrapper .gfield_error select {
  border-color: #d63638;
}
.contact_block .contact-container .gform_wrapper .gfield_description {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.google_maps_block__content {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .google_maps_block__content {
    padding: 2rem 2rem 2rem 0;
  }
}
.google_maps_block__content h1,
.google_maps_block__content h2,
.google_maps_block__content h3,
.google_maps_block__content h4,
.google_maps_block__content h5,
.google_maps_block__content h6 {
  margin-bottom: 1rem;
}
.google_maps_block__content p {
  margin-bottom: 1rem;
}
.google_maps_block__content p:last-child {
  margin-bottom: 0;
}
.google_maps_block__content ul,
.google_maps_block__content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.google_maps_block__content li {
  margin-bottom: 0.5rem;
}
.google_maps_block__map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .google_maps_block__map-container {
    margin-top: 2rem;
  }
}
.google_maps_block__map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}
.google_maps_block__map img {
  max-width: none !important;
}
.google_maps_block:not(.google_maps_block--two-columns) .google_maps_block__map-container {
  margin-top: 0;
}
.google_maps_block.google_maps_block--two-columns .google_maps_block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
@media (max-width: 991px) {
  .google_maps_block__content {
    padding: 1rem 0;
  }
  .google_maps_block__map-container {
    margin-top: 1rem;
  }
}
.google_maps_block.theme-dark .google_maps_block__content {
  color: #ffffff;
}
.google_maps_block.theme-light .google_maps_block__content {
  color: #333333;
}

.google_maps_block__map--loading {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-style: italic;
}
.google_maps_block__map--loading::before {
  content: "Kaart wordt geladen...";
}

.google_maps_block__map--error {
  background: #f8d7da;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #721c24;
  font-style: italic;
}
.google_maps_block__map--error::before {
  content: "Kaart kon niet worden geladen";
}

.recent_posts_block {
  overflow: hidden !important;
}
.recent_posts_block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
}
@media (max-width: 991px) {
  .recent_posts_block__header {
    margin-bottom: 2.5rem;
    gap: 1.75rem;
  }
}
@media (max-width: 767px) {
  .recent_posts_block__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  .recent_posts_block__header {
    margin-bottom: 1.5rem;
    gap: 1.25rem;
  }
}
.recent_posts_block__header-left {
  flex: 0 0 auto;
}
.recent_posts_block__header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .recent_posts_block__header-right {
    width: 100%;
    justify-content: space-between;
  }
}
.recent_posts_block__title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  font-family: "liebling", sans-serif;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .recent_posts_block__title {
    margin-left: 100px;
  }
}
@media (max-width: 1200px) {
  .recent_posts_block__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 991px) {
  .recent_posts_block__title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .recent_posts_block__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 575px) {
  .recent_posts_block__title {
    font-size: 1.5rem;
  }
}
.recent_posts_block__title-normal {
  font-weight: 700;
  font-style: normal;
  display: inline;
}
.recent_posts_block__title-italic {
  font-style: italic !important;
  font-weight: 400;
  display: inline;
}
.recent_posts_block__catalog-link {
  font-size: 19px;
  font-style: italic;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.recent_posts_block__catalog-link:hover {
  color: #3129b9;
}
@media (max-width: 991px) {
  .recent_posts_block__catalog-link {
    font-size: 0.95rem;
  }
}
@media (max-width: 767px) {
  .recent_posts_block__catalog-link {
    font-size: 0.9rem;
  }
}
@media (max-width: 575px) {
  .recent_posts_block__catalog-link {
    font-size: 0.85rem;
  }
}
.recent_posts_block__nav {
  display: flex;
  gap: 0.75rem;
}
.recent_posts_block__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #f2f5fa;
  background: #f2f5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.recent_posts_block__nav-btn svg {
  width: 20px;
  height: 20px;
  color: #004687;
  transition: all 0.3s ease;
  stroke-width: 2;
  position: relative;
  z-index: 1;
}
.recent_posts_block__nav-btn:hover {
  background: #004687;
  border-color: #004687;
}
.recent_posts_block__nav-btn:hover svg {
  color: #f2f5fa;
}
.recent_posts_block__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.recent_posts_block__nav-btn:disabled:hover {
  background: #f2f5fa;
  border-color: #f2f5fa;
}
.recent_posts_block__nav-btn:disabled:hover svg {
  color: #004687;
}
@media (max-width: 991px) {
  .recent_posts_block__nav-btn {
    width: 44px;
    height: 44px;
  }
  .recent_posts_block__nav-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 767px) {
  .recent_posts_block__nav-btn {
    width: 40px;
    height: 40px;
  }
  .recent_posts_block__nav-btn svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 575px) {
  .recent_posts_block__nav-btn {
    width: 36px;
    height: 36px;
  }
  .recent_posts_block__nav-btn svg {
    width: 14px;
    height: 14px;
  }
}
.recent_posts_block__slider-wrapper {
  margin: 0 auto;
  overflow: visible;
}
@media (min-width: 1024px) {
  .recent_posts_block__slider-wrapper {
    max-width: 1650px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .recent_posts_block__slider-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .recent_posts_block__slider-wrapper {
    margin: 0;
    max-width: 100%;
  }
}
.recent_posts_block__slider .owl-stage-outer {
  overflow: visible;
}
.recent_posts_block__slider .owl-stage {
  display: flex;
  align-items: stretch;
}
.recent_posts_block__slider .owl-item {
  display: flex;
  width: auto !important;
}
@media (min-width: 1024px) {
  .recent_posts_block__slider .owl-item {
    width: auto !important;
  }
}
.recent_posts_block__slide {
  padding: 0 5px;
  height: 100%;
}
@media (max-width: 767px) {
  .recent_posts_block__slide {
    padding: 0 2.5px;
  }
}
@media (max-width: 575px) {
  .recent_posts_block__slide {
    padding: 0 2.5px;
  }
}
.recent_posts_block__slide-link {
  display: block;
  text-decoration: none;
  height: 100%;
}
.recent_posts_block__slide-image {
  position: relative;
  width: 420px;
  height: 420px;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 1rem;
}
@media (max-width: 1200px) {
  .recent_posts_block__slide-image {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 991px) {
  .recent_posts_block__slide-image {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 767px) {
  .recent_posts_block__slide-image {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 575px) {
  .recent_posts_block__slide-image {
    width: 250px;
    height: 250px;
  }
}
.recent_posts_block__slide-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.recent_posts_block__slide-image:hover img {
  transform: scale(1.05);
}
.recent_posts_block__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.3);
}
.recent_posts_block__placeholder i {
  font-size: 3rem;
}
.recent_posts_block__slide-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  transition: color 0.3s ease;
  font-family: "liebling", sans-serif;
  max-width: 420px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 1200px) {
  .recent_posts_block__slide-title {
    font-size: 1.125rem;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .recent_posts_block__slide-title {
    font-size: 1.1rem;
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .recent_posts_block__slide-title {
    font-size: 1rem;
    max-width: 300px;
  }
}
@media (max-width: 575px) {
  .recent_posts_block__slide-title {
    font-size: 0.95rem;
    max-width: 250px;
  }
}
.recent_posts_block__slide-link:hover .recent_posts_block__slide-title {
  color: #3129b9;
}
.recent_posts_block__no-posts {
  text-align: center;
  padding: 3rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.1rem;
}
.recent_posts_block.theme_2 .recent_posts_block__title,
.recent_posts_block.theme_2 .recent_posts_block__title-normal,
.recent_posts_block.theme_2 .recent_posts_block__title-italic,
.recent_posts_block.theme_2 .recent_posts_block__catalog-link,
.recent_posts_block.theme_2 .recent_posts_block__slide-title {
  color: #fff;
}
.recent_posts_block.theme_2 .recent_posts_block__nav-btn {
  border-color: #f2f5fa;
  background: #f2f5fa;
}
.recent_posts_block.theme_2 .recent_posts_block__nav-btn svg {
  color: #004687;
}
.recent_posts_block.theme_2 .recent_posts_block__nav-btn:hover {
  background: #004687;
  border-color: #004687;
}
.recent_posts_block.theme_2 .recent_posts_block__nav-btn:hover svg {
  color: #f2f5fa;
}
.recent_posts_block.theme_2 .recent_posts_block__nav-btn:disabled:hover {
  background: #f2f5fa;
  border-color: #f2f5fa;
}
.recent_posts_block.theme_2 .recent_posts_block__nav-btn:disabled:hover svg {
  color: #004687;
}
.recent_posts_block.theme_2 .recent_posts_block__catalog-link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.recent_posts_block.theme_2 .recent_posts_block__slide-link:hover .recent_posts_block__slide-title {
  color: rgba(255, 255, 255, 0.7);
}
.recent_posts_block.theme_2 .recent_posts_block__no-posts {
  color: rgba(255, 255, 255, 0.8);
}

.usp_wheel {
  background-color: #f2f5fa;
  position: relative;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  overflow: hidden;
}
.usp_wheel .container {
  padding: 70px 0px;
}
.usp_wheel .row {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .usp_wheel .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.usp_wheel .col-12 {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .usp_wheel .col-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.usp_wheel__divider {
  width: 100%;
  margin-bottom: -5px;
  line-height: 0;
  font-size: 0;
}
.usp_wheel__divider--top {
  margin-top: -1px;
  transform: scaleY(-1);
}
.usp_wheel__divider--bottom {
  margin-bottom: 0;
  margin-top: -5px;
}
.usp_wheel__divider-svg {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}
@media (max-width: 575px) {
  .usp_wheel__divider-svg {
    margin-bottom: -1px;
  }
}
.usp_wheel__title {
  text-align: center;
  margin-bottom: 2rem;
  font-family: "liebling", sans-serif;
  color: black;
  font-weight: 700;
}
.usp_wheel svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.usp_wheel__button {
  text-align: center;
  margin-top: 3rem;
}
.usp_wheel.theme_2 {
  background-color: #3129b9;
}
.usp_wheel.theme_2 .usp_wheel__title {
  color: #fff;
}

.products_filter_block {
  padding: 60px 0;
}
.products_filter_block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.products_filter_block__title {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0;
  color: black;
}
.products_filter_block__title-bold {
  font-weight: 700;
  font-family: "liebling", sans-serif;
}
.products_filter_block__title-italic {
  font-style: italic;
  font-weight: 400;
}
.products_filter_block__switcher {
  display: inline-flex;
  background: #f0f0f0;
  border-radius: 50px;
  padding: 4px;
  gap: 4px;
}
.products_filter_block__switcher-option {
  padding: 12px 24px;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}
.products_filter_block__switcher-option:hover {
  color: #333;
}
.products_filter_block__switcher-option.active {
  background: white;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.products_filter_block__filter-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
.products_filter_block__filter-label {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}
.products_filter_block__filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.products_filter_block__filter-btn {
  padding: 10px 20px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}
.products_filter_block__filter-btn:hover {
  border-color: #bbb;
  color: #333;
  background: #f5f5f5;
}
.products_filter_block__filter-btn.active {
  background: #21468b;
  border-color: #21468b;
  color: white;
}
.products_filter_block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding-top: 50px;
}
@media (max-width: 992px) {
  .products_filter_block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .products_filter_block__grid {
    grid-template-columns: 1fr;
  }
}
.products_filter_block__no-results {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 18px;
}
.products_filter_block__load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.products_filter_block__load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #21468b;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(33, 70, 139, 0.2);
}
.products_filter_block__load-more-btn:hover {
  background: #1a3769;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 70, 139, 0.3);
}
.products_filter_block__load-more-btn:active {
  transform: translateY(0);
}
.products_filter_block__load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.products_filter_block__load-more-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.products_filter_block__load-more-btn:hover i {
  transform: translateY(2px);
}
.products_filter_block__load-more-btn.loading {
  pointer-events: none;
}
.products_filter_block__load-more-btn.loading i {
  animation: bounce 0.6s infinite;
}
.products_filter_block__load-more-text {
  display: flex;
  align-items: center;
  gap: 4px;
}
.products_filter_block__remaining-count {
  font-weight: 700;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f2f5fa;
  margin-top: 50px;
  transition: background-color 0.3s ease;
  border-radius: 20px;
}
.product-card:hover {
  background-color: #b6c4de;
}
.product-card__permalink {
  position: absolute;
  inset: 0;
  top: -50px;
  z-index: 2;
}
.product-card__image {
  position: relative;
  aspect-ratio: 1;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -50px;
  background-color: #ddd;
  border-radius: 20px;
  overflow: hidden;
}
.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-size: 48px;
}
.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.product-card__badge--zakelijk {
  background: #2196f3;
  color: white;
}
.product-card__badge--salades {
  background: #4caf50;
  color: white;
}
.product-card__badge--zuurwaren {
  background: #ff9800;
  color: white;
}
.product-card__content {
  padding: 50px 30px;
}
.product-card__number {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.product-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #333;
  line-height: 1.4;
}

.recepten_filter_block {
  padding: 60px 0;
}
.recepten_filter_block__header {
  margin-bottom: 40px;
}
.recepten_filter_block__title {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0;
  color: black;
}
.recepten_filter_block__title-bold {
  font-weight: 700;
  font-family: "liebling", sans-serif;
}
.recepten_filter_block__title-italic {
  font-style: italic;
  font-weight: 400;
}
.recepten_filter_block__hero {
  margin-bottom: 50px;
}
.recepten_filter_block__hero-row {
  display: flex;
  gap: 20px;
  min-height: 500px;
}
@media (max-width: 992px) {
  .recepten_filter_block__hero-row {
    flex-direction: column;
    min-height: auto;
  }
}
.recepten_filter_block__hero-left {
  flex: 0 0 60%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 40px;
  min-height: 500px;
}
@media (max-width: 992px) {
  .recepten_filter_block__hero-left {
    flex: 1;
    min-height: 400px;
    padding: 40px 30px;
  }
}
@media (max-width: 576px) {
  .recepten_filter_block__hero-left {
    padding: 30px 20px;
    min-height: 350px;
  }
}
.recepten_filter_block__hero-right {
  flex: 0 0 calc(40% - 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .recepten_filter_block__hero-right {
    flex: 1;
  }
}
.recepten_filter_block__hero-right-top {
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 30px;
  min-height: 500px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .recepten_filter_block__hero-right-top {
    min-height: 400px;
  }
}
@media (max-width: 576px) {
  .recepten_filter_block__hero-right-top {
    min-height: 300px;
    padding: 30px 20px;
  }
}
.recepten_filter_block__hero-right-top:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.recepten_filter_block__hero-right-top:hover .recepten_filter_block__hero-bg::after {
  background: rgba(0, 0, 0, 0.4);
}
.recepten_filter_block__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.recepten_filter_block__hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.recepten_filter_block__hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  text-align: center;
}
.recepten_filter_block__hero-title {
  color: white;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin: 0 0 30px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: "liebling", sans-serif;
}
@media (max-width: 576px) {
  .recepten_filter_block__hero-title {
    margin-bottom: 20px;
  }
}
.recepten_filter_block__search-form {
  width: 100%;
}
.recepten_filter_block__search-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.recepten_filter_block__search-input {
  width: 100%;
  padding: 18px 60px 18px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.recepten_filter_block__search-input:focus {
  outline: none;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.recepten_filter_block__search-input::-moz-placeholder {
  color: #999;
}
.recepten_filter_block__search-input::placeholder {
  color: #999;
}
.recepten_filter_block__search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #21468b;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}
.recepten_filter_block__search-btn:hover {
  background: #1a3769;
  transform: translateY(-50%) scale(1.05);
}
.recepten_filter_block__search-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.recepten_filter_block__filter-bar {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px;
  background: #f2f5fa;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .recepten_filter_block__filter-bar {
    gap: 15px;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .recepten_filter_block__filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}
.recepten_filter_block__filter-group {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 768px) {
  .recepten_filter_block__filter-group {
    min-width: 100%;
  }
}
.recepten_filter_block__filter-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 8px;
}
.recepten_filter_block__select-wrapper {
  position: relative;
}
.recepten_filter_block__select-wrapper i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #666;
  pointer-events: none;
  transition: all 0.3s ease;
}
.recepten_filter_block__select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.recepten_filter_block__select:hover {
  border-color: #21468b;
  box-shadow: 0 2px 12px rgba(33, 70, 139, 0.1);
}
.recepten_filter_block__select:hover + i {
  color: #21468b;
}
.recepten_filter_block__select:focus {
  outline: none;
  border-color: #21468b;
  box-shadow: 0 0 0 3px rgba(33, 70, 139, 0.1);
}
.recepten_filter_block__select:focus + i {
  color: #21468b;
  transform: translateY(-50%) rotate(180deg);
}
.recepten_filter_block__select option {
  padding: 10px;
}
.recepten_filter_block__reset-btn {
  padding: 14px 24px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.recepten_filter_block__reset-btn i {
  font-size: 12px;
}
.recepten_filter_block__reset-btn:hover {
  border-color: #ff6b6b;
  color: #ff6b6b;
  background: #fff5f5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}
.recepten_filter_block__reset-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .recepten_filter_block__reset-btn {
    width: 100%;
    justify-content: center;
  }
}
.recepten_filter_block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding-top: 50px;
}
@media (max-width: 992px) {
  .recepten_filter_block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .recepten_filter_block__grid {
    grid-template-columns: 1fr;
  }
}
.recepten_filter_block__no-results {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 18px;
}
.recepten_filter_block__load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.recepten_filter_block__load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #21468b;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(33, 70, 139, 0.2);
}
.recepten_filter_block__load-more-btn:hover {
  background: #1a3769;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 70, 139, 0.3);
}
.recepten_filter_block__load-more-btn:active {
  transform: translateY(0);
}
.recepten_filter_block__load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.recepten_filter_block__load-more-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.recepten_filter_block__load-more-btn:hover i {
  transform: translateY(2px);
}
.recepten_filter_block__load-more-btn.loading {
  pointer-events: none;
}
.recepten_filter_block__load-more-btn.loading i {
  animation: bounce 0.6s infinite;
}
.recepten_filter_block__load-more-text {
  display: flex;
  align-items: center;
  gap: 4px;
}
.recepten_filter_block__remaining-count {
  font-weight: 700;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.recipe-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f2f5fa;
  margin-top: 50px;
  transition: background-color 0.3s ease;
  border-radius: 20px;
}
.recipe-card:hover {
  background-color: #b6c4de;
}
.recipe-card__permalink {
  position: absolute;
  inset: 0;
  top: -50px;
  z-index: 2;
}
.recipe-card__image {
  position: relative;
  aspect-ratio: 1;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -50px;
  background-color: #ddd;
  border-radius: 20px;
  overflow: hidden;
}
.recipe-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.recipe-card__badges-wrapper {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: calc(100% - 24px);
  z-index: 1;
}
.recipe-card__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-size: 48px;
  z-index: 0;
}
.recipe-card__badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.recipe-card__badge--soep {
  background: #ff9800;
  color: white;
}
.recipe-card__badge--salade {
  background: #4caf50;
  color: white;
}
.recipe-card__badge--vlees {
  background: #e91e63;
  color: white;
}
.recipe-card__badge--vis {
  background: #2196f3;
  color: white;
}
.recipe-card__badge--vegetarisch {
  background: #8bc34a;
  color: white;
}
.recipe-card__content {
  padding: 50px 30px;
}
.recipe-card__time {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.recipe-card__time i {
  margin-right: 5px;
}
.recipe-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #333;
  line-height: 1.4;
}

.blogs_filter_block {
  padding: 60px 0;
}
.blogs_filter_block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.blogs_filter_block__title {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0;
  color: black;
}
.blogs_filter_block__title-bold {
  font-weight: 700;
  font-family: "liebling", sans-serif;
}
.blogs_filter_block__title-italic {
  font-style: italic;
  font-weight: 400;
}
.blogs_filter_block__switcher {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}
.blogs_filter_block__switcher-option {
  padding: 10px 20px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}
.blogs_filter_block__switcher-option:hover {
  border-color: #bbb;
  color: #333;
  background: #f5f5f5;
}
.blogs_filter_block__switcher-option.active {
  background: #21468b;
  border-color: #21468b;
  color: white;
}
.blogs_filter_block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding-top: 50px;
}
@media (max-width: 992px) {
  .blogs_filter_block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blogs_filter_block__grid {
    grid-template-columns: 1fr;
  }
}
.blogs_filter_block__no-results {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 18px;
}
.blogs_filter_block__load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.blogs_filter_block__load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #21468b;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(33, 70, 139, 0.2);
}
.blogs_filter_block__load-more-btn:hover {
  background: #1a3769;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 70, 139, 0.3);
}
.blogs_filter_block__load-more-btn:active {
  transform: translateY(0);
}
.blogs_filter_block__load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.blogs_filter_block__load-more-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.blogs_filter_block__load-more-btn:hover i {
  transform: translateY(2px);
}
.blogs_filter_block__load-more-btn.loading {
  pointer-events: none;
}
.blogs_filter_block__load-more-btn.loading i {
  animation: bounce 0.6s infinite;
}
.blogs_filter_block__load-more-text {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blogs_filter_block__remaining-count {
  font-weight: 700;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f2f5fa;
  margin-top: 50px;
  transition: background-color 0.3s ease;
  border-radius: 20px;
}
.blog-card:hover {
  background-color: #b6c4de;
}
.blog-card__permalink {
  position: absolute;
  inset: 0;
  top: -50px;
  z-index: 2;
}
.blog-card__image {
  position: relative;
  aspect-ratio: 1;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -50px;
  background-color: #ddd;
  border-radius: 20px;
  overflow: hidden;
}
.blog-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-card__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-size: 48px;
}
.blog-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.blog-card__badge--nieuws {
  background: #2196f3;
  color: white;
}
.blog-card__badge--blogs {
  background: #ff9800;
  color: white;
}
.blog-card__content {
  padding: 50px 30px;
}
.blog-card__date {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.blog-card__date i {
  margin-right: 5px;
}
.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #333;
  line-height: 1.4;
}
.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mid_page_banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.mid_page_banner__content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.mid_page_banner__text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  max-width: 80%;
  font-family: "liebling", sans-serif;
}
.mid_page_banner__text-container h1,
.mid_page_banner__text-container h2,
.mid_page_banner__text-container h3,
.mid_page_banner__text-container h4,
.mid_page_banner__text-container h5,
.mid_page_banner__text-container h6 {
  color: white;
  font-weight: 700;
  font-family: "liebling", sans-serif;
}
.mid_page_banner__text-container p {
  color: white;
  line-height: 1.6;
}
.mid_page_banner__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mid_page_banner__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mid_page_banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.mid_page_banner__divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1920px;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
  font-size: 0;
}
.mid_page_banner__divider--top {
  top: 0;
  transform: translateX(-50%) scaleY(-1);
}
.mid_page_banner__divider--bottom {
  bottom: 0;
}
.mid_page_banner__divider-svg {
  width: 100%;
  height: auto;
  display: block;
}

.services {
  position: relative;
  background-color: #000;
  overflow: hidden;
  margin-bottom: 10px;
  overflow-x: hidden;
}
.services .container {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 991px) {
  .services .container {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .services .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.services__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 43px;
  font-weight: 700;
  color: #fff;
  font-family: "liebling", sans-serif;
}
.services .row {
  row-gap: 30px;
}
@media (min-width: 992px) {
  .services__row--centered {
    justify-content: center;
  }
}
.services__block {
  background-color: #f2f5fa;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 25px;
}
.services__icon {
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.services__content h1,
.services__content h2,
.services__content h3,
.services__content h4,
.services__content h5,
.services__content h6 {
  color: #000;
  margin-bottom: 15px;
  font-weight: 700;
}
.services__content h3 {
  font-size: 25px;
}
.services__content p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 15px;
}
.services__content p:last-child {
  margin-bottom: 0;
}
.services__content ul,
.services__content ol {
  text-align: left;
  padding-left: 20px;
}
.services__content ul li,
.services__content ol li {
  color: #000;
  line-height: 1.6;
  margin-bottom: 8px;
}
.services__divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
  font-size: 0;
  margin-bottom: -5px;
}
.services__divider--top {
  top: 0;
  margin-top: -1px;
  margin-bottom: 0;
}
.services__divider--bottom {
  bottom: 0;
  margin-top: -5px;
  transform: translateX(-50%) scale(-1, -1);
}
.services__divider-svg {
  width: 100%;
  min-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}
@media (max-width: 575px) {
  .services__divider-svg {
    margin-bottom: -1px;
  }
}

.customer_service_faq__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  font-family: "liebling", sans-serif;
}
.customer_service_faq__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .customer_service_faq__categories {
    grid-template-columns: 1fr;
  }
}
.customer_service_faq__category {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.customer_service_faq__category.hidden {
  display: none;
}
.customer_service_faq__category-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  font-family: "liebling", sans-serif;
}
.customer_service_faq__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.customer_service_faq__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #000;
}
.customer_service_faq__item.hidden {
  display: none;
}
.customer_service_faq__item:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #000;
  text-decoration: none;
}
.customer_service_faq__item h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  flex: 1;
}
.customer_service_faq__item svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #3129b9;
}
.customer_service_faq__item:hover svg {
  transform: translateX(5px);
}
@media (max-width: 992px) {
  .customer_service_faq__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .customer_service_faq__category {
    padding: 20px;
  }
  .customer_service_faq__category-title {
    font-size: 24px;
  }
  .customer_service_faq__item h4 {
    font-size: 16px;
  }
}

.csr_block {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.csr_block__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.csr_block__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.csr_block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.csr_block__content-wrapper {
  position: relative;
  z-index: 3;
  width: 50vw;
  margin-left: 50vw;
  padding: 200px 100px;
}
@media (max-width: 1199px) {
  .csr_block__content-wrapper {
    width: 100%;
    margin-left: 0;
    padding: 150px 30px;
  }
}
.csr_block__content {
  margin-bottom: 30px;
}
.csr_block__content h1,
.csr_block__content h2,
.csr_block__content h3,
.csr_block__content h4,
.csr_block__content h5,
.csr_block__content h6 {
  margin: 0 0 15px 0;
  color: #fff;
  font-weight: 700;
  font-family: "liebling", sans-serif;
}
.csr_block__content h2 {
  font-size: 40px;
}
.csr_block__content p {
  color: #fff;
  line-height: 27px;
  font-size: 18px;
  margin-bottom: 20px;
}
.csr_block__content p:last-child {
  margin-bottom: 0;
}
.csr_block__content ul {
  list-style: none;
  padding-left: 0;
}
.csr_block__content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 27px;
  font-size: 18px;
  font-family: "liebling", sans-serif;
}
.csr_block__content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
.csr_block__button-wrapper {
  margin-top: 25px;
}
.csr_block__items-container {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}
.csr_block__items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .csr_block__items-grid {
    gap: 15px;
  }
}
.csr_block__item {
  text-align: center;
  transition: transform 0.3s ease;
}
.csr_block__item:hover {
  transform: translateY(-5px);
}
.csr_block__item-image {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 12px;
}
.csr_block__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.csr_block__item:hover .csr_block__item-image img {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .csr_block__item-image {
    height: 120px;
    border-radius: 12px;
  }
}
@media (max-width: 768px) {
  .csr_block__item-image {
    height: 100px;
    border-radius: 10px;
  }
}
.csr_block__item-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: "liebling", sans-serif;
}
@media (max-width: 992px) {
  .csr_block__item-title {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .csr_block__item-title {
    font-size: 14px;
  }
}
.csr_block__divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1920px;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
  font-size: 0;
}
.csr_block__divider--top {
  top: 0;
  transform: translateX(-50%) scaleY(-1);
}
.csr_block__divider--bottom {
  bottom: 0;
}
.csr_block__divider-svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 992px) {
  .csr_block {
    min-height: 400px;
  }
}

.zandloper {
  position: relative;
  overflow: visible;
}
.zandloper__wrapper {
  position: relative;
  background-color: #000;
  border-radius: 30px;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 60px;
}
@media (max-width: 1199px) {
  .zandloper__wrapper {
    padding: 60px 40px;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .zandloper__wrapper {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    gap: 40px;
  }
}
.zandloper__column {
  position: relative;
}
.zandloper__content h1,
.zandloper__content h2,
.zandloper__content h3,
.zandloper__content h4,
.zandloper__content h5,
.zandloper__content h6 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "liebling", sans-serif;
}
.zandloper__content h2 {
  font-size: 40px;
}
@media (max-width: 992px) {
  .zandloper__content h2 {
    font-size: 32px;
  }
}
.zandloper__content h3 {
  font-size: 32px;
}
@media (max-width: 992px) {
  .zandloper__content h3 {
    font-size: 26px;
  }
}
.zandloper__content p {
  color: #fff;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 20px;
}
.zandloper__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .zandloper__content p {
    font-size: 16px;
  }
}
.zandloper__content ul,
.zandloper__content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}
.zandloper__content ul li,
.zandloper__content ol li {
  color: #fff;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .zandloper__content ul li,
  .zandloper__content ol li {
    font-size: 16px;
  }
}
.zandloper__content ul {
  list-style: disc;
}
.zandloper__content a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.zandloper__content a:hover {
  opacity: 0.8;
}

.team {
  position: relative;
}
.team .row {
  row-gap: 40px;
}
@media (max-width: 992px) {
  .team .row {
    row-gap: 30px;
  }
}
.team__content {
  text-align: left;
  margin-bottom: 40px;
}
.team__content h1,
.team__content h2,
.team__content h3,
.team__content h4,
.team__content h5,
.team__content h6 {
  font-weight: 700;
  font-family: "liebling", sans-serif;
}
.team__content h2 {
  font-size: 43px;
}
@media (max-width: 992px) {
  .team__content h2 {
    font-size: 35px;
  }
}
.team__content p {
  line-height: 1.7;
  font-size: 18px;
  color: black;
}
.team__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .team__content p {
    font-size: 16px;
  }
}
.team__member {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}
.team__member:hover {
  transform: translateY(-5px);
}
.team__member-image {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  overflow: hidden;
  border-radius: 15px;
}
.team__member-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.team__member:hover .team__member-image img {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .team__member-image {
    border-radius: 12px;
  }
}
.team__member-content {
  text-align: left;
}
.team__member-content h1,
.team__member-content h2,
.team__member-content h3,
.team__member-content h4,
.team__member-content h5,
.team__member-content h6 {
  font-weight: 700;
  font-family: "liebling", sans-serif;
}
.team__member-content h3 {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 0px;
}
@media (max-width: 992px) {
  .team__member-content h3 {
    font-size: 20px;
  }
}
.team__member-content h4 {
  font-size: 18px;
}
@media (max-width: 992px) {
  .team__member-content h4 {
    font-size: 16px;
  }
}
.team__member-content p {
  line-height: 1.6;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0;
}
.team__member-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .team__member-content p {
    font-size: 14px;
  }
}
.team__member-content a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.team__member-content a:hover {
  opacity: 0.7;
}

.btn, .owl-nav .owl-prev,
.owl-nav .owl-next, .btn-outline, .btn-secondary,
.btn-primary {
  display: inline-block;
  padding: 10px 25px !important;
  border-radius: 10px;
  border: 0px solid transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  background-color: var(--button-primary-color);
  color: white;
  font-weight: 600;
  position: relative;
}
.btn:after, .owl-nav .owl-prev:after,
.owl-nav .owl-next:after, .btn-outline:after, .btn-secondary:after,
.btn-primary:after {
  content: "";
  position: absolute;
  border-radius: 10px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  z-index: -1;
  background: #ffd9db;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
@media (max-width: 992px) {
  .btn, .owl-nav .owl-prev,
  .owl-nav .owl-next, .btn-outline, .btn-secondary,
  .btn-primary {
    font-size: 18px;
  }
}
.btn:hover, .owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover, .btn-outline:hover, .btn-secondary:hover,
.btn-primary:hover {
  background-color: var(--button-primary-hover-color);
  box-shadow: 0 0 0 3px #21468b, 0 0 0 6px #ffffff, 0 0 0 9px #ae1c28;
}
.btn:hover:after, .owl-nav .owl-prev:hover:after,
.owl-nav .owl-next:hover:after, .btn-outline:hover:after, .btn-secondary:hover:after,
.btn-primary:hover:after {
  width: 60%;
  height: 60%;
}
.btn a, .owl-nav .owl-prev a,
.owl-nav .owl-next a, .btn-outline a, .btn-secondary a,
.btn-primary a {
  color: var(--button-primary-text-color) !important;
  text-decoration: none;
}

.owl-button {
  cursor: pointer;
}
.owl-button:hover {
  background-color: var(--button-primary-hover-color);
}

.btn-secondary {
  background-color: var(--button-secondary-color);
  color: var(--button-secondary-text-color);
}
.btn-secondary:hover {
  background-color: var(--button-secondary-hover-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--button-outline-color);
  color: var(--button-outline-color);
}
.btn-outline:hover {
  background-color: var(--button-outline-color);
  color: var(--button-outline-text-color);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 10px 25px !important;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
  background-color: #008053;
  position: relative;
}
.btn-pill--green {
  background-color: #008053;
  border: solid 2px white;
}
.btn-pill--green:hover {
  background-color: rgb(0, 87.2, 56.54375);
  border: transparent;
  box-shadow: 0 0 0 3px #21468b, 0 0 0 6px #ffffff, 0 0 0 9px #ae1c28;
}
.btn-pill--green .btn-pill__arrow svg {
  color: #008053;
}
.btn-pill--blue {
  background-color: #b6c4de;
  border: solid 2px white;
  color: black;
}
.btn-pill--blue:hover {
  background-color: rgb(153.9018867925, 173.2905660377, 209.2981132075);
  border: transparent;
  box-shadow: 0 0 0 3px #21468b, 0 0 0 6px #ffffff, 0 0 0 9px #ae1c28;
}
.btn-pill--blue .btn-pill__arrow svg {
  color: black;
}
.btn-pill__text {
  flex: 0 0 auto;
  font-size: 19px;
  font-family: "liebling", sans-serif;
  font-weight: 200;
}
.btn-pill__arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.btn-pill__arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.btn-pill:hover .btn-pill__arrow {
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .btn-pill {
    font-size: 14px;
    padding: 0.65rem 0.85rem 0.65rem 1.5rem;
    gap: 1rem;
  }
  .btn-pill__arrow {
    width: 35px;
    height: 35px;
  }
  .btn-pill__arrow svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 992px) {
  .searchbar {
    width: 100%;
  }
}
.searchbar__form {
  display: flex;
  align-items: center;
  background-color: rgb(235, 235, 235);
  border-radius: 100px;
  padding: 0.7em 1.2em;
  margin-bottom: 0;
}
.searchbar__input::-moz-placeholder {
  border: none;
  background-color: transparent;
  outline: none;
  color: rgb(109, 109, 109);
  font-size: 16px;
}
.searchbar__input, .searchbar__button, .searchbar__input::placeholder {
  border: none;
  background-color: transparent;
  outline: none;
  color: rgb(109, 109, 109);
  font-size: 16px;
}

footer {
  background: #030d1f;
}
footer .footer-main {
  padding-top: 4em;
  padding-bottom: 4em;
  position: relative;
}
footer .footer-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: linear-gradient(to bottom, #ae1c28 0px, #ae1c28 3px, #ffffff 3px, #ffffff 6px, #21468b 6px, #21468b 9px);
  z-index: 10;
  pointer-events: none;
}
footer .footer-main * {
  color: white;
  text-decoration: none;
  font-family: "liebling", sans-serif;
  font-size: 17px !important;
}
footer .footer-main h3 {
  color: #0098f2;
}
footer .footer-main .footer-logo a {
  display: block;
  text-decoration: none;
}
footer .footer-main .footer-logo svg {
  max-height: 220px;
  width: auto;
}
footer .footer-main .footer-logo #compass {
  transform-origin: 138px 138px;
  transition: transform 0.3s ease;
}
footer .footer-main .footer-logo a:hover #compass {
  transform: rotate(20deg);
}
footer .footer-main .footer-section {
  padding: 1em;
}
footer .footer-main .footer-section--consument {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
footer .footer-main .footer-section a {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
footer .footer-main .footer-section a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #686e78;
  transition: width 0.4s ease;
}
footer .footer-main .footer-section a:hover {
  color: var(--link-color);
}
footer .footer-main .footer-section a:hover::after {
  width: 100%;
}
footer .footer-main .footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 1em;
}
footer .footer-main .footer-socials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  padding: 7px;
  background-color: #b6c4de;
  border-radius: 50%;
  position: relative;
}
footer .footer-main .footer-socials__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0px #21468b, 0 0 0 0px #ffffff, 0 0 0 0px #ae1c28;
  transition: box-shadow 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
footer .footer-main .footer-socials__link::after {
  display: none !important;
}
footer .footer-main .footer-socials__link:hover::before {
  animation: dutchBorderGrow 0.3s ease forwards;
}
@keyframes dutchBorderGrow {
  0% {
    box-shadow: 0 0 0 0px #21468b, 0 0 0 0px #ffffff, 0 0 0 0px #ae1c28;
  }
  100% {
    box-shadow: 0 0 0 3px #21468b, 0 0 0 6px #ffffff, 0 0 0 9px #ae1c28;
  }
}
footer .footer-main .footer-socials__icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.bottom-footer {
  width: 100%;
  background-color: #030d1f;
  padding: 2em;
}
@media (max-width: 992px) {
  .bottom-footer {
    padding: 1.5em;
  }
}
@media (max-width: 768px) {
  .bottom-footer {
    padding: 1em;
  }
}
.bottom-footer * {
  color: white;
  text-decoration: none;
  font-family: "liebling", sans-serif;
  font-size: 17px !important;
}
@media (max-width: 768px) {
  .bottom-footer * {
    font-size: 15px !important;
  }
}
.bottom-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
@media (max-width: 992px) {
  .bottom-footer__content {
    gap: 0.75em;
  }
}
@media (max-width: 768px) {
  .bottom-footer__content {
    flex-direction: column;
    text-align: center;
    gap: 0.5em;
  }
}
.bottom-footer a {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
.bottom-footer a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #686e78;
  transition: width 0.4s ease;
}
.bottom-footer a:hover {
  color: var(--link-color);
}
.bottom-footer a:hover::after {
  width: 100%;
}
.bottom-footer a.dune-pebbler-link::after {
  display: none;
}
.bottom-footer .dune-pebbler-logo {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.bottom-footer .dune-pebbler-logo svg {
  width: 40px;
  height: 40px;
  display: block;
}
.bottom-footer .dune-pebbler-logo svg .cls-1 {
  fill: #ffffff;
}
.bottom-footer .dune-pebbler-logo:hover {
  transform: scale(1.05);
}

#gform_wrapper_3 {
  width: 100%;
}

.gform_fields {
  row-gap: 20px !important;
}

header.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(3, 13, 30, 0.5), transparent);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, position 0.3s ease;
}
header.main-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: linear-gradient(to bottom, #ae1c28 0px, #ae1c28 3px, #ffffff 3px, #ffffff 6px, #21468b 6px, #21468b 9px);
  z-index: 1002;
  pointer-events: none;
}
header.main-header.scrolled {
  position: fixed;
}
header.main-header .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
header.main-header .nav-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1001;
}
@media (max-width: 992px) {
  header.main-header .nav-main {
    grid-template-columns: auto 1fr auto;
    padding-right: 0;
  }
}
header.main-header .nav-logo__link {
  display: block;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
header.main-header .nav-logo__link::after {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url("../images/windroos-los.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  position: absolute;
  left: -50%;
  top: -100%;
}
header.main-header .nav-logo__link:hover::after {
  transform: rotate(20deg);
}
header.main-header .nav-logo__img {
  max-height: 60px;
  width: auto;
}
header.main-header .nav-center {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  header.main-header .nav-center {
    display: none;
  }
}
header.main-header .nav-center__menu {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateX(-60px);
}
header.main-header .nav-center__menu li {
  display: flex;
  align-items: center;
}
header.main-header .nav-center__menu li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-family: "liebling", sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
header.main-header .nav-center__menu li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
header.main-header .nav-center__menu li a:hover::after {
  width: 100%;
}
header.main-header .nav-center__menu li.current-menu-item a, header.main-header .nav-center__menu li.current_page_item a {
  color: #ffffff;
  font-weight: 500;
}
header.main-header .nav-center__menu li.current-menu-item a::after, header.main-header .nav-center__menu li.current_page_item a::after {
  width: 100%;
}
header.main-header .nav-hamburger {
  justify-self: end;
}
header.main-header .nav-hamburger__button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50px;
  height: 50px;
}
@media (max-width: 992px) {
  header.main-header .nav-hamburger__button {
    padding-right: 0;
  }
}
header.main-header .nav-hamburger__icon {
  width: 40px;
  height: auto;
  transition: opacity 0.3s ease, transform 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
  fill: #ffffff;
  stroke: #ffffff;
}
header.main-header .nav-hamburger__icon--open {
  opacity: 1;
  transform: scale(1);
}
header.main-header .nav-hamburger__icon--close {
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
}
header.main-header .nav-hamburger__button.is-active .nav-hamburger__icon--open {
  opacity: 0;
  transform: scale(0.8);
}
header.main-header .nav-hamburger__button.is-active .nav-hamburger__icon--close {
  opacity: 1;
  transform: scale(1);
}
header.main-header .nav-menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #030d1f;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}
header.main-header .nav-menu-mobile.is-active {
  transform: translateY(0);
}
header.main-header .nav-menu-mobile.is-active .nav-menu-mobile__menu > li {
  opacity: 1;
  transform: translateX(0);
}
header.main-header .nav-menu-mobile__content {
  padding: 120px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
header.main-header .nav-menu-mobile__menu-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
header.main-header .nav-menu-mobile__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
header.main-header .nav-menu-mobile__menu > li {
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(1) {
  transition-delay: 0.08s;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(2) {
  transition-delay: 0.16s;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(3) {
  transition-delay: 0.24s;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(4) {
  transition-delay: 0.32s;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(5) {
  transition-delay: 0.4s;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(6) {
  transition-delay: 0.48s;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(7) {
  transition-delay: 0.56s;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(8) {
  transition-delay: 0.64s;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(9) {
  transition-delay: 0.72s;
}
header.main-header .nav-menu-mobile__menu > li:nth-child(10) {
  transition-delay: 0.8s;
}
header.main-header .nav-menu-mobile__menu > li > a {
  text-decoration: none;
  color: #ffffff;
  font-size: 40px;
  font-family: "liebling", sans-serif;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
}
header.main-header .nav-menu-mobile__menu > li > a:hover {
  color: #b6c4de;
}
header.main-header .nav-menu-mobile__menu > li.current-menu-item > a, header.main-header .nav-menu-mobile__menu > li.current_page_item > a {
  color: #b6c4de;
}
header.main-header .nav-menu-mobile__menu > li.menu-item-has-children > a {
  position: relative;
  padding-right: 50px;
}
header.main-header .nav-menu-mobile__menu > li.menu-item-has-children > a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
header.main-header .nav-menu-mobile__menu > li.menu-item-has-children > a:hover::after {
  opacity: 1;
}
@media (max-width: 992px) {
  header.main-header .nav-menu-mobile__menu > li.menu-item-has-children > a {
    padding-right: 0;
  }
  header.main-header .nav-menu-mobile__menu > li.menu-item-has-children > a::after {
    display: none;
  }
}
header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-family: "liebling", sans-serif;
  font-weight: bold;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
  position: relative;
}
header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu li a:hover {
  color: #b6c4de;
}
header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu li.current-menu-item a, header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu li.current_page_item a {
  color: #b6c4de;
}
@media (min-width: 992px) {
  header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 300px;
    margin-left: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
  header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu li a {
    font-size: 28px;
  }
  header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu li a:hover {
    padding-left: 10px;
  }
}
@media (max-width: 992px) {
  header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu {
    margin-top: 10px;
    padding-left: 40px;
  }
  header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu li a {
    font-size: 24px;
  }
  header.main-header .nav-menu-mobile__menu > li.menu-item-has-children .sub-menu li a:hover {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  header.main-header .nav-menu-mobile__menu > li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
header.main-header .nav-menu-mobile__payoff {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-image: url("../images/ouwehand-payoff.svg");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 992px) {
  header.main-header .nav-menu-mobile__payoff {
    display: none;
  }
}

.socials__link {
  text-decoration: none;
}

.card {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2em;
  border: 1px solid rgb(244, 244, 244);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
  background-color: rgba(255, 255, 255, 0.73);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}
.card:hover {
  border: 1px solid rgb(236, 236, 236);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.card__image {
  width: 100%;
  height: 200px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__title {
  text-align: center;
  margin: 0;
  margin-top: 1em;
}
.card__button {
  display: block;
  margin-left: auto;
}

.announcement-banner {
  width: 100%;
  padding: 12px 0;
  text-align: center;
  position: relative;
  z-index: 1000;
}
.announcement-banner__content {
  font-size: 14px;
  line-height: 1.4;
}
.announcement-banner__content a {
  color: inherit;
  text-decoration: underline;
}
.announcement-banner__content a:hover {
  text-decoration: none;
}
.announcement-banner__content p {
  margin: 0;
}
.announcement-banner__content p:not(:last-child) {
  margin-bottom: 8px;
}
.announcement-banner__content h1,
.announcement-banner__content h2,
.announcement-banner__content h3,
.announcement-banner__content h4,
.announcement-banner__content h5,
.announcement-banner__content h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
@media (max-width: 768px) {
  .announcement-banner {
    padding: 8px 0;
  }
  .announcement-banner__content {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .announcement-banner {
    padding: 6px 0;
  }
  .announcement-banner__content {
    font-size: 12px;
  }
}

section.error-404 {
  padding: 5em 0;
}

.single-product {
  position: relative;
}
.single-product__windroos {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  width: auto;
  z-index: 5;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 0.1s ease-out;
}
@media (max-width: 992px) {
  .single-product__windroos {
    display: none;
  }
}
.single-product__wrapper {
  display: flex;
  width: 100%;
}
@media (max-width: 992px) {
  .single-product__wrapper {
    flex-direction: column;
  }
}
.single-product__content {
  width: 50vw;
  position: sticky;
  bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 4em;
  padding-bottom: 4em;
}
@media (max-width: 992px) {
  .single-product__content {
    position: relative;
    min-height: auto;
    width: 100%;
    padding: 2em 1em;
  }
}
.single-product__images-wrapper {
  width: 50vw;
  line-height: 0;
  position: sticky;
  bottom: 0;
  min-height: 100vh;
  align-self: flex-end;
  z-index: 10;
}
@media (max-width: 992px) {
  .single-product__images-wrapper {
    position: relative;
    min-height: auto;
    width: 100%;
  }
}
.single-product__images {
  display: flex;
  flex-direction: column;
  line-height: 0;
}
.single-product__image {
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}
.single-product__image:last-child {
  margin-bottom: -1px;
}
.single-product__image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}
.single-product__title {
  font-size: 2.5rem;
  margin-bottom: 1em;
  color: var(--title-color);
}
@media (max-width: 992px) {
  .single-product__title {
    font-size: 2rem;
  }
}
.single-product__product-number {
  font-size: 14px;
  font-family: "liebling", sans-serif;
  color: #666;
  margin-bottom: 1.5em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .single-product__product-number {
    font-size: 13px;
    margin-bottom: 1em;
  }
}
.single-product__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--paragraph-color);
  padding-top: 100px;
}
.single-product__text p {
  margin-bottom: 1em;
}
.single-product__text h1,
.single-product__text h2,
.single-product__text h3,
.single-product__text h4 {
  color: #000;
}
.single-product__text h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.single-product__text h3 {
  font-size: 25px;
  font-weight: 500;
  font-family: "gimlet-display", serif;
  margin-top: 0;
}
.single-product__text ul,
.single-product__text ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.single-product__ingredienten {
  margin: 45px 0px;
}
.single-product__ingredienten-content p,
.single-product__ingredienten-content li,
.single-product__ingredienten-content ul,
.single-product__ingredienten-content ol,
.single-product__ingredienten-content span,
.single-product__ingredienten-content div {
  font-size: 17px;
  line-height: 1.6;
  font-family: "liebling", sans-serif;
  color: #030d1f;
}
.single-product__ingredienten-content ul,
.single-product__ingredienten-content ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
  color: #030d1f;
}
.single-product__ingredienten-content p {
  margin-bottom: 1em;
  color: #030d1f;
}
.single-product__ingredienten-content h3 {
  margin-top: 0px;
}
.single-product__voedingswaarden {
  margin: 45px 0px;
  background-color: #f2f5fa;
  padding: 2em;
  border-radius: 8px;
  box-sizing: border-box;
}
.single-product__voedingswaarden-content p,
.single-product__voedingswaarden-content li,
.single-product__voedingswaarden-content ul,
.single-product__voedingswaarden-content ol,
.single-product__voedingswaarden-content span,
.single-product__voedingswaarden-content div {
  font-size: 17px;
  line-height: 1.6;
  font-family: "liebling", sans-serif;
  color: #030d1f;
}
.single-product__voedingswaarden-content ul,
.single-product__voedingswaarden-content ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.single-product__voedingswaarden-content p {
  margin-bottom: 1em;
}
.single-product__info-section {
  margin: 45px 0px;
}
.single-product__info-section ul,
.single-product__info-section ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
  color: #030d1f;
  font-family: "liebling", sans-serif;
  font-size: 17px;
}
.single-product__info-section p {
  margin-bottom: 1em;
  font-family: "liebling", sans-serif;
  font-size: 17px;
  color: #030d1f;
}
.single-product__info-section:last-child {
  margin-bottom: 0;
}
.single-product__info-content {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--paragraph-color);
}
.single-product__info-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 15px;
  margin-bottom: 45px;
  align-items: center;
  justify-content: start;
}
@media (max-width: 992px) {
  .single-product__info-logos {
    gap: 1.5em;
    justify-content: center;
  }
}
.single-product__info-logo {
  display: block;
  padding: 20px;
  background-color: #f2f5fa;
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.single-product__info-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.single-product__info-logo img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.single-product .btn-pill {
  margin-top: 2em;
  align-self: flex-start;
}
@media (max-width: 992px) {
  .single-product .btn-pill {
    margin-top: 1.5em;
  }
}

.single-recept {
  position: relative;
}
.single-recept__windroos {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  width: auto;
  z-index: 5;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 0.1s ease-out;
}
@media (max-width: 992px) {
  .single-recept__windroos {
    display: none;
  }
}
.single-recept__wrapper {
  display: flex;
  width: 100%;
}
@media (max-width: 992px) {
  .single-recept__wrapper {
    flex-direction: column;
  }
}
.single-recept__content {
  width: 50vw;
  position: sticky;
  bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 4em;
  padding-bottom: 4em;
  color: #030d1f;
}
@media (max-width: 992px) {
  .single-recept__content {
    position: relative;
    min-height: auto;
    width: 100%;
    padding: 2em 1em;
  }
}
.single-recept__images-wrapper {
  width: 50vw;
  line-height: 0;
  position: sticky;
  bottom: 0;
  min-height: 100vh;
  align-self: flex-end;
  z-index: 10;
}
@media (max-width: 992px) {
  .single-recept__images-wrapper {
    position: relative;
    min-height: auto;
    width: 100%;
  }
}
.single-recept__images {
  display: flex;
  flex-direction: column;
  line-height: 0;
}
.single-recept__images--single {
  height: 100vh;
}
.single-recept__images--single .single-recept__image {
  height: 100%;
  line-height: 0;
  font-size: 0;
}
.single-recept__images--single .single-recept__image:last-child {
  margin-bottom: 0;
}
.single-recept__images--single .single-recept__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}
.single-recept__image {
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}
.single-recept__image:last-child {
  margin-bottom: -1px;
}
.single-recept__image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}
.single-recept__title {
  font-size: 2.5rem;
  margin-bottom: 1em;
  color: var(--title-color);
}
@media (max-width: 992px) {
  .single-recept__title {
    font-size: 2rem;
  }
}
.single-recept__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--paragraph-color);
  padding-top: 100px;
}
.single-recept__text p {
  margin-bottom: 1em;
}
.single-recept__text h1,
.single-recept__text h2,
.single-recept__text h3,
.single-recept__text h4 {
  color: #000;
}
.single-recept__text h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.single-recept__text h3 {
  font-size: 25px;
  font-weight: 500;
  font-family: "gimlet-display", serif;
  margin-top: 0;
}
.single-recept__text ul,
.single-recept__text ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.single-recept__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  margin: 30px 0;
  padding: 20px;
  background-color: #f2f5fa;
  border-radius: 12px;
  justify-content: space-around;
}
@media (max-width: 992px) {
  .single-recept__meta {
    flex-direction: column;
    gap: 1em;
  }
}
.single-recept__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.single-recept__meta-label {
  font-size: 14px;
  font-family: "liebling", sans-serif;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.single-recept__meta-value {
  font-size: 16px;
  font-family: "liebling", sans-serif;
  font-weight: 500;
  color: #030d1f;
}
.single-recept__ingredienten {
  margin: 45px 0px;
  background-color: #f2f5fa;
  padding: 32px;
  border-radius: 20px;
}
.single-recept__ingredienten-content p,
.single-recept__ingredienten-content li,
.single-recept__ingredienten-content ul,
.single-recept__ingredienten-content ol,
.single-recept__ingredienten-content span,
.single-recept__ingredienten-content div {
  font-size: 17px;
  line-height: 1.6;
  font-family: "liebling", sans-serif;
  color: #030d1f;
}
.single-recept__ingredienten-content ul,
.single-recept__ingredienten-content ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
  color: #030d1f;
}
.single-recept__ingredienten-content p {
  margin-bottom: 1em;
  color: #030d1f;
}
.single-recept__ingredienten-content h3 {
  margin-top: 0px;
}
.single-recept__preparation {
  margin: 45px 0px;
}
.single-recept__preparation-content p,
.single-recept__preparation-content li,
.single-recept__preparation-content ul,
.single-recept__preparation-content ol,
.single-recept__preparation-content span,
.single-recept__preparation-content div {
  font-size: 17px;
  line-height: 1.6;
  font-family: "liebling", sans-serif;
  color: #030d1f;
}
.single-recept__preparation-content ul,
.single-recept__preparation-content ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.single-recept__preparation-content ol li::marker {
  font-size: 32px;
  font-weight: 700;
  font-family: "liebling", sans-serif;
  color: #030d1f;
}
.single-recept__preparation-content p {
  margin-bottom: 1em;
}
.single-recept__preparation-content h3 {
  margin-top: 0px;
}
.single-recept .btn-pill {
  margin-top: 2em;
  align-self: flex-start;
}
@media (max-width: 992px) {
  .single-recept .btn-pill {
    margin-top: 1.5em;
  }
}

.recepten-search {
  padding: 80px 0 120px;
  min-height: 70vh;
}
@media (max-width: 768px) {
  .recepten-search {
    padding: 60px 0 80px;
  }
}
.recepten-search__header {
  text-align: center;
  margin-bottom: 40px;
}
.recepten-search__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #333;
  font-family: "liebling", sans-serif;
}
.recepten-search__query {
  color: #21468b;
  font-style: italic;
}
.recepten-search__count {
  font-size: 16px;
  color: #666;
  margin: 0;
  font-weight: 500;
}
.recepten-search__search-bar {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 15px;
}
.recepten-search__form {
  width: 100%;
}
.recepten-search__search-wrapper {
  position: relative;
  width: 100%;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.recepten-search__search-wrapper:focus-within {
  box-shadow: 0 6px 30px rgba(33, 70, 139, 0.2);
  transform: translateY(-2px);
}
.recepten-search__search-input {
  width: 100%;
  padding: 20px 180px 20px 30px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  background: white;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .recepten-search__search-input {
    padding: 18px 120px 18px 24px;
    font-size: 16px;
  }
}
.recepten-search__search-input:focus {
  outline: none;
  border-color: #21468b;
}
.recepten-search__search-input::-moz-placeholder {
  color: #999;
}
.recepten-search__search-input::placeholder {
  color: #999;
}
.recepten-search__search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  background: #21468b;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .recepten-search__search-btn {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
  }
}
.recepten-search__search-btn:hover {
  background: #1a3769;
  transform: translateY(-50%) scale(1.02);
}
.recepten-search__search-btn:active {
  transform: translateY(-50%) scale(0.98);
}
.recepten-search__search-btn i {
  font-size: 16px;
}
@media (max-width: 576px) {
  .recepten-search__search-btn i {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .recepten-search__search-btn-text {
    display: none;
  }
}
.recepten-search__results {
  margin-top: 40px;
}
.recepten-search__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  padding-top: 50px;
}
@media (max-width: 992px) {
  .recepten-search__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .recepten-search__grid {
    grid-template-columns: 1fr;
  }
}
.recepten-search__pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.recepten-search__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.recepten-search__pagination .page-numbers li {
  display: inline-block;
}
.recepten-search__pagination .page-numbers a,
.recepten-search__pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #666;
  background: white;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  text-decoration: none;
}
.recepten-search__pagination .page-numbers a:hover,
.recepten-search__pagination .page-numbers span:hover {
  border-color: #21468b;
  color: #21468b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 70, 139, 0.15);
}
.recepten-search__pagination .page-numbers .current {
  background: #21468b;
  color: white;
  border-color: #21468b;
  pointer-events: none;
}
.recepten-search__pagination .page-numbers .dots {
  border: none;
  background: transparent;
  pointer-events: none;
  color: #999;
}
.recepten-search__no-results {
  text-align: center;
  padding: 80px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.recepten-search__no-results-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f5fa;
  border-radius: 50%;
  color: #21468b;
  font-size: 32px;
}
.recepten-search__no-results-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #333;
  font-family: "liebling", sans-serif;
}
.recepten-search__no-results-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 30px 0;
}
.recepten-search__prompt {
  text-align: center;
  padding: 100px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.recepten-search__prompt-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #21468b 0%, #1a3769 100%);
  border-radius: 50%;
  color: white;
  font-size: 40px;
  box-shadow: 0 8px 30px rgba(33, 70, 139, 0.3);
}
.recepten-search__prompt-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #333;
  font-family: "liebling", sans-serif;
}
.recepten-search__prompt-text {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.flex, .flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start, .flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start, .flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start, .flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start, .flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start, .flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col, .flex-col-end, .flex-col-start, .flex-col-start-center {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

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

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

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

.self-stretch {
  align-self: stretch;
}

.self-baseline {
  align-self: baseline;
}

.order-first {
  order: -9999;
}

.order-last {
  order: 9999;
}

.order-none {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

/* Gap */
.gap-0 {
  gap: 0rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.gap-6 {
  gap: 6rem;
}

/* Column Gap */
.gap-x-0 {
  -moz-column-gap: 0rem;
       column-gap: 0rem;
}

.gap-x-1 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-2 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-x-3 {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.gap-x-4 {
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.gap-x-5 {
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.gap-x-6 {
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

/* Row Gap */
.gap-y-0 {
  row-gap: 0rem;
}

.gap-y-1 {
  row-gap: 1rem;
}

.gap-y-2 {
  row-gap: 2rem;
}

.gap-y-3 {
  row-gap: 3rem;
}

.gap-y-4 {
  row-gap: 4rem;
}

.gap-y-5 {
  row-gap: 5rem;
}

.gap-y-6 {
  row-gap: 6rem;
}

.flex, .flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start, .flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start, .flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start, .flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start, .flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start, .flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  justify-content: center;
  align-items: center;
}

.flex-center-start {
  align-items: flex-start;
}

.flex-center-end {
  align-items: flex-end;
}

.flex-center-stretch {
  align-items: stretch;
}

.flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start {
  justify-content: space-between;
}

.flex-between-start {
  align-items: flex-start;
}

.flex-between-end {
  align-items: flex-end;
}

.flex-between-stretch {
  align-items: stretch;
}

.flex-between-center {
  align-items: center;
}

.flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start {
  justify-content: space-around;
}

.flex-around-start {
  align-items: flex-start;
}

.flex-around-end {
  align-items: flex-end;
}

.flex-around-stretch {
  align-items: stretch;
}

.flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start {
  justify-content: space-evenly;
}

.flex-evenly-start {
  align-items: flex-start;
}

.flex-evenly-end {
  align-items: flex-end;
}

.flex-evenly-stretch {
  align-items: stretch;
}

.flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start {
  justify-content: flex-start;
}

.flex-start-start {
  align-items: flex-start;
}

.flex-start-end {
  align-items: flex-end;
}

.flex-start-stretch {
  align-items: stretch;
}

.flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start {
  justify-content: flex-end;
}

.flex-end-start {
  align-items: flex-start;
}

.flex-end-end {
  align-items: flex-end;
}

.flex-end-stretch {
  align-items: stretch;
}

.flex-end-center {
  align-items: center;
}

.flex-col, .flex-col-end, .flex-col-start, .flex-col-start-center,
.flex-col-center,
.flex-col-between-center,
.flex-col-end-center {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.flex-col-start, .flex-col-start-center {
  align-items: flex-start;
}

.flex-col-start-center {
  justify-content: center;
}

.flex-col-end {
  align-items: flex-end;
}

.flex-col-end-center {
  justify-content: flex-end;
}

.flex-col-between-center {
  justify-content: space-between;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-075 {
  gap: 0.75rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.gap-6 {
  gap: 6rem;
}

.row-gap-05 {
  row-gap: 0.5rem;
}

.row-gap-075 {
  row-gap: 0.75rem;
}

.row-gap-1 {
  row-gap: 1rem;
}

.row-gap-2 {
  row-gap: 2rem;
}

.row-gap-3 {
  row-gap: 3rem;
}

.row-gap-4 {
  row-gap: 4rem;
}

.row-gap-5 {
  row-gap: 5rem;
}

.row-gap-6 {
  row-gap: 6rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-none {
  grid-template-columns: none;
}

.grid-cols-auto {
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.grid-cols-auto-1fr {
  grid-template-columns: auto 1fr;
}

.grid-cols-1fr-auto {
  grid-template-columns: 1fr auto;
}

.grid-cols-auto-2fr {
  grid-template-columns: auto 2fr;
}

.grid-cols-2fr-auto {
  grid-template-columns: 2fr auto;
}

.grid-cols-1fr-1fr {
  grid-template-columns: 1fr 1fr;
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.grid-rows-none {
  grid-template-rows: none;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-flow-row-dense {
  grid-auto-flow: row dense;
}

.grid-flow-col-dense {
  grid-auto-flow: column dense;
}

.auto-cols-auto {
  grid-auto-columns: auto;
}

.auto-cols-min {
  grid-auto-columns: min-content;
}

.auto-cols-max {
  grid-auto-columns: max-content;
}

.auto-cols-fr {
  grid-auto-columns: minmax(0, 1fr);
}

.auto-rows-auto {
  grid-auto-rows: auto;
}

.auto-rows-min {
  grid-auto-rows: min-content;
}

.auto-rows-max {
  grid-auto-rows: max-content;
}

.auto-rows-fr {
  grid-auto-rows: minmax(0, 1fr);
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-24 {
  gap: 6rem;
}

.gap-32 {
  gap: 8rem;
}

.gap-40 {
  gap: 10rem;
}

.gap-48 {
  gap: 12rem;
}

.gap-56 {
  gap: 14rem;
}

.gap-64 {
  gap: 16rem;
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.row-span-1 {
  grid-row: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.row-span-3 {
  grid-row: span 3/span 3;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.row-span-4 {
  grid-row: span 4/span 4;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.row-span-5 {
  grid-row: span 5/span 5;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.row-span-6 {
  grid-row: span 6/span 6;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.row-span-7 {
  grid-row: span 7/span 7;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

.row-span-8 {
  grid-row: span 8/span 8;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

.row-span-9 {
  grid-row: span 9/span 9;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

.row-span-10 {
  grid-row: span 10/span 10;
}

.col-span-11 {
  grid-column: span 11/span 11;
}

.row-span-11 {
  grid-row: span 11/span 11;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

.row-span-12 {
  grid-row: span 12/span 12;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-span-full {
  grid-row: 1/-1;
}

.col-start-1 {
  grid-column-start: 1;
}

.col-end-1 {
  grid-column-end: 1;
}

.row-start-1 {
  grid-row-start: 1;
}

.row-end-1 {
  grid-row-end: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.col-end-2 {
  grid-column-end: 2;
}

.row-start-2 {
  grid-row-start: 2;
}

.row-end-2 {
  grid-row-end: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.col-end-3 {
  grid-column-end: 3;
}

.row-start-3 {
  grid-row-start: 3;
}

.row-end-3 {
  grid-row-end: 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.col-end-4 {
  grid-column-end: 4;
}

.row-start-4 {
  grid-row-start: 4;
}

.row-end-4 {
  grid-row-end: 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.col-end-5 {
  grid-column-end: 5;
}

.row-start-5 {
  grid-row-start: 5;
}

.row-end-5 {
  grid-row-end: 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.col-end-6 {
  grid-column-end: 6;
}

.row-start-6 {
  grid-row-start: 6;
}

.row-end-6 {
  grid-row-end: 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.col-end-7 {
  grid-column-end: 7;
}

.row-start-7 {
  grid-row-start: 7;
}

.row-end-7 {
  grid-row-end: 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.col-end-8 {
  grid-column-end: 8;
}

.row-start-8 {
  grid-row-start: 8;
}

.row-end-8 {
  grid-row-end: 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.col-end-9 {
  grid-column-end: 9;
}

.row-start-9 {
  grid-row-start: 9;
}

.row-end-9 {
  grid-row-end: 9;
}

.col-start-10 {
  grid-column-start: 10;
}

.col-end-10 {
  grid-column-end: 10;
}

.row-start-10 {
  grid-row-start: 10;
}

.row-end-10 {
  grid-row-end: 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.col-end-11 {
  grid-column-end: 11;
}

.row-start-11 {
  grid-row-start: 11;
}

.row-end-11 {
  grid-row-end: 11;
}

.col-start-12 {
  grid-column-start: 12;
}

.col-end-12 {
  grid-column-end: 12;
}

.row-start-12 {
  grid-row-start: 12;
}

.row-end-12 {
  grid-row-end: 12;
}

.col-start-13 {
  grid-column-start: 13;
}

.col-end-13 {
  grid-column-end: 13;
}

.row-start-13 {
  grid-row-start: 13;
}

.row-end-13 {
  grid-row-end: 13;
}

.col-start-auto {
  grid-column-start: auto;
}

.col-end-auto {
  grid-column-end: auto;
}

.row-start-auto {
  grid-row-start: auto;
}

.row-end-auto {
  grid-row-end: auto;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.m-0 {
  margin: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.p-0 {
  padding: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.m-1 {
  margin: 0.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.p-1 {
  padding: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.p-3 {
  padding: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.p-4 {
  padding: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.p-5 {
  padding: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.m-8 {
  margin: 2rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-8 {
  margin-left: 2rem;
}

.p-8 {
  padding: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-8 {
  padding-left: 2rem;
}

.m-10 {
  margin: 2.5rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.p-10 {
  padding: 2.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.m-12 {
  margin: 3rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.ml-12 {
  margin-left: 3rem;
}

.p-12 {
  padding: 3rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pl-12 {
  padding-left: 3rem;
}

.m-16 {
  margin: 4rem;
}

.mx-16 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mr-16 {
  margin-right: 4rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.ml-16 {
  margin-left: 4rem;
}

.p-16 {
  padding: 4rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pr-16 {
  padding-right: 4rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pl-16 {
  padding-left: 4rem;
}

.m-20 {
  margin: 5rem;
}

.mx-20 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mr-20 {
  margin-right: 5rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.ml-20 {
  margin-left: 5rem;
}

.p-20 {
  padding: 5rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pr-20 {
  padding-right: 5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pl-20 {
  padding-left: 5rem;
}

.m-24 {
  margin: 6rem;
}

.mx-24 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.my-24 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mr-24 {
  margin-right: 6rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.ml-24 {
  margin-left: 6rem;
}

.p-24 {
  padding: 6rem;
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pr-24 {
  padding-right: 6rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pl-24 {
  padding-left: 6rem;
}

.m-32 {
  margin: 8rem;
}

.mx-32 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.my-32 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mr-32 {
  margin-right: 8rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.ml-32 {
  margin-left: 8rem;
}

.p-32 {
  padding: 8rem;
}

.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pr-32 {
  padding-right: 8rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.pl-32 {
  padding-left: 8rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.hidden {
  display: none;
}

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

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

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

@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }
  .sm\:hidden {
    display: none;
  }
  .sm\:w-full {
    width: 100%;
  }
  .sm\:w-auto {
    width: auto;
  }
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:flex-col {
    flex-direction: column;
  }
  .sm\:items-start {
    align-items: flex-start;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:items-end {
    align-items: flex-end;
  }
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-center {
    justify-content: center;
  }
  .sm\:justify-end {
    justify-content: flex-end;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  .md\:hidden {
    display: none;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .md\:flex {
    display: flex;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:flex-col {
    flex-direction: column;
  }
  .md\:items-start {
    align-items: flex-start;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:items-end {
    align-items: flex-end;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:justify-center {
    justify-content: center;
  }
  .md\:justify-end {
    justify-content: flex-end;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:w-full {
    width: 100%;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:flex-col {
    flex-direction: column;
  }
  .lg\:items-start {
    align-items: flex-start;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:items-end {
    align-items: flex-end;
  }
  .lg\:justify-start {
    justify-content: flex-start;
  }
  .lg\:justify-center {
    justify-content: center;
  }
  .lg\:justify-end {
    justify-content: flex-end;
  }
  .lg\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .xl\:block {
    display: block;
  }
  .xl\:hidden {
    display: none;
  }
  .xl\:w-full {
    width: 100%;
  }
  .xl\:w-auto {
    width: auto;
  }
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .xl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .xl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .xl\:flex {
    display: flex;
  }
  .xl\:flex-row {
    flex-direction: row;
  }
  .xl\:flex-col {
    flex-direction: column;
  }
  .xl\:items-start {
    align-items: flex-start;
  }
  .xl\:items-center {
    align-items: center;
  }
  .xl\:items-end {
    align-items: flex-end;
  }
  .xl\:justify-start {
    justify-content: flex-start;
  }
  .xl\:justify-center {
    justify-content: center;
  }
  .xl\:justify-end {
    justify-content: flex-end;
  }
  .xl\:justify-between {
    justify-content: space-between;
  }
}
.flex, .flex-center, .flex-center-start, .flex-center-end, .flex-center-stretch, .flex-between, .flex-between-start, .flex-between-end, .flex-between-stretch, .flex-between-center, .flex-around, .flex-around-start, .flex-around-end, .flex-around-stretch, .flex-evenly, .flex-evenly-start, .flex-evenly-end, .flex-evenly-stretch, .flex-start, .flex-start-start, .flex-start-end, .flex-start-stretch, .flex-end, .flex-end-start, .flex-end-end, .flex-end-stretch, .flex-end-center {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-center, .flex-center-start, .flex-center-end, .flex-center-stretch {
  justify-content: center;
  align-items: center;
}

.flex-center-start {
  align-items: flex-start;
}

.flex-center-end {
  align-items: flex-end;
}

.flex-center-stretch {
  align-items: stretch;
}

.flex-between, .flex-between-start, .flex-between-end, .flex-between-stretch, .flex-between-center {
  justify-content: space-between;
}

.flex-between-start {
  align-items: flex-start;
}

.flex-between-end {
  align-items: flex-end;
}

.flex-between-stretch {
  align-items: stretch;
}

.flex-between-center {
  align-items: center;
}

.flex-around, .flex-around-start, .flex-around-end, .flex-around-stretch {
  justify-content: space-around;
}

.flex-around-start {
  align-items: flex-start;
}

.flex-around-end {
  align-items: flex-end;
}

.flex-around-stretch {
  align-items: stretch;
}

.flex-evenly, .flex-evenly-start, .flex-evenly-end, .flex-evenly-stretch {
  justify-content: space-evenly;
}

.flex-evenly-start {
  align-items: flex-start;
}

.flex-evenly-end {
  align-items: flex-end;
}

.flex-evenly-stretch {
  align-items: stretch;
}

.flex-start, .flex-start-start, .flex-start-end, .flex-start-stretch {
  justify-content: flex-start;
}

.flex-start-start {
  align-items: flex-start;
}

.flex-start-end {
  align-items: flex-end;
}

.flex-start-stretch {
  align-items: stretch;
}

.flex-end, .flex-end-start, .flex-end-end, .flex-end-stretch, .flex-end-center {
  justify-content: flex-end;
}

.flex-end-start {
  align-items: flex-start;
}

.flex-end-end {
  align-items: flex-end;
}

.flex-end-stretch {
  align-items: stretch;
}

.flex-end-center {
  align-items: center;
}

.flex-col, .flex-col-start, .flex-col-start-center, .flex-col-end,
.flex-col-center,
.flex-col-end-center,
.flex-col-between-center {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.flex-col-start, .flex-col-start-center {
  align-items: flex-start;
}

.flex-col-start-center {
  justify-content: center;
}

.flex-col-end {
  align-items: flex-end;
}

.flex-col-end-center {
  justify-content: flex-end;
}

.flex-col-between-center {
  justify-content: space-between;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-075 {
  gap: 0.75rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.gap-6 {
  gap: 6rem;
}

.row-gap-05 {
  row-gap: 0.5rem;
}

.row-gap-075 {
  row-gap: 0.75rem;
}

.row-gap-1 {
  row-gap: 1rem;
}

.row-gap-2 {
  row-gap: 2rem;
}

.row-gap-3 {
  row-gap: 3rem;
}

.row-gap-4 {
  row-gap: 4rem;
}

.row-gap-5 {
  row-gap: 5rem;
}

.row-gap-6 {
  row-gap: 6rem;
}

.fill {
  width: 100%;
  height: 100%;
}

.fill-width, .w-full {
  width: 100%;
}

.fill-height {
  height: 100%;
}

.fluid-height {
  max-width: 100%;
  height: auto;
}

.fluid-width {
  max-height: 100%;
  width: auto;
}

.relative {
  position: relative;
}

.hide {
  display: none;
}

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

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.half-page-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}
@media (max-width: 1199px) {
  .half-page-left {
    position: relative;
    width: 100%;
    height: 420px;
  }
}

.half-page-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}
@media (max-width: 1199px) {
  .half-page-right {
    position: relative;
    width: 100%;
    height: 420px;
  }
}

.scroll-block {
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%;
}

/* Optional: Style for iOS devices to prevent elastic scrolling */
.scroll-block body {
  position: fixed;
  width: 100%;
}

picture > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.cover-height,
.cover-height img {
  height: 100%;
  width: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}

.contain,
.contain-width,
.contain img,
.contain-width img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contain-height .contain-height img {
  height: 100%;
  width: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.background,
.background-cover {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.background-contain {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.img-container {
  overflow: hidden;
  border-radius: 16px;
}

.p-b {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 576px) {
  .p-b {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-m {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 576px) {
  .p-m {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-s {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 576px) {
  .p-s {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.p-x {
  padding-top: 0px;
  padding-bottom: 0px;
}

.owl-stage-outer,
.owl-stage,
.owl-item {
  height: 100%;
  overflow: hidden;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  font-size: 28px;
}
.owl-nav .owl-prev {
  left: 0%;
}
.owl-nav .owl-next {
  right: 0%;
}/*# sourceMappingURL=main.css.map */