*, *:after, *:before {
  box-sizing: border-box;
}

h2, h4, p, ul, li {
  margin: 0;
  padding: 0;
}

h2, h4 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #333333;
}

h2 {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

th {
  text-align: -internal-left;
}

p, li {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 13;
  color: #555;
  line-height: 18px;
  text-align: left;
}

ul, li {
  text-decoration: none;
  list-style: disc outside;
}

ul {
  padding-left: 20px;
}

svg {
  margin: 0px;
  min-width: 24px;
  min-height: 24px;
}

body {
  background-color: #dadce2;
  background-image: linear-gradient(140deg, white, #dadce2);
  margin: 0;
  min-height: 250px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-container {
  display: flex;
  flex-flow: row wrap;
}

.cardContainer {
  width: 270px;
  height: 280px;
  margin: 0px;
  perspective: 1000px;
}

.active {
  transform: translateZ(0px) rotateY(180deg) !important;
}
.active:after {
  display: none;
}

.card {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -moz-backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(-100px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card:after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 14px 50px -4px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1.4);
}
.card:hover {
  transform: translateZ(0px);
}
.card:hover:after {
  opacity: 1;
}
.card .side {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: white;
}
.card .front {
  z-index: 2;
}
.card .back {
  transform: rotateY(180deg);
}
.card .info {
  padding: 16px;
}

.front .img {
  background-color: #dadce2;
  background-position: center;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 200px;
}
.front .img1 {
  background-image: url(https://auburn.box.com/shared/static/frxd5zagdrlh9x931pzdtgzyv8ixp3ku.jpg);
}
.front .img2 {
  background-image: url(https://auburn.box.com/shared/static/vcpk58ofxac0qx9nlrn53pp6kjnay858.jpg);
}
.front .img3 {
  background-image: url(https://auburn.box.com/shared/static/0go8s0vbjc1t8p410wekvcb98pe1f7zu.jpg);
}
.front .img4 {
  background-image: url(https://auburn.box.com/shared/static/kij5ef0uj8qwhefvw4jjtthmlvdw1ntb.jpg);
}
.front .img5 {
  background-image: url(https://auburn.box.com/shared/static/m2fbsrzgdhboehypyor3rnvj77r06iop.jpg);
}

.img6 {
  background-image: url(https://auburn.box.com/shared/static/21kido6pn60w57xgsb6nzsmklgr2kj6t.jpg);
}

.img7 {
  background-image: url(https://auburn.box.com/shared/static/rsqafk8rjybiyob0c5k15d67zn31r0w3.jpg);
}

.img8 {
  background-image: url(https://auburn.box.com/shared/static/y5lsxx4em4ednb4kvrt8sntyko2ezg3v.jpg);
}

.img9 {
  background-image: url(https://auburn.box.com/shared/static/iwedb72mxqz4nq2f5iqbsghujxfrbn2j.jpg);
}

.back {
  position: relative;
}
.back h2 {
  margin-top: 6px;
  margin-bottom: 18px;
}
.back li {
  line-height: 22px;
  margin: 2px 0 6px 0;
}
.back li:hover h4 {
  transform: translateX(0px);
}
.back li:hover svg {
  transform: translateX(0px);
  opacity: 1;
}
.back li h4 {
  transform: translateX(12px);
  transition: transform 0.3s ease-out;
}
.back li svg {
  margin: 1px 0 0 4px;
  transform: translateX(-8px);
  opacity: 0;
  transition: all 0.3s ease-out;
}
