.iframe-module {
  background: radial-gradient(125.83% 224.34% at 103.19% 5.02%, #658A90 7.52%, #BFD6FF 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}
.iframe-module__frame-wrap {
  position: relative;
  width: 100%;
}
.iframe-module__iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: var(--iframe-module-ratio, 16/9);
  border: 0;
}
.iframe-module--fixed-height .iframe-module__iframe {
  aspect-ratio: auto;
  height: var(--iframe-module-height, 450px);
}
.iframe-module__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: clamp(16px, 4%, 40px) 20px;
  max-width: 620px;
}
@media screen and (min-width: 992px) {
  .iframe-module__overlay {
    width: 100%;
  }
}
.iframe-module__overlay--hidden {
  display: none;
}
@media screen and (min-width: 992px) {
  .iframe-module__overlay {
    padding: 40px;
  }
}
.iframe-module__overlay p {
  font-size: 14px;
  margin-bottom: 12px;
}
@media screen and (min-width: 992px) {
  .iframe-module__overlay p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.iframe-module__overlay-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
}
.iframe-module__overlay-icon h4, .iframe-module__overlay-icon .h4 {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .iframe-module__overlay-icon {
    flex-direction: row;
    column-gap: 10px;
  }
}
.iframe-module__overlay-icon svg {
  width: 30px;
  height: 30px;
}

.iframe-module.iframe-module--inline {
  padding: 0;
  margin-bottom: 15px;
}
.iframe-module.iframe-module--inline .iframe-module__frame-wrap {
  display: grid;
}
.iframe-module.iframe-module--inline .iframe-module__iframe,
.iframe-module.iframe-module--inline .iframe-module__overlay {
  grid-area: 1/1;
}
.iframe-module.iframe-module--inline .iframe-module__iframe {
  align-self: start;
}
.iframe-module.iframe-module--inline .iframe-module__overlay {
  position: static;
  transform: none;
  justify-self: center;
  align-self: center;
}

/*# sourceMappingURL=iframe-module.css.map */
