.arrow {
	position: relative;
	height: 30px;
	width: 60px;
	display: inline-block;

	&::before {
		content: '';
		display: block;
		position: absolute;
		background: #fff;
		height: 2px;
		width: 100%;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}

	&::after {
		border-bottom: 2px solid #fff;
		content: '';
		display: block;
		height: 7.5px;
		width: 7.5px;
		position: absolute;
		top: 50%;
	}

	&.arrow--left {
		&::after {
			border-left: 2px solid #fff;
			left: 0;
			transform: translateY(-50%) rotate(45deg);
		}
	}

	&.arrow--right {
		&::after {
			border-right: 2px solid #fff;
			right: 0;
			transform: translateY(-50%) rotate(-45deg);
		}
	}
}

#accueil-realisations {

	.wrapper {
		width: calc(100% - 60px);
		margin: auto;
		max-width: 1440px;
		align-items: center;
		grid-row-gap: 90px;
	}

	.content {
		margin-bottom: 60px;

		h2 {
			max-width: 675px;

			br {
				display: none;
			}

		}

		p {
			max-width: 1024px;
		}

	}

	.projects {
		width: 100%;
		display: grid;
		grid-template-columns: 3fr 1fr;
		gap: 30px;

		h3 {
			grid-column: 1 / -1;
			color: #fff;
			text-transform: uppercase;
			font-size: 21px;
		}

		.carrousel {
			grid-column: span 1;
			min-width: 0;
			width: 100%;

			.slider {
				width: 100%;

				.slide {
					display: block;
					aspect-ratio: 4 / 3;
					position: relative;
					max-height: 360px;
					overflow: hidden;
					margin: 0 7.5px;


					img {
						position: absolute;
						top: 0;
						left: 0;
						height: 100%;
						width: 100%;
						object-fit: cover;
						object-position: center;
					}

				}

			}

			.nav {
				margin-top: 30px;
				padding: 0 7.5px;
				display: flex;
				flex-flow: row nowrap;
				align-items: center;
				justify-content: space-between;
				gap: 15px;

				> a {
					text-decoration: none;
					padding: 7.5px 30px;
					border-radius: 35px;
					border: 2px solid #f29003;
					display: inline-block;
					color: #fff;

					&.next,
					&.prev {
						line-height: 0;
					}
				}
			}
		}

		.filters {
			grid-column: span 1;
			display: flex;
			flex-direction: column;
			gap: 15px;

			.filter {
				display: flex;
				align-items: center;
				text-decoration: none;
				flex: 1 1 0;
				gap: 15px;

				.icon-wrapper {
					border: 5px solid #fff;
					aspect-ratio: 1 / 1;
					width: 75px;
					position: relative;
					transition: all 250ms ease;
					flex-shrink: 0;
				}

				.filter-icon {
					position: absolute;
					display: block;
					top: 50%;
					left: 50%;
					transform: translate(-50%, -50%);
					object-fit: contain;
					object-position: center;
					height: calc(100% - 30px);
					width: calc(100% - 30px);
					transition: all 250ms ease;
				}

				.filter-label {
					text-transform: uppercase;
					color: #fff;
					font-family: "Montserrat", sans-serif;
					font-weight: 700;
					font-size: 18px;
					display: inline-block;
					max-width: 210px;
					transition: all 250ms ease;
				}

				&.is-active,
				&:hover {
					.icon-wrapper {
						border-color: #F29003;
					}

					.filter-icon {
						filter: brightness(0) invert(1);
					}

					.filter-label {
						color: #F29003;
					}
				}
			}

		}

	}

	@media (max-width: 1200px) {

		.projects {
			grid-template-columns: 1fr;

			.filters {
				flex-direction: row;

				.filter {
					flex-direction: column;
					text-align: center;
				}
			}
		}

		.arrow {
			width: 45px;
		}

	}

	@media (max-width: 768px) {

		.projects {

			.filters {
				flex-direction: column;
				gap: 15px;

				.filter {
					flex-direction: row;
					gap: 15px;

					.icon-wrapper {
						width: 60px;
						flex-shrink: 0;
					}

					.filter-label {
						margin: initial;
						text-align: initial;
						max-width: initial;
					}
				}
			}
		}
	}

	@media (max-width: 640px) {
		.projects {

			.carrousel {

				.nav {
					flex-flow: row wrap;

					.prev {
						order: 1;
					}

					.next {
						order: 2;
					}

					.bouton {
						order: 3;
						width: 100%;
						text-align: center;
					}

				}

			}

		}
	}

	@media (max-width: 480px) {
		.arrow {
			width: 30px;
		}
	}

}

.realisations-archive {
	background: #2E2E2D;
	padding-top: 210px;
	width: 100%;

	.wrapper {
		width: calc(100% - 60px);
		margin: auto;
		display: grid;
		max-width: 1440px;
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
		grid-row-gap: 90px;
	}

	.intro {
		h1 {
			font-size: 56px;
			font-weight: 400;
		}

		p {
			color: #fff;
		}
	}

	.filters {
		display: flex;
		flex-flow: row wrap;
		align-items: flex-start;
		justify-content: space-around;
		gap: 30px;

		.filter {
			display: flex;
			flex-direction: column;
			justify-content: flex-start;
			align-items: center;
			text-align: center;
			text-decoration: none;
			flex: 1 1 0;
			min-width: 180px;

			.icon-wrapper {
				border: 5px solid #fff;
				aspect-ratio: 1 / 1;
				width: 90px;
				position: relative;
				transition: all 250ms ease;
			}

			.filter-icon {
				position: absolute;
				display: block;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				object-fit: contain;
				object-position: center;
				height: calc(100% - 30px);
				width: calc(100% - 30px);
				transition: all 250ms ease;
			}

			.filter-label {
				text-transform: uppercase;
				color: #fff;
				font-family: "Montserrat", sans-serif;
				font-weight: 700;
				font-size: 18px;
				display: inline-block;
				max-width: 210px;
				margin: 30px auto 0;
				transition: all 250ms ease;
			}

			&.is-active,
			&:hover {
				.icon-wrapper {
					border-color: #F29003;
				}

				.filter-icon {
					filter: brightness(0) invert(1);
				}

				.filter-label {
					color: #F29003;
				}
			}
		}

	}

	.projects-grid {
		grid-column: span 2;
	}

	.grid {
		display: grid;
		grid-template-columns: repeat(4,1fr);
		gap: 15px;
	}

	.item {
		aspect-ratio: 4 / 3;
		position: relative;

		img {
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			object-fit: cover;
			object-position: center;
		}
	}

	.load-more-wrap {
		grid-column: 1 / -1;
		display: flex;
		justify-content: center;

		.load-more {
			background: none;
			border: none;
			cursor: pointer;

			span {
				text-transform: uppercase;
				color: #fff;
				font-family: "Montserrat", sans-serif;
				font-weight: 700;
				font-size: 21px;
				display: inline-block;
				max-width: 210px;
				margin: 30px auto 0;
				transition: all 250ms ease;
			}

			.fleche {
				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
				-webkit-border-radius: 25px 25px 25px 25px;
				border-radius: 25px 25px 25px 25px;
				transition: background .25s ease-in-out 0s;
				-webkit-transition: background .25s ease-in-out 0s;
				border: #f29003 solid 2px;
				cursor: pointer;
				height: 150px;
				margin: 15px auto 0;
				width: 50px;
				align-items: center;
				justify-content: center;
				display: flex;
				color: #fff;

				svg {
					display: block;
					width: 24px;
					stroke: #fff !important;
					fill: #fff !important;
					color: #fff !important;

					path {
						stroke: #fff !important;
						fill: #fff !important;
					}
				}
			}

			&:hover {

				span {
					color: #f29003;
				}

				.fleche {
					background: #f29003;

					svg {
						stroke: #000 !important;
						fill: #000 !important;
						color: #000 !important;

						path {
							stroke: #000 !important;
							fill: #000 !important;
						}
					}
				}
			}
		}
	}

	@media (max-width: 1440px) {
		.wrapper {
			grid-row-gap: 75px;
		}

		.intro {
			grid-column: 1 / -1;

			h1 {
				text-align: center;

				br {
					display: none;
				}
			}
		}

		.filters {
			grid-column: 1 / -1;
			justify-content: center;
		}
	}

	@media (max-width: 1200px) {
		.wrapper {
			grid-row-gap: 60px;
		}

		.grid {
			grid-template-columns: repeat(3,1fr);
		}
	}

	@media (max-width: 1120px) {
		padding: 150px 0;
	}

	@media (max-width: 960px) {
		.wrapper {
			grid-row-gap: 45px;
		}

		.filters {
			.filter {
				.icon-wrapper {
					width: 75px;
					border: 2px solid #fff;
				}
			}
		}
	}

	@media (max-width: 768px) {
		.wrapper {
			grid-row-gap: 30px;
		}

		.filters {
			flex-direction: column;
			gap: 15px;

			.filter {
				flex-direction: row;
				gap: 15px;

				.icon-wrapper {
					width: 60px;
					flex-shrink: 0;
				}

				.filter-label {
					margin: initial;
					text-align: initial;
					max-width: initial;
				}
			}
		}
	}

	@media (max-width: 667px) {
		padding: 120px 0 60px;
	}

	@media (max-width: 640px) {
		.grid {
			grid-template-columns: repeat(2,1fr);
		}
	}

	@media (max-width: 500px) {
		padding: 90px 0 45px;
	}

	@media (max-width: 480px) {
		.wrapper {
			width: calc(100% - 60px);
		}
	}

}

.realisations-single {
	background: #2E2E2D;
	padding-top: 210px;
	width: 100%;

	img {
		max-width: 100%;
	}

	.wrapper {
		width: calc(100% - 60px);
		margin: auto;
		display: grid;
		max-width: 1440px;
		grid-template-columns: 3fr 2fr;
		gap: 60px;
	}

	.banner {
		grid-column: span 2;
		display: flex;
		align-items: center;
		gap: 15px;

		.back {
			flex: 1 1 0;

			.back-btn {
				display: flex;
				flex-flow: row nowrap;
				align-items: center;
				justify-content: flex-start;
				gap: 15px;
				color: #fff;
				text-decoration: none;
			}
		}

		.title {
			flex: 2 1 0;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;

			h1 {
				font-weight: 400;
			}

		}

		.nav {
			flex: 1 1 0;
			display: flex;
			flex-flow: row nowrap;
			justify-content: flex-end;
			align-items: center;
			gap: 15px;

			> a {
				text-decoration: none;
				padding: 7.5px 30px;
				border-radius: 35px;
				border: 2px solid #f29003;
				display: inline-block;
				color: #fff;
				font-size: 32px;
				line-height: 0.75;
				vertical-align: middle;
			}
		}
	}

	.main-image {
		aspect-ratio: 4 / 3;
		position: relative;

		img {
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			object-fit: cover;
			object-position: center;
		}
	}

	.content {
		display: flex;
		flex-direction: column;
		gap: 30px;

		h2 {
			color: #fff;
			font-size: 21px;
			text-transform: uppercase;
			line-height: 1.1;
		}

		p {
			color: #fff;
			margin-top: 0;
			line-height: 1.5;
		}

		.gallery {
			margin-top: auto;
			grid-template-columns: repeat(3, 1fr);
		}

	}

	.gallery {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 15px;
		grid-column: 1 / -1;

		.gallery-image {
			aspect-ratio: 4 / 3;
			position: relative;

			img {
				position: absolute;
				top: 0;
				left: 0;
				height: 100%;
				width: 100%;
				object-fit: cover;
				object-position: center;
			}
		}

	}

	@media (max-width: 1440px) {
		.wrapper {
			grid-template-columns: 1fr 1fr;
			gap: 30px
		}

		.main-image,
		.content{
			min-width: 0;
		}

		.arrow {
			width: 45px;
		}
	}

	@media (max-width: 1200px) {
		.banner {
			flex-flow: row wrap;
			justify-content: space-between;

			.back {
				order: 1;
				width: calc(50% - 7.5px);
				flex: initial;
			}

			.nav {
				order: 2;
				width: calc(50% - 7.5px);
				flex: initial;
			}

			.title {
				order: 3;
				width: 100%;
				flex: initial;
			}
		}

		.wrapper > .gallery {
			grid-template-columns: repeat(4, 1fr);
		}
	}

	@media (max-width: 1120px) {
		padding: 150px 0;
	}

	@media (max-width: 960px) {
		.main-image {
			grid-column: 1 / -1;
		}

		.content {
			grid-column: 1 / -1;
		}

		.wrapper > .gallery {
			grid-template-columns: repeat(3, 1fr);
		}
	}

	@media (max-width: 768px) {
		.arrow {
			width: 30px;
		}

		.banner .nav > a {
			padding: 7.5px 15px;
		}
	}

	@media (max-width: 667px) {
		padding: 120px 0 60px;
	}

	@media (max-width: 640px) {
		.wrapper > .gallery {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (max-width: 500px) {
		padding: 90px 0 45px;
	}

	@media (max-width: 480px) {
		.wrapper {
			width: calc(100% - 60px);
		}

		.banner {
			flex-flow: row wrap;
			justify-content: space-between;

			.back {
				order: 1;
				width: 100%;
				justify-content: center;
				text-align: center;

				.back-btn {
					justify-content: center;
				}
			}

			.title {
				order: 2;
				width: 100%;
			}

			.nav {
				order: 3;
				width: 100%;
				justify-content: space-between;
			}
		}
	}

}