:root {
  --nuraXeducatie-blue: #00b2e3;
  --nuraXeducatie-orange: #f2652c;
  --nuraXeducatie-text: #1a1a1a;
  --nuraXeducatie-muted: #4a4a4a;
  --nuraXeducatie-card: rgba(255, 255, 255, 0.92);
}



* {
  box-sizing: border-box;
}

.ast-container, .ast-container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px !important;
    padding-right: 0px !important
}

body {
  margin: 0;
 font-family: "Poppins", "sans-serif", "sans-serif";
  color: var(--nuraXeducatie-text);
  background: #f5f6f7;
}
.parent{
	margin: 0;
 font-family: "Poppins", "sans-serif", "sans-serif";
  color: var(--nuraXeducatie-text);
  background: #f5f6f7;
	
}.nuraXeducatie_popupbullet {
  margin: 0px;
  padding: 0 15px;
}

li::marker {
  color: #00b2e3; /* Only changes the bullet color */
}

.nuraXeducatie_section {
  width: 100%;
  background-image: url("https://neuraxconnect.nl/wp-content/uploads/2025/12/service-materialen-bg-final-scaled.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
height : 84vh;
  /* padding: 0px 24px; */
}

.nuraXCTADetails {
    text-align: center;
}

.nuraXeducatie_container {
  max-width: 2200px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: stretch;
min-height : 85vh;

}

.nuraXeducatie_column1 {
    flex: 1 0 65%;
  display: flex;
  height: 100%;
  flex-direction: column;
 
  gap: 12px;
      max-width: 1000px;
  /* background: var(--nuraXeducatie-card); */
    padding: 28px 28px 28px 8%;
  border-radius: 16px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
	
}

.nuraXeducatie_col1Block2{
     width: 100%;
  
    
}

.nuraXeducatie_col1Block3{
     width: 26%;
    text-align: center;
    align-self: center;
    min-width: 200px;
    margin-top: auto;
    
}

.nuraXeducatie_column2 {
  flex: 1 0 25%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 420px;
  padding: 28px;
}

.nuraXeducatie_logo {
  width: min(240px, 60%);
  height: auto;
  object-fit: contain;
}

.nuraXeducatie_headingRow {
  display: flex;
  /* gap: 16px; */
  align-items: center;
}

.nuraXeducatie_iconWrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  /* background: #ffffff; */
  /* display: grid;
  place-items: center; */
  text-align: end;
  padding-right: 4px;
  /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); */
}

.nuraXeducatie_icon {
     width: 36px;
    height: 36px;
    object-fit: contain;
    margin-top: -12px;
}

.nuraXeducatie_title {
  margin: 0;
 font-family: "Poppins", "sans-serif", "sans-serif";
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}

.nuraXeducatie_subtitle {
    margin: 2px 0 0;
    /* color: var(--nuraXeducatie-muted); */
    font-size: 20px;
    font-weight: 500;
}

.nuraXeducatie_actions {
  display: flex;
  flex-wrap: wrap;
  /* gap: 16px; */
}

.nuraXeducatie_CTAleft_Label{
  flex  : 1;
  min-width: 0;  

}


.nuraXeducatie_CTAleft,
.nuraXeducatie_CTADivider,
.nuraXeducatie_CTAright{
  flex: 0 0 auto;
}


.nuraXeducatie_action1,
.nuraXeducatie_action2,
.nuraXeducatie_action3 {
  flex: 0 0 calc(50% - 8px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* background: #ffffff; */
  padding: 12px;
  border-radius: 12px;
  max-width: 245px;
  min-width: 220px;
  /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06); */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  align-self: baseline;
}

.nuraXeducatie_popupToggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nuraXeducatie_imageContainer {
  width: 100%;
  /* border-radius: 10px; */
  overflow: hidden;

  position: relative;
  cursor: pointer;
}

.nuraXeducatie_actionImage {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.nuraXeducatie_popupText {
     position: absolute;
    /* left: 0; */
    top: 0;
    height: 100px;
    bottom: calc(100% + 10px);
    transform: translateY(8px);
    width: 135%;
    border: 3px solid var(--nuraXeducatie-blue);
    border-radius: 8px;
    background: #CCF0F9;
    color: black;
    padding: 16px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.nuraXeducatie_popupClose {
position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00B2E3;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
}

.nuraXeducatie_CTAs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 8px;
  background: var(--nuraXeducatie-blue);
  color: #ffffff;
  overflow: hidden;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  min-height: 46px;
  transition: background 0.25s ease;
    transition: box-shadow 0.4s ease, transform 0.4s ease;

}

.nuraXeducatie_CTAleft_Label {
  width: 100%;
  flex: 1 1 100%;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  margin: 0 8px;
}

.nuraXeducatie_CTADivider.nuraXeducatie_CTADividerCustom {
    height: 40%;
}

.nuraXeducatie_CTAleft_Label span {
font-size: 10px;
font-weight: 500;
}

.nuraXeducatie_CTAleft,
.nuraXeducatie_CTAright {
  /* flex: 1 1 0; */
  padding: 8px 8px;
  font-size: 12px;
  font-weight: 600;

}

.nuraXeducatie_CTAleft {
  text-align: center;
    width: 49%;
}

.nuraXeducatie_CTAright {
  text-align: center;
    width: 49%;
}

.nuraXeducatie_CTADivider {
  width: 2px;
  align-self: center;
  background: rgba(255, 255, 255, 0.7);
  height: 32px;
  
}

.nuraXeducatie_outlineButton {
    width: 100%;
    border: 2px solid var(--nuraXeducatie-orange);
    background: transparent;
    color: var(--nuraXeducatie-orange);
    font-family: "Poppins", "sans-serif", "sans-serif";
    font-size: 12px;
    font-weight: 500;
    padding: 12px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    /* letter-spacing: 0.04em; */
    cursor: pointer;
    min-height: 46%;
    font-weight: 600;
}

.nuraXeducatie_outlineButton:hover {
  /* background: rgba(242, 101, 44, 0.08);
  /* transform: translateY(-1px); 
  box-shadow: 0 10px 20px rgba(242, 101, 44, 0.2); */
  cursor: pointer  ;
   background: var(--nuraXeducatie-blue);
   color : #ffffff ;
     border: 2px solid #ffffff
}

.nuraXeducatie_CTAleft:hover,
.nuraXeducatie_CTAright:hover {
 /* transform: scale(1.03); */
  font-weight: bold;
  font-size: 12;
  box-shadow: 0 8px 18px rgba(0, 178, 227, 0.35);

}

.nuraXeducatie_action1:hover,
.nuraXeducatie_action2:hover,
.nuraXeducatie_action3:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.nuraXeducatie_action1:hover .nuraXeducatie_actionImage,
.nuraXeducatie_action2:hover .nuraXeducatie_actionImage,
.nuraXeducatie_action3:hover .nuraXeducatie_actionImage {
  transform: scale(1.01);
}

.nuraXeducatie_action1:hover .nuraXeducatie_popupText,
.nuraXeducatie_action2:hover .nuraXeducatie_popupText,
.nuraXeducatie_action3:hover .nuraXeducatie_popupText {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nuraXeducatie_popupToggle:checked ~ .nuraXeducatie_popupText {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nuraXeducatie_action1:hover .nuraXeducatie_CTAs,
.nuraXeducatie_action2:hover .nuraXeducatie_CTAs,
.nuraXeducatie_action3:hover .nuraXeducatie_CTAs {
  background: var(--nuraXeducatie-blue)
  
}

@media (max-width: 1300px) {
	.nuraXeducatie_col1Block1{
  width:100%;
    
}
	.nuraXeducatie_section {
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}

  .nuraXeducatie_container {
    flex-direction: column;
	  height: 100%;
  }

	.nuraXeducatie_column1{
		        flex: 1 1 100%;
        height: 100%;
        max-width: 90%;
		width:90%;
      justify-content:flex-start;
        margin: 0 auto;

	}
  .nuraXeducatie_column2 {
    flex: 1 1 100%;
	  height:100%;
	   min-height: 120px;
    justify-content: flex-end;
  }

  .nuraXeducatie_column2 {
   
  }

  .nuraXeducatie_actions {
  justify-content: center !important;
  /* gap: 16px; */
}
}
@media (max-width: 544px) {
    .ast-hfb-header .site-footer {
        padding-top: 0px  !important;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 0px  !important;
    }
}
@media (max-width: 1000px) {
	.nuraXeducatie_section {
  height : 100%;
}
	
}

@media (max-width: 600px) {
	
  .parent1 {
	  	margin:0px 0px !important;
	  background:red;
	  border:1px solid green
   
	}
	    .ast-hfb-header .site-footer {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
       margin: 0px 0px !important;
    }
}
}


@media (max-width: 700px) {
	.nuraXeducatie_section {
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
		padding: 12px 16px;
}
	
 

  .nuraXeducatie_column1 {
    padding: 22px;
  }

  .nuraXeducatie_action1,
  .nuraXeducatie_action2,
  .nuraXeducatie_action3 {
    flex: 1 1 100%;
  }
    .nuraXeducatie_action1, .nuraXeducatie_action2, .nuraXeducatie_action3 {
max-width: 100% !important;

}

    .nuraXeducatie_popupText {
     width: 100%;

}

.nuraXeducatie_CTAleft,
.nuraXeducatie_CTAright {

  /* font-size: 8px; */
  font-weight: 500;

}

.nuraXeducatie_col1Block3{
    width: 100%;
    
    align-self:center;
    margin-top: auto;
}

}

@media (min-width: 922px) {
    .site-content .ast-container {
        display: block !important;
        width: 100%;
    }



}
