/* line 1, ../sass/screen.scss */
.cmp-flip-card {
  height: 420px;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
/* line 6, ../sass/screen.scss */
.cmp-flip-card .front {
  height: 100%;
  background-size: cover;
}
/* line 9, ../sass/screen.scss */
.cmp-flip-card .front .desc {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 13px 18px;
  opacity: 1;
  transition: all .3s;
}
/* line 17, ../sass/screen.scss */
.cmp-flip-card .front .desc .title {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.4em;
  font-family: "Red Hat Display", Sans-serif;
  font-size: 18px;
  margin: 0;
}
/* line 26, ../sass/screen.scss */
.cmp-flip-card .front .desc .subtitle {
  font-size: 20px;
  margin: 0;
}
/* line 32, ../sass/screen.scss */
.cmp-flip-card .back {
  transition: all .3s;
  border-radius: 6px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 100%;
  right: -100%;
  height: 100%;
  opacity: 1;
  background: rgba(18, 49, 71, 0.75);
  padding: 33px 23px;
  display: flex;
  justify-content: space-between;
}
/* line 46, ../sass/screen.scss */
.cmp-flip-card .back > div {
  flex: 0 0 75%;
  padding-right: 16px;
}
/* line 49, ../sass/screen.scss */
.cmp-flip-card .back > div:last-child {
  flex: 0 0 25%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-right: 0px;
}
/* line 58, ../sass/screen.scss */
.cmp-flip-card .back .title {
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Red Hat Display", Sans-serif;
  font-size: 18px;
  margin: 0 0 16px;
  color: #fff;
}
/* line 66, ../sass/screen.scss */
.cmp-flip-card .back .desc {
  font-size: 20px;
  margin: 0;
  color: #fff;
}
/* line 70, ../sass/screen.scss */
.cmp-flip-card .back .desc ul {
  list-style-type: none;
  padding: 0;
}
/* line 73, ../sass/screen.scss */
.cmp-flip-card .back .desc ul li {
  margin-bottom: 15px;
  line-height: 1.2em;
}
/* line 79, ../sass/screen.scss */
.cmp-flip-card .back img {
  display: block;
  margin-top: 30px;
}
/* line 85, ../sass/screen.scss */
.cmp-flip-card.active .front .desc {
  opacity: 0;
}
/* line 88, ../sass/screen.scss */
.cmp-flip-card.active .back {
  left: 0;
  right: 0;
}
