/* Home page */
body.home main { padding-top: 0; }

.splash {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 540px;
  background-image: url('/images/earth/sunset-2.jpg');
  background-size: cover;
  background-position: center;
}
.splash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%);
}
.splash .splash-title {
  position: absolute;
  bottom: 9rem;
  right: 3vw;
  font-size: 6.5rem;
  font-weight: 200;
  color: rgb(236, 236, 236);
  font-family: 'Barlow', sans-serif;
  letter-spacing: -0.02em;
  z-index: 1;
}

.home-blocks {
  margin: 40px 10% 0 10%;
  padding: 30px 10px;
}
.home-block {
  display: flex;
  background: #fff;
  margin-bottom: 50px;
  border-radius: 2px;
  overflow: hidden;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-block:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 2px 4px 14px rgba(0,0,0,0.08); }
.home-block .home-block-image {
  width: 65%;
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
.home-block .home-block-text {
  width: 35%;
  padding: 4%;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  color: #4a4a4a;
}
.home-block .home-block-text h3 {
  color: rgb(9, 30, 58);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}
.home-block.reverse { flex-direction: row-reverse; }

.home-about {
  background: #fff;
  margin: 40px 10%;
  padding: 2.5%;
  border-radius: 2px;
}
.home-about h3 { font-weight: 200; margin-bottom: 0.5rem; }
.home-about p { font-size: 17px; font-weight: 300; line-height: 1.55; }

@media (max-width: 1280px) {
  .home-block .home-block-text { font-size: 15px; line-height: 1.5; }
}
@media (max-width: 960px) {
  .home-blocks { margin: 30px 0 0 0; padding: 10px 0; }
  .home-block, .home-block.reverse { flex-direction: column; margin-bottom: 25px; }
  .home-block .home-block-image { width: 100%; min-height: 260px; }
  .home-block .home-block-text { width: 100%; padding: 16px 20px 24px 20px; }
  .home-about { margin: 25px 10px; padding: 16px 20px; }
  .home-about p { font-size: 14px; line-height: 1.4; }
}
@media (max-width: 660px) {
  .splash { background-image: url('/images/splash/gc-mobile.jpg'); }
  .splash .splash-title {
    bottom: 18vh;
    right: 1rem;
    font-size: 55px;
    font-weight: 400;
    color: rgb(19, 31, 43);
    text-align: right;
  }
}
