/* .popup */
.popup {
  display: block;
  position: fixed;
  z-index: 103;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup.video--popup .popup__inner{
  padding: 0 0 0 0;
}

.popup::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--black);
  opacity: 0.3;
}

.popup__content__scroll {
  /* Note: No plain CSS equivalent for this media query */
  /* Assuming it's not necessary for plain CSS version */
}

.popup__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: flex-start;
  margin: auto;
  max-width: 58%;
  max-height: 80%;
  width: 100%;
  height: auto;
  background-color: var(--white);
  padding: 0rem;
  border-radius: 0rem;
}

@media (max-width: 1199px) {
  .popup__inner {
    max-width: 74%;
  }
}

@media (max-width: 991px) {
  .popup__inner {
    max-width: calc(100% - 4rem);
    max-height: 80%;
    padding: 3rem;
  }
}

.popup__video {
  padding-top: 56.25%;
  height: 0;
  background-color: var(--black);
}

.popup__video iframe,
.popup__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  opacity: 0;
}

.popup__video iframe.video--loaded,
.popup__video video.video--loaded {
  z-index: 2;
  opacity: 1;
}

.popup__close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background-color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transform: translate(50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__close svg {
  width: 1.6rem;
  height: 1.6rem;
  transform: rotate(45deg);
  filter: brightness(0);
}

@media (max-width: 991px) {
  .popup__close {
    top: 1.5rem;
    right: 1.5rem;
  }
}

.popup__close svg {
  width: 1.6rem;
  height: 1.6rem;
}

/* .klant-info */
.klant-info {
  position: relative;
}

.klant-info__logo {
  position: relative;
  margin-bottom: 4rem;
}

.klant-info__sector {
  position: relative;
  margin-bottom: 2rem;
}

.klant-info__text {
  position: relative;
  margin-bottom: 3rem;
  max-width: 90%;
}

.klant-info__text p {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0;
}

.klant-info__contact {
  position: relative;
}

/* .contact-person */
.contact-person {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 575px) {
  .contact-person {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-person__image {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin-right: 2rem;
}

@media (max-width: 575px) {
  .contact-person__image {
    margin-bottom: 1rem;
  }
}

.contact-person__image .image {
  border-radius: 0rem;
}

.contact-person__info p {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0;
}

.contact-person__info span {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
