section.sharehire {
	position: relative;
    padding: 30px 0;
}

.sharehire-banner {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	/*max-width: 1200px;*/
	outline: 1px solid hsla(209, 100%, 40%, 0.4);
	border-radius: 35px;
	/* border: 1px solid rgb(0 133 255 / 0%); */
	overflow: hidden;
	background: linear-gradient(126deg, #0053a0 10%, #0068c8 22.12%, #001427 100%), radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, #000 100%);
	color: #fff;
	height: 320px;
	box-shadow: 10px -11px 85px 0 rgba(0, 133, 255, 0.2);

}

.sharehire-content {
	padding: 60px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 700px;
	overflow: hidden;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.sharehire h2 {
	font-size: 40px;
	margin: 0 0 20px;
	font-weight: 500;
	line-height: 1.1;
	/* 110% */
	word-break: break-word;
	max-width: 100%;
}

.sharehire p {
	margin: 0 0 30px;
	font-size: 14px;
	color: #d0d0d0;
	line-height: 1.5;
}

.sharehire small {
	display: block;
	font-size: 16px;
	margin-bottom: 8px;
	color: #ffffff;
}

.sharehire a.button {
	display: inline-block;
	width: fit-content;
	padding: 12px 28px;
	border-radius: 50px;
	background: linear-gradient(135deg, #0074df, #0fa4ff);
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	box-shadow: 0 4px 20px rgba(0, 116, 223, 0.3);
	transition: background 0.3s ease;
	align-self: flex-start;
}

a.button:hover {
	background: linear-gradient(135deg, #0fa4ff, #0074df);
}

.sharehire-image {
	display: flex;
	flex: 0 0 50%;
	height: 100%;
	justify-content: center;
}

.sharehire-image img {
	height: 100%;
	min-width: 400px;
	max-width: 800px;
	width: auto;
	display: block;
	object-fit: cover;
}

/* ========================
   media-sizes 
=========================*/

@media (max-width: 1024px) {
	.sharehire h2 {
		font-size: 30px;
	}

	.sharehire-content {
		padding: 40px;
	}

}

@media (max-width: 767px) {

    .sharehire-banner {
		flex-direction: column;
		height: auto;
		min-width: auto;
		/* снимаем ограничение */
	}

	.sharehire-content {
		padding: 30px 24px;
		text-align: center;
		align-items: center;
		max-width: 100%;
	}

	.sharehire h2 {
		font-size: 26px;
		line-height: 1.15;
	}

	.sharehire p {
		margin-bottom: 20px;
	}

	.sharehire a.button {
		align-self: center;
	}

	.sharehire .sharehire-image {
		height: 100%;
		max-height: 300px;
		align-items: start;
	}

	.sharehire .sharehire-image img {
		width: 100%;
        min-width: 200px;
		height: auto;
		border-radius: 0 0 35px 35px;
	}
}

@media (max-width: 425px) {
	.sharehire-content {
		padding: 24px 18px;
	}

	.sharehire h2 {
		font-size: 22px;
	}

	.sharehire p {
		font-size: 13px;
		margin-bottom: 20px;
	}

	.sharehire a.button {
		padding: 10px 20px;
		font-size: 13px;
	}
}