h1,h2,h3,label,div,td,span,a,li,ul,table,hr,input,select,textarea,.form-control{
	color: #fff;
}

.hide{
	display: none !important;
}

h1,h2,h3{
	font-family: 'Gotham Medium';
	color: #fff;
	font-size: 70px;
	text-align: center;
}

p{
	font-family: 'Gotham Book';
	color: #fff;
	font-size: 36px;
}

.all-page{
	overflow-x: hidden;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.logo{
	display: table;
	margin: 0 auto;
	max-width: 400px;
	width: 80%;
	margin-top: 42px;
	margin-bottom: 42px;
}

.logo img{
	display: block;
}

.gallery-complete{
	display: flex;
	width: 100%;
	min-height: calc(100% - 162px);
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	gap: 24px;
	padding-bottom: 50px;
	position: relative;
}

.gallery-complete .video-gallery{
	position: relative;
	display: block;
	width: calc(20% - 48px);
	overflow: hidden;
	cursor: pointer;
	height: 180px;
}

.gallery-complete .video-gallery img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover !important;
}

.gallery-complete .video-gallery .info{
	display: block;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .8);
	padding-top: 12px;
	padding-bottom: 8px;
	bottom: -100%;
	transition: all .25s ease;
	transition: all .25s ease,
	-webkit-transform .25s ease;
}

.gallery-complete .video-gallery:hover .info{
	bottom: 0;
}

.gallery-complete .video-gallery .info h3{
	font-size: 16px;
	color: #fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, .8);
	text-align: center;
}

.video-player{
	display: flex;
	width: calc(100% - 100px);
	min-height: calc(100% - 222px);
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	position: relative;
	margin: 0 auto;
	margin-top: 20px;
}

.video-player .content-player{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 320px);
	height: 100%;
	padding-right: 16px;
}

.video-player .content-player #player{
	width: 100%;
	height: 100%;
	display: block;
}

.video-player .gallery-video-player{
	display: block;
	width: 320px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	overflow-y: auto;
}

.video-player .gallery-video-player .video-gallery{
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 16px;
	border: 3px solid transparent;
}

.video-player .gallery-video-player .video-gallery.playing{
	border: 3px solid #fff;
}

.video-player .gallery-video-player .video-gallery img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover !important;
}

.video-player .gallery-video-player .video-gallery .info{
	display: block;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .8);
	padding-top: 12px;
	padding-bottom: 8px;
	bottom: -100%;
	transition: all .25s ease;
	transition: all .25s ease,
	-webkit-transform .25s ease;
}

.video-player .gallery-video-player .video-gallery:hover .info{
	bottom: 0;
}

.video-player .gallery-video-player .video-gallery .info h3{
	font-size: 16px;
	color: #fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, .8);
	text-align: center;
}

.is-loading .video-gallery{
	position: relative;
	cursor: default;
}

@keyframes placeHolderShimmer{
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}

.is-loading .video-gallery::after{
	content: "";
	display: block;
	z-index: 120;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	animation-duration: 1.25s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-name: placeHolderShimmer;
	animation-timing-function: linear;
	background: #e0e0e0;
	background: linear-gradient(to right, #e0e0e0 8%, #e9e9e9 18%, #e0e0e0 33%);
	background-size: 800px 104px;
}

.bg-effect{
	background:url(../images/gp-background-opacity.jpg) center center no-repeat;
	background-size: cover !important;
	overflow-x: hidden;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: -1;
}

.bg-effect .effects{
	opacity: 0;
	position: absolute;
	transition: all 0.5s ease;
	width: 120px;
	height: 120px;
	background: url(../images/gp-background.webp) center center no-repeat;
	background-attachment: fixed;
	border-radius: 50%;
	filter: blur(40px);
	z-index: 5;
}