/*-----------------------------------------------------------------------------------

    Template Name: Sfinx
    Description: 
    Version: 1.0

-----------------------------------------------------------------------------------

**********************************************/
/*----------------------------------------*/
/*  Base CSS
/*----------------------------------------*/

* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

body {
  font-family: Arial, sans-serif;
}

h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: normal;
}

h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
}

h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: normal;
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.margin-r-0 {
  margin-right: 0 !important;
}
.padding-top-10 {
  padding-top: 10px;
}
.only-mobile-divice {
  display: none;
}
.br-only-small-divice {
  display: none;
}

/* Loader CSS */
.sfinx-loader {
  position: fixed;
  inset: 0;
  background-color: #000; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: rotate(180deg);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4);
  }
  100% {
    transform: rotate(360deg);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4);
  }
}

/*---------------------------------
    Menu CSS
---------------------------------*/
.header-main,
.header-main-onze-visie,
.onze-aanpak-header-main,
.header-main-over-ons,
.contact-header-main,
.algemenevoorwaarden-header-main {
  padding: 18px 0;
}
.header-main {
  background-color: #051842;
}
.header-main-onze-visie {
  background-color: #1c0307;
}
.onze-aanpak-header-main {
  background-color: #171614;
}
.header-main-over-ons {
  background-color: #06173e;
}
.contact-header-main {
  background-color: #171614;
}
.algemenevoorwaarden-header-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: transparent;
}

.logo a {
  display: inline-block;
}
.logo-mobile {
  display: none;
}
.logo a .logo-desktop {
  width: 75px;
  height: 50px;
}

.menu-main nav ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.menu-main nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 28px;
  z-index: 1;
}
.menu-main nav ul li:first-child {
  margin-left: 30px;
}

.menu-main nav ul li a {
  font-family: "Inter", sans-serif;
  position: relative;
  color: #ffffffbf;
  font-weight: 700;
  line-height: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.84px;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}

.menu-main nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.onze-visie-menu-main nav ul li a::after {
  background-color: #e85973;
}

.onze-aanpak-menu-main nav ul a::after {
  background-color: #fdc244 !important;
}
.menu-main nav ul li a:hover {
  color: #ffffff;
}
.onze-visie-menu-main nav ul li a:hover {
  color: #d94b67;
}
.onze-aanpak-menu-main nav ul li a:hover {
  color: #fdc244;
}
.contact-menu-main nav ul li a:hover {
  color: #a1ceff;
}

.menu-main nav ul li a:hover::after {
  opacity: 1;
}
.contact-menu-main nav li a:hover::after {
  background-color: #a1ceff;
}

.menu-main nav ul li a.active {
  color: #ffffff;
}

.onze-visie-menu-main nav ul li a.active {
  color: #e85973;
}

.onze-aanpak-menu-main nav ul li a.active {
  color: #fdc244;
}
.contact-menu-main nav ul li a.active {
  color: #a1ceff;
}
.contact-menu-main nav ul li a.active::after {
  background-color: #a1ceff;
}

.menu-main nav ul li a.active::after {
  opacity: 1;
}

.menu-main nav ul li:last-child {
  margin-right: 0;
}

.login-btn,
.login-btn-mobile,
.contact-btn-mobile {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  color: #ffffff;
  background-color: #20a1f2;
  padding: 14.2px 46.5px;
  display: inline-block;
  border-radius: 8px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-main-onze-visie .login-btn {
  background-color: #e85973;
}
.onze-aanpak-header-main .login-btn {
  background-color: #fdc244;
}

.header-main-over-ons .login-btn {
  background-color: #006fcf;
}

.login-btn-mobile,
.contact-btn-mobile,
.mobile-nav-top .mobile-logo {
  display: none !important;
}

.mobile-logo {
  display: none;
}
.login-btn:hover {
  color: #fff;
  background-color: #1a8cd4;
}
.header-main-onze-visie .login-btn:hover {
  background-color: #d94b67;
}
.onze-aanpak-header-main .login-btn:hover {
  background-color: #e0aa32;
}
.header-main-over-ons .login-btn:hover {
  background-color: #005bb5;
}
.contact-header-main .login-btn {
  background-color: #4ca3ff;
}
.contact-header-main .login-btn:hover {
  background-color: #1a76d2;
}
.algemenevoorwaarden-header-main .login-btn {
  background-color: #00aeef;
}
.algemenevoorwaarden-header-main .login-btn:hover {
  background-color: #0099d6;
}

.login-btn-div {
  text-align: right;
}

.hamburger {
  display: none;
}

.only-mobile {
  display: none;
}

/*---------------------------------
    Hero Section
---------------------------------*/
.hero-section,
.onze-visie-hero-section,
.onze-aanpak-hero-section,
.over-ons-hero-section,
.login-hero-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 120px;
  min-height: calc(100vh - 88px);
}

.onze-visie-hero-section {
  padding-top: 217px;
}
.contact-hero-section {
  position: relative;
  padding: 82px 0;
}

.algemenevoorwaarden-hero-section {
  position: relative;
  padding-top: 245px;
  padding-bottom: 193px;
}

.hero-section::after,
.onze-visie-hero-section::after,
.onze-aanpak-hero-section::after,
.over-ons-hero-section::after,
.contact-hero-section::after,
.login-hero-section::after,
.algemenevoorwaarden-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-section::after {
  background: linear-gradient(
    to right,
    #051842 0%,
    #051842 40%,
    rgba(5, 24, 66, 0.85) 50%,
    rgba(5, 24, 66, 0) 100%
  );
}

.onze-visie-hero-section::after {
  background-image: linear-gradient(
    to left,
    #1c0307 0%,
    #1c0307 35%,
    rgba(28, 3, 7, 0.99) 40%,
    rgba(28, 3, 7, 0.01) 85%,
    rgba(28, 3, 7, 0) 100%
  );
}

.onze-aanpak-hero-section::after {
  background: linear-gradient(
    to right,
    #171614 0%,
    #171614 40%,
    rgba(23, 22, 20, 0.9) 50%,
    rgba(23, 22, 20, 0) 100%
  );
}

.over-ons-hero-section::after {
  background: linear-gradient(
    to left,
    #051842 0%,
    #051842 5%,
    rgba(5, 24, 66, 0.9) 40%,
    rgba(5, 24, 66, 0.01) 85%,
    rgba(5, 24, 66, 0) 100%
  );
}

.contact-hero-section::after {
  background: linear-gradient(
    to left,
    #171614 0%,
    #171614 5%,
    rgba(23, 22, 20, 0.9) 30%,
    rgba(23, 22, 20, 0.3) 70%,
    rgba(23, 22, 20, 0) 100%
  );
}

.login-hero-section::after {
  background: linear-gradient(
    to right,
    #051842 0%,
    rgba(5, 24, 66, 0.88) 30%,
    rgba(5, 24, 66, 0.77) 50%,
    rgba(5, 24, 66, 0) 100%
  );
}

.algemenevoorwaarden-hero-section::after {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.53) 61%,
    rgba(0, 0, 0, 1) 100%
  );
}

.home-hero-bg {
  background-image: url("../img/home-desktop-bg.webp");
  background-repeat: no-repeat;
  background-position: center right;
}
.onze-visie-hero-bg {
  background-image: url("../img/onze-visie-desktop-bg.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
}
.onze-aanpak-hero-bg {
  background-image: url("../img/onze-aanpak-desktop-bg.webp");
  background-repeat: no-repeat;
  background-position: center right;
}
.over-ons-hero-bg {
  background-image: url("../img/over-ons-desktop-bg.webp");
  background-repeat: no-repeat;
  background-position: left center;
}
.contact-hero-bg {
  background-image: url("../img/contact-desktop-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.login-hero-bg {
  background-image: url("../img/login-desktop-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
}
.algemenevoorwaarden-hero-bg {
  background-image: url("../img/algemenevoorwaarden-desktop-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.privacyverklaring-hero-bg {
  background-image: url("../img/privacyverklaring-desktop-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content,
.hero-contact-form {
  position: relative;
  z-index: 2;
}
.sub-heading {
  display: flex;
  gap: 7px;
}
.sub-heading span {
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 7px;
}
.sub-heading h6 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.onze-aanpak-hero-section .hero-content h6,
.onze-visie-hero-section .hero-content h6,
.over-ons-hero-section .hero-content h6 {
  letter-spacing: 4px;
}
.onze-visie-hero-section .sub-heading h6 {
  letter-spacing: 4px;
  padding-bottom: 5px;
}
.hero-content h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -1.5px;
}

.algemenevoorwaarden-hero-section .hero-content h1 {
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 64px;
  font-weight: 600px;
  line-height: 55.6px;
  letter-spacing: -1px;
  margin-bottom: 0;
}

.hero-content p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  padding: 40px 0;
}

.onze-visie-hero-section .hero-content p {
  padding-top: 25px;
}
.onze-aanpak-hero-section .hero-content p:first-of-type,
.over-ons-hero-section .hero-content p:first-of-type {
  padding-top: 30px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.onze-aanpak-hero-section .hero-content p:last-of-type,
.over-ons-hero-section .hero-content p:last-of-type {
  padding-top: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  border-radius: 8px;
  padding: 15px 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-buttons .btn-primary {
  background-color: #20a1f2;
  color: #ffffff;
  border: none;
}

.hero-buttons .btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-weight: 400;
}

.hero-buttons .btn-primary:hover {
  background-color: #1a8cd4;
}

.hero-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.onze-visie-hero-section .hero-buttons .btn {
  background-color: #e85973;
  color: #fff;
  justify-content: start;
  width: fit-content;
}
.onze-visie-hero-section .hero-buttons .btn:hover {
  background-color: #c74860;
}
.onze-aanpak-hero-section .hero-buttons .btn {
  background-color: #fdc244;
}
.over-ons-hero-section .hero-buttons .btn {
  background-color: #006fcf;
  color: #fff;
}
.over-ons-hero-section .hero-buttons .btn:hover {
  background-color: #005bb5;
}

/*---------------------------------
    Contact Form Area
---------------------------------*/
.hero-contact-form {
  max-width: 713px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 35px 30px;
  padding-bottom: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.hero-contact-form .sub-heading h6 {
  letter-spacing: 4px;
  margin-bottom: 0;
}
.hero-contact-form h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 0;
  padding-bottom: 12px;
  letter-spacing: -1.5px;
}
.hero-contact-form p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  padding-bottom: 30px;
}
.contact-info {
  padding-bottom: 25px;
}
.contact-info .contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon img {
  width: 24px;
  height: 24px;
}
.contact-info-text h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  padding-bottom: 5px;
}
.contact-info-text a,
.contact-info-text span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: color 0.2s ease-in;
}

.contact-info-text a:hover {
  color: #4ca3ff;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  line-height: 46px;
  background-color: #1969bd;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
}

.hero-contact-form form label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 5px;
}
.hero-contact-form form input,
.hero-contact-form form textarea {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 6px;
  color: #000000b3;
  background-color: #fff;
  padding: 10px 12px;
  outline: none;
  border: 0;
  margin-bottom: 24px;
}

.hero-contact-form form textarea {
  resize: none;
  min-height: 130px;
}
.hero-contact-form input::placeholder,
.hero-contact-form textarea::placeholder {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
}
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hero-contact-form form .agree-check {
  display: flex;
  gap: 12px;
}
.hero-contact-form form .agree-check input[type="checkbox"] {
  width: 24px;
  height: 27px;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #d3d3d3;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.hero-contact-form form .agree-check input[type="checkbox"]:checked {
  background-color: #1969bd;
  border-color: #d3d3d3;
  border-radius: 6px;
}

.hero-contact-form form .agree-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #d3d3d3;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hero-contact-form form .agree-check label {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding-top: 5px;
}

.hero-contact-form form .agree-check label a {
  color: #fff;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease-in-out;
}
.hero-contact-form form .agree-check label a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  height: 1px;
  width: 100%;
}
.hero-contact-form form .agree-check label a:hover {
  color: #a1ceff;
}
.hero-contact-form form .agree-check label a:hover::after {
  background-color: #a1ceff;
}
.submit-btn {
  padding-top: 10px;
}
.submit-btn button {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  background-color: #1969bd;
  padding: 11px 29px;
  border-radius: 10px;
  border: 1px solid #fff;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.submit-btn button:hover {
  background-color: #155fa8;
  color: #fff;
  border-color: #fff;
}

.login-form {
  margin-top: 70px;
}

/*---------------------------------
    Terms Condition
---------------------------------*/
.terms-condition-section {
  padding-top: 20px;
}

.terms-condition-box {
  display: grid;
  grid-template-columns: 453px 1px 1fr;
  gap: 20px;
  border-top: 1px solid #0000001a;
  padding: 40px 0;
  align-items: flex-start;
}
.terms-condition-box:first-of-type {
  border: none;
}
.terms-condition-box:last-child {
  border-bottom: 1px solid #0000001a;
}
.terms-condition-box .left-column h3 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.vertical-divider {
  background-color: #0000001a;
  width: 1px;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.terms-condition-box .right-column {
  padding-left: 6px;
}

.condition-article h4 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 20px;
}

.condition-article p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 0px;
}
.condition-article h5 {
  color: #000000;
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 25px;
}

.condition-article h5 {
  font-size: 18px;
  line-height: 28px;
}

/*---------------------------------
    Privacy page
---------------------------------*/
.privacy-list-items {
  padding-top: 15px;
  padding-left: 28px;
}
.privacy-list-items li {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  list-style: disc;
}
.condition-article p a {
  color: #000;
  transition: color 0.3s ease-in-out;
}
.condition-article p a:hover {
  color: #20a1f2;
}
/*---------------------------------
    Footer Area
---------------------------------*/
.footer-area {
  font-family: "Inter", sans-serif;
  padding: 60px 0 20px;
  background-color: #fff;
  display: none;
}
.footer-area .col-lg-3:first-child {
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}
.footer-area .col-lg-3 {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  max-width: 112px;
  margin-bottom: 20px;
  font-weight: 400;
  height: 75px;
}

.footer-text {
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
  margin-bottom: 0;
}

.footer-pages-link h4 {
  color: #1f2937;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 15px;
}

.footer-pages-link ul {
  list-style: none;
  padding: 0;
}

.footer-pages-link li {
  display: flex;
  margin-bottom: 12px;
  color: #4b5563;
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
}

.footer-pages-link li img {
  margin-right: 8px;
  width: 10px;
  height: 20px;
}

.footer-pages-link a {
  color: #4b5563;
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  transition: color 0.3s ease-in-out;
}

.footer-pages-link a:hover {
  color: #20a1f2;
}
.footer-contact li img {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}
.copyright-area {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #0000001a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright-area p {
  font-size: 14px;
  color: #4b5563;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.copyright-area ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
}

.copyright-area li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.copyright-area h4 {
  font-size: 14px;
  margin: 0;
  color: #4b5563;
}

.copyright-area span {
  font-size: 14px;
  color: #4b5563;
}
