#menu > li:nth-child(3) > a {
  text-decoration: underline !important;
  text-decoration-color: #027BDE !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 4px;
}

.top-card {
  min-height: 550px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

#row20, #row21 {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  min-height: 230px;
}

/* Card base */
.template-cards{
  position: relative;
  perspective: 1000px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  overflow: hidden; 
}

.template-cards .card-inner{
  display: grid;               
  transform-style: preserve-3d;
  transition: transform 280ms ease;
  will-change: transform;
}

.template-cards .card-face{
  grid-area: 1 / 1;
  position: relative;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* rotations */
.template-cards .card-face.front{ transform: rotateY(0deg); }
.template-cards .card-face.back { transform: rotateY(180deg); }

.template-cards.is-flipped .card-inner{
  transform: rotateY(180deg);
  z-index: 20;
}

.template-cards .see-details{ cursor: pointer; }

.template-cards .back-arrow{
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border: 2px solid #027ADE;
  border-radius: 999px;
  cursor: pointer;
  z-index: 30;
  background: transparent;
}

.template-cards .back-arrow::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid #027ADE;
  border-bottom: 2px solid #027ADE;
  transform: translateY(-50%) rotate(45deg);
}

.template-cards .card-face.back,
.template-cards .card-back {
  display: none;
  pointer-events: none;
}

.template-cards.is-flipped .card-face.back,
.template-cards.is-flipped .card-back {
  display: block;
  pointer-events: auto;
}