
/* device */
.device-phone {display:none;}
.device-desktop {display:block;}

@media (max-width : 720px) {
    .device-phone {display:block;}
    .device-desktop {display:none;}
}
/* font */
body {
    font-family: 'Open Sans';
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    overflow: hidden; /* Hide scrollbars */
    background-color: #000000;
}

/* placeholder */
.hero-placeholder {
    position: absolute;
    color: white;
    z-index: 100;
    width: 100%;
    text-align: center;
    bottom: 11px;
    font-style: italic;
    opacity: 70%;
  }

/*
================================================
                DESKTOP VERSION
================================================
*/

/* play button in case of block */
.hero-play-button-desktop {
    position: absolute;
    right: 0%;
    top: 60px;
    margin-right: 10px;
    margin-top: 10px;
    color: white;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    transition: 0.1s;
    z-index: 11;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    /*border: 3px solid;*/
    font-size: 18px;
}

.hero-play-button-desktop:hover {
    background-color: DodgerBlue;
    cursor: pointer;
}

/* video */
.hero-video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.videoContainer video
{
  min-width: 100%;
  min-height: 100%;
}

video {
    object-fit: cover;
    filter: grayscale(30%) brightness(60%);
  }

/* gradient */
.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(20,20,20,1) 0%, rgba(0,193,9,0) 20%, rgba(0,35,2,0) 80%, rgba(20,20,20,1) 100%);
    z-index: 1;
}

/* background */
.hero-background {
    margin-top: 0px;
    margin-bottom: 0px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background: url("https://rpgpowerforge.com/media/hero/background.jpg") no-repeat #000000;*/
    background-color:#000000;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 9;
}

.hero-text {
    position: absolute;
    left: 50%;
    top: 30%;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 5vw;
    font-weight: bold;
    color: white;
    z-index: 11;
}

.hero-subtext {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: white;
    opacity: 0.8;
    z-index: 12;
}

.hero-community {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 25px;
    color: white;
    transition: 0.1s;
    z-index: 11;
    background-color: #2196f3;
    border-radius: 100px;
    font-weight: bold;
    overflow: hidden;
}

.hero-community:hover {
    background-color: #0e67f5;
}

.hero-community:hover div {
    transform: translateX(10%);
}

.hero-community-text {
    display: flex;
    align-items: center;
    z-index: 11;
    white-space: nowrap;
    transform: translateX(-10%);
    transition: transform 0.3s ease;
}

.hero-values {
    position: fixed;
    bottom: 30px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 9;
}

.hero-value {
    width: 25%;
    display: flex;
    margin: 10px 10px 10px 10px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    z-index: 9;
}

.hero-value-number {
    font-size: 40px;
    font-weight: bold;
    color: white;
    height: 50px;
    line-height: 50px;
    z-index: 9;
}

.hero-value-text {
    font-size: 25px;
    color: white;
    margin-left: 10px;
    margin-right: 10px;
    height: 50px;
    line-height: 50px;
    z-index: 9;
}

/* Documentation */
.hero-documentation {
    position: absolute;
    right: 0%;
    margin-right: 10px;
    margin-top: 10px;
    color: white;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: bold;
    transition: 0.1s;
    z-index: 11;
    background-color: rgba(0,0,0,0.5);
    border-radius: 100px;
    font-size: 18px;
}

.hero-documentation:hover {
    background-color: rgba(80, 80, 80, 0.5);
}


/*
================================================
                 PHONE VERSION
================================================
*/

/* background */
.hero-background-phone {
    margin-top: 0px;
    margin-bottom: 0px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background: url("https://rpgpowerforge.com/media/hero/background_phone.jpg") no-repeat #000000;*/
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center; 
    z-index: 9;
}

.hero-text-phone {
    position: absolute;
    left: 50%;
    top: 30%;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 9vw;
    font-weight: bold;
    color: white;
    z-index: 11;
}

.hero-community-phone {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 6.3vw;
    color: white;
    transition: 0.1s;
    z-index: 11;
    background-color: #2196f3;
    border-radius: 100px;
    font-weight: bold;
    overflow: hidden;
}

.hero-community-phone:hover {
    background-color: #0e67f5;
}

/*.hero-community-phone:hover div {
    transform: translateX(10%);
}*/



.hero-community-text-phone {
    display: flex;
    align-items: center;
    z-index: 11;
    white-space: nowrap;
    /*transform: translateX(-10%);
    transition: transform 0.3s ease;*/
}



.hero-values-phone {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 9;
}

.hero-value-phone {
    width: 80%;
    display: flex;
    margin: 0px 10px 10px 10px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    z-index: 9;
}

.hero-value-number-phone {
    font-size: 8vw;
    color: white;
    opacity:0.9;
    /*height: 50px;
    line-height: 50px;*/
    z-index: 9;
}

.hero-value-text-phone {
    font-size: 25px;
    color: white;
    margin-left: 10px;
    height: 50px;
    line-height: 50px;
    z-index: 9;
}

/* Documentation */
.hero-documentation-phone {
    position: absolute;
    right: 0%;
    margin-right: 10px;
    margin-top: 10px;
    color: white;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    transition: 0.1s;
    z-index: 11;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    /*border: 3px solid;*/
    font-size: 18px;
}

.hero-documentation-phone:hover {
    background-color: rgba(80, 80, 80, 0.5);
}