@charset "UTF-8";
.hero_background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 100px 100px;
}

.hero_info_block {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  bottom: 80px;
}

.hero_info_block_inner {
  margin: 0 30px;
  background: #5F8ECA;
  padding: 80px 100px;
  border-radius: 20px;
}

.hero_content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.hero_title {
  font-family: "Clash Grotesk", sans-serif;
  margin: 0;
  font-weight: 400;
  font-size: 66px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  padding: 320px 30px 280px;
  max-width: 660px;
  line-height: 80px;
}
.hero_title strong {
  font-weight: 500;
}
.hero_title p {
  margin: 0;
}

.hero_info_content {
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 21px;
  line-height: 35px;
}

.hero_info_button {
  background-color: white;
  color: #5F8ECA;
  font-family: "Open Sans", sans-serif;
  padding: 12px 20px 12px 24px;
  display: inline-block;
  border-radius: 100px;
  text-decoration: unset;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 30px;
  position: relative;
  overflow: hidden; /* Verbergt het pijltje als het buiten de button is */
  display: inline-flex;
  align-items: center;
  transition: 0.3s all;
  border: 1px solid white;
}
.hero_info_button:hover {
  background-color: #5F8ECA;
  color: white;
  border: 1px solid white;
  transition: 0.3s all;
}
.hero_info_button:hover svg {
  background-color: white;
  transition: 0.3s all;
  fill: #5F8ECA;
}
.hero_info_button svg {
  max-width: 18px;
  width: 100%;
  height: 18px;
  background: #5F8ECA;
  border-radius: 100px;
  padding: 2px;
  fill: white;
  margin-left: 10px;
  position: relative;
  top: 0px;
  transition: transform 0.3s ease;
}

.hero_info_button svg path {
  transition: transform 0.3s ease;
  transform: translateX(0);
}

/* Hover effect: alleen de path animeert */
.hero_info_button:hover svg path {
  animation: arrowSlideLeftRight 0.3s ease forwards;
}

/* Hover out effect: alleen de path animeert */
.hero_info_button:not(:hover) svg path {
  animation: arrowSlideRightLeft 0.3s ease forwards;
}

.hero_info_block_inner.small {
  margin-bottom: -80px;
}

.hero_background.small .hero_title {
  padding: 220px 30px 180px;
}

@keyframes arrowSlideLeftRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-100%);
    opacity: 0;
  }
  51% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrowSlideRightLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 900px) and (min-width: 600px) {
  .hero_title {
    line-height: 60px;
    font-size: 46px;
    padding: 210px 30px;
    max-width: 500px;
  }
  .hero_background {
    border-radius: 0 0 50px 50px;
  }
  .hero_info_block_inner {
    padding: 60px 70px;
  }
  .hero_background.small .hero_title {
    padding: 190px 30px 140px;
  }
}
@media only screen and (max-width: 599px) and (min-width: 400px) {
  .hero_title {
    line-height: 44px;
    font-size: 36px;
    padding: 195px 30px 135px;
    max-width: 380px;
  }
  .hero_background {
    border-radius: 0 0 30px 30px;
  }
  .hero_info_block_inner {
    padding: 45px 40px;
  }
  .hero_info_content {
    font-size: 18px;
    line-height: 30px;
  }
  .hero_background.small .hero_title {
    padding: 190px 30px 140px;
  }
	
	.hero_info_block {
		bottom: 50px;
	}
}
@media only screen and (max-width: 399px) {
  .hero_title {
    line-height: 40px;
    font-size: 32px;
	padding: 195px 30px 130px;
    max-width: 380px;
  }
  .hero_background {
    border-radius: 0 0 30px 30px;
  }
  .hero_info_block_inner {
    padding: 45px 40px;
    margin: 0 15px;
  }
  .hero_info_content {
    font-size: 18px;
    line-height: 30px;
  }
  .hero_background.small .hero_title {
    padding: 180px 30px 140px;
  }
	
	.hero_info_block {
		bottom: 50px;
	}
}
/* Breadcrumb styling */
.hero_breadcrumb_wrapper {
  padding: 2rem 30px 0rem;
  margin-bottom: -30px;
}

.hero_breadcrumb {
  max-width: 1220px;
  margin: 0 auto;
}

.breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.breadcrumb_list li {
  display: flex;
  align-items: center;
  font-family: "Clash Grotesk", sans-serif;
}

.breadcrumb_list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: #6c757d;
  font-size: 1.2rem;
}

.breadcrumb_list a {
  color: #5F8ECA;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: "Clash Grotesk", sans-serif;
}

.breadcrumb_list a:hover {
  color: #5F8ECA;
  text-decoration: underline;
}

.breadcrumb_back_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.breadcrumb_back_link svg {
  fill: currentColor;
  transition: transform 0.2s ease;
}

.breadcrumb_back_link:hover svg {
  transform: translateX(-3px);
}

.breadcrumb_list li:last-child {
  color: #6c757d;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .hero_breadcrumb_wrapper {
    padding: 1.5rem 30px 0rem;
    margin-bottom: -20px;
  }
  .breadcrumb_list {
    font-size: 0.875rem;
  }
}/*# sourceMappingURL=hero_block.css.map */