.info_image_usp_wrap {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 0px 30px;
}

.info_image_usp_content {
  max-width: 480px;
  width: 100%;
}

.info_image_usp_media {
  margin: 0;
  margin-left: auto;
}

.info_image_usp_media img {
  max-width: 600px;
  height: 525px;
  margin-right: -100px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
}

.info_image_usp_title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
}

.info_image_usp_text {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  color: #3a3a3a;
}

.info_image_usp_button {
  background-color: #5F8ECA;
  color: white;
  font-family: "Open Sans", sans-serif;
  padding: 16px 30px 15px 30px;
  display: inline-block;
  border-radius: 100px;
  text-decoration: unset;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  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 #5F8ECA;
  margin-top: 10px;
}
.info_image_usp_button:hover {
  background-color: white;
  color: #5F8ECA;
  border: 1px solid #5F8ECA;
  transition: 0.3s all;
}
.info_image_usp_button:hover svg {
  background-color: #1F2C4C;
  transition: 0.3s all;
  fill: white;
}
.info_image_usp_button svg {
  max-width: 18px;
  width: 100%;
  height: 18px;
  background: white;
  border-radius: 100px;
  padding: 2px;
  fill: #1F2C4C;
  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;
}

@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;
  }
}
.info_image_usp_usps {
  width: 100%;
  border-radius: 0 10px 10px 0;
  background-color: #5F8ECA;
  padding: 50px 0;
}

.info_image_usp_item {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.info_image_usp_label {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: white;
}

.info_image_usp_icon img {
  max-width: 34px;
  width: 100%;
  max-height: 34px;
  height: 100%;
}

.info_image_usp_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.info_image_usp_wrapper {
  margin-right: 200px;
  position: relative;
  bottom: 50px;
  z-index: 0;
}

@media only screen and (max-width: 1500px) {
  .info_image_usp_media {
    padding-right: 50px;
  }
  .info_image_usp_media img {
    margin-right: unset;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 800px) {
  .info_image_usp_wrap {
    gap: 50px;
    padding-bottom: 30px;
  }
  .info_image_usp_media {
    max-width: 60%;
  }
  .info_image_usp_media img {
    height: 400px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .info_image_usp_wrapper {
    bottom: unset;
    margin-right: 100px;
  }
  .info_image_usp_content {
    max-width: 50%;
    width: 50%;
  }
}
@media only screen and (max-width: 799px) and (min-width: 500px) {
  .info_image_usp_wrap {
    gap: 50px;
    padding-bottom: 30px;
    flex-direction: column;
  }
  .info_image_usp_media {
    max-width: 100%;
    width: 100%;
  }
  .info_image_usp_media img {
    height: 400px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 100%;
  }
  .info_image_usp_wrapper {
    bottom: unset;
    margin-right: 50px;
  }
  .info_image_usp_content {
    max-width: 100%;
    width: 100%;
  }
  .info_image_usp_section {
    padding-right: 60px;
  }
}
@media only screen and (max-width: 499px) {
  .info_image_usp_wrap {
    gap: 50px;
    padding-bottom: 30px;
    flex-direction: column;
  }
  .info_image_usp_media {
    max-width: 100%;
    width: 100%;
  }
  .info_image_usp_media img {
    height: 300px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 100%;
  }
  .info_image_usp_wrapper {
    bottom: unset;
    margin-right: -70px;
  }
  .info_image_usp_content {
    max-width: 100%;
    width: 100%;
  }
  .info_image_usp_section {
    padding-right: 60px;
  }
  .info_image_usp_item {
    align-items: flex-start;
    flex-direction: column;
  }
  .info_image_usp_item {
    padding-right: 50px;
  }
}/*# sourceMappingURL=info_image_usp.css.map */