.contacts {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: url(../images/contacts.png) top right no-repeat;
	overflow: hidden;
}

.contacts__top {
	display: flex;
	width: 610px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 20px;
}

.contacts__top .box {
	display: flex;
	width: 100%;
	align-items: center;
}

.contacts__top .title {
	font-size: 19pt;
	margin-right: 20px;
}

@media only screen and (max-width: 650px) {
	.contacts__top .title {
		margin-right: 0;
		text-align: center;
	}
}

.contacts__top .button {
	background: black;
	color: white;
	padding: 15px 30px 15px 30px;
	font-size: 11pt;
	border-radius: 40px;
	cursor: pointer;
	transition: all 0.2s ease-out;
}

.contacts__top .button:hover {
	box-shadow: 0px 0px 10px rgb(130, 130, 130);
}

@media only screen and (max-width: 700px) {
	.contacts__top {
		width: 90%;
	}

	.contacts__top .box {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}

	.contacts__top .button {
		margin-top: 10px;
	}
}

.contacts__separator {
	background: linear-gradient(90deg, #9fe333, #fddd2d);
	height: 8px;
	border-radius: 4px;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 50px;
}

.contacts__bottom {
	width: 130%;
	height: 411px;
	background: #2438df;
	border-radius: 80% 80% 30% 30%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
}

.contacts__bottom .box {
	width: 100%;
	height: 81%;
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

@media only screen and (max-width: 1050px) {
	.contacts__bottom .box {
		flex-direction: column;
		align-items: center;
	}
}

@media only screen and (max-width: 1050px) {
	.contacts__bottom {
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		height: auto;
	}
}

.contacts__bottom:after {
	content: "";
	height: 40px;
	background: #2438df;
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: -1;
}

@media only screen and (max-width: 650px) {
	.contacts__bottom {
		border-radius: 0;
	}
}

.contacts__content-1 {
	width: 25%;
	/* height: 80%; */
	display: flex;
	width: 370px;
	flex-direction: column;
	align-items: center;
}

@media only screen and (max-width: 1050px) {
	.contacts__content-1 {
		width: 50%;
		height: auto;
		margin-bottom: 30px;
		padding-top: 30px;
		text-align: center;
	}
}

@media only screen and (max-width: 800px) {
	.contacts__content-1 {
		width: 70%;
	}
}

.contacts__content-1 .image {
	margin-bottom: 20px;
	width: 180px;
}

.contacts .content {
	width: 90%;
	background: white;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
}

@media only screen and (max-width: 1050px) {
	.contacts .content {
		width: 100%;
	}
}

@media only screen and (max-width: 650px) {
	.contacts .content {
		margin-top: 40px;
	}
}

.contacts .content-item {
	padding: 10px 20px 10px 20px;
	color: rgb(80, 80, 80);
	font-size: 10pt;
}

.contacts .content-item .fa {
	margin-right: 15px;
}

.contacts .content-item:last-child {
	padding-bottom: 0;
}

.contacts .contacts__content-2 {
	width: 45%;
	height: 80%;
	display: flex;
	justify-content: space-evenly;
}

@media only screen and (max-width: 1050px) {
	.contacts .contacts__content-2 {
		width: 50%;
		height: auto;
	}
}

@media only screen and (max-width: 800px) {
	.contacts .contacts__content-2 {
		width: 70%;
	}
}

@media only screen and (max-width: 650px) {
	.contacts .contacts__content-2 {
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
}

.contacts .content-social {
	display: flex;
}

@media only screen and (max-width: 1050px) {
	.contacts .content-social {
		justify-content: center;
	}
}

.contacts .content-social__item {
	margin-right: 5px;
}

.content-social__item .image {
	width: 30px;
	position: relative;
	top: 0;
	transition: all 0.2s ease-out;
}

.content-social__item .image:hover {
	top: 5px;
}

.contacts .details {
	height: 100%;
}

.contacts .special {
	width: 320px;
}

@media only screen and (max-width: 1040px) {
	.contacts .special {
		width: 100%;
	}
}

.details .details__item {
	padding: 0 0 20px 20px;
	color: white;
	font-size: 13pt;
}

.details a {
	color: white;
	font-size: 13pt;
	transition: all 0.2s ease-out;
}

.details a:hover {
	color: #9fe333;
}

.contacts-details .title {
	color: #9fe333;
}

.horaires .jump {
	margin-top: 10px;
}

.horaires .details__item {
	padding: 0 0 15px 20px;
}

.contacts-details:last-child {
	position: relative;
}

@media only screen and (max-width: 1040px) {
	.contacts .contacts-details {
		width: 30%;
	}
}

@media only screen and (max-width: 650px) {
	.contacts .contacts-details {
		width: 50%;
		margin-bottom: 30px;
		border-bottom: 2px rgb(165, 165, 165) solid;
	}
	.contacts .contacts-details:last-child {
		border-bottom: none;
	}
}

@media only screen and (max-width: 520px) {
	.contacts .contacts-details {
		width: 90%;
		margin-bottom: 20px;
	}
}

.contacts__bottom .top {
	position: absolute;
	top: -60px;
	right: 21%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: all 0.2s ease-out;
	border-radius: 50%;
}

.contacts__bottom .top:hover {
	box-shadow: 0px 0px 10px rgb(130, 130, 130);
}

.contacts__bottom .top img {
	width: 100%;
}

@media only screen and (max-width: 1050px) {
	.contacts__bottom .top {
		top: 20px;
		right: 24%;
	}
}

@media only screen and (max-width: 650px) {
	.contacts__bottom .top {
		top: 0;
		right: 15%;
		transform: translateY(-50%);
	}
}
