/* HOMEPAGE MODULE */
#mod-custom110, #mod-custom111 {
  display: flex;
  width: 100%;
  height: auto;
  flex-flow: row wrap;
  min-height: 100vh;
  justify-content: center;
  align-content: center;
  padding: 50px;
  overflow: hidden }

#mod-custom110::before, #mod-custom111::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  content: "";
  background-color: #FFFFFF }


/* LOGO */
.logo-wrapper { 
  flex: 1 1 100%; 
  text-align: center }

.logo-wrapper svg { 
  width: 50vw;
  max-width: 350px;
  height: auto;
  animation-name: animateLogo;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards }

  @media (min-width:1081px) { .logo-wrapper svg { width: 20vw }}

  @keyframes animateLogo {
    0% { transform: scale(1) }
    80% { transform: scale(0.9) }
    100% { transform: scale(1) }}

.logo-wrapper svg #planet { fill: var(--secondary) }
.logo-wrapper svg #eagle { fill: var(--primary) }
.logo-wrapper svg #letters { fill: var(--primary) }


/* COMING SOON */
.incoming {
  display: block;
  position: relative;
  flex: 1 1 100%;
  font-size: 24px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  color: var(--secondary);
  margin-top: 20px;
  z-index: 1 }

.incoming > span:nth-of-type(7) { margin-left: 10px }