#stocks .stocks-grid{
	padding-bottom: 40px;
	display: grid;
	grid-template-columns: 1fr 280px;
	grid-gap: 70px;
	padding-bottom: 110px;
}

aside {
	padding-top: 170px;
}
#stocks h2{
	font-weight: bold;
	font-size: 30px;
	line-height: 43px;
	text-transform: uppercase;
	color: #455B7B;
	margin-bottom: 40px;
}
.stocks-item h3 {
	font-weight: bold;
	font-size: 20px;
	line-height: 32px;
	text-transform: uppercase;
	color: #455B7B;
	margin-bottom: 30px;
	width: calc(100% - 300px);
}
.stocks-item p {
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
}
.stocks-item img {
	height: 180px;
	width: 270px;
	object-fit: contain;
}
.stocks-item__image {
	height: 180px;
	width: 270px;
	margin-top: 30px;
}
.stocks-link {
	background: #ECF3FC;
	border-radius: 10px;
	padding: 24px 0 17px 0;
}
.btn-open-mobile {
	display: none;
}
.stocks-link a{
	position: relative;
	font-weight: normal;
	font-size: 14px;
	line-height: 22px;
	text-decoration: underline;
	color: #507FC6;
	display: flex;
	align-items: center;
	padding: 0 60px 0 30px;
	margin-bottom: 13px;
}
.stocks-link a.active {
	background: #F8DB48;
	color: #494949;
	text-decoration: none;
	padding: 13px 60px 13px 30px;
}
.stocks-link a.active:after {
	content: '';
	position: absolute;
	left: -15px;
	top: 0;
	height: 100%;
	width: 16px;
	background: #F8DB48;
	clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
.stocks-link a:hover {
	text-decoration: none;
}
.stocks-item__description {
	display: grid;
	grid-template-columns: 1fr 270px;
	grid-gap: 40px;
}
@media (max-width: 991px){
	#stocks {
		padding: 0 40px;
	}
	#stocks .stocks-grid{
		display: flex;
		flex-direction: column-reverse;
		padding-bottom: 0;
	}
	aside {
	    padding-top: 0px;
	    padding-bottom: 50px;
	    border-bottom: 1px solid #D3D3D3;
	    margin-bottom: 30px;
	}
	.question {
		margin-top: 225px;
	}
	.stocks-link {
		border: 1px solid #D3D3D3;
		border-radius: 3px;
		max-width: 380px;
		background: #fff;
		padding: 0;
		position: relative;
	}
	.link-fadeOut .btn-open-mobile {
		height: 100%;
	}
	.btn-open-mobile {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50px;
		height: 50px;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 2;
		cursor: pointer;
	}
	.btn-open-mobile:after {
	    content: '';
	    position: absolute;
	    right: calc(50% - 4px);
	    top: calc(50% - 2px);
	    border: 6px solid #D3D3D3;
	    border-bottom-width: 0px;
	    border-left-width: 4px;
	    border-right-width: 4px;
	    border-bottom-color: transparent;
	    border-left-color: transparent;
	    border-right-color: transparent;
	    opacity: 1;
	}
	.stocks-link a {
		font-weight: normal;
		font-size: 14px;
		line-height: 22px;
		color: #494949;
		width: 100%;
		text-decoration: none;
		margin-bottom: 0;
		padding: 13px 50px 13px 17px;
	}
	.stocks-link a:not(.active){
		display: none;
	}
	.stocks-link a.active {
		background: #fff;
		padding: 13px 50px 13px 17px;
	}
	.stocks-link a.active:after {
		display: none;
	}
}
@media (max-width: 767px){
	aside {
		padding-bottom: 20px;
	}
	#stocks {
	    padding: 0;
	}
	#stocks .stocks-grid {
		padding: 0 20px;
	}
	#stocks h2 {
		padding: 0 20px;
		margin: 26px 0;
		font-size: 20px;
		line-height: 32px;
	}
	.stocks-item h3 {
		width: 100%;
	}
	.stocks-item__description {
		display: block;
	}
	.stocks-item__image {
		margin: 50px auto 0 auto;
	}
	.stocks-link a,
	.stocks-link a.active {
		padding: 13px 50px 13px 17px;
	}
}
