section.block.block-hero-home {
  background-color: var(--background-secondary);
  margin-top: 0px;
  margin-bottom: 140px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  section.block.block-hero-home {
    margin-bottom: 80px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
section.block.block-hero-home .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  section.block.block-hero-home .container {
    flex-direction: column;
    gap: 30px;
  }
}
section.block.block-hero-home .container .content {
  width: var(--col-5);
  color: white;
}
@media screen and (max-width: 768px) {
  section.block.block-hero-home .container .content {
    width: 100%;
  }
}
section.block.block-hero-home .container .content h1 {
  color: white;
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  section.block.block-hero-home .container .content h1 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 0px;
  }
}
section.block.block-hero-home .container .content h1:after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background-color: var(--secondary);
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  section.block.block-hero-home .container .content h1:after {
    display: none;
  }
}
section.block.block-hero-home .container .content .title {
  margin-bottom: 40px;
}
section.block.block-hero-home .container .content p {
  line-height: 190%;
}
@media screen and (max-width: 768px) {
  section.block.block-hero-home .container .content p {
    text-align: center;
  }
}
section.block.block-hero-home .container .content .cta-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  section.block.block-hero-home .container .content .cta-container {
    justify-content: center;
    display: none;
  }
}
section.block.block-hero-home .container .content .cta-container a {
  margin: 0px;
}
section.block.block-hero-home .container .content .cta-container .button-secondary:hover {
  color: white;
  border-color: white;
}
section.block.block-hero-home .container .image-container {
  width: var(--col-6);
  overflow: hidden;
  margin-bottom: -150px;
}
@media screen and (max-width: 768px) {
  section.block.block-hero-home .container .image-container {
    width: 100%;
    margin-bottom: -130px;
    height: 400px;
  }
}
section.block.block-hero-home .container .image-container .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  section.block.block-hero-home .container .image-container .image {
    margin-bottom: -80px;
    transform: none;
  }
}
section.block.block-hero-home .container .image-container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-container-sticky-bottom {
  position: fixed;
  bottom: 0;
  z-index: 1000;
  background-color: #F7FAFB;
  width: 100%;
  filter: drop-shadow(4px 0px 4px, rgb(0, 95, 119));
  border-top: 1px solid rgba(0, 95, 119, 0.04);
}
@media screen and (min-width: 769px) {
  .cta-container-sticky-bottom {
    display: none;
  }
}
.cta-container-sticky-bottom .container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
}
.cta-container-sticky-bottom .container .button {
  margin: 0px;
  width: 100%;
  text-align: center;
}