@charset "UTF-8";
header h1 {
  padding: 0.7rem 1.75rem 0.7rem 1rem;
  border-radius: 20rem;
}
/* Base Styles */
article,
section {
  position: relative;
  z-index: 5;
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--purple);
}

#hero .inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero h1 {
  color: white;
  font-size: 3rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#hero .photo-grid {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  display: flex;
  gap: 12px;
  transform: rotate(-3deg);
  opacity: 0.6;
  z-index: 1;
}

#hero .photo-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

#hero .photo-column.column-1,
#hero .photo-column.column-3,
#hero .photo-column.column-5 {
  animation: scrollUp 60s linear infinite;
}

#hero .photo-column.column-2,
#hero .photo-column.column-4 {
  animation: scrollDown 60s linear infinite;
}

#hero .item {
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}

#hero .item img[src*="contents_"] {
  aspect-ratio: 16 / 9;
}

#hero .item img[src*="live_"] {
  aspect-ratio: 4 / 3;
}

#hero .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-33.33%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-33.33%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--purple);
  z-index: 100;
}

#hero .bg {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: var(--orange);
  border: solid 1px var(--purple);
  backdrop-filter: blur(20px);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.94;
}

#hero .title h1 {
  margin-bottom: 1rem;
  font-size: 9.5vw;
  line-height: 1.4;
  white-space: nowrap;
  color: var(--white);
  text-shadow: 4px 4px 0 var(--purple);
}

#hero .title h1 em {
  display: block;
  font-weight: 800;
  opacity: 0.9;
  font-size: 23.5%;
  line-height: 1.2;
}

#hero .title h1 span {
  font-weight: 900;
  letter-spacing: 0.075em;
  display: block;
  text-indent: 0.7em;
}

#hero .title p {
  font-size: 1.7vw;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

/* Company Section */
#company {
  background: var(--purple);
  color: var(--orange);
  display: flex;
  align-items: stretch;
  height: 100vh;
  position: relative;
  z-index: 10;
}

#company .inner {
  position: relative;
  width: 100%;
  height: 100%;
}

#company .left {
  position: relative;
  left: 2.5%;
  top: 15%;
  text-align: left;
  z-index: 5;
}

#company .left h2 {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 900;
  display: block;
  color: var(--green-color);
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

#company .left .name {
  font-size: 4vw;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

#company .left .name span {
  display: block;
  letter-spacing: -0.05em;
  font-size: 94.5%;
}

#company .left .name small {
  display: block;
  font-size: 30%;
  letter-spacing: 0.74em;
  padding: 0.85em 0 0 0.2em;
  line-height: 1.5;
  color: var(--orange);
}

#company .left .name small em {
  display: block;
  letter-spacing: 1.24em;
}

#company .right {
  position: absolute;
  right: 5%;
  bottom: 5%;
  text-align: right;
  z-index: 5;
  color: var(--purple);
}

#company .right h3 {
  font-size: 1.8vw;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.35em;
  color: var(--purple);
}

#company .right p {
  font-size: 1.1vw;
  letter-spacing: 0.15em;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 0.75em;
  text-align: left;
  color: var(--black);
}

#company .btn {
  margin-top: 0.75em;
}

#company .btn a {
  background: var(--purple);
  color: var(--white);
}

#company .filmcamera {
  display: block;
  background: url("../images/filmcamera.svg") no-repeat;
  background-size: cover;
  width: 20rem;
  padding-top: calc(1.53 * 20rem);
  position: absolute;
  bottom: 0;
  left: 10rem;
}

#company .filmcamera:before {
  content: "";
  display: block;
  background: url("../images/film.svg") no-repeat;
  background-size: 100% 100%;
  width: 24%;
  height: 24%;
  position: absolute;
  top: 11%;
  left: 29%;
  animation: 5s linear infinite rotate02;
  transform-origin: center 52%;
}

#company .filmcamera:after {
  content: "";
  display: block;
  background: url("../images/film.svg") no-repeat;
  background-size: 100% 100%;
  width: 27%;
  height: 27%;
  position: absolute;
  top: 10%;
  left: 60.5%;
  animation: 5s linear infinite rotate02;
  transform-origin: center 52%;
}

#company .filmlight {
  position: absolute;
  display: block;
  background: url("../images/filmlight.svg") no-repeat left center;
  background-size: cover;
  left: calc(30rem + 2px);
  width: 0;
  padding-top: calc(0.75 * 200rem);
  bottom: -55.9rem;
  opacity: 1;
  transition: 2s;
}

#company .filmlight.active {
  width: 200rem;
}

/* Gachi Section */
#gachi {
  height: 400vh;
  background: var(--orange);
  color: var(--purple);
  position: relative;
}

/* bg img layer: sticky inside #gachi, viewport-sized */
.gachi-bg-layer {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 4;
  pointer-events: none;
  margin-bottom: -100vh;
  visibility: hidden;
}
#gachi.gachi-active .gachi-bg-layer {
  visibility: visible;
}
.gachi-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: block;
}
.gachi-bg-img.active {
  opacity: 1;
}

#gachi:before {
  content: "";
  display: block;
  background: var(--orange);
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0.55;
  pointer-events: none;
  visibility: hidden;
  margin-bottom: -100vh;
}
#gachi.gachi-active:before {
  visibility: visible;
}

#gachi .inner {
  padding: 5vh 5%;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  visibility: hidden;
}
#gachi.gachi-active .inner {
  visibility: visible;
}

.gachi-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70vh;
  gap: 15rem;
}

#gachi h2 {
  font-size: 6rem;
  line-height: 1;
  font-weight: 900;
  display: block;
  color: var(--white);
  text-shadow: 4px 4px 0 var(--purple);
  margin-bottom: 0.5em;
  position: relative;
}

#gachi h2 small {
  display: block;
  font-size: 35%;
  letter-spacing: -0.025em;
  transform: translateX(4em) translateY(2.5em);
}

#gachi h2 strong {
  line-height: 1;
  font-size: 180%;
}

#gachi h2 strong:first-of-type {
  font-size: 300%;
}

/* Circle Navigation */
#gachi .circle-container {
  position: relative;
  width: 50vh;
  height: 50vh;
  z-index: 10;
}

#gachi .circle {
  width: 50vh;
  height: 50vh;
  border: 2px solid var(--purple);
  border-radius: 50%;
  position: absolute;
  transform-origin: center;
  transition: transform 0.1s ease-out;
}

#gachi .circle ul {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

#gachi .circle-item,
#gachi .item {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  transform-origin: center;
  white-space: nowrap;
  line-height: 1.1;
}

#gachi .circle-item:nth-child(1),
#gachi .item:nth-child(1) {
  top: 50%;
  right: -5rem;
  transform: translateY(-50%);
}

#gachi .circle-item:nth-child(2),
#gachi .item:nth-child(2) {
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
}

#gachi .circle-item:nth-child(3),
#gachi .item:nth-child(3) {
  top: 50%;
  left: -5rem;
  transform: translateY(-50%);
}

#gachi .circle-item:nth-child(4),
#gachi .item:nth-child(4) {
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
}

#gachi .circle-item span,
#gachi .item span {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  padding: 5px;
  transform: rotate(0deg);
}

#gachi .circle-item span img {
  width: 2.2em;
  height: 2.2em;
  display: block;
  margin: 0 auto 2px auto;
}

#gachi .circle-item:nth-child(1) span img,
#gachi .circle-item:nth-child(2) span img {
  width: 2.4em;
  height: 2.4em;
}

#gachi .circle-item span em,
#gachi .item span em {
  display: block;
  font-size: 82%;
  font-weight: 500;
  margin-bottom: 2px;
}

#gachi .circle-item.active,
#gachi .item.active {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.6);
}

#gachi .circle-item:nth-child(1).active,
#gachi .item:nth-child(1).active {
  top: 50%;
  right: -8rem;
  transform: translateY(-50%) translateX(0rem) scale(1.6);
}

#gachi .circle-item:nth-child(2).active,
#gachi .item:nth-child(2).active {
  top: -8rem;
  left: 50%;
  transform: translateX(-50%) translateY(0rem) scale(1.6);
}

#gachi .circle-item:nth-child(3).active,
#gachi .item:nth-child(3).active {
  top: 50%;
  left: -8rem;
  transform: translateY(-50%) translateX(0rem) scale(1.6);
}

#gachi .circle-item:nth-child(4).active,
#gachi .item:nth-child(4).active {
  bottom: -8rem;
  left: 50%;
  transform: translateX(-50%) translateY(0rem) scale(1.6);
}

#gachi .circle-item.active span,
#gachi .item.active span {
  color: var(--white);
}

.gachi-content {
  position: relative;
  z-index: 5;
  width: 80vh;
}

.gachi-content > div {
  display: none;
  text-align: left;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: var(--purple);
  color: var(--orange);
  padding: 2em;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.gachi-content > div.active,
.gachi-content.gachi01 .gachi01,
.gachi-content.gachi02 .gachi02,
.gachi-content.gachi03 .gachi03,
.gachi-content.gachi04 .gachi04 {
  display: block;
  opacity: 1;
}

.gachi-content h3 {
  font-size: 3.5vw;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
  color: var(--white);
}

.gachi-content p {
  font-size: 1.1vw;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 1em;
  color: var(--white);
}
/* Works Section */
#works {
  background: var(--purple);
  color: var(--orange);
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
}

#works .production-background {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
}

#works .carousel-lane {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 200vh;
  animation: slideVertical 40s linear infinite;
}

#works .carousel-lane-1,
#works .carousel-lane-3 {
  flex: 1;
}

#works .carousel-lane-2,
#works .carousel-lane-4 {
  flex: 1.4;
}

#works .carousel-lane-1 {
  animation-direction: normal;
  animation-delay: 0s;
}

#works .carousel-lane-2 {
  animation-direction: reverse;
  animation-delay: -8s;
}

#works .carousel-lane-3 {
  animation-direction: normal;
  animation-delay: -16s;
}

#works .carousel-lane-4 {
  animation-direction: reverse;
  animation-delay: -24s;
}

#works .carousel-lane img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 2px;
  flex-shrink: 0;
}

#works .content-img {
  aspect-ratio: 16 / 9;
}

#works .live-img {
  aspect-ratio: 1 / 1.413;
}

@keyframes slideVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

#works .box {
  position: absolute;
  padding: 2em;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: var(--purple);
  color: var(--white);
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#works h2 {
  font-size: 3.5vw;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
  color: var(--white);
}

#works .box p {
  font-size: 1.1vw;
  font-weight: 600;
  line-height: 1.8;
  margin: 1em 0;
  color: var(--white);
}

#works .btn {
  position: relative;
  text-align: right;
}

#works .btn a {
  background: var(--orange);
  color: var(--white);
}

/* News Section */
#news h2 {
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
}

/* Message Section */
#message {
  background: var(--purple);
  color: var(--white);
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
#message::before {
  content: "";
  display: block;
  background: var(--purple);
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: 3;
}
#message .inner {
  position: absolute;
  top: calc(5% + 8rem);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 5;
}
#message p {
  font-weight: 900;
  font-size: 2.7vw;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 0.75em;
  color: var(--white);
}
#message h2 {
  text-align: center;
  font-size: 5.5vw;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--white);
  z-index: 6;
  display: inline-block;
  white-space: nowrap;
}
#message h2 strong {
  display: block;
  font-size: 136%;
  position: relative;
  z-index: 4;
}
#message h2:after {
  content: "";
  display: block;
  height: 0.5em;
  width: 11em;
  background: var(--orange);
  position: absolute;
  bottom: -0.065em;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#message .earth {
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  background: url("../images/world.svg") repeat-x var(--purple);
  background-size: 100% auto;
  animation: bgroop 40s linear infinite;
  transform: rotate(-14deg);
  z-index: 2;
}

#message .earth:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: solid 4px var(--white);
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  margin: 0 auto;
}

#message .stars {
  position: absolute;
  display: block;
  width: 300%;
  height: 300%;
  background: url("../images/stars.svg") repeat center center;
  background-size: 33.333% auto;
  top: 50%;
  left: 50%;
  opacity: 0.35;
  animation: 270s linear infinite rotate03;
  transform-origin: left top;
  pointer-events: none;
}

@keyframes bgroop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100vw 0;
  }
}

@keyframes rotate02 {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate03 {
  0% {
    transform: rotate(0) translate(-50%, -50%);
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}

/* Join Us Section */
#joinUs {
  background: url("../images/bg_urapro.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  height: 80vh;
  text-align: center;
  position: relative;
}

#joinUs:before {
  content: "";
  display: block;
  background-image: radial-gradient(circle, var(--purple) 0.5px, transparent 0.5px);
  background-position: 0 0;
  background-size: 6px 6px;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 2;
}

#joinUs .inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  z-index: 10;
}

#joinUs h2 {
  font-size: 4.6vw;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  position: relative;
  z-index: 5;
}

#joinUs h2 strong {
  font-size: 170%;
  font-weight: 800;
  display: block;
  color: var(--orange);
}

#joinUs .btn {
  margin-top: 3.5em;
}

#joinUs .btn a {
  font-size: 3vw;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--white);
  background: var(--purple);
  padding: 0.5em 2em 0.5em 1em;
}

#joinUs .btn a small {
  display: block;
  font-size: 28%;
  letter-spacing: -0.05em;
  padding-bottom: 0.25em;
  text-indent: -0.55em;
  color: var(--orange);
}

@media screen and (max-width: 999px) {
  header h1 {
    padding: 0;
    border-radius: 0;
  }
  #hero {
    height: 70svh;
  }
  #hero .photo-grid {
    left: -10%;
    width: 120%;
  }
  #hero .photo-column.column-4,
  #hero .photo-column.column-5 {
    display: none;
  }

  #hero .title h1 {
    font-size: 16vw;
    white-space: normal;
  }
  #hero .title h1 em {
    text-shadow: 2px 2px 0 var(--purple);
  }
  #hero .title {
    width: 80%;
    top: calc(50% + 3rem);
  }
  #hero .title p {
    font-size: 2.8vw;
  }
  #hero .bg {
    top: -30px;
    left: -20px;
    right: -20px;
    bottom: -30px;
  }
  /* Company Section */
  #company {
    display: block;
    height: auto;
    overflow: hidden;
    padding: 10% 2rem 0;
  }
  #company .left {
    position: relative;
    left: 0;
    top: 0;
  }

  #company .left h2 {
    font-size: 3rem;
  }

  #company .left .name {
    font-size: 6.5vw;
  }
  #company .right {
    position: relative;
    right: 0;
    bottom: 0;
    text-align: right;
    padding-top: 10%;
  }

  #company .right h3 {
    font-size: 24px;
    color: var(--orange);
  }
  #company .right p {
    font-size: 14px;
    color: var(--white);
  }

  #company .btn {
    margin: 7em 0 7.5em;
  }

  #gachi {
    height: 400vh;
    overflow: visible;
    background-attachment: local;
  }
  #gachi .inner {
    position: sticky;
    top: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 8vh 2rem;
    overflow: hidden;
  }
  .gachi-container {
    flex-direction: column;
    height: auto;
    gap: 5vh;
    width: 100%;
    align-items: center;
  }
  #gachi h2 {
    font-size: 3.4rem;
    text-shadow: 4px 4px 0 var(--purple);
    margin-bottom: 0.5em;
  }

  #gachi h2 small {
    text-shadow: 3px 3px 0 var(--purple);
  }

  #gachi h2 strong:first-of-type {
    font-size: 300%;
  }
  .gachi-content {
    width: 100%;
    max-width: 100%;
  }
  .gachi-content > div {
    padding: 2rem;
  }
  #gachi .circle-item span,
  #gachi .item span {
    font-size: 1.4rem;
  }

  .gachi-content h3 {
    font-size: 24px;
  }
  .gachi-content p {
    font-size: 14px;
  }
  #gachi .circle-container {
    width: 40vw;
    height: 40vw;
  }
  #gachi .circle {
    width: 40vw;
    height: 40vw;
  }
  #gachi .circle-item,
  #gachi .item {
    width: 8rem;
    height: 8rem;
  }
  #gachi .circle-item:nth-child(1),
  #gachi .item:nth-child(1) {
    top: 50%;
    right: -4rem;
    left: auto;
    transform: translateY(-50%);
  }
  #gachi .circle-item:nth-child(2),
  #gachi .item:nth-child(2) {
    top: -4rem;
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
  }
  #gachi .circle-item:nth-child(3),
  #gachi .item:nth-child(3) {
    top: 50%;
    left: -4rem;
    transform: translateY(-50%);
  }
  #gachi .circle-item:nth-child(4),
  #gachi .item:nth-child(4) {
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
  }
  #gachi .circle-item.active,
  #gachi .item.active {
    background: var(--purple);
    transform: scale(1.4);
  }
  #gachi .circle-item:nth-child(1).active,
  #gachi .item:nth-child(1).active {
    right: -5rem;
    transform: translateY(-50%) scale(1.4);
  }
  #gachi .circle-item:nth-child(2).active,
  #gachi .item:nth-child(2).active {
    top: -5rem;
    transform: translateX(-50%) scale(1.4);
  }
  #gachi .circle-item:nth-child(3).active,
  #gachi .item:nth-child(3).active {
    left: -5rem;
    transform: translateY(-50%) scale(1.4);
  }
  #gachi .circle-item:nth-child(4).active,
  #gachi .item:nth-child(4).active {
    bottom: -5rem;
    transform: translateX(-50%) scale(1.4);
  }
  #company .filmcamera {
    width: 12rem;
    padding-top: calc(1.53 * 12rem);
    left: 2rem;
  }
  #company .filmlight {
    left: calc(14rem + 2px);
    padding-top: calc(0.75 * 120rem);
    bottom: -33.54rem;
  }
  #company .filmlight.active {
    width: 120rem;
  }

  #works {
    height: 70vh;
    padding: 10% 0 0;
    display: block;
  }
  #works .inner {
    position: static;
    transform: none;
  }

  #works .production-background {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #works .carousel-lane {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 200vh;
    animation: slideVertical 40s linear infinite;
  }

  #works .box {
    position: relative;
    padding: 0 2rem 10%;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    height: auto;
  }

  #works h2 {
    font-size: 24px;
  }

  #works .box p {
    font-size: 14px;
    margin: 1em 0;
    color: var(--white);
  }

  #news {
    padding: 10% 0;
  }

  #news h2 {
    font-size: 3.5rem;
    margin-bottom: 1em;
  }

  #message {
    height: 50vh;
    padding: 10% 0;
    display: block;
  }
  #message .inner {
    position: relative;
    transform: none;
    top: 0;
  }
  #message p {
    font-size: 18px;
    font-weight: 800;
  }
  #message h2 {
    font-size: 30px;
    white-space: normal;
  }
  #message h2:after {
    width: 11.5em;
  }
  #message .earth {
    top: 50%;
  }

  #joinUs {
    height: auto;
    padding: 10% 5%;
    background-attachment: scroll;
  }
  #joinUs .inner {
    position: static;
    transform: none;
  }
  #joinUs h2 {
    font-size: 20px;
  }
  #joinUs h2 strong {
    margin-bottom: 0.5em;
    font-size: 200%;
  }
  #joinUs .btn {
    margin-top: 2.5em;
  }
  #joinUs .btn a {
    font-size: 28px;
  }
}
