#masthead {
  background: white;
  position: sticky;
  top: 0;
  z-index: 11;
  box-shadow: 0 4px 24px 0 rgba(35, 43, 101, 0.05);
}
#masthead .nav-container {
  max-width: 1920px;
  padding: 20px 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  #masthead .nav-container {
    justify-content: center;
    padding: 5px 24px;
  }
}
#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 {
    display: none;
  }
}
#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;
}
#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%);
}
#footer {
  background: #232B65;
}
#footer .footer-container {
  max-width: 1538px;
  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;
  }
}
.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 .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: 1538px;
  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: 1538px;
  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: 1538px;
  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: 1538px;
  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: 1538px;
  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);
}
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 {
  top: 151px;
}
@media (max-width: 800px) {
  .logged-in .hero-block {
    top: 95.66px;
  }
}
@media (max-width: 782px) {
  .logged-in .hero-block {
    top: 109.66px;
  }
}
@media (max-width: 600px) {
  .logged-in .hero-block {
    top: 63.66px;
  }
}
