/*
Theme Name: ACF Template
Author: Impact Media Concepts
Author URI: https://www.impactmediaconcepts.com
Version: 1.0
*/

/* || Intialize fonts */
/* Open Sans */
@font-face {
    font-family: "OpenSansExtraBold";
    src: url(assets/fonts/OpenSans/OpenSans-ExtraBold.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "OpenSansBold";
    src: url(assets/fonts/OpenSans/OpenSans-Bold.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "OpenSansSemiBold";
    src: url(assets/fonts/OpenSans/OpenSans-SemiBold.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "OpenSansRegular";
    src: url(assets/fonts/OpenSans/OpenSans-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

/* Fonts */
h1,
h2, 
h3, 
h4, 
h5, 
h6,
span,
a,
th,
td,
li,
label,
strong,
p {
    margin-block-start: 0;
    margin-block-end: 0;
    color: white;
    font-family: 'Muli';
}

input,
input::placeholder,
textarea,
textarea::placeholder  {
    font-family: OpenSansRegular;
    font-style: normal;
    color: #676767;
}

strong {
    font-family: OpenSansBold;
    font-style: normal;
    color: #676767;
}

h1,
h2, 
h3, 
h4, 
h5, 
h6 {
    font-weight: 700;
    font-style: normal;
}

.open-sans-extra-bold {
    font-family: OpenSansExtraBold !important;
    font-weight: 800;
    font-style: normal;
}

.open-sans-bold {
    font-family: OpenSansBold !important;
    font-weight: 700;
    font-style: normal;
}

.open-sans-semi-bold {
    font-family: OpenSansSemiBold !important;
    font-weight: 600;
    font-style: normal;
}

.open-sans-regular {
    font-family: OpenSansRegular !important;
    font-weight: 400;
    font-style: normal;
}

/* Standard page styles */
html,
body { 
    padding: 0 !important;
    margin: 0 !important;
    overflow-y: overlay;
    min-height: 100vh;
    background-color: white;
    font-family: OpenSansRegular;
    color: #676767;
    max-width: 100vw;
    overflow-x: hidden;
}

/* default container and wrapper */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    align-items: center;
    padding: 0 15px;
}
.wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1280px;
}

ul:not(.ab-top-menu) {
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

ul:not(.ab-top-menu) > li {
    display: inline-flex;
    align-items: center;
    color: white;
    gap: 8px;
    width: 100%;
}

/* Default colors */
.background-primary {
    background-color:#204EA4 !important;
}

.color-primary,
.color-primary * {
    color: #204EA4 !important;
}
.color-secondary,
.color-secondary * {
    color: #1B2429 !important;
}

/*Afstandshouders transition */
.afstandhouder {
    transition: all .25s ease-out;
    overflow: hidden;
}

/* Contact form 7 spinner */
.wpcf7-response-output {
    color: white;
    font-family: 'muli';
    margin: 3.5em 0 0!important;
    border-color: #1B2429 !important;
    font-weight: 400;
    font-size: 22px;
}

.wpcf7-spinner {
    display: none !important;
    margin: 0 auto !important;
}

a {
    cursor: pointer;
}

/* Remove default style of link */
a:link,
a:link > * { 
    text-decoration: none; 
}
a:visited,
a:visited > * { 
    text-decoration: none; 
}
a:hover,
a:hover > * { 
    text-decoration: underline; 
}
a:active,
a:active > * { 
    text-decoration: none; 
}

/* Butttons */
.button {
    background-color: none;
    color: #ffffff;
    border: 1px solid white;
    padding: 15px 80px;
    font-size: 22px;
    line-height: 26px;
    font-family: 'Rival';
    text-align: center;
}
.button:hover {
    text-decoration: none;
}