* {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Spartan";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font-weight: bold;
  font-size: 28px;
  line-height: 28px;
  color: #eefbfb;
}

h2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #eefbfb;
  padding-top: 15px;
}

h3 {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #eefbfb;
}

a {
  text-decoration: none;
  color: black;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20vh;
}

.renneks-logo {
  position: relative;
  left: 8vw;
}

.renneks-logo img {
  height: 100px;
}

.card-container {
  width: 100%;
  height: auto;
  margin: 0;
  position: relative;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 85vw;
}

.card {
  position: relative;
  background: #3793d6;
  padding: 0;
  margin: 0.5%;
  -webkit-box-flex: 10%;
      -ms-flex: 10%;
          flex: 10%;
  z-index: 100;
  cursor: pointer;
}

.card .hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  overflow: hidden;
}

.card .hover:hover {
  background: #18498e;
}

.hover h2:last-of-type {
  padding-top: 0;
}

.hover h3:last-of-type {
  margin-top: auto;
}

.hover h1,
.hover h2,
.hover h3 {
  padding: 20px;
}

.hover h3 {
  position: relative;
  vertical-align: bottom;
  bottom: 2px;
  z-index: 20;
}

.border {
  position: absolute;
  height: 8px;
  width: 100%;
  background: #41ac63;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  bottom: 0;
  z-index: 1;
}

.hover:hover .border {
  height: 56px;
}

.card-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#bg-img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#bus-mob {
  display: none;
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  background: rgba(0, 0, 0, 0.377);
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.logo-overlay h1 {
  font-size: 28px;
  line-height: 28px;
  padding: 0;
  position: relative;
}

.logo-overlay img {
  width: 80%;
  height: auto;
  position: relative;
  display: block;
}

.hover:hover .card-img #bg-img {
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.hover:hover .logo-overlay {
  opacity: 1;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60vw;
  padding-top: 6vh;
  padding-bottom: 6vh;
}

.footer-border {
  width: 70vw;
  height: 0.1vh;
  background: #6d6d6d;
}

.wide-logo {
  display: none;
}

@media screen and (min-width: 2200px) {
  .renneks-logo {
    left: 13vw;
  }
  h1 {
    font-size: 36px;
    line-height: 36px;
  }
  h2 {
    font-size: 18px;
    line-height: 20px;
    padding-top: 15px;
  }
  h3 {
    font-size: 20px;
    line-height: 20px;
  }
  .card-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card {
    min-height: 44vh;
    max-width: 14vw;
  }
  .hover h1,
  .hover h2,
  .hover h3 {
    padding: 30px;
  }
  .hover:hover .border {
    height: 14%;
  }
  .logo-overlay h1 {
    font-size: 36px;
    line-height: 36px;
  }
  .footer-info {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 2200px) {
  .card {
    min-height: 400px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .card {
    -webkit-box-flex: 30%;
        -ms-flex: 30%;
            flex: 30%;
    margin: 4px;
    height: auto;
  }
  .hover:hover .border {
    height: 48px;
  }
}

@media screen and (max-width: 1200px) {
  .hover {
    height: 100%;
  }
  footer {
    position: relative;
    margin: 20px 0 20px 0;
  }
  .footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1vh;
    padding-bottom: 1vh;
  }
  .footer-border {
    display: none;
  }
  .footer-info p,
  .footer-info a {
    padding: 4px;
    font-size: 14px;
    line-height: 14px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 20px;
    line-height: 20px;
  }
  h2 {
    font-size: 12px;
    line-height: 16px;
    padding-top: 15px;
  }
  h3 {
    font-size: 14px;
    line-height: 14px;
  }
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 10vh;
  }
  .renneks-logo {
    position: relative;
    left: 4vw;
  }
  .renneks-logo img {
    height: 60px;
  }
  .card-container {
    width: 96vw;
  }
  .card {
    -webkit-box-flex: 40%;
        -ms-flex: 40%;
            flex: 40%;
    margin: 4px;
    height: auto;
  }
  .hover:hover .border {
    height: 5vh;
  }
  .hover {
    height: 100%;
  }
  .hover h1,
  .hover h2,
  .hover h3 {
    padding: 12px;
  }
  #bus-mob {
    display: block;
  }
  #bus-mob .logo-overlay img {
    width: 36%;
  }
  #bus-desk {
    display: none;
  }
}

@supports (-webkit-touch-callout: none) {
  .logo-overlay {
    opacity: 0.001;
  }
}
/*# sourceMappingURL=style.css.map */