.callout_banner {
  width: calc(100% - 48px);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  border-radius: 32px;
  margin: 24px auto 64px auto;
}
.callout_banner .callout_inner_container {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.callout_banner .callout_inner_container h2 {
  margin-bottom: 32px;
}
.callout_banner .callout_inner_container .ctas_holder {
  display: flex;
  gap: 16px;
}
.callout_banner .content {
  width: 624px;
  max-width: 100%;
  height: 273px;
  padding: 27px;
  background-size: cover;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.callout_banner .content .bg_mobile {
  display: none;
}
.callout_banner .content .bg_desktop {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  z-index: 9;
}
.callout_banner .content h3 {
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 30px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 10;
}
.callout_banner .content .line {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 10;
}
.callout_banner .content .desc {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 10;
}
.callout_banner .content .desc span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #f7f7f8;
  opacity: 0.6;
}

@media screen and (max-width: 1280px) {
  .callout_banner .callout_inner_container {
    flex-direction: column;
    gap: 64px;
  }
}
@media screen and (max-width: 768px) {
  .callout_banner {
    width: calc(100% - 16px) !important;
    padding: 40px 0;
    border-radius: 16px;
  }
  .callout_banner .callout_inner_container {
    gap: 32px;
  }
  .callout_banner .callout_inner_container .content {
    background-size: 100% 327px;
  }
  .callout_banner .callout_inner_container .content h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .callout_banner .bg_mobile {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    z-index: 9;
    display: block !important;
  }
  .callout_banner .bg_desktop {
    display: none;
  }
  .callout_banner .ctas_holder {
    flex-direction: column;
  }
}