@import url('https://fonts.googleapis.com/css?family=Asap:400,600&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  font-size: 100%;
  background: transparent !important;
}

body {
  background: transparent !important;
  padding: 0;
  margin: 0;
}

a[href] {
  position: relative;
}
a[href], a[href]:link, a[href]:visited, a[href]:active {
  text-decoration: none;
}
a[href]::after {
  content: "";
  position: absolute;
  left: 0;
  left: 0;
  bottom: 0;
  background: transparent;
  width: 0;
  height: 1px;  
  -webkit-transition: 0.35s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  transition: 0.35s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
a[href]:hover::after {
  width: 100%;
}

.note {
  margin-top: 30px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Asap', sans-serif;
  line-height: 1.5;
  text-align: center;
}

article.card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 350px;
  height: 350px;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
article.card .thumb {
  width: auto;
  height: 260px;
  background: url("madison.jpg") no-repeat center;
  background-size: cover;
  border-radius: 3px;
}
article.card .infos {
  width: auto;
  height: 350px;
  bottom: 20px;
  position: relative;
  padding: 14px 15px;
  background: #fff;
  -webkit-transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
article.card .infos .title {
  position: relative;
  margin: 10px 0;
  letter-spacing: 3px;
  color: #152536;
  font-family: 'Asap', sans-serif;
  font-size: 15px;
  text-shadow: 0 0 0px #32577f;
}
article.card .infos .flag {
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 45px;
  background: url("madison-logo.png") no-repeat top right;
  background-size: 100% auto;
  display: inline-block;
}
article.card .infos .date, article.card .infos .seats {
  margin-bottom: 10px;
  font-size: 12.7px;
  color: rgba(21, 37, 54, 0.7);
  font-family: 'Asap', sans-serif;
  line-height: 15px;
}
article.card .infos .seats {
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
article.card .infos .txt {
  font-family: 'Asap', sans-serif;
  line-height: 20px;
  font-size: 13px;
  text-align: justify;
  color: rgba(21, 37, 54, 0.7);
  opacity: 0;
  -webkit-transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
article.card .infos .details {
  position: absolute;
  left: 38%;
  bottom: 0;
  margin: 10px 0;
  letter-spacing: 1px;
  background: #c6893b;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border: 2px solid #c6893b;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Asap', sans-serif;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}

article.card .infos .details:hover {
  position: absolute;
  left: 38%;
  bottom: 0;
  margin: 10px 0;
  letter-spacing: 1px;
  background: transparent;
  color: #c6893b;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border: 2px solid #c6893b;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Asap', sans-serif;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
}

article.card:hover .infos {
  -webkit-transform: translateY(-240px);
          transform: translateY(-240px);
}
article.card:hover .infos .seats, article.card:hover .infos .txt, article.card:hover .infos .details {
  opacity: 1;
}