/* Vars, which are specific for current project */
.callout {
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
  margin: 1.5rem 0;
}

.layout-main .callout {
  margin: 3rem 0;
}

.callout-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.callout-bg img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit:cover";
}

.callout-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(31, 31, 31, 0.67);
}

.callout-fg {
  position: relative;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  padding: 2.25rem 1.5rem;
}

.callout-fg p {
  margin-bottom: 4px;
}

@media (min-width: 992px) {
  .callout-fg {
    padding: 1.75rem 2.5rem;
  }
}
