@font-face {
	font-family: 'Anton';
    src: url('../font/Anton-Regular.ttf');
}
@font-face {
	font-family: 'InterBold';
    src: url('../font/Inter-Bold.ttf');
}
@font-face {
	font-family: 'Inter';
    src: url('../font/Inter-Regular.ttf');
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
	color: inherit;
	text-decoration: none;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #DFDFDF;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #D1D1D1;
}

body {
	color: #1E1E1E;
	background-color: #F5F5F5;
	font-family: 'Inter';
	font-size: 14px;
	line-height: 20px;
}

.logo {
	font-family: 'Anton';
}

.buttonBase {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px 12px 24px;
	border-radius: 10px;
	font-family: 'InterBold';
}

.buttonWhite {
	background-color: #F6F6F6;
	color: #1E1E1E;
}

.buttonWhite:hover, .buttonWhite:hover {
	background-color: #F6F6F6;
	color: #2F4F4F;
}

.buttonWhiteGreen {
	background-color: #F6F6F6;
	color: #2F4F4F;
}

.buttonWhiteGreen:hover, .buttonWhiteGreen:focus {
	gap: 12px;
	padding: 12px 16px 12px 24px;
	background-color: #FFFFFF;
}

.buttonGreenWhite {
	background-color: #2F4F4F;
	color: #F6F6F6;
}

.buttonGreenWhite:hover, .buttonGreenWhite:focus {
	background-color: #4C6A6A;
	color: #F6F6F6;
}

/*** Nav ***/

#headerNavInHero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #F5F5F5;
	padding: 10px 32px;
	border-radius: 16px;
	position: relative;
}

header #logo {
	font-family: 'Anton';
	font-size: 45px;
	line-height: 68px;
	color: #2F4F4F;
}

header nav ul {
	display: flex;
	gap: 48px;
	align-items: center;
}

header nav a {
	font-family: 'InterBold';
	color: #2F4F4F;
}

header nav a:focus, header nav a:hover {
	color: #4C6A6A;
}

header nav li:last-child i {
	display: none;
}

header .buttonBase {
	padding: 12px 24px;
}

#burgerMenu {
	display: none;
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translateY(85px);
}

#burgerMenu a {
	position: relative;
	display: block;
	background-color: #F5F5F5;
	color: #2F4F4F;
	border-radius: 10px;
	width: 60px;
	height: 60px;
}

#burgerMenu a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 27px;
	line-height: 27px;
}

#burgerMenu a:hover, #burgerMenu a:focus {
	background-color: #EDEDED;
	color: #1E1E1E;
}

@media screen and (max-width: 1150px) {
	header nav li:last-child b {
		display: none;
	}

	header nav li:last-child i {
		display: block;
	}
}

@media screen and (max-width: 1060px) {
	.cacheForMini {
		display: none;
	}

	#burgerMenu {
		display: block;
	}
}

@media screen and (max-width: 780px) {
	header nav ul {
		gap: 24px;
	}
}

@media screen and (max-width: 740px) {
	.reduceForMini b {
		display: none;
	}
}

@media screen and (max-width: 630px) {
	header nav li:last-child i {
		display: none;
	}
}

@media screen and (max-width: 510px) {
	header #logo {
		font-size: 35px;
	}

	header .buttonBase {
		padding: 10px 18px;
	}
}

/*** Hero Banner ***/

#containerHeroBanner {
	background-color: #FFFFFF;
}

#contentHeroBannerAndNav {
	max-width: 1610px;
	margin: 0 auto;
	padding: 40px 80px 80px 80px;
}

#contentHeroBanner {
	padding: 80px;
	display: flex;
	justify-content: space-between;
	gap: 10%;
}

#leftPartHeroBanner {
	padding-top: 13vh;
	max-width: 800px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: flex-start;
}

#leftPartHeroBanner h1 {
	font-family: 'InterBold';
	font-size: 25px;
	line-height: 30px;
}

#leftPartHeroBanner p {
	font-size: 18px;
	line-height: 28px;
}

#rightPartHeroBanner {
	width: 30%;
	min-width: 400px;
}

#containerImgHeroBanner {
	position: relative;
	width: 100%;
	min-height: 320px;
	height: 55vh;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}

#containerImgHeroBanner img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
}

#containerAdvantagesHero {
	background-color: #F5F5F5;
	color: #1E1E1E;
	text-align: center;
	padding: 16px;
	font-family: 'InterBold';
	border-radius: 0 0 10px 10px;
}

#plateformsHeroBanner {
	padding: 0 80px;
}

#plateformsHeroBanner span {
	display: block;
	font-family: 'InterBold';
	font-size: 17px;
	margin-bottom: 24px;
}

#plateformsHeroBanner ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
	gap: 30px 70px;
}

#plateformsHeroBanner ul li {
	position: relative;
	height: 120px;
}

#plateformsHeroBanner img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

@media screen and (max-width: 1400px) {
	#leftPartHeroBanner {
		padding-top: 8vh;
	}
}


@media screen and (max-width: 1200px) {
	#contentHeroBannerAndNav {
		padding: 40px 40px 80px 40px;
	}

	#contentHeroBanner {
		padding: 80px 40px;
	}

	#plateformsHeroBanner {
		padding: 0 40px;
	}
}

@media screen and (max-width: 1110px) {
	#leftPartHeroBanner {
		padding-top: 4vh;
	}
}

@media screen and (max-width: 1060px) {
	#rightPartHeroBanner {
		display: none;
	}

	#leftPartHeroBanner {
		padding-top: 6vh;
	}
}

/*** Services ***/

#services {
	max-width: 1610px;
	margin: 0 auto;
	padding: 140px 80px 56px 80px;
}

#services h2 {
	font-family: 'InterBold';
	font-size: 20px;
	margin-bottom: 80px;
}

.grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 450px 1fr;
        grid-template-rows: 450px 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
    max-width: 1920px;
    margin: auto;
}

.grid-item {
    background-color: #ccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.5em;
    color: #333;
    overflow: hidden;
    border-radius: 10px;
}

.item1 {
    -ms-grid-column: span 2;
        grid-column: span 2;
}

.item1, .item2, .item3 {
    height: 450px;
    position: relative;
    z-index: 1;
}

.item1:before, .item2:before, .item3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    z-index: -1;
}

.item1:before {
    background-image: url(../../ressources/img/design_web_print_webdesign_graphisme.jpg);
}

.item2:before {
    background-image: url(../../ressources/img/developpement_site_internet_web_site_vitrine.jpg);
}

.item3:before {
    background-image: url(../../ressources/img/marketing_communication_community_management.jpg);
}

.item1:hover:before, .item2:hover:before, .item3:hover:before, .item1:focus:before, .item2:focus:before, .item3:focus:before {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

#services h3 {
	max-width: 50%;
	text-align: center;
}

#services .buttonBase {
	font-family: 'Inter';
	font-size: 25px;
	line-height: 35px;
}

@media screen and (max-width: 1100px) {
	#services .buttonBase {
		font-family: 'Inter';
		font-size: 20px;
		line-height: 30px;
	}
}

@media screen and (max-width: 1200px) {
	#services {
		padding: 140px 40px 56px 40px;
	}
}

@media screen and (max-width: 730px) {
	.item1 {
	    -ms-grid-column: span 1;
	        grid-column: span 1;
	}

	.grid-container {
        -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
        -ms-grid-rows: auto;
            grid-template-rows: auto;
    }
}

@media only screen and (max-device-width: 480px) {
	#services {
		padding: 140px 60px 56px 60px;
	}

	.item1 {
	    -ms-grid-column: span 1;
	        grid-column: span 1;
	}

	.grid-container {
        -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
   		gap: 150px;
        -ms-grid-rows: auto;
            grid-template-rows: auto;
    }

    #services h3 {
		max-width: 60%;
    }

    #services .buttonBase {
		font-size: 55px;
		line-height: 70px;
	}

	.item1, .item2, .item3 {
	    height: 800px;
	}

	#services h2 {
		line-height: 75px;
		font-size: 55px;
		text-align: left;
		margin-bottom: 140px;
	}
}

/*** FAQ ***/

#containerFAQ {
	background-color: #FFFFFF;
}

#contentFAQ {
	max-width: 1610px;
	margin: 104px auto 104px auto;
	padding: 80px;
	display: flex;
	justify-content: space-between;
	gap: 64px;
	flex-wrap: wrap;
}

#containerFAQ h2 {
	font-family: 'InterBold';
	font-size: 20px;
}

#containerFAQ ul {
	display: flex;
	flex-direction: column;
	gap: 42px;
	max-width: 950px;
	width: 60%;
}

.contentQuestionFAQ {
	display: flex;
	justify-content: space-between;
	padding: 24px;
	background-color: #F5F5F5;
	border-radius: 10px;
	align-items: center;
	gap: 40px;
	color: #2F4F4F;
}

.contentQuestionFAQ h3 {
	flex: 1;
	font-family: 'InterBold';
	font-size: 15px;
}

.contentAnswerFAQ {
	display: none;
	padding: 24px;
}

.contentAnswerFAQ.active {
  display: block;
}

.contentQuestionFAQ span {
	font-size: 28px;
  transition: transform 0.2s ease;
}

.contentQuestionFAQ.active span {
  transform: rotate(-180deg);
}

@media screen and (max-width: 1200px) {
	#contentFAQ {
		padding: 80px 40px;
	}
}

@media screen and (max-width: 1046px) {
	#containerFAQ ul {
		max-width: 950px;
		width: 100%;
	}
}

/*** Étude de cas / Avis clients ***/

#containerAvisClients {
	max-width: 1610px;
	margin: 104px auto 208px auto;
	padding: 0 80px;
}

#containerAvisClients h2 {
	font-family: 'InterBold';
	font-size: 20px;
	margin-bottom: 64px;
}

#containerAvisClients ul {
	display: flex;
}

#containerAvisClients li:first-child, #containerAvisClients li:last-child {
	transform: scale(0.7);
}

#containerAvisClients li {
	height: 500px;
	width: 55%;
	position: relative;
	color: #FFFFFF;
}

.containerBackCardClient {
	height: 100%;
	position: relative;
	border-radius: 10px;
	background: rgba(67, 67, 67, 0.50);
	overflow: hidden;
}

.contentTopCardClient {
	padding: 56px 48px;
	font-size: 17px;
}

.contentTopCardClient h3 {
	font-family: 'InterBold';
	margin-bottom: 32px;
}

#containerAvisClients img {
	position: absolute;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -5;
}

.containerQuotesClient {
	position: absolute;
	bottom: 0;
	transform: translateY(25%);
}

.quotesClient {
	position: relative;
	width: 80%;
	padding: 32px 40px;
	background-color: #FFFFFF;
	color: #1E1E1E;
	margin: auto;
	border-radius: 10px;
	box-sizing: border-box;
}

.quotesClient p {
	width: 80%;
	margin: auto;
}

.quotesClient i {
	position: absolute;
	font-size: 50px;
	color: #F5F5F5;
}

.quotesClient i.fa-quote-left {
	left: 15px;
	top: 10px;
}

.quotesClient i.fa-quote-right {
	right: 15px;
	bottom: 10px;
}

@media screen and (max-width: 1200px) {
	#containerAvisClients {
		padding: 0 40px;
	}
}

@media screen and (max-width: 1000px) {
	#containerAvisClients li:first-child, #containerAvisClients li:last-child {
		display: none;
	}

	#containerAvisClients li {
		width: 80%;
		margin: auto;
	}
}

@media screen and (max-width: 600px) {
	#containerAvisClients li {
		width: 100%;
		margin: auto;
	}
}

/*** CTA Bottom ***/

.containerCTABottom {
	max-width: 1610px;
	margin: 0 auto;
	padding: 0 80px;
}

.contentCTABottom {
	position: relative;
	padding: 56px;
	border-radius: 10px;
	background-color: #2F4F4F;
	color: #FFFFFF;
	font-family: 'Inter';
	overflow: hidden;
}

.contentCTABottom h2 {
	font-family: 'InterBold';
	margin-bottom: 42px;
	font-size: 17px;
	line-height: 22px;
}

.contentCTABottom p {
	max-width: 50%;
	margin-bottom: 56px;
	line-height: 24px;
}

.illuCTABottom {
	position: absolute;
	right: 0;
	bottom: 0;
	transform: rotate(-16deg) translate(30px, 35px);
}

.illuCTABottom span {
	font-size: 360px;
	color: #F5F5F5;
}

@media screen and (max-width: 1200px) {
	.containerCTABottom {
		padding: 0 40px;
	}
}

@media screen and (max-width: 950px) {
	.contentCTABottom {
		padding-bottom: 350px;
	}

	.illuCTABottom span {
		font-size: 400px;
	}

	.contentCTABottom p {
		max-width: inherit;
	}
}

@media screen and (max-width: 750px) {
	.illuCTABottom span {
		font-size: 300px;
	}
}

@media screen and (max-width: 499px) {
	.contentCTABottom {
		padding: 24px 24px 350px 24px;
	}
}

/*** Footer ***/

#containerFooterPages {
	max-width: 1610px;
	margin: 104px auto 0 auto;
	padding: 0 80px;
}

#contentFooterPages {
	display: flex;
	justify-content: space-between;
	gap: 48px;
}

#containerDescAndLinksFooterPages {
	display: flex;
	justify-content: space-between;
	gap: 32px;
}

#contentFooterPages h2 {
	font-family: 'InterBold';
	margin-bottom: 32px;
}

.linksNavFooter ul {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#contentFooterPages a {
	color: #2F4F4F;
}

#contentFooterPages a:focus, #contentFooterPages a:hover {
	color: #1E1E1E;
}

#descAstranaFooterPages {
	width: 25%;
	min-width: 300px;
}

#descAstranaFooterPages .logo {
	font-size: 32px;
	line-height: 38px;
}

#descAstranaFooterPages p {
	margin: 24px 0 32px 0;
}

#socialLinksFooter {
	display: flex;
	gap: 16px;
	font-size: 20px;
}

#socialLinksFooter span {
	display: none;
}

#returnTop {
	position: relative;
	border-radius: 10px;
	background-color: #2F4F4F;
	color: white;
	width: 40px;
	height: 40px;
}

#returnTop span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
}

#bottomFooterPages {
	margin-top: 56px;
	border-top: 1px solid #FFFFFF;
	padding: 48px 0;
	display: flex;
	justify-content: space-between;
}

#bottomFooterPages ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

#bottomFooterPages a {
	font-size: 12px;
}

#bottomFooterPages a:hover, #bottomFooterPages a:focus {
	opacity: 0.7;
}

@media screen and (max-width: 1200px) {
	#containerFooterPages {
		padding: 0 40px;
	}
}

@media screen and (max-width: 1000px) {
	#containerDescAndLinksFooterPages {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 56px 32px;
	}
}

@media screen and (max-width: 950px) {
	#bottomFooterPages {
		flex-direction: column-reverse;
		gap: 48px;
	}
}

@media screen and (max-width: 700px) {
	#contentFooterPages {
		gap: 24px;
	}

	#containerDescAndLinksFooterPages {
		grid-template-columns: repeat(1, 1fr);
	}

	#descAstranaFooterPages {
		width: 100%;
		min-width: inherit;
	}

	#returnTop {
		width: 35px;
		height: 35px;
	}

	#returnTop span {
		font-size: 20px;
	}
}