@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

/* ================= demo.css ================= */

body {
  font-family: 'Lato', sans-serif;
  background: #000;
}

/* Background */

#bg {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* Title */

.center {
  margin: 0 auto;
  text-align: center;
  padding: 50px 0 20px 0;
}

.center h3 {
  font-size: 18pt;
  font-weight: 700;
  letter-spacing: 5px;
  color: #fff;
  margin: 0;
}

.devider {
  display: block;
  border-top: 2px solid #e99d3f;
  width: 240px;
  margin: 15px auto 0;
}

/* Grid */

#choose {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 80px;
}

.choose-link {
  display: block;
}

/* Card */

.choose-wrapper {
  width: 92%;
  position: relative;
  margin: 40px auto 10px;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: all .35s ease;
}

.choose-wrapper img {
  width: 100%;
  transition: transform .6s ease, filter .6s ease;
}

.choose-wrapper:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
}

.choose-wrapper:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Overlay */

.choose-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05));
}

/* Text */

.choose-des {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px 10px;
  text-align: center;
  z-index: 2;
}

.choose-des span {
  color: #fff;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 12px;
}

/* Badge */

.choose-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e99d3f;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 3;
}
