body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
.popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999996;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup {
  pointer-events: auto;
  background: #fff;
  box-shadow: 0 13px 45px 0 rgba(0, 0, 0, 0.5);
}
.popup .popup-cross {
  position: relative;
  float: right;
}
.popup .popup-cross:hover:after {
  background-color: #fff;
}
.popup .popup-cross:after {
  position: absolute;
  width: 37px;
  height: 37px;
  background-color: #FBF6F0;
  transition: background-color 200ms ease-in-out;
  z-index: 99999997;
  content: "";
  background-image: url("/assets/svg/cross.svg");
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: -50px;
  margin-top: 10px;
  border-radius: 999px;
}
.popup h4 {
  color: #384D57;
  font-size: 36px;
  font-weight: bold;
  line-height: 42px;
  text-align: center;
}
.popup h5 {
  font-size: 49px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  .popup h5 {
    font-size: 25px;
    margin-bottom: 8px;
  }
}
.popup p {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

.popup-video {
  position: relative;
  width: min(1200px, 92vw);
  max-width: 92%;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.25);
  overflow: visible;
}
@media (max-width: 991.98px) {
  .popup-video {
    padding: 12px;
    border-radius: 12px;
  }
}

.popup-video-iframe-container {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.popup-video-iframe-container iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.popup-video-close {
  position: fixed;
  top: 26px;
  right: 29px;
  z-index: 99999998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
.popup-video-close span,
.popup-video-close span::after {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: #242431;
}
.popup-video-close span {
  transform: rotate(45deg);
}
.popup-video-close span::after {
  transform: rotate(90deg);
}
@media (max-width: 991.98px) {
  .popup-video-close {
    top: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
  .popup-video-close span,
  .popup-video-close span::after {
    width: 24px;
  }
}

/*# sourceMappingURL=video-popup.css.map */
