/*
Theme Name: HZNG
Description: Webdesign & design systems
Version: 1.1
Author: P. Huizinga at HZNG - hzng.nl
*/

/* Reset */
/* Handled by reset.css from https://github.com/murtaugh/HTML5-Reset */

/* GENERAL */

.print {
    display: none;
    visibility: hidden;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:focus {
    outline: none;
}
*,html,body {
    font-family: "Lexend", sans-serif;
    font-weight: 300;
    font-style: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-size: 18px;
    line-height: 1.5em;
    color: #222;
}
input {
    font-family: inherit;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
    overflow-x: hidden;
}
body {
    background:#F6EFEF;
    overflow-x: hidden;
    padding-top: 95px;
}
    body.dark-mode {
        background:#222;
        color: #FFF;
    }

hr {
    border-style: solid none none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #999;
}

/* FONTS */

h1,h2,h3,h4,h5,h6 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}

h1 span,
h1 em,
h1 {
    font-weight: 500;
    font-size: 52px;
    line-height: 110%;
    margin: 20px 0 10px;
    color: #922A7C;
}

h2{
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    margin: 10px 0;
}

    h2 + p {
        margin-bottom: 40px;
    }

h3,
h3 p{
    font-weight: 500;
    font-size: 22px;
    line-height: 125%;
    margin: 25px 0 5px;
}
    .features h2 {
        margin-top: 60px;
    }

h4{
    font-weight: 600;
    font-size: 18px;
    line-height: 125%;
    margin: 12px 0 4px;
}
h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    margin: 10px 0 3px;
}
li a,
li,
p *,
p {
    font-size: inherit;
}
p {
    margin-bottom: 15px;
}
    p.intro {
        font-size: 20px;
        font-weight: 300;
        line-height: 30px;
    }
    .hero p.intro {
        font-size: 22px;
        line-height: 32px;
    }
p strong{
    font-weight: 500;
    position: relative;
    border-radius: 2px;
}
.quote p.intro,
p.quote {
    color: #922A7C;
    font-size: 24px;
    font-weight: 500;
    font-family: "Bricolage Grotesque", sans-serif;
    background: #FFF;
    padding:40px;
    border-radius: 40px;
    border-bottom-left-radius: 0;
}
p.quote:;after {
    color: #922A7C;
    font-size: 28px;
    font-weight: 400;
    font-family: "Bricolage Grotesque", sans-serif;
    background: #FFF;
    padding:40px;
    border-radius: 60px;
}
    p.quote + p {
        font-size: 15px;
        font-weight: 400;   
    }

small {
    font-size: 14px;
    opacity: 0.75;
    line-height: 20px;
}

img {
    max-width: 100%;
}
.text-center,
.text-center * {
    text-align: center;
}
.text-right *,
.text-right{
    text-align: right;
}
.handwriting {
    font-family: "Square Peg", cursive!important;
    font-weight: 400!important;
    font-style: normal!important;
}
    p.handwriting {
        font-size: 32px;
    }


.bg-white .container:after,
.bg-bourgundy .container:after,
.bg-dark.gradient .container:after,
.bg-dark .container:after{
    display: block;
    content: "";
    width: calc(100% + 200px);
    height: calc(100% + 100px);
    position: absolute;
    left: -100px;
    top: -50px;
    z-index: -1;
    border-radius: 50px;
    background: #222;
}
    .bg-white .container:after {
        background: #FFF;
    }
    .bg-bourgundy .container:after {
        background: #922A7C;
    }
    .bg-dark.gradient .container:after {
        background-image: url('images/bg-gradient-dark.svg');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
    }
    .bg-bourgundy *,
    .bg-dark * {
        color: #F6EFEF;
    }



.bg-loop {
    background-image: url('images/bg-loop.svg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
    footer {
        overflow: visible;
    }
    footer .bg-loop {
        width: 50vw;
        height: 50vw;
        position: absolute;
        z-index: 0;
        left: 50%;
        margin-left: -25vw;
        bottom: 0;
    }
.bg-gradient {
    background-image: url('images/bg-gradient.svg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.content ul {
    margin: 0 0 10px 25px;
    padding: 0;
    list-style: disc;
}
    .content ul li {

    }
    .content h2.handwriting {
        font-size: 42px;
        line-height: 50px;
    }
    .content h1 + h2.handwriting {
        margin-top: 0;
    }

/* GRID */

article,
section {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}
.row {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 60px 0;
    flex-wrap: wrap;
    overflow: visible;
}
    .hero .row {
        padding-bottom: 120px;
    }
    .cta .row {
        padding: 120px 0
    }
.container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    overflow: visible;
    position: relative;
    z-index: 1;

}
.vh-100  {
    height: 100vh;
}
.vh-75  {
    height: 75vh;
}
.vh-50  {
    height: 50vh;
}
.min-height  {
    min-height: 400px;
}
.vw-100  {
    width: 100vw;
}
.flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.center,
.flex-center {
    justify-content: center;
}
.flex-stretch{
    align-content: stretch;
}
.space-between,
.flex-space-between{
    justify-content: space-between;
}
.flex-end{
    justify-content: flex-end;
}
.flex-self-end{
    align-self: flex-end;
}
.flex-space-around{
    justify-content: space-around;
}
.flex-space-evenly{
    justify-content: space-evenly;
}
.flex-v-align-center{
    align-items: center;
}
.flex-v-align-bottom{
    align-items: flex-end;
}
.flex-stretch {
    align-items: stretch;
}
.flex-v-align-top{
    align-items: flex-start;
}
.flex-h-align-left{
    justify-content: left;
}
.flex-h-align-center{
    justify-content: center;
}

.flex-h-align-right {
    justify-content: right;
}
.flex-column-reverse {
    flex-direction: column-reverse;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.flex-no-wrap  {
    flex-wrap: nowrap;
}
.flex-grow-1 {
    flex-grow: 1;
}
.flex-grow-2 {
    flex-grow: 2;
}
.flex-grow-3 {
    flex-grow: 3;
}
.flex-grow-4 {
    flex-grow: 4;
}
.flex-grow-5 {
    flex-grow: 5;
}
.flex-grow-6 {
    flex-grow: 6;
}
.grid-item .wrapper{
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    position: relative;
    padding: 30px;
    z-index: 1;
    margin: 30px 0;
    background-position: center center;
}
    
    .solutions .grid-item .wrapper *,
    .solutions .grid-item .wrapper a,
    .solutions .grid-item .wrapper h3 {
        color: #FFF;
        text-decoration: none;
        z-index: 1;
        cursor: pointer;
    }
    .solutions .grid-item .wrapper:after{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px;
        content: "";
        z-index: 0;
        display: block;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
        z-index: 0;
        opacity: 0.75;
        transition: opacity 0.25s ease-in-out;
        background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
    }
    .solutions .grid-item:hover .wrapper:after{
        opacity: 1;
        transition: opacity 0.25s ease-in-out;
    }
    .grid-item h3 {
        position: relative;
        width: 100%;
        padding-right: 60px;
        display: block;
    }
    .grid-item h3::before,
    .grid-item h3::after {
        width: 20px;
        height: 2px;
        background: #FFF;
        display: block;
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transition: all 0.25s ease-in-out;
    }
        .grid-item h3::before {
            transform: rotate(90deg);
        }
        .grid-item:hover h3:after {
            transform: rotate(90deg);
        }
        .grid-item:hover h3:before {
            transform: rotate(180deg);
        }

.pills {
   
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
}
.pills .pill{
    white-space: nowrap;
    padding: 5px 10px;
    background: #222;
    color: #FFF;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 999px;
    font-weight: 500;

}

.pills .pill.first{
    background: none;
}


/* PADDING ON THE COLUMNS */

div[class*="col-"] {
    padding: 0px 25px;
    position: relative;
    overflow: visible;
}
.no-padding > div[class*="col-"] {
    padding: 0;
}
.extra-padding div[class*="col-"] {
    padding: 0 40px;
}
.no-self-padding {
    padding: 0!important;
}
*.padding {
    padding: 25px;
}
.border-radius  {
    border-radius: 30px;
    overflow: hidden;
}
.border-radius-full  {
    border-radius: 40px;
    overflow: hidden;
}
.border-radius-round  {
    border-radius: 500px!important;
    overflow: hidden;
}
.ipad-border {
    border: 5px solid #222;
    box-shadow: 0 30px 30px -20px rgba(0,0,0,0.5);
    border-radius: 15px;
}
    .shopify {
        margin-top: 200px;
        overflow: visible;
    }
    .shopify .ipad-border {
        margin-top: -170px;
        margin-bottom: 60px;
    }
.first img{
    border-radius: 20px;
    margin: 0;
    overflow: hidden;
}
.featured-image {
    margin: 0!important;
}

/* COLUMNS */

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}
.col-2 {
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
}
.col-25 {
    flex: 0 0 20%;
    max-width: 20%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}
.col-45 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
}
.col-5 {
    flex: 0 0 41.66666%;
    max-width: 41.66666%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}
.col-8 {
    flex: 0 0 66.6666%;
    max-width: 66.6666%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}
.col-11 {
    flex: 0 0 91.66666%;
    max-width: 91.66666%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.small-screen-only {
    display: none;
}
.large-screen-only {
    display: block;
}
.pull-right {
    float: right;
}
.sticky {
    position: sticky!important;
    top: 120px;
    z-index: 900;
}
.order-1 {
    order: -1;
}
.overflow-visible {
    overflow: visible!important;
}

/* GENERAL */

.whole-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 200;
}

/* CSS FOR TOGGLE BUTTON */

.toggle-menu {
    display: none;
    width: 80px;
    height: 80px;
    cursor: pointer;
    padding: 0!important;
    right: 0px;
    top: 0;
    margin: 0!important;
    margin-left: 20px!important;
    position: absolute;
    transition: all .2s ease-in-out;
}

    .toggle-menu .bar{
        width: 25px;
        height: 2px;
        position: absolute;
        background: #FFF;
        border-radius: 4px;
        transition: all .2s ease-in-out;

    }
        .menu-active .toggle-menu .bar,
        .scrolls .toggle-menu .bar{ 
            background: #222;
        }
        .toggle-menu .bar.top-bar{
            top: 32px;
            left: 27px;
        }
        .toggle-menu .bar.middle-bar{
            top: 50%;
            margin-top: -1px /*height of bar / 2*/ ;
            left: 27px;
            width: 14px;
        }
        .toggle-menu .bar.bottom-bar{
            bottom: 32px;
            left: 27px;
        }

        .menu-active .toggle-menu .bar.top-bar{
            transform: rotate(45deg);
            transform-origin: 0 0;
        }
        .menu-active .toggle-menu .bar.middle-bar{
            opacity: 0;
        }
        .menu-active .toggle-menu .bar.bottom-bar{
            transform: rotate(-45deg);
            transform-origin: 0 100%;
        }
        .menu-active .toggle-menu .bar.top-bar,
        .menu-active .toggle-menu .bar.bottom-bar {
            width: 21px;
            left: 32px;
        }

/* MAIN MENU DESKTOP */

@media (min-width:1100px) {
    .row.main-menu {
        padding: 0;
        margin: 0;
        z-index: 1000;
        overflow: visible;
        top: 0;
        position: fixed;
        padding: 15px 0 15px;
        background: #F6EFEFE6;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    .main-menu .menu {
        display: flex;
    }
        .ctas a,
        .main-menu .menu a {
            text-decoration: none;
            line-height: 40px;
            padding: 10px 10px;
            display: inline-block;
            font-size: 17px;
            font-weight: 400;
            position: relative;
            transition: opacity 0.25s ease-in-out;
        }   
        .main-menu .menu > li > a {
            margin: 0 5px;
            color: #222;
        }
        .main-menu .menu .cta-ghost a {
            border: 0;
        }

            .main-menu .menu .menu-item {
                position: relative;
                list-style: none;
            }

                .main-menu .menu .menu-item > a:hover,
                .main-menu .menu .menu-item.menu-item-has-children:hover > a {
                    opacity: 0.75;
                }
                .main-menu .menu .menu-item.current-menu-parent > a,
                .main-menu .menu .menu-item.current-menu-item > a {
                    opacity: 0.75;
                }

                .main-menu .menu > .menu-item:hover > a {
                }

                .main-menu .menu .menu-item.menu-item-has-children a {
                    position: relative;
                    padding-right: 30px;
                }
                .main-menu .menu .menu-item.menu-item-has-children > a:before,
                .main-menu .menu .menu-item.menu-item-has-children > a:after {
                    content: "";
                    display: block;
                    width:  10px;
                    height: 2px;
                    background: #222;
                    transform: rotate(0deg);
                    position: absolute;
                    right: 12px;
                    top: 50%;
                    transition: all 0.25s ease-in-out;
                }
                .main-menu .menu .menu-item.menu-item-has-children > a:before {
                    transform: rotate(90deg);
                }
                .main-menu .menu .menu-item.menu-item-has-children:hover > a:before {
                    transform: rotate(180deg);
                }
                .main-menu .menu .menu-item.menu-item-has-children:hover> a:after {
                    transform: rotate(90deg);
                }
                .main-menu .menu .menu-item.cta:hover a {
                    background: #F5F5F5;
                    color: #222;
                }
        .main-menu .menu > li.menu-item {
        }
        .main-menu .menu .menu-item.menu-item-has-children .sub-menu {
            position: absolute;
            left: -9999px;
            width: 400px;
            background: #FFFFFF;
            box-shadow: 0 5px 10px 0 rgba(0,0,0,0.15);
            z-index: 100;
            opacity: 0;
            top:  60px;
            border-radius: 20px;
            padding: 10px 0;
            transition: opacity 0.25s ease-in-out 0s, top 0.2s ease-in-out;
        }
            .main-menu .menu .menu-item.menu-item-has-children:hover .sub-menu {
                left: -5px;
                opacity: 1;
                top: 55px;
            }

                .main-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item a {
                    width: 100%;
                    line-height: 32px;
                    padding: 5px 20px;
                    font-size: 17px;
                }
                .child-pages,
                .cta-menu {
                    padding: 0;
                    list-style: none;
                }
                    .cta-menu a.ghost {
                        background: none;
                        border: 1.5px solid #922A7C;
                        color: #922A7C;
                    }
}

/* MAIN MENU MOBILE */
@media (max-width:1099px) {
    .toggle-menu {
        display: block;
        z-index: 1000;
    }
    .row.main-menu {
        height: 80px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        padding: 0;
        margin:0;
        z-index: 900;
        overflow: visible;
        transition: background 0.2s ease-in-out;
        z-index: 900;
        transform: background 0.25s ease-in-out;
    }
        .scrolls .row.main-menu {
            background: #F6EFEFE6;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }
        .menu-active .row.main-menu {
            background: #F6EFEF;
            transform: background 0.25s ease-in-out;
        }
    .main-menu .menu,
    .main-menu .menu li {
        list-style: none;
    }
        .row.main-menu .container {
            height: 100%;
            width: 100%!important;
            padding: 0 20px;
        }
        .row.main-menu .col-12 {
            height: 100%;
            width: 100%!important;
            padding: 0;
        }
        .row.main-menu .mobile-menu {
            position: fixed;
            right: 0;
            top: 80px;
            width: 100vw;
            height: 100vh;
            padding: 20px 0;
            z-index: 980;
            background: #F6EFEF;
            opacity: 0;
            transform: translateY(-15px);
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
             .row.main-menu .mobile-menu  > div {
                width: 100%;
             }
            .menu-active .row.main-menu .mobile-menu {
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
            }
            .overlay {
                position: fixed;
                left: 0;
                top: 0;
            }
                .main-menu .cta-menu,
                .main-menu .menu a {
                    text-decoration: none;
                    line-height: 60px;
                    padding: 0 25px 0 25px;
                    font-size: 24px;
                    font-weight: 400;
                    width: 100%;
                    color: #922A7C;
                    display: inline-block;
                }
                .main-menu .menu .menu-item.menu-item-has-children > a:after {
                    content: "";
                    display: block;
                    width:  10px;
                    height: 10px;
                    border-bottom: 2px solid;
                    border-left:2px solid;
                    transform: rotate(-45deg);
                    position: absolute;
                    right: 35px;
                    top: 32px;
                    margin-top: -7px;
                    opacity: 0;
                }

                .menu-active .main-menu .menu .menu-item.menu-item-has-children > a:after {
                    opacity: 1;
                }

                .main-menu .menu .menu-item {
                    position: relative;
                    opacity: 0;
                    transform: translateY(-8px);
                    transition: opacity 0.25s ease, transform 0.25s ease;
                }

                    .main-menu .menu .menu-item.current-menu-item > a {
                        opacity: 0.75;
                    }

                .menu-active .main-menu .menu .menu-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
                .menu-active .main-menu .menu .menu-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
                .menu-active .main-menu .menu .menu-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
                .menu-active .main-menu .menu .menu-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
                .menu-active .main-menu .menu .menu-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
                .menu-active .main-menu .menu .menu-item:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
                .menu-active .main-menu .menu .menu-item:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

                .main-menu .menu .menu-item.menu-item-has-children .sub-menu {
                    display: none;
                }
                    .main-menu .menu .menu-item.menu-item-has-children:hover .sub-menu {
                        display: block;
                    }

                    .main-menu .menu .menu-item > a {
                        font-family: "Bricolage Grotesque", sans-serif;
                        font-weight: 600;
                    }
                    .main-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item a {
                        width: 100%;
                        padding-left: 40px;
                        line-height: 50px;
                        font-size: 95%;
                    }

    .mobile-menu .open-times{
        position: absolute;
        top:20px;
        color: #F9F7F4!important;
    }
    .main-menu .cta-menu {
        text-decoration: none;
        padding: 0 25px 0 25px;
        font-size: 125%;
        flex-direction: column;
        display: flex;
        margin-top: 30px;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.25s ease 0.35s, transform 0.25s ease 0.35s;
    }
    .menu-active .main-menu .cta-menu {
        opacity: 1;
        transform: translateY(0);
    }
    .main-menu .cta-menu .btn {
        line-height: 50px;
        font-size: 18px;
        margin: 0 0 20px 0;
    }
    .main-menu .cta-menu .btn.ghost {
        border-color: #F9F7F4;
        color: #F9F7F4;
    }
    .main-menu .cta-menu .btn.whatsapp {
        border-color: #1c1c1c;
        color: #F9F7F4;
        background-color: #1c1c1c;
    }
}
/* FOOTER MENU DESKTOP */
 
footer {
    position: relative;
    padding-top: 30px;
}
    footer .row {
        padding: 45px 0;
    }

.row.footer-menu {
}
    footer .flex-row ul {
        flex-direction: row;
    }
    footer .flex-column ul {
        flex-direction: column;
    }
    footer ul.menu a {
        padding: 0 20px 0 0!important;
    }
    .sub-footer ul,
    .sub-footer ul li,
    .footer-menu ul,
    .footer-menu ul li {
        margin: 0;
        list-style: none;
    }
    footer strong,
    footer,
    footer table td,
    footer a {
        font-size: 16px;
        line-height: 32px;
        text-decoration: none;
        transition: opacity 0.15s ease-in-out;
    }   

        footer a:hover {
            opacity: 0.75;
        }

        footer .hero {
            position: absolute;
            right: 30px;
            bottom: -15px;
        }
    .row.sub-footer {
        padding: 20px 0 10px 0;
    }
    subfooter a,
    subfooter p{
        font-size: 14px;
        opacity: 0.75;
        text-decoration: none;
    }
    subfooter ul {
        flex-direction: column;
        margin: 0 auto;
    }
    subfooter ul li{
        float: left;
        padding-right: 20px;
        display: inline-block;
    }
}

/* FOOTER MENU DESKTOP */
 
footer {
    position: relative;
    padding-top: 30px;
}
.row.footer-menu {
}
    footer .flex-row ul {
        flex-direction: row;
    }
    footer .flex-column ul {
        flex-direction: column;
    }
    .sub-footer ul,
    .sub-footer ul li,
    .footer-menu ul,
    .footer-menu ul li {
        margin: 0;
        list-style: none;
    }
.sub-footer {
    font-size: 80%;

}
.sub-footer .copyright {
    text-align: right;
}


/* FOOTER MOBILE */

@media (max-width:1099px) {
    .footer-menu .col-12{
        flex-direction: column;
    }
    footer .copyright {
        margin-top: 30px;
    }
        .footer-menu .menu a {
            text-decoration: none;
            padding: 0;
            display: inline-block;
        }
        footer .row .container > div {
            margin-bottom: 30px;
        }
        *.text-right * {
            text-align: left!important;
        }
}
.socials {
    margin-top: 20px;
}
.socials img{
    margin-right: 10px;
}

.cta .col-7 .wrapper{
    color: #922A7C;
    font-size: 24px;
    font-weight: 400;
    font-family: "Bricolage Grotesque", sans-serif;
    background: #FFF;
    padding:40px;
    border-radius: 40px;
    }


/* BUTTONS */

.btn {
    padding: 0 20px;
    border-radius: 30px;
    display: inline-block;
    line-height: 40px;
    text-decoration: none;
    background: #922A7C;
    display: inline-block;
    font-weight: 400;
    color: #FFF;
    width: auto;
    border: 0;
    border: 1.5px solid #922A7C;
    font-size: 16px;
    margin-top: 20px;
}
    .btn:after {
        content: "";
        display: inline-block;
        width: 9px;
        height: 9px;
        border-top: 1.5px solid;
        border-right: 1.5px solid;
        transform: rotate(45deg);
        margin-left: 5px;
    }
        .btn.large:after {
        width: 10px;
        height: 10px;
        border-top: 2.5px solid;
        border-right: 2.5px solid;
        margin-left: 10px;

        }
    .main-menu .btn {
        margin-top: 0;
    }
    .btn + .btn {
        margin-left: 10px;
    }
    .main-menu .btn {
        font-size: 16px;
    }
    .btn.inverted {
        background: #FFF;
        color: #922A7C;
    }
    .btn.large {
        padding: 0 25px;
        line-height: 50px;
        font-size: 19px;
    }
    .btn.small {
        padding: 4px 15px;
        line-height: 30px;
        font-size: 13px;
    }
    .btn.ghost {
        border: 1.5px solid #922A7C;
        background: none;
        color: #922A7C;
    }
    .btn.large.ghost {
        border: 2px solid #922A7C;
        background: none;
        color: #922A7C;
    }
    .btn.ghost.inverted {
        border: 1.5px solid #FFF;
        background: none;
        color: #FFF;
    }
    .btn.large.ghost.inverted {
        border: 2px solid #FFF;
        background: none;
        color: #FFF;
    }
    .btn.margin-top {
        margin-top: 1em;
    }
    .btn.shopify {
        background-image: url('images/shopify-logo.svg');
        background-position: 15px center;
        background-color: #922A7C;
        background-repeat: no-repeat;
        background-size: 22px;
        color: #FFF;
        padding-left: 45px;
        border-color: #922A7C;
    }
    .btn.large.shopify {
        background-position: 20px center;
        background-size: 28px;
        padding-left: 58px;
    }

/* LOGO */

footer .logo,
.main-menu .logo {
    width: 90px;
    height: 65px;
    background-image: url('images/logo_black.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {

    .main-menu .logo {
        width: 70px;
        height: 50px;
        margin-top: 20px;
        background-image: url('images/logo_white.svg');
        background-size: contain; 
        background-repeat: no-repeat; 
        margin-left: -20px;
    }
        .menu-active .main-menu .logo,
        .scrolls .main-menu .logo {
            background-image: url('images/logo_black.svg');
            background-size: contain;
        }
}

/* BREADCRUMBS */

.breadcrumbs{
   padding: 0 0 10px;
}

.breadcrumbs * {
   font-size: 14px;
}

.breadcrumbs span span {
   font-size: 14px;
   font-weight: 500;
}
    .breadcrumbs span span {
       opacity: 0.75;
    }
    .breadcrumbs span span:hover {
       opacity: 1;
    }
    .breadcrumbs span.arrow {
        position: relative;
        width: 25px;
        display: inline-block;
    }
    .breadcrumbs span.arrow:after{
        content: "";
        display: inline-block;
        width:  7px;
        height: 7px;
        border-bottom: 1.5px solid;
        border-left: 1.5px solid;
        transform: rotate(-135deg);
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -4px 0 0 -4px;
        transition: all 0.2s ease-in-out;
    }


/* CHECKS */

ul.checks li{
    list-style: none;
    padding: 0 0 0 25px;
    position: relative;
}
    ul.checks li:before{
        width: 8px;
        height: 12px;
        content: "";
        display: block;
        border-right: 2px solid #222;
        border-bottom: 2px solid #222;
        position: absolute;
        transform: rotate(45deg);
        left: 5px;
        top: 5px;
    }


/* Slider */

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.quote-slider.slick-slider {
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.slick-list {
    position: relative;
    overflow: visible;
    display: block;
    margin: 0;

    &:focus {
        outline: none;
    }

    &.dragging {
        cursor: pointer;
        cursor: hand;
    }
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.productslide .slick-track .col-4 {
    margin-top: 40px;
}
.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;

    &:before,
    &:after {
        content: "";
        display: table;
    }

    &:after {
        clear: both;
    }

    .slick-loading & {
        visibility: hidden;
    }
        }
        .slick-slide {
            float: left;
            height: 100%;
            min-height: 1px;
            [dir="rtl"] & {
                float: right;
            }
            img {
                display: block;
            }
            &.slick-loading img {
                display: none;
            }

            display: none;

            &.dragging img {
                pointer-events: none;
            }

            .slick-initialized & {
                display: block;
            }

            .slick-loading & {
                visibility: hidden;
            }

            .slick-vertical & {
                display: block;
                height: auto;
                border: 1px solid transparent;
            }
        }
        .slick-arrow.slick-hidden {
            display: none;
        }
        .slick-arrow {
            position: absolute;
            left: 25px;
            border: 0;
            text-indent: -9999px;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 500;
            bottom: -30px;
        }
            .slick-arrow.slick-disabled {
                opacity: 0.75;
                cursor: default;
            }
            .slick-arrow.slick-prev {
                 left: 60px;
             }
            .slick-arrow.slick-next {
                 left: 125px;
             }
            .slick-arrow.slick-prev,
            .slick-arrow.slick-next {
                background: url('images/arrow-next-black.svg');
                background-size: contain;
                background-repeat: no-repeat;

            }
            .slick-arrow.slick-prev {
                background-image: url('images/arrow-prev-black.svg');
            }
                .quote-slider .slick-arrow {
                    bottom: -25px;
                    left: 50%;
                    margin-left: 0px;
                }
                .quote-slider .slick-arrow.slick-prev {
                    margin-left: -65px;
                }
.slick-dots
{
    position: absolute;
    display: block;
    width: calc(100% - 50px);
    padding: 0;
    margin: 0;
    bottom: 20px;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-size: 40px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .5;
    color: black;
}

.bg-dark .slick-dots li button:before,
.bg-dark .slick-dots li.slick-active button:before
{
    color: #FFF;
}


/* PAGES */

.wpcf7-form {
    background: #FFF;
    border-radius: 30px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    padding: 30px 40px;
    margin-top: 40px;
}
    .wpcf7-form label {
        width: 100%;
        font-size: 14px;
        font-weight: 500;
    }
    .wpcf7-form :place {
        width: 100%;
        font-size: 14px;
        font-weight: 500;
    }
    .post-password-form input[type=password],
    .wpcf7-form textarea,
    .wpcf7-form input[type=text],
    .wpcf7-form input[type=email]{
        width: 100%;
        line-height: 32px;
        padding: 10px;
        font-size: 18px;
        border: 1px solid #DDD;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .post-password-form input[type=password] {
        max-width: 300px;
    }
    .wpcf7-form textarea::placeholder,
    .wpcf7-form input[type=text]::placeholder,
    .wpcf7-form input[type=email]::placeholder{
        color: #222;
    }
    .wpcf7-form input[type=radio] {
        width: 20px;
        box-sizing: border-box;
        padding: 0;
    }
    .wpcf7-form textarea {
        height: 130px;
    }

    .wpcf7-form .wpcf7-submit {
        padding: 4px 20px;
        border-radius: 30px;
        display: inline-block;
        line-height: 40px;
        text-decoration: none;
        background: #222;
        display: inline-block;
        font-weight: 500;
        color: #FFF;
        width: auto;
        border: 0;
    }

    .wpcf7-form p.disclaimer {
        width: 100%;
        margin: 10px 0 20px;
        font-size: 14px;
        line-height: 22px;
        color: #666;
    }
    .wpcf7-radio .wpcf7-list-item, .wpcf7-checkbox .wpcf7-list-item {
        display: block;
        margin-left: 0px;
    }

    .wpcf7-radio:after, 
    .wpcf7-checkbox:after {
        content: "";
        display: block;
        height: 15px;
    }

    .wpcf7 .wpcf7-list-item {
        display: block;
        margin-bottom: 5px;
    }

    .wpcf7-form .wpcf7-radio label {
        position: relative;
        cursor: pointer;
        line-height: 35px;
    }
    .wpcf7-form .wpcf7-radio label span {
        line-height: 35px;
        font-size: 1.15em;
        padding-top: 10px;
    }

    .wpcf7-form .wpcf7-radio input[type=radio] {
        position: relative;
        visibility: hidden;
    }

    .wpcf7-form .wpcf7-radio input[type=radio] + span:before {
        display: block;
        position: absolute;
        content: '';
        border-radius: 100%;
        height: 24px;
        width: 24px;
        top: -3px;
        border: 1px solid #CCC;
    }

    .wpcf7-form .wpcf7-radio input[type=radio] + span:after {
        display: block;
        position: absolute;
        content: '';
        border-radius: 100%;
        height: 18px;
        width: 18px;
        top: 0px;
        left: 3px;
        visibility: hidden;
    }

    .wpcf7-form .wpcf7-radio input[type=radio]:checked + span:before {
        background: transparent;
    }


    .wpcf7-form .wpcf7-radio input[type=radio], 
    .wpcf7-form .wpcf7-list-item input[type=checkbox] {
        margin-right: 10px;
    }

    .wpcf7-form .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + span:after {
        background: #FF8800;
        visibility: visible;
    }

    /* Verberg de native checkbox */
.wpcf7-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Layout van elk checkbox-item */
.wpcf7-checkbox .wpcf7-list-item {
    display: block;
    margin-bottom: 10px;
}

.wpcf7-checkbox .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

/* De custom checkbox via :before op de label-span */
.wpcf7-checkbox .wpcf7-list-item-label {
    position: relative;
    padding-left: 34px;
    line-height: 22px;
    font-size: 17px;
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #aaa;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.2s, background-color 0.2s;
}

/* Het vinkje via :after */
.wpcf7-checkbox .wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 3px;
    width: 7px;
    height: 12px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.15s;
}

/* Checked state */
.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background-color: #922A7C; /* jouw brandkleur */
    border-color: #922A7C;
}

.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}

/* Focus state voor toegankelijkheid */
.wpcf7-checkbox input[type="checkbox"]:focus + .wpcf7-list-item-label::before {
    outline: 2px solid #922A7C;
    outline-offset: 2px;
}

/* Hover state */
.wpcf7-checkbox .wpcf7-list-item-label:hover::before {
    border-color: #2e7d32;
}


 /* IMAGE */

.bg-image {
    display: block;
    content: "";
    width: 50vw;
    position: absolute;
    left: 50vw;
    margin-left: 50px;
    height: 100%;
    max-height: 700px;
    z-index: -1;
    top:0;
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
}
    .hero-image {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 50px;
        background-size: cover;
        overflow: hidden;
        background-position: center center;
    }
    .bg-image------:after{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        content: "";
        z-index: 0;
        display: block;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
        z-index: 0;
        background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.5));
    }

   /* .hero * {
        color: #FFF;
        text-shadow: 0 0 30px  rgba(0,0,0,1);
    }
        .hero .container {
            min-height: 600px;
        } */

.features .image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-repeat: none;
}


/* PARALLAX */

.hero .container{
    min-height: 450px;
}
.hero .col-6.parallax {
    height: 100%;
}
.parallax-scene {
    position: relative;
    height: 100%;
    max-height: 500px;
}
.parallax-scene img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.parallax-scene.align-left img[class*="image-"] {
    left: 20px;
}
.parallax-scene.align-left .parallax-bg  {
    text-align: right;
}
.parallax-scene.align-right img[class*="image-"] {
    right: 20px;
}

.parallax-scene.align-right .parallax-bg  {
    text-align: left;
}

.parallax-layer {
  position: absolute;
  will-change: transform;
  transition: transform 0.1s linear;
}
    
.parallax-scene img[class*="image-"] {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 95%;
}
    .hero .parallax-scene .image-1 {
        width: 450px;
        top: 5%;
    }
    .hero .parallax-scene .image-2 {
        width: 285px;
        bottom: -17%;
        left: 50px!important;
    }
    .hero .parallax-scene .image-3 {
        width: 285px;
        bottom: 10px;
        left: 425px!important;
    }
    .features .parallax-scene .image-1 {
        width: 450px;
        top: 100px;
    }
    .features .parallax-scene .image-2 {
        width: 415px;
        bottom: 140px;
    }
    .features.library-1 .parallax-scene .image-1 {
        width: 405px;
        top: 100px;
        left: 60px;
    }
    .features.library-1 .parallax-scene .image-2 {
        width: 355px;
        bottom: 160px;
        left: 100px;
    }
    .features.library-2 .parallax-scene .image-1 {
        width: 315px;
        top: 100px;
        left: 60px;
    }
    .features.library-2 .parallax-scene .image-2 {
        width: 325px;
        bottom: 160px;
        left: 100px;
    }
    .features.secondhand-1 .parallax-scene .image-1 {
        width: 405px;
        top: 60px;
        left: 60px;
    }
    .features.secondhand-1 .parallax-scene .image-2 {
        width: 405px;
        bottom: 100px;
        left: 100px;
    }
    .features.secondhand-2 .parallax-scene .image-1 {
        width: 315px;
        top: 100px;
        left: 60px;
    }
    .features.secondhand-2 .parallax-scene .image-2 {
        width: 325px;
        bottom: 80px;
        left: 100px;
    }

.steps h3 {
    position: relative;
}
    .steps h3:before {
        position: relative;
        content: "1";
        display: inline-block;
        width: 50px;
        height: 50px;
        border-radius: 50px;
        background: #922A7C;
        color: #FFF;
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: 24px;
        line-height: 50px;
        text-align: center;
        margin-right: 15px;
    }
        .steps h3 + p {
            padding-left: 65px;
        }

        .steps h3:nth-of-type(2):before{
            content: "2";  
        }
        .steps h3:nth-of-type(3):before{
            content: "3";  
        }
        .steps h3:nth-of-type(4):before{
            content: "4";  
        }
        .steps h3:nth-of-type(5):before{
            content: "5";  
        }
        .steps h3:nth-of-type(6):before{
            content: "6";  
        }

/* ACCORDION */

.accordion h3 {
    padding: 25px 40px 25px 0;
    margin: 0;
    line-height: 28px;
    border-top: 1px solid #222;
    position: relative;
    transition: all 0.1s ease-in-out;

}
    .accordion h3.heading::before,
    .accordion h3.heading::after {
        width: 20px;
        height: 2px;
        background: #222;
        display: block;
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transition: all 0.1s ease-in-out;
    }

        .accordion h3.heading::before {
            transform: rotate(90deg);
        }
        .accordion h3.active:after {
            transform: rotate(45deg);
        }
        .accordion h3.active:before {
            transform: rotate(135deg);
        }

        .accordion h3:hover:after,
        .accordion h3:hover:before {
            background: #922A7C;
        }
        .accordion h3:hover {
            color: #922A7C;
        }
        .accordion h3 + p {
            margin-bottom: 20px;
        }
        .bg-dark .accordion h3 {
            border-top: 1px solid #F6EFEF;
        }
        .bg-dark .accordion h3.heading::before,
        .bg-dark .accordion h3.heading::after {
            background: #F6EFEF;
        }
        .bg-dark .accordion h3:hover,
        .bg-dark .accordion h3:hover::after,
        .bg-dark .accordion h3:hover::before {
            color: #F6EFEF;
        }


/* GLOBALS RESPONSIVE */

.mobile-overflow {
    min-width: 100%;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0 auto;
    flex-wrap: wrap;
}
.mobile-only {
    display: none!important;
}
.desktop-only {
    display: block!important;
}
.text-in-columns {
    column-count: 2;
    column-gap: 50px;
}


@media (max-width: 1100px) {
    body {
        padding-top: 80px;
    }
    .row {
        padding: 40px 0;
    }
    .desktop-only {
        display: none!important;
    }
    .mobile-only {
        display: flex!important;
    }
    .mobile-scroll {
        overflow-x: scroll;
        overflow-y: visible;
    }
    .mobile-overflow {
        width: 600px!important;
        min-width:  600px;
        display: flex;
        flex-wrap: initial;
        padding-bottom: 30px;
    }
    .mobile-overflow > div {
        flex: 0 0 50%!important;
        max-width: 50%!important;
    }
    .row.main-menu .container {
        max-width: 100%;
    }

    .mobile-order-1 {
        order: -1;
    }
        .page-id-34 ..mobile-order-1 {
            order: 2;
        }
    .col-1,
    .col-25,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 20px!important;
    }
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 20px!important;
    }
    .menu-toc {
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 10px;
    }
        .menu-toc a{
            white-space: nowrap;
        }
        .card .padding {
            padding: 20px!important;
        }

    .featured-image {
        margin: 20px 0!important;
    }

    .bg-image {
        border-top-left-radius: 120px;
        border-bottom-left-radius: 120px;
    }
    .solutions .col-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .grid-item .wrapper {
        min-height: 500px;
    }
    .col-7.shopify-slide {
        max-width: 75%;
    }
        p.quote {
            padding: 30px;
        }
        p.quote + p {
            margin-left: 30px;
        }
}

@media (max-width: 767px) {
    body {
        padding-top: 80px;
    }
    .row {
        padding: 40px 0;
    }
    .desktop-only {
        display: none!important;
    }
    .mobile-only {
        display: flex!important;
    }
    .mobile-scroll {
        overflow-x: scroll;
        overflow-y: visible;
    }
    .mobile-overflow {
        width: 600px!important;
        min-width:  600px;
        display: flex;
        flex-wrap: initial;
        padding-bottom: 30px;
    }
    .mobile-overflow > div {
        flex: 0 0 50%!important;
        max-width: 50%!important;
    }
    .container {
        max-width: 100%;
    }
    .row.main-menu .container {
        max-width: 100%;
    }

    .mobile-order-1 {
        order: -1;
    }
    .border-radius-round {
        border-radius: 60px;
    }
    .solutions .col-4,
    .col-1,
    .col-2,
    .col-25,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .sticky {
        top: 80px;
    }
    .parallax-scene {
      padding: 0;
    }

    .hero .bg-image h1 {
        font-size: 9vw;
        position: absolute;
        bottom: 30px;
        color: #FFF;
        z-index: 1;
        padding-right: 30px;
    }  
        .hero .bg-image:after{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        content: "";
        z-index: 0;
        display: block;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
        z-index: 0;
        opacity: 0.75;
        transition: opacity 0.25s ease-in-out;
        background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
    }
    .hero p.intro {
        font-size: 18px;
        line-height: 30px;
    }

    .hero h1 + p {
        margin-top: 30px;
    }
    .hero {
        overflow: visible;
        padding-top: 520px;
    }
    .hero .bg-image{
        position: absolute;
        width: 100%;
        border-radius: 0;
        border-bottom-right-radius: 80px;
        margin: 0;
        height: 600px;
        left: 0;
        top: -600px;
        padding: 0 20px;
    }
    .col-6.has-image {
        padding-left: 0!important;
        padding-right: 0!important;
    }
    .hero .row {
        padding: 0;
    }
    .text-center, .text-center * {
        text-align: left;
    }
    p.quote {
        font-size: 24px;
    }
    .hero .container {
        min-height: auto;
    }
    .mobile-1 {
        order: -1;
    }
    footer .logo {
        margin: 0;
        width: 70px;
        height: 50px;
    }
    footer .bg-loop {
        width: 200vw;
        height: 200vw;
        position: absolute;
        z-index: 0;
        left: 50%;
        margin-left: -100vw;
        bottom: 50vh;
    }
    .wpcf7-form {
        padding: 20px 30px;
    }

    .page-template-default .hero {
        overflow: visible;
        padding-top: 320px;
    }
    .page-template-default .hero .bg-image{
        position: absolute;
        width: 100%;
        border-radius: 0;
        border-bottom-right-radius: 80px;
        margin: 0;
        height: 400px;
        left: 0;
        top: -400px;
        padding: 0 20px;
    }

}

@media (max-width: 512px) {

}
.related .col-6 {
    margin-bottom: 30px;
}



/* PLANS */


.plugin {
    margin: 40px 0;
    width: 100%;
}

.plugin .wrapper {
    padding: 30px;
    background: #FFF;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
}
.plugin .plan svg,
.plugin .plan {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}
.plugin .title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
    font-size: 28px;
}
.plugin .subtitle {
    font-weight: 400;
    font-size: 15px;
    opacity: 0.5;
    margin-bottom: 30px;
}
.plugin .price *,
.plugin .price {
    font-weight: 500;
    font-size: 28px;
}
    .plugin .price .euro {
        font-size: 16px;
        margin-right: -3px;
    }

.plugin .subprice {
    font-weight: 400;
    font-size: 15px;
    opacity: 0.5;
}

.plugin .label {
    font-weight: 600;
    font-size: 15px;
}

.plugin .featurelist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plugin .featurelist li {
    font-weight: 300;
    font-size: 16px;
    line-height: 32px;
    position: relative;
    padding-left: 20px;
}


.plugin .featurelist li,
.plugin .featurelist li * {
    color: #666;
}
.plugin .featurelist li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 13px;
    margin-left: 4px;
    border-right: 2px solid green;
    border-bottom: 2px solid green;
    transform: rotate(45deg);
}

.featurelist .label {
    display: inline-block;
    border-radius: 4px;
    line-height: 20px;
    color: #FFF!important;
    font-weight: 600;
    padding: 0 5px;
    font-size: 10px;
    opacity: 1;
    margin-right: 10px;
    text-transform: uppercase;
    background: linear-gradient(90deg,rgba(232, 19, 136, 1) 0%, rgba(37, 18, 195, 1) 100%);
}

.plugin .btn {
    margin: 10px 0;
    width: 100%;
    text-align: center;
}

