@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* ??? Variables ???????????????????????????????????????????????? */
:root {
  --brand:       #007c57;
  --brand-light: #eaf4ef;
  --dark-teal:   #0f2820;
  --off-white:   #e9efed;
  --dark-blue:     #153959;
}

/* ??? Base ????????????????????????????????????????????????????? */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #212529;
}

/* ??? Color utilities ?????????????????????????????????????????? */
.text-brand     { color: var(--brand) !important; }
.bg-brand       { background-color: var(--brand) !important; }
.bg-brand-light { background-color: var(--brand-light) !important; }
.bg-dark-teal   { background-color: var(--dark-teal) !important; }
.text-off-white { color: var(--off-white) !important; }

/* ??? Navbar ??????????????????????????????????????????????????? */
.site-navbar {
  height: 100px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}
.site-navbar .navbar-brand img {
  height: 60px;
}
.site-navbar .nav-link {
  font-size: 16px;
  color: #212529;
  padding: 0;
}
.site-navbar .nav-link:hover {
  color: var(--brand);
}
.navbar-collapse.collapse.show {
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}
/* ??? Buttons ?????????????????????????????????????????????????? */
.btn-outline-brand {
  color: var(--brand);
  border: 1.5px solid var(--brand);
  background: transparent;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 4px;
}
.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: #fff;
  background-color: var(--brand);
  border-color: var(--brand);
}
.btn-outline-white {
  color: #fff;
  border: 1.5px solid #fff;
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 4px;
}
.btn-outline-white:hover,
.btn-outline-white:focus {
  color: var(--brand);
  background-color: #fff;
}
.btn-outline-green {
  color: #fff;
  border: 1.5px solid #82B698;
  background: #82B698;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 4px;
}
.btn-outline-green:hover,
.btn-outline-green:focus {
  color: #fff;
  background-color: #82B698;
  border-color: #82B698;
}
/* mobile */
@media (max-width: 768px) {
  .btn-outline-brand {
    width: 100%;
  }
  .btn-outline-white {
    width: 100%;
  }
}

/* ??? Hero ????????????????????????????????????????????????????? */
.hero-section {
  min-height: 400px;
  max-width: 1600px;
  margin: 0 auto;
  background: url('../images/header-home-aranea-placeholder.jpg') center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 0 3rem;
  position: relative;
}
.hero-section h1 {
  font-size: 32px;
  line-height: 1.2;
  color: var(--off-white);
  max-width: 500px;
}

/* hero overlay */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0,0,0,.3); */
  background: url('/assets/images/aranea-hero-overlay.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-section .overlay.mobile {
  background: url('/assets/images/aranea-hero-overlay-m.png');
  background-size: cover;
} 

/* tablet */
@media (max-width: 1200px) {
  .hero-section .px-lg-180{
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}

/* ??? Feature / Step cards ????????????????????????????????????? */
.feature-card {
  border: 1.5px solid var(--brand);
  border-radius: 6px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 1.25rem;
  text-align: center;
}
.feature-card img {
  height: 53px;
  width: auto;
  margin-bottom: 1rem;
}
.feature-card .card-label {
  font-size: 16px;
  color: var(--brand);
  margin: 0;
  font-weight: 400;
}

#wat-is-smp .dw-600 {
 width: 718px;
}
@media (max-width: 1200px) {
  #wat-is-smp .dw-600 {
    width: 600px;
  }
}
@media (max-width: 1050px) {
  #wat-is-smp .dw-600 {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #wat-is-smp .dw-600 {
    width: 100%;
  }
}




/* ??? Divider ?????????????????????????????????????????????????? */
.brand-divider {
  width: 2px;
  background-color: #7F7F7F;
  min-height: 200px;
  border-radius: 2px;
}

/* ??? SMP verbindt ????????????????????????????????????????????? */
.smp-verbindt-section {
  background-color: #EAEEEC;
  position: relative;
}
.smp-verbindt-section .container-xxl {
  position: relative;
}
.section-label {
  font-size: 14px;
  color: #000;
  margin-bottom: -1px !important;
}
.smp-verbindt-section h2 {
  color: var(--brand);
}
.smp-verbindt-section p {
  color: #000000;
}
.smp-verbindt-section a {
  color: #000000;
  font-weight: 700;
}

/* Video play overlay */
.video-play-btn {
  position: absolute;
  top: 31%;
  left: 63%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: #143654;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff!important;
  font-weight: normal !important;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.video-play-btn span {
    font-size: 18px;
    line-height: 22px;
}
.video-play-btn:hover {
  background: var(--brand) !important;
  color: #fff;
  cursor: pointer;
}
.video-play-btn strong {
  font-weight: 700;
  display: block;
  margin-top: 10px;
}

/* ??? Hoe werkt het ? step number ?????????????????????????????? */
.step-number {
  font-weight: 700;
}

/* ??? Monitoren image grid ????????????????????????????????????? */
.monitoren-grid {
  display: grid;
  grid-template-columns: 186px 186px;
  gap: 6px;
  width: fit-content;
  margin-left: auto;
}
.monitoren-grid img {
  display: block;
  width: 186px;
  height: 186px;
  object-fit: cover;
}
.monitoren-logo-block {
  width: 186px;
  height: 186px;
  background-color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.monitoren-logo-block img {
  height: auto;
  width: 100%;
  max-width: 120px;
  object-fit: contain;
}
/* .monitoren-logo-block img.placeholder {
  width: 186px !important;
  height: 186px !important;
  object-fit: cover;
} */

/* ??? FAQ section ?????????????????????????????????????????????? */
.faq-section {
  background: url('../images/faq-bg.png') center / cover no-repeat;
}
.faq-section .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #7F7F7F;
  border-radius: 0;
}
.faq-section .accordion-item:first-of-type {
    border-top: 1px solid #7F7F7F;
    border-radius: 0;
}
.faq-section .accordion-button {
  background: transparent;
  color: var(--brand);
  font-weight: 500;
  font-size: 16px;
  padding: 1rem 0;
  box-shadow: none;
  padding-bottom: 4px;
}
.faq-section .accordion-button.collapsed {
  padding-bottom: 16px;
}
.faq-section .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--brand);
  box-shadow: none;
}
.faq-section .accordion-button::after {
  /* + icon in brand green */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23007c57' d='M8 1a.75.75 0 0 1 .75.75v5.5h5.5a.75.75 0 0 1 0 1.5h-5.5v5.5a.75.75 0 0 1-1.5 0v-5.5H1.75a.75.75 0 0 1 0-1.5h5.5v-5.5A.75.75 0 0 1 8 1z'/%3E%3C/svg%3E");
  transform: none;
  transition: transform 0.2s ease;
  background-color: #fff;
    border-radius: 50px;
    background-size: 16px;
    background-position: center;
}
.faq-section .accordion-button:not(.collapsed)::after {
  /* same + icon, rotated 45° to become × */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23007c57' d='M8 1a.75.75 0 0 1 .75.75v5.5h5.5a.75.75 0 0 1 0 1.5h-5.5v5.5a.75.75 0 0 1-1.5 0v-5.5H1.75a.75.75 0 0 1 0-1.5h5.5v-5.5A.75.75 0 0 1 8 1z'/%3E%3C/svg%3E");
  transform: rotate(45deg);
}
.faq-section .accordion-body {
  padding: 0 0 1rem;
  font-size: 14px;
  width: 80%;
}
.faq-section .accordion-body ol {
    padding:0px 16px
}
.accordion-item:last-of-type>.accordion-collapse { border-radius: 0px !important; }

@media (max-width: 768px) {
  .faq-section .accordion-body {
    width: 100%;
  }
}

/* ??? Partners marquee ????????????????????????????????????????? */
.partners-marquee {
  overflow: hidden;
  width: 100%;
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  height: 100px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(30%);
  opacity: .85;
  transition: opacity .2s, filter .2s;
  margin: 0 20px;
}
.partner-logo:hover {
  opacity: 1;
  filter: none;
}

/* ??? Form section ????????????????????????????????????????????? */
.demo-form-section {
  background-color: var(--dark-blue);
}
.demo-form-section label {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  margin-bottom: .3rem;
}
.demo-form-section .form-control,
.demo-form-section .form-select {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}
.demo-form-section .form-control::placeholder {
  color: rgba(255,255,255,.45);
}
.demo-form-section .form-control:focus,
.demo-form-section .form-select:focus {
  background: transparent;
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 .2rem rgba(0,124,87,.25);
}
.demo-form-section .form-check-label {
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.demo-form-section .form-check-input {
  border-color: rgba(255,255,255,.45);
  background-color: transparent;
}
.demo-form-section .form-check-input:checked {
  background-color: var(--brand);
  border-color: var(--brand);
}
.demo-form-section .group-title {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  margin-bottom: .5rem;
}
.recaptcha-placeholder {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  height: 78px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

/* google calendar */
.google-calendar-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  min-height: 725px;
  overflow: hidden;
}
.google-calendar-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .google-calendar-wrapper {
    min-height: 1500px;
  }
}

/* ??? Footer ??????????????????????????????????????????????????? */
.site-footer {
  
}
.site-footer .footer-brand {
  font-size: 24px;
  color: var(--brand);
  font-weight: 500;
}
.site-footer p,
.site-footer small {
  color: rgba(0,0,0,.8);
}
.site-footer .footer-nav a {
  display: block;
  color: var(--brand);
  text-decoration: none;
  line-height: 2;
  font-size: 15px;
}
.site-footer .footer-nav a:hover {
  text-decoration: underline;
}
.site-footer .footer-contact a {
  color: var(--brand);
  text-decoration: none;
}
.site-footer .footer-contact a:hover {
  text-decoration: underline;
}
.site-footer .footer-contact p {
  color: rgba(0,0,0,.8);
  font-size: 14px;
  line-height: 2;
  margin: 0;
}
.site-footer .copyright {
  font-size: 12px;
}

/* bs overrides */
.g-3, .gy-3 {
    --bs-gutter-y: 25px;
}
.g-3, .gx-3 {
    --bs-gutter-x: 25px;
}

.mw-80p {
  max-width: 80%;
}
@media (max-width: 768px) {
  .mw-80p {
    max-width: 100%;
  }
}
