#masthead {
  position: sticky;
  top: 0;
  z-index: 11;
  box-shadow: 0 4px 24px 0 rgba(35, 43, 101, 0.05);
  background: white;
}
#masthead:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: white;
  z-index: 2;
}
#masthead .nav-container {
  max-width: 1650px;
  padding: 20px 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
@media (max-width: 800px) {
  #masthead .nav-container {
    padding: 16px 16px;
    flex-wrap: wrap;
  }
}
#masthead .nav-container .site-branding .logo {
  max-width: 146px;
  display: block;
}
@media (max-width: 800px) {
  #masthead .nav-container .site-branding .logo {
    max-width: 96px;
  }
}
#masthead .nav-container .site-branding .logo img {
  width: 100%;
}
@media (max-width: 800px) {
  #masthead .nav-container #site-navigation {
    width: 100%;
    margin-top: 10px;
  }
}
#masthead .nav-container #site-navigation ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
#masthead .nav-container #site-navigation ul li a {
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
  line-height: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s all ease;
  display: inline-block;
  text-align: center;
}
#masthead .nav-container #site-navigation ul li:first-of-type a {
  background: linear-gradient(180deg, #DF1F26 28.75%, #DF1F26 132.5%);
}
#masthead .nav-container #site-navigation ul li:first-of-type a:hover {
  background: linear-gradient(180deg, #DF1F26 28.75%, #791115 132.5%);
}
#masthead .nav-container #site-navigation ul li:last-of-type a {
  background: linear-gradient(180deg, #232B65 28.75%, #232B65 132.5%);
}
#masthead .nav-container #site-navigation ul li:last-of-type a:hover {
  background: linear-gradient(180deg, #232B65 28.75%, #000 132.5%);
}
@keyframes move-blob-banner {
  0% {
    transform: translate(0, -260%) scale(1);
  }
  100% {
    transform: translate(0, 150%) scale(1);
  }
}
@keyframes top-banner {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.top-banner-wrap {
  position: absolute;
  z-index: 1;
  top: 100%;
  animation: top-banner 2s linear;
  width: 100%;
  background: #000440;
}
.top-banner {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3em;
  padding: 28px 62px;
  max-width: 1650px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .top-banner {
    flex-direction: column;
    padding: 16px;
  }
}
.top-banner > * {
  position: relative;
  z-index: 2;
}
.top-banner .blobs {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: move-blob-banner 10s linear infinite;
}
.top-banner .blobs::before,
.top-banner .blobs::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: -10%;
  width: 100%;
  height: 100%;
  filter: blur(80px);
  width: 60%;
  background-image: radial-gradient(circle, rgb(223, 31, 38) 20%, transparent 80%);
}
.top-banner .blobs::after {
  left: auto;
  right: 10%;
  transform: translateY(80%);
}
.top-banner .content {
  flex-grow: 1;
  margin-right: 55px;
}
@media (max-width: 800px) {
  .top-banner .content {
    margin-right: 0;
  }
}
.top-banner .content h2 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3em;
  margin: 0 0 8px 0;
}
@media (max-width: 800px) {
  .top-banner .content h2 {
    font-size: 20px;
    margin-right: 46px;
  }
}
.top-banner .content p {
  margin: 0;
}
.top-banner .cta {
  border-radius: 8px;
  background: #DF1F26;
  display: block;
  flex-shrink: 1;
  padding: 16px 24px;
  line-height: 1em;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .top-banner .cta {
    font-size: 15px;
  }
}
.top-banner .cta:hover {
  background: linear-gradient(180deg, #DF1F26 28.75%, #791115 132.5%);
}
.top-banner .close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M18 6L6 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M6 6L18 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-position: center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgb(255, 255, 255);
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  width: 40px;
  height: 40px;
}
@media (max-width: 800px) {
  .top-banner .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
}
.top-banner .close:hover {
  opacity: 0.75;
}
@media (max-width: 800px) {
  body:has(.hero-block.layout-large) #site-navigation {
    display: none;
  }
}
@media (max-width: 800px) {
  body:not(:has(.hero-block.layout-large)) #masthead {
    position: relative;
    top: auto;
  }
}
#footer {
  background: #232B65;
}
#footer .footer-container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 24px;
}
@media (max-width: 800px) {
  #footer .footer-container {
    padding: 60px 24px;
  }
}
@media (max-width: 992px) {
  #footer .footer-container {
    text-align: center;
  }
}
#footer .footer-container .site-info .number-container {
  position: relative;
  display: inline-block;
}
#footer .footer-container .site-info .number-container h6 {
  color: transparent;
  font-family: "Gothic A1";
  font-size: 100px;
  font-style: normal;
  font-weight: 900;
  line-height: 112%;
  margin: 0;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  #footer .footer-container .site-info .number-container h6 {
    font-size: 48px;
  }
}
#footer .footer-container .site-info .number-container h6 {
  background-color: white;
  background-image: radial-gradient(circle 80px at var(--ball-x, -100px) 50%, #DF1F26 90%, transparent 91%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: var(--ball-opacity, 1);
  transition: opacity 0.3s ease-out;
}
#footer .footer-container .site-info p {
  color: #FFF;
  font-family: "Gothic A1";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  max-width: 1334px;
}
@media (max-width: 992px) {
  #footer .footer-container .site-info p {
    font-size: 16px;
  }
}
#footer .footer-container .site-info .ctas {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  #footer .footer-container .site-info .ctas {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 992px) {
  #footer .footer-container .site-info .ctas {
    justify-content: center;
  }
}
#footer .footer-container .site-info .ctas a {
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
  line-height: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s all ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}
@media (max-width: 540px) {
  #footer .footer-container .site-info .ctas a {
    display: flex;
    justify-content: center;
    height: 48px;
  }
}
#footer .footer-container .site-info .ctas a:first-of-type {
  background: linear-gradient(180deg, #DF1F26 28.75%, #DF1F26 132.5%);
}
#footer .footer-container .site-info .ctas a:first-of-type:hover {
  background: linear-gradient(180deg, #DF1F26 28.75%, #791115 132.5%);
}
#footer .footer-container .site-info .ctas a:last-of-type {
  background: linear-gradient(180deg, white 28.75%, white 132.5%);
  color: #232B65;
}
#footer .footer-container .site-info .ctas a:last-of-type:hover {
  background: linear-gradient(180deg, #232B65 28.75%, #000 132.5%);
  color: white;
}
#footer .footer-container .footer-navigation {
  margin-top: 47px;
  display: flex;
  justify-content: space-between;
  color: white;
}
@media (max-width: 570px) {
  #footer .footer-container .footer-navigation {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  #footer .footer-container .footer-navigation {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 16px;
  }
}
#footer .footer-container .footer-navigation .copy-right {
  font-family: "Gothic A1";
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
#footer .footer-container .footer-navigation #footer-menu {
  display: flex;
  gap: 24px;
}
#footer .footer-container .footer-navigation #footer-menu a {
  color: white;
  text-decoration: none;
  font-family: "Gothic A1";
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
#footer .footer-container .footer-navigation #footer-menu a:hover {
  text-decoration: underline;
}
@media (max-width: 400px) {
  #footer .footer-container .footer-navigation #footer-menu {
    flex-direction: column;
    gap: 10px;
  }
}
div.fluentform {
  border-radius: 24px;
  border: 4px solid #232B65;
  background: #FFF;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #232B65;
  padding: 48px;
  max-width: 1042px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  div.fluentform {
    padding: 16px 24px 40px 24px;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}
div.fluentform h2 {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 8px 0;
}
div.fluentform h3 {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  color: #111418;
}
@media (max-width: 800px) {
  div.fluentform h3 {
    font-size: 20px;
  }
}
div.fluentform p {
  font-size: 14px;
  color: #333;
}
div.fluentform .ff-custom_html p {
  margin: 12px 0;
}
div.fluentform .ff-custom_html p:first-child {
  margin-top: 0;
}
div.fluentform .ff-custom_html p:last-child {
  margin-bottom: 0;
}
div.fluentform label {
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
}
div.fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
  color: #6B7280;
}
div.fluentform .ff-el-input--label {
  margin-bottom: 4px;
}
div.fluentform .ff-el-group {
  margin-bottom: 24px;
}
div.fluentform .ff-el-group:last-child {
  margin-bottom: 0;
}
div.fluentform input, div.fluentform select, div.fluentform textarea {
  border-radius: 16px;
  border: 1px solid #D1D5DB;
  background: #FFF;
  padding: 14px 16px;
  color: #222;
  font-family: "Gothic A1", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  min-height: 50px;
}
div.fluentform input:hover, div.fluentform select:hover, div.fluentform textarea:hover {
  border-color: rgba(0, 0, 0, 0.5);
}
div.fluentform .ff-el-form-control::-moz-placeholder {
  color: #555;
}
div.fluentform .ff-el-form-control::placeholder {
  color: #555;
}
div.fluentform textarea {
  line-height: 1.3em;
  min-height: 200px;
}
div.fluentform select, div.fluentform select.ff-el-form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M6 9L12 15L18 9" stroke="%23444444" stroke-width="3"/></svg>');
  background-repeat: no-repeat, repeat;
  background-position: right 1em top 50%, 0 0;
  background-size: 18px;
  cursor: pointer;
}
div.fluentform select::-ms-expand, div.fluentform select.ff-el-form-control::-ms-expand {
  display: none;
}
div.fluentform select option, div.fluentform select.ff-el-form-control option {
  font-weight: normal;
  color: #000;
}
div.fluentform button[type=submit] {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border-radius: 8px;
  background: #DF1F26;
  padding: 16px 24px;
  text-align: center;
  color: #fff;
  line-height: 20px;
  font-size: 16px;
  font-weight: 900;
}
div.fluentform button[type=submit]:hover {
  background: linear-gradient(180deg, #DF1F26 28.75%, #791115 132.5%);
}
div.fluentform div.header {
  padding: 40px 32px;
  margin: -48px -48px 0 -48px;
}
@media (max-width: 800px) {
  div.fluentform div.header {
    margin: -16px -16px 0 -16px;
    padding: 20px 16px 20px 16px;
  }
}
div.fluentform div.header p {
  font-size: 18px;
  line-height: 1.5em;
}
div.fluentform .section-heading {
  padding-top: 48px;
  padding-bottom: 30px;
  position: relative;
  margin: 0;
}
@media (max-width: 800px) {
  div.fluentform .section-heading {
    padding-top: 20px;
    padding-bottom: 12px;
  }
}
div.fluentform .section-heading:has(span, pre) {
  padding-left: 40px;
}
div.fluentform .section-heading span, div.fluentform .section-heading pre {
  position: absolute;
  top: 48px;
  left: 0;
  width: 24px;
  height: 24px;
  background: #232B65;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 27px;
  text-align: center;
  font-family: "Gothic A1", sans-serif;
  margin: 0;
}
@media (max-width: 800px) {
  div.fluentform .section-heading span, div.fluentform .section-heading pre {
    top: 20px;
  }
}
div.fluentform div.photo-upload {
  margin-top: 24px;
  margin-bottom: 0;
}
div.fluentform div.photo-upload span.ff_upload_btn.ff-btn {
  border-radius: 8px;
  border: 2px dashed #DBE0E6;
  display: flex;
  flex-direction: column;
  height: 160px;
  padding: 24px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #232B65;
}
div.fluentform div.photo-upload span.ff_upload_btn.ff-btn p {
  margin-top: 10px;
}
div.fluentform div.photo-upload span.ff_upload_btn.ff-btn:before {
  content: "";
  background-image: url("/wp-content/themes/iacmi/resources/assets/images/camera.svg");
  width: 30px;
  height: 27px;
  display: block;
  background-size: contain;
  background-position: center;
  margin-bottom: 10px;
}
.hero-block {
  position: relative;
  height: 900px;
  overflow: hidden;
  will-change: transform, opacity, filter;
  background: rgb(10, 8, 36);
  position: sticky;
  top: 119px;
}
@media (max-width: 800px) {
  .hero-block {
    top: 63.66px;
  }
}
@media (max-width: 1100px) {
  .hero-block {
    height: 600px;
  }
}
@media (max-width: 570px) {
  .hero-block {
    height: 80vh;
  }
}
.hero-block::before, .hero-block::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: blur(80px);
  background-image: radial-gradient(circle, rgb(223, 31, 38) 0%, transparent 50%);
}
.hero-block::before {
  animation: move-blob-1 20s linear infinite;
  left: unset;
}
.hero-block::after {
  animation: move-blob-2 25s linear infinite;
  animation-delay: s;
}
.hero-block .hero-container {
  position: absolute;
  z-index: 2;
  max-width: 1538px;
  width: 100%;
  top: 50%;
  left: calc(50% + 24px);
  right: 24px;
  transform: translate(-50%, -50%);
}
@media (max-width: 800px) {
  .hero-block .hero-container {
    max-width: unset;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: unset;
    top: 0 !important;
  }
}
@media (max-height: 850px) and (max-height: 1100px) {
  .hero-block .hero-container {
    top: 35%;
  }
}
@media (max-width: 800px) {
  .hero-block .hero-container .wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.hero-block .hero-container .wrapper h1 {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  font-family: "Gothic A1";
  font-size: 292px;
  font-style: normal;
  font-weight: 900;
  line-height: 300px;
  position: relative;
  margin-bottom: -150px;
  margin-top: 0px;
  margin-left: -18px;
}
@media (max-width: 1600px) {
  .hero-block .hero-container .wrapper h1 {
    font-size: 250px;
    margin-left: -10px;
  }
}
@media (max-width: 1350px) {
  .hero-block .hero-container .wrapper h1 {
    font-size: 200px;
    margin-bottom: -230px;
  }
}
@media (max-width: 1100px) {
  .hero-block .hero-container .wrapper h1 {
    font-size: 100px;
    margin-bottom: -230px;
    line-height: 213px;
    margin-left: -5px;
  }
}
.hero-block .hero-container .wrapper h1 span {
  display: block;
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.71, 1.16), opacity 0.8s ease-out;
}
.hero-block .hero-container .wrapper h1 span:first-of-type {
  color: white;
  position: relative;
  left: 85px;
  transform: translateY(-110%);
  opacity: 0;
}
.hero-block .hero-container .wrapper h1 span:first-of-type.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1100px) {
  .hero-block .hero-container .wrapper h1 span:first-of-type {
    left: 20px;
  }
}
@media (max-width: 574px) {
  .hero-block .hero-container .wrapper h1 span:first-of-type {
    font-size: 95px;
    left: 0;
  }
}
@media (max-width: 400px) {
  .hero-block .hero-container .wrapper h1 span:first-of-type {
    font-size: 70px;
    top: 20px;
  }
}
@media (max-width: 350px) {
  .hero-block .hero-container .wrapper h1 span:first-of-type {
    font-size: 60px;
    top: 29px;
  }
}
.hero-block .hero-container .wrapper h1 span:last-of-type {
  color: #DF1F26;
  position: relative;
  top: -90px;
  left: 0;
  transform: translateY(110%);
  opacity: 0;
}
.hero-block .hero-container .wrapper h1 span:last-of-type.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1600px) {
  .hero-block .hero-container .wrapper h1 span:last-of-type {
    top: -110px;
  }
}
@media (max-width: 1350px) {
  .hero-block .hero-container .wrapper h1 span:last-of-type {
    top: -136px;
  }
}
@media (max-width: 574px) {
  .hero-block .hero-container .wrapper h1 span:last-of-type {
    font-size: 67px;
    top: -155px;
  }
}
@media (max-width: 400px) {
  .hero-block .hero-container .wrapper h1 span:last-of-type {
    font-size: 50px;
  }
}
@media (max-width: 350px) {
  .hero-block .hero-container .wrapper h1 span:last-of-type {
    font-size: 40px;
  }
}
.hero-block .hero-container .wrapper h2 {
  color: #FFF;
  font-family: "Gothic A1";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-top: 20px;
}
@media (max-width: 1350px) {
  .hero-block .hero-container .wrapper h2 {
    max-width: 95%;
  }
}
@media (max-width: 1100px) {
  .hero-block .hero-container .wrapper h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-top: 40px;
  }
}
@media (max-width: 574px) {
  .hero-block .hero-container .wrapper h2 {
    margin-top: 0px;
  }
}
@media (max-width: 350px) {
  .hero-block .hero-container .wrapper h2 {
    margin-top: 0px;
    font-size: 16px;
  }
}
.hero-block .hero-container .wrapper #site-navigation {
  display: none;
  z-index: 1;
}
@media (max-width: 800px) {
  .hero-block .hero-container .wrapper #site-navigation {
    display: block;
    position: relative;
  }
}
.hero-block .hero-container .wrapper #site-navigation ul {
  list-style: none;
  display: flex;
  gap: 24px;
  padding-left: 0px;
  margin-top: 40px;
}
@media (max-width: 540px) {
  .hero-block .hero-container .wrapper #site-navigation ul {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
  }
}
.hero-block .hero-container .wrapper #site-navigation ul li a {
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
  line-height: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s all ease;
}
@media (max-width: 540px) {
  .hero-block .hero-container .wrapper #site-navigation ul li a {
    display: flex;
    justify-content: center;
  }
}
.hero-block .hero-container .wrapper #site-navigation ul li:first-of-type a {
  background: linear-gradient(180deg, #DF1F26 28.75%, #DF1F26 132.5%);
}
.hero-block .hero-container .wrapper #site-navigation ul li:first-of-type a:hover {
  background: linear-gradient(180deg, #DF1F26 28.75%, #791115 132.5%);
}
.hero-block .hero-container .wrapper #site-navigation ul li:last-of-type a {
  background: linear-gradient(180deg, #232B65 28.75%, #232B65 132.5%);
}
.hero-block .hero-container .wrapper #site-navigation ul li:last-of-type a:hover {
  background: linear-gradient(180deg, #232B65 28.75%, #000 132.5%);
}
.hero-block.layout-regular {
  height: 600px;
  position: relative;
  top: auto;
}
@media (max-width: 800px) {
  .hero-block.layout-regular {
    height: auto;
    padding: 70px 0;
  }
}
.hero-block.layout-regular:after, .hero-block.layout-regular:before {
  display: none;
}
.hero-block.layout-regular .hero-container {
  left: 50%;
  top: 50% !important;
  max-width: 850px;
}
@media (max-width: 800px) {
  .hero-block.layout-regular .hero-container {
    left: auto;
    top: auto !important;
    display: block;
    position: relative;
  }
  .hero-block.layout-regular .hero-container #site-navigation {
    display: none;
  }
}
.hero-block.layout-regular .hero-container .wrapper h1 {
  font-size: 100px;
  line-height: 1em;
  text-align: center;
  margin: 0;
}
@media (max-width: 800px) {
  .hero-block.layout-regular .hero-container .wrapper h1 {
    font-size: 48px;
    margin-bottom: 12px;
  }
}
@media (max-width: 410px) {
  .hero-block.layout-regular .hero-container .wrapper h1 {
    font-size: 36px;
  }
}
.hero-block.layout-regular .hero-container .wrapper h1 span, .hero-block.layout-regular .hero-container .wrapper h1 span:first-of-type, .hero-block.layout-regular .hero-container .wrapper h1 span:last-of-type {
  color: #fff;
  transform: none;
  opacity: 1;
  top: auto;
  left: auto;
  font-size: inherit;
}
.hero-block.layout-regular .hero-container .wrapper h2 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
.hero-block.has-background-image .bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
}
.hero-block.has-background-image .bg:after {
  background: linear-gradient(0deg, rgba(35, 43, 101, 0.9) 0%, rgba(35, 43, 101, 0.9) 100%);
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-block .background-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-block .background-video-container::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(130deg, #232B65, #232B65 90%);
  opacity: 0.7;
}
.hero-block .background-video-container {
  overflow: hidden;
}
.hero-block .background-video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 150vw;
  height: 300vw;
}
@media (max-width: 1100px) {
  .hero-block .background-video-container iframe {
    width: 300vw;
  }
}
@media (max-width: 350px) {
  .hero-block .background-video-container iframe {
    width: 350vh;
  }
}
@keyframes move-blob-1 {
  0% {
    transform: translate(-500vw, -350vh) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-20vw, -50vh) scale(1.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-30vw, 110vh) scale(2);
    opacity: 0.6;
  }
}
@keyframes move-blob-2 {
  0% {
    transform: translate(-200vw, -250vh) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-20vw, -50vh) scale(1.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-30vw, 110vh) scale(2);
    opacity: 0.6;
  }
}
.programs {
  background: white;
  z-index: 1;
  position: relative;
}
.programs .program-container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 24px;
}
@media (max-width: 764px) {
  .programs .program-container {
    padding: 30px 24px;
  }
}
.programs .content {
  max-width: 794px;
}
.programs .content .number-container {
  position: relative;
  display: inline-block;
}
.programs .content .number-container h3 {
  color: transparent;
  font-family: "Gothic A1";
  font-size: 100px;
  font-style: normal;
  font-weight: 900;
  line-height: 112%;
  margin: 0;
  margin-bottom: 10px;
  background-color: #232B65;
  background-image: radial-gradient(circle 80px at var(--ball-x, -100px) 50%, #DF1F26 90%, transparent 91%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: var(--ball-opacity, 1);
  transition: opacity 0.3s ease-out;
}
@media (max-width: 764px) {
  .programs .content .number-container h3 {
    font-size: 84px;
  }
}
@media (max-width: 450px) {
  .programs .content .number-container h3 {
    font-size: 70px;
  }
}
@media (max-width: 350px) {
  .programs .content .number-container h3 {
    font-size: 50px;
  }
}
.programs .content h4 {
  color: #232B65;
  font-family: "Gothic A1";
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  margin: 0px;
  margin-bottom: 16px;
}
@media (max-width: 764px) {
  .programs .content h4 {
    font-size: 24px;
  }
}
.programs .content p {
  color: #000;
  font-family: "Gothic A1";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0px;
}
@media (max-width: 764px) {
  .programs .content p {
    font-size: 16px;
  }
}
.programs .cards {
  display: flex;
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 764px) {
  .programs .cards {
    flex-direction: column;
    margin-top: 16px;
  }
}
.programs .cards .card {
  max-width: 753px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.programs .cards .card .top {
  height: 384px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media (max-width: 992px) {
  .programs .cards .card .top {
    height: 250px;
  }
}
@media (max-width: 500px) {
  .programs .cards .card .top {
    height: 198px;
  }
}
.programs .cards .card .top:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.programs .cards .card .top .logo {
  max-height: 50px;
  z-index: 1;
}
@media (max-width: 764px) {
  .programs .cards .card .top .logo {
    font-size: 47px;
  }
}
.programs .cards .card .top .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.programs .cards .card .top .text {
  margin: 0px;
  max-width: 360px;
  color: white;
  text-align: center;
  font-family: "Gothic A1";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 10px;
  z-index: 1;
}
@media (max-width: 992px) {
  .programs .cards .card .top .text {
    font-size: 18px;
  }
}
.programs .cards .card .bottom {
  padding: 60px;
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .programs .cards .card .bottom {
    padding: 24px;
  }
}
.programs .cards .card .bottom .title {
  margin: 0px;
  font-family: "Gothic A1";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 10px;
}
@media (max-width: 764px) {
  .programs .cards .card .bottom .title {
    font-size: 18px;
  }
}
.programs .cards .card .bottom p {
  font-family: "Gothic A1";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0px;
  margin-bottom: 16px;
}
@media (max-width: 764px) {
  .programs .cards .card .bottom p {
    font-size: 16px;
  }
}
.programs .cards .card .bottom a {
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
  line-height: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease;
  text-align: center;
  box-sizing: border-box;
  margin-top: auto;
  height: 64px;
}
@media (max-width: 764px) {
  .programs .cards .card .bottom a {
    line-height: 1.2;
  }
}
@media (max-width: 350px) {
  .programs .cards .card .bottom a {
    font-size: 14px;
  }
}
.programs .cards .card .bottom ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.programs .cards .card .bottom ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.programs .cards .card .bottom ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("/wp-content/themes/iacmi/resources/assets/images/icon.svg");
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.programs .cards .card:first-of-type {
  border: 4px solid #DF1F26;
}
.programs .cards .card:first-of-type .top:after {
  background: linear-gradient(0deg, rgba(223, 31, 38, 0.8) 0%, rgba(223, 31, 38, 0.8) 100%);
}
.programs .cards .card:first-of-type .bottom .title {
  color: #DF1F26;
}
.programs .cards .card:first-of-type .bottom a {
  background: linear-gradient(180deg, #DF1F26 28.75%, #DF1F26 132.5%);
}
.programs .cards .card:first-of-type .bottom a:hover {
  background: linear-gradient(180deg, #DF1F26 28.75%, #791115 132.5%);
}
.programs .cards .card:last-of-type {
  border: 4px solid #232B65;
}
.programs .cards .card:last-of-type .top:after {
  background: linear-gradient(0deg, rgba(35, 43, 101, 0.8) 0%, rgba(35, 43, 101, 0.8) 100%);
}
.programs .cards .card:last-of-type .bottom .title {
  color: #232B65;
}
.programs .cards .card:last-of-type .bottom a {
  background: linear-gradient(180deg, #232B65 28.75%, #232B65 132.5%);
}
.programs .cards .card:last-of-type .bottom a:hover {
  background: linear-gradient(180deg, #232B65 28.75%, #000 132.5%);
}
.programs .cards .card:last-of-type .bottom ul li:before {
  background-image: url("/wp-content/themes/iacmi/resources/assets/images/icon-blue.svg");
}
.gallery {
  z-index: 1;
  position: relative;
  background: white;
}
.gallery .gallery-container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 24px;
}
@media (max-width: 570px) {
  .gallery .gallery-container {
    padding: 30px 24px;
  }
}
.gallery .title {
  color: #232B65;
  font-family: "Gothic A1";
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  margin: 0px;
  margin-bottom: 16px;
}
@media (max-width: 764px) {
  .gallery .title {
    font-size: 24px;
  }
}
.gallery .gallery-slider .slick-slide {
  margin-right: 16px;
}
.gallery .gallery-slider .slick-slide:last-of-type {
  margin-right: 0px;
}
.gallery .gallery-slider .slick-track {
  display: flex;
}
@media (max-width: 570px) {
  .gallery .gallery-slider .slick-track {
    gap: 0px;
  }
  .gallery .gallery-slider .slick-track .slick-slide {
    margin-top: 20px;
  }
}
.gallery .gallery-slider img {
  aspect-ratio: 1/1.25;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  margin-right: 32px;
}
.gallery .arrows {
  display: flex;
  gap: 10px;
  justify-content: end;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}
@media (max-width: 570px) {
  .gallery .arrows {
    justify-content: start;
  }
}
.gallery .arrows button {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  height: 40px;
  width: 40px;
}
@media (max-width: 570px) {
  .gallery .arrows button {
    height: 32px;
    width: 32px;
  }
}
.gallery .arrows button.disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
.gallery .arrows button .left {
  transform: rotate(-180deg);
}
.stats {
  z-index: 1;
  position: relative;
  background: white;
}
.stats .stat-container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 24px;
}
@media (max-width: 570px) {
  .stats .stat-container {
    padding: 30px 24px;
  }
}
.stats .info {
  max-width: 720px;
}
.stats .info .title {
  color: #232B65;
  font-family: "Gothic A1";
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  margin: 0px;
  margin-bottom: 16px;
}
@media (max-width: 764px) {
  .stats .info .title {
    font-size: 24px;
  }
}
.stats .info p {
  color: #000;
  font-family: "Gothic A1";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0px;
}
@media (max-width: 764px) {
  .stats .info p {
    font-size: 16px;
  }
}
.stats .stats-grid {
  margin-top: 64px;
  display: flex;
  gap: 32px;
}
@media (max-width: 998px) {
  .stats .stats-grid {
    flex-direction: column;
    margin-top: 40px;
  }
}
@media (max-width: 570px) {
  .stats .stats-grid {
    gap: 15px;
  }
}
.stats .stats-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 499px;
  flex-shrink: 1;
}
@media (max-width: 998px) {
  .stats .stats-column {
    max-width: 100%;
  }
}
@media (max-width: 570px) {
  .stats .stats-column {
    gap: 15px;
  }
}
.stats .stat-card {
  background: #F9F9F9;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transition: 0.2s all ease-in;
}
@media (max-width: 570px) {
  .stats .stat-card {
    padding: 24px;
  }
}
.stats .stat-card:hover {
  box-shadow: 0 10px 15px -3px rgba(218, 29, 36, 0.1), 0 4px 6px -4px rgba(218, 29, 36, 0.1);
}
.stats .stat-card .stat-icon {
  margin-bottom: 16px;
  padding: 20px;
  border-radius: 100%;
  box-shadow: 0 10px 15px -3px rgba(218, 29, 36, 0.1), 0 4px 6px -4px rgba(218, 29, 36, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.stats .stat-card .stat-icon img {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.stats .stat-card .stat-number {
  font-family: "Gothic A1";
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  line-height: 130%;
  margin-bottom: 16px;
}
@media (max-width: 570px) {
  .stats .stat-card .stat-number {
    font-size: 48px;
  }
}
.stats .stat-card .stat-title {
  font-family: "Gothic A1";
  font-weight: 900;
  font-size: 24px;
  line-height: 130%;
  color: black;
  margin-bottom: 8px;
}
.stats .stat-card .stat-description {
  font-family: "Gothic A1";
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: black;
  margin: 0;
}
.stats .stat-card:first-of-type .stat-number {
  color: #232B65;
}
.stats .stat-card:first-of-type .stat-icon {
  box-shadow: 0 10px 15px -3px rgba(35, 43, 101, 0.1), 0 4px 6px -4px rgba(35, 43, 101, 0.1);
}
.stats .stat-card:first-of-type:hover {
  box-shadow: 0 10px 15px -3px rgba(35, 43, 101, 0.1), 0 4px 6px -4px rgba(35, 43, 101, 0.1);
}
.stats .stat-card:nth-of-type(2) .stat-number {
  color: #DF1F26;
}
.stats .stat-card:last-of-type .stat-number {
  color: #232B65;
}
.stats .stat-card:last-of-type .stat-icon {
  box-shadow: 0 10px 15px -3px rgba(35, 43, 101, 0.1), 0 4px 6px -4px rgba(35, 43, 101, 0.1);
}
.stats .stat-card:last-of-type:hover {
  box-shadow: 0 10px 15px -3px rgba(35, 43, 101, 0.1), 0 4px 6px -4px rgba(35, 43, 101, 0.1);
}
.stats .images-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 570px) {
  .stats .images-column {
    gap: 15px;
  }
}
.stats .images-column img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
.stats .images-column .images-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 570px) {
  .stats .images-column .images-grid-top {
    gap: 15px;
  }
}
.stats .images-column .images-grid-top .image-small {
  aspect-ratio: 4/3;
}
.stats .images-column .video-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: #000;
}
@media (max-width: 998px) {
  .stats .images-column .video-container {
    height: 500px;
  }
}
@media (max-width: 570px) {
  .stats .images-column .video-container {
    height: 250px;
  }
}
.stats .images-column .video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16/9;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 998px) {
  .stats .images-column .video-container iframe {
    height: 500px;
  }
}
.stats .banner {
  display: flex;
  padding: 60px 264px;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
  background: #232B7A;
}
@media (max-width: 992px) {
  .stats .banner {
    padding: 40px 24px;
  }
}
@media (max-width: 540px) {
  .stats .banner {
    margin-top: 40px;
  }
}
.stats .banner .content {
  position: relative;
  z-index: 1;
}
.stats .banner .content .title {
  color: #FFF;
  text-align: center;
  font-family: "Gothic A1";
  font-size: 24px;
  font-weight: 900;
  line-height: 130%;
  margin-bottom: 8px;
}
.stats .banner .content p {
  color: #FFF;
  text-align: center;
  font-family: "Gothic A1";
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 540px) {
  .stats .banner .content p {
    font-size: 16px;
  }
}
.stats .banner .content .ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 540px) {
  .stats .banner .content .ctas {
    flex-direction: column;
    gap: 8px;
  }
}
.stats .banner .content .ctas a {
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
  line-height: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s all ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}
@media (max-width: 540px) {
  .stats .banner .content .ctas a {
    display: flex;
    justify-content: center;
  }
}
.stats .banner .content .ctas a:first-of-type {
  background: linear-gradient(180deg, #DF1F26 28.75%, #DF1F26 132.5%);
}
.stats .banner .content .ctas a:first-of-type:hover {
  background: linear-gradient(180deg, #DF1F26 28.75%, #791115 132.5%);
}
.stats .banner .content .ctas a:last-of-type {
  background: linear-gradient(180deg, #232B65 28.75%, #232B65 132.5%);
}
@media (max-width: 992px) {
  .stats .banner .content .ctas a:last-of-type {
    background: linear-gradient(180deg, white 28.75%, white 132.5%);
    color: #232B65;
  }
}
.stats .banner .content .ctas a:last-of-type:hover {
  background: linear-gradient(180deg, #232B65 28.75%, #000 132.5%);
}
@media (max-width: 992px) {
  .stats .banner .content .ctas a:last-of-type:hover {
    background: linear-gradient(180deg, #232B65 28.75%, #000 132.5%);
    color: white;
  }
}
.stats .banner::before, .stats .banner::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: blur(20px);
  background-image: radial-gradient(circle, rgb(223, 31, 38) 0%, transparent 70%);
  transform: rotate(45deg);
}
.stats .banner::before {
  animation: move-blob-1 20s linear infinite;
  left: unset;
}
.stats .banner::after {
  animation: move-blob-2 25s linear infinite;
}
@keyframes move-blob-1 {
  0% {
    transform: translate(50vw, 0vh) scale(1) rotate(45deg);
    opacity: 0.9;
  }
  50% {
    transform: translate(8vw, 50vh) scale(1.5) rotate(45deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-1000px, 500px) scale(2) rotate(45deg);
    opacity: 0.6;
  }
}
@keyframes move-blob-2 {
  0% {
    transform: translate(20vw, 20vh) scale(1.2);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50vw, -50vh) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(50vw, 20vh) scale(1.6);
    opacity: 0.5;
  }
}
@font-face {
  font-family: "Gotham Book Italic";
  src: url("/wp-content/themes/iacmi/public/fonts/Gotham Book Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
.testimonials {
  background: #F9F9F9;
  z-index: 1;
  position: relative;
}
.testimonials .t-container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 24px;
}
@media (max-width: 570px) {
  .testimonials .t-container {
    padding: 30px 24px;
  }
}
.testimonials .title {
  color: #232B65;
  font-family: "Gothic A1";
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  margin: 0px;
  margin-bottom: 16px;
}
@media (max-width: 764px) {
  .testimonials .title {
    font-size: 24px;
  }
}
.testimonials p.desc {
  color: #000;
  font-family: "Gothic A1";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 16px;
  max-width: 1029px;
}
@media (max-width: 570px) {
  .testimonials p.desc {
    margin-bottom: 40px;
    font-size: 16px;
  }
}
.testimonials .testimonials-slider {
  display: none;
}
.testimonials .testimonials-slider.slick-initialized {
  display: block;
}
.testimonials .testimonials-slider .slick-slide {
  height: auto;
  display: flex;
  margin-right: 16px;
  justify-content: space-between;
}
.testimonials .testimonials-slider .slick-slide:last-of-type {
  margin-right: 0px;
}
.testimonials .testimonials-slider .slick-track {
  display: flex;
}
@media (max-width: 570px) {
  .testimonials .testimonials-slider .slick-track {
    gap: 0px;
  }
  .testimonials .testimonials-slider .slick-track .slick-slide {
    margin-top: 20px;
  }
}
.testimonials .testimonials-slider .review-card {
  border-radius: 16px;
  background: white;
  padding: 40px;
  box-shadow: 23px 33px 11px 0 rgba(3, 7, 69, 0), 15px 21px 10px 0 rgba(3, 7, 69, 0), 8px 12px 9px 0 rgba(3, 7, 69, 0.01), 4px 5px 6px 0 rgba(3, 7, 69, 0.02), 1px 1px 4px 0 rgba(3, 7, 69, 0.02);
  height: 100%;
  width: 100%;
  display: flex !important;
  flex-direction: column;
}
.testimonials .testimonials-slider .review-card .review-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.testimonials .testimonials-slider .review-card .quote {
  color: #DF1F26;
  font-family: "Gothic A1";
  font-size: 48px;
  font-weight: 900;
  line-height: 100%;
  margin-bottom: -20px;
}
.testimonials .testimonials-slider .review-card p.review {
  color: #000;
  font-family: "Gotham Book Italic", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 570px) {
  .testimonials .testimonials-slider .review-card p.review {
    font-size: 16px;
  }
}
.testimonials .testimonials-slider .review-card .details {
  margin-top: 16px;
}
.testimonials .testimonials-slider .review-card .details .name {
  color: #232B65;
  font-family: "Gothic A1";
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
}
.testimonials .testimonials-slider .review-card .details .role {
  color: #232B65;
  font-family: "Gothic A1";
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.testimonials .arrows {
  display: flex;
  gap: 10px;
  justify-content: end;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}
@media (max-width: 570px) {
  .testimonials .arrows {
    justify-content: start;
  }
}
.testimonials .arrows button {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  height: 40px;
  width: 40px;
}
@media (max-width: 570px) {
  .testimonials .arrows button {
    height: 32px;
    width: 32px;
  }
}
.testimonials .arrows button.disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
.testimonials .arrows button .left {
  transform: rotate(-180deg);
}
.billboard {
  background: white;
  z-index: 1;
  position: relative;
}
.billboard .t-container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 24px;
}
@media (max-width: 570px) {
  .billboard .t-container {
    padding: 30px 24px;
  }
}
.billboard .title {
  color: #232B65;
  font-family: "Gothic A1";
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  margin: 0px;
  margin-bottom: 16px;
}
@media (max-width: 764px) {
  .billboard .title {
    font-size: 24px;
  }
}
.billboard p.desc {
  color: #000;
  font-family: "Gothic A1";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 16px;
  max-width: 1029px;
}
@media (max-width: 570px) {
  .billboard p.desc {
    margin-bottom: 40px;
    font-size: 16px;
  }
}
.billboard .hero-slider-wrapper {
  display: flex;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .billboard .hero-slider-wrapper {
    flex-direction: column;
    margin-top: 24px;
  }
}
.billboard .slider-images {
  display: none;
}
.billboard .slider-images.slick-initialized {
  display: block;
}
.billboard .slider-images {
  max-width: 700px;
  height: 400px;
  width: 100%;
}
@media (max-width: 1100px) {
  .billboard .slider-images {
    max-width: 500px;
  }
}
@media (max-width: 992px) {
  .billboard .slider-images {
    max-width: 100%;
  }
}
.billboard .slider-images .slick-slide {
  height: 100%;
}
.billboard .slider-images .slick-slide > div {
  height: 100%;
}
.billboard .slider-images img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  max-height: 391px;
  height: 400px;
}
.billboard .slider-text-content {
  margin-top: 40px;
  display: flex;
  align-items: start;
  justify-content: center;
}
@media (max-width: 992px) {
  .billboard .slider-text-content {
    flex-direction: column;
    margin-top: 10px;
  }
}
.billboard .slider-text {
  width: 100%;
  margin-left: -150px;
}
@media (max-width: 992px) {
  .billboard .slider-text {
    margin-left: 0px;
    margin-bottom: 20px;
  }
}
.billboard .slider-text .slick-slide {
  width: 100% !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.billboard .slider-text .slide-card {
  background-color: #f8f8fa;
  padding: 40px;
}
@media (max-width: 992px) {
  .billboard .slider-text .slide-card {
    padding: 24px;
  }
}
@media (max-width: 600px) {
  .billboard .slider-text .slide-card {
    padding: 20px;
  }
}
.billboard .slider-text .slide-card {
  border-radius: 16px;
  height: -moz-max-content;
  height: max-content;
}
.billboard .slider-text .slide-card h6 {
  font-family: "Gothic A1";
  font-size: 64px;
  font-weight: 900;
  line-height: 130%;
  background: linear-gradient(180deg, #DF1F26 0%, #232B65 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-top: 2px;
}
@media (max-width: 1300px) {
  .billboard .slider-text .slide-card h6 {
    line-height: 1;
  }
}
@media (max-width: 1150px) {
  .billboard .slider-text .slide-card h6 {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .billboard .slider-text .slide-card h6 {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.billboard .slider-text .slide-card p {
  color: #000;
  font-family: "Gothic A1";
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1150px) {
  .billboard .slider-text .slide-card p {
    font-size: 16px;
  }
}
.billboard .slick-dots {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 50px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .billboard .slick-dots {
    position: unset;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: 30px;
  }
}
.billboard .slick-dots li {
  margin: 3px 0;
  height: 8px;
  width: 8px;
}
.billboard .slick-dots li button {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #232B65;
  text-indent: -9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.billboard .slick-dots li.slick-active {
  height: 10px;
  width: 10px;
}
.billboard .slick-dots li.slick-active button {
  background-color: #d32e56;
  height: 10px;
  width: 10px;
}
.billboard .slider-nav {
  position: absolute;
  bottom: 0;
  right: 70px;
}
@media (max-width: 992px) {
  .billboard .slider-nav {
    position: absolute;
    bottom: -20px;
    right: 0;
  }
}
.billboard .slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.billboard .arrows {
  display: flex;
  gap: 10px;
  justify-content: end;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}
@media (max-width: 570px) {
  .billboard .arrows {
    justify-content: start;
  }
}
.billboard .arrows button {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  height: 40px;
  width: 40px;
}
@media (max-width: 570px) {
  .billboard .arrows button {
    height: 32px;
    width: 32px;
  }
}
.billboard .arrows button.disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
.billboard .arrows button .right {
  transform: rotate(90deg);
}
.billboard .arrows button .left {
  transform: rotate(-90deg);
}
.overview-two-col {
  background: white;
  z-index: 1;
  position: relative;
}
.overview-two-col .container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 120px 24px;
}
@media (max-width: 800px) {
  .overview-two-col .container {
    padding: 30px 24px;
    flex-direction: column;
    gap: 30px;
  }
}
.overview-two-col .left {
  width: calc(50% - 40px);
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 800px) {
  .overview-two-col .left {
    width: auto;
  }
}
.overview-two-col .left strong {
  font-weight: 600;
}
.overview-two-col .left p {
  margin: 10px 0;
}
.overview-two-col .left h2 {
  color: #232B65;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3em;
  margin: 0 0 16px 0;
}
@media (max-width: 800px) {
  .overview-two-col .left h2 {
    font-size: 32px;
  }
}
.overview-two-col .right {
  width: calc(50% - 40px);
  box-sizing: border-box;
  border-radius: 16px;
  border: 4px solid #DF1F26;
  padding: 32px;
}
@media (max-width: 800px) {
  .overview-two-col .right {
    padding: 16px;
    width: auto;
  }
}
.overview-two-col .right h3 {
  color: #DF1F26;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3em;
  margin: 0 0 32px 0;
}
@media (max-width: 800px) {
  .overview-two-col .right h3 {
    font-size: 32px;
  }
}
.overview-two-col .right a {
  color: #232B65;
  text-decoration: none;
}
.overview-two-col .right a:hover {
  text-decoration: underline;
}
.overview-two-col .right ul.list li {
  position: relative;
  font-size: 18px;
  line-height: 1.5em;
  padding: 12px 8px;
  border-radius: 8px;
  background: #F5F5F5;
  margin-bottom: 16px;
  padding-left: 48px;
}
@media (max-width: 800px) {
  .overview-two-col .right ul.list li {
    padding-left: 42px;
  }
}
.overview-two-col .right ul.list li .icon {
  display: inline-block;
  height: 20px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 12px;
  top: 14px;
}
.criteria-two-col {
  background: white;
  z-index: 1;
  position: relative;
  background: #F9F9F9;
}
.criteria-two-col .container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: top;
  gap: 80px;
  padding: 120px 24px;
}
@media (max-width: 800px) {
  .criteria-two-col .container {
    padding: 30px 24px;
    display: block;
  }
}
.criteria-two-col .content {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
}
.criteria-two-col .content strong {
  font-weight: 700;
}
.criteria-two-col .content p {
  margin: 10px 0;
}
.criteria-two-col .content h2 {
  color: #232B65;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3em;
  margin: 0 0 16px 0;
}
@media (max-width: 800px) {
  .criteria-two-col .content h2 {
    font-size: 32px;
  }
}
.criteria-two-col .content ul.list li {
  position: relative;
  font-size: 18px;
  line-height: 1.5em;
  padding: 12px;
  border-radius: 8px;
  background: #F5F5F5;
  margin-bottom: 16px;
  padding-left: 48px;
}
.criteria-two-col .content ul.list li p {
  margin: 0;
}
.criteria-two-col .content ul.list li .icon {
  display: inline-block;
  height: 20px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 12px;
  top: 14px;
}
.criteria-two-col .img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .criteria-two-col .img {
    display: none;
  }
}
.criteria-two-col .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.guidelines-two-col {
  background: white;
  z-index: 1;
  position: relative;
}
.guidelines-two-col .container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 120px 24px;
}
@media (max-width: 800px) {
  .guidelines-two-col .container {
    padding: 30px 24px;
    flex-direction: column;
    gap: 30px;
  }
}
.guidelines-two-col .left {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
}
.guidelines-two-col .left strong {
  font-weight: 500;
}
.guidelines-two-col .left p {
  margin: 10px 0;
}
.guidelines-two-col .left h2 {
  color: #232B65;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3em;
  margin: 0 0 16px 0;
}
@media (max-width: 800px) {
  .guidelines-two-col .left h2 {
    font-size: 32px;
  }
}
.guidelines-two-col .left ul.list li {
  position: relative;
  font-size: 18px;
  line-height: 1.5em;
  padding: 12px;
  border-radius: 8px;
  background: #F5F5F5;
  margin-bottom: 16px;
  padding-left: 48px;
}
.guidelines-two-col .left ul.list li p {
  margin: 0;
}
.guidelines-two-col .left ul.list li .icon {
  display: inline-block;
  height: 20px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 12px;
  top: 14px;
}
.guidelines-two-col .right {
  width: 100%;
  border-radius: 16px;
  border: 4px solid #232B65;
  padding: 32px;
}
@media (max-width: 800px) {
  .guidelines-two-col .right {
    padding: 24px;
  }
}
.guidelines-two-col .right h3 {
  color: #232B65;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3em;
  margin: 0 0 32px 0;
}
@media (max-width: 800px) {
  .guidelines-two-col .right h3 {
    margin-bottom: 24px;
  }
}
.guidelines-two-col .right h3.cannot {
  color: #DF1F26;
}
.guidelines-two-col .right ul.list li {
  position: relative;
  font-size: 18px;
  line-height: 1.5em;
  padding: 12px;
  border-radius: 8px;
  background: #F5F5F5;
  margin-bottom: 16px;
  padding-left: 48px;
}
.guidelines-two-col .right ul.list li .icon {
  display: inline-block;
  height: 20px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 12px;
  top: 14px;
}
.guidelines-two-col .right ul.list {
  /*
  &.can li {
      padding-left: 72px;
      .icon:after{
          content: '';
          background-image: url('/wp-content/themes/iacmi/resources/assets/images/check.svg');
          width: 20px;
          height: 20px;
          display: block;
          background-size: contain;
          background-position: center;
          position: absolute;
          left: 30px;
          top: 0;
      }
  }
  &.cannot li {
      padding-left: 72px;
      .icon:after{
          content: '';
          background-image: url('/wp-content/themes/iacmi/resources/assets/images/x.svg');
          width: 20px;
          height: 20px;
          display: block;
          background-size: contain;
          background-position: center;
          position: absolute;
          left: 30px;
          top: 0;
      }
  } 
  */
}
.background-container-block {
  position: relative;
}
.background-container-block .bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.background-container-block.bg-effect .bg .blobs {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.background-container-block.bg-effect .bg .blobs::before,
.background-container-block.bg-effect .bg .blobs::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: -10%;
  width: 100%;
  height: 100%;
  filter: blur(80px);
  width: 60%;
  background-image: radial-gradient(circle, rgb(223, 31, 38) 20%, transparent 80%);
}
.background-container-block.bg-effect .bg .blobs::after {
  left: auto;
  right: -10%;
  transform: translateY(20%);
}
.background-container-block.bg-effect .bg .blobs2::before, .background-container-block.bg-effect .bg .blobs2::after {
  top: 100%;
}
.background-container-block.bg-effect .bg .blobs1 {
  animation: move-blob1 20s linear infinite;
}
.background-container-block.bg-effect .bg .blobs2 {
  animation: move-blob2 20s linear infinite;
  animation-delay: 8s;
}
.background-container-block > .content-wrapper {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  padding: 80px 24px;
}
@media (max-width: 800px) {
  .background-container-block > .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 800px) {
  .background-container-block.no-mobile-background .bg {
    display: none;
  }
  .background-container-block.no-mobile-background > .content-wrapper {
    padding: 0;
  }
}
.background-container-block > .content-wrapper > .acf-innerblocks-container {
  width: 100%;
  position: relative;
  z-index: 2;
}
@keyframes move-blob1 {
  0% {
    transform: translate(0, -120%) scale(1);
  }
  50% {
    transform: translate(0, 0) scale(1.2);
  }
  100% {
    transform: translate(0, 100%) scale(1);
  }
}
@keyframes move-blob2 {
  0% {
    transform: translate(0, -220%) scale(1);
  }
  50% {
    transform: translate(0, -100%) scale(1.2);
  }
  100% {
    transform: translate(0, 0%) scale(1);
  }
}
.rules-section {
  background: white;
  z-index: 1;
  position: relative;
}
.rules-section .icon {
  background-image: url("/wp-content/themes/iacmi/resources/assets/images/check2.svg");
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 32px;
  display: none;
}
.rules-section .container {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  gap: 0 24px;
  padding: 32px 0;
  position: relative;
  border-bottom: 1px solid rgba(51, 51, 51, 0.25);
}
@media (max-width: 800px) {
  .rules-section .container {
    padding: 24px 0;
    flex-direction: column;
  }
}
.rules-section .left {
  width: 24%;
}
@media (max-width: 800px) {
  .rules-section .left {
    width: auto;
    margin-bottom: 16px;
  }
}
.rules-section .left h2 {
  color: #232B65;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0;
}
.rules-section .right {
  width: 76%;
  font-size: 18px;
  line-height: 1.5em;
}
@media (max-width: 800px) {
  .rules-section .right {
    width: auto;
    font-size: 14px;
  }
}
.rules-section .right p, .rules-section .right ul, .rules-section .right ol {
  margin: 0.5em 0;
}
.rules-section .right .acf-innerblocks-container > *:first-child {
  margin-top: 0;
}
.rules-section .right .acf-innerblocks-container > *:last-child {
  margin-bottom: 0;
}
.heading-callout {
  z-index: 1;
  position: relative;
  border-left: 12px solid #DF1F26;
  padding-left: 32px;
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .heading-callout {
    padding-left: 16px;
    border-left: 10px solid #DF1F26;
    margin-bottom: 30px;
  }
}
.heading-callout h2 {
  color: #232B65;
  font-size: 24px;
  font-weight: 900;
  margin: 0;
}
@media (max-width: 800px) {
  .heading-callout h2 {
    font-size: 22px;
  }
}
.heading-callout p {
  color: #232B65;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 800px) {
  .heading-callout p {
    font-size: 22px;
  }
}
body,
html {
  font-family: "Gothic A1", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gothic A1", sans-serif;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.logged-in #masthead {
  top: 32px;
}
@media (max-width: 782px) {
  .logged-in #masthead {
    top: 46px;
  }
}
@media (max-width: 600px) {
  .logged-in #masthead {
    top: 0px;
  }
}
.logged-in .hero-block.layout-large {
  top: 151px;
}
@media (max-width: 800px) {
  .logged-in .hero-block.layout-large {
    top: 95.66px;
  }
}
@media (max-width: 782px) {
  .logged-in .hero-block.layout-large {
    top: 109.66px;
  }
}
@media (max-width: 600px) {
  .logged-in .hero-block.layout-large {
    top: 63.66px;
  }
}
