/*FONTS*/

/*font-family*/
h1, h2, h3, h4, h5, h6, span {font-family: 'Poppins', sans-serif;
}
p, li, a {font-family: 'Raleway', sans-serif;}

/*font-sizes*/
h1 {font-size: 50px;}
h2 {font-size: 40px;}
h3 {font-size:35px;}
h4 {font-size: 30px;}
h5 {font-size: 25px;}
h6 { font-size: 20px;}

p {font-size: 18px;}

li {font-size: 17px;}

/*font-basic-colors*/
.text-white {
	color: #ffffff;
}

.text-black {
	color:#000000;
}

/*text-align*/
.text-center{
	text-align: center;
}

.text-left{
	text-align: left;
}

.text-right{
	text-align: right;
}

.text-justify{
	text-align: justify;
}

/*font-weight*/
.text-bold{
	font-weight: bold;
}

.text-normal{
	font-weight: normal;
}

/*VIDEO*/
.video-center{
	display: block;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}

.video-border{
	border: 9px solid #ffffff;
	border-radius: 5px;
}

/*IMAGES*/
.image-center {
	display: block;
	margin: auto;
	max-width: 100%;
}