.banner_anchors{
	background: linear-gradient(180deg, var(--sit-bleu-f) 0%, var(--sit-bleu-dark) 100%);
}

.banner_anchors__wrap{
	display: flex;
	flex-direction: row!important;
	align-items: center;
	justify-content: space-between;
	gap: 70px;
	padding: 70px 20px;
}

.banner_anchors__content{
	flex: 0 1 70%;
	max-width: 70%;
}

.banner_anchors:not(.has_visual) .banner_anchors__content{
	display: flex;
	flex-direction: column;
	gap: 30px;
	flex: 0 1 80%;
	max-width: 80%;
}


.banner_anchors__visual{
	flex: 0 1 30%;
	max-width: 30%;
	display: flex;
}

.banner_anchors__img{
	max-width: 100%;
	height: auto;
	display: block;
}

.banner_anchors__title{
	line-height: 1.12;
	font-weight: 600;
	margin: 0;
	color: var(--sit-blanc);
}

.banner_anchors__subtitle{
	margin: 0;
	font-size: clamp(20px, 2.1vw, 24px);
	line-height: 1.45;
	color: var(--sit-blanc);
	font-weight: 700;
}

.banner_anchors__subtitle + .banner_anchors__subtitle{
	margin-top: 30px;
}

.banner_anchors__links{
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 4vw, 35px);
}

.banner_anchors__btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--sit-vert);
	background-color: var(--sit-bleu-f);
	transition: color .2s ease, background-color .2s ease;
}

.banner_anchors__btn:hover{
	color: var(--sit-blanc);
}

@media (max-width: 991px){
	.banner_anchors__wrap{
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
	}

	.banner_anchors__content,
	.banner_anchors__visual{
		max-width: 100%;
	}

	.banner_anchors__visual{
		justify-content: flex-start;
	}
}

@media (max-width: 479px){
	.banner_anchors:not(.has_visual) .banner_anchors__content {
		flex: 0 1 100%;
		max-width: 100%;
	}
}