.page-callout {
  align-items: center;
  border-radius: 5px;
  border: 2px solid #DB7C00;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 24px 0;
  position: relative;
  text-align: center;
}

.page-callout--small {
  min-height: 250px;
}

.page-callout--medium {
  min-height: 345px;
}

@media (min-width: 1024px) {
  .page-callout {
    padding: 0;
  }

  .page-callout--add-padding {
    height: 325px;
    min-width: 568px;
    padding: 24px 0;
  }

  .page-callout--larger-gap {
    padding: 77px 0 40px;
  }
}

@media (min-width: 1200px) {
  .page-callout {
    min-width: 550px;
  }
}

.page-callout__body {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .page-callout--larger-gap .page-callout__body {
    gap: 27px;
  }
}

.page-callout .image-desktop {
  display: block;
}

.page-callout.one-col-layout-display .page-callout__body {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .page-callout.one-col-layout-display {
    padding: 10px 0;
  }

  .page-callout.one-col-layout-display .page-callout__body {
    flex-direction: row;
    gap: 55px;
    justify-content: space-between;
  }

   .page-callout.one-col-layout-display .page-callout__image {
    width: 36%;
  }

  .page-callout.one-col-layout-display .page-callout__image img {
    height: 100%;
    width: 100%;
  }
}

.page-callout__title-button {
  text-align: center;
}

.page-callout.one-col-layout-display .page-callout__title h2 {
  font-size: 2rem;
  margin: 0;
}

@media (min-width: 1024px) {
  .page-callout__title-button {
    text-align: left;
    width: 53%;
  }
}

.page-callout__title {
  color: #028447;
  font-family: 'FuturaPTBold', Futura, Arial, Helvetica, sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 auto;
}

.page-callout__title--small.page-callout__title--small-20 {
  font-size: 20px;
}

.page-callout__title--small.page-callout__title--small-24 {
  font-size: 24px;
}

.page-callout.one-col-layout-display .page-callout__image {
  margin: 0;
}

.page-callout__image {
  width: 100%;
}

.page-callout__description p {
  color: #58595B;
  font-family: 'FuturaPTBold', Futura, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto;
  max-width: 482px;
}

.page-callout__description--center {
  margin: 0 auto;
  width: 90%;
}

.page-callout__description--center p {
  font-family: 'FuturaPTBook', Futura, Arial, Helvetica, sans-serif;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .page-callout__description p {
    margin: inherit;
  }
}

.page-callout__button + .page-callout__button {
  margin-top: 10px;
}

.page-callout.one-col-layout-display .page-callout__button {
  margin-top: 10px;
}

.page-callout__button--green {
  align-items: center;
  background-color: #028447;
  border: none;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: 'FuturaPTBold', Futura, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  line-height: 38px;
  margin: 0 auto;
  min-width: 200px;
  padding: 5px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: max-content;
}

.page-callout__button--green:visited {
  color: #fff;
  text-decoration: none;
}

.page-callout__button--green::after {
  background: url("../../dist/img/cta-arrow.png") no-repeat right center;
  background-size: contain;
  content: '';
  display: inline-block;
  filter: brightness(0) invert(1);
  height: 23px;
  width: 31px;
}

.page-callout__video-modal {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.modal-open {
  overflow: hidden;
}

.page-callout__video-modal.modal-open {
  display: block;
  left: 50%;
  opacity: 1;
  pointer-events: auto;
  position: fixed;
  right: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  visibility: visible;
  width: 100vw;
  z-index: 99;
}

.page-callout__video-modal-overlay.modal-open {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 98;
}

.page-callout__video-modal .page-callout__video-modal-container {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  height: 30vh;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  width: 60%;
}

@media (min-width: 1024px) {
  .page-callout__video-modal .page-callout__video-modal-container {
    height: 50vh;
  }
}

.page-callout__video-modal .page-callout__video-modal-container .close-video-modal {
  background-image: url("../../dist/img/icon_close.svg");
  background-size: contain;
  content: '';
  cursor: pointer;
  height: 20px;
  position: absolute;
  right: 12px;
  top: 11px;
  width: 20px;
  z-index: 99;
}

.page-callout__video-content {
  display: block;
  height: 100%;
  margin: 0 auto;
  position: relative;
  width: 90%;
}

#page-callout__video-modal-iframe {
  border: unset;
}
