/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

section, header, footer, nav, div, span, ul, li, a {
    box-sizing: border-box;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #f2f2f2;
}

header nav {
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header ul li {
    display: inline-block;
    padding: 0 20px;
}

header ul a {
    font-weight: 700;
    text-decoration: none;
    color: #4d4d4d;
    height: 50px;
    display: block;
    position: relative;
}

header ul a span {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
}

section {
    float: left;
    display: block;
    height: 100%;
    margin: 0;
}

.fpbd-section{
    position: relative;
}
.fpbd-section .fullscreen-bg {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.fpbd-section .fullscreen-bg img,.fpbd-section .fullscreen-bg video{
    width:100%;
    height:auto;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.fpbd-section .content{
    position: absolute;
    z-index: 10;
}
.fpbd_currentpage{
   position: fixed;
    z-index: 999;
    right:0;
    bottom:0;
    padding:0.2em 3em;
    background: #000;
    opacity: 0.7;
    color:#fff;
    font-weight: bold;
}

.horizon-prev, .horizon-next {
    position: fixed;
    top: 50%;
    margin-top: -24px;
    z-index: 9999;
}

.horizon-prev {
    left: 20px;
}

.horizon-next {
    right: 20px;
}
@keyframes glowing {
  0% { box-shadow: 0 0 -10px #c4a300; }
  40% { box-shadow: 0 0 20px #c4a300; }
  60% { box-shadow: 0 0 20px #c4a300; }
  100% { box-shadow: 0 0 -10px #c4a300; }
}
#fpbdhome-btn:hover{
    animation: glowing 1000ms  normal forwards;
}
#fpbdhome-btn{
       position: fixed;
    width:50px;
    margin:20px;
    z-index: 9999;
   background: #fff;
    border:1px solid #fff;
    border-radius: 100%;
    left: 0; 
    transition: width .1s;
}
#fpdbtransparent-layout{
    overflow: hidden;
    height:100%;
    width:100%;
 position: absolute;
    top:0;
    z-index: 1;
}


/*New CSS for Video*/


.tv {

  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tv .screen {
  
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: auto;
  opacity: 0;
  transition: opacity 0.5s;
}
.tv .screen.active {
  opacity: 1;
}
.fpbd_pagebar-container{
    width:100%;
    position: fixed;
    background: #ffffff;
    bottom:0;
    overflow: hidden;
    height:5px;
}
#fpbd_pagebar{
    height: 100%;
    width:0%;
    position: relative;
    float:right;
    background: #151515;
  
}