.shape 
{
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(51,51,51,1) 0%, rgba(1,13,2,1) 100%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.shape:before
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: #202020;
	clip-path: polygon(100% 0%,0% 100%,100% 100%); 
}
.shape .content
{
	padding-top: 100px;
	padding-bottom: 100px;
	max-width: 900px;
	margin-bottom: 150px;
	text-align: center;
}
.shape .content #rest
{
	font-size: 25px;
  	font-size: 4em;
  	color:#fff;
	margin: 0;
	padding: 0;
	animation-name: text-anim;
	animation-duration: 4s;
}
@keyframes text-anim {
  from {opacity: 1;
  		filter: blur(4px);}
  to {opacity: 100;
  		filter: blur(0px);}
}
.shape .content .p22
{
	color: #fff;
	font-size: 1.5em;
	animation-name: text-animm;
	animation-duration: 4s;
}
@keyframes text-animm {
  from {opacity: 1;
  		filter: blur(4px);}
  to {opacity: 100;
  		filter: blur(0px);}
}
@media screen and (max-width: 1114px){
	.shape:before
	{
	clip-path: polygon(100% 50%,0% 100%,100% 100%); 
	}
	.shape .content #rest
	{
	font-size: 3em;
	}
	.shape .content .p22
	{
	font-size: 1.1em;
	}
	.shape .content
	{
	padding-top: 50px;
	padding-bottom: 70px;
	margin-bottom: 125px;
	}
}
@media screen and (max-width: 768px){
	.shape:before
	{
	clip-path: polygon(100% 75%,0% 100%,100% 100%); 
	}
	.shape .content #rest
	{
	font-size: 2.5em;
	}
	.shape .content .p22
	{
	font-size: 0.85em;
	}
	.shape .content
	{
	padding-top: 50px;
	padding-bottom: 50px;
	margin-bottom: 90px;
	}
}