.paragra{
    padding-bottom: 38px;
}
body{
  overflow-x: hidden;
}
.wrapper {
  display: block;
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.container-fostrap {
  display: block;
  padding: 0;
  text-align: center;
}
.fostrap-logo {
  width: 100px;
  margin-bottom:15px
}
h1.heading {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 20px;
  color: #1a2a52;
  letter-spacing: -0.3px;
}
@media (min-width: 450px) {
  h1.heading {
    font-size: 3.55em;
  }
}
@media (min-width: 760px) {
  h1.heading {
    font-size: 3.05em;
  }
}
@media (min-width: 900px) {
  h1.heading {
    font-size: 3.25em;
    margin: 0 0 0.3em;
  }
} 
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 24px;
  line-height: 1.42857143;
  background-color: #fff;
  border-radius: 14px;
  border: 1px solid #e1e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}
.img-card {
  width: 100%;
  height: 210px;
  display: block;
  overflow: hidden;
  background: #fcfcfc;
  border-bottom: 1px solid #f0f4f8;
}
.img-card img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
  padding: 18px;
  margin-top: 0;
} 
.card:hover .img-card img{
  transform: scale(1.05);
}
.card-content {
  padding: 16px 16px 6px;
  text-align: center;
  flex: 1 1 auto;
  background-color: #8E0220;
  color: #ffffff;
}
.card-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  line-height: 1.35;
  min-height: 2.7em;
  display: -webkit-box;
  line-clamp: 7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-title a {
  color: #ffffff;
  text-decoration: none !important;
}
.card-read-more {
  border-top: 1px dashed #e1e8f0;
  padding: 12px 16px 18px;
  margin-top: auto;
}
.card-read-more a {
  text-decoration: none !important;
  padding: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.selection{
    padding-top: 20px;
}

.selection > [class*="col-"]{
    display: flex;
}

.selection > [class*="col-"] > .card{
    width: 100%;
}
.btn-link {
    font-weight: 800;
    color: #1a2a52;
    border-radius: 10px;
    border: 2px solid #8E0220;
    padding: 10px 12px;
    background: transparent;
    transition: all .2s ease;
}
.btn-link:hover,
.btn-link:focus {
    background: #8E0220;
    color: #fff;
    text-decoration: none;
}

.animate-reveal {
  opacity: 0;
animation: reveal 1s cubic-bezier(0, 1, 0.5, 1) 1 normal forwards;
}

.animate-first {
  
          animation-delay: 0;
}

.animate-second {
          animation-delay: 500ms;
}

.animate-third {
          animation-delay: 1s;
}
@media screen and (max-width: 640px) and (min-width: 360px){
  .img-card img {
    padding: 14px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}
}
