.aot-externalform {
  display: grid;
  column-gap: 24px;
}
.aot-externalform > iframe {
  grid-column: 1 / -1;
}
/* Mobile */
@media (max-width: 319px) {
  .aot-externalform {
    grid-template-columns: repeat(4, 1fr);
    height: 1238px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .aot-externalform {
    grid-template-columns: repeat(4, 1fr);
    height: 1191px;
  }
}
/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .aot-externalform {
    grid-template-columns: repeat(12, 1fr);
    height: 1107px;
  }
}
/* Desktop */
@media (min-width: 1024px) and (max-width: 1439px) {
  .aot-externalform {
    grid-template-columns: repeat(12, 1fr);
    height: 1106px;
  }
}
@media (min-width: 1440px) and (max-width: 50000px) {
  .aot-externalform {
    grid-template-columns: repeat(12, 71px);
    height: 1073px;
  }
}
