/*
Theme Name: Minimal Clean Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Een clean, minimalistisch WordPress thema zonder onnodige features
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-clean
*/

/* ===================================
   CSS VARIABLES - KLEUREN
=================================== */
:root {
    /* Neutraal */
    --color-darkblue: #03036A;
    --color-bg-light: #EDF6FF;
    --color-white: #FFFFFF;

    /* Primaire kleuren */
    --color-blue: #4DA9FF;
    --color-lightblue: #4DA9FF;
    /* alias */
    --color-pink: #EA00CE;

    /* Gradient: Blauw – Licht blauw – Roze */
    --color-gradient: linear-gradient(90deg, #4DA9FF 0%, #E4EAF5 50%, #FBDEF4 100%);

    /* Spacing */
    --spacing-white-sections: 125px;
    --spacing-sections: 100px;
    --spacing-sections-small: 50px;
    --spacing-title-body: 25px;
    --spacing-cards: 40px;
}

/* ===================================
   FONT FACES
=================================== */
@font-face {
    font-family: 'Chonk';
    src: url('fonts/Chonk.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chonk';
    src: url('fonts/Chonk-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Chonk Outlined';
    src: url('fonts/Chonk-Outlined.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chonk Outlined';
    src: url('fonts/Chonk-ItalicOutlined.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ===================================
   RESET & BASE STYLES
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #fff;
}

/* wrapper {
    display: flex;
    gap: 100px;
    flex-direction: column;
} */

/* ===================================
   TYPOGRAPHY
=================================== */

/* Paragraph Styling */
p {
    color: var(--color-darkblue);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: var(--spacing-title-body);
}

/* Footnote / Small body */
.footnote,
.small-body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--color-darkblue);
}

/* H2 Base Styling */
h2 {
    font-family: 'Chonk', sans-serif;
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 59px;
    margin-bottom: var(--spacing-title-body);
}

/* H2 Dark Blue */
h2.darkblue,
h2.dark-blue {
    color: var(--color-darkblue);
}

/* H2 Light Blue */
h2.lightblue,
h2.light-blue {
    color: var(--color-lightblue);
}

/* H3 Styling */
h3 {
    text-align: center;
    font-family: 'Chonk', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: var(--spacing-title-body);
}

h3.lightblue,
h3.light-blue {
    color: var(--color-lightblue);
}

/* H4 Styling */
h4 {
    font-family: 'Chonk', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.2px;
    margin-bottom: var(--spacing-title-body);
}

/* ===================================
   BUTTONS
=================================== */
button {
    border: 0;
}

/* Base Button Styling */
.button,
button,
input[type="submit"],
.wp-block-button__link,
a.button {
    display: inline-flex;
    height: 55px;
    width: fit-content;
    padding: 15px 35px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 957px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--color-darkblue);
}

/* Blue Button */
.button-blue,
.button.blue,
button.blue {
    background: var(--color-lightblue);
}

.button-blue:hover,
.button.blue:hover,
button.blue:hover {
    background: #3a96ec;
}

.kalender-icon::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-image: url('/wp-content/uploads/2026/03/iconmonstr-calendar-3-1.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

nav.navigation-bar__nav {
    border-bottom: 1px solid var(--color-blue);
    padding-block: 40px;
}

/* Pink Button */
.button-pink,
.button.pink,
button.pink {
    background: var(--color-pink);
}

.button-pink:hover,
.button.pink:hover,
button.pink:hover {
    background: #c800ad;
}

/* Outline button */

.button-outline,
.button.outline,
button.outline {
    background: transparent;
    border: 2px solid var(--color-lightblue);
}

.button-outline:hover,
.button.outline:hover,
button.outline:hover {
    background: var(--color-lightblue);
    color: var(--color-darkblue);
}

/* ===================================
   CONTAINER
=================================== */
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===================================
   SECTION SPACING
=================================== */

/* Witte sectie – standaard padding (125px top/bottom) */
.section {
    padding-top: var(--spacing-white-sections);
    padding-bottom: var(--spacing-white-sections);
}

/* Gekleurde / achtergrond sectie – padding (125px top/bottom) */
.section--colored {
    padding-top: var(--spacing-white-sections);
    padding-bottom: var(--spacing-white-sections);
}

/* Kleinere sectie spacing (100px) */
.section--medium {
    padding-top: var(--spacing-sections);
    padding-bottom: var(--spacing-sections);
}

/* Kleinste sectie spacing (50px) */
.section--small {
    padding-top: var(--spacing-sections-small);
    padding-bottom: var(--spacing-sections-small);
}

/* Wit op wit: voorkom dubbele padding tussen opeenvolgende witte sections */
.section.wit+.section.wit {
    padding-top: 0;
}

/* ===================================
   GRID SYSTEM
=================================== */

/* Grid Container */
.grid {
    display: grid;
    gap: var(--spacing-cards);
    width: 100%;
}

/* Grid Columns - Desktop */
.grid-1 {
    grid-template-columns: 1fr;
}

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

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

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

/* Grid Gap Variations (optioneel) */
.grid-gap-small {
    gap: 15px;
}

.grid-gap-medium {
    gap: 30px;
}

.grid-gap-large {
    gap: 50px;
}

/* Grid Item Spanning (optioneel) */
.grid-span-2 {
    grid-column: span 2;
}

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

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

/* Responsive Grid - Tablet */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Responsive Grid - Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .grid-span-2,
    .grid-span-3,
    .grid-span-4 {
        grid-column: span 1;
    }
}

/* ===================================
   TOP BAR
=================================== */
.top-bar {
    background: var(--color-darkblue);
    padding: 20px 0;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar__socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar__socials a {
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.top-bar__socials a:hover {
    opacity: 0.7;
}

.top-bar__socials img {
    width: 45px;
    height: 45px;
}

.top-bar__links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar__links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.top-bar__links a:hover {
    opacity: 0.7;
}

/* ===================================
   NAVIGATION BAR
=================================== */
.navigation-bar {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    padding: 15px 0;
}

.navigation-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation-bar__logo img {
    width: 252px;
    height: 102px;
}

.navigation-bar__nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
}

.navigation-bar__nav a {
    color: var(--color-darkblue);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.2s;
}

/* ===================================
   HERO SECTION
=================================== */
.hero-section {
    padding-top: 200px;
    margin-bottom: 100px;
    padding-bottom: 800px;
    background: url('/wp-content/uploads/2026/02/Background-hero.png');
    background-color: var(--color-darkblue);
    background-size: cover;
    background-repeat: no-repeat;

    h2 {
        margin: 0;
    }
}

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

.hero-section__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-section__steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
}

.hero-section__step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hero-section__step:first-child {
    padding-left: 0;
}

.hero-section__step:last-child {
    border-right: none;
    padding-right: 0;
}

.hero-section__step-number {
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    justify-content: center;
    min-width: 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    position: relative;
    padding-right: 12px;
}

.hero-section__step-number::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border-right: 2px solid rgba(3, 3, 106, 0.1);
}

.hero-section__step-number.pink {
    color: var(--color-pink);
}

.hero-section__step-number.pink::after {
    border-right-color: var(--color-pink);
}

.hero-section__step-number.blue {
    color: var(--color-lightblue);
}

.hero-section__step-number.blue::after {
    border-right-color: var(--color-lightblue);
}

.hero-section__step p {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 0;
    color: var(--color-darkblue);
}

.hero-section__checkmarks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-section__checkmarks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
}

.hero-section__checkmarks li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-image: url('/wp-content/uploads/2026/03/vinkje-blauw.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.hero-section__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-section__image {
    display: flex;
    justify-content: flex-end;
}

.hero-section__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* ===================================
   HEADER
=================================== */
header {
    position: relative;
    padding: 0;
    border-bottom: none;
}

header h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-darkblue);
}

header h1 a {
    color: var(--color-darkblue);
    text-decoration: none;
}

/* ===================================
   MAIN CONTENT
=================================== */
main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-white-sections);
}

/* ===================================
   POSTS
=================================== */
article {
    margin-bottom: 60px;
}

article h2 a {
    color: var(--color-darkblue);
    text-decoration: none;
}

article h2 a:hover {
    color: var(--color-lightblue);
}

.post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.post-content {
    line-height: 1.8;
}

.post-content img {
    max-width: 100%;
    height: auto;
}

p.white {
    color: white;
}

/* ===================================
   TESTIMONIAL SECTION
=================================== */

.testimonial-card__image {
    height: 100%;
    width: 100%;
}

.testimonial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 655/395;
    border-radius: 30px;
}

.testimonial-card__content {
    padding: 50px 60px 50px 0;
}

.testimonial-card__author {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-darkblue);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .testimonial-card__image {
        min-height: 220px;
    }

    .testimonial-card__content {
        padding: 30px;
    }

    .testimonial-card__quote {
        font-size: 22px;
        line-height: 30px;
    }
}

/* ===================================
   REVIEWS CAROUSEL
=================================== */
.reviews-section {
    background: var(--color-bg-light);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding-top: 400px;
    padding-bottom: 650px;
    overflow: hidden;
    margin-top: -400px;
    z-index: 0;
}

.reviews-section+.cta-section {
    margin-top: -700px;
}

.reviews-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.reviews-carousel__track-wrapper {
    overflow-x: clip;
    overflow-y: visible;
    max-width: 1000px;
    width: 100%;
    padding: 30px 0;
    margin: -30px 0;
}

.reviews-carousel__track {
    display: flex;
    transition: transform 0.5s ease;
    align-items: center;
    cursor: grab;
    user-select: none;
}

.reviews-carousel__track:active {
    cursor: grabbing;
}

.reviews-carousel__slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.reviews-carousel__card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(3, 3, 106, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
    transform: scale(0.75);
    opacity: 0.5;
}

.reviews-carousel__slide.is-active .reviews-carousel__card {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 8px 40px rgba(3, 3, 106, 0.1);
}

.reviews-carousel__quote {
    font-family: 'Chonk', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    color: var(--color-lightblue);
    margin-bottom: 20px;
}

.reviews-carousel__author {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-darkblue);
    margin-bottom: 0;
}

.reviews-carousel__author span {
    font-weight: 400;
}

.reviews-carousel__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(77, 169, 255, 0.15);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-lightblue);
    transition: background 0.2s;
    flex-shrink: 0;
    padding: 0;
}

.reviews-carousel__arrow--prev img {
    transform: rotate(180deg);
}

.reviews-carousel__arrow:hover {
    background: rgba(77, 169, 255, 0.3);
}

.reviews-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.reviews-carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-darkblue);
    opacity: 0.25;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s;
}

.reviews-carousel__dot.is-active {
    opacity: 1;
}

/* ===================================
   GALERIJ SECTION
=================================== */
.galerij-section {
    text-align: center;
}

.galerij-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.galerij-carousel__track-wrapper {
    overflow-x: clip;
    overflow-y: visible;
    max-width: 1100px;
    width: 100%;
    padding: 30px 0;
    margin: -30px 0;
    position: relative;
}

.galerij-carousel__track-wrapper::before,
.galerij-carousel__track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.galerij-carousel__track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--galerij-bg, #fff), transparent);
}

.galerij-carousel__track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--galerij-bg, #fff), transparent);
}

.galerij-carousel__track {
    display: flex;
    transition: transform 0.5s ease;
    align-items: center;
    cursor: grab;
    user-select: none;
}

.galerij-carousel__track:active {
    cursor: grabbing;
}

.galerij-carousel__slide {
    flex: 0 0 50%;
    padding: 0 10px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.galerij-carousel__card {
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.75);
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.galerij-carousel__slide.is-active .galerij-carousel__card {
    transform: scale(1);
    opacity: 1;
}

.galerij-carousel__card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.galerij-carousel__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-lightblue);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s;
    flex-shrink: 0;
    padding: 0;
}

.galerij-carousel__arrow:hover {
    background: #3a96ec;
}

.galerij-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.galerij-carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-darkblue);
    opacity: 0.25;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s;
}

.galerij-carousel__dot.is-active {
    opacity: 1;
}

.galerij-carousel__button-wrap {
    margin-top: 40px;
}

/* ===================================
   CTA SECTION
=================================== */
.cta-section__banner {
    position: relative;
    width: calc((100vw + min(1350px, 100vw)) / 2 - 20px);
    max-width: calc(100% - 20px);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

.cta-section {
    margin-top: -125px;
}

.cta-section__image {
    width: 100%;
    aspect-ratio: 1600 / 746;
    object-fit: cover;
    display: block;
}

.cta-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.cta-section__overlay .container {
    margin-left: max(20px, calc((100vw - 1350px) / 2));
    margin-right: 0;
    padding-bottom: 50px;
}

.cta-section__content h2 {
    margin-bottom: 0;
}

.cta-section__subtitle {
    font-family: 'Chonk', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: white;
    text-align: left;
    margin-bottom: 20px;
}

.cta-section__bottom {
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.cta-section__bottom p {
    max-width: 550px;
    color: white;
    margin-bottom: 0;
}

.cta-section__buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-section__subtitle {
        font-size: 22px;
    }

    .cta-section__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

/* ===================================
   GFORM SECTION
=================================== */
.gform-section__banner {
    width: calc((100vw + min(1350px, 100vw)) / 2 - 20px);
    max-width: calc(100% - 20px);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.gform-section__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.gform-section__inner .container {
    margin-left: max(20px, calc((100vw - 1350px) / 2));
    margin-right: 0;
    display: flex;
    justify-content: center;
}

/* ===================================
   FOOTER
=================================== */
footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 768px) {
    .top-bar__socials img {
        width: 24px;
        height: 24px;
    }

    .top-bar__links {
        gap: 15px;
    }

    .top-bar__links a {
        font-size: 12px;
    }

    .navigation-bar__inner {
        flex-wrap: wrap;
        gap: 15px;
    }

    .navigation-bar__logo img {
        height: 40px;
    }

    .navigation-bar__nav {
        order: 3;
        width: 100%;
    }

    .navigation-bar__nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .navigation-bar__nav .button {
        font-size: 13px;
        height: 45px;
        padding: 10px 15px;
    }

    h2 {
        font-size: 40px;
        line-height: 45px;
    }

    h3 {
        font-size: 30px;
        line-height: 38px;
    }

    h4 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-section__steps {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section__step {
        border-right: none;
        padding: 0 0 15px 0;
        border-bottom: 2px solid rgba(3, 3, 106, 0.1);
    }

    .hero-section__step:first-child {
        padding-left: 0;
    }

    .hero-section__step:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .hero-section__image {
        order: -1;
    }

    .hero-section__image img {
        max-width: 100%;
        border-radius: 16px;
    }

    .reviews-carousel__slide {
        flex: 0 0 80%;
    }

    .reviews-carousel__quote {
        font-size: 22px;
        line-height: 30px;
    }

    .reviews-carousel__arrow {
        width: 40px;
        height: 40px;
    }
}

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

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

.max-w-small {
    max-width: 800px;
    margin: 0 auto;
}

fieldset#field_2_29 {
    display: none;
}