.about__inner {
	margin-top: 30px;
	height: 590px;
	width: 100%;
	position: relative;
	background-color: #f9f9f9;
	border-radius: 10px;
	padding: 15px;

}
.about__img {
	border-top-left-radius:10px;
	border-bottom-left-radius:10px;
	height: 100%;
	width: 60%;
	object-fit:fill;
	/*  -webkit-clip-path: polygon(0 0, 0 100px, 100px 80px, 100px 0);*/
  	clip-path: polygon(0 0, 78% 0, 100% 100%, 0% 100%);
  	-webkit-clip-path: polygon(0 0, 78% 0, 100% 100%, 0% 100%);
  	-moz-clip-path: polygon(0 0, 78% 0, 100% 100%, 0% 100%);
  	-o-clip-path: polygon(0 0, 78% 0, 100% 100%, 0% 100%);
  	-ms-clip-path: polygon(0 0, 78% 0, 100% 100%, 0% 100%);
}
.about__text {
	background: #f9f9f9;
	position: absolute;
	top: 50%;
	left: 65%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 70%;
	padding: 60px;
	border-radius: 10px;
	box-shadow: 0px 0px 39px 0px rgba(0, 0, 0, 0.1);
}
.about__title {
	font-size: 18px;
	font-family: "bpg_supersquare",sans-serif;
	text-decoration: underline;
	text-underline-offset: 10px;
	text-decoration-color: orange;
}
.about_paragraph {
	margin-top: 30px;
	font-size: 14px;
	font-family: "bpg_arial",sans-serif;
}
.partners--poz {
	font-size: 20px;
	text-align: center;
	margin: 50px 0;
}

@media screen and (max-width: 660px) {
	.container {
		overflow-x: none;
	}
	.about__inner {
		overflow-x: visible;
		height: 100%;
		width: 100%;
	}
	.about__img {
		height: 300px;
		width: 100%;
	}
	.about__text {
		position: relative;
		top: 0%;
    	left: 0%;
    	transform: none;
    	width: 100%;
    	height: 100%;
    	overflow-x: none;
    	padding: 10px;
	}
	.footer {
		padding: 50px;
		margin-bottom: 5px!important;
	}
}