/*
------------------------------------------------------------------------
Made and Maintained with ♥ by KMD®
------------------------------------------------------------------------
*/


/*----------------------------------------------------------------------
Fonts
----------------------------------------------------------------------*/

/* open-sans-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/open-sans-v44-latin-300.woff2') format('woff2');
    }

/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/open-sans-v44-latin-regular.woff2') format('woff2');
    }

/* open-sans-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/open-sans-v44-latin-600.woff2') format('woff2');
    }

/* open-sans-600italic - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    src: url('fonts/open-sans-v44-latin-600italic.woff2') format('woff2');
    }


/*----------------------------------------------------------------------
colors
----------------------------------------------------------------------*/

:root {
    --fvl-black: #000000;
    --fvl-white: #FFFFFF;
    --fvl-violet: #621f52;
    --fvl-beige: #ecddd1;
    
    --font-weight-normal: 300;
    --font-weight-mid: 400;
    --font-weight-bold: 600;
    }


/*----------------------------------------------------------------------
global structure & normalize
----------------------------------------------------------------------*/

html {
    font-size: 10px;
    line-height: 1.6;
    scroll-behavior: smooth;
    }

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

body {
    margin: 0;
    border: 0 none;
    padding: 0;
    color: var(--fvl-black);
    font-family: 'Open Sans', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: 1.8rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    }

p, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, form, fieldset, legend, img {
    margin: 0;
    border: 0 none;
    padding: 0;
    }

p, h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    }
 
button, input, input[type="submit"], select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
    text-transform: none;
    }

button, input[type="submit"], select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    }

textarea {
    overflow: auto;
    }

a {
    color: var(--fvl-violet);
    text-decoration: none;
    transition: all 0.5s ease;
    }

a:hover, a:active {
    color: var(--fvl-black);
    text-decoration: underline;
    outline-width: 0;
    }

a:focus-visible {
    outline: 1px solid var(--fvl-violet);
    outline-offset: 5px;
    }

mark {
    background-color: var(--fvl-violet);
    color: var(--fvl-white);
    padding: 1px 3px;
    }

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    }

sub {
    bottom: -0.25em;
    }

sup {
    top: -0.5em;
    }
    
strong {
    font-weight: var(--font-weight-bold);
    }

.font-mid {
    font-weight: var(--font-weight-mid);
    }

.wrapper {
    margin: 0px auto;
    max-width: 1440px;
    padding: 0 25px;
    }

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
    }

.skip-link:focus {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    padding: 10px;
    background: var(--fvl-violet);
    color: var(--fvl-white);
    text-decoration: none;
    z-index: 4000;
    display: inline-block;
    clip: auto;
    overflow: visible; 
    }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        }
}


/*----------------------------------------------------------------------
Header
----------------------------------------------------------------------*/

header * {
    transition: color 0.5s ease, background 0.5s ease;
    }

.header-items {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    border-bottom: 10px solid var(--fvl-beige);
    background: var(--fvl-white);
    }

.header-items .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 25px;
    transition: all 0.5s ease;
    }
 
 .portal-logo {
    font-size: 0;
    line-height: 0;
    background: url(img/logo-francis-van-lent.svg) left center no-repeat;
    background-size: auto 85px;
    }

.header-items .portal-logo a {
    display: block;
    width: 430px;
    height: 85px;
    }
 
.header-items .nav-and-info {
    text-align: right;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    }

.nav-and-info nav {
    transition: none;
    }

.nav-and-info nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }

.nav-and-info nav li {
    position: relative;
    }

.nav-and-info nav a {
    display: block;
    text-decoration: none;
    color: var(--fvl-violet);
    padding: 10px 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    }

.nav-and-info nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 1px;
    background: var(--fvl-black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    }

.nav-and-info nav a:hover,
.nav-and-info nav a:focus {
    color: var(--fvl-black);
    }

.nav-and-info nav a:hover::after,
.nav-and-info nav a:focus::after {
    transform: scaleX(1);
    }

.nav-and-info nav > ul {
    display: flex;
    gap: 30px;
    }

.nav-and-info nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--fvl-white);
    border: 1px solid var(--fvl-black);
    min-width: 200px;
    text-align: left;
    }

.nav-and-info nav li ul a {
    padding: 5px 10px;
    }

.nav-and-info nav li ul li {
    border-bottom: 1px solid var(--fvl-black);
    }

.nav-and-info nav li ul li:last-child {
    border-bottom: 0;
    }

.nav-and-info nav li ul li ul {
    left: 100%;
    top: calc(0% - 1px);
    }

.nav-and-info nav li:hover > ul,
.nav-and-info nav li:focus-within > ul {
    display: block;
    }


/*----------------------------------------------------------------------
Content-Grid
----------------------------------------------------------------------*/

.content-grid {
    display: flex;
    gap: 30px;
    }

.content-grid > * {
    flex: 1;
    }

@media (max-width: 767px) {
    .content-grid {
        flex-direction: column;
    }

    .mobile-top {
        order: -1;
    }
}


/*----------------------------------------------------------------------
Main
----------------------------------------------------------------------*/

main {
    margin-top: 175px;
    }

.hero-stage {
    background: var(--fvl-beige);
    border-bottom: 10px solid var(--fvl-beige);
    padding: 10px 0;
    text-align: center;
    color: var(--fvl-violet);
    }

.hero-message {
    position: relative;
    display: inline-block;
    padding: 0 50px;
    font-weight: var(--font-weight-bold);
    font-style: italic;
    font-size: 3.2rem;
    line-height: 4.8rem;
    }

.hero-message::before,
.hero-message::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    background-image: url("img/quote.svg");
    background-size: contain;
    background-repeat: no-repeat;
    }

.hero-message::before {
    left: 0;
    top: 15px;
    }

.hero-message::after {
    right: 50px;
    bottom: 8px;
    transform: rotate(180deg);
    }

.hero-author {
    display: block;
    margin-top: 10px;
    font-weight: var(--font-weight-mid);
    }

.main-content {
    margin: 60px 0 0 0;
    }
    
.main-content .content-grid {
    margin: 0 0 60px 0;
    }
    
.main-content .content-page-100 {
    margin: 0 0 90px 0;
    }

.main-content h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    padding: 60px 0 30px 0;
    color: var(--fvl-violet);
    text-transform: uppercase;
    }
    
.main-content h2 {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 0 0 0 0;
    color: var(--fvl-violet);
    text-transform: uppercase;
    }

.main-content h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 0 0 0 0;
    color: var(--fvl-violet);
    }

.main-content p {
    margin: 0 0 30px 0;
    }

.main-content i {
    font-weight: var(--font-weight-bold);
    color: var(--fvl-violet);
    }

.main-content ul,
.main-content ol {
    margin: 0 0 30px 0;
    padding: 0 0 0 20px;
    }

.main-content ul li,
.main-content ol li {
    margin: 0 0 5px 0;
    }

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

.main-content .image-animation {
    position: relative;
    overflow: hidden;
    }

.main-content .image-animation img {
    display: block;
    width: 100%;
    height: auto;
    }

.main-content .image-animation img + img {
    position: absolute;
    inset: 0;
    opacity: 0;
    }


/*----------------------------------------------------------------------
Footer
----------------------------------------------------------------------*/

footer {
    background: var(--fvl-beige);
    }

.footer-ground {
    background: var(--fvl-violet);
    padding: 30px 0 60px 0;
    }

.footer-ground ul {
    text-align: right;
    list-style: none;
    }

.footer-ground li {
    display: inline;
    padding-left: 30px;
    }

.footer-ground a {
    color: var(--fvl-white);
    }

.is-phone,
.is-fax,
.is-mail {
    display: inline-block;
    position: relative;
    }

.is-phone a,
.is-fax,
.is-mail a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fvl-black) !important;
    text-decoration: none;
    }

.is-phone a::before,
.is-fax::before,
.is-mail a::before {
    content: "";
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    }

.is-phone a::before {
    background-image: url("img/icon-phone.svg");
    }

.is-fax::before {
    background-image: url("img/icon-fax.svg");
    }

.is-mail a::before {
    background-image: url("img/icon-mail.svg");
    }

.footer-contentinfo {
    padding: 30px 0 10px 0;
    }

.footer-contentinfo h2 {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 0;
    color: var(--fvl-violet);
    text-transform: uppercase;
    }

.footer-contentinfo h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: var(--font-weight-normal);
    margin: 0;
    color: var(--fvl-violet);
    text-transform: uppercase;
    }

.footer-contentinfo p {
    padding: 0 0 30px 0;
    }

.footer-contentinfo i {
    font-weight: var(--font-weight-bold);
    color: var(--fvl-violet);
    }

.scroll-top {
    display: none;
    }


/*----------------------------------------------------------------------
Tablet-Styles (Landscape) and Touch-Devices
----------------------------------------------------------------------*/

@media only screen and (max-width: 1024px) { 
   
   .wrapper {
        max-width: 100%;
        }

    .header-items .wrapper {
        padding: 25px;
        }

     .portal-logo {
        background: url(img/logo-francis-van-lent.svg) left center no-repeat;
        background-size: auto 50px;
        }
    
    .header-items .portal-logo a {
        display: block;
        width: 260px;
        height: 50px;
        }

    main {
        margin-top: 110px;
        }

.main-content ul.ul-mobile-short,
.main-content ol.ul-mobile-short {
    margin: 0 0 -30px 0;
    }

    .hide-mobile {
        position: absolute !important;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
        border: 0;
        }

    .scroll-top {
        position: fixed;
        display: block;
        right: 20px;
        bottom: 160px;
        z-index: 2000;
        width: 50px;
        height: 50px;
        border: 0;
        border-radius: 50%;
        background: var(--fvl-violet);
        color: var(--fvl-white);
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        }

    .scroll-top::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -65%);
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 10px solid white;
        }

    .scroll-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        }

}



/*----------------------------------------------------------------------
Mobile-Styles
----------------------------------------------------------------------*/

@media only screen and (max-width: 700px) { 

    html {
        font-size: 9px;
        line-height: 1.5;
        }

    .wrapper {
        padding: 0 20px;
        }

    .header-items .wrapper {
        padding: 20px;
        }

     .portal-logo {
        background: url(img/logo-francis-van-lent.svg) center center no-repeat;
        background-size: auto 50px;
        width: 260px;
        margin: 0 auto;
        }

    .header-items .portal-logo a {
        display: block;
        width: 260px;
        height: 50px;
        }

    main {
        margin-top: 90px;
        }

    .hero-message {
        padding: 10px 10px 0 38px;
        font-size: 1.8rem;
        line-height: 2.8rem;
        }
    
    .hero-message::before,
    .hero-message::after {
        width: 20px;
        height: 20px;
        }
    
    .hero-message::before {
        left: 5px;
        top: 17px;
        }
    
    .hero-message::after {
        right: 0;
        bottom: 0;
        }

    .footer-ground ul {
        text-align: center;
        }

    .footer-ground li {
        padding: 0 15px;
        }

}
