:root {
    --menu-animation-time: .25s
}

* {
    margin: 0;
    padding: 0;
    /* font-family: roboto, sans-serif; */
    font-family: 'Cabin', sans-serif;
    line-height: 1;
    z-index: 0
}

html {
    scroll-behavior: smooth
}

body {
    overflow-y: auto;
    display: block;
    overflow-x: hidden;
    top: 0;
    left: 0
}

df-messenger {
    /* --df-chat-icon-height: 100%;
    --df-chat-icon-width: 100%;
    --df-chat-icon-left: 0;
    --df-chat-icon-top: 0; */

    --df-messenger-bot-message: #26252A;
    --df-messenger-button-titlebar-color: #3b3b3b;
    --df-messenger-chat-background-color: #fafafa;
    --df-messenger-font-color: white;
    --df-messenger-send-icon: #1889FF;
    --df-messenger-user-message: #1889FF;
}

a {
    color: #fff;
    text-decoration: none !important
}

p {
    line-height: 1.5
}

div.section {
    background-color: black;
    width: 100vw;
    min-height: 101vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1vh solid #23272a;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 5%
}

.section h1 {
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    width: 100%
}

.section h2 {
    margin-top: 10px;
    font-weight: 500;
    font-size: 25px;
    color: #fff;
    text-align: center
}

div.section p.content, ul.content {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    color: #fff;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.5
}

div.normal-content img.content {
    width: 50%;
    display: block;
    margin: 0 auto
}

img.content {
    border-radius: 25px
}

div.normal-content p {
    text-align: center;
    padding-left: 20px
}

div.normal-content ul {
    padding-left: 100px
}

div.normal-content ul li {
    padding-top: 25px
}

.normal-button {
    width: 100%;
    padding: 17.5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, .5);
    margin: 35px auto 0;
    border-radius: 35px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s
}

@media(hover:hover) {
    .normal-button:hover {
        -webkit-transform: scale(1.125);
        -ms-transform: scale(1.125);
        transform: scale(1.125)
    }
}

@media screen and (min-width:700px) {
    div.normal-content {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    div.normal-content p {
        text-align: left
    }

    .normal-button {
        width: 50%
    }
}

img.emoji {
    height: 1em;
    width: 1em;
    margin: 0 .05em 0 .1em;
    vertical-align: -.1em
}

.menu-icon {
    display: inline-block;
    cursor: pointer;
    position: fixed;
    z-index: 101;
    margin: 15px;
    padding: 0;
    left: 0;
    -webkit-transition: var(--menu-animation-time);
    -o-transition: var(--menu-animation-time);
    transition: var(--menu-animation-time)
}

.top-bar,
.middle-bar,
.bottom-bar {
    width: 45px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    -webkit-transition: var(--menu-animation-time);
    -o-transition: var(--menu-animation-time);
    transition: var(--menu-animation-time)
}

.toggle-menu .top-bar {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transform: rotate(-45deg) translate(-9px, 6px);
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    -ms-transform: rotate(-45deg) translate(-9px, 6px)
}

.toggle-menu .middle-bar {
    opacity: 0
}

.toggle-menu .bottom-bar {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transform: rotate(45deg) translate(-8px, -8px);
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    -ms-transform: rotate(45deg) translate(-8px, -8px)
}

#menu-area {
    position: fixed;
    z-index: 100;
    display: inline-block;
    background-color: rgba(0, 0, 0, .5);
    -webkit-transition: var(--menu-animation-time);
    -o-transition: var(--menu-animation-time);
    transition: var(--menu-animation-time);
    width: 100vw;
    height: 100vh;
    left: -100vw
}

#menu-area.toggle-menu {
    transform: translate(100vw);
    -webkit-transform: translate(100vw);
    -ms-transform: translate(100vw)
}

#page-body {
    display: none
}

div.menu-head {
    height: 70px;
    width: 100%;
    background-color: rgb(3, 54, 148);
    opacity: 1;
    z-index: 101
}

img.menu-head {
    display: block;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
}

ul.menu-items {
    z-index: 101;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 8.75px;
    list-style: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 35px;
    text-align: center
}

ul.menu-links {
    max-width: 100%;
    margin: 0 auto
}

ul.menu-items li {
    height: auto;
    margin-bottom: 8.75px;
    padding: 0;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all var(--menu-animation-time);
    -o-transition: all var(--menu-animation-time);
    transition: all var(--menu-animation-time)
}

@media(hover:hover) {
    ul.menu-items li:hover {
        font-size: 45px
    }
}

ul.menu-social {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    padding-top: 17.5px
}

ul.menu-social::before {
    position: absolute;
    content: '';
    width: 150px;
    height: 8px;
    top: 0;
    left: 0;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(75%);
    -ms-transform: translate(75%);
    transform: translate(75%);
    background-color: #8860d0;
    opacity: .75;
    border-radius: 4px
}

.menu-social li {
    display: inline;
    padding: 0 1vw;
    vertical-align: middle
}

@media screen and (max-height:500px) {
    ul.menu-items {
        font-size: 7vh;
        padding-top: 1.8vh
    }

    ul.menu-items li {
        margin-bottom: 1.8vh
    }

    div.menu-head {
        height: 14vh
    }

    ul.menu-social {
        padding-top: 3.6vh
    }

    ul.menu-social::before {
        height: 1.5vh;
        border-radius: .75vh
    }
}

@media screen and (min-width:400px) {
    .menu-icon.toggle-menu {
        transform: translate(300px);
        -webkit-transform: translate(300px);
        -ms-transform: translate(300px)
    }

    #menu-area {
        width: 300px;
        height: 100vh;
        left: -300px
    }

    #menu-area.toggle-menu {
        transform: translate(300px);
        -webkit-transform: translate(300px);
        -ms-transform: translate(300px)
    }

    #page-body.toggle-menu {
        display: block;
        width: calc(100vw - 300px);
        height: 100vh;
        position: fixed;
        z-index: 10;
        visibility: visible;
        background-color: transparent;
        right: 0
    }

    ul.menu-social::before {
        -webkit-transform: translate(50%);
        -ms-transform: translate(50%);
        transform: translate(50%)
    }
}

div.splash {
    background-image: url(../assets/bg-splash.jpg);
    height: 100vh
}

.splash-image {
    width: 100%;
    height: 100%;
    opacity: .6;
    background-image: url(../assets/avatar-circle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 50px;
    color: white;
    text-align: center;
    padding-top: 10vh;
}

@media screen and (min-width:425px) {
    .splash-image {
        background-size: 425px;
        padding-top: 68vh;
    }
}

p.splash-scroll {
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    width: 8vh;
    height: 8vh;
    color: #fff;
    opacity: .75;
    font-size: 4vh;
    padding-top: 2vh;
    padding-bottom: 2vh;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2;
    transform: translate(0, -15vh);
    -webkit-transform: translate(0, -15vh);
    -ms-transform: translate(0, -15vh);
    background-color: rgba(0, 0, 0, .5);
    border-radius: 25vw;
    cursor: pointer;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s
}

@media(hover:hover) {
    p.splash-scroll:hover {
        -webkit-transform: scale(1.25) translate(0, -12vh);
        -ms-transform: scale(1.25) translate(0, -12vh);
        transform: scale(1.25) translate(0, -12vh)
    }
}

h3.about {
    font-weight: bold;
    font-size: 2.5em;
    font-style: italic;
    color: #FF3336;
    text-align: center;
}

h3.quote {
    padding: 1em 0 0 0;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    font-size: 1.25em;
    color: #E5E5E5;
    width: 100%;
}

p.quote {
    color: #E5E5E5;
    font-size: 1.25em;
    text-align: center;
}

div.about {
    background-image: url(../assets/bg-about.gif);
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, .65);
}

div.features {
    background-image: url(../assets/bg-features.jpg);
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, .65);
}

@media(hover:hover) {
    .spin:hover {
        transition: .5s;
        transform: rotate(360deg)
    }
}

div.help {
    background-color: rgb(97, 1, 65);
}

div.story {
    background-image: url(../assets/bg-timeline.jpg);
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, .65);
}

.timeline {
    position: relative;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.timeline::after {
    content: '';
    border-radius: 3px;
    position: absolute;
    background-color: #fff;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    margin-left: -3px;
    z-index: 2
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 3
}

.timeline-content {
    padding: 20px 30px;
    background-color: #2c2f33;
    position: relative;
    border-radius: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #fff;
    color: #fff
}

.timeline-content h1,
h2,
h3 {
    font-weight: 500;
    line-height: 1.5
}

.timeline-content p {
    font-weight: 400;
    line-height: 1.5
}

.timeline-content img:not(.emoji) {
    border-radius: 10px;
    display: block;
    margin: 10px auto 0
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #2c2f33;
    top: 15px;
    border-radius: 50%;
    border: 2px solid #fff
}

.timeline-left {
    left: 0
}

.timeline-left::after {
    right: -14.5px
}

.timeline-right {
    left: 50%
}

.timeline-right::after {
    left: -14.5px
}

@media screen and (max-width:600px) {
    .timeline::after {
        left: 0
    }

    .timeline-container {
        width: 100%;
        left: 0
    }

    .timeline-container::after {
        left: -14.5px
    }
}

div.vote {
    background-image: url(../assets/bg-vote.gif);
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, .6);
}

div.vote div.normal-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

div.vote div.normal-content img {
    margin: 10px 5px;
    max-width: 100%
}

div.footer {
    background-color: #23272a;
    width: 100%;
    overflow: wrap;
    text-align: center;
    color: #fff;
    border-bottom: 1vh solid #23272a
}

/* Popup box */
.link {
    text-decoration: underline; 
    color:blue;
}

.link .fas {
    font-size: 0.8em;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 200;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }
  
  .popup {
    margin: 70px auto;
    padding: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 25px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
  }
  
  .popup h1 {
    margin-top: 0;
    margin-right: 25px;
    color: #333;
    font-size: 1.5em;
    background-color: white;
  }
  .popup .close {
    position: absolute;
    top: 15px;
    right: 25px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup .close:hover {
    color: red;
    cursor: pointer;
  }
  .popup .content {
    max-height: 30vh;
    overflow: auto;
  }
  .popup .content div.buttons {
    display: flex;
    flex-wrap: wrap;
  }
  .popup .content div.buttons p {
      padding: 0.05em 0.7em;
      margin: 0.25em 30px;
      color: white;
      text-align: center;
      font-size: 1.25em;
      border-radius: 0.5em;
      background-color: black;
      transition: .25s;
  }

  .popup .content div.buttons a {
        flex: 1;
  }

  .popup .content div.buttons p .fas {
    font-size: 0.8em;
}

  @media(hover:hover) {
    .popup .content div.buttons p:hover {
        transform: scale(1.125);
        cursor: pointer;
    }
}
  
  @media screen and (max-width: 700px){
    .popup{
      width: 70%;
    }
  }

  /* Ads */
@media screen and (max-width: 728px) {
    .ad_728x90 iframe {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
    }
}