/*
Theme Name:         FCONLINE
Author:             FC Online
Author URI:         https://www.fconline.nl
Text Domain:        fconline
Version: 			1.0;
*/

/* VARIABLES */
:root {
	--primary-color: #222121;
	--secondary-color:  #519793;
	--white-color:  #fff;
	--black-color:  #000;
	--primary-font: 'Poppins';
	--clr-neon: var(--secondary-color);
  	--clr-bg: hsl(323 21% 16%);
}
body {
	background-image: url(/wp-content/themes/fconline/assets/img/bg-fconline.webp);
	background-size: 100% 100%;
}
html, body {
	scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
	position: relative
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
h1 {
	color: var( --white-color );
    font-family: var(--primary-font);
    font-size: 60px;
    font-weight: bold;
	margin:0px;
}
h2 {
	color: var( --black-color );
    font-family: var(--primary-font);
    font-size: 36px;
    font-weight: bold;
	margin:0px;
}
h3 {
	color: var( --white-color );
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 300;
    font-weight: 600;
	margin:0px;
}
a, p, span {
	font-family: var(--primary-font);
}
a, p {
    line-height: 2;
}
.bold-text {
    font-weight: bold;
    font-size: 20px;
}
p {
	color: #fff;
}


/* GENERAL */
body {
    margin: 0;
}
a {
    color: var(--white-color) !important;
    text-decoration: none !important;
}
.fullscreen-menu-content ul {
	list-style-type: none!important;
	font-family: var(--primary-font)!important;
    font-size: 40px!important;
    font-weight: bold!important;
}
.hidden {
	display: none;
}
.mini-border {
    width: 1px;
    border-left: 1px solid var(--white-color);
}
.background {
/*     background: url(http://stage.afo-staging.nl/wp-content/uploads/2024/02/fconline-bg.png); */
/*     background-size: cover; */
/*     background-position: center; */
}
.rows {
    display: flex;
    flex-direction: row;
}
  
/* HEADER */
.fullscreen-menu {
	background: #1B1B1B;
	background-size: cover;
	height: 100%;
	width: 100%;
	left: 0;
    top: 0;
	right: 0px;
	position: fixed;
	color: var(--white-color);
	transition: 1;
	overflow: hidden;
    opacity: 0;
    z-index: -1;
}


.is-open {
	transition: transform 250ms ease-in-out,opacity 0s ease-in-out;
	opacity: 1;
}
.is-open .fullscreen-menu::before {
    transform: translate(0px, 0px);
}
.inner-menu-contact {
	font-family: var(--primary-font);
}
@media screen and (min-width: 992px) {
	.fullscreen-menu::before {
		content: "";
		background: linear-gradient(112deg, transparent 0%, transparent 25%, var(--secondary-color) 120%, var(--secondary-color) 100%);
		transition: transform 800ms ease-in-out, opacity 0s ease-in-out;
		transition-delay: 0ms;
		transform: translateX(100%);
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: 15;
	}
}
@media screen and (max-width: 992px) {
	.fullscreen-menu::before {
		content: "";
		background: linear-gradient(112deg, #1B1B1B 0%, #1B1B1B 48%, var(--secondary-color) 116%, var(--secondary-color) 100%);
		transition: transform 800ms ease-in-out, opacity 0s ease-in-out;
		transition-delay: 0ms;
		transform: translateX(100%);
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: 15;
	}
	.fullscreen-menu .inner-menu-contact svg {
		width: 22px;
		height: 22px;
	}
}

@media screen and (min-width: 1600px) {
	.fullscreen-menu-content a {
		font-size: 50px!important;
	}
}
@media screen and (min-width: 1100px) {
    .fullscreen-menu-content {
        position: absolute;
        left: 15%;
        top: 30%;
        color: var(--secondary-color);
        transition: opacity 250ms ease-in-out, transform 250ms ease-in-out;
        transition-delay: 0s, 0s;
        transition-delay: 750ms;
        opacity: 0;
        transform: translateX(-100%);
		z-index: 20;
    }
	.fullscreen-menu-content a {
		font-size: 36px;
	}
	 .is-open .fullscreen-menu-content {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (min-width: 1100px) {
    .fullscreen-menu-contact {
        position: absolute;
        top: 37.5%;
        left: 55%;
        font-size: 20px;
        color: var(--white-color);
        z-index: 17;
        font-family: var(--primary-font);
        transition: opacity 250ms ease-in-out, transform 250ms ease-in-out;
        transition-delay: 0s, 0s;
        transition-delay: 750ms;
        opacity: 0;
        transform: translateX(100%);
    }
	 .is-open .fullscreen-menu-contact {
        opacity: 1;
        transform: translateX(0);
    }
	.fullscreen-block {
		display: flex;
		align-items: baseline;
		justify-content: space-around;
		margin-top: 300px;
	}
}
@media screen and (max-width: 600px) {
	.fullscreen-block {
		margin-top: 130px!important;
	}
	.fullscreen-menu-contact {
		bottom: 30px!important;
	}
	.inner-menu-contact {
		font-size: 13px!important;
	}
	.fullscreen-block .fullscreen-menu-content ul {
		font-size: 29px!important;
	}
	.fullscreen-menu-item {
		font-size: 24px!important;
	}
}
@media screen and (max-width: 350px) {
	.fullscreen-menu-contact {
		display: none!important;
	}
}
.fullscreen-menu-contact a {
	display: flex;
	align-items: center;
	text-decoration: underline!important;
}

.fullscreen-animated-div {
    width: 2000px;
    height: 2000px;
    margin-top: -1000px;
    background-color: #519792;
    transition: transform 1s ease-in-out;
    transform: translateX(300%) rotate(-66deg);
}
.fullscreen-animated-div.show {
    transform: translateX(50%) rotate(-66deg);
}

.fullscreen-menu-item:hover {
	color: var(--secondary-color) !important;
}

.main-header {
    height: 50px;
    width: auto;
/*     background-color: var(--primary-color); */
    padding: 50px 100px 30px 0px;
    display: flex;
    justify-content: flex-end;
	z-index: 101;
}

.header-block {
    width: 90%;
	display: flex;
    justify-content: space-between;
    z-index: 101;
}

.header-block.absolute {
    position: absolute;
}
.header-block.fixed {
    position: fixed;
}

.rocket-contact {
    animation: bounce 2.5s infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(30deg);
    }
    50% {
        transform: translateY(-5px) rotate(30deg);
    }
}

.main-logo {
    width: 250px;
}

.contact-button {
	position: relative;
    width: 125px;
    height: 50px;
    background-color: var(--secondary-color);
    display: flex;
    padding: 10px 0px;
	margin-right: 100px;
    justify-content: center;
    border-radius: 48px;
    float: right;
	padding: 0px;
}
.contact-button a {
	display: flex;
	align-content: center;
	flex-wrap: wrap;
}
.contact-button::before {
    pointer-events: none;
    content: "";
    position: absolute;
    background: var(--clr-neon);
    top: 70%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: perspective(1em) rotateX(20deg) scale(1, 0.35);
    filter: blur(1em);
    opacity: 0.7;
}
.contact-button:hover::before, .contact-button:focus::before {
    opacity: 1;
}

/* groter scherm */
@media only screen and (min-width: 2100px) {
    .contact-button {
        margin-right: 150px;
    }
}

/* tablet */
@media only screen and (max-width: 1024px) {
    .main-logo {
        width: 200px;
        margin-left: 0;
    }
    .fullscreen-animated-div.show {
        transform: translateX(30%) rotate(-60deg);
    }
    .main-header {
        padding: 30px 50px 30px 0px;
    }
}
/* tablet */
@media only screen and (max-width: 800px) {
    .fullscreen-block {
        flex-direction: column;
    }
}

@media only screen and (max-width: 550px) {
    .contact-button {
        width: 100px;
        height: 50px;
        font-size: 13px;
        margin-right: 40px!important;
        border-radius: 48px;
    }
}

/* phone */
@media only screen and (max-width: 1100px) {
    .fullscreen-block {
        margin-top: 200px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .main-header {
        padding-top: 50px;
    }
	.header-block {
		margin-top: -25px;
	}
    .contact-button {
        width: 100px;
        height: 50px;
        font-size: 13px;
        margin-right: 70px;
        border-radius: 48px;
    }
    .main-logo {
        width: 120px;
        margin-left: 25px;
    }
    .fullscreen-menu-item {
        font-size: 28px;
		line-height: 1;
		-webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #222121;
	}
    .fullscreen-menu-content {
        z-index: 100;
    }
    .inner-menu-contact {
        font-size: 16px;
        margin-right: 25px;
    }
    .fullscreen-animated-div {
        transform: translateX(50%) translateY(30%) rotate(-30deg);
    }
    .fullscreen-animated-div.show {
        transform: translateX(-30%) translateY(30%) rotate(-30deg);
    }
	.blog-content {
		padding: 25px;
	}
	.fullscreen-menu-contact {
		position: absolute;
		bottom: 50px;
		right: 20px;
		z-index: 100;
	}
}
@media only screen and (max-height: 750px) {
    .fullscreen-menu-content {
        margin-bottom: -25px;
    }
    .fullscreen-animated-div.show {
        transform: translateX(-20%) translateY(30%) rotate(-30deg);
    }
}
@media only screen and (max-height: 700px) {
    .fullscreen-menu-content {
        margin-bottom: -30px;
    }
    .fullscreen-animated-div.show {
        transform: translateX(-16%) translateY(30%) rotate(-30deg);
    }
}

/* phone laying */
@media only screen and (min-height: 360px) and  (max-height: 385px) {
    .fullscreen-animated-div.show {
        transform: translateX(17%) translateY(0%) rotate(15deg) !important;
    }
}
@media only screen and (max-height: 440px) {
    .main-logo {
        width: 125px;
        margin-top: 10px;
    }
    .fullscreen-menu-item {
        font-size: 20px;
    }
    ul {
        font-size: 26px; 
    }
    .inner-menu-contact {
        font-size: 20px;
    }

    .main-header {
        padding-top: 0px;
    }
    .contact-button , .hamburger {
        margin-top: 20px;
    }
    .fullscreen-animated-div.show {
        transform: translateX(20%) translateY(0%) rotate(25deg);
    }
}

/* HAMBURGER */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 48px;
    position: fixed;
    right: 6%;
}
.menu-icon {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.menu-icon__cheeckbox {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    z-index: 2;
    -webkit-touch-callout: none;
    position: absolute;
    opacity: 0;
}

.menu-icon__bar {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 8px;
}

.menu-icon__line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
    border-radius: 1px;
    transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}

.menu-icon__line:first-of-type {
    top: 0;
}

.menu-icon__line:last-of-type {
    bottom: 0;
    width: 14px;
}

.menu-icon__cheeckbox:checked ~ .menu-icon__bar .menu-icon__line:first-of-type {
    transform: rotate(45deg);
    top: 3px;
}

.menu-icon__cheeckbox:checked ~ .menu-icon__bar .menu-icon__line:last-of-type {
    transform: rotate(-45deg);
    bottom: 3px;
    width: 28px;
}

.menu-icon__cheeckbox:checked:hover ~ .menu-icon__bar .menu-icon__line {
    width: 28px;
}

.menu-icon:hover .menu-icon__line {
    width: 28px;
}

.menu-icon__cheeckbox:hover:checked ~ .menu-icon__bar .menu-icon__line:first-of-type,
    .menu-icon__cheeckbox:hover:checked ~ .menu-icon__bar .menu-icon__line:last-of-type,
    .menu-icon:hover .menu-icon__line {
        width: 28px;
    }

.active {
	background-color: var(--black-color);
	color: var(--white-color);
	box-shadow: none;
}

/* FOOTER */
footer .side-text-div {
    color: var(--white-color);
    padding-top: 50px;
}
.footer-container {
    width: 100%;
    color: var(--white-color);
    bottom: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding-top: 50px;
	padding-bottom: 30px;
}

.inner-footer-container {
    width: 70%;
}

.footer-blokken-container {
    width: 100%;
}

.footer-blokken {
    width: 85%;
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.top-footer-block-info {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}
@media only screen and (min-width: 2100px) {

    .top-footer-block-info {
        width: 45%;
        left: 0;
    }
}

.footer-items-column {
    display: flex;
    flex-direction: column;
}

.footer-items-row {
    display: flex;
    justify-content: space-around;
}

.bottom-blok {
    margin-top: 50px;
    display: flex;
}

.social-logo {
    width: 25px;
}

.nieuwsbrief-block {
    display: flex;
}

.meld-je-aan-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inschrijf-div {
    width: 48%;
}
@media only screen and (min-width: 2100px) {
    .inschrijf-div {
        width: 60%;
    } 
}

.forms-input {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--white-color);
    border: none;
    height: 50px;
    width: 45%;
    margin-right: 20px;
    margin-bottom: 10px;
    padding-left: 10px;
}
.footer-input {
    width: 33%;
}
.footer-button {
    width: 25%;
    height: 50px !important;
}
@media only screen and (max-width: 1600px) {
    .footer-form .main-buttom {
        padding: 0 !important;
    }
    .footer-button {
        width: 20%;
        font-size: 12px;
    }
}
.forms-input::placeholder {
    color: var(--white-color);
    opacity: 1;
}

.main-button {
    height: 40px;
    border: none;
    color: var(--white-color);
    background-color: var(--secondary-color);
    font-weight: bold;
    padding: 0 15px;
}

.devider {
    border-right: 1px solid var(--white-color);
    margin: 0 5px;
}

.footer-items-top a {
	display: flex;
	align-items: center;
	gap: 5px;
}
@media only screen and (max-width: 767px) {
	.footer-items-top {
        width: 100%!important;
    }
}
/* tablet */
@media only screen and (max-width: 1024px) {
	.footer-container {
		padding-bottom: 30px;
	}
    .nieuwsbrief-block {
        flex-direction: column;
    }
    .footer-blokken {
        width: auto;
        display: flex;
        flex-wrap: wrap;
        margin-top: 100px;
        margin-left: 0;
    }
    .meld-je-aan-block {
        width: 100%;
        flex-direction: column;
        align-items: normal
    }
    .inschrijf-div {
        width: 100%;
    }
    .footer-items-top {
        width: 50%;
    }
    .footer-items-column {
        width: 50%;
        padding-top: 25px;
    }
    .bottom-blok {
        margin-left: 0;
        display: flex;
    }
}


.socialmedia-icons {
	display: flex;
	gap: 12px;
	margin-top: 15px;
}
/* phone */
@media only screen and (max-width: 550px) {
    .footer-container {
        height: auto;
        margin-top: -150px;
        padding-bottom: 30px;
		padding-top: 0px;
    }
    .inner-footer-container {
        padding: 100px 20px 0px 20px;
        width: 100%;
    }
    .footer-blokken-container {
        display: flex;
        justify-content: center;
    }
    .inschrijf-div {
        width: 100%;
    }
    .footer-button {
        width: 80%;
    }
    .footer-blokken {
        margin-top: 50px;
        margin-left: 0;
        flex-direction: column;
        width: 100% !important;
    }
    .top-footer-block-info {
        display: flex;
        flex-direction: column;
        padding-left: 50px;
    }
    .footer-items-column {
        margin-top: 25px;
    }
    .adres-title {
        margin-top: 25px;
    }
    .nieuwsbrief-block {
        flex-direction: column;
        margin-top: 0;
    }
    .nieuwsbrief-title {
        font-size: 27px;
        padding-bottom: 25px;
    }
    .meld-je-aan-block {
        flex-direction: column;
        margin-bottom: 50px;
    }
    .nieuwsbrief-input {
        margin-bottom: 25px;
        background: rgba(255, 255, 255, 0.2);
    }
    .footer-input {
        border: 1px solid var(--secondary-color);
        width: 80%;
    }
    .bottom-blok {
        display: flex;
        justify-content: center;
    }
    .footer-items-row {
        flex-direction: row;
        width: 100%;
		justify-content: flex-start!important;
		font-size: 10px;
    }
}

/* phone laying */
@media only screen and (max-height: 440px) {
    .footer-container {
        height: auto;
        padding-top: 0;
    }
    .inner-footer-container {
        padding-top: 50px;
    }
    .meld-je-aan-block {
        margin-left: 0;
        width: 100%;
        flex-direction: column;
        align-items: normal;
    }
    .inschrijf-div {
        width: 100%;
    }
    .footer-form {
        display: flex;
        padding-top: 25px;
    }
    .footer-input {
        width: 100%;
    }
    .footer-button {
        width: 100%;
    }
    .footer-blokken {
        margin-top: 50px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .footer-items-top {
        width: 50%;
    }
    .footer-items-column {
        width: 50%;
        padding-top: 25px;
    }
    .bottom-blok {
        Justify-content: normal
    }
}

/* ONZE AANPAK BLOCK */
.onze-aanpak-block {
    height: 1000px;
    margin-top: 200px;
    padding: 50px 0 0 0 ;
    background-color: var(--primary-color);
}

.white-side-titles {
    color: var(--white-color)!important;
}
.aanpak-title {
    margin-left: 70px;
}

/* CONTACT FORM */
@media screen and (max-width: 1024px) {
	.flex-form {
		display: none!important;
	}
}
.flex-form {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 15px;
}
.flex-form .half {
	width: calc(50% - 15px);
}
.flex-form .full {
	width: calc(100% - 15px);
}
.flex-form input {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.2);
    color: var(--white-color);
    border: none;
    height: 50px;
    padding-left: 10px;
	outline: 0px;
	font-family: var(--primary-font);
	box-sizing: border-box;
}
.flex-form textarea {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.2);
    color: var(--white-color);
    border: none;
	padding: 10px;
	outline: 0px;
	font-family: var(--primary-font);
	box-sizing: border-box;
}
.wpcf7 form .wpcf7-response-output {
	margin: 0px;
	margin-top: -20px;
	font-family: var(--primary-font);
}
.flex-form .wpcf7-form-control::placeholder {
	color: #fff;
}
.flex-form .wpcf7-submit {
	width: 100%;
	background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    height: 50px;
	cursor: pointer;
	font-weight: bold;
	font-size: 16px;
}
.flex-form p {
	margin: 8px 0px;
}
.mc-field-group .email {
	padding: 0px 15px!important;
	outline: 0px!important;
	font-family: var(--primary-font);
}
#mc-embedded-subscribe {
	font-family: var(--primary-font);
	cursor: pointer;
}
@media screen and (max-width:500px) {
	.footer-items-column {
		display: none!important;
	}
}
.socialmedia-icons a {
	background: var(--secondary-color);
    border-radius: 100%;
    padding: 7px;
}
.secondary-btn {
	background: var(--secondary-color);
    padding: 10px 20px;
    margin-top: 10px;
    display: inline-block;
    font-weight: bold;
}
/* CONTACT STYLING */
@media screen and (min-width: 992px) {
	.page-id-486 .text-block-container-links-image {
		width: 52%;
		border: 1px solid #264341;
		height: auto !important;
		box-shadow: 8px 8px 15px #1a2f2d;
		padding-bottom: 0px;
	}
}
@media screen and (max-width: 992px) {
	.page-id-486 .text-block-container-links-image {
		width: 100%;
		border: 1px solid #264341;
		height: auto !important;
		box-shadow: 8px 8px 15px #1a2f2d;
		padding-bottom: 0px;
	}
	.page-id-486 .block-geen-achtergrond {
		padding: 0px!important;
		margin: 20px;
	}
	.page-id-486 .text-block-title {
		margin-top: 15px!important;
	}
}
.page-id-486 .text-block-div-image-links div, .page-id-486 .text-block-div-image-links p {
	padding-left: 40px;
}
.page-id-486 .text-block-img-div-links {
	margin-bottom: -3px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #005900!important;
    background: #0a330a7d!important;
    padding: 10px;
}
.wpcf7-not-valid-tip {
	margin-bottom: -13px;
	margin-top: -3px;
}
#mc_embed_signup div.mce_inline_error {
	box-sizing: border-box;
}