/* Variables générales */

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

html {
  scroll-behavior: smooth;
}

:root {
  --menuLinks-color: #ffb453;
  --background-color: #003a42;
  --background-color-light: #01444d;
  --contactButton-color: #69d6de;
  --primary-color: #5ccba6;
  --primary-color2: #269a91;
  --secondary-color1: #ffcbb8;
  --secondary-color2: #c4350b;
  --secondary-color3: #ff8392;

  --ff-primary: 'Montserrat', sans-serif;
  --fw-regular: 400;
  --fw-bold: 700;
  --fw-light: 300;
  --fw-extralight: 200;

  --fs-h1: 2rem;
  --fs-h2: 1.5rem;
  --fs-h3: 1.2rem;
  --fs-body: 1rem;
}

@media (min-width: 1400px) {
  :root {
    --fs-h1: 3rem;
    --fs-h2: 2.5rem;
    --fs-h3: 2.2rem;
    --fs-body: 1.5rem;
  }
}

/* General sizes */

body {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  line-height: 1.6rem;
}
img {
  display: block;
  max-width: 100%;
}

/* Typography---------------------------------- */
h1,
h2,
h3 {
  line-height: 1.2rem;
  margin: 0;
}
h1 {
  font-size: var(--fs-h1);
}
h2 {
  font-size: var(--fs-h2);
  line-height: 1.5rem;
}
h3 {
  font-size: var(--fs-h3);
  line-height: 1.5rem;
}

.hero-content {
  color: var(--contactButton-color);
  font-size: 2rem;
  line-height: 2.5rem;
}
.hero-title {
  color: var(--primary-color);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  padding: 1em 0;
}

.section-portfolio-title {
  text-align: center;
  color: var(--primary-color2);
  margin: 0;
  padding: 2em 0 1em 0;
}
.section-portfolio-subtitle {
  text-align: center;
  font-size: var(--fs-h2);
  color: var(--background-color);
  font-weight: var(--fw-regular);
  padding: 0 0 2em 0;
  line-height: 2rem;
}
.section-about-title {
  text-align: center;
  color: white;
  margin: 0;
  padding: 2em 0 1em 0;
}
.section-about-subtitle {
  text-align: center;
  font-size: var(--fs-h2);
  color: var(--secondary-color2);
  font-weight: var(--fw-regular);
  padding: 0 0 2em 0;
}
.section-clients-title {
  text-align: center;
  color: var(--primary-color2);
  padding: 1em 0;
}

.cta {
  text-align: center;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  position: relative;
  z-index: 99;
  max-width: 65em;
  margin: 0 auto;
  padding: 2rem 2rem;
}


/* End general sizes */

/* Enter intro modal */

.front-page {
  max-width: 100%;
  height: 100vh;
  position: relative;
  clip-path: circle(75%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background: lightgoldenrodyellow;
  background-image: url("../images/intro-bg.jpg");
  background-repeat: no-repeat;
  background-position: center 65%;
  background-size: 300%;
  object-fit: cover;
}

.left {
  position: absolute;
  background-image: url("../images/intro-bg-left.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  width: 100%;
  height: 90%;
  bottom: 0;
  left: 0;
  background-size: contain;
}

.right {
  position: absolute;
  background-image: url("../images/intro-bg-right.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 100%;
  height: 90%;
  right: 0;
  bottom: 0;
  background-size: contain;
}


.second-page {
  height: 100vh;
}
.intro-page, .music-note {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  color: #fff;
  z-index: 1;
}

.title {
  font-size: 3rem;
  padding-bottom: 1em;
}
.subtitle {
  font-size: 1.5rem;
}

.enter-btn {
  width: 50%;
  height: 45%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -45%);
  cursor: pointer;
  /* border: 1px solid blue; */
}
.enter-btn-text {
  
  pointer-events: none;
  background: transparent;
  display: block;
  position: absolute;
  top: -45%;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  padding: .8em 1em;
  border: 1px solid #fff;
  border-radius: 16em;
  opacity: 1;
  cursor: default;
}



.intro-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.hide {
  display: none;
}
.show {
  display: block;
}

/* End intro modal */

/* Header */
#header {
  width: 100%;
  background: var(--background-color);
  position: fixed;
  z-index: 999;
  box-shadow: 0px 3px 8px rgba(0, 39, 44, 0.4);
}
nav {
  width: 100%;
  position: relative;
  z-index: 999;
}


.current-page {
  border-bottom: 2px solid var(--menuLinks-color);
}
.current-page:hover,
.current-page:focus {
  border-bottom: 2px solid var(--contactButton-color);
}
nav .container {
  display: flex;
  justify-content: space-between;
  height: 6em;
  align-items: center;
}
.logo svg {
  width: 150px;
  align-items: center;
  position: relative;
  z-index: 999;
  cursor: pointer;
}
.navbar-links {
  position: fixed;
  background: radial-gradient(
    101.78% 101.78% at 120.56% 127.58%,
    #2e8a91 0%,
    #003a42 100%
  );
  color: var(--contactButton-color);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;

  transform: translateX(100%);
  transition: transform 250ms cubic-bezier(0.5, 0, 0.5, 1);
}
.menu {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  margin: 16em 0;

  margin: 0;
  padding: 8em 0 2em;
}

.navbar-links a {
  display: inline-block;
  padding: 1em 1.3em;
  color: var(--menuLinks-color);
  font-weight: bold;
  font-size: 1.56rem;
  line-height: 1;
  transition: 0.3s;
}

.navbar-links a.active {
  color: var(--background-color);
  border: 1px solid var(--contactButton-color);
  background-color: var(--contactButton-color);
  border-radius: 4px;
  /* margin-left: 0.5em; */
  margin: 0 1em;
  font-size: 1.5em;
  padding: 0.8em 2em;
  /* width: 90%; */
  min-width: 328px;
  text-align: center;
}

.navbar-links a.active:hover,
.navbar-links a.active:focus {
  color: var(--contactButton-color);
  background-color: var(--background-color);
  border: 1px solid var(--contactButton-color);
}
.navbar-links a:hover,
.navbar-links a:focus {
  color: var(--contactButton-color);
}

.nav-toggle {
  padding: 0.5em;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 2.2em;
  z-index: 1000;
}
.nav-open .navbar-links {
  transform: translateX(0);
}

.nav-open .nav-toggle {
  position: fixed;
}
.nav-open .hamburger::before {
  transform: rotate(90deg) translateX(-9px);
}
.nav-open .hamburger {
  width: 2em;
  transform: rotate(0.625turn);
}
.nav-open .hamburger::after {
  opacity: 0;
}
.hamburger {
  display: block;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  background: var(--menuLinks-color);
  width: 1.5em;
  height: 3px;
  border-radius: 1em;
  transition: transform 250ms ease-in-out;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
}
.hamburger::before {
  width: 2em;
  top: 9px;
}
.hamburger::after {
  width: 2em;
  bottom: 9px;
}

.navbar-links .current {
  border-bottom: 2px solid var(--contactButton-color);
}

/* End header */

/* Hero section */

#hero {
  margin: auto;
  padding: 6em 0 1em 0;

  background-image: radial-gradient(
    121.2% 280.48% at 100.69% 11.71%,
    #1e7c5d 0%,
    #003a42 33.84%
  );
  position: relative;
}
#hero h3 {
  font-weight: 200;
}

.hero-text .cta-savoir {
  display: inline-block;
  color: var(--background-color);
  background-color: var(--secondary-color1);
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1em 2em;
  margin-top: 2em;
  border-radius: 4px;
  box-shadow: 5px 5px 24px rgba(0, 34, 39, 0.8);
  transition: 0.3s;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.hero-text .cta-savoir:hover {
  background: var(--menuLinks-color);
  transition: 250ms ease-in-out;
}

.hero-image {
  max-width: 1000px;
  position: relative;
  right: 0;
  bottom: 0;
  padding-top: 2em;
  margin: 0;
}

.hero-image2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
}

/* End Hero section */

/* Portfolio home section */

#section-portfolio-home {
  margin: auto;
  position: relative;
}

.portfolio-home-img {
  box-shadow: 4px 4px 16px rgba(0, 58, 66, 0.3);
  margin-bottom: 20px;
}
.lines {
  position: absolute;
  margin: auto;
  left: -15em;
  z-index: -1;
}
.crosses {
  position: absolute;
  right: 0;
  bottom: 9em;
  z-index: -1;
}

.cta-voir-plus {
  display: inline-block;
  color: var(--menuLinks-color);
  background-color: var(--background-color);
  width: 100%;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1em 4em;
  margin: 4em auto;
  border-radius: 8px;
  box-shadow: 3px 3px 16px rgba(0, 58, 66, 0.3);
  cursor: pointer;
}
.cta-voir-plus:hover {
  background: var(--primary-color);
  color: var(--background-color);
  transition: 250ms ease-in-out;
}

.portfolio-home-item {
  background: var(--primary-color2);
  position: relative;
}

.overlay-portfolio-info {
  background: var(--primary-color2);
  position: absolute;
  transition: transform 750ms cubic-bezier(0.5, 0, 0.5, 1), opacity 250ms linear;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.overlay-portfolio-text {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 1.2rem;
  text-align: left;
  padding: 1em;
  margin: auto 0;
}
.portfolio-home-item:hover {
  /* transform: scale(1); */
  opacity: 1;
}
.portfolio-home-item:hover .overlay-portfolio-info {
  opacity: 0.9;
}

/* About section */

#section-about {
  background: radial-gradient(
    100% 661.22% at 100% 95.36%,
    #ff8392 0%,
    #ffcbb8 100%
  );
  margin: auto;
  position: relative;
}

.lines-obliques {
  position: absolute;
  left: -25em;
  z-index: 5;
  width: 100%;
}

.cta-savoir-plus {
  display: inline-block;
  color: var(--menuLinks-color);
  background-color: var(--secondary-color2);
  width: 100%;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1em 4em;
  margin: 2em auto 3em;
  border-radius: 8px;
  box-shadow: 3px 3px 24px rgba(196, 53, 11, 0.6);
}
.cta-savoir-plus:hover {
  background: var(--menuLinks-color);
  color: var(--secondary-color2);
  transition: 250ms ease-in-out;
}
.services {
  display: row;
}

.about-box {
  background: white;
  padding: 32px 32px;
  margin: 20px 0;
  color: var(--background-color);
  width: 100%;
  box-shadow: 3px 4px 37px rgba(253, 115, 132, 0.8);
}

.about-ui {
  border-radius: 48px 48px 48px 0;
}
.about-ui h3 {
  color: var(--secondary-color2);
  text-align: center;
  padding-bottom: 1em;
}
.about-pack {
  border-radius: 48px 0 48px 48px;
}
.about-pack h3 {
  color: var(--primary-color2);
  text-align: center;
  padding-bottom: 1em;
}

.about-event {
  border-radius: 0 48px 48px 48px;
}
.about-event h3 {
  color: var(--secondary-color3);
  text-align: center;
  padding-bottom: 1em;
}

/* About client */

#section-clients {
  margin: auto;
  position: relative;
}

.cactus-ananas {
  display: none;
}

.lines-obliques-green {
  display: none;
}

.chardons {
  display: none;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 10;
  margin: 1em auto 3em;
}

/* Footer */

.footer-top {
  background: var(--background-color);
  padding: 3em 0;
}

.nav-footer {
  display: inline;
  color: var(--menuLinks-color);
  position: relative;
  height: 6em;
  max-width: 100%;
  margin: 2em auto;
  padding: 0 2rem;
  text-align: center;
}
.menu-footer a {
  color: var(--menuLinks-color);
  font-weight: 700;
  margin: 0;
  font-size: 1.5rem;
  line-height: 3rem;
}
.menu-footer {
  margin: 2em auto;
}

.menu-footer a:hover {
  color: var(--contactButton-color);
  transition: 250ms ease-in-out;
}

.footer-top .logo {
  display: none;
}
.socials {
  margin: 3em auto;
  padding: 2em 0;
  color: var(--contactButton-color);
}

.footer-bottom {
  background: var(--background-color-light);
  padding: 6em 0;
  text-align: center;
  font-size: 0.8em;
  color: white;
  font-weight: 300;
}
.socials-items {
  display: flex;
  justify-content: space-between;
  color: var(--contactButton-color);
}
.socials-items a {
  color: var(--contactButton-color);
  transition: 300ms ease-in-out;
}
.socials-items a:hover {
  color: var(--secondary-color3);
}

.socials-title {
  color: var(--menuLinks-color);
  margin-bottom: 1em;
  font-size: 1.5rem;
}

.mentions-rgpd {
  text-decoration: none;
  color: white;
  margin: 3em 0;
}
.footer-copywrites {
  text-align: center;
  margin: 1em auto 3em;
  width: 100%;
  padding-bottom: 2em;
  border-bottom: 1px solid var(--contactButton-color);
}

@media (min-width: 600px) {
  /* Modal */
  .front-page {
    max-width: 100%;
    height: 100vh;
    position: relative;
    clip-path: circle(75%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background: lightgoldenrodyellow;
    background-image: url("../images/intro-bg.jpg");
    background-repeat: no-repeat;
    background-position: center 65%;
    background-size: 170%;
    object-fit: cover;
  }
  .enter-btn {
    width: 30%;
    height: 45%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -55%);
    cursor: pointer;
  }
  .enter-btn-text {
    
    pointer-events: none;
    background: transparent;
    display: block;
    position: absolute;
    top: clamp(-6em, -35%, -12em);
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    font-weight: var(--fw-regular);
    text-transform: uppercase;
    padding: .8em 1em;
    border: 1px solid #fff;
    border-radius: 16em;
    opacity: 1;
    cursor: default;
  }
  /* Header */

  .menu {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 16em 0;

    margin: 0;
    padding: 8em 0 2em;
  }

  .navbar-links a {
    display: inline-block;
    padding: 1em 1.3em;
    color: var(--menuLinks-color);
    font-weight: bold;
    font-size: 1.56rem;
    line-height: 1;
    transition: 0.3s;
  }

  .navbar-links a.active {
    color: var(--background-color);
    border: 1px solid var(--contactButton-color);
    background-color: var(--contactButton-color);
    border-radius: 4px;
    /* margin-left: 0.5em; */
    margin: 0 1em;
    font-size: 1.5em;
    padding: 0.8em 2em;
    min-width: 139px;
    text-align: center;
  }
  .menu-cta {
    margin: 0 auto;
    text-align: center;
  }
  .menu-cta a.nav-link {
    padding: 0.8em 4em;
  }

  /* Hero */
  .hero-text .cta-savoir {
    display: inline-block;
    color: var(--background-color);
    background-color: var(--secondary-color1);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1em 2em;
    margin-top: 2em;
    border-radius: 8px;
    box-shadow: 5px 5px 24px rgba(0, 34, 39, 0.8);
    transition: 0.3s;
    text-align: center;
    max-width: 100%;
  }
  

  img {
    max-width: 100%;
  }
  #hero .container.grid-2 {
    grid-template-columns: 2.5fr 3.5fr;
    text-align: left;
  }
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
  }
  /*portfolio*/
  #section-portfolio-home {
    margin: auto;
    position: relative;
  }
  .lines {
    position: absolute;
    margin: auto;
    left: -1em;
    z-index: -1;
  }
  .portfolio-home-img {
    padding: 0;
    margin: 0;
  }
  .portfolio-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Clients*/
  #section-clients {
    margin: auto;
    position: relative;
  }
  .lines-obliques {
    position: absolute;
    left: -18em;
    z-index: 5;
    width: 100%;
  }

  .services {
    display: flex;
  }

  .about-box {
    background: white;
    padding: 32px 32px;
    margin: 20px 0;
    color: var(--background-color);
    width: 33%;
  }
  .about-box + .about-box {
    margin-left: 20px;
  }

  /* Clients */
  #section-clients {
    margin: auto;
    position: relative;
    margin-bottom: 3em;
    padding-bottom: 3em;
  }

  .cactus-ananas {
    display: inline;
    position: absolute;
    margin: auto;
    left: 2em;
    bottom: -4em;
    z-index: -1;
  }

  .lines-obliques-green {
    display: inline;
    position: absolute;
    margin: auto;
    right: 0;
    bottom: -30em;
    z-index: -1;
  }

  .chardons {
    position: absolute;
    margin: auto;
    right: 6em;
    bottom: -1em;
    z-index: 5;
  }
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 10;
    margin: 1em auto 5em;
  }

  /* Footer */

  
  .socials-items {
    margin: 0 auto;
    padding-top: 1em;
    width: 40%;
  }
}

@media (min-width: 1000px) {
  /* Modal */
  .front-page {
    
    background-size: cover;
  }
  /* header */
  .hamburger {
    display: none;
  }

  .navbar-links {
    position: relative;

    background: transparent;
    color: var(--contactButton-color);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateX(0%);
  }
  .navbar-links ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .navbar-links a {
    display: inline-block;
    padding: 0.9em 2em;
    color: var(--menuLinks-color);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
    transition: 0.3s;
  }
  .navbar-links a.active {
    color: var(--background-color);
    border: 1px solid var(--contactButton-color);
    background-color: var(--contactButton-color);
    border-radius: 4px;
    /* margin-left: 0.5em; */
    width: 90%;
    font-size: 1em;
    padding: 0.8em 0.9em;
  }
  /* Modal */
  .enter-btn {
    width: 18%;
    height: 48%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -55%);
    cursor: pointer;
  }
  .enter-btn-text {
    display: block;
    pointer-events: none;
    position: absolute;
    top: clamp(-5em, -25%, -8em);
    color: #fff;
    font-size: 1.1rem;
    font-weight: var(--fw-regular);
    text-transform: uppercase;
    padding: .8em 1em;
    border: 1px solid #fff;
    border-radius: 16em;
    opacity: 0;
    cursor: default;
  }
  
  .enter-btn:hover .enter-btn-text  {
    opacity: 1;
  }

  /* Hero */
  .hero-text .cta-savoir {
    display: inline-block;
    color: var(--background-color);
    background-color: var(--secondary-color1);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1em 2em;
    margin-top: 2em;
    border-radius: 8px;
    box-shadow: 5px 5px 24px rgba(0, 34, 39, 0.8);
    transition: 0.3s;
    text-align: center;
    max-width: 50%;
  }
  img {
    max-width: 100%;
  }
  #hero .container.grid-2 {
    grid-template-columns: 2.5fr 3.5fr;
    text-align: left;
  }

  /*portfolio*/
  #section-portfolio-home {
    margin: auto;
    position: relative;
  }

  .portfolio-home-img {
    padding: 0;
    margin: 0;
  }
  .portfolio-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .lines {
    position: absolute;
    margin: auto;
    left: -1em;
    z-index: -1;
  }
  .crosses {
    position: absolute;
    right: 0;
    bottom: 2em;
    z-index: -1;
  }

  .cta-voir-plus {
    display: inline-block;
    color: var(--menuLinks-color);
    background-color: var(--background-color);
    width: 33%;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1em 4em;
    margin: 4em auto;
    border-radius: 8px;
    box-shadow: 3px 3px 16px rgba(0, 58, 66, 0.3);
  }
  .portfolio-home-img {
    padding: 0;
    margin: 0;
  }
  .overlay-portfolio-text {
    position: absolute;
    top: 40%;
    color: #fff;
    font-size: 1rem;
    text-align: left;
    padding: 1em;
    line-height: 1.5rem;
    margin: auto 0;
  }

  /* About*/
  #section-clients {
    margin: auto;
    position: relative;
  }
  .lines-obliques {
    position: absolute;
    left: 0;
    z-index: 5;
    width: 100%;
  }

  .services {
    display: flex;
  }
  .cta-savoir-plus {
    display: inline-block;
    color: var(--menuLinks-color);
    background-color: var(--secondary-color2);
    width: 33%;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1em 4em;
    margin: 2em auto 3em;
    border-radius: 8px;
    box-shadow: 3px 3px 24px rgba(196, 53, 11, 0.6);
  }

  .about-box {
    background: white;
    padding: 32px 32px;
    margin: 20px 0;
    color: var(--background-color);
    width: 33%;
  }
  .about-box + .about-box {
    margin-left: 20px;
  }

  /* Clients */
  #section-clients {
    margin: auto;
    position: relative;
    padding-bottom: 12em;
  }

  .cactus-ananas {
    display: inline;
    position: absolute;
    margin: auto;
    left: 0;
    bottom: -1em;
    z-index: -1;
  }

  .lines-obliques-green {
    display: inline;
    position: absolute;
    margin: auto;
    right: 0;
    bottom: -23em;
    z-index: -1;
  }

  .chardons {
    display: block;
    position: absolute;
    margin: auto;
    right: 2em;
    bottom: -6em;
    z-index: 5;
  }
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
    margin: 1em auto 5em;
  }

  /* Footer */

  .footer-top {
    background: var(--background-color);
    padding: 4em 0 8em;
  }
  .footer-top .nav-footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 6em;
    max-width: 75em;
    margin: 0 auto;
    padding: 0 0 3em;
  }
  .footer-top .logo {
    display: inline;
    margin: 0;
    padding: 0;
    cursor: pointer;
    width: 33%;
  }
  .menu-footer {
    margin: 0;
    padding: 0;
    width: 33%;
  }
  .menu-footer ul {
    margin: 0;
    padding: 0;
  }

  .menu-footer a {
    margin: 0;
    padding: 0;
  }
  .socials {
    justify-content: space-between;
    margin: 0;
    padding: 0.8em 0;
    width: 33%;
  }
  .socials-items {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }
  .linkedin {
    margin-left: 2em;
  }
  .mail {
    margin-left: 2em;
  }
}
