@charset "utf-8";
/* CSS Document */
br{
	margin-bottom: 0.5vh;
}
#titleheader1 {
	width: auto;
	color: black;
	text-shadow: 20px 50px 20px WhiteSmoke;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	text-align: top center;
	text-transform: uppercase;
	font-size: 100px;
	
}


.grader{
	background: WhiteSmoke;
	width: 45%;
	height: auto;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#texttest{
	position: relative;
	font-family: 'Poppins', sans-serif;
	font-size: 1.1vw;
	color: #000;
	font-weight: 300;
	text-align: center;
	padding: 30px 30px;
}

.wordhold{
	word-break: break-word;
}
#bottom{
	height: 100px;
	width: 100%;
	background-image: url("ImageData/test.png");
}

.grader:before, .grader:after{
	content: '';
	position: absolute;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, rgba(171,175,220,1) 0%, rgba(132,141,247,1) 31%, rgba(199,203,255,1) 46%, rgba(171,175,220,1) 61%, rgba(140,144,190,1) 72%, rgba(122,133,255,1) 82%, rgba(171,175,220,1) 100%);
	background-size: 400% 400%;
	width: inherit;
	height: inherit;
	border-radius: 20px;
	z-index: -1;
	animation: animate 3s ease alternate infinite;
}

.grader:after{
	filter: blur(20px);
}

@keyframes animate{
	0%{
		background-position: 0% 50%;
	}
	
	50%{
		background-position: 100% 50%;
	}
	
	0%{
		background-position: 0% 50%;
	}
	
}




@keyframes backgroundgradiant{
	0%{
		background-position: 0% 50%;
	}
	
	50%{
		background-position: 100% 50%;
	}
	
	0%{
		background-position: 0% 50%;
	}
	
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

#video{
	-o-filter: blur(10px);
	filter: blur(10px);
	
	width: inherit;
	position:static;
	overflow: hidden;
	
}

#slideshowbreaker{
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	width: auto;
	background-size: cover;
}

.img-slider{
	position: relative;
	width: 800px;
	height: 600px;
	margin: 10px;
	background: whitesmoke;
}

.img-slider .slide{
	z-index: 1;
	position: absolute;
	width: 100%;
	clip-path: circle(0% at 0 50%);
}

.img-slider .slide.active{
	clip-path: circle(150.0% at 0 50%);
	transition: 2s;
	transition-property: clip-path;
}

.img-slider .slide img{
	z-index: 1;
	width: 100%;
	border-radius: 5px;
}

.img-slider .slide .info{
	position: absolute;
	top: 0;
	padding: 15px 30px;
}

.img-slider .slide .info h2{
	color: WhiteSmoke;
	font-size: 45px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	letter-spacing: 2px;
}

.img-slider .slide .info p{
	color: WhiteSmoke;
	font-size: 16px;
	font-family: 'Poppins';
	background: rgba(0,0,0,0.1);
	width: 60%;
	padding: 10px;
	border-radius: 4px;
}

.img-slider .navigation{
	z-index: 2;
	position: absolute;
	display: flex;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.img-slider .navigation .btn{
	background: rgba(255,255,255,0.50);
	width: 12px;
	height: 12px;
	margin: 15px;
	border-radius: 50%;
	cursor: pointer;
	padding: 0.7vh;
}

.img-slider .navigation .btn.active{
	background: #ABAFDC;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 820px){
	.img-slider{
		width: 600px;
		height: 450px;
	}
	.img-slider .slide .info{
		padding: 10px 25px;
	}
	.img-slider .slide .info h2{
		font-size: 35px;
		
	}
	.img-slider .slide .info p{
		font-size: 15px;
		width: 70%;
	}
	
	.img-slider .navigation{
		bottem: 25px;
	}
	.img-slider .navigation .btn{
		width: 10px;
		height: 10px;
		margin: 8px;
	}
}

@media (max-width: 620px){
	.img-slider{
		width: 400px;
		height: 300px;
	}
	.img-slider .slide .info{
		padding: 10px 20px;
	}
	.img-slider .slide .info h2{
		font-size: 30px;
		
	}
	.img-slider .slide .info p{
		font-size: 13px;
		width: 80%;
	}
	
	.img-slider .navigation{
		bottem: 10px;
	}
	.img-slider .navigation .btn{
		width: 8px;
		height: 8px;
		margin: 6px;
	}
}

@media (max-width: 420px){
	.img-slider{
		width: 400px;
		height: 300px;
	}
	.img-slider .slide .info{
		padding: 5px 10px;
	}
	.img-slider .slide .info h2{
		font-size: 25px;
		
	}
	.img-slider .slide .info p{
		font-size: 11px;
		width: 90%;
	}
	
	.img-slider .navigation{
		bottem: 8px;
	}

}

.textcontent{
    position:absolute;
    color:white;
	z-index:0;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

#vid{
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.videodiv{
	height: 100%;
	width: 100%;
    position:relative;
    display:inline-block;
    margin:auto;
}

.containerforvideo{
	height: 100vh;
}


/**/

.container{
	max-width: 960px;
	margin: 0 auto;
	background:  rgba(0,0,0,0.00);
	font-size: 24px;
    height: auto;
    padding: 10px;
    position: absolute;
	top: 35%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.parallax-window{
	min-height: 1200px;
    background: transparent;
	background-size: 100% auto;
	background-size: cover;
}

.video_overlays {
position:absolute;
    z-index:300000;
	height: 500;
	width: 50%;
}

