.art .article-list {
    width: 100%;
    margin: 20px 0 0;
    padding: 1px 0 20px;
    background-color: var(--sub-medium);
}

.art .article-list--container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.art .article-list--holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.art .article-list--item {
    flex: 0 0 23%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 22.5px 1%;
    padding: 0 0 10px;
    border-radius: 20px;
    background-color: var(--white);
    color: var(--text-default);
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease;
}

.art .article-list--item:hover {
    background-color: var(--grey-lightest-a);
}

.art .article-list--item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 15px;
}

.art .article-list--item p {
    margin: 10px 15px 50px;
    line-height: 1.6rem;
}

.art .article-list--item>p:first-of-type {
    font-size: 1rem;
    font-weight: bold;
}

.art .article-list--item-button {
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 120px;
    padding: 5px 15px;
    border-radius: 5px;
    background-color: var(--vivid-medium);
    color: var(--white);
    text-align: center;
    font-weight: bold;
    outline: none;
    user-select: none;
    cursor: pointer;
    transition: background-color .2s ease;
}

.art .article-list--item-button:hover {
    background-color: var(--vivid-dark);
}

.art .article-list--item-button i {
    margin-left: 10px;
}

@media only screen and (max-width: 1000px) {
    .art .article-list--container {
        width: 90%;
    }
    .art .article-list--item {
        flex: 0 0 30%;
        margin: 22.5px 1.6%;
    }
}

@media only screen and (max-width: 850px) {
    .art .article-list--holder {
        justify-content: space-around;
    }
    .art .article-list--item {
        flex: 0 0 40%;
    }
}

@media only screen and (max-width: 700px) {
    .art .article-list--item {
        flex: 0 0 47%;
        margin: 22.5px 1%;
    }
}

@media only screen and (max-width: 550px) {
    .art .article-list--item {
        flex: 0 0 100%;
        max-width: 275px;
    }
}

.art .brdr-rad-30 {
    border-radius: 30px;
}

.art .brdr-rad-20 {
    border-radius: 20px;
}

.art .brdr-rad-10 {
    border-radius: 10px;
}

.art .brdr-rad-5 {
    border-radius: 5px;
}

.art .brdr-rad-2-5 {
    border-radius: 2.5px;
}

.art .bold {
    font-weight: bold;
}

.art .link,
.art .art-content p a,
.art .art-content ul>li a,
.art .art-content ol>li a {
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
    text-decoration: none;
    transition: background-size .3s ease;
}

.art .btn-style {
    outline: none;
    user-select: none;
    cursor: pointer;
    transition: background-color .2s ease;
}

@media only screen and (max-width: 750px) {
    .art .brdr-rad-30 {
        border-radius: 15px;
    }
    .art .brdr-rad-20 {
        border-radius: 10px;
    }
}

.art .art-base {
    display: flex;
    justify-content: center;
    margin-top: 120px;
}

.art .art-holder {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: auto 0;
}

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

.art .art-content {
    flex: 0 0 66%;
    box-sizing: border-box;
}

.art .art-extra {
    position: relative;
    flex: 0 0 32.5%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

@media only screen and (max-width: 1100px) {
    .art .art-holder {
        padding: 0 10px;
    }
    .art .art-content {
        flex: 0 0 64%;
    }
    .art .art-extra {
        flex: 0 0 35%;
    }
}

@media only screen and (max-width: 750px) {
    .art .art-base {
        margin-top: 80px;
    }
    .art .art-holder {
        padding: 0 5vw;
    }
    .art .content-holder {
        flex-direction: column;
    }
    .art .art-content {
        flex: 0 0 100%;
    }
    .art .art-extra {
        flex: 0 0 100%;
    }
}

.art .art-content>p {
    margin: 30px 0;
    line-height: 1.8rem;
}

.art .art-holder h2,
.art .article-list h2 {
    margin: 50px 0 30px;
    font-size: calc(1.45rem + .4vw);
    line-height: calc(1.7rem + 1vw);
    font-weight: bold;
}

.art .art-holder h3 {
    margin: 30px 0;
    font-size: calc(1.2rem + .3vw);
    line-height: calc(1.5rem + .6vw);
    font-weight: bold;
}

.art .art-content p a,
.art .art-content ul>li a,
.art .art-content ol>li a {
    background-image: linear-gradient(var(--vivid-dark), var(--vivid-dark));
    color: var(--vivid-medium);
    text-decoration: none;
    font-weight: bold;
}

.art .art-content p a:hover,
.art .art-content ul>li a:hover,
.art .art-content ol>li a:hover {
    background-size: 100% 1px;
    color: var(--vivid-dark);
}

.art .art-content ul {
    padding-left: 15px;
    list-style-type: disc;
}

.art .art-content ol {
    padding-left: 15px;
    list-style-type: decimal;
}

.art .art-content ul li,
.art .art-content ol li {
    margin: 15px 0;
    line-height: 1.8rem;
}

.art .art-table--info ul li,
.art .art-table--info ol li,
.art .faq--element ul li,
.art .faq--element ol li {
    margin: 5px 0;
    line-height: 1.6rem;
}

.art .art-content>p,
.art .art-content ul,
.art .art-content ol {
    padding-right: 35px;
}

.art .art-content>p,
.art .art-content ul,
.art .art-content ol,
.art .benefit,
.art .art-table th,
.art .art-table td,
.art .tips-box--text,
.art .faq--answer p,
.art .info-product--topic-title,
.art .info-art *,
.art .side-cta--bullet p {
    font-size: .9rem;
}

.art .art-table .toggle-more,
.art .art-table--info p,
.art .art-table--info ul,
.art .art-table--info ol,
.art .info-product--topic-answer,
.art .info-product--explanation,
.art .bread-nav--link,
.art .info-art-mobile,
.art .nav-art--list-item span,
.art .article-list--item {
    font-size: .85rem;
}

@media only screen and (max-width: 750px) {
    .art .art-content>p,
    .art .art-content>ul,
    .art .art-content>ol {
        padding-right: 0;
    }
}

.art .art-headline {
    margin: 20px 0 30px;
    font-size: calc(1.5rem + .9vw);
    line-height: calc(1.9rem + 1.3vw);
    font-weight: bold;
}

.art img.main {
    object-fit: cover;
    height: 50vw;
    max-height: 350px;
    width: 100%;
}

.art .benefit {
    padding: 2.5px 5px;
    border-radius: 5px;
    color: var(--white);
    font-weight: bold;
}

.art .benefit.positive {
    background-color: var(--vivid-medium);
}

.art .benefit.negative {
    background-color: var(--red-medium);
}

.art .art-table,
.art .art-table--info {
    margin: 20px 0;
    background-color: var(--sub-medium);
}

.art .art-table {
    padding: 30px 20px 10px;
    overflow-x: hidden;
}

.art .art-table--holder {
    padding: 0 0 20px;
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--grey-light) var(--sub-medium);
}

.art .art-table--holder::-webkit-scrollbar {
    height: 10px;
}

.art .art-table--holder::-webkit-scrollbar-track {
    background: var(--sub-medium);
}

.art .art-table--holder::-webkit-scrollbar-thumb {
    background-color: var(--grey-light);
    border-radius: 6px;
    border: 3px solid var(--sub-medium);
}

.art .art-table table {
    width: 100%;
    border-collapse: separate;
}

.art .art-table caption {
    display: none;
}

.art .art-table tr {
    position: relative;
}

.art .art-table--top-row:after,
.art .art-table--normal-row:not(:last-child):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.art .art-table--top-row:after {
    height: 1.5px;
    border-bottom: solid 1.5px var(--grey-medium);
}

.art .art-table--normal-row:not(:last-child):after {
    height: .5px;
    border-bottom: solid .5px var(--grey-medium);
}

.art .art-table th,
.art .art-table td {
    line-height: 1.8rem;
    border-right: solid 20px transparent;
}

.art .art-table th {
    padding: 0 0 15px;
}

.art .art-table td {
    padding: 15px 0;
}

.art .art-table--normal-row:last-child td {
    padding: 15px 0 0;
}

.art .art-table .toggle-more {
    position: relative;
    width: 100px;
    left: calc(100% - 100px);
    margin: 10px 0 7.5px;
    padding: 5px;
    border: solid 1px var(--grey-medium);
    text-align: center;
}

.art .art-table .toggle-more:hover {
    background-color: var(--grey-light-a);
}

.art .art-table.opened .toggle-more--min,
.art .art-table.closed .toggle-more--plus {
    display: inline-block;
}

.art .art-table.opened .toggle-more--plus,
.art .art-table.closed .toggle-more--min {
    display: none;
}

.art .art-table--info {
    position: relative;
    overflow: hidden;
    max-height: 0;
    transition: max-height .5s ease;
}

.art .art-table.opened+.art-table--info {
    max-height: 1000px;
}

.art .art-table--info-text {
    padding: 40px 22.5px 30px;
}

.art .art-table--info p {
    margin: 10px 0;
    line-height: 1.8rem;
}

@media only screen and (max-width: 750px) {
    .art .art-table table {
        min-width: 600px;
    }
    .art .art-table table.table-cols-1 {
        min-width: 350px;
    }
    .art .art-table table.table-cols-2 {
        min-width: 400px;
    }
    .art .art-table table.table-cols-3 {
        min-width: 500px;
    }
}

.art .tips-box {
    margin: 20px 0;
    padding: 40px 22.5px 30px;
    background-color: var(--sub-medium);
}

.art .tips-box--holder {
    display: flex;
    flex-direction: row;
}

.art .tips-box--icon {
    margin-right: 25px;
    color: var(--vivid-medium);
}

.art .tips-box--icon i {
    margin: 10px 0;
    font-size: 2.5rem;
}

.art .tips-box--icon p {
    text-align: center;
    font-size: .8rem;
    font-weight: bold;
}

.art .tips-box--text {
    line-height: 1.8rem;
}

.art .whitespace-object {
    display: block;
    height: 5px;
    margin: 10px 0;
}

.art .image-obj {
    display: flex;
    justify-content: space-between;
}

.art .image-one-cover .image-holder {
    flex: 0 0 100%;
}

.art .image-one-center .image-holder {
    flex: 0 0 50%;
    margin: 0 auto;
}

.art .image-two-inline .image-holder {
    flex: 0 0 48%;
}

.art .image-three-inline .image-holder {
    flex: 0 0 30%;
}

.art .image-holder p {
    margin: 15px 0;
    color: var(--grey-medium);
    font-size: .8rem;
    line-height: 1.4rem;
}

.art .image-obj img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 450px) {
    .art .image-one-center .image-holder {
        flex: 0 0 100%;
    }
    .art .image-two-inline {
        flex-direction: column;
    }
    .art .image-two-inline .image-holder {
        flex: 0 0 100%;
        margin: 0 0 20px;
    }
    .art .image-three-inline {
        flex-direction: column;
    }
    .art .image-three-inline .image-holder {
        flex: 0 0 100%;
        margin: 0 0 20px;
    }
}

.art .faq {
    margin: 20px 0;
    padding: 1px 22.5px 10px;
    background-color: var(--sub-medium);
}

.art .faq--element {
    position: relative;
    margin: 20px 0 0;
}

.art .faq--question h3 {
    width: calc(100% - 15px);
    margin: 0 0 15px;
    font-size: calc(.9rem + .1vw);
    line-height: calc(1.2rem + .4vw);
    font-weight: bold;
    cursor: pointer;
    transition: color .2s ease;
}

.art .faq--opener {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: color .2s ease;
}

.art .faq--question:hover h3,
.art .faq--question:hover .faq--opener {
    color: var(--grey-medium);
}

.art .faq--answer {
    position: relative;
    overflow: hidden;
    max-height: 0;
    margin: 0 0 0;
    padding: 0 7.5px;
    line-height: 1.8rem;
    transition: max-height .5s ease-in-out;
}

.art .faq--answer p {
    margin: 10px 0;
}

.art .faq--question.opened+.faq--answer {
    max-height: 500px;
}

.art .faq--question.opened .open-icon,
.art .faq--question.closed .close-icon {
    display: none;
}

.art .faq--question.closed .open-icon,
.art .faq--question.opened .close-icon {
    display: block;
}

.art .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 15px;
    height: 15px;
    opacity: .7;
    cursor: pointer;
}

.art .close-btn:hover {
    opacity: 1;
}

.art .close-btn:before,
.art .close-btn:after {
    position: absolute;
    left: 6px;
    content: ' ';
    height: 15px;
    width: 2px;
    background-color: var(--grey-medium);
}

.art .close-btn:before {
    transform: rotate(45deg);
}

.art .close-btn:after {
    transform: rotate(-45deg);
}

.art .cta-box-a {
    display: flex;
    justify-content: center;
    width: 100%;
}

.art .cta-box-a * {
    display: inline-block;
}

.art .cta-box-a a {
    color: var(--white);
    text-decoration: none;
}

.art .cta-box-a div {
    padding: 12.5px 30px;
    background-color: var(--vivid-medium);
}

.art .cta-box-a a:hover div {
    background-color: var(--vivid-dark);
}

.art .pro-bar {
    position: fixed;
    z-index: 4;
    top: 84.5px;
    left: 0;
    width: 100%;
}

.art .pro-bar--filler {
    height: 6px;
    width: 0%;
    background-color: var(--vivid-medium);
    transition: width .1s linear;
}

@media only screen and (max-width: 750px) {
    .art .pro-bar--filler {
        height: 4px;
    }
}

.art .bread-nav {
    margin: 20px 0;
    color: var(--grey-light);
    line-height: 1.4rem;
}

.art .bread-nav--link {
    margin: 0 10px 0 0;
    background-image: linear-gradient(var(--grey-light), var(--grey-light));
    color: var(--grey-light);
    text-decoration: none;
}

.art .bread-nav--link:hover {
    background-size: 100% 1px;
}

.art .bread-nav--arrow {
    margin: 0 10px 0 0;
}

.art .info-product {
    display: flex;
    flex-direction: column;
    height: 350px;
    width: 100%;
    margin: 0 0 30px;
    padding: 30px 22.5px;
    background-color: var(--sub-medium);
}

.art .art-content .info-product {
    display: none;
    height: unset;
    padding-bottom: 15px;
}

.art .info-product--topic {
    margin: 0 0 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.art .info-product--item-holder {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0;
}

.art .info-product--item {
    flex: 0 0 48%;
    position: relative;
    padding: 10px;
    background-color: var(--white);
}

.art .info-product--information {
    position: absolute;
    right: 10px;
    top: 7.5px;
    background-color: var(--grey-lightest);
    padding: 2px 5.7px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
}

.art .info-product--information:hover {
    background-color: var(--vivid-medium);
}

.art .info-product--explanation {
    position: absolute;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    left: 0;
    top: 50px;
    max-height: 0;
    box-sizing: border-box;
    background-color: var(--vivid-dark);
    color: var(--white);
    line-height: 1.4rem;
    transition: max-height .2s ease-in-out;
}

.art .info-product--explanation.opened {
    max-height: 500px;
}

.art .info-product--meter~.info-product--explanation {
    top: 30px;
}

.art .info-product--explanation-holder {
    padding: 30px 22.5px 10px;
}

.art .info-product--explanation .close-btn:before,
.art .info-product--explanation .close-btn:after {
    background-color: var(--white);
}

.art .info-product--explanation-row {
    display: flex;
    flex-direction: row;
    margin: 5px 0;
}

.art .info-product--explanation-row i {
    flex: 0 0 20px;
    margin: 6px 10px 0 0;
    color: var(--white);
}

.art .info-product--explanation .link {
    color: var(--white);
    background-image: linear-gradient(var(--white), var(--white));
    line-height: 1.4rem;
}

.art .info-product--explanation .link:hover {
    background-size: 100% 1px;
}

.art .info-product--topic-title {
    margin: 0 0 5px;
    color: var(--vivid-medium);
    font-weight: bold;
}

.art .info-product--topic-answer {
    line-height: 1.4rem;
}

.art .info-product--meter {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-right: 10px;
}

.art .info-product--meter-holder {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 5px;
    background-color: var(--white);
}

.art .info-product--meter-filler {
    height: 80%;
}

.art .info-product--meter-filler.pct-20 {
    width: 20%;
    background: linear-gradient(90deg, #418d3d 0%, #67dd4a 100%);
}

.art .info-product--meter-filler.pct-40 {
    width: 40%;
    background: linear-gradient(90deg, #418d3d 0%, #67dd4a 50%, #d0f14e 100%);
}

.art .info-product--meter-filler.pct-60 {
    width: 60%;
    background: linear-gradient(90deg, #418d3d 0%, #67dd4a 33%, #d0f14e 66%, #e6f250 100%);
}

.art .info-product--meter-filler.pct-80 {
    width: calc(80% - 15px);
    background: linear-gradient(90deg, #418d3d 0%, #67dd4a 25%, #d0f14e 50%, #e6f250 75%, #e7d147 100%);
}

.art .info-product--meter-filler.pct-100 {
    width: calc(100% - 30px);
    background: linear-gradient(90deg, #418d3d 0%, #67dd4a 20%, #d0f14e 40%, #e6f250 60%, #e7d147 80%, #e3a63c 100%);
}

.art .info-product--meter-counter {
    font-size: 12px;
    font-weight: bold;
}

.art .info-product--meter-label {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 150px;
    margin-left: 5px;
}

.art .info-product--meter-title {
    font-size: 12px;
    font-weight: bold;
}

.art .info-product--meter-label .info-product--information {
    position: relative;
    top: 0;
    right: 0;
}

.art .info-product--item-holder a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.art .info-product--cta {
    width: 100%;
    margin: 0 0;
    padding: 20px 0;
    background-color: var(--vivid-medium);
    color: var(--white);
    text-align: center;
    font-weight: bold;
}

.art .info-product--cta:hover {
    background-color: var(--vivid-dark);
}

@media only screen and (max-width: 850px) {
    .art .info-product {
        padding: 20px 15px;
    }
    .art .info-product--item {
        flex: 0 0 48%;
    }
}

@media only screen and (max-width: 750px) {
    .art .art-extra .info-product {
        display: none;
    }
    .art .art-content .info-product {
        display: block;
    }
}

.art .info-art {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 20px;
    padding: 0 22.5px;
}

.art .info-art--row {
    display: flex;
    flex-direction: row;
    margin: 7.5px 0;
}

.art .info-art--row:last-child {
    padding-bottom: 30px;
    border-bottom: solid 1.5px var(--grey-light);
}

.art .info-art--title {
    flex: 0 0 30%;
    font-size: .9rem;
    font-weight: bold;
}

.art .info-art--answer {
    flex: 0 0 70%;
    font-size: .9rem;
}

@media only screen and (max-width: 750px) {
    .art .info-art {
        display: none;
    }
}

.art .info-art-mobile {
    display: none;
    width: 100%;
}

.art .info-art-mobile--holder {
    display: inline-block;
    width: fit-content;
    margin: 0 15px 15px 0;
}

.art .info-art-mobile--title {
    display: inline;
    margin-right: 5px;
    font-weight: bold;
}

.art .info-art-mobile--answer {
    display: inline;
}

@media only screen and (max-width: 750px) {
    .art .info-art-mobile {
        display: block;
    }
}

.art .nav-art {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 0;
    padding: 0 22.5px;
    background-color: var(--white);
    transition: margin-top .01s linear;
}

.art .nav-art.mobile {
    position: fixed !important;
    z-index: 1;
    top: 120px;
    left: 0 !important;
    right: 0 !important;
    bottom: unset !important;
    max-height: 40px;
    width: 100% !important;
    border-bottom: solid .5px var(--grey-light);
    transition: max-height .4s ease;
}

.art .nav-art.mobile.slide-up {
    max-height: 0;
    border-bottom: none;
}

.art .nav-art>p {
    font-weight: bold;
}

.art .nav-art.mobile>p {
    display: none;
}

.art .nav-art--list {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--grey-light) var(--white);
}

.art .nav-art.collapsed .nav-art--list {
    max-height: 80px;
    transition: max-height .5s ease;
}

.art .nav-art.mobile.opened {
    max-height: calc(100vh - 110px - 330px);
}

.art .nav-art.opened .nav-art--list {
    max-height: calc(100vh - 110px - 330px);
    overflow-y: scroll;
}

.art .nav-art.mobile .nav-art--list {
    padding-top: 5px;
}

.art .nav-art--list::-webkit-scrollbar {
    width: 10px;
}

.art .nav-art--list::-webkit-scrollbar-track {
    background: var(--white);
}

.art .nav-art--list::-webkit-scrollbar-thumb {
    background-color: var(--grey-light);
    border-radius: 6px;
    border: 3px solid var(--white);
}

.art .nav-art--list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 5px 0;
    color: var(--grey-light);
    cursor: pointer;
    transition: color .2s ease;
}

.art .nav-art--list-item:hover {
    color: var(--grey-medium);
}

.art .nav-art--list-item.bold {
    color: var(--text-default);
}

.art .nav-art.collapsed .nav-art--list-item {
    display: none;
}

.art .nav-art.collapsed .nav-art--list-item.bold {
    display: flex;
    color: var(--grey-light);
    font-weight: normal;
}

.art .nav-art.collapsed .nav-art--list-item:hover {
    color: var(--grey-medium);
}

.art .nav-art.opened .nav-art--list-item {
    display: flex;
}

.art .nav-art.mobile.collapsed .nav-art--list-item {
    align-items: flex-start;
}

.art .nav-art.mobile.opened .nav-art--list-item {
    align-items: center;
}

.art .nav-art.opened .nav-art--list-item.bold {
    color: var(--text-default);
    font-weight: bold;
}

.art .nav-art.opened .nav-art--list-item:hover {
    color: var(--grey-medium);
}

.art .nav-art.opened .nav-art--list-item.bold:hover {
    color: var(--text-default);
}

.art .nav-art--list-item i {
    flex: 0 0 15%;
    font-size: 1.2rem;
}

.art .nav-art--list-item .link {
    flex: 0 0 85%;
    background-image: linear-gradient(var(--grey-medium), var(--grey-medium));
    line-height: 1.4rem;
    user-select: none;
}

.art .nav-art--list-item:hover .link {
    background-size: 100% 1px;
}

.art .side-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 0 20px;
    margin-top: 100vh;
    padding: 22.5px 30px;
    background-color: var(--sub-medium);
}

.art .side-cta.mobile {
    position: relative !important;
    z-index: 0;
    margin: 20px auto !important;
}

.art .side-cta--title {
    max-width: 200px;
    margin: 0 auto;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.8rem;
}

.art .side-cta--subtitle {
    margin: 7.5px 0;
    color: var(--vivid-medium);
    text-align: center;
    font-size: 1.05rem;
    font-weight: bold;
    line-height: 1.6rem;
}

.art .side-cta--bullets {
    width: max-content;
    margin: 0 auto;
}

.art .side-cta--bullet {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 7.5px 0;
}

.art .side-cta--bullet i {
    margin-right: 10px;
    color: var(--vivid-medium);
}

.art .side-cta a {
    text-decoration: none;
}

.art .side-cta--btn {
    margin: 10px 0 0;
    padding: 12.5px 0;
    background-color: var(--vivid-medium);
    color: var(--white);
    text-align: center;
    font-size: .9rem;
    font-weight: bold;
}

.art .side-cta--btn:hover {
    background-color: var(--vivid-dark);
}

@media only screen and (max-width: 500px) {
    .art .side-cta.mobile {
        width: 100%;
    }
}

#contactForm {
    padding: 10px 20px;
    max-width: 1100px;
    background-color: #fff;
    margin: 10px auto;
    border-radius: 10px
}

#contactForm>.container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0;
}

#contactForm .title {
    color: #06a04a;
    font-size: 30px;
    margin-bottom: 30px
}

#contactForm .form-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.Form-DV-p {
    padding-top: 0;
    margin-right: 20px
}

.contact-form {
    margin-right: 60px
}

.contact-form .row {
    padding: 10px 0;
    display: flex;
    flex-direction: column
}

.contact-form input[type="radio"],
.contact-form span {
    margin: 0;
    vertical-align: top
}

.contact-form span {
    margin-right: 20px;
    margin-top: 2px
}

.contact-form p {
    margin-bottom: 5px
}

.contact-form p,
.contact-form span {
    font-size: .9rem
}

.contact-form input,
.contact-form textarea {
    box-sizing: border-box
}

.contact-form input.field {
    width: 100%;
    border-style: solid;
    border-color: grey;
    border-width: .5px;
    border-radius: 5px;
    height: 40px;
    padding: 0 10px;
    font-size: .9rem
}

.contact-form textarea.field {
    width: 100%;
    border-style: solid;
    border-color: grey;
    border-width: .5px;
    border-radius: 5px;
    height: 120px;
    padding: 10px 10px;
    font-size: .9rem
}

.contact-form textarea.field::placeholder,
.contact-form input.field::placeholder {
    font-family: 'Roboto', sans-serif
}

.contact-form a {
    color: #06a04a
}

.contact-form .gender {
    display: flex;
    flex-direction: row
}

.contact-form .name {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.form-wrapper .vl {
    border-left: .5px solid grey
}

.form-wrapper .company-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 60px;
    width: 40%
}

.form-wrapper .company-info p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5rem
}

.form-wrapper .company-info .instruction {
    padding-bottom: 30px;
    border-bottom: .5px solid gray
}

.form-wrapper .company-info .call-to-action {
    padding-top: 30px
}

.form-wrapper .company-info img {
    width: 350px;
    margin-bottom: 30px
}

.form-wrapper .company-info .cta-button {
    background-color: #06a04a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border: solid 1px #06a04a
}

.form-wrapper .company-info .cta-button:hover {
    background-color: #fff;
    color: #06a04a
}

.form-wrapper .submit {
    float: left;
    height: 50px;
    width: 200px;
    border-style: none;
    border-radius: 5px;
    border: solid 1px #06a04a;
    background-color: #06a04a;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer
}

.form-wrapper .submit:hover {
    color: #06a04a;
    background-color: #fff
}

@media only screen and (max-width:768px) {
    #contactForm>.container {
        margin: 0
    }
    #contactForm .form-wrapper {
        display: flex;
        flex-direction: column
    }
    #contactForm form {
        display: flex;
        flex-direction: column
    }
    #contactForm {
        padding: 30px 20px
    }
    .form-wrapper .company-info img {
        width: 100%;
        margin: 65px auto
    }
    .contact-form {
        margin-right: 0
    }
    .form-wrapper .company-info {
        margin-left: 0px;
        width: 100%;
    }
}

#exitIntentLp1 {
    max-width: 500px;
    width: auto;
    padding: 15px 5px 40px;
    margin: 20px auto;
    border-radius: 2.5px;
    background-color: #fff;
    position: relative;
}

#exitIntentLp1 h3 {
    padding: 10px 0 15px;
    margin-bottom: 10px;
    border-bottom: solid 1px #d6d6d6;
    font-size: calc(1.1rem + 0.3vw);
    color: #720061;
}

#exitIntentLp1 p {
    padding: 2px 0;
    line-height: 1.5rem;
}

#exitIntentLp1 .row {
    margin-top: 20px;
    padding: 0 15px;
    background-color: white;
}

#exitIntentLp1 div div div {
    padding: 0 2px;
}

#exitIntentLp1 div div div>* {
    height: 45px;
    width: 100%;
    font-size: 1.1rem;
}

#exitIntentLp1 input {
    border: solid .5px #d6d6d6;
    border-radius: 2.5px;
    padding: 0 10px;
}

#exitIntentLp1 .col button {
    border-radius: 2.5px;
    border: none;
    background-color: #00c900;
    color: white;
    text-align: center;
    cursor: pointer;
}

#exitIntentLp1 .col button:hover {
    background-color: #008c00;
}

#exitIntentLp1 .label {
    position: absolute;
    transform: rotate(-15deg);
    bottom: -85px;
    right: 30px;
    z-index: 99;
    border-radius: 5px 5px 5px 5px;
    background-color: #720061;
    color: white;
    padding: 5px 15px;
}

#exitIntentLp1 .label:before {
    content: "";
    position: absolute;
    transform: rotate(0deg);
    top: -28px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 47px solid transparent;
    border-right: 47px solid transparent;
    border-bottom: 30px solid #720061;
}

#exitIntentLp1 .label p {
    text-align: center;
    font-size: 1.1rem;
}

#exitIntentLp1 .label span {
    display: block;
    margin: 5px auto 5px;
    font-size: 2rem;
    font-weight: bold;
}

@media screen and (max-width: 650px) {
    #exitIntentLp1 {
        padding-bottom: 10px;
    }
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

#productOverview {
    padding: 0 0 50px;
}

.cube-1 a span,
.cube-2 a span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.cube-1 a p,
.cube-2 a p {
    position: relative;
    top: 150px;
    left: 20px;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
}

#productOverview>.row>div {
    margin: 0.2%;
    height: 200px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

#productOverview>.row>div a span {
    background-color: rgba(45, 45, 45, 0.3);
    border-radius: 10px;
}

#productOverview>.row>div a span:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.cube-1:nth-of-type(1) {
    width: 49.6%;
    background-image: url("/media/thumbnails/spouwmuurisolatie-thumbnail-500.jpg");
    background-image: -webkit-image-set(url("/media/thumbnails/spouwmuurisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/spouwmuurisolatie-thumbnail-1000.jpg") 2x);
    background-image: -moz-image-set(url("/media/thumbnails/spouwmuurisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/spouwmuurisolatie-thumbnail-1000.jpg") 2x);
    background-image: -o-image-set(url("/media/thumbnails/spouwmuurisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/spouwmuurisolatie-thumbnail-1000.jpg") 2x);
    background-image: -ms-image-set(url("/media/thumbnails/spouwmuurisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/spouwmuurisolatie-thumbnail-1000.jpg") 2x);
}

.cube-1:nth-of-type(2) {
    width: 24.6%;
    background-image: url("/media/thumbnails/vloerisolatie-thumbnail-500.jpg");
    background-image: -webkit-image-set(url("/media/thumbnails/vloerisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/vloerisolatie-thumbnail-1000.jpg") 2x);
    background-image: -moz-image-set(url("/media/thumbnails/vloerisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/vloerisolatie-thumbnail-1000.jpg") 2x);
    background-image: -o-image-set(url("/media/thumbnails/vloerisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/vloerisolatie-thumbnail-1000.jpg") 2x);
    background-image: -ms-image-set(url("/media/thumbnails/vloerisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/vloerisolatie-thumbnail-1000.jpg") 2x);
}

.cube-1:nth-of-type(3) {
    width: 24.6%;
    background-image: url("/media/thumbnails/dakisolatie-thumbnail-500.jpg");
    background-image: -webkit-image-set(url("/media/thumbnails/dakisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/dakisolatie-thumbnail-1000.jpg") 2x);
    background-image: -moz-image-set(url("/media/thumbnails/dakisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/dakisolatie-thumbnail-1000.jpg") 2x);
    background-image: -o-image-set(url("/media/thumbnails/dakisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/dakisolatie-thumbnail-1000.jpg") 2x);
    background-image: -ms-image-set(url("/media/thumbnails/dakisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/dakisolatie-thumbnail-1000.jpg") 2x);
}

.cube-2:nth-of-type(1) {
    width: 24.6%;
    background-image: url("/media/thumbnails/dakisolatie-thumbnail-500.jpg");
    background-image: -webkit-image-set(url("/media/thumbnails/dakisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/dakisolatie-thumbnail-1000.jpg") 2x);
    background-image: -moz-image-set(url("/media/thumbnails/dakisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/dakisolatie-thumbnail-1000.jpg") 2x);
    background-image: -o-image-set(url("/media/thumbnails/dakisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/dakisolatie-thumbnail-1000.jpg") 2x);
    background-image: -ms-image-set(url("/media/thumbnails/dakisolatie-thumbnail-500.jpg") 1x, url("/media/thumbnails/dakisolatie-thumbnail-1000.jpg") 2x);
}

.cube-2:nth-of-type(2) {
    width: 24.6%;
    background-image: url("/media/thumbnails/zonnepanelen-thumbnail-500.jpg");
    background-image: -webkit-image-set(url("/media/thumbnails/zonnepanelen-thumbnail-500.jpg") 1x, url("/media/thumbnails/zonnepanelen-thumbnail-1000.jpg") 2x);
    background-image: -moz-image-set(url("/media/thumbnails/zonnepanelen-thumbnail-500.jpg") 1x, url("/media/thumbnails/zonnepanelen-thumbnail-1000.jpg") 2x);
    background-image: -o-image-set(url("/media/thumbnails/zonnepanelen-thumbnail-500.jpg") 1x, url("/media/thumbnails/zonnepanelen-thumbnail-1000.jpg") 2x);
    background-image: -ms-image-set(url("/media/thumbnails/zonnepanelen-thumbnail-500.jpg") 1x, url("/media/thumbnails/zonnepanelen-thumbnail-1000.jpg") 2x);
}

.cube-2:nth-of-type(3) {
    width: 24.6%;
    background-image: url("/media/thumbnails/warmtepomp-thumbnail-500.jpg");
    background-image: -webkit-image-set(url("/media/thumbnails/warmtepomp-thumbnail-500.jpg") 1x, url("/media/thumbnails/warmtepomp-thumbnail-1000.jpg") 2x);
    background-image: -moz-image-set(url("/media/thumbnails/warmtepomp-thumbnail-500.jpg") 1x, url("/media/thumbnails/warmtepomp-thumbnail-1000.jpg") 2x);
    background-image: -o-image-set(url("/media/thumbnails/warmtepomp-thumbnail-500.jpg") 1x, url("/media/thumbnails/warmtepomp-thumbnail-1000.jpg") 2x);
    background-image: -ms-image-set(url("/media/thumbnails/warmtepomp-thumbnail-500.jpg") 1x, url("/media/thumbnails/warmtepomp-thumbnail-1000.jpg") 2x);
}

.cube-2:nth-of-type(4) {
    width: 49.6%;
    background-image: url("/media/thumbnails/duurzaam-wonen-thumbnail-500.jpg");
    background-image: -webkit-image-set(url("/media/thumbnails/duurzaam-wonen-thumbnail-500.jpg") 1x, url("/media/thumbnails/duurzaam-wonen-thumbnail-1000.jpg") 2x);
    background-image: -moz-image-set(url("/media/thumbnails/duurzaam-wonen-thumbnail-500.jpg") 1x, url("/media/thumbnails/duurzaam-wonen-thumbnail-1000.jpg") 2x);
    background-image: -o-image-set(url("/media/thumbnails/duurzaam-wonen-thumbnail-500.jpg") 1x, url("/media/thumbnails/duurzaam-wonen-thumbnail-1000.jpg") 2x);
    background-image: -ms-image-set(url("/media/thumbnails/duurzaam-wonen-thumbnail-500.jpg") 1x, url("/media/thumbnails/duurzaam-wonen-thumbnail-1000.jpg") 2x);
}

.nodis-mid {
    display: block;
}

.dis-mid {
    display: none;
}

@/media only screen and (max-width: 775px) {
    .nodis-mid {
        display: none;
    }
    .dis-mid {
        display: block;
    }
    #productOverview {
        padding: 0 30px 50px;
    }
    .cube-1 {
        width: 49.6% !important;
    }
    .cube-2 {
        width: 49.6% !important;
    }
}

@/media only screen and (max-width: 550px) {
    #productOverview {
        padding: 0 30px 50px;
    }
    #productOverview>.row>div {
        margin: 1%;
    }
    .cube-1 {
        width: 98% !important;
    }
    .cube-2 {
        width: 98% !important;
    }
}

.scrollToTopBtn {
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 100;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: rgba(169, 169, 169, 0.7);
    border: solid 1px rgba(169, 169, 169, 0.7);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 15px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(100px);
    transition: all .5s ease;
}

.showBtn {
    opacity: 1;
    transform: translateY(0);
}

.scrollToTopBtn:hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(169, 169, 169, 0.7);
    color: rgba(169, 169, 169, 0.7);
}

.scrollToTopBtn+.hoverText {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 55px;
    font-size: 15px;
    color: rgba(169, 169, 169, 0.7);
}

.scrollToTopBtn:hover+.hoverText {
    display: block;
}

#conceptMain {
    padding: 150px 0 100px;
    background-color: #faf7f5;
}

#conceptMain>.container {
    padding: 0;
}

#conceptMain h1 {
    color: #720061;
    padding-left: 15px;
    font-weight: bold;
    font-size: calc(1.3rem + 1.2vw);
}

#conceptMain .row {
    margin: 0 0;
    display: flex;
}

#conceptMain .holder {
    margin: 50px 30px;
    width: 225px;
}

#conceptMain h2 {
    color: #720061;
    font-weight: bold;
    font-size: .9rem;
    text-transform: uppercase;
    padding: 0 0 5px 5px;
    margin: 0 0 20px 15px;
    border-bottom: solid 1px #720061;
}

#conceptMain .holder span {
    font-size: .7rem;
    font-weight: bold;
    color: #720061;
    padding-top: 3px;
    float: left;
}

#conceptMain .holder p {
    padding: 0 0 12.5px 5px;
    margin: 0 0 0 15px;
}

#conceptMain .holder a {
    color: #3b3b3b;
    text-decoration: none;
    transition: color .2s ease;
}

#conceptMain .holder a:hover {
    color: #d9bdd5;
}

@media only screen and (max-width: 1200px) {
    #conceptMain .holder {
        margin: 50px 30px;
        width: 250px;
    }
}

@media only screen and (max-width: 991px) {
    #conceptMain .holder {
        margin: 50px 10px;
        width: 210px;
    }
}

@media only screen and (max-width: 767px) {
    #conceptMain .holder {
        margin: 50px 20px;
        width: 220px;
    }
}

@media only screen and (max-width: 550px) {
    #conceptMain .holder {
        margin: 50px auto;
        width: 250px;
        max-width: 90%;
    }
}

#conceptSub {
    padding: 150px 0 100px;
    background-color: #faf7f5;
}

#conceptSub h1 span {
    color: #3b3b3b;
    font-size: calc(1rem + .3vw);
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    #conceptSub {
        padding: 150px 0 30px;
    }
}

@media only screen and (max-width: 550px) {
    #conceptSub {
        padding: 100px 0 10px;
    }
}

.lp-banner {
    padding: 20px 0;
}

.lp-banner>.container>.flex-row img {
    width: 200px;
}

.lp-banner>.container>.flex-row p {
    position: relative;
    top: 20px;
}

.lp-banner>.container>.row>.container {
    background-image: url("../media/general/woning-aan-water-2000.jpg");
    background-image: -webkit-image-set(url("../media/general/woning-aan-water-1000.jpg") 1x, url("../media/general/woning-aan-water-2000.jpg") 2x);
    background-image: -moz-image-set(url("../media/general/woning-aan-water-1000.jpg") 1x, url("../media/general/woning-aan-water-2000.jpg") 2x);
    background-image: -o-image-set(url("../media/general/woning-aan-water-1000.jpg") 1x, url("../media/general/woning-aan-water-2000.jpg") 2x);
    background-image: -ms-image-set(url("../media/general/woning-aan-water-1000.jpg") 1x, url("../media/general/woning-aan-water-2000.jpg") 2x);
    background-position: center 40%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    margin: 25px 0;
}

.lp-banner h1 {
    font-size: calc(1.1em + 0.7vw);
    color: #303030;
    text-align: center;
}

.lp-body {
    background-color: #f9f7f5;
    padding: 35px 0;
}

.lp-body .row .container {
    background-color: white;
    border-radius: 10px;
    border: solid 0.5px #c1c1c1;
    padding: 20px;
}

.lp-body h2 {
    margin: 35px 0 10px;
    font-size: calc(1em + 0.4vw);
    color: #303030;
}

.lp-body p {
    line-height: 1.8em;
}

.lp-cta a {
    text-decoration: none;
    color: #00c900;
    font-weight: 700;
}

.lp-cta a:hover {
    color: #720061;
}

.lp-cta-titel {
    font-size: calc(1em + 0.25vw);
    font-weight: 700;
    color: #720061;
}

.lp-cta-quote {
    background-color: #00c900;
    padding: 10px;
    margin: 20px 0 0;
}

.lp-cta-quote p {
    color: white;
    font-size: calc(1em + 0.25vw);
    font-style: italic;
    line-height: calc(1em + 0.25vw);
}

.lp-dropdown {
    width: 100%;
    margin: 5px 0;
    padding: 10px 5px;
    cursor: pointer;
}

.lp-button {
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    background-color: #720061;
    color: white;
    border-radius: 5px;
    border: solid 1px #720061;
    cursor: pointer;
}

.lp-button:hover {
    background-color: #fcc7f4;
    color: #720061;
}

.lp-body i {
    color: #00c900;
}

.lp-form {}

.dv-lp-form {
    position: relative;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: auto;
    max-width: 700px;
    margin: 20px auto;
    text-align: center;
    >* {
        margin-top: 0;
    }
}

.dv-lp-form h2 {
    font-size: calc(1em + 0.25vw);
    font-weight: 700;
    color: #303030;
    margin: 0 0 25px;
}

.dv-lp-form>.container>.row {
    margin: 0 0 25px;
}

.dv-lp-form>.container>.row>div>p {
    text-align: left;
    margin: 10px 0;
}

.dv-lp-form>.container>.row>div>.container {
    background-color: #d0e2d0;
    border-radius: 5px;
    padding: 20px 5px;
}

.dv-lp-form>.container>.row>div>.container p {
    color: #2ba24b;
    text-align: left;
}

.dv-lp-form i {
    color: #2ba24b;
}

.dv-lp-form>div>iframe {
    display: block;
    overflow: hidden;
}

.home-overview {
    margin: 60px 0px 0px;
    padding: 0px;
    position: relative;
    max-width: 100%;
}

.home-overview .row {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    max-width: 100%;
    background-image: linear-gradient(to right, #39B54A, #399538);
    padding: 80px 50px;
    margin: 0px;
}

.home-overview .heading {
    display: flex;
    flex-direction: row;
    width: 1100px;
    margin: 0px auto;
    justify-content: space-between;
}

.home-overview .heading .heading-text {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 40px 0px 0px;
}

.home-overview .heading .heading-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 42%;
}

.home-overview .heading .heading-cta svg {
    width: 450px;
    height: 120px;
}

.home-overview .heading .heading-cta input {
    width: 44%;
    padding: 7px 20px;
    border-radius: 8px;
    border: none;
    margin-right: 11px;
}

.home-overview .heading .heading-cta button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 7px 70px;
    border-radius: 8px;
    border: 1px solid orange;
    margin-right: 20px;
    background-color: orange;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.home-overview .heading .heading-cta button:hover {
    background-color: white;
    color: orange;
}

.home-overview .heading .heading-cta .sub-title {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.home-overview .heading .main-title {
    font-size: calc(1.2rem + 2vw);
    color: white;
    line-height: calc(2rem + 2vw);
    font-weight: bold;
    margin: 0px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.home-overview .heading .sub-title {
    font-size: calc(0.9rem + .2vw);
    color: white;
    line-height: calc(1.5rem + .2vw);
    font-weight: bold;
    margin: 30px 0px 0px;
}

.home-overview .product {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-overview .row .products {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: white;
    background-image: none;
    border-radius: 5px;
    width: 1100px;
    margin: 50px auto;
    padding: 25px 20px;
}

.home-overview .row .products img {
    cursor: pointer;
    width: 100px;
    margin-bottom: 10px;
    align-self: center;
}

.home-overview .row .products .product p {
    text-align: center;
    align-self: center;
    font-size: 1rem;
    font-weight: 500;
}

.home-overview .row .products a {
    cursor: pointer;
    padding: 20px 30px;
    text-decoration: none;
    color: #333333;
    margin: 0px;
}

.home-overview .products a:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px 30px;
    color: #39B54A;
}

.cta-map-home {
    display: flex;
    flex-flow: row;
    flex-direction: row;
    justify-content: center;
    margin: 0px;
    padding: 80px 50px;
}

.cta-map-home .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.cta-map-home .grid-bullet-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 60px;
}

.cta-map-home .grid-bullet-points p {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.cta-map-home .grid-bullet-points p svg {
    position: absolute;
    top: -10px;
    left: 0px;
}

.cta-map-home .title {
    color: #333333;
    font-size: calc(1.5rem + .2vw);
    line-height: calc(2.2rem + .2vw);
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 60px;
}

.cta-map-home p {
    color: #666666;
    font-size: calc(.8rem + .2vw);
    line-height: calc(1.5rem + .2vw);
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 60px;
}

.cta-map-home a {
    display: flex;
    justify-content: center;
}

.cta-map-home a:hover {
    text-decoration: none;
}

.cta-map-home .start {
    cursor: pointer;
    width: 50%;
    padding: 11px;
    border: none;
    background-image: linear-gradient(to right, #39B54A, #399538);
    color: white;
    text-align: center;
    font-weight: bold;
    margin: 5px 0px 5px 5px;
    align-self: center;
}

.cta-map-home .start:hover {
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.cta-map-home .detail {
    text-align: right;
    margin-right: 20px;
}

.cta-map-home img.belgium {
    max-width: 300px;
    margin-left: 15px;
}

.main-fomo-container {
    background-image: linear-gradient(to right, #39B54A, #399538);
    padding: 60px 50px;
}

.main-fomo-container h2 {
    max-width: 1100px;
    margin: 0 auto 30px;
    color: white;
}

.container.fomo-home {
    padding: 5px 0;
    max-width: 1100px;
}

.fomo-home .icon-list {
    width: 25%;
    padding: 10px 10px 15px;
    background-color: #F7FAFA;
    border-radius: 10px;
    margin: 0 auto 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fomo-home .icon-list .points {
    font-size: .8em;
    line-height: 1.2rem;
    padding: 10px 0;
    margin-bottom: 0;
}

.fomo-home .icon-list .points span {
    font-weight: bold;
    color: #06a04a;
}

.fomo-home .icon-list i {
    color: #06a04a;
    font-size: 18px;
    float: left;
    width: 25px;
}

.fomo-home .testemonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 245px;
    margin: 0px auto;
    text-align: center;
    line-height: 1.5em;
    background-color: #F7FAFA;
    border-radius: 10px;
}

.fomo-home .testemonial .row {
    justify-content: space-around;
    margin: 0px 0px 20px;
}

.fomo-home .testemonial .row p {
    background-color: #fff;
    padding: 0px 20px;
    border-radius: 15px;
    margin-top: 7px;
}

.fomo-home .testemonial h3 {
    color: #06a04a;
    font-size: calc(.8rem + .2vw);
    line-height: calc(1.5rem + .2vw);
    padding: 0px 10px;
    text-align: center;
}

.fomo-home .testemonial .author {
    background-color: #c3c3c3;
    margin-bottom: 0px;
    border-radius: 0px 0px 10px 10px;
    margin-top: 10px;
    padding: 10px;
}

.fomo-home .testemonial .author i {
    color: #ffdf00;
}

.fomo-home .testemonial .author i:nth-child(5) {
    margin-right: 10px;
}

.fomo-home .testemonial p {
    font-size: .75rem;
    padding: 0px 15px;
    margin: 5px 0px 0px;
}

.home-ontdek {
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.home-ontdek h2,
.home-ontdek h3,
.home-ontdek p {
    text-align: left;
}

.home-ontdek h2 {
    font-size: calc(1.8rem + .2vw);
    font-weight: bold;
    margin: 60px auto 30px;
}

.home-ontdek .post {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 30%;
    padding: 0px;
    margin: 40px 15px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.home-ontdek .post img {
    width: 100%;
    height: 220px;
    border-radius: 5px 5px 0px 0px;
}

.home-ontdek .post h3 {
    color: #333;
    font-weight: bold;
    font-size: calc(1.5rem + .2vw);
    line-height: calc(2.5rem + .2vw);
    margin: 10px auto;
    padding: 0px 20px;
}

.home-ontdek .post a {
    color: inherit;
}

.home-ontdek .post p {
    font-size: calc(.75rem + .2vw);
    line-height: calc(1.5rem + .2vw);
    padding: 10px 20px;
}

.home-ontdek .post span {
    font-weight: bold;
    color: #3a9923;
}

@media only screen and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }
    .home-overview .heading {
        display: flex;
        flex-direction: column;
        width: 100%
    }
    .home-overview .heading .heading-text {
        width: 100%;
    }
    .home-overview .heading .heading-cta {
        width: 100%;
    }
    .fomo-home .icon-list {
        width: 35%;
        margin-bottom: 10px;
        padding: 45px 10px 15px;
    }
    .fomo-home .testemonial {
        width: 35%;
        margin-bottom: 10px;
    }
    .cta-map-home {
        display: flex;
        flex-flow: column;
    }
    .cta-map-home .content {
        width: 100%;
    }
    .cta-map-home .title {
        margin-bottom: 20px;
        padding-left: 10px;
    }
    .cta-map-home p {
        font-size: calc(1rem + .2vw);
        padding-left: 10px;
    }
    .cta-map-home .grid-bullet-points {
        padding-left: 10px;
    }
    .cta-map-home .start {
        width: 100%;
        margin: 5px 0px;
    }
    .cta-map-home div:nth-child(2) {
        display: flex;
        justify-content: center;
    }
    .cta-map-home img {
        width: 60%;
        align-self: center;
    }
    .home-ontdek {
        padding: 0px 10px;
    }
    .home-ontdek .post {
        width: 45%;
    }
}

@media only screen and (max-width: 768px) {
    .home-overview .main-title {
        font-size: calc(2.3rem + 2vw);
        line-height: calc(3rem + 2vw);
        margin-bottom: 30px;
    }
    .home-overview .sub-title {
        font-size: calc(1.5rem + .2vw);
        line-height: calc(2rem + .2vw);
    }
    .home-overview .row {
        padding: 0px 30px;
    }
    .home-overview .heading {
        display: flex;
        flex-direction: column;
        width: 100%
    }
    .home-overview .heading .heading-text {
        width: 100%;
    }
    .home-overview .heading .heading-cta {
        width: 100%;
    }
    .home-overview .heading .heading-cta svg {
        width: 100%;
    }
    .home-overview .heading .heading-cta input {
        width: 100%;
    }
    .home-overview .heading .heading-cta button {
        width: 100%;
        padding: 7px 100px;
        margin-right: 0px;
        margin-top: 5px;
    }
    .home-overview .products {
        margin: 0px;
        padding: 15px 20px;
        font-size: 1rem;
    }
    .home-overview .products img {
        padding: 0 0 0px;
        width: 78px;
    }
    .home-overview .row .products img {
        width: 140px;
    }
    .home-overview .row .products a {
        margin: 30px;
    }
    .cta-map-home {
        padding: 50px 10px;
    }
    .cta-map-home .content {
        width: 100%;
    }
    .cta-map-home .title {
        margin-bottom: 20px;
        padding-left: 10px;
    }
    .cta-map-home p {
        font-size: calc(1rem + .2vw);
        padding-left: 10px;
    }
    .cta-map-home .grid-bullet-points {
        padding-left: 10px;
        grid-template-columns: repeat(1, 1fr);
    }
    .cta-map-home .start {
        width: 100%;
        margin: 5px 0px;
    }
    .cta-map-home img {
        width: 100%;
    }
    .fomo-home .icon-list {
        width: 100%;
        padding: 30px 10px 15px;
        margin-bottom: 20px;
    }
    .fomo-home .testemonial {
        width: 100%;
        margin-bottom: 20px;
    }
    .home-ontdek {
        padding: 0px 20px;
    }
    .home-ontdek .col-4,
    .home-ontdek .col-8 {
        max-width: 100%;
    }
    .home-ontdek .post {
        width: 100%;
    }
    .home-ontdek .post h3 {
        font-size: calc(1.1rem + .2vw);
        line-height: calc(1.7rem + .2vw);
    }
    .home-ontdek .post p {
        font-size: calc(.8rem + .2vw);
        padding: 20px;
    }
    .home-ontdek .post img {
        height: unset;
    }
    .home-converter p {
        font-size: calc(0.9rem + 0.3vw);
        position: relative;
        margin-bottom: 50px;
    }
    .home-converter span {
        margin: unset;
        position: absolute;
        top: 57px;
        left: 50%;
        transform: translate(-50%);
        width: 100%;
    }
}

@media only screen and (max-width: 775px) {
    .home-banner {
        height: 40vh;
    }
    .form-home>.container {
        margin-top: 0;
    }
    .home-overview .row div:nth-of-type(2) p {
        width: 89%;
        left: 5.5%;
    }
}

#bedankt {
    padding: 125px 10px 50px;
    background-color: #f9f7f5;
}

#bedankt>.container {
    padding: 10px 10px 10px;
    background-color: white;
    border: solid 1px #d1d1d1;
    border-radius: 10px;
}

#bedankt .row-specific>.col>p:nth-of-type(1) {
    font-size: 1.2rem;
    font-weight: bold;
}

#bedankt .row-specific>.col>p:nth-of-type(2) {
    font-size: .9rem;
    font-weight: bold;
    color: #808080;
}

#bedankt .row-specific>.col>p {
    text-align: center;
    padding: 10px 0;
    line-height: 1.3rem;
}

.bedankt-home {
    margin: 50px 0 0;
}

.bedankt-home a {
    text-transform: uppercase;
    color: white;
    background-color: #720061;
    padding: 15px;
    border: solid 1px #720061;
    border-radius: 10px;
    text-decoration: none;
}

.bedankt-home a:hover {
    color: #720061;
    background-color: white;
}

#bedankt #reqSpouw,
#bedankt #reqVloer,
#bedankt #reqDak,
#bedankt #reqPv,
#bedankt #reqWpomp,
#bedankt #reqKoz,
#bedankt #reqContact,
#bedankt #opdrachtZelf,
#bedankt #opdrachtUitzet,
#bedankt #contact {
    display: none;
}

#bedankt .stappen {
    margin-top: 30px;
    padding: 30px 20px 0;
}

#bedankt .stappen>div {
    margin-bottom: 20px;
}

#bedankt .stappen>div>p:first-of-type {
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 10px 0 30px;
}

#bedankt .stappen>div>p span {
    color: #00c900;
    background-color: white;
    border-radius: 30px;
    font-size: 2rem;
    padding: 10px 20px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

#bedankt .stappen>div>p:nth-of-type(2) {
    font-style: italic;
    color: #828282;
    font-size: 0.9rem;
}

#bedankt-lp-down {
    padding: 50px 0;
}

#bedankt-lp-down .clicker {
    background-color: #f9f7f5;
    border-radius: 10px;
    cursor: pointer;
}

#bedankt-lp-down .clicker:hover {
    background-color: #e0dfde;
}

#bedankt-lp-down img {
    width: 100%;
}

#bedankt-lp-down .col p:nth-of-type(1) {
    text-align: center;
    font-size: 1.2em;
    padding: 15px 0;
}

#bedankt-lp-down .col p:nth-of-type(2) {
    text-align: center;
    background-color: #00c900;
    color: white;
    padding: 10px 5px;
    margin: 0 25px;
    border-radius: 5px;
}

#bedankt-lp-down .col:hover p:nth-of-type(2) {
    background-color: #720061;
}

#bedankt-lp-down .col a span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.ontdek {
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
}

#closer {
    display: none;
    text-align: center;
}

#oeps {
    padding: 150px 0 100px;
}

#oeps p {
    text-align: center;
    font-size: 1.5rem;
}

#oeps p:before {
    content: '';
    display: block;
    width: 20%;
    height: 2px;
    background: #720061;
    position: absolute;
    top: 225px;
    right: 40%;
}

.ontdek-oeps {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 0 40px;
}

#conditions {
    padding: 125px 0;
    background-color: #f9f7f5;
}

#conditions .container {
    background-color: white;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    padding: 15px;
}

#conditions h1,
#conditions h2 {
    color: #720061;
    padding: 10px 0;
    font-weight: bold;
}

#conditions h1 {
    font-size: 1.4rem;
}

#conditions h2 {
    font-size: 1.2rem;
}

#conditions p {
    padding: 10px 0;
}

#conditions table {
    border-collapse: collapse;
    margin: 15px 0;
}

#conditions tr,
#conditions th,
#conditions td,
#conditions table {
    border: 1px solid grey;
    font-size: 0.9rem;
}

#conditions th {
    padding: 5px;
    background-color: #f2f2f2;
}

#conditions td {
    padding: 5px;
}

#conditions li {
    margin-left: 20px;
}

#about {
    padding-top: 125px;
}

.row {
    margin: 0px
}

.ons-heading {
    margin: 65px 0px 0px;
    padding: 0px;
    position: relative;
    max-width: 100%;
}

.ons-heading .row {
    display: flex;
    justify-content: center;
    flex-direction: row;
    max-width: 100%;
    background-image: linear-gradient(to right, #39B54A, #399538);
    padding: 60px 10px;
    margin: 0px;
}

.ons-heading img {
    width: 90px;
}

.ons-heading .main-title {
    font-size: calc(1.2rem + 2vw);
    color: white;
    line-height: calc(2rem + 2vw);
    font-weight: bold;
    padding-top: 35px;
    padding-right: 30px;
}

.over-dv,
.advant {
    display: flex;
    justify-content: center;
    margin: 50px auto;
}

.over-dv p {
    font-size: calc(.9rem + .2vw);
    line-height: calc(1.5rem + .2vw);
    margin: 30px;
    color: #666666;
}

.ons-map {
    background-color: #F7FAFA;
    display: flex;
    flex-flow: row;
}

.ons-map div:nth-of-type(1) {
    padding: 100px 10px 0px 150px;
}

.ons-map div:nth-of-type(2) {
    display: flex;
    justify-content: center;
    padding-right: 150px;
}

.ons-map .title {
    color: #333333;
    font-size: calc(1.5rem + .2vw);
    line-height: calc(2.2rem + .2vw);
    font-weight: bold;
    margin: 20px 0;
}

.ons-map p {
    color: #666666;
    font-size: calc(.9rem + .2vw);
    line-height: calc(1.5rem + .2vw);
    font-weight: normal;
    margin-bottom: 20px;
}

.ons-map button.ask-question {
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background-color: var(--vivid-medium);
    color: var(--white);
    font-weight: bold;
    user-select: none;
    outline: none;
    cursor: pointer;
    transition: background-color .2s ease;
}

.ons-map button.ask-question:hover {
    background-color: var(--vivid-dark);
}

.ons-map img {
    object-fit: contain;
    max-width: 500px;
}

.ons-map img.belgium {
    max-width: 300px;
    margin-left: 15px;
}

.advant span {
    margin-right: 10px;
    color: #39B54A;
    font-weight: bold;
    font-size: calc(2rem + 2vw);
}

.advant h2 {
    color: black;
    font-weight: 600;
    font-size: calc(1.5rem + .2vw);
}

.advant p {
    font-size: calc(.9rem + .2vw);
    line-height: calc(1.5rem + .2vw);
    color: #666666;
    margin-bottom: 30px;
}

.ons-ontdek {
    padding: 0px 120px 0px 120px;
}

.ons-ontdek h2,
h3,
p {
    text-align: left;
}

.ons-ontdek h2 {
    font-size: calc(1.8rem + .2vw);
    font-weight: bold;
    margin: 60px auto 30px;
}

.ons-ontdek .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 25px 15px;
    margin-bottom: 40px;
    border: 1px solid #d7d7d7;
}

.ons-ontdek .row img {
    width: 90%;
}

.ons-ontdek .row h3 {
    font-weight: bold;
    font-size: calc(1.5rem + .2vw);
    line-height: calc(2.5rem + .2vw);
    margin: 10px auto;
}

.ons-ontdek .row p {
    font-size: calc(.75rem + .2vw);
    line-height: calc(1.5rem + .2vw);
}

.ons-ontdek .row span {
    font-weight: bold;
    color: #3a9923;
}

@media only screen and (max-width: 1200px) {
    .ons-map .col:nth-of-type(2) {
        padding: 0px 10px 30px 0px;
    }
}

@media only screen and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }
    .social-share {
        visibility: hidden;
    }
    .ons-heading .row {
        padding: 80px 0px 50px 50px;
    }
    .over-dv,
    .over-dv .text,
    .advant .text {
        max-width: 100%;
        flex: unset;
    }
    .ons-map {
        display: flex;
        flex-flow: column;
    }
    .ons-map div:nth-of-type(1) {
        padding: 100px;
    }
    .ons-map div:nth-of-type(2) {
        display: flex;
        justify-content: center;
        padding-right: 0px;
    }
    .ons-map .col:nth-of-type(2) img {
        width: 65%;
    }
    .ons-ontdek {
        padding: 0px 35px;
    }
    .ons-ontdek .row {
        flex-direction: column;
    }
    .ons-ontdek .col-4,
    .ons-ontdek .col-8 {
        max-width: 100%;
    }
    .ons-ontdek .row img {
        width: 100%;
    }
    .ons-ontdek .row h3 {
        font-size: calc(1.1rem + .2vw);
    }
    .ons-ontdek .row p {
        font-size: calc(.8rem + .2vw);
    }
}

@media only screen and (max-width: 768px) {
    .ons-heading .row {
        padding: 80px 0px 50px 10px;
    }
    .ons-heading img {
        display: none;
    }
    .over-dv,
    .over-dv .text,
    .advant .text {
        padding: 0px;
    }
    .ons-map div:nth-of-type(1) {
        padding: 60px;
    }
    .ons-map img {
        width: 90%;
    }
    .ons-map input {
        width: 100%;
    }
    .ons-map .start {
        width: 100%;
        margin: 5px 0px;
    }
    .ons-map .detail {
        text-align: center;
        margin-right: 0px;
    }
    .ons-ontdek {
        padding: 0px 35px;
    }
    .ons-ontdek .row {
        flex-direction: column;
    }
    .ons-ontdek .col-4,
    .ons-ontdek .col-8 {
        max-width: 100%;
    }
    .ons-ontdek .row img {
        width: 100%;
    }
    .ons-ontdek .row h3 {
        font-size: calc(1.1rem + .2vw);
    }
    .ons-ontdek .row p {
        font-size: calc(.8rem + .2vw);
    }
    .ons-converter {
        display: block;
    }
}

@media only screen and (max-width: 545px) {
    .ons-map .col:nth-of-type(2) img {
        top: 400px;
    }
}

@media only screen and (max-width: 445px) {
    .ons-map .col:nth-of-type(2) img {
        top: 490px;
    }
    .ons-map .col:first-of-type {
        margin-bottom: 275px;
    }
}

.fadeIn {
    -webkit-animation: animat_show 0.8s;
    animation: animat_show 0.8s;
    visibility: visible !important;
}

@-webkit-keyframes animat_show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.footer-sticked {
    padding-bottom: ;
}

#footerNormal {
    background-color: #39B54A;
    position: relative;
    z-index: 4;
    padding-left: 0px;
    padding-right: 0px;
}

#footerNormal>.container>.row {
    padding: 30px 0;
}

#footerNormal>.container>.row:nth-of-type(1) p {
    color: white;
    font-weight: bold;
    padding: 30px 0 5px;
}

#footerNormal>.container>.row:nth-of-type(1) a {
    display: block;
    padding: 5px 0;
    font-size: 0.85rem;
    color: white;
    text-decoration: none;
}

#footerNormal>.container>.row:nth-of-type(1) a:hover {
    color: #3a9923;
}

#footerNormal img {
    height: 50px;
}

#footerNormal>.container>.row:nth-of-type(2) p {
    color: white;
    font-weight: ;
    font-style: italic;
    font-size: 1.05em;
}

#footerNormal i {
    float: right;
    font-size: 1.75em;
    color: white;
}

#footerNormal i:hover {
    color: #3a9923;
}

#footerNormal>.container>.col-12 p {
    color: white;
    text-align: center;
    padding: 0 0 25px;
}

#footerNormal>.container>.col-12 a {
    color: white;
}

#footerNormal>.container>.col-12 a:hover {
    color: #3a9923;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    #footerNormal>.container>.row:nth-of-type(2)>div {
        text-align: center;
        padding: 10px 0;
    }
    #footerNormal i {
        float: none;
    }
    .footer-sticked {
        padding-bottom: 0;
    }
}

.sticky-footer {
    background-image: linear-gradient(to right, #3a9923, #38c117);
    padding: 20px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    z-index: 5;
}

.sticky-footer p {
    color: white;
    font-size: 1.2rem;
    text-align: left;
}

.sticky-footer a {
    background-color: #83a37c;
    color: white;
    padding: 10px 10px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
}

.sticky-footer a:hover {
    background-color: white;
    color: #83a37c;
    border: 2px solid #83a37c;
}

.converter {
    background-color: #F7FAFA;
    padding: 25px 0;
    margin: 0 0 0;
}

.converter span {
    margin-left: 40px;
    font-weight: 500;
}

.converter p {
    text-align: center;
    color: black;
    font-size: calc(0.75rem + 0.3vw);
    font-weight: 400;
}

.converter p:nth-of-type(2) {
    margin: 40px 0 20px;
}

.converter a {
    color: #39B54A;
    padding: 10px 25px;
    border: 2px solid #39B54A;
    border-radius: 5px;
    text-decoration: none;
}

.converter a:hover {
    background-color: #39B54A;
    color: #fff;
    border: 2px solid #fff;
}

@media only screen and (max-width: 768px) {
    .converter p {
        font-size: calc(0.9rem + 0.3vw);
        position: relative;
        margin-bottom: 50px;
    }
    .converter span {
        margin: unset;
        position: absolute;
        top: 57px;
        left: 50%;
        transform: translate(-50%);
        width: 100%;
    }
}

.noscroll {
    overflow: hidden;
}

header {
    position: fixed;
    z-index: 5;
    top: 0;
    transition: top .2s ease;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.header-white>.container-fluid {
    padding: 15px 0 5px;
    position: relative;
    background-color: white;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.55);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.55);
}

header>div>div {
    padding: 0 5% !important;
}

header .logo img {
    height: auto;
    width: 160px;
    margin-top: 5px;
    display: none;
}

.header-white .logo .logo-color {
    display: block;
}

.header-transparant .logo .logo-trans {
    display: block;
}

header .vl {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
    height: 45px;
    margin-top: 5px;
}

header .menu {
    position: relative;
    margin: 15px;
}

header .menu>p,
header .menu>p>label {
    display: inline;
    margin: auto 15px;
    font-size: .9rem;
    font-weight: 300;
    cursor: pointer;
    transition: all .3s ease;
}

.header-white .menu>p,
.header-white .menu>p>label {
    color: #202020;
}

.header-transparant .menu>p,
.header-transparant .menu>p>label {
    color: white;
}

header .menu>p:hover,
header .menu>p:hover>label {
    color: #39B54A;
}

header .menu>p a {
    text-decoration: none;
    transition: all .3s ease;
}

.header-white .menu>p a {
    color: #202020;
}

.header-white .menu>p:hover a {
    color: #39B54A;
}

.header-transparant .menu>p a {
    color: white;
}

.header-transparant .menu>p:hover a {
    color: #39B54A;
}

header .menu .special {
    color: white;
    text-decoration: none;
}

header .menu .special p {
    background-color: #39B54A;
    border-radius: 15px;
    padding: 10px 12.5px;
    margin: auto 12.5px;
    max-width: 200px;
    font-size: .9rem;
    font-weight: 500;
    transition: all .3s ease;
}

header .menu .special:hover p {
    background-color: #3a9923;
}

header .menu .special a {
    color: white;
    text-decoration: none;
}

header .menu .special:hover a {
    color: white;
}

header .toggler {
    position: absolute;
    z-index: 99;
    right: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    opacity: 0;
}

header .hamburger {
    position: absolute;
    right: 0;
    width: 60px;
    padding: 0 1rem;
    align-items: center;
    justify-content: center;
}

header .hamburger>div {
    position: relative;
    width: 100%;
    height: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.header-white .hamburger>div {
    background-color: #39B54A;
}

.header-transparant .hamburger>div {
    background-color: white;
}

header .hamburger>div:before,
header .hamburger>div:after {
    content: '';
    position: absolute;
    z-index: 19;
    top: -10px;
    width: 100%;
    height: 1.5px;
    background: inherit;
}

header .hamburger>div:after {
    top: 10px;
}

header .toggler:checked+.hamburger>div {
    transform: rotate(135deg);
}

header .toggler:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

header .toggler:checked+.hamburger>div:before,
header .toggler:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}

header .slide-menu {
    position: fixed;
    z-index: 5;
    top: 77.8px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #F7FAFA;
    height: 0px;
    overflow-y: scroll;
    -webkit-transition: height, 0.15s linear;
    -moz-transition: height, 0.15s linear;
    -ms-transition: height, 0.15s linear;
    -o-transition: height, 0.15s linear;
    transition: height, 0.15s linear;
}

header .toggler:checked~.slide-menu {
    height: calc(100% - 62.8px);
    -webkit-transition: height, 0.15s linear;
    -moz-transition: height, 0.15s linear;
    -ms-transition: height, 0.15s linear;
    -o-transition: height, 0.15s linear;
    transition: height, 0.15s linear;
}

header .slide-menu>* {
    display: none;
}

header .toggler:checked~.slide-menu>* {
    display: block;
}

header .slide-menu>.row {
    margin: 30px 50px;
    padding-top: 50px;
    text-align: left;
    width: 100%;
}

header .mobile-menu {
    text-align: center;
    max-width: 600px;
    margin: 10px 30px;
    display: none;
}

header .mobile-menu>* {
    margin: 15px auto;
    text-align: center;
}

header .mobile-menu .normal a {
    font-size: 1.2rem;
    font-weight: 300;
    color: #202020;
    transition: color .3s ease;
    text-decoration: none;
}

header .mobile-menu .normal a:hover {
    color: #00c900;
}

header .mobile-menu .special p {
    margin: 0 auto;
    font-size: 1.2rem;
}

header .slide-menu .holder {
    text-align: center;
    margin: 15px 1%;
    width: 23%;
    max-width: 95%;
}

header .slide-menu .holder>* {
    text-align: left;
    max-width: 90%;
    margin: 0 auto;
}

header .slide-menu .slide-toggler {
    position: absolute;
    z-index: 90;
    width: 0px;
    height: 0px;
    opacity: 0;
}

header .slide-menu .holder>div:first-of-type {
    border-bottom: solid .5px #39B54A;
    padding: 5px 0;
}

header .slide-menu .holder label {
    text-transform: uppercase;
    color: #39B54A;
    font-weight: 400;
    font-size: .9rem;
}

header .slide-menu .holder i {
    display: none;
}

header .slide-menu .holder p {
    padding: 5px 0;
    line-height: 1.1rem;
}

header .slide-menu .holder p a {
    color: #292929;
}

header .slide-menu .holder p a:hover {
    color: #39B54A;
}

@media only screen and (max-width: 1000px) {
    .header-white>.container-fluid {
        padding: 15px 0 15px;
    }
    header .menu>p,
    header .menu>a {
        display: none;
    }
    header .slide-menu>.row {
        padding-top: 10px;
    }
    header .mobile-menu {
        display: block;
    }
    header .slide-menu .holder {
        width: 30%;
        margin: 15px 1.666%;
    }
    header .vl {
        display: none;
    }
    .header-white .hamburger>div {
        background-color: #555555;
    }
}

@media only screen and (max-width: 800px) {
    header .slide-menu .holder {
        width: 45%;
        margin: 15px 2.5%;
    }
    header .slide-menu .holder:nth-child(5) {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 600px) {
    header .logo img {
        width: 150px;
    }
    header .slide-menu {
        top: 75px;
    }
    header .toggler:checked~.slide-menu {
        height: calc(100% - 75px);
    }
    header .slide-menu .holder {
        width: 90%;
        margin: 15px 5%;
    }
}

@media only screen and (max-width: 430px) {
    header .slide-menu>.row {
        margin: 30px 0;
    }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'HK Grotesk', sans-serif;
    font-size: 100%;
    vertical-align: baseline;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

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

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

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

.main-background {
    background-color: #f9f7f5;
}

ul {
    list-style-type: circle;
}

.display {
    display: block !important;
}

.no-display {
    display: none;
}

.no-display-imp {
    display: none !important;
}

.display-sm-block {
    display: none;
}

@media only screen and (max-width: 910px) {
    .grecaptcha-badge {
        visibility: hidden;
    }
}

@media only screen and (max-width: 767px) {
    .no-display-sm {
        display: none;
    }
    .display-sm-block {
        display: block;
    }
}

:root {
    --grey-lightest: rgb(224, 224, 224, 1);
    --grey-lightest-a: rgba(0, 0, 0, .025);
    --grey-light: rgb(167, 167, 167, 1);
    --grey-light-a: rgba(0, 0, 0, .1);
    --grey-medium: rgba(136, 136, 136, 1);
    --grey-dark: rgb(104, 104, 104);
    --sub-medium: #f6f9f9;
    --vivid-lightest: #f3f7f1;
    --vivid-lighter: #d4ebd6;
    --vivid-medium: #37b44a;
    --vivid-dark: #288f37;
    --red-medium: #ac0000;
    --white: #FFF;
    --text-default: rgb(24, 24, 24);
}