*, ::before, ::after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  box-sizing: border-box;
}

html, body {
  height: 100vh;
}

body {
  position: relative;
  background-color: #111;
  color: #F0F0F0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-size: 1.2em;
  font-family: "Duru Sans";
}

/* *********************** HEADER *********************************** */
.illustrationLogo {
  display: none;
}
.navbar {
  height: 81px;
  width: 100%;
  top: 0;
  position: fixed;
  z-index: 10;
}

nav {
  position: fixed;
  width: 100%;
  /* height: 75px; */
  display: flex;
  align-items: center;
  padding: 0px 25px;
  font-family: Offside;
  background-color: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
  /* z-index: 10; */
}

.logo img {
  height: 81px;
}

.main-navlinks {
  width: 100%;
  margin: 0 auto;
}

.hamburger {
  display: none;
}

.navlinks-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap; 
}

.navlinks-container a {
  text-decoration: none;
  font-size: 1.3rem;
  /* margin: 30px auto; */
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transition: 0.3s;
  color: #d2d2d2;

}

.navlinks-container a span {
  color: #cc0b0d;
  font-size: 1.8rem;
}

.navlinks-container a:hover span {
  font-weight: bold;
}

.navlinks-container a::before {
  content:"";
  position: absolute;
  background: #cc0b0d;
  width: 100%;
  height: 1px;
  bottom: -2px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}

.navlinks-container a:hover::before {
  transform-origin: 0 0;
  transform: scaleX(1);
}

.marker {
  display: inline-block;
  position: absolute;
  top: 0px;
}

/* **************************** MAIN ******************************** */

main {
  position: absolute;
  width: 100%;
  height: calc(100% - 75px);
  top: 75px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 10px;
  scroll-behavior: smooth;
}

main::-webkit-scrollbar {
  background-color: #111;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  width: 15px;
}

main::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);
  width: 15px;
}

section {
  position: relative;
  width: 99%;
  max-width: 1900px;
  min-height: calc(100vh - 75px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
  padding: 50px 0 50px 0;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);
}

h1 {
  position: relative;
  font-family: Megrim;
  font-size: 2.7em;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
}

h1::before {
  content:attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom;
  transform: rotateX(180deg);
  line-height: 0.88em;
  background: linear-gradient(0deg, #fff 0%, transparent 80%);
  -webkit-background-clip: text;
  background-clip: text;  
  color: transparent;
  opacity: 0.2;
}


h2 {
  position: relative;
  font-family: Megrim;
  font-size: 3em;
  text-transform: uppercase;
  margin: 50px auto;
}

h2::before {
  content:attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom;
  transform: rotateX(180deg);
  line-height: 0.88em;
  background: linear-gradient(0deg, #fff 0%, transparent 80%);
  -webkit-background-clip: text;
  background-clip: text;  
  color: transparent;
  opacity: 0.2;
}

.content {
  width: 90%;
}

.content p {
  padding: 35px;
  font-size: 1.1rem;
  line-height: 175%;
}

.content p strong {
  font-weight: normal;
}

p span {
  color: rgb(222, 0, 0);
  font-size: 1.3em;
  font-weight: bolder;
}


/* ************************** HOME ********************************** */

.home {
  margin-top: 25px;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);
  z-index: 9;
}

.home .content {
  position: relative;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.home .text {
  width: 49%;
  min-width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.home h2 {
  margin: 25px auto;
}

.home .illustration {
  position: relative;
  width: 49%;
  min-width: 500px;
  height: 585px;
  margin: 3% 0 0 1%;
  object-fit: cover;
}

.home .illustration img {
  position: absolute;
  width: 100%;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
}

.home .illustration::after {
  content: "";
  position:absolute;
  border-bottom: 2px solid rgb(222, 0, 0);
  border-left: 2px solid rgb(222, 0, 0);
  border-right: 2px solid rgb(222, 0, 0);
  width: 105%;
  height: 77%;
  top: 0;
  left: -2%;
  z-index: 1;
  transform: rotate(16deg) skewX(5deg);
  /* transform:  translateX(calc(75px * -1 - 50%)); */
}


/* ********************* PRESENTATION ****************************** */

.presentation {
  background-color: rgba(28, 28, 28, 1);
  color: #f0f0f0;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);
  z-index: 8;
}

.presentation .content{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.portrait {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  width: 40%;
  min-height: 336px;
  height: auto;
}

.portrait picture {
  position: absolute;
  width: 85%;
  height: 85%;
}

.portrait img {
  position: absolute;
  object-position: top;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
  pointer-events: none;
}

.portrait::after {
  content:"";
  position: absolute;
  width: 80%;
  height: 90%;
  border-top: 2px solid rgb(222, 0, 0);
  border-right: 2px solid rgb(222, 0, 0);
  border-bottom: 2px solid rgb(222, 0, 0);
  top: 5%;
  right: 13%;
  transform: rotate(13deg);
}

.presentation .text {
  width: 50%;
  min-width: 500px;
  border-radius: 20px;
  margin: 50px auto 0;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

/* ********************* SERVICES ********************************** */

.services {
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);
  z-index: 7;
}

.services::before {  
  content:"";
  position: absolute;
  width: 60%;
  height: 70%;
  border-top: 2px solid rgb(222, 0, 0);
  border-right: 2px solid rgb(222, 0, 0);
  top: -111px;
  right: 268px;
  transform: rotate(110deg) skewX(-25deg);
}
  

.services .content {
  position: relative;
  width: 90%;
  height: auto;
  margin: 50px auto;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(auto-fill, 495px);
  grid-template-rows:  repeat(3, 240px);
  grid-gap: 25px;
  transition: 0.3s;
}

.services .content::before {  
  content:"";
  position: absolute;
  width: 90%;
  height: 110%;
  border-top: 2px solid rgb(222, 0, 0);
  border-right: 2px solid rgb(222, 0, 0);
  top: 291px;
  right: 90px;
  transform: rotate(319deg) skewX(-7deg);
}


.services .content:hover .card {
  opacity: 0.8;
}
.services .content .card:hover {
  opacity: 1;
}

.services .text h3 {
  color:rgb(240, 240, 240);
  margin: 30px 60px 0 60px;
}

.services .text p {
  font-size: 1.05rem;
}

.services .text {
  grid-row: 1/3;
  width: 495px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-align: justify;
  overflow-y: hidden;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.showcase { 
  position: relative; 
  height: 240px;
  width: 495px;
  transition: 0.8s;
  z-index: 1;
}

.showcase picture {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
} 

.showcase img {
  width: 100%;
  height: 100%;
  border: 1px solid #111111;
  border-radius:  15px;
  object-fit: cover;
  transition: 0.8s;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
}

.card {
  position: relative;
  height: 240px;
  width: 495px;
  border: 1px solid #111111;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: 0.3s;
  background-color: #a1a1a1;  
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
}

.card .img-box {
  position: absolute;
  top: 15px;
  width: 205px;
  height: 160px;
  border-radius: 8px;
  transition: 0.3s;
}

.card:hover {
  height: 305px;
  transform: translateY(-65px);
  scale: 1;
  z-index: 5;
}

.card:hover .img-box {
  top: -85px;
  scale: 0.85;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: 0.5s;
  z-index: 5;
}

.card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #111111;
  border-radius: 10px;
  object-fit: cover;
  transition: 0.8s;
}


.card:hover .img-box img {
  scale: 1.3;
}

.cards-section .card .description {
  position: absolute;
  width: 100%;
  top: 187px;
  padding: 0 30px;
  height: 35px;
  overflow: hidden;
  text-align: justify;
  transition: 0.8s;
}

.cards-section .card:hover .description {
  height: 250px;
  top: 90px;
  padding: 0 -150px;
  z-index: 5;
}

h3 {
  position: relative;
  font-family: Megrim;
  color: rgb(17, 17, 17);
  font-size: 1.5em;
  text-transform: uppercase;
  text-align: center;
}

.card p {
  font-family: 'Duru Sans';
  color:rgb(17, 17, 17);
  opacity: 0;
  line-height: 125%;
  padding: 20px;
  transition: 0.3s;
}

.card a {
  position: relative;
  top: -5%;
  display: inline-block;
  right: -65%;
  padding: 12px 25px;
  border-radius: 0px 15px 0px 15px;
  background: #111;
  color: #cc0b0d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  font-weight: 1000;
  opacity: 0;
  transition: 0.3s;
}

.card:hover a, .card:hover p {
  opacity: 1;
}

.card a:hover {
  scale: 1.1;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
  transition: 0.3s;
  transition-delay: 0s;
}

/* ************************* CARDS POPUPS *************************** */

#popup-bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 12;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
}

#popup-bg.active {
  display: flex;
}

#popup-content {
  position: relative;
  width: 1200px;
  height: 920px;
  border-radius: 0 150px 0 150px;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d5d5d5;
}


article {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

#popup-design.active,
#popup-development.active,
#popup-hosting.active,
#popup-seo.active,
#popup-responsive.active,
#popup-maintenance.active {
  display: flex;
}

article::before {
  content:"";
  position: absolute;
  width: 120%;
  height: 70%;
  border-top: 2px solid rgb(222, 0, 0);
  border-right: 2px solid rgb(222, 0, 0);
  top: -15px;
  right: -201px;
  transform: rotate(152deg) skewX(-15deg);
  z-index: -1;
}

article::after {
  content:"";
  position: absolute;
  width: 140%;
  height: 70%;
  border-top: 2px solid rgb(222, 0, 0);
  top: -219px;
  right: -336px;
  transform: rotate(197deg);
  z-index: -1;
}

article .img-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  top: 15px;
  width: 80%;
  transition: 0.3s;
  margin: 10px;
}

article img {
  position: relative;
  top: 0;
  left: 0;
  width: 205px;
  height: 160px;
  object-fit: cover;
  transition: 0.8s;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

article h3 {
  position: relative;
  display: block;
  font-family: Megrim;
  color: rgb(17, 17, 17);
  font-size: 3em;
  text-transform: uppercase;
  margin-top: 30px;
}

article .description {
  position: relative;
  width: 90%;
  height: 70%;
  padding: 0 30px;
  overflow-y: auto;
  text-align: justify;
  margin: 50px 0 25px 0;
}

article p {
  font-family: 'Duru Sans';
  color:rgb(17, 17, 17);
  line-height: 150%;
  padding: 20px;
  font-size: 1.1rem;
}

#popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #111111;
  box-shadow: 3px 3px 5px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  z-index: 1;
}
#popup-close:hover {
  background-color: #DE0000;
}

/* *********************** A VOTRE ECOUTE *************************** */

.listen {
  background-color: rgba(28, 28, 28, 1);
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);
  z-index: 6;
}

.listen .content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(img/shaking_hands_1700px_bw.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
  box-shadow: inset 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border-top: 1px solid rgba(17, 17, 17, 1);
  border-left: 1px solid rgba(17, 17, 17, 1);
  opacity: 0.8;
  max-width: 1700px;
  width: 90%;
}

.listen .content::before {
  content:"";
  position: absolute;
  width: 95%;
  height: 40%;
  border-top: 2px solid rgb(222, 0, 0);
  border-right: 2px solid rgb(222, 0, 0);
  top: 40%;
  left: 2%;
  transform: rotate(-6deg) skewX(-15deg);
  z-index: -1;
}

.listen .bgcolor {
  width: 100%;
  background-color: rgba(17, 17, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 25px 0;
}

.listen .bgcolor::before {
  content:"";
  position: absolute;
  width: 90%;
  height: 40%;
  border-bottom: 2px solid rgb(222, 0, 0);
  border-left: 2px solid rgb(222, 0, 0);
  top: 44%;
  left: 8%;
  transform: rotate(9deg) skewX(-15deg);
  z-index: -1;
}

.listen-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 23%;
  min-width: 265px;
  min-height: 400px;
  padding: 10px;
  margin: 10px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
}

.listen-details h3 {
  color:rgb(240, 240, 240);
  font-size: 1.3em;
  margin-bottom: 15px;
}

.listen-details p {  
  line-height: 150%;
  padding: 20px;
}

/* ******************** Ils m'ont fait confience ******************** */

.trust {
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);
  z-index: 5;
}

.trust p {
  display: inline-block;
  margin: 40px auto;
  padding: 0 70px;
}

.trust .content::before {
  content:"";
  position: absolute;
  width: 60%;
  height: 15%;
  border-bottom: 2px solid rgb(222, 0, 0);
  border-left: 2px solid rgb(222, 0, 0);
  border-right: 2px solid rgb(222, 0, 0);
  top: 67%;
  left: 20%;
  transform: rotate(4deg) skewX(-65deg);
  z-index: -1;
}


.trust ul {
  width: 95%;
  height: auto;
  margin: auto;
  padding: 3% 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}


.external-link li {
  display: block;
}

.external-link img {
  max-width: 200px;
  max-height: 150px;
  display: block;
  margin: 15px;
  transition: 0.3s;
  filter: drop-shadow(8px 8px 12px rgba(0, 0 , 0, 0.7));
}

.external-link img:hover {
  scale: 1.1;
  opacity: 0.75;
}


/* *************************** CONTACT ****************************** */

.contact {
  position: relative;
  min-height: 1390px;
  background-color: rgba(28, 28, 28, 1);
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);
  z-index: 4;
}

.contact::before {  
  content:"";
  position: absolute;
  width: 80%;
  height: 50%;
  border-top: 2px solid rgb(222, 0, 0);
  border-right: 2px solid rgb(222, 0, 0);
  top: 518px;
  right: 150px;
  transform: rotate(-26deg) skewX(-10deg);
  z-index: -1;
}

.contact h2 {
  margin: 80px 0 120px 0;
}

.contact .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact .content::before {  
  content:"";
  position: absolute;
  width: 80%;
  height: 35%;
  border-top: 2px solid rgb(222, 0, 0);
  border-right: 2px solid rgb(222, 0, 0);
  top: 272px;
  right: 309px;
  transform: rotate(191deg) skewX(-25deg);
}


/* ***************************** Form ******************************* */

.contact-area {
  display: block;
  text-align: start;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 45%;
  min-width: 550px;
  z-index: 3;
}

.contact-area p {
    padding : 15px 55px 65px;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

form input, textarea {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  color: #ccc;
  width: 100%;
  margin: 10px 0;
  outline: 0;
  font-family: "Duru Sans";
  font-size: 1.1em;
  resize: none;
  box-shadow: 6px 6px 10px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
  padding : 15px;
  border-radius: 6px;
}

/* Masquage du "Pot de miel" */
.hp-field{position:absolute;left:-9999px;}

textarea {
  height: auto;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #CCC;
  font-size: 1.1rem;
  font-family: Offside;
}  

.checkbox {
  font-size: 0.8em;
  margin: 20px 0;

}
form input[type="checkbox"] {
  background-color: rgba(255, 255, 255, 0.2);
  width: 20px;
  box-shadow: 0 0 0 rgba(0, 0 , 0, 0);
  border: none;
  border-radius: 0px;
  float: left;
  margin: 3px 10px 0 0;
}

form .hidden {
  height: 1px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: -10000px;
  width: 1px;
}

.cgu {
  position: relative;
  color: #f0f0f0;
  line-height: 1.4em;
}
.cgu:hover {
  color: #a0a0a0;
}
.cgu::before{
  content: "";
  position: absolute;
  background: #a0a0a0;
  width: 100%;
  height: 1px;
  bottom: -1px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.cgu:hover::before{
  transform-origin: 0 0;
  transform: scaleX(1);
}

form input[type="submit"] {
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 15px;
  color: #111;
  font-size: 1.1rem;
  font-family: Offside;
  font-weight: bold;
  border: 0;
  transition: 0.2s;
  cursor: pointer;
}

form input[type="submit"]:hover{
  background-color: rgba(255, 255, 255, 0.5);
  color: #DE0000;
  font-size: 1.2rem;
}

.alert-error {
  background-color: #fbb7b3;
  border: 3px solid #98070a;
  color: #98070a;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 0.9rem;
  padding: 15px;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 3px 3px 6px rgba(0, 0 , 0, 0.7);
}
.alert-success {
  background-color: #b3fbb5;
  border: 3px solid #07980e;
  color: #079813;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 0.9rem;
  padding: 15px;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 3px 3px 6px rgba(0, 0 , 0, 0.7);
}

/* ********************** Aside WHY ? ******************** */

aside {
  width: 45%;
  height: auto;
  min-width: 550px;
  padding: 15px;
  margin: 40px auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

aside .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

aside h2 {
  position: relative;
  display: block;
  font-family: Megrim;
  color: #f0f0f0;
  font-size: 1.6em;
  text-transform: uppercase;
  margin: 15px 30px;
  text-align: center;
}

aside p {
  text-align: justify;
}

/* ********************** Social ************************ */

.social{  
  margin: 50px 0 150px 0;
}

.icons { 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.glassIco {
  position: relative;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  margin: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glassIco, .glassIco * {
  transition: 0.4s ease-in-out;
}
.glassIco::before {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(0px);
  -webkit-filter: blur(0px);
  transition: 0.4s;
  transform: skewX(45deg) translateX(calc(75px + 50%));
  -webkit-transform: skewX(45deg) translateX(calc(75px + 50%));
}
.glassIco:hover {
  transform: translateY(-20px) scale(1.2);
  -webkit-transform: translateY(-20px) scale(1.2);
}
.glassIco:hover::before {
  transform: skewX(45deg) translateX(calc(75px * -1 - 50%));
  -webkit-transform: skewX(45deg) translateX(calc(75px * -1 - 50%));
}
.glassIco > * {
  opacity: 0.8;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); 
  border: 0;
}

/* ***************************** Footer****************************** */

footer {
  bottom: 0px;
  width: 100%;
  height: 150px;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);  
  z-index: 12;
}

.links{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.links p{
  margin: 30px 30px;
}
.links .link{
  font-size: 0.6em;
  text-decoration: none;
  color: #666;
  position: relative;
}
.links .link:hover{
  color: #aaa;
}
.links .link::before{
  content: "";
  position: absolute;
  background: #aaa;
  width: 100%;
  height: 1px;
  bottom: -2px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.links .link:hover::before{
  transform-origin: 0 0;
  transform: scaleX(1);
}
.webcod, .ebcod{
  text-align: center;
  color: #757575;
  font-size: 0.6em;
  padding-bottom: 25px;
}
.webcod span{
  font-weight: bold;
  text-shadow: 0 0 1px rgba(0, 228, 255, 0.6);
  font-family: Megrim;
  font-size: 1.6em;
}

.webcod a {  
  position: relative;
}
.webcod a::before {
  content:"";
  position: absolute;
  background: #cc0b0d;
  width: 100%;
  height: 1px;
  bottom: -2px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
}

.webcod a:hover::before {
  transform-origin: 0 0;
  transform: scaleX(1);
}

.webcod span #w{
  color: #cc0b0d;
}


/* ************************* Responsive *************************** */


@media (max-width: 1307px) {
  .navlinks-container a {
    font-size: 1.1rem;
  }
  .navlinks-container a span {
    font-size: 1.3rem;
  }
  .home .content {
    flex-direction: column;
  }
  .home .text {
    width: 100%;
  }
  .home .illustration {
    width: 80%;
  }
  h2 {
   font-size: 2.5em;
  }
  .services .content {
    width: 100%;
  }
  .listen-details {
    width: 40%;
  }
  .contact .content {
    flex-direction: column;
  }
  .contact-area, aside {
    width: 75%;
  }
}


@media (max-width: 1100px) {
  .navlinks-container a {
    font-size: 0.9rem;
  }
  .navlinks-container a span {
    font-size: 1.1rem;
  }
  h1 {
    font-size: 2.4em;
  }
  h2 {
    font-size: 2.1em;
  }
  .presentation .content {
    flex-direction: column;
  }
  .presentation .text {
    width: 85%;
  }
  .home .illustration {
    min-width: 200px;
    height: 585px;
    margin: 3% 0 0 1%;
  }  
  .home .illustration::after {    
    width: 105%;
    height: 77%;
    top: 5%;
    left: 0%;
    transform: rotate(13deg);
  }
  .services::before {
    transform: rotate(170deg) skewX(-25deg);
    right: 92px;
    top: 230px;
  }
  .services .content::before {
    transform: rotate(304deg) skewX(-45deg);
    right: 231px;
    top: 822px;
    width: 55%;
    height: 60%;
  }
}


@media (max-width: 900px) {
  nav {
    position: relative;
  }
  .logo {
    order: 2;
    margin-right: 50%;
    transform: translate(50%);
  }
  main {    
  scroll-behavior: auto;
  }
  .main-navlinks {
    order: 1;
  }
  /* Hamburger */
  .hamburger {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: none;
    display: flex;
    background: #111111;
    align-items: center;
    position: relative;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #DE0000;
    position: absolute;
    pointer-events: none;
    transition: opacity 0.3s 0.15s ease-out;
  }
  .hamburger span:nth-child(1),
  .hamburger span:nth-child(2),
  .hamburger span:nth-child(3) {
    transition: transform 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    transform: translateY(7px);
  }
  .hamburger span:nth-child(3) {
    transform: translateY(-7px);
  }
  .hamburger.open span:nth-child(1) {
    transform: translate(0) rotate(135deg);
  }
  .hamburger.open span:nth-child(2) {
    width: 650%;
    transform: translate(100vw);
  }
  .hamburger.open span:nth-child(3) {
    transform: translate(0) rotate(-135deg);
  }
  .navlinks-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    height: 100vh;
    padding: 15px 50px 15px 20px;
    background-color: #111;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
    z-index: 10;
    transform: translate(-100%);
  }
  .open {
    transform: translate(0%);
  }
  .navlinks-container a {
    font-size: 1.1rem;
    margin: 10px 0;
  }
  .navlinks-container a span {
    font-size: 1.3rem;
  }
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.8em;
  }
  .content p, footer {
    font-size: 0.9em;
  }
  .content .text, 
  aside .text p {
    text-align: center;
  }
  p span {
    font-size: 1.2em;
  }
  .home .illustration {
    height: 460px;
  }  
  .card a {
    font-size: 0.9em;
  }
  article h1 {
    font-size: 2.5em;
  }
  article p {
    font-size: 0.9em;    
  line-height: 125%;
  }
  article .description {
    margin: 20px 0 25px 0;
    padding: 0;
  }
  
}


@media (max-width: 780px) {
  h1 {
    font-size: 1.5em;
  }
  h2 {
    font-size: 1.3em;
  }
  .content p, footer {
    font-size: 0.8em;
  }
  p span {
    font-size: 1em;
  }
  article h1 {
    font-size: 1.8em;
  }
  article p {
    font-size: 0.8em;    
    line-height: 115%;
  }
  .listen-details {
    width: 75%;
    min-height: 300px;
  }
  .contact-area, aside {
    min-width: 400px;
  }
  .glassIco {
    width: 60px;
    height: 60px;
  }
  .home .illustration {
    min-width: 200px;
    height: 355px;
    margin: 10% 0 0 1%;
  }  
  .home .illustration::after {    
    width: 105%;
    height: 77%;
    top: 7%;
    left: 2%;
    transform: rotate(13deg);
  }  
}


@media (max-width: 600px) {
  .logo img {
    height: 50px;
  }
  h1 {
    font-size: 1.2em;
  }
  h2 {
    font-size: 1.1em;
  }
  .content p, footer {
    font-size: 0.7em;
    padding: 25px 10px;
  }
  footer {
    padding-bottom: 170px;
  }
  p span {
    font-size: 0.9em;
  }
  article h1 {
    font-size: 1.6em;
  }
  article p {
    font-size: 0.8em;    
  line-height: 115%;
  }
  .home .text {
    min-width: 200px;
  }  
  .portrait {
    width: 60%;
  }
  .presentation .text {
    min-width: 250px
  }
  .services .content {
    display: flex;
    flex-direction: column;
    width: 90%;
  }
  .services .text {
    min-width: 250px;
    width: 100%;
  }
  .services .showcase {
    min-width: 250px;
    width: 100%;
  }
  .cards-section {    
    min-width: 250px;
    width: 100%;
  }
  .services .card {
    min-width: 250px;
    width: 100%;
  }
  .services .card .description {
    padding: 0 15px;
  }
  .services .card a {
    right: -70%;
    top: 10%;
  }
  .trust p {
    padding: 0 30px;
  }
  .trust .content::before{
    transform: rotate(60deg);
    top: 35%;
  }
  .contact-area, aside {
    width: 90%;
    min-width: 250px;
  }
  aside h1 {
    font-size: 1.25em;
   }
}


@media (max-width: 550px) {
  .home .illustration {
    height: 275px;
  }  
  .services .card a {
  right: -65%;
  top: 10%;
  }
  .portrait {
    min-height: 225px;
  }
}


@media (max-width: 511px) {
  h1 {
    font-size: 1.1em;
  }
  h2 {
    font-size: 1.3em;
  }
  h3 {
    font-size: 1.1em;
  }
  .services .card a {
  right: -63%;
  top: 5%;
  }
  .trust ul {
    justify-content: center;
  }
  .trust p, .trust h2 {
    text-align: center;
  }


  footer .links {
    flex-direction: column;
    margin-bottom: 35px;
  }
  footer .links p {
    margin: 10px;
  }
  footer {
    margin-bottom: 50px;
    height: 200px;
  }

}


@media (max-width: 470px) {
  .services .card a {
  right: -58%;
  }
}


@media (max-width: 436px) {
  h1 {
    font-size: 0.9em;
  }
}


@media (max-width: 425px) {
  .home .illustration {
    height: 225px;
  }  
  .services .card a {
  right: -55%;
  }
}


@media (max-width: 421px) {
  .services .card a {
  top: 0%;
  }
  .glassIco {
    margin: 10px;
  }

}


@media (max-width: 400px) {
  .services .card a {
  right: -50%;
  }
  .portrait {
    min-height: 175px;
  }
}


@media (max-width: 360px) {
  .home .illustration {
    height: 175px;
  }  
  .services .card a {
  right: -45%;
  }
}


@media (max-width: 351px) {
  .services .card a {
  top: -5%;
  }
}


/* ************************** REVEAL ******************************** */

.reveal-loaded .reveal [class*="reveal-"] {
  opacity: 0!important;
  transform: translateY(30px)!important;
  transition: 0s!important;
}

.reveal-loaded [class*="reveal-"]{
  transition: 1s cubic-bezier(.5, 0, 0, 1);
}

/* On ajoute du délai */
.reveal-loaded .reveal-2 {
  transition-delay: .1s;
}

.reveal-loaded .reveal-3 {
  transition-delay: .2s;
}

.reveal-loaded .reveal-4 {
  transition-delay: .3s;
}

.reveal-loaded .reveal-5 {
  transition-delay: .4s;
}

.reveal-loaded .reveal-6 {
  transition-delay: .5s;
}

.reveal-loaded .reveal-7 {
  transition-delay: .6s;
}

.reveal-loaded .reveal-8 {
  transition-delay: .7s;
}

.reveal-loaded .reveal-9 {
  transition-delay: .8s;
}
