@charset "utf-8";

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v50-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v50-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v50-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v50-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v50-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v50-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v50-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v50-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v50-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v50-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v50-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v50-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: rgb(51, 51, 51);
	font-family: 'Roboto', 'Arial', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	background-color: #F4F6F8;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	max-width: 72.5rem;
	margin: 1rem auto;
	padding: 1rem;
	overflow: hidden;
}

:is(a:link, a:visited, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

a:hover {
	text-decoration: underline;
}
a.color{
	    color: #456;
}
p {
	margin: 0 0 1.25rem;
}

.nowrap {
	white-space: nowrap;
}

p,
ul {
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

ul {
	margin: 0 0 1.25rem 25px;
	padding: 0;
	list-style: none;
}

ul li {
	padding: 0 0 10px 18px;
}

ul li::before {
	content: "";
	background-color: rgb(51, 51, 51);
	width: .375rem;
	height: .375rem;
	border-radius: 50%;
	position: relative;
	display: block;
	float: left;
	top: 0.5rem;
	margin: 0 0 0 -18px;
}
.list{
	margin: 0;
}
.list li{
	padding-bottom: 0;
}

h1 {
	font-size: 1.5rem;
	text-align: center;
	margin: 0 0 2.5rem;
}

h2 {
	font-size: 1.125rem;
	margin: 0 0 1rem;
}
.top{
	    margin-top: 35px;
}
header {
	border-radius: 0.9375rem;
	overflow: hidden;
	background-color: transparent;
	margin: 0 0 1.25rem;
}

article {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.left {
	background-color: #fff;
	border-radius: 0.9375rem;
	width: calc(100% - 454px);
	padding: 2.1875rem;
}

.right {
	width: 27.125rem;
}

.image {
	margin: 3.125rem 0 1.875rem;
}

.container {
	background-color: #fff;
	border-radius: 0.9375rem;
	margin: 0 0 1.875rem;
	padding: 2.1875rem;
}

.logo_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 3.125rem;
}

.logo {
	width: 6.25rem;
}

.text_logo {
	width: calc(100% - 7.5rem);
}
.text_logo p {
	margin: 0;
}
.text_logo p span {
	font-size: 20px;
	font-weight: 700;
	display: block;
}

.infos {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.infos p {
	font-size: 14px;
}

.info {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 50%;
	margin: 0 0 0.625rem;
	position: relative;
	cursor: default;
}

.info > .pop {
	width: auto;
	height: 1.375rem;
	background-color: #191919;
	position: absolute;
	top: -2.1875rem;
	left: 0;
	padding: .312rem;
	border-radius: 0.3125rem;
	display: none;
}

.info > .pop::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5rem 0.4688rem 0 0.4688rem;
	border-color: #191919 transparent transparent transparent;
	transform: rotate(0deg) translateX(-50%);
	position: absolute;
	bottom: -0.5rem;
	left: 50%;
}

.info:hover > .pop {
	display: flex;
	justify-content: center;
	align-items: center;
}

.info > .pop p {
	color: #fff;
	margin: 0;
	width: auto;
	font-size: .812rem;
}

.width_smaller {
	width: 40%;
}

.info p {
	margin: 0;
	width: calc(100% - 1.875rem);
}

.icon {
	width: 1.25rem;
	display: flex;
	justify-content: center;
}

.icon i,
.contact i {
	color: #333;
}

hr {
	width: 100%;
	height: 0.0625rem;
	border: 0;
	background-color: rgb(231, 231, 231);
	margin: 2.5rem 0;
}

.contact p {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 0.625rem;
	gap: 1rem;
}

.line {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.line > p {
	margin: 0 0 0.3125rem;
}

.line > p:first-of-type {
	width: 8.4375rem;
}

.line > p:last-of-type {
	width: calc(100% - 9.125rem);
}

.benefits {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem 3.125rem;
}

.benefit {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 6.25rem;
}

.benefit > p {
	text-align: center;
	font-size: 0.875rem;
}

.iframe-wrapper {
	width: 100%;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 1.875rem;
	height: 0;
	overflow: hidden;
}

.iframe-wrapper iframe {
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.btn_container {
	margin: 3.125rem 0 0;
}

.btn_container,
footer {
	display: flex;
	justify-content: center;
}

.btn_container > a,
a.btn_footer {
	color: #f1f1f1;
	background-color: #456;
	font-size: 1.125rem;
	font-weight: 700;
	width: 31.25rem;
	height: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.3125rem;
	box-shadow: rgba(0, 14, 35, .1) 0 0.125rem 0.125rem, rgba(0, 14, 35, .1) 0 0.25rem 0.25rem, rgba(0, 14, 35, .1) 0 0.5rem 0.5rem, rgba(0, 14, 35, .1) 0 1rem 1rem, rgba(0, 14, 35, .3) 0 0 1.25rem;
	transition: all .2s ease-in-out;
}

.btn_container > a:hover,
a.btn_footer:hover {
	background-color: #789;
	text-decoration: none;
	box-shadow: rgba(0, 14, 35, .2) 0 0.125rem 0.125rem, rgba(0, 14, 35, .2) 0 0.25rem 0.25rem, rgba(0, 14, 35, .2) 0 0.5rem 0.5rem, rgba(0, 14, 35, .2) 0 1rem 1rem, rgba(0, 14, 35, .3) 0 0 1.25rem;
}

footer {
	padding: 2.1875rem;
	display: none;
}

.down {
	margin-bottom: 20px
}


@keyframes slidy {
	0% {
		left: 0%;
	}

	22% {
		left: 0%;
	}

	25% {
		left: -100%;
	}

	47% {
		left: -100%;
	}

	50% {
		left: -200%;
	}

	72% {
		left: -200%;
	}

	75% {
		left: -300%;
	}

	97% {
		left: -300%;
	}

	100% {
		left: -400%;
	}
}

.slider {
	overflow: hidden;
}

.slider figure {
	position: relative;
	width: 500%;
	margin: 0;
	left: 0;
	text-align: left;
	font-size: 0;
	animation: 24s slidy infinite;
}

figure img {
	width: 20%;
	float: left;
}



@media only screen and (max-width: 72.4375rem) {
ul{
		margin-left: 0;
	}
	ul li {
		margin: 0;
		padding: 0 0 0 15px;
	}

	ul li:before {
		margin: 0 0 0 -15px;
	}

	h1 {
		margin: 0 0 1.25rem;
	}

	h2 {
		margin: 0 0 0.3125rem;
	}

	.left,
	.container {
		padding: 1rem;
	}

	.image {
		margin: 1.25rem 0;
	}
}

@media only screen and (max-width: 56.25rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}

	header {
		border-radius: 0.9375rem;
	}

	article {
		flex-direction: column;
	}

	.left {
		width: auto;
		padding: 1rem;
		margin: 0 0 1.25rem;
	}

	.right {
		width: auto;
	}

	.image {
		display: flex;
		justify-content: center;
	}

	hr {
		margin: 1.25rem 0;
	}

	.btn_container {
		display: none;
	}

	a.btn_footer {
		width: 100%;
	}

	footer {
		padding: 1rem;
		display: flex;
		justify-content: center;
	}
}

@media only screen and (max-width: 26.25rem) {
	.infos {
		flex-direction: column;
	}

	.info,
	.width_smaller {
		width: 100%;
	}

	.get_out_responsive {
		display: none;
	}

	.line {
		flex-direction: column;
		margin: 0 0 1rem;
	}

	.line > p {
		margin: 0;
	}

	.line > p:first-of-type,
	.line > p:last-of-type {
		width: auto;
	}
}

@media only screen and (max-width: 23.4375rem) {
	.logo_container {
		flex-direction: column;
		margin: 0 0 1.875rem;
	}

	.logo {
		width: 6.25rem;
	}

	.text_logo {
		width: auto;
	}

	.text_logo p {
		text-align: center;
	}

	.infos {
		align-items: center;
	}

	.info {
		width: auto;
		gap: 1rem;
	}

	.info p {
		text-align: center;
		margin: 0;
		width: auto;
	}

	.contact {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}