.hero__banner {
	display: block;
	cursor: pointer;
}
.hero__banner img  {
	display: block;
	width: 100%;
}

.info__banner {
	display: flex;
	align-items: center;
	border-radius: 4px;
    overflow: hidden;
    margin: 10px 5px;
	box-shadow: 0px 0px 5px 2px #eeeeee;
}

.info__banner img{
    max-width: 500px;
    width: 100%;
    flex-shrink: 0;	
}

.description__text,
.info__banner-text {
	padding: 10px 50px;
    font-size: 17px;
    line-height: 21px;
}

.info__banner-left {
    background: #f7be0014;
}

.info__banner-right {
	flex-direction: row-reverse;
	background: #0026ff14;
}

.text-bold {
	font-weight: 600;
}

.description {
	background: #f7be0014;	
}

.pdf-link {
	display: block;
	font-size: 17px;
    line-height: 21px;
	text-align: center;
	padding: 10px;
	background: #0026ff14;
	margin: 10px 5px;
	box-shadow: 0px 0px 5px 2px #eeeeee;
	text-decoration: none;
	transition: .3s;
}

.pdf-link:hover {
	box-shadow: none;
	background: #58585814;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.info__banner {
		display: block;
	}
	.description__text,
	.info__banner-text {
		padding: 10px;
		font-size: 14px;
    	line-height: 18px;
	}
	
	.info__banner img {
    	max-width: 50%;
	}
	
	.info__banner-right img {
		float: right;
		margin: 10px;	
	}
	
	.info__banner-left img{
		float: left;
		margin: 10px;
	}
	
	.pdf-link {
		font-size: 15px;
    	line-height: 21px;
	}
}