/*
 Theme Name:   Femke Vergelijkt
 Description:  Twenty Twenty-Two voor femkevergelijkt.nl
 Author:       Christoffer Toonen
 Template:     twentytwentytwo
 Version:      1.1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Mali:wght@500;600&display=swap");

/* ---- GENERAL ---- */
:root {
    --bgc: #FFF4DF;
    --fgc: #492020;
    --whi: #FFFFFF;
    --red: #DB3A3A;
    --blu: #4F87C8;
    --grn: #55A86C;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    --wp--style--block-gap: 0;
    scroll-behavior: smooth;
    background: var(--bgc);
    font-family: "Mali";
    color: var(--fgc);
    font-weight: 500;
    line-height: 1.5;
    font-size: 16px;
    width: 100%;
    padding: 0;
    margin: 0;
}

h2[id],
div[id] {
    scroll-margin-top: 100px;
}

.entry-content>.wp-block-group.white a[id] {
    top: -20px;
}

hr.wp-block-separator.is-style-wide {
    border: 0;
    opacity: 1;
    height: 10px;
    display: block;
    margin: 0 auto;
    max-width: 1010px;
    width: calc(100% - 50px);
    background-size: contain;
    background-image: -o-linear-gradient(left,
        var(--bgc),
        transparent .5%,
        transparent 99.5%,
        var(--bgc)),
        url("./assets/images/line_blue.png");
    background-image: -webkit-gradient(linear,
        left top, right top,
        from(var(--bgc)),
        color-stop(.5%, transparent),
        color-stop(99.5%, transparent),
        to(var(--bgc))),
        url("./assets/images/line_blue.png");
    background-image: linear-gradient(to right,
        var(--bgc),
        transparent .5%,
        transparent 99.5%,
        var(--bgc)),
        url("./assets/images/line_blue.png");
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Dancing Script";
    line-height: 1.25;
    display: block;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 2.875rem;
}

h2 {
    font-size: 2.0625rem;
}

h3 {
    font-size: 1.625rem;
}

h1 + h2,
h2 + h3 {
    margin-top: 0.5rem;
}

p {
    font-size: 1rem;
    padding: 1rem 0;
    margin: 0;
}

p:first-child {
    padding-top: 0;
}

p:last-child {
    padding-bottom: 0;
}

a {
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    color: var(--blu);
}

a:hover {
    opacity: .7;
}

.wp-block-buttons {
    justify-content: flex-end;
    flex-wrap: wrap;
    display: flex;
    gap: 1rem;
}

a.wp-block-button__link {
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    background-color: var(--blu) !important;
    border-radius: 25px !important;
    font-size: 1.25rem !important;
    color: var(--whi) !important;
    padding: 0 40px !important;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bold;
    line-height: 38px;
    min-height: 42px;
    flex: 100%;
}

a.wp-block-button__link:hover {
    opacity: .7;
}

.is-style-outline a.wp-block-button__link {
    color: var(--fgc);
    border: 0 !important;
    background-color: transparent !important;
    -webkit-box-shadow: inset 0 0 0 3.5px var(--grn);
    box-shadow: inset 0 0 0 3.5px var(--grn);
}

button {
    border: 0;
    width: 75px;
    height: 70px;
    font-size: 0;
    cursor: pointer;
    color: var(--whi);
    border-radius: 100%;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    background-color: var(--grn) !important;
    -webkit-box-shadow: 0 5px 0 0 rgba(73, 32, 32, 0.5);
    box-shadow: 0 5px 0 0 rgba(73, 32, 32, 0.5);
}

button:active,
.menu-open header button {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-box-shadow: 0 0 0 0 rgba(73, 32, 32, 0.5);
    box-shadow: 0 0 0 0 rgba(73, 32, 32, 0.5);
}

button:hover,
.menu-open header button {
    opacity: .7;
}

p+a.wp-block-button__link {
    margin-top: .7rem;
}

ul {
    margin: 1rem 0 3rem;
    list-style: none;
    padding-left: 0;
}

ul li {
    position: relative;
    line-height: 1.75;
    font-size: 1rem;
    display:  flex;
}

ul li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    margin-right: 1rem;
    line-height: 28px;
}

ul li[class] + li:not([class]) {
    margin-top: 28px;
}

ul li:not([class])::before {
    margin: 0 calc(1rem + 4px) 0 4px;
    font-size: 6px;
}

ul li.check::before {
    content: "\f14a";
    color: var(--grn);
}

ul li.cross::before {
    content: "\f05c";
    color: var(--red);
}

img {
    max-width: 100%;
}

.alignright {
    margin: 22px 0 30px 30px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    -o-object-fit: cover;
    object-fit: cover;
    float: right;
}

.alignleft {
    margin: 22px 30px 30px 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -o-object-fit: cover;
    object-fit: cover;
    float: left;
}

figure + figure[class*="align"],
h1 + figure[class*="align"] {
    margin-top: 0;
}

h2 + figure[class*="align"] {
    margin-top: 5px;
}

table {
    border-radius: 17.5px;
    border-spacing: 0;
    overflow: hidden;
    font-size: 1rem;
    width: 100%;
}

table+table {
    margin-top: 25px;
}

table tr th {
    width: 100%;
    height: 50px;
    padding: 0 25px;
    text-align: left;
    font-size: 2.5rem;
    color: var(--whi);
    line-height: 50px;
    background: var(--blu);
    font-family: "Dancing Script";
}

table tr td {
    min-height: 45px;
    padding: 5px 25px;
    line-height: 30px;
    font-weight: bold;
}

table tr:nth-child(2n+1) {
    background: var(--bgc);
}

table tr td:last-of-type {
    text-align: right;
    font-weight: normal;
}

/* ---- COOKIE ---- */
.cookie-container {
    left: 0;
    bottom: 0;
    z-index: 3;
    gap: .5rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    padding: 12.5px 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    background-color: var(--whi);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-animation: move .75s .25s ease-in-out forwards;
    animation: move .75s .25s ease-in-out forwards;
    -webkit-box-shadow: 0 -2.5px 0 0 rgba(73, 32, 32, .5);
    box-shadow: 0 -2.5px 0 0 rgba(73, 32, 32, .5);
}

@-webkit-keyframes move {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes move {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.cookie-container p {
    padding: 0;
}

.cookie-container button {
    width: unset;
    height: unset;
    padding: 0 40px;
    min-height: 42px;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 38px;
    margin-left: auto;
    font-size: 1.25rem;
    border-radius: 25px;
    font-family: inherit;
}

.cookie-container button:active {
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
}

.cookie-container button#reject {
    background-color: var(--red);
}

.cookie-container button+button {
    margin-left: 0;
}

/* ---- HEADER ---- */
header {
    top: 0;
    z-index: 3;
    width: 100%;
    position: fixed;
    padding: 0 25px;
    margin-bottom: 5px;
    background: var(--whi);
    -webkit-box-shadow: 0 5px 0 0 rgba(73, 32, 32, .5);
    box-shadow: 0 5px 0 0 rgba(73, 32, 32, .5);
}

.logged-in header {
    top: 32px;
}

header .header-inner {
    gap: 40px;
    height: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 1210px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header .header-inner .logo h1 {
    line-height: .6;
    font-size: 46px;
}

header .header-inner .logo h1 a {
    text-decoration: none;
    color: var(--grn);
}

header .header-inner .menu ul {
    gap: 48px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .header-inner .menu ul li {
    font-size: 16px;
    min-height: 42px;
    line-height: 38px;
    text-align: center;
}

header .header-inner .menu ul li::before {
    content: none;
}

header .header-inner .menu ul li.range-container {
    display: none;
}

header .header-inner .menu ul li a {
    font-size: 19px;
    font-weight: bold;
    text-decoration: none;
    color: var(--fgc) !important;
}

header .header-inner .menu ul li a:hover {
    opacity: .7;
}

header .header-inner .menu .menuopen {
    width: 50px;
    height: 45px;
    display: none;
    font-size: 20px;
    line-height: 45px;
    background-color: var(--blu);
}

header .header-inner .menu .menuopen:hover {
    opacity: .7;
}

header .font-size {
    position: absolute;
    padding: .5vw;
    right: 0;
    top: 0;
}

header .font-size .textopen {
    background-color: var(--blu) !important;
    line-height: 26px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 12px;
    height: 26px;
    width: 26px;
}

header .font-size .textopen:active {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

header .range-container {
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

header>.range-container {
    right: -246px;
    position: absolute;
    padding: 17.5px 35px;
    background: var(--whi);
    border-radius: 0 0 0 25px;
    -webkit-transition: right 0.5s ease-in-out;
    -o-transition: right 0.5s ease-in-out;
    transition: right 0.5s ease-in-out;
    -webkit-box-shadow: 0 5px 0 0 rgba(73, 32, 32, 0.5);
    box-shadow: 0 5px 0 0 rgba(73, 32, 32, 0.5);
}

header .range-container p {
    line-height: 1 !important;
    font-weight: bold;
    padding: 0;
}

header .range-container input[type="range"] {
    width: 130px;
}

.text-open header>.range-container {
    right: 0;
}

/* ---- OVERLAY ---- */
.overlay {
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    position: fixed;
    pointer-events: none;
    background-color: #000;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

body[class*="open"] .overlay {
    opacity: .7;
    pointer-events: initial;
}

body.text-open .overlay {
    opacity: 0;
}

/* ---- BLOCKS ---- */
.text-container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.text-container>a.wp-block-button__link.full:last-child {
    margin-top: auto;
}

.wp-site-blocks {
    padding: 0;
    overflow: hidden;
    margin: 100px 0 0;
}

.wp-site-blocks>*+*,
[class^="wp-container"]>*,
[class^="wp-container"]>*+* {
    margin: 0;
    padding: 0;
    max-width: unset;
}

.entry-content>.wp-block-group {
    padding: 80px 25px 0;
    position: relative;
    max-width: unset;
    width: 100%;
    z-index: 1;
}

.entry-content>.wp-block-group:last-child {
    padding-bottom: 160px;
}

.entry-content>.wp-block-group>.wp-block-columns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1010px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    gap: 80px;
}

.entry-content>.wp-block-group[class*="leaf"]::before,
.entry-content>.wp-block-group[class*="leaf"]::after {
    left: 0;
    bottom: 0;
    width: 9vw;
    height: 9vw;
    z-index: -1;
    min-width: 45px;
    min-height: 45px;
    position: absolute;
    background-size: contain;
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-image: url("./assets/images/leaves_1.png");
}

.entry-content>.wp-block-group.leaf-1::before,
.entry-content>.wp-block-group.leaf-4::before {
    content: "";
    top: 0;
    right: 0;
    left: unset;
    width: 5.5vw;
    height: 5.5vw;
    bottom: unset;
    min-width: 35px;
    min-height: 35px;
    background-position: 100% 0;
    background-image: url("./assets/images/leaves_2.png");
}

.entry-content>.wp-block-group.leaf-2::after {
    content: "";
}

.entry-content>.wp-block-group.leaf-3::after {
    content: "";
    top: 0;
    right: 0;
    left: unset;
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
}

.entry-content>.wp-block-group.leaf-4::before {
    left: 0;
    bottom: 0;
    top: unset;
    right: unset;
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
}

.entry-content>.wp-block-group.white {
    padding-top: 0;
    margin-top: 80px;
}

.entry-content>.wp-block-group.white::before {
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    position: absolute;
    background: var(--whi);
}

.wp-block-column:not([id*="test"]) {
    z-index: 0;
    display: block;
    margin: 0 0 5px;
    position: relative;
    border-radius: 35px;
    padding: 50px 50px 45px;
    background-color: var(--whi);
    -webkit-box-shadow: 0 5px 0 0 rgba(73, 32, 32, 0.5);
    box-shadow: 0 5px 0 0 rgba(73, 32, 32, 0.5);
}

.entry-content>.wp-block-group.white .wp-block-column:not([id*="test"]) {
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wp-block-column.border {
    -webkit-box-shadow: 0 0 0 3.5px var(--blu);
    box-shadow: 0 0 0 3.5px var(--blu);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    max-width: 320px;
    margin: 3.5px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    padding: 0;
}

.wp-block-column.border figure {
    height: 100%;
    margin: 0;
}

.wp-block-column.round {
    border-radius: 100%;
}

.wp-block-column .wp-block-image figcaption {
    left: 0;
    bottom: 0;
    margin: -3px;
    height: 70px;
    color: var(--whi);
    line-height: 70px;
    position: absolute;
    font-size: 2.25rem;
    text-align: center;
    width: calc(100% + 6px);
    background-color: var(--blu);
    border-radius: 0 0 50px 50px;
    font-family: "Dancing Script";
}

body:not(.single) .wp-block-column:not([class*="round"]) img {
    object-fit: contain;
    max-height: 210px;
}

.wp-block-column.border img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.wp-block-column.border .contain img {
    -o-object-fit: contain;
    object-fit: contain;
    padding: 20px;
}

.zoom-in img {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.zoom-in img:hover {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.entry-content>.wp-block-group.white>.entry-content>.wp-block-group-inner>.wp-block-column:not([id*="test"]) {
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    background-color: transparent;
}

.entry-content>.wp-block-group.white>.entry-content>.wp-block-group-inner>.wp-block-column::after {
    content: "";
    top: 0;
    z-index: 0;
    z-index: -1;
    left: -50vw;
    height: 100%;
    width: 200vw;
    position: absolute;
    background-color: var(--whi);
}

.entry-content .wp-block-image {
    text-align: center;
}

/* ---- REVIEWS ---- */
.slider-container.wp-block-column:not([id*="test"]) {
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: static;
    padding: 0;
    margin: 0;
}

.tns-slider {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.slide:hover {
    cursor: -webkit-grab;
    cursor: grab;
}

.slide:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.slide:active img,
.slide:active th,
.slide:active td,
.slide:active h1,
.slide:active h2,
.slide:active h3,
.slide:active h4,
.slide:active h5,
.slide:active h6,
.slide:active p {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wp-block-column>.tns-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.tns-outer .tns-controls {
    width: 100%;
    margin: 25px 0 0;
    position: static;
    max-width: 1010px;
}

.wp-block-column:not(.slider-container)>.tns-outer>.tns-controls {
    margin-top: 25px;
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
    left: 25px;
}

.tns-outer .tns-controls>button::after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    color: var(--whi);
    font-size: 32px;
}

.tns-outer .tns-controls>button+button {
    float: right;
}

.tns-outer .tns-controls>button+button::after {
    content: "\f054";
}

.tns-outer>button {
    display: none;
}

.review {
    margin: 0 0 5px;
}

.review .text-container {
    -webkit-box-shadow: 0 5px 0 0 rgba(73, 32, 32, .5);
    box-shadow: 0 5px 0 0 rgba(73, 32, 32, .5);
    padding: 50px 50px 45px;
    background: var(--whi);
    border-radius: 35px;
    height: 100%;
}

.review .author-container {
    justify-self: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 55px;
}

.review .author-container::after {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    font-size: 2.5rem;
    opacity: .375;
    right: 0;
    top: 50%;
}

.review .author-container p {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0;
}

.review .author-container .author-img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}


/* ---- RESPONSIVE ---- */
@media (max-width: 1023px) {
    .has-text-align-right {
        text-align: left;
    }

    .entry-content>.wp-block-group.white a[id] {
        top: -50px;
    }

    .wp-block-buttons {
        display: block;
    }

    .wp-block-buttons>.wp-block-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .wp-block-buttons>.wp-block-button+.wp-block-button {
        margin-top: 1rem;
    }

    a.wp-block-button__link {
        width: 100%;
    }

    a.wp-block-button__link+a.wp-block-button__link {
        margin-top: 1rem;
    }

    img {
        max-height: 50vh;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    [class*="float"] {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        margin: 15px 0;
        float: none;
    }

    table tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    table tr th {
        font-size: 2rem;
    }

    .cookie-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cookie-container>button {
        font-size: 1rem;
        margin: 0;
    }

    .cookie-container>button#reject {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    #wpadminbar {
        position: fixed;
    }

    .logged-in header {
        top: 46px;
    }

    header h1 {
        font-size: 2rem;
    }

    header .header-inner .menu .menuopen {
        display: block;
    }

    header .header-inner .menu ul {
        -webkit-box-shadow: 0 5px 0 0 rgba(73, 32, 32, .5);
        box-shadow: 0 5px 0 0 rgba(73, 32, 32, .5);
        -webkit-transition: right 0.5s ease-in-out;
        -o-transition: right 0.5s ease-in-out;
        transition: right 0.5s ease-in-out;
        max-height: calc(100vh - 95px);
        background-color: var(--whi);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        overflow-y: scroll;
        right: -100vw;
        width: 100vw;
        top: 95px;
        gap: 16px;
    }

    .menu-open header .header-inner .menu ul {
        right: 0;
    }

    header .header-inner .menu ul li {
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: center;
    }

    header .header-inner .menu ul li a {
        line-height: 50px;
        -webkit-box-shadow: none;
        box-shadow: none;
        display: block;
        height: 100%;
        width: 100%;
    }

    header .header-inner .menu ul li.range-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    header>.font-size,
    header>.range-container {
        display: none;
    }

    header .range-container input[type="range"] {
        width: 150px;
        height: 40px;
    }

    .entry-content>.wp-block-group {
        padding: 50px 25px 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .entry-content>.wp-block-group>.wp-block-columns {
        gap: 50px;
    }

    .entry-content>.wp-block-group:last-child {
        padding-bottom: 100px;
    }

    .entry-content>.wp-block-group.leaf-1::before,
    .entry-content>.wp-block-group.leaf-3::after {
        top: 5px;
    }

    .entry-content>.wp-block-group.leaf-2::after,
    .entry-content>.wp-block-group.leaf-4::before {
        bottom: 5px;
    }

    .entry-content>.wp-block-group.white {
        margin-top: 50px;
    }

    .entry-content .wp-block-image {
        width: 100%;
    }

    .wp-block-column:not([id]),
    .review .text-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: unset;
        padding: 25px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

    .wp-block-column.border:not([id]) {
        padding: 0;
        border-radius: 25px;
    }

    .wp-block-column.border figcaption {
        border-radius: 0 0 25px 25px;
    }

    .tns-outer,
    .wp-block-column>.tns-outer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .tns-outer>.tns-controls,
    .wp-block-column>.tns-outer>.tns-controls {
        position: static;
        margin: 0 0 25px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        width: 100%;
        left: 25px;
    }

    .tns-slider {
        display: block;
    }

    .review .author-container {
        gap: 25px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .review .author-container::after {
        content: none;
    }
}

@media print {    
    header {
        display: none !important;
    }
}