/*
 Theme Name:   Strevon
 Theme URI:    https://clarq.nl
 Description:  Strevon theme by Clarq
 Author:       Clarq Agency
 Author URI:   https://clarq.nl
 Template:     generatepress
 Version:      0.1
*/

@font-face {
    font-family: 'Panton';
    src: url('assets/fonts/panton-330.otf') format('opentype');
    font-weight: 330;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
}

@font-face {
    font-family: 'Panton';
    src: url('assets/fonts/panton-350.otf') format('opentype');
    font-weight: 350;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
}

@font-face {
    font-family: 'Panton';
    src: url('assets/fonts/panton-370.otf') format('opentype');
    font-weight: 370;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
}

/* LEGACY DESIGN START */
@font-face {
    font-family: Panthon;
    src: url("assets/fonts/panton-regular.otf") format("opentype");
}

@font-face {
    font-family: Panthon;
    font-weight: 500;
    src: url("assets/fonts/panton-bold.otf") format("opentype");
}

@font-face {
    font-family: Panthon;
    font-weight: bold;
    src: url("assets/fonts/panton-extrabold.otf") format("opentype");
}

:root {
    --blue: #162032;
    --light-blue: #F4F6FC;
    --gray: #F5F5F5;
    --yellow: #fee600;
    --green: #12B336;
    --black: #000000;
    --white: #FFFFFF;
}

/* LEGACY DESIGN END */

/* LEGACY DESIGN START */
body {
    font-family: Panthon, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue);
}

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

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    display: inline-block;
    padding-bottom: 5px;
    background-image: url('assets/images/elements/underline.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    text-decoration: none !important;
}

p span {
    display: inline-block;
    background-image: url('assets/images/elements/underline.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    text-decoration: none !important;
}

a {
    color: #216EB0;
    text-decoration: none;
}

p > a {
    font-weight: 600;
}

.site-footer .minimal a {
    color: #216EB0 !important;
    text-decoration: none !important;
}

a:hover {
    color: #154b7a;
    text-decoration: underline;
}

.h-small h1,
.h-small h2,
.h-small h3,
.h-small h4,
.h-small h5,
.h-small h6 {
    font-size: 36px;
    line-height: 1.6;
}

.p-large p {
    font-size: 23px;
    line-height: 1.6;
}

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

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

.text_align-right {
    text-align: right;
}

.inside-header {
    padding: 12px 40px;
}

section {
    position: relative;
    padding: 60px 0;
}

section.padding-none {
    padding: 0;
}

section.padding-none-top {
    padding-top: 0;
}

section.padding-none-bottom {
    padding-bottom: 0;
}

section > .boxed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

section ul {
    margin-left: 0;
    padding: 0;
    list-style: none;
}

section ul li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 30px;
}

section ul li:before {
    position: absolute;
    top: 5px;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    content: '';
    background-color: var(--green);
    -webkit-mask-image: url('/wp-content/themes/strevon/assets/images/icons/circle-check-solid.svg');
    mask-image: url('/wp-content/themes/strevon/assets/images/icons/circle-check-solid.svg');
    mask-repeat: no-repeat;
    mask-size: contain;
}

section ul li.splide__slide:before {
    display: none;
}

section.has-divider-top {
    padding-top: 100px;
}

section > .bottom-divider,
section > .top-divider {
    position: absolute;
    width: 100%;
    height: 50px;
    background-color: var(--blue);
    -webkit-mask-size: 100% 50px;
    mask-size: 100% 50px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

section > .top-divider {
    top: 0;
    -webkit-mask-image: url('/wp-content/themes/strevon/assets/images/elements/divider.svg');
    mask-image: url('/wp-content/themes/strevon/assets/images/elements/divider.svg');
}

section > .bottom-divider {
    bottom: 0;
    -moz-transform: rotateY(180deg) rotateX(180deg);
    -o-transform: rotateY(180deg) rotateX(180deg);
    -webkit-transform: rotate(180deg);
    -webkit-mask-image: url('/wp-content/themes/strevon/assets/images/elements/divider.svg');
    mask-image: url('/wp-content/themes/strevon/assets/images/elements/divider.svg');
}

section > .top-divider.wave,
section > .bottom-divider.wave {
    -webkit-mask-image: url('/wp-content/themes/strevon/assets/images/elements/divider-wave.svg');
    mask-image: url('/wp-content/themes/strevon/assets/images/elements/divider-wave.svg');
}

.top-divider.light-blue,
.bottom-divider.light-blue {
    background-color: var(--light-blue);
}

.top-divider.gray,
.bottom-divider.gray {
    background-color: var(--gray);
}

.top-divider.yellow,
.bottom-divider.yellow {
    background-color: var(--yellow);
}

.top-divider.green,
.bottom-divider.green {
    background-color: var(--green);
}

.top-divider.black,
.bottom-divider.black {
    background-color: var(--black);
}

.top-divider.white,
.bottom-divider.white {
    background-color: var(--white);
}

section.bg-blue {
    background-color: var(--blue);
    color: var(--white);
}

section.bg-blue h1,
section.bg-blue h2,
section.bg-blue h3,
section.bg-blue h4,
section.bg-blue h5,
section.bg-blue h6 {
    color: var(--white);
}

section.bg-white {
    background-color: var(--white);
    color: var(--blue);
}

section.bg-gray {
    background-color: var(--gray);
    color: var(--blue);
}

section.bg-light-blue {
    background-color: var(--light-blue);
    color: var(--blue);
}

section p {
    margin-bottom: 8px;
}

section .btn-group {
    margin-top: 30px;
}

.btn,
.wpforms-submit.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--yellow);
    border-radius: 30px;
    background-color: var(--yellow);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.40);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    -webkit-transition: .2s;
    transition: .2s;
}

.btn.btn-primary {
    position: relative;
    border-color: var(--green);
    background-color: var(--green);
    color: var(--white);
}

.wpforms-submit.btn {
    position: relative !important;
    padding: 12px 32px !important;
    padding-right: 64px !important;
    border: 2px solid !important;
    border-color: var(--green) !important;
    border-radius: 30px !important;
    background-color: var(--green) !important;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.40) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    -webkit-transition: .2s !important;
    transition: .2s !important;
}

.wpforms-submit.btn::after {
    position: absolute;
    top: 18px;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 14px;
    content: '';
    background-color: var(--white);
    -webkit-mask-image: url('/wp-content/themes/strevon/assets/images/icons/right-from-bracket-solid.svg');
    mask-image: url('/wp-content/themes/strevon/assets/images/icons/right-from-bracket-solid.svg');
}

.btn:hover {
    text-decoration: none;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}


i.icon {
    display: inline-block;
    margin-left: 14px;
}

i.icon.sign-out::after {
    display: inline-block;
    width: 18px;
    height: 18px;
    content: '';
    background-color: var(--white);
    -webkit-mask-image: url('/wp-content/themes/strevon/assets/images/icons/right-from-bracket-solid.svg');
    mask-image: url('/wp-content/themes/strevon/assets/images/icons/right-from-bracket-solid.svg');
}

.site-header {
    position: fixed;
    z-index: 10;
    width: 100%;
    background-color: var(--blue);
}

.site-header .header-image {
    width: auto;
    max-height: 60px;
}

.main-navigation .menu-toggle {
    font-size: 30px;
    color: var(--yellow);
}

.main-navigation .main-nav ul li a {
    font-weight: 500;
    color: var(--yellow);
    text-decoration: none;
}

.main-navigation li.btn {
    padding: 0;
    border-color: var(--yellow);
    border-radius: 5px;
    background-color: var(--yellow);
}

.main-navigation .main-nav ul li.btn a {
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
    line-height: 40px;
}

.main-navigation ul ul {
    border-radius: 3px;
    background-color: var(--white);
}

.main-navigation ul ul li {
    padding: 10px 0;
}

.main-navigation .main-nav ul ul li a {
    color: var(--blue);
    transition: .2s;
}

.main-navigation .main-nav ul ul li a:hover {
    margin-left: 10px;
    transition: .2s;
}

.main-navigation.toggled .main-nav ul ul li a {
    color: var(--yellow);
}

.main-navigation.toggled .main-nav ul ul.toggled-on {
    padding-left: 20px;
    background-color: transparent;
}

.main-navigation.toggled .main-nav ul ul li a {
    line-height: 0;
}

.main-navigation.toggled li.btn {
    width: auto;
    margin-left: 20px;
    padding: 10px 20px;
}

.main-navigation.toggled li.btn a {
    padding: 0;
    font-size: 12px;
    line-height: 12px !important;
}

body > .site {
    padding-top: 84px;
}

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

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

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

.company-social-media > li {
    display: inline-block;
    margin-right: 20px;
}

.company-social-media img {
    width: auto;
    height: 20px;
}

.site-footer .footer-widgets-container .inner-padding {
    margin-bottom: 20px;
}

.footer-widgets {
    background-color: var(--blue);
    color: var(--white);
}

.footer-widgets h1,
.footer-widgets h2,
.footer-widgets h3,
.footer-widgets h4 {
    color: var(--white);
}

.footer-widgets h3 {
    font-size: 20px;
    font-weight: 700;
}

.footer-widgets a {
    color: var(--white);
    text-decoration: none;
}

.site-footer .social-media h3 {
    font-size: 36px;
    line-height: 1.6;
}

.site-footer .social-media .inside-footer-widgets {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error404 .inside-article {
    min-height: calc(100vh - 478px);
    padding: 100px 0;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999; /* Ensure it is behind the popup */
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

.pop-cta-form {
    position: fixed;
    top: 12%;
    right: 0;
    left: 0;
    z-index: 1000; /* Ensure it is above the overlay */
    display: block;
    width: 100%;
    max-width: 550px;
    margin: auto;
    padding: 40px;
    border-radius: 3px;
    background-color: #fff;
}

.pop-cta-form .wpforms-container input.wpforms-field-medium,
.pop-cta-form .wpforms-container select.wpforms-field-medium,
.pop-cta-form .wpforms-container .wpforms-field-row.wpforms-field-medium,
.pop-cta-form .wp-core-ui div.wpforms-container input.wpforms-field-medium,
.pop-cta-form .wp-core-ui div.wpforms-container select.wpforms-field-medium,
.pop-cta-form .wp-core-ui div.wpforms-container .wpforms-field-row.wpforms-field-medium {
    width: 100%;
    max-width: 100%;
}

.progress-bar {
    width: 100%;
    margin-bottom: 20px; /* Space below the progress bar */
    border-radius: 5px;
    background-color: #e0e0e0; /* Light grey background */
    overflow: hidden;
}

.progress-bar-fill {
    width: 50%; /* 50% progress */
    height: 20px; /* Height of the progress bar */
    border-radius: 5px 0 0 5px; /* Rounded corners on the left side */
    background-color: #4caf50; /* Green fill color */
}

.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
    padding: 5px 0 !important;
}

.wpforms-container input[type=date],
.wpforms-container input[type=datetime],
.wpforms-container input[type=datetime-local],
.wpforms-container input[type=email],
.wpforms-container input[type=month],
.wpforms-container input[type=number],
.wpforms-container input[type=password],
.wpforms-container input[type=range],
.wpforms-container input[type=search],
.wpforms-container input[type=tel],
.wpforms-container input[type=text],
.wpforms-container input[type=time],
.wpforms-container input[type=url],
.wpforms-container input[type=week],
.wpforms-container select,
.wpforms-container textarea,
.wp-core-ui div.wpforms-container input[type=date],
.wp-core-ui div.wpforms-container input[type=datetime],
.wp-core-ui div.wpforms-container input[type=datetime-local],
.wp-core-ui div.wpforms-container input[type=email],
.wp-core-ui div.wpforms-container input[type=month],
.wp-core-ui div.wpforms-container input[type=number],
.wp-core-ui div.wpforms-container input[type=password],
.wp-core-ui div.wpforms-container input[type=range],
.wp-core-ui div.wpforms-container input[type=search],
.wp-core-ui div.wpforms-container input[type=tel],
.wp-core-ui div.wpforms-container input[type=text],
.wp-core-ui div.wpforms-container input[type=time],
.wp-core-ui div.wpforms-container input[type=url],
.wp-core-ui div.wpforms-container input[type=week],
.wp-core-ui div.wpforms-container select,
.wp-core-ui div.wpforms-container textarea {
    border: 1px solid gray;
    border-radius: 3px;
}

.wpforms-submit-container {
    margin-top: 20px;
    text-align: center;
}

.pop-cta-form .wpforms-container {
    margin-bottom: 0;
}

span#CookieDeclarationUserStatusLabelConsentId,
span#CookieDeclarationUserStatusLabelConsentDate,
#CookieDeclarationConsentIdAndDate span {
    background-image: none;
}

div.wpforms-container .wpforms-form .wpforms-field:not(.wpforms-field-phone):not(.wpforms-field-select-style-modern):not(.wpforms-field-radio):not(.wpforms-field-checkbox):not(.wpforms-field-layout):not(.wpforms-field-repeater) {
    overflow-x: visible !important;
}

.availability {
    color: #298000;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.availability .availability-line {
    position: relative;
    text-align: center;
    padding-left: 28px;
}

.availability .availability-line::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-image: url('/wp-content/themes/strevon/assets/images/elements/availability.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .btn,
    .wpforms-submit.btn {
        padding: 12px;
    }

    h1,
    h2,
    h3 {
        font-size: 28px;
        line-height: 1.6;
    }
}

@media (max-width: 425px) {
    h1,
    h2 {
        font-size: 26px;
        line-height: 1.6;
    }
}