/**
 * @file
 * Block Styles
 */
/* Homepage Hero Block Type Styles */
.block-content-homepage_hero_block.block-block-content {
  padding: 0;
}

#blinkingDiv {
  /* Initial styles (e.g., color, font-size) */
  color: red;
  font-weight: bold;
  /* Keep the animation off initially */
  animation: none;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.hp-hero-block-container {
  position: relative;
  padding: 0;
}

.hp-hero-block-container:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  background: #3bc5ee;
}

.hp-hero-block-background {
  position: relative;
  padding: 0;
}

.hp-hero-block-background .field--name-field-media-image img {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hp-hero-block-background .field--name-field-media-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(at center, transparent 0%, black 100%);
  z-index: 2;
}

.hp-hero-block-content {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 4rem 1rem;
}

.hp-hero-block-content video {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 1024px) {
  .hp-hero-block-content {
    padding: 0 1rem 2rem 1rem;
  }
}

.hp-hero-block-content h1 {
  font-size: 4.25vw;
  color: #ffffff;
  max-width: 75%;
  margin: 0 0 0.75rem 0;
  line-height: 4rem;
  font-weight: 700;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 1);
}

@media only screen and (max-width: 1024px) {
  .hp-hero-block-content h1 {
    line-height: 3rem;
  }
}

@media only screen and (max-width: 768px) {
  .hp-hero-block-content h1 {
    line-height: 2rem;
  }
}

@media only screen and (max-width: 600px) {
  .hp-hero-block-content h1 {
    line-height: 1.25rem;
    margin: 0 0 0.5rem 0;
  }
}

.hp-hero-block-content .description {
  max-width: 60%;
  margin: 0 0 1.5rem 0;
}

@media only screen and (max-width: 600px) {
  .hp-hero-block-content .description {
    display: none;
  }
}

.hp-hero-block-content .description p {
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  margin: 0;
}

@media only screen and (max-width: 675px) {
  .hp-hero-block-content .description p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .hp-hero-block-content .cta-button a {
    padding: 0.5rem 1.25rem;
  }
}

@media only screen and (max-width: 768px) {
  .hp-hero-block-content .cta-button a:after {
    display: none;
  }
}

.block-block-content {
  padding: 1rem 0 2rem 0;
}

@media only screen and (max-width: 600px) {
  .block-block-content {
    padding: 1rem 0;
  }
}

@media only screen and (max-width: 600px) {
  .block-block-content .field--type-entity-reference {
    padding: 0;
  }
}

/* Global Block Banner Block Type Styles */
.block-banner-container {
  position: relative;
  padding: 0;
}

.block-banner {
  display: flex;
}

@media only screen and (max-width: 768px) {
  .block-banner {
    display: block;
  }
}

.block-banner .block-banner-code {
  position: relative;
  flex-basis: 45%;
}

.block-banner .block-banner-code iframe,
.block-banner .block-banner-code video {
  width: 100%;
  margin: 1.5rem 0 0 0;
  object-fit: cover;
  border-radius: 35px;
}

.block-banner .block-banner-code .yottie-container {
  max-width: 475px;
  border-radius: 35px;
}

@media only screen and (max-width: 768px) {
  .block-banner .block-banner-code iframe {
    margin: 0;
  }
}

.block-banner .block-banner-media {
  position: relative;
  flex-basis: 45%;
  padding: 1.75rem 0 0 0;
}

.label-subtitle {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  color: #0e8ec8;
}

.block-banner h2.block-banner-title {
  position: relative;
}

.block-banner h2.block-banner-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 40px;
  background-color: #0e8ec8;
}

.block-banner .block-banner-content {
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  flex-basis: 55%;
}

@media only screen and (max-width: 768px) {
  .block-banner .block-banner-content {
    padding: 0.25rem 2rem 0.25rem 1rem;
  }
}

.block-banner-container.blue .cta-button a {
  background-color: #ffffff;
  color: #36707e;
}

/* Global Quote & Banner Block Banner Styles */
.quote-block-background,
.banner-block-background {
  position: relative;
}

.quote-block-background:after,
.banner-block-background:after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 98%;
  opacity: 0.75;
  background: #000000;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(43, 43, 43, 1) 10%,
    rgba(43, 43, 43, 1) 90%,
    rgba(0, 0, 0, 1) 100%
  );
}

.quote-block-background img,
.banner-block-background img {
  position: relative;
  z-index: 3;
  margin: 0;
}

.quote-block-subtitle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  margin: auto;
  padding: 1rem;
  height: 50%;
  max-width: 800px;
  color: #ffffff;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .quote-block-subtitle {
    height: 70%;
  }
}

@media only screen and (max-width: 900px) {
  .quote-block-subtitle {
    height: 80%;
  }
}

@media only screen and (max-width: 768px) {
  .quote-block-subtitle {
    height: 80%;
  }
}

@media only screen and (max-width: 600px) {
  .quote-block-subtitle {
    height: 80%;
  }
}

@media only screen and (max-width: 500px) {
  .quote-block-subtitle {
    height: 60%;
  }
}

.quote-block-subtitle p {
  font-size: 48px;
  line-height: 3rem;
  margin: 1rem 0 0 0;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 1);
}

@media only screen and (max-width: 900px) {
  .quote-block-subtitle p {
    font-size: 28px;
    line-height: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .quote-block-subtitle p {
    font-size: 22px;
    line-height: 1.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .quote-block-subtitle p {
    font-size: 22px;
    line-height: 1.5rem;
  }
}

@media only screen and (max-width: 500px) {
  .quote-block-subtitle p {
    font-size: 18px;
    line-height: 1.5rem;
    margin: 0;
  }
}

.banner-block-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  margin: auto;
  height: 70%;
  max-width: 1000px;
  color: #ffffff;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .banner-block-content {
    top: -30px;
  }
}

.banner-block-content h2 {
  position: relative;
  color: #ffffff;
  margin: 0 0 2rem 0;
}

@media only screen and (max-width: 900px) {
  .banner-block-content h2 {
    font-size: 28px;
    margin: 0 0 1rem 0;
  }
}

@media only screen and (max-width: 768px) {
  .banner-block-content h2 {
    font-size: 28px;
    margin: 0 0 1rem 0;
  }
}

@media only screen and (max-width: 600px) {
  .banner-block-content h2 {
    font-size: 22px;
    margin: 0.5rem 0 0 0;
  }
}

.banner-block-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: auto;
  height: 2px;
  width: 40px;
  background-color: #10a5e9;
}

@media only screen and (max-width: 900px) {
  .banner-block-content h2:after {
    bottom: -10px;
  }
}

.banner-block-content h3 {
  color: #10a5e9;
}

@media only screen and (max-width: 768px) {
  .banner-block-content h3 {
    display: none;
  }
}

.banner-block-content .description {
  margin: 0 auto 1rem auto;
  max-width: 47%;
  font-size: 14px;
}

@media only screen and (max-width: 1024px) {
  .banner-block-content .description {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 900px) {
  .banner-block-content .description {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .banner-block-content .description {
    max-width: 75%;
  }
}

@media only screen and (max-width: 650px) {
  .banner-block-content .description {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .banner-block-content .cta-button a {
    padding: 0.5rem 1.25rem;
  }
}

@media only screen and (max-width: 768px) {
  .banner-block-content .cta-button a:after {
    display: none;
  }
}
