/****************
 * Fonts
 ****************/
/****************
 * Colors
 ****************/
/****************
 * Grid Settings
 ****************/
/**************
 * Buttons
 **************/
/****************
 * Blocks
 ****************/
.block-cta {
  position: relative;
  padding: 6.25rem 0 4.0625rem;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .block-cta {
    padding: 9.375rem 0 6.5625rem;
  }
}
.block-cta.block-cta--not-full {
  padding: 0;
}
.block-cta.block-cta--not-full .block-cta__shield {
  top: -2.1875rem;
}
@media (min-width: 1200px) {
  .block-cta.block-cta--not-full .block-cta__shield {
    top: -3.125rem;
    left: 10.625rem;
  }
}
.block-cta.block-cta--not-full .block-cta__description ul {
  padding-left: 1.5625rem;
  margin-bottom: 1.5625rem;
}
@media (min-width: 1200px) {
  .block-cta.block-cta--not-full .block-cta__description ul {
    margin-bottom: 1.875rem;
  }
}
.block-cta.block-cta--not-full .block-cta__description li {
  margin-bottom: 0;
}
.block-cta.block-cta--not-full .block-cta__description li::before {
  left: -1rem;
}
.block-cta.block-cta--not-full .block-cta__buttons .c-btn {
  padding: 0.875rem 1.25rem;
}
@media (max-width: 991.98px) {
  .block-cta.block-cta--not-full .container .block-cta__content {
    padding: 4.5625rem 0 4.0625rem;
  }
}
.block-cta__shield {
  position: absolute;
  top: -2.375rem;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.125rem;
  height: 4.125rem;
  padding: 0.375rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 3.5625rem;
  background-position: center;
}
[data-theme=bba] .block-cta__shield {
  background-image: url("../../../images/shield.svg");
}
[data-theme=bbf] .block-cta__shield {
  background-image: url("../../../images/shield-alt.svg");
}
@media (min-width: 1200px) {
  .block-cta__shield {
    top: -2.375rem;
    background-size: 5.1875rem;
    width: 6rem;
    height: 6rem;
  }
}
.block-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.block-cta__background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  opacity: 0.75;
}
[data-theme=bba] .block-cta__background::after {
  background-color: #262626;
}
[data-theme=bbf] .block-cta__background::after {
  background-color: #59012d;
}
.block-cta__background img {
  width: 100%;
  height: 100%;
  filter: saturate(0);
  object-fit: cover;
}
.block-cta__content {
  text-align: center;
}
.block-cta__title {
  max-width: 53.125rem;
  margin: 0 auto 2.625rem;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.1428571429;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .block-cta__title {
    font-size: 2.625rem;
    line-height: 1.1428571429;
    font-weight: 400;
  }
}
.block-cta .c-btn-primary {
  margin-bottom: 1.25rem;
}
[data-theme=bbf] .block-cta .c-btn-primary {
  border: none;
  background: #fff;
  color: #8c0247;
}
[data-theme=bbf] .block-cta .c-btn-primary:hover, [data-theme=bbf] .block-cta .c-btn-primary:focus {
  background: #59012d;
  color: #fff;
}
@media (min-width: 1200px) {
  .block-cta .c-btn-primary {
    margin: 0 1.25rem 0 0;
  }
}
@media (max-width: 767.98px) {
  .block-cta .c-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.block-cta__description {
  max-width: 53.125rem;
  margin: 0 auto;
  color: #fff;
}
.block-cta__description li::before {
  color: #fff !important;
}
.block-cta .container .block-cta__content {
  display: grid;
  padding: 4.6875rem 0 4.0625rem;
  text-align: left;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-column-gap: 2.1875rem;
  grid-row-gap: 0;
  grid-template-areas: "title" "description" "buttons";
}
@media (min-width: 1200px) {
  .block-cta .container .block-cta__content {
    padding: 5.1875rem 5.9375rem 4.6875rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "title description" "title buttons";
  }
}
.block-cta .container .block-cta__title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.1428571429;
  font-weight: 500;
  grid-area: title;
}
@media (min-width: 1200px) {
  .block-cta .container .block-cta__title {
    text-align: left;
    font-size: 2.625rem;
    line-height: 1.1428571429;
    font-weight: 500;
  }
}
.block-cta .container .block-cta__description {
  grid-area: description;
}
@media (max-width: 1199.98px) {
  .block-cta .container .block-cta__description {
    margin-bottom: 0.3125rem;
  }
}
@media (max-width: 1199.98px) {
  .block-cta .container .block-cta__description li {
    line-height: 1.5rem;
  }
}
.block-cta .container .block-cta__buttons {
  display: flex;
  grid-area: buttons;
}
@media (max-width: 1199.98px) {
  .block-cta .container .block-cta__buttons {
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .block-cta .container .row {
    position: relative;
    margin: 0;
  }
}