/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 21 2025 | 10:21:37 */
/* =======================================
   POPUP MAKER: CLOSE BUTTON & OVERLAY
   ======================================= */
#popmake-1407 {
	top: 40px !important;	
}

#popmake-1407 > button {
	max-width: 32px !important;
	max-height: 32px !important;
	padding: 0px 0px 4px 0px !important;
	top: 4px !important;
	right: 4px !important; 
	background-color: white !important;
	font-weight: 300 !important;
	color: #3a3a3a !important;
	box-shadow: none;
}

/* Hover: clearer + slight lift */
.pum-close:hover {
  opacity: 1 !important;
}

/* Popup overlay styling (dark blur background) */
.pum-overlay,
.popmake-overlay {
  background: rgba(0, 0, 0, 0.45) !important;  /* Soft dark overlay */
  backdrop-filter: blur(4px) !important;       /* Modern glass effect */
  -webkit-backdrop-filter: blur(4px) !important;
  opacity: 1 !important;
  transition: opacity 0.25s ease-in-out !important;
}

/* Active overlay state */
.pum-overlay.pum-active,
.popmake-overlay.pum-active {
  opacity: 1 !important;
}

/* Disable unwanted overlay animations */
.pum-overlay.pum-active .popmake-overlay {
  animation: none !important;
}

/* Popup outer container */
.pum {
  padding: 0 !important;
}

/* Popup inner content wrapper */
.pum-container {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 32px !important;
  max-width: 480px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
}

/* Popup titles */
.pum-container h1,
.pum-container h2,
.pum-container h3 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
}

/* Popup paragraph text */
.pum-container p {
  margin: 0 0 14px 0 !important;
  line-height: 1.55 !important;
  color: #3a3a3a !important;
}

/* Rounded primary buttons inside popup (WPForms + generic buttons) */
.pum-container .pum-btn,
.pum-container button,
.pum-container .wpforms-submit {
  background: #62b5cf !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 22px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.15s ease !important;
  width: 100% !important;
}

.pum-container .pum-btn:hover,
.pum-container button:hover,
.pum-container .wpforms-submit:hover {
  background: #4da0bb !important;
  transform: translateY(-1px) !important;
}

/* Popup fields aligned with WPForms style */
.pum-container input,
.pum-container textarea,
.pum-container select {
  border-radius: 10px !important;
  border: 1px solid #e0e0e0 !important;
  background: #fafafa !important;
  padding: 10px 14px !important;
  width: 100% !important;
  margin-bottom: 12px !important;
  font-size: 15px !important;
  transition: 0.2s border-color ease !important;
}

.pum-container input:focus,
.pum-container textarea:focus,
.pum-container select:focus {
  border-color: #62b5cf !important;
  box-shadow: 0 0 0 2px rgba(98, 181, 207, 0.3) !important;
  background: #ffffff !important;
  outline: none !important;
}


/* =======================================
   WPFORMS GLOBAL FORM STYLING
   ======================================= */

/* Form container */
.wpforms-form {
  max-width: 600px !important;
  margin: 0 auto !important;
  font-family: inherit !important;
}

/* Field labels */
.wpforms-form .wpforms-field-label {
  font-size: 15px !important;
  font-weight: 500 !important;
  margin-bottom: 4px !important;
  color: #1a1a1a !important;
}

/* Inputs, textareas, selects */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="number"],
.wpforms-form textarea,
.wpforms-form select {
  width: 100% !important;
  padding: 10px 14px !important;
  border: 1px solid #e0e0e0 !important;
  background: #fafafa !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  transition: all 0.2s ease !important;
  color: #1a1a1a !important;
}

/* Focus state for form fields */
.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus {
  background: #fff !important;
  border-color: #62b5cf !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(98, 181, 207, 0.3) !important;
}

/* Placeholder styling */
.wpforms-form ::placeholder {
  color: #9a9a9a !important;
}

/* Primary submit button (round + brand color) */
.wpforms-form button.wpforms-submit {
  width: 100% !important;
  padding: 12px 20px !important;
  background: #62b5cf !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.15s ease !important;
}

.wpforms-form button.wpforms-submit:hover {
  background: #4da0bb !important;
  transform: translateY(-1px) !important;
}

/* Error messages */
.wpforms-error {
  font-size: 13px !important;
  color: #d33 !important;
}

/* Success message container */
.wpforms-confirmation-container-full {
  padding: 14px !important;
  border-radius: 12px !important;
  background: #f0fbff !important;
  border: 1px solid #62b5cf !important;
  color: #1a1a1a !important;
}


/* =======================================
   BUTTONS & LINKS
   ======================================= */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Secondary button style */
.button-secondary {
  background: #f5f5f5 !important;
  color: #111 !important;
}

.button-secondary:hover {
  background: #e8e8e8 !important;
  color: #111 !important;
}


/* =======================================
   MAGAZINE / EXAMPLE BLOCKS
   ======================================= */

/* Magazine download section */
.magazine-download {
  min-height: 500px;
  padding: 50px 0 300px;
  text-align: center;
}

.magazine-download a {
  border-radius: 99px !important;
}

/* "Ontvang gratis voorbeeld" block */
.order-example-default {
  text-align: center;
}

.order-example-default a {
  border-radius: 99px;
}

/* Books banner / order example block */
.order-example {
  min-height: 500px;
  text-align: center;
}

.order-example a {
  border-radius: 99px !important;
}


/* =======================================
   CTA / CASES / BLOG / CONTENT BLOCKS
   ======================================= */

/* Cases grid */
.cases_grid h4 {
	margin-top: 16px;
	margin-bottom: -8px;
}

.cases_grid .vc_gitem-post-data-source-post_title {
	margin-bottom: 0px !important;
}

.cases_grid p {
	color: #929292;
	font-size: 15px;
	margin-top: 0px;
}

/* "Nieuwsgierig naar meer" block */
.custom_cta_block img {
  max-width: 160px;
}

.custom_cta_block {
  margin: 80px 0 !important;
}

/* Cases grid button & item styling */
.cases_grid .vc_btn3-left {
  display: none !important;
}

.cases_grid .vc_gitem-zone {
  background-color: white !important;
  background-size: contain !important;
  background-position: left !important;
}

/* Blog grid button & item styling */
.blog_grid .vc_btn3-left {
  display: none !important;
}

.blog_grid .vc_gitem-zone {
  background-color: white !important;
}

/* Blog detail page content wrapper */
.post {
  max-width: 700px;
  margin: 0 auto;
}

/* Portfolio detail page content wrapper */
.single-portfolio__content {
  max-width: 700px;
  margin: 0 auto;
	gap: 16px;
}

.single-portfolio__content .vc_single_image-img {
  border-radius: 24px;
}

.single-portfolio__title h1 {
		font-size: 40px;	
	}

@media (max-width: 1000px) {
	.single-portfolio__title h1 {
		font-size: 24px;	
	}
}


/* =======================================
   FOOTER & TYPOGRAPHY
   ======================================= */

/* Custom footer typography */
#footer p,
#footer a {
  font-size: 15px;
}

#footer h4,
#footer h2 {
  font-size: 15px;
  margin-bottom: 8px;
}

/* Quote styling */
blockquote {
	font-size: 28px;
	padding: 16px 0 0;
	font-weight: 300;
	color: #62b5cf;
}

/* Generic subtitle styling */
.subtitle {
  font-size: 22px;
  font-weight: 300;
}

/* Custom big title block */
.title_big h2 {
  font-size: 48px !important;
  line-height: 1.2;
}

/* Big quote styling */
.quote_big {
  font-size: 48px;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.quote_logo {
  max-width: 140px;
  margin: 0 auto;
}

/* images in title */
.default_pragraph h3 img {
	max-width: 24px !important;
}

@media (max-width: 767px) {
  .quote_big {
    font-size: 32px;
  }
		
	.subtitle {
		font-size: 20px;		
		line-height: 1.4;
	}
}

@media (max-width: 1000px) {
	.header_title_big h1 {
		font-size: 32px;
		line-height: 1.2;
	}
}


/* =======================================
   REVIEW COMPONENTS
   ======================================= */

/* Review card styling (client rating card) */
.client-rating-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.client-rating-star {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 16px;
}

.client-rating-star img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.client-rating-star span {
  opacity: 0.65;
  margin-left: 2px;
  font-weight: 500;
}

.client-rating-card h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  color: #1b1b1b;
}

.client-rating-card p {
  margin: 0;
  line-height: 1.5;
  color: #3d3d3d;
}

.client-rating-card .client-name {
  margin-top: 8px;
  font-weight: 600;
  color: #1b1b1b;
}

.client-rating-card .client-title {
  font-size: 14px;
  opacity: 0.7;
}

/* Review slider on homepage */
.review_slider img {
  max-height: 30px;
}

.review_slider h4 {
  font-size: 16px;
}

.review_slider p {
  font-size: 14px;
  padding-right: 16px !important;
}

/* Hide owl-prev/next navigation on specific slider */
#slider_2935 button.owl-prev,
#slider_2935 button.owl-next {
  display: none !important;
}


/* =======================================
   BANNERS & USP BLOCKS
   ======================================= */

/* ING banner image wrapper */
.belmondo-img-uniek {
  max-width: 860px;
  margin: 0 auto;
}

/* Active users block */
.active-users {
  display: block;
  text-align: left;
}

.active-users-link {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.active-users-link img {
  height: 24px;
  width: auto;
}

.active-users-link span {
  font-weight: 500;
  margin: 0;
}

/* USP bar images */
.usp_bar img {
  max-width: 80px;
}


/* =======================================
   ACCORDION & IMAGE TITLE HANDLING
   ======================================= */

/* Accordion panel styling */
.vc_tta-panel {
  background-color: white !important;
}

.vc_tta-panel-body {
  font-weight: 300 !important;
}

/* Hide image title tooltip on hover (disables pointer events) */
img[title] {
  pointer-events: none !important;
}

/* =======================================
   COLORS
   ======================================= */

.brand_primary {
	color: #62b5cf;
}

/* =======================================
   HEADER NAV + TRANSLATIONS
   ======================================= */

.belmondo-lang-icon {
  width: 20px;        /* past perfect in je ronde button */
  height: 20px;
  display: block;
}

/* Wrapper */
.belmondo-lang-switcher {
  position: relative;
  display: inline-block;
}

/* Globe button */
.belmondo-lang-btn {
  background: #f5f5f5;
  color: #62b5cf;
  border: none;
  padding: 8px 9px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.belmondo-lang-btn:hover {
	color: #62b5cf;
}

/* Dropdown menu container */
.belmondo-lang-menu {
  position: absolute;
  right: 0;
  top: 50px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 6px 0;
  display: none;
  min-width: 160px;
  z-index: 9999;
}

/* Open state */
.belmondo-lang-menu.open {
  display: block;
  animation: belmondoFade 0.2s ease;
}

@keyframes belmondoFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Links uit [gt-link] mooi stylen */
.belmondo-lang-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.belmondo-lang-menu a:hover {
  background: #f1fafd;
  color: #62b5cf;
}

/* Optioneel: huidige taal iets lichter tonen */
.belmondo-lang-menu a.gt-current-lang {
  font-weight: 600;
  opacity: 0.7;
  cursor: default;
}

/* =======================================
   RESPONSIVE / MISC
   ======================================= */

/* Mobile-only image helper class */
.mobile_image {
  display: none;
}

@media (max-width: 767px) {
  .mobile_image {
    display: block !important;
  }
		
	.hide_on_mobile {
		display: none !important;
	}
}