/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/* Filter Colors
   -------------------------------------------------------------------------- */
/* Tools
   -------------------------------------------------------------------------- */
.cta-grid__inner {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .cta-grid--condensed .cta-grid-box {
    flex: 1 0 50%;
    min-height: 350px;
  }
}

.cta-grid-box {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 1 0 100%;
  min-height: 600px;
}
@media (min-width: 768px) {
  .cta-grid-box {
    flex: 1 0 50%;
    min-height: 472px;
  }
}
@media (min-width: 992px) {
  .cta-grid-box {
    min-height: 600px;
  }
}
@media only screen and (min-width: 1280px) {
  .cta-grid-box--3 {
    flex: 1 0 33.3333333333%;
  }
}
.cta-grid-box__link {
  display: flex;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
}
.cta-grid-box__link h2, .cta-grid-box__link p, .cta-grid-box__link span, .cta-grid-box__link img {
  transform: scale(1);
  transform-origin: center;
  -webkit-transition: transform 0.25s ease-in-out;
  -moz-transition: transform 0.25s ease-in-out;
  -ms-transition: transform 0.25s ease-in-out;
  -o-transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}
.cta-grid-box__link:hover h2, .cta-grid-box__link:hover p, .cta-grid-box__link:hover span, .cta-grid-box__link:hover img {
  transform: scale(1.03);
}
.cta-grid-box__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.cta-grid-box__img picture {
  display: block;
  height: 100%;
}
.cta-grid-box__img picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cta-grid-box__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: black;
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
  pointer-events: none;
}
.cta-grid-box__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin: auto;
  text-align: center;
  padding: 0 20px;
}
.cta-grid-box__content h2, .cta-grid-box__content p, .cta-grid-box__content span {
  color: #fff;
}
.cta-grid-box__content h2 {
  width: 100%;
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .cta-grid-box__content h2 {
    font-size: 20px;
    line-height: 1.375;
    margin-bottom: 25px;
  }
}
.cta-grid-box__content p {
  width: 100%;
  font-size: 16px;
  line-height: 1.381;
  font-weight: bold;
}
@media (min-width: 576px) {
  .cta-grid-box__content p {
    font-size: 21px;
    line-height: 29px;
  }
}
.cta-grid-box__content span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "brandon-grotesque", sans-serif;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.4375;
  text-decoration: none;
}
.cta-grid-box__content span .v-icon__svg--chevron {
  width: 8px;
  height: 8px;
}
@media (min-width: 576px) {
  .cta-grid-box__content span .v-icon__svg--chevron {
    width: 10px;
    height: 10px;
  }
}
@media (min-width: 576px) {
  .cta-grid-box__content span {
    font-size: 16px;
    line-height: 23px;
  }
}

/*# sourceMappingURL=cta-grid.css.map */