@charset "UTF-8";
/* CSS Document */

.hp-flipcard-space {
      margin-right: 4px;
      margin-left: 4px;
      position: relative;
      z-index: 1;
      top: -30px;
    }

.flip-card {
  width: 180px;
  min-width: 180px;
  min-height: 180px;
  perspective: 500px;
}

.flip-card-content {
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: transform 1s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-content {
  -webkit-transform: rotateX(180deg) translateZ(0);
   -moz-transform: rotateX(180deg) translateZ(0);
   -ms-transform: rotateX(180deg) translateZ(0);
  transform: rotateX(180deg )  translateZ(0);
  transition: transform 0.5s;
}

.flip-card-front,
.flip-card-back {
  font-family: 'Times New Roman', serif;;
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 25px;
  color: white;
  text-align: center;
  font-size: 22px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  backface-visibility: hidden;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.48));
  padding-top: 10px;
}

.flip-card-back {
  font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
    color: white;
   -webkit-transform: rotateX(180deg) translateZ(1px); /* the translateZ value of 1px lets this work with older versions of safari */
   -moz-transform: rotateX(180deg) translateZ(1px);
   -ms-transform: rotateX(180deg) translateZ(1px);
   transform: rotateX(180deg )  translateZ(1px);
}

.dropshadow-titles {
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.90));
}

/* ############## */
/* #    Card BG's    # */
/* ############## */
.bg-iscdc {
  background: rgb(204,22,50);
  background-image: url("../images/background-iscdc-flipcard.jpg");
  background-size: 100%
}

.bg-icbcc {
  background: rgb(66,35,79);
  background-image: url("../images/background-icbcc-flipcard.jpg");
  background-size: 100%
}

.bg-lynx {
  background: rgb(139,179,91);
  background-image: url("../images/background-lynx-flipcard.jpg");
  background-size: 100%
}

.bg-camvent {
  background: rgb(248,131,62);
  background-image: url("../images/background-camvent-flipcard.jpg");
  background-size: 100%
}

.bg-cifi {
  background: rgb(27,171,205);
  background-image: url("../images/background-cifi-flipcard.jpg");
  background-size: 100%
}

.bg-nmtc {
  background: rgb(125,126,130);
  background-image: url("../images/background-nmtc-flipcard.jpg");
  background-size: 100%
}

/* ################## */
/* #    Learn More Btns   # */
/* ################## */
.learnmore{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: center;
    position: absolute; 
    bottom: 0px;
    width: 100%;
    margin-bottom: 5px;
}

.myButton {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background-image: linear-gradient(to bottom, rgba(255,255,255,.9), rgba(255,255,255,1));
	border-radius:6px;
	border:1px solid #ffffff;
	display:inline-block;
	cursor:pointer;
	color:#000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
	padding: 4px 0px;
    width: 95%;
	text-decoration: none;
}
.myButton:hover {
	background-image: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,.9));
    color:#000;
}
.myButton:active {
	position:relative;
	top:1px;
}

/* ################## */
/* # not a flip card vers  # */
/* ################## */
.not-a-flip-card {
  font-family: 'Times New Roman', serif;;
  line-height: 35px;
  color: white;
  text-align: center;
  font-size: 32px;
  width: 95%;
  border-radius: 8px;
  border: 2px solid #ffffff;
  backface-visibility: hidden;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.48));
  padding-top: 10px;
}

.not-a-flip-card-support-text {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 20px;
    color: white;
    margin: 12px 0;
    padding-bottom: 15px;
}

.not-a-flip-card-learn-more {
    bottom: 5px;
    width: 100%;
    margin-bottom: 15px;
}

@media (max-width: 996px) {
.hp-flipcard-space {
      margin-right: 4px;
      margin-left: 4px;
      margin-top: 10px;
      top: 0px;
    }
}
