/* Basics */
@font-face {
    font-family: athelas;
    src: url(../fonts/Athelas-Regular.woff);
}

body {
    font-size: 18px;
    font-family: athelas, serif;
    font-weight: 400;
    font-style: normal;
    line-height: 26px;
    color: #333333;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.fixedPosition
 {
    position: fixed;
    width: 100%;
 }

/* Jumbo Image Area */
.jumbo-img {
    background-image: url("../images/ring.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

header {
    width: 100%;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: auto;
    height: 180px;
    position: relative;
    bottom: 64px;
    margin: 0 20px;
}

.menu {
    display: flex;
}

.menu a {
    margin: 0 24px;
    height: 22px;
    color: #551e35;
    text-decoration: none;
    text-transform: uppercase;
}

.desktop a {
    text-shadow: 0px 0px 3px #FFFFFF;
}

.mobile a {
    color: #eedcd0;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,0.5);
}

.desktop a:after {
    display:block;
    content: '';
    border-bottom: solid 2px #551e35;  
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
  }

.desktop a:hover:after { transform: scaleX(1); }

.desktop a.fromLeft:after{  transform-origin:  0% 50%; }
  
.menu__icon {
height: 27px;
width: 43px;
position: relative;
top: 10px;
right: 20px;
display: none;
vertical-align: middle;
z-index: 20;
}

.menu__icon span {
display: block;
background: #eedcd0;
width: 100%;
height: 4px;
margin-top: -2px;
position: absolute;
left: 0;
top: 50%;
box-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,0.5);
}

.menu__icon:before,
.menu__icon:after {
content: "";
display: block;
background: #eedcd0;
box-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,0.5);
width: 100%;
height: 4px;
position: absolute;
left: 0;
transform-origin: center center;
transform: rotate(0deg);
transition: all 0.3s ease;
}

.menu__icon:before {
top: 2px;
margin-top: -2px;
}

.menu__icon:after {
bottom: 2px;
margin-bottom: -2px;
}

.menu_shown .menu__icon span {
background: transparent;
box-shadow: none;
}

.menu_shown .menu__icon:before {
top: 50%;
transform: rotate(45deg);
}

.menu_shown .menu__icon:after {
bottom: 50%;
transform: rotate(-45deg);
}

.mobile.menu {
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100vh;
text-align: center;
padding-top: 112px;
background: rgba(0, 0, 0, 0.7);
z-index: 10;
transition: all 0.4s ease-in-out;
transform: translateX(-100%);
}

.menu_shown .mobile.menu {
transform: translateX(0);
}

.mobile .menu__item {
display: block;
line-height: 23px;
padding: 35px 0;
font-size: 1.8em;
}

.mobile-logo {
    display: none;
    position: absolute;
    left: 20px;
    top: 20px;
}

.mobile-logo img {
    width: auto;
    height: 100px;
    position: relative;
    z-index: 99;
}

@media only screen and (max-width: 870px) {
    .desktop {
        display: none;
    }

    .menu__icon {
        display: inline-block;
    }

    .menu {
        flex-direction: column;
    }

    header {
        height: 80px;
        justify-content: flex-end;
    }

    .mobile-logo {
        display: block;
    }
}

@media (min-width: map-get(viewport_size, l)) {
.mobile {
    display: none;
}

.desktop {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
}

.arrow-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
}

.fa-angle-double-down {
    color: #551e35;
    text-shadow: 0px 0px 3px #FFFFFF;
    font-size: 1.4em;
  }

  .bounce {
    display: inline-block;
    position: relative;
    -moz-animation: bounce 0.5s infinite linear;
    -o-animation: bounce 0.5s infinite linear;
    -webkit-animation: bounce 0.5s infinite linear;
    animation: bounce 0.5s infinite linear;
  }

  @-webkit-keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }
  @-moz-keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }
  @-o-keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }
  @-ms-keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }
  @keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }

/* Main Content */
.going-live {
    display: flex;
}

.going-live-img {
    height: 900px;
    width: 50%;
    max-width: 700px;
    display: block;
    background-image: url("../images/close.jpg");
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}

.going-live img {
    display: none;
    width: 100%;
    height: auto;
}

.gl-info {
    padding: 80px 80px 10px;
    width: 50%;
    margin: 0 auto;
}

.gl-info h1 {
    text-transform: uppercase;
    color: #551e35;
    font-size: 48px;
    line-height: 50px;
}

.gl-info hr {
    width: 78px;
    border-width: 1px;
    border-color: #551e35;
    margin-left: 0;
    text-align: left;
    margin: 40px 0;
}

@media only screen and (max-width: 1274px) {
    .gl-info h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .gl-info hr {
        width: 52px;
        margin: 20px 0;
    }

    .gl-info p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 1155px) {
    .gl-info h1 {
        font-size: 48px;
        line-height: 50px;
    }

    .gl-info hr {
        width: 78px;
        margin: 40px 0;
    }

    .gl-info p {
        font-size: 18px;
        line-height: 26px;
    }

    .going-live {
        flex-direction: column-reverse;
    }

    .going-live-img {
        display: none;
    }

    .gl-info {
        padding: 80px 80px 80px;
        width: unset;
    }
}

@media only screen and (max-width: 585px) {
    .gl-info {
        padding: 80px 40px;
    }
}

@media only screen and (max-width: 505px) {
    .gl-info h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .gl-info hr {
        margin: 20px 0;
    }
}

/* Bottom Area */
.together-img {
    background-image: url("../images/together.jpg");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 1000px;
}

@media only screen and (max-width: 750px) {
    .together-img {
        display: none;
    }

    .going-live img {
        display: block;
        max-width: 751px;
    }
}

/* Footer */
.date-ft {
    background-color: #551e35;
    padding: 80px 14px;
    text-align: center;
}

.date-time {
    color: #f2ede7;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-time h2 {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
    font-size: 50px;
    line-height: 60px;
    max-width: 302px;
}

.date-time h2:first-child {
    padding-right: 50px;
    position: relative;
    left: 20px;
}

.date-time h2:last-child {
    padding-left: 50px;
}

.dt-word {
    font-size: 30px;
    letter-spacing: 5px;
}

.dt-pm {
    font-size: 40px;
}

.date-time hr {
    height: 100px;
    margin: 0;
}

.watchlive-btn {
    background-color: #f2ede7;
    color: #551e35;
    text-decoration: none;
    border-radius: 4px;
    padding: 10px 20px;
}

@media only screen and (max-width: 765px) {
    .date-time h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .date-time h2 span {
        font-size: 30px;
    }
}

@media only screen and (max-width: 590px) {
    .date-time {
        flex-direction: column-reverse;
    }

    .date-time hr {
        height: 0;
        width: 100px;
    }

    .date-time h2:first-child {
        padding-top: 10px;
        padding-right: 0;
        left: 0;
    }

    .date-time h2:last-child {
        padding-left: 0;
        padding-bottom: 10px;
        padding-top: 0;
    }
}

/* Internal Pages */
.internal-img {
    background-image: url("../images/ring.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    height: 300px;
    width: 100%;
}

.internal-info {
    padding: 80px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.internal-info h1 {
    text-transform: uppercase;
    color: #551e35;
    font-size: 48px;
    line-height: 50px;
}

.internal-info hr {
    width: 78px;
    border-width: 1px;
    border-color: #551e35;
    margin-left: 0;
    text-align: left;
    margin: 40px auto;
}

.internal-info p {
    margin-bottom: 50px;
}

.registry-btn {
    width: 100%;
    max-width: 190px;
    height: 80px;
    border: 1px solid lightgray;
    border-radius: 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-bottom: 20px;
}

#amazon-gr {
    background-image: url("../images/amazon.png");
    background-color: #231F20;
    margin-right: 20px;
}

#target-gr {
    background-image: url("../images/target.png");
    background-color: #CC0300;
}

@media only screen and (max-width: 600px) {
    .internal-info {
        padding: 80px 40px;
    }

    .internal-info h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .internal-info hr {
        width: 52px;
        margin: 20px auto;
    }

    .internal-info p {
        font-size: 16px;
        line-height: 24px;
    }

    #amazon-gr {
        margin-right: 0;
    }
}

/* Watch Live */
#countdown {
    color: black;
    display: flex;
    max-width: 360px;
    justify-content: center;
    margin: 0 auto;
  }
  
  #countdown .countdown-section {
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.36);
  }
  
  #countdown .countdown-section:last-child {
    border-right: 0;
  }
  
  #countdown .countdown-section .h1 {
    opacity: 0.75;
  }
  
  #countdown .countdown-section .text-center {
    color: black;
    opacity: 1.0
  }

  @media only screen and (max-width: 290px) {
      #countdown {
          flex-direction: column;
      }
  }

  /* Gallery */
  .grid:after {
    content: '';
    display: block;
    clear: both;
  }
  
    /* fluid 5 columns */
    .grid-sizer,
    .grid-item { width: 33.333%; }
    /* 2 columns */
    .grid-item--width2 { width: 66.666%; }

  
  /* To change the amount of columns on larger devices, uncomment the code below */
  
  /* @media (min-width: 768px) and (max-width: 991px) {
    .grid-sizer,
    .grid-item {
      width: 33.333%;
    }
  }
  @media (min-width: 992px) and (max-width: 1199px) {
    .grid-sizer,
    .grid-item {
      width: 25%;
    }
  }
  @media (min-width: 1200px) {
    .grid-sizer,
    .grid-item {
      width: 20%;
    }
  } */
  
  .grid-item {
    float: left;
  }
  
  .grid-item img {
    display: block;
    max-width: 100%;
  }