@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;800;900&amp;display=swap');

:root {
  --time: .5s;
  --gray: #747474;
  --cyan: #3aaed2;
  --green: #8F981D;
}
html,body {
font-family: 'Montserrat', sans-serif !important;
}
.site-header{
  background: var(--green);
  height: 80px;
}
.header-logo{
  height: 60px;
  width: auto;
}
.gt-btn{
    font-weight: 700;
  font-size: .7rem;
  text-align: center;
  background: white;
  border: 1px solid white;
  width: auto;
  color: var(--gray);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
}
.gt-btn:hover{
  background: transparent;
  color: white;
  border: 1px solid white;
  text-decoration: none;
}
/* Hero */
.hero {
  display: flex;
  height: calc(100vh - 90px);
  background: black;
  color: white;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: 3s;
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 2%, rgba(0, 0, 0, 0.8) 100%);
}
.goodtimes-lockup{
  width: 100%;
  max-width: 800px;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 1rem;
}
@media(min-width: 38rem){
  .goodtimes-lockup{
  padding-left: 4rem;
  padding-right: 4rem;
}
}
.hero-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: block;
  padding-bottom: 2rem;
}
.hero-content h1 {
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.1;
  /*backdrop-filter: blur(10px) brightness(10%) opacity(80%); */
  padding-top: 2rem;
  font-family: 'Montserrat', sans-serif;
}
.hero-content p {
  font-size: 1.3rem;  font-weight: 500;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  /* backdrop-filter: blur(10px) brightness(10%) opacity(80%); */
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 60rem) {
  .hero-content {
    width: 70%;
  }
  .hero-content h1 {
    font-size: 6rem;
    padding-left: 4rem;
  }
  .hero-content p {
    font-size: 1.7rem;
    line-height: 1.2;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.the_cards {
  display: grid;
  grid-gap: 0;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
}

.the_card {
  padding: 0;
  margin: 0;
  perspective: 40rem;
  display: flex;
  transition: z-index, transform var(--time));
  /*transition-delay: var(--time), 0s;*/
  z-index: 0;
  border: 0;
}
.the_card:hover, .the_card:active {
  transition-delay: 0s;
  z-index: 1;
}
.the_card:active {
  transform: scale(0.975);
}

.the_card-body {
  display: flex;
  max-width: 100%;
  transform-style: preserve-3d;
    -webkit-transition: all .6s cubic-bezier(.5,1,.5,1);
    transition: all .6s cubic-bezier(.5,1.3,.5,1.3);
  flex: 1;
  cursor: pointer;
}
.the_card:hover .the_card-body, .the_card:focus .the_card-body,
.the_card-body .the_card:active {
    -webkit-transition: all .6s cubic-bezier(.5,1,.5,1);
    transition: all .6s cubic-bezier(.5,1.3,.5,1.3);
  transform: rotateY(-180deg);
}

.the_card-front,
.the_card-back {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  min-width: 100%;
  display: flex;
  align-items: center;
  background-color: white;
  transform-style: preserve-3d;
  border: 0;
  padding: 0;
  margin: 0;
}

/* Card Back */
.the_card-back {
  cursor: default;
  transform: rotateY(-180deg) translate(100%, 0);
  color: white;
  background-color: var(--cyan);
}
.the_card-back .the_card-back-content {
  width: 100%;
  padding: 2.7rem;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.the_card-back .the_card-back-content * + * {
  margin-top: 1rem;
}
.the_card-back .the_card-back-content .logo {
  background: transparent;
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.the_card-back .the_card-back-content .city-description {
  text-align: center;
  font-size: 0.9rem;
}
.the_card-back .the_card-back-content .btn {
  text-align: center;
  margin-top: 0;
}
.the_card-back .the_card-back-content .btn a {
  font-weight: 700;
  font-size: .7rem;
  text-align: center;
  background: white;
  border: 1px solid white;
  width: auto;
  color: var(--gray);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 0.8rem 1.5rem;
}
.the_card-back .the_card-back-content .btn a:hover {
  background: var(--cyan);
  color: white;
  border: 1px solid white;
}

/* Card Front */
.the_card-front {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: white;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.the_card-front:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.95) );
}
.the_card-front img {
  position: absolute;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}
.the_card-front .the_card-front-content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 1rem;
}
.the_card-front .the_card-front-content h2 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.7rem;
  padding: 0 1rem;
  margin: 0;
  line-height: 1.1;
}
.the_card-front .the_card-front-content .tags {
  display: flex;
  font-size: 0.8rem;
  padding: 0 1rem;
  list-style: none;
  margin: 0.5rem 0;
}
.the_card-front .the_card-front-content .tags li {
  margin: 0;
}
.the_card-front .the_card-front-content .tags li + li {
  margin-left: 10px;
}
.cta{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 2rem;
  background: var(--green);
}
.cta p{
  text-transform: uppercase;
  font-weight: 900;
  color: white;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
}
.cta .gt-btn{
  margin: 0 auto;
}
.cta div{
  display: flex;
}
.site-footer, div#footer-middle-wrap{
  background: black;
}
.site-footer a, .site-footer, .site-footer p{
  color: white;
}
.site-footer a:hover{
  text-decoration: underline;
}
.site-footer a:visited, .site-footer a:hover{
  color: white; 
}
.site-footer p{
  margin: 0;
  margin-bottom: 0;
}

/* Looping hero */
