.variable-number-box-callout-module-container {
  background-color: #ffffff;
  margin-bottom: 0px;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 0px;
  padding-bottom: 40px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 20px;
}

.variable-number-box-callout-module-container-title-style1 {
  font-family: Roboto Slab, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.25em;
  color: #02293d;
  margin-bottom: 20px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 10px;
  text-align: center;
}

.variable-number-box-callout-module-container-title-style2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.25em;
  color: #02293d;
  margin-bottom: 20px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
}

.variable-number-box-callout-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.callout-box {
  background-color: rgb(249 250 251);
  border-radius: 10px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  min-width: 200px;
  overflow: visible;
  padding: 20px;
  rotate: none;
  scale: none;
  text-align: center;
  transform: scale(0);
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .15s;
}

.callout-box:hover {
  background-color: rgb(249 250 251);
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  min-width: 200px;
  overflow: visible;
  padding: 20px;
  rotate: none;
  scale: none;
  text-align: center;
  transform: scale(1.01) !important;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .15s;
}

.callout-box svg {
  fill: url(#icon-gradient) #12d678;
  height: 50px;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 10px;
}

.callout-box-heading-style1 {
  color: #02294d;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 10px;
  padding: 0px;
}

.callout-box-heading-style2 {
  color: #12d678;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.25em;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 10px;
  padding: 0px;
  text-transform: uppercase;
}

.callout-box p {
  color: #02293d;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0px;
  padding: 0px;
}

.variable-number-box-callout-module-closing-header {
  font-family: Roboto Slab, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.25em;
  color: #02293d;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 20px;
  text-align: center;
}

.variable-number-box-callout-module-closing-paragraph {
  color: #02293d;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  padding: 0px;
  text-align: center;
}

.variable-number-box-cta-container {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .variable-number-box-callout-container {
	flex-direction: column; /* Switch to column for mobile */
  }
}

/* Create animation on scroll */
@keyframes fadeInUp {
  from {
	transform: translateY(50px);
	opacity: 0;
  }
  to {
	transform: translateY(0);
	opacity: 1;
  }
}

.fade-in-up {
  animation: 0.75s both fadeInUp;
}

.fade-in-up-delay1 {
  animation-delay: 0ms;
}

.fade-in-up-delay2 {
  animation-delay: 100ms;
}

.fade-in-up-delay3 {
  animation-delay: 200ms;
}

.fade-in-up-delay4 {
  animation-delay: 300ms;
}

.fade-in-up-delay5 {
  animation-delay: 400ms;
}

.fade-in-up-delay6 {
  animation-delay: 500ms;
}