.card__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto 80px;
	gap: 30px;
}

@media only screen and (max-width: 767px) {
	.card__box {
		display: block;
	}
}

.card__box .title {
	font-weight: 800;
	border-radius: 0 100px 100px 0;
	margin: 0 auto 1rem 0;

}

@media only screen and (min-width: 767px) {
	.card__box .title {
		border-radius: 16px 100px 100px 16px;
	}

}

@media only screen and (max-width: 1200px) {
	.card__box .title {
		font-size: 30px;
		line-height: 35px;
	}
}

@media only screen and (max-width: 767px) {
	.card__box .title {
		font-size: 20px;
		line-height: 1;
		padding: 15px 20px;
		transform: translateX(-5px);
		z-index: -1;
		height: 100%;
		display: flex;
		align-items: center;
	}
}

.card__box.right .card__text {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
	text-align: right;
}

@media only screen and (max-width: 767px) {
	.card__box.right .card__text {
		text-align: left;
	}
}

.card__box.right .title {
	border-radius: 100px 16px 16px 100px;
	margin: 0 0 1rem auto;
}

@media only screen and (max-width: 767px) {
	.card__box.right .title {
		border-radius: 100px 0 0 100px;
		transform: translateX(5px);
	}
}

.card__icon {
	width: 250px;
}

@media only screen and (max-width: 1200px) {
	.card__icon {
		width: 120px;
		height: 120px;
	}

	.card__icon img {
		height: 100%;
		width: 100%;
		object-fit: contain;
	}
}

.card__text {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
}

@media only screen and (max-width: 767px) {
	.card__text {
		text-align: left;
	}
}

.card__text__box {
	background: #1956A8;
	padding: 30px 36px;
	color: #fff;
	-webkit-box-shadow: 0px 16px 32px rgba(25, 86, 168, 0.1);
	box-shadow: 0px 16px 32px rgba(25, 86, 168, 0.1);
	border-radius: 16px;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.card__icon__top {
	height: 64px;
	width: 64px;
}

.card__text__box.dark {
	background: #171C60;
}

.professionnel .card__text__box {
	background: #171C60;
}

@media only screen and (max-width: 767px) {
	.card__text__box {
		padding: 20px;
	}
}

.card__text__box ul {
	margin: 0 0 50px;
	padding: 0 25px;
	font-weight: 700;
	font-size: 24px;
	line-height: 40px;
	text-transform: uppercase;
}

.card__text__box ul.small {
	font-size: 18px;
}

.card__text__box h2 {
	font-weight: 800;
	font-size: 30px;
	line-height: 42px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.card__text__box h3 {
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	text-transform: uppercase;
}

@media only screen and (max-width: 767px) {

	.card__text__box h3 br {
		display: none;
	}
}

.card__text__box h4 {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
	line-height: 40px;
}

.card__text__box p {
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-family: "Raleway", sans-serif;
}

.card__text__image {
	margin-bottom: 15px;
	overflow: hidden;
	border-radius: 9px;
	position: relative;

}

.card__text__image:not(.full-width) {
	max-width: 371px;
}

@media only screen and (max-width: 991px) {
	.card__text__image {
		max-width: 100%;
	}

	.card__text__image img {
		width: 100%;
	}
}

.card__text__image::before {
	content: "";
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(57, 99, 171, 0.33)), to(rgba(57, 99, 171, 0.33)));
	background: linear-gradient(0deg, rgba(57, 99, 171, 0.33), rgba(57, 99, 171, 0.33));
	position: absolute;
	top: 0;
	left: 0;
	width: 1000%;
	height: 100%;
}

.card__text__body {
	background: #E8EFFB;
	padding: 36px 40px;
	-webkit-box-shadow: 0px 16px 32px rgba(25, 86, 168, 0.1);
	box-shadow: 0px 16px 32px rgba(25, 86, 168, 0.1);
	border-radius: 16px;
	height: 100%;
}

.card__text__body.gray {
	background: #E8E8EF;
}

@media only screen and (max-width: 767px) {
	.card__text__body {
		padding: 20px;
	}
}

.card__text__body h2 {
	text-transform: uppercase;
	color: #152235;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.875rem;
	margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
	.card__text__body h2 {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}
}

.card__text__body p {
	color: #384050;
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-family: "Raleway", sans-serif;
	margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
	.card__text__body p {
		font-size: 0.875rem;
		line-height: 1.25rem;
	}
}

.card__text__body p:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
	.card__title {
		margin-top: 50px;
	}
}

.card__title h3 {
	font-weight: 800;
	font-size: 2.5rem;
	line-height: 3rem;
	text-transform: uppercase;
	color: #152235;
}

.card__title .title {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 800;
	font-size: 2.5rem;
	line-height: 3rem;
	border-radius: 14px 100px 100px 14px;
}

@media only screen and (max-width: 767px) {
	.card__title .title {
		font-size: 1.5625rem;
		line-height: 1.875rem;
	}
}

.card__title.right .title {
	border-radius: 100px 16px 16px 100px;
}

.card__header {
	display: flex;
}

.card__header .title {
	height: 120px;
	max-width: 67%;
}

.card__box.right .card__header {
	flex-direction: row-reverse;
}

.card__box.right .card__header .title {
	text-align: right;
}