@import url('https://fonts.googleapis.com/css?family=Playfair+Display|Work+Sans:400,700&display=swap');
body {
  padding: 0;
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  color: #353535;
}
body * {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.header {
  background: url(bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header .bar {
  color: #fff;
  background: #404040;
  height: 80px;
  line-height: 60px;
  padding: 0 40px;
  margin-bottom: 40px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0px 5px 7px 1px rgba(0, 0, 0, 0.3);
}
.header .bar .logo {
  font-family: 'Playfair Display', serif;
  display: inline-block;
  position: relative;
  height: 40px;
  line-height: 40px;
  color: inherit;
  text-decoration: none;
}
.header .bar .logo .ico {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background: #E7B121;
  border-radius: 40px;
  vertical-align: middle;
}
.header .bar .logo .name {
  font-size: 30px;
  vertical-align: middle;
}
.header .bar .logo .subname {
  position: absolute;
  bottom: -12px;
  font-size: 12px;
  height: 14px;
  line-height: 14px;
  right: 0;
  color: #E7B121;
  font-weight: bold;
}
.header .bar .contact {
  display: inline-block;
  float: right;
  color: #E7B121;
  font-size: 14px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  margin-top: 10px;
}
.header .banner {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}
.header .baseline {
  font-family: 'Playfair Display', serif;
  font-size: normal;
  font-size: 40px;
  text-shadow: 1px 1px #E7B121;
  margin: 20px 0;
}
.header .baseline strong {
  color: #E7B121;
  text-shadow: 1px 1px #1A1A1A;
}
.header .suggestions-container {
  overflow: hidden;
  display: inline-block;
  height: 220px;
  border-radius: 200px;
  width: 220px;
  border: 10px solid #E7B121;
  top: 0;
  right: 0;
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.4);
}
.header .surprise-me {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  height: 60px;
  line-height: 60px;
  padding: 0 60px;
  background: #E7B121;
  border: none;
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition-duration: 0.3s;
  margin: 30px 0 10px;
  border-radius: 5px;
}
.header .surprise-me:hover {
  background: #fff;
  color: #E7B121;
}
.welcome {
  margin: 80px 0 80px;
  text-align: center;
  position: relative;
}
.welcome .invite small {
  color: #E7B121;
  font-size: 10px;
}
.welcome .desc {
  font-size: 14px;
  opacity: 0.6;
  margin-top: 10px;
}
.welcome:after {
  position: absolute;
  content: "";
  display: block;
  background: #E7B121;
  height: 4px;
  width: 60px;
  bottom: -20px;
  left: 50%;
  margin-left: -30px;
}
.offers {
  display: block;
  text-align: center;
}
.offers .offer {
  display: inline-block;
  vertical-align: top;
  width: 200px;
  position: relative;
  text-align: left;
  background: url(loader.png);
  background-repeat: no-repeat;
  background-position: center top 100px;
  margin-bottom: 5px;
  padding-bottom: 20px;
  transition-duration: 0.3s;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.offers .offer .image {
  height: 220px;
  width: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 90%;
  opacity: 0;
  transition-duration: 0.3s;
}
.offers .offer .image.loaded {
  opacity: 1;
}
.offers .offer .title {
  height: 34px;
  font-size: 14px;
  overflow: hidden;
  font-weight: normal;
  padding: 0 10px;
}
.offers .offer .price {
  height: 20px;
  line-height: 20px;
  font-size: 18px;
  color: #E7B121;
  font-weight: normal;
  margin: 10px 0;
  padding: 0 10px;
}
.offers .offer .link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.offers .offer:hover {
  z-index: 2;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background: #f2f2f2;
}
.offers .offer:after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -30px;
}
.footer {
  margin-top: 60px;
  background: #E7B121;
  padding: 80px 0 20px;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
