/* -------------- CSS RESET -------------- */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* Removal of the inner and outer margins of lists */
ul {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
/* -------------- COLORS -------------- */
:root {
  --purple1: #7209B7;
  --purple2: #560BAD;
  --purple3: #480CA8;
  --purple4: #6B6ED3;
  --blue1: #3A0DA3;
  --blue2: #3F37C9;
  --blue3: #4361EE;
  --blue4: #667EEA;
  --blue5: rgba(67, 97, 238, 0.08);
  --blue6: rgba(67, 97, 238, 0.20);
  --white1: #FFFFFF;
  --white2: #EBEBEB;
  --black1: #000000;
  --black2: #0A0A0A;
  --black3: #1E1E1E;
  --grey1: #a9a9a9;
  --grey2: #d0d0d0;
}

/* -------------- TEXTS -------------- */
.fs-60 { font-size: 3em; line-height: 1em;}

/* -------------- SPACING -------------- */
.mt-24 { margin-top: 24px;}
.mt-40 { margin-top: 40px;}
.mb-60 { margin-bottom: 60px;}
.mb-80 { margin-bottom: 80px;}
.mb-8 { margin-bottom: 8px;}

/* -------------- BACKGROUNDS -------------- */
html,
body {
  background: var(--black1);
  height: 100%;
  width: 100%;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
section {
  width: 100%;
}
header {
  background: var(--black3);
}
footer {
  background: var(--black1);
}
.deg1 {
  background-image: radial-gradient(
    farthest-corner at 40px 40px,
    #0E0913 20%,
    #3A3669 70%,
    #5B71D1 120%
  );
}
.deg2 {
  background-image: radial-gradient(
    farthest-corner at 40px 40px,
    #FDFDFD 20%,
    #F5F5F5 70%,
    #F7F7F7 120%
  );
}
.deg3 {
  background-image: radial-gradient(
    farthest-corner at 40px 40px,
    #010101 20%,
    #212121 70%,
    #424242 120%
  );
}
.deg4 {
  background: var(--white1);
}
.deg5 {
  background-image: radial-gradient(
    farthest-corner at 40px 40px,
    #F2F2F3 20%,
    #F0F1F2 70%,
    #EFF0F1 120%
  );
}
.deg6 {
  background-image: radial-gradient(
    farthest-corner at 40px 40px,
    #557BCA 20%,
    #5D60C5 70%,
    #701CBA 120%
  );
}

/* -------------- GENERAL -------------- */
header {
  display: flex;
  flex-wrap: wrap;
}
main {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
section {
  width: 100%;
  padding: 82px 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.container {
  width: 1280px;
}
.full-container {
  width: 100%;
  display: flex;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.center {
  justify-content: center;
}
.space-between {
   justify-content: space-between;
}
h1, h2,
h3, h4,
h5 {
  /* font-family: 'Urbanist', sans-serif; */
  font-family: "Rubik", sans-serif;
  text-align: center;
  font-optical-sizing: auto;
  font-style: normal;
}
p, button,
input, select,
textarea, label {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 1px;
}
.title-header {
  margin: 80px 0 60px 0;
}
.title-group {
  margin-bottom: 40px;
}
.title {
  font-size: 3.125em;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -2px;
}
.subtitle {
  font-size: 1.6em;
  font-weight: 500;
}
.letter-spacing {
  letter-spacing: 4px;
}
#cta {
  width: 100%;
  display: flex;
}
#cta a {
  padding: 16px 32px 16px 32px !important;
  border-radius: 40px;
  background: var(--blue4);
  text-transform: uppercase;
  color: var(--white1);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  /* font-family: 'Urbanist', sans-serif; */
  font-family: "Rubik", sans-serif;
  transition: all 0.2s ease-out;
  pointer-events: auto;
  letter-spacing: 1px;
}
#cta a:hover {
  background-color: var(--blue3);
}
.btn {
  transition-property: transform;
  transition-duration: 200ms;
}
.cta-form {
  margin: 0 auto;
}
.btn-contact {
  padding: 16px 32px 16px 32px !important;
  border-radius: 40px;
  background: var(--blue4);
  text-transform: uppercase;
  color: var(--white1);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border: 0;
  font-family: "Rubik", sans-serif !important;
  transition: all 0.2s ease-out;
  pointer-events: auto;
  letter-spacing: 1px;
}
.btn-contact:hover {
  background-color: var(--black3);
  color: var(--white1);
}
.btn-project {
  position: relative;
  right: 0;
  padding: 12px 20px;
  border-radius: 20px;
  border: 0;
  background: var(--white1);
  text-transform: uppercase;
  color: var(--black1);
  text-align: center;
  font-size: 0.8em;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
  transition: all 0.2s ease-out;
}
.btn-project:hover {
  background-color: var(--black1);
  color: var(--white1);
}

/* -------------- ALERT -------------- */
.alert {
  position: fixed;
  overflow-y: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.75); /* Arrière-plan semi-transparent */
  backdrop-filter: blur(1px);
  z-index: 1000; /* Pour s'assurer qu'elle soit au-dessus des autres éléments */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.alert-content {
  background-color: var(--black3);
  padding: 40px 24px;
  margin: 48px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.alert p {
  margin: 0 0 20px 0 !important;
  font-size: 1.125em;
  line-height: 1.6em;
  color: var(--white1) !important;
}

.close-btn {
  background-color: var(--blue4);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.close-btn:hover {
  background-color: var(--blue3);
}

.alert.visible {
  opacity: 1;
  visibility: visible;
}

.hidden {
  display: none;
}


/* -------------- HEADER -------------- */
header {
  width: 100%;
  padding: 16px 24px;
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 7px 7px -2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 7px 7px -2px rgba(0,0,0, 0.2);
  -moz-box-shadow: 1px 7px 7px -2px rgba(0,0,0, 0.2);
}
nav {
  width: 100%;
  display: flex;
  flex-direction: row;
}
#logo {
  width: 10%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#logo img {
  width: 100px;
}
#menu {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#menu ul {
  width: 100%;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 2fr;
  /* gap: 16px; */
}
.nav-accueil {
  grid-column-start: 2;
  grid-column-end: 3;
}
.nav-portfolio {
  grid-column-start: 3;
  grid-column-end: 4;
}
.nav-contact {
  grid-column-start: 4;
  grid-column-end: 5;
}
.nav-rdv {
  grid-column-start: 6;
  grid-column-end: 7;
}
#menu li {
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
#menu li a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #FFFFFF;
  border-bottom: 1px solid var(--black3);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.15s ease-out;
}
#menu li a:hover {
  margin: 0;
  padding: 0;
  color: var(--blue3);
}
#menu li a:active {
  transition-delay: 200ms;
  color: var(--blue3);
}
a.rdv {
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 400 !important;
  letter-spacing: 0px;
  color: var(--white1);
  float: right;
  background-color: var(--blue4);
  padding: 12px 24px 10px 24px !important;
  border-radius: 8px;
  text-decoration: none;
  /* font-family: 'Urbanist', sans-serif; */
  font-family: "Rubik", sans-serif !important;
  transition: all 0.2s ease-out;
  pointer-events: auto;
}
a.rdv:hover {
  background-color: var(--blue3);
  color: var(--white1) !important;
}
#icons {
  cursor: pointer;
  display: none;
  position: absolute;
  top: 25%;
  right: 5%;
}

/* --- SECTION HOME --- */
section#home {
  min-height: 100vh;
  /* position: sticky; */
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* section#services, section#about,
section#portfolio, section#price,
section#contact-projet {
  position: sticky;
  top: 81px;
  z-index: 50;
} */
section#contact-projet {
  padding: 0;
}
#introduction {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#introduction h1 {
  color: var(--purple4);
  font-size: 3.6vw;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.yellow {
  color: #F8D10A !important;
}
#introduction h2 {
  color: var(--white1);
  font-size: 3vw;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
#introduction h4 {
  color: var(--white1);
  font-size: 1.6vw;
  font-weight: 300;
  font-style: italic;
}
.scroll {
  width: 60px;
  position: absolute;
  bottom: 16px;
  text-align: center;
}
.scroll p {
  color: var(--white1);
  font-size: 0.8em;
  font-weight: 100;
  font-family: 'Urbanist', sans-serif;
}
.scroll img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

/* --- SECTION SERVICES --- */
.card-wrapper:nth-child(1) .card-front {background: var(--purple1);}
.card-wrapper:nth-child(2) .card-front {background: var(--purple2);}
.card-wrapper:nth-child(3) .card-front {background: var(--purple3);}
.card-wrapper:nth-child(4) .card-front {background: var(--blue1);}
.card-wrapper:nth-child(5) .card-front {background: var(--blue2);}
.card-wrapper:nth-child(6) .card-front {background: var(--blue3);}

#services h2 {
  color: var(--black);
}
#services h4 {
  color: var(--blue4);
}
#services p {
  color: var(--black3);
  text-align: center;
}
.fa-icons {
  font-size: 2em;
  margin-bottom: 16px;
  opacity: 0.70
}
#text-services {
  max-width: 768px;
  margin: 0 auto 60px auto;
}
.container-services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
.card-wrapper {
  position: relative;
  min-height: 340px;
  perspective: 2000px;
  perspective-origin: top;
  transition-property: transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
  &:hover .arrow-icon {
    opacity: 1;
    color: var(--white1);
    display: block;
    transform: rotate(360deg);
    transition: transform 800ms ease-in-out 150ms;
  }
}
.arrow-icon {
  position: absolute;
  color: var(--black3);
  bottom: 16px;
  opacity: 0;
  transition-timing-function: ease-in-out;
  transition-duration: 1s;

}
.card-wrapper:hover {
  cursor: pointer;
  transform: scale(1.10);
}
.card-wrapper:active {
  cursor: pointer;
}
.card {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.86,0,0.07,1);
}
.card-front {
  transition-timing-function: ease;
  transition-duration: 400ms;
}
.card-face {
  position: absolute;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.card-front,
.card-back {
  display: flex;
  flex-direction: column;
  justify-content :center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  padding: 16px;
}
.card-back {
  background: var(--black3);
  transform: rotateY(180deg);
}
.card-front h3 {
  color: var(--white1) !important;
  font-size: 1.4em !important;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-front p {
  color: var(--white2) !important;
  font-size: 1em !important;
  font-weight: 400;
  text-align: center;
}
.card-back p {
  color: var(--white1) !important;
  font-size: 0.9em !important;
  font-weight: 400;
}

/* --- SECTION À PROPOS --- */
#about h2 {
  color: var(--white1);
}
#about h3 {
  color: var(--blue4);
}
#about h4 {
  color: var(--blue4);
  font-size: 1.4em;
  margin-bottom: 16px;
}
#about p {
  color: var(--white1);
  text-align: center;
}
.container-skills {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
.modal {
  background: var(--blue5);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.2s ease-out;
}
.modal:hover {
  background: var(--blue6);
}
.col-modal {
  display: flex;
  justify-content: space-around;
}
.photo-id {
  grid-column-start: 1;
  grid-column-end: 4;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: url(images/nm-bg-deg.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size : cover !important;
  filter: grayscale(20%) !important;
  /* background: rgb(131,58,180);
  background: linear-gradient(45deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%); */
}
.text-id {
  grid-column-start: 4;
  grid-column-end: 7;
  padding: 120px 60px !important;
  border-radius: 8px;
  background: var(--black1);
}
.text-id p, .text-id h2, .text-id h4 {
  text-align: left !important;
}
.competences, .qualites {
  grid-column-start: 1;
  grid-column-end: 7;
  padding: 60px 0px 0px 0px !important;
}
.text-id h2, .competences h2,
.qualites h2 {
  font-size: 2.4em;
  font-weight: 100;
}
.text-id h4, .competences h4,
.qualites h4 {
  font-size: 2em;
  font-weight: 400;
  color: var(--purple4) !important;
}
.text-id p, .competences p,
.qualites p {
  font-weight: 200;
  font-size: 1em;
  line-height: 1.6em;
}
.container-soft-skills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.softs-1 {
  grid-column-start: 1;
  grid-column-end: 2;
}
.softs-2 {
  grid-column-start: 2;
  grid-column-end: 3;
}
.softs-3 {
  grid-column-start: 3;
  grid-column-end: 4;
}
.softs-4 {
  grid-column-start: 4;
  grid-column-end: 5;
}
.soft-skills {
  min-height: 200px;
  padding: 40px 16px;
}
.soft-skills-icons {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  margin: 0 auto;
  background-color: var(--white1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.soft-skills i {
  font-size: 2em;
  line-height: normal;
  text-align: center;
  color: var(--blue4);
}
.soft-skills h3 {
  color: var(--white1) !important;
  margin-bottom: 8px;
}
.soft-skills p {
  line-height: 1.250em;
  color: var(--grey2) !important;
}
.skill {
  font-size: 0.8em !important;
  text-align: center;
  color: var(--grey2) !important;
  text-transform: uppercase;
  font-weight: 600;
}
.container-hard-skills {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
}
.conception {
  grid-column-start: 1;
  grid-column-end: 4;
}
.front-end {
  grid-column-start: 4;
  grid-column-end: 7;
}
.frameworks {
  grid-column-start: 1;
  grid-column-end: 3;
}
.cms {
  grid-column-start: 3;
  grid-column-end: 5;
}
.back-end {
  grid-column-start: 5;
  grid-column-end: 7;
}
.conception h3, .front-end h3,
.frameworks h3, .cms h3,
.back-end h3 {
  color: var(--white2) !important;
  margin: 8px 0 32px 0;
}
.col-hard-skills {
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.col-hard-skills img {
  margin: 0 auto 10px auto;
  height: 6vmin;
}

/* --- SECTION PORTFOLIO --- */
#portfolio h2 {
  color: var(--black1);
}
#portfolio h4 {
  color: var(--blue4);
}
.btn-filter-project {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 40px;
}
.btn-nav-projet {
  width: 100%;
  margin: -60px auto 0 auto;
  /* background-color: rgba(255, 255, 255, 0.0);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px); */
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 82px;
  z-index: 1;
}
.btn-ss-nav {
  margin: 8px;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 500;
  color: var(--blue4);
  float: right;
  background-color: #ffffff00;
  padding: 12px 24px 10px 24px !important;
  border: 1px solid var(--blue4);
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
  transition: all 0.2s ease-out;
  pointer-events: auto;
  cursor: pointer;
}
.btn-ss-nav:hover {
  background-color: var(--blue3);
  border: 1px solid var(--blue3);
  color: var(--white1);
}
.btn-ss-nav-projet {
  margin: 4px;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 500;
  color: var(--blue4);
  float: right;
  background-color: #FFFFFF;
  border: 1px solid var(--blue4);
  padding: 12px 24px 10px 24px !important;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
  transition: all 0.2s ease-out;
  pointer-events: auto;
  cursor: pointer;
}
.btn-ss-nav-projet:hover {
  background-color: var(--blue2);
  border: none;
  color: var(--white1);
}
.container-portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
.card-project {
  width: 100%;
  margin: 0;
  border-radius: 8px;
  background-color: #3A0DA3;
  box-shadow: 0 0 40px -10px #3a0da335;
  transition-timing-function: ease;
  transition-duration: 400ms;
}
.card-project:hover {
  box-shadow: 0 0 40px -5px #3a0da315;
  transform: scale(1.04);
}
.head-project{
  width: 100%;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.content-project {
  background-color: #3A0DA3;
  padding: 30px;
  border-radius: 0 0 8px 8px;
  color: #FFFFFF;
  text-align: left;
}
.category-project {
  font-size: 1em;
  line-height: 2em;
  color: #4361EE;
  font-weight: 600;
}
.title-project {
  font-size: 1.6em;
  line-height: normal;
  text-align: left;
}
.text-project {
  font-size: 1em;
  line-height: 1.6em;
  font-weight: 200;
}

/* --- SECTION PRICE --- */
#price h2 {
  color: var(--black1);
}
#price h4 {
  color: var(--blue4);
}
.container-price {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  grid-template-areas:
    "a a b b";
  gap: 16px;
}
.rate {
  background: var(--black1);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.2s ease-out;
}
.rate:hover {
  background: var(--black3);
}
.daily {
  grid-area: a;
}
.hourly {
  grid-area: b;
}
.daily h3, .hourly h3 {
  color: var(--purple4);
  font-size: 1.5em;
  margin-bottom: 24px;
}
.rate p {
  color: var(--white1);
  text-align: center;
}
.rate ul {
  list-style-type : "- ";
  list-style-position: inside;
  margin-top: 16px;
}
.rate li {
  font-family: 'Urbanist', sans-serif;
  text-align: center;
  color: var(--grey1);
  font-size: 1em;
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 1px;
}
.price {
  font-weight: 700 !important;
  font-size: 1.6em;
  text-transform: uppercase;
}
.price-site-internet {
  font-weight: 700 !important;
  font-size: 1.6em;
}
.container-faq {
  max-width: 768px;
  margin: 0 auto;
}
.accordion {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-family: 'Urbanist', sans-serif;
  text-align: left;
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--black1);
  background: none;
  cursor: pointer;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.4s;
  padding: 16px 32px 16px 0;
  border-bottom: 1px solid var(--black3);
}
.accordion:after {
  content: "\276E";
  transform: rotate(270deg);
  transition: transform 0.08s ease-out;
  color: var(--black1);
  position: absolute;
  right: 0;
  margin-left: 16px;
}
.open:after {
  content: "\276E";
  transform: rotate(90deg);
}
.panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
  padding: 16px 0;
  font-size: 1em;
}
.citation {
  font-size: 0.8em;
  font-style: italic;
  color: var(--black3);
}

/* --- SECTION CONTACT --- */
#contact h2 {
  color: var(--black1);
}
#contact h4 {
  color: var(--blue4);
}
#contact p {
  margin: 0 auto;
  color: var(--black3);
  text-align: center;
}
.container-contact {
  display: grid;
  grid-template-columns: 1fr;
}
form {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  grid-template-areas:
    "a b c"
    "d e f"
    "g g g"
    "h h h";
  gap: 16px;
}
.subject {
  grid-area: a;
}
.email {
  grid-area: b;
}
.lastname {
  grid-area: c;
}
.firstname {
  grid-area: d;
}
.phone {
  grid-area: e;
}
.company {
  grid-area: f;
}
.message {
  grid-area: g;
  grid-column-start: 1;
  grid-column-end: 4;
}
.cta-form {
  grid-area: h;
  grid-column-start: 1;
  grid-column-end: 4;
}
input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--blue4);
}
input:focus {
  outline-color: var(--blue2);
  color: var(--black3);
  font-family: 'Urbanist', sans-serif !important;
  font-size: 1.2em !important;
}
input::placeholder, textarea::placeholder {
  font-size: 0.8em;
  color: var(--black3);
  opacity: 0.4;
}
label {
  font-family: "Rubik", sans-serif !important;
  font-weight: 400 !important;
  font-size: 1em !important;
  color: var(--black3);
  padding: 0px 0px 0px 8px;
  letter-spacing: 0px;
}
.field {
  margin-bottom: 24px;
}
.required {
  color: #f72585;
}

/* Projet */
#projet h2 {
  color: var(--black1);
}
#projet h4 {
  color: var(--blue4);
}
.slideshow-bloc {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
.slideshow-container {
  grid-column-start: 1;
  grid-column-end: 7;
  max-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.slideshow-container .slide {
  width: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.desc-projet {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 2;
  grid-row-end: 4;
  padding: 60px 40px;
  border-radius: 8px;
  background-color: var(--white1);
}
.desc-projet h3 {
  font-family: "Rubik", sans-serif;
  font-size: 2em;
  line-height: 1.2em;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: -1px;
  text-align: left;
  padding-bottom: 24px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #000000 0%, #555555 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.tab-projet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #ebedee;
}
.tab-col-1 {
  grid-column-start: 1;
  grid-column-end: 2;
}
.tab-col-1 p {
  font-family: 'Urbanist', sans-serif;
  text-align: left;
  font-size: 1em;
  line-height: normal;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--grey1);
  text-transform: uppercase;
}
.tab-col-2 {
  grid-column-start: 2;
  grid-column-end: 5;
  overflow: scroll;
}
.tab-col-2 ol {
  margin: 8px 0 16px 0;
  padding: 0 0 0 24px;
}
.tab-col-2 p,
.tab-col-2 a, .tab-col-2 li  {
  font-family: 'Urbanist', sans-serif;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--black2);
}
.stack-avis-projet {
  position: sticky;
  top: 160px;
  grid-column-start: 5;
  grid-column-end: 7;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.stack-projet {
  grid-column-start: 1;
  grid-column-end: 3;
  height: fit-content;
  padding: 60px 40px;
  margin-bottom: 16px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
.stack-projet h3 {
  font-family: "Rubik", sans-serif;
  font-size: 2em;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: -1px;
  text-align: left;
  padding-bottom: 24px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.stack-projet ul {
  list-style-type: disc;
  padding: 0 0 0 24px;
  font-family: 'Urbanist', sans-serif;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--black2);
}
.stack-projet li::marker {
  color: #f72585;
}
.avis-projet {
  grid-column-start: 1;
  grid-column-end: 3;
  height: fit-content;
  padding: 60px 40px;
  border-radius: 8px;
  background-image: linear-gradient(120deg, #000000 0%, #555555 100%);
}
.avis-projet h3 {
  font-family: "Rubik", sans-serif;
  font-size: 2em;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: -1px;
  text-align: left;
  padding-bottom: 24px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.avis-projet h4 {
  font-family: "Rubik", sans-serif;
  color: var(--purple4) !important;
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 400;
  letter-spacing: -1px;
  text-align: left;
}
.comment p {
  font-family: 'Urbanist', sans-serif !important;
  color: var(--white1);
  font-size: 1em;
  line-height: 1.2em;
  font-weight: 100;
  letter-spacing: 1px;
  text-align: left;
}
.star {
  font-size: 20px;
  padding: 0 2px 0 0;
  color: gray;
}
.star.filled {
  color: gold;
}
.slide {
  display: none;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* --- BLOC CONTACT PROJET --- */
.container-contact-project {
  width: 100%;
  padding: 80px 24px;
  background-color: #e0e0e0;
}
.container-project {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.container-contact-project p {
  font-family: "Rubik", sans-serif;
  font-size: 2.4em;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--blue4);
  line-height: 1.3em;
}
.project-texte-2 {
  /* font-family: "Rubik", sans-serif !important; */
  font-family: 'Urbanist', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.5em !important;
  color: var(--black3) !important;
  margin-left: 7px;
  letter-spacing: 0px !important;
}

/* --- FOOTER --- */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.infos-footer {
  width: 100%;
  padding: 60px 24px 52px 24px;
  position: relative;
}
.container-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  grid-auto-rows: auto;
  gap: 16px;
}
.logo-footer {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  background-image:url(/images/logo_nicolas_monmerque.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}
.general-information, .navigation,
.socity, .social-networks {
  font-family: 'Urbanist', sans-serif;
  color: var(--white1);
  letter-spacing: 1px;
  text-align: left;
}
.sub-section p {
  font-size: 1em;
  line-height: 1.2em;
  font-weight: 500;
  text-align: left;
  margin-top: 16px;
}
.sub-section h6 {
  font-size: 1.1em;
  text-align: left;
  margin-bottom: 16px;
  margin-top: 0;
}
.navigation ul, .socity ul,
.social-networks ul {
  list-style-type: none;
}
.navigation li, .socity li {
  padding: 0 0 8px 0;
}
.social-networks li{
  padding: 0;
  margin-right: 8px;
  display: inline-flex;
}
.social-networks a{
  padding: 0;
}
.navigation a, .socity a {
  padding: 4px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--black1);
  transition: all 0.2s ease-out;
}
.navigation a:hover, .socity a:hover {
  color: #B3B3B3;
  border-bottom: 1px solid #667EEA;
}
.legal-notices {
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid var(--black3);
}
.legal-notices p {
  font-family: 'Urbanist', sans-serif;
  text-align: center;
  color: var(--white1);
  font-size: 0.8em;
  font-weight: 200;
}

/* -------------- MEDIA QUERIES -------------- */

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 6vw !important;
  }
  #introduction h2 {
    font-size: 3vw !important;
  }
  #introduction h3 {
    font-size: 2.4vw !important;
  }
  .scroll {
    display: none;
  }
  nav {
    width: 100%;
  }
  ul#menu li a {
    font-size: 1.4vw;
  }
  .container {
    padding: 0 24px;
  }
  .container-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .card-wrapper:hover {
    transform: none;
  }
  .arrow-icon {
    opacity: 1;
    color: var(--white1);
    display: block;
  }
  .photo-id {
    grid-column-start: 1;
    grid-column-end: 7;
    height: 400px;
  }
  .text-id {
    grid-column-start: 1;
    grid-column-end: 7;
    padding: 60px !important;
    border-radius: 8px;
    background: var(--black1);
  }
  .container-soft-skills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }
  .container-hard-skills {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
  }
  .soft-1 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .soft-2 {
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .soft-3 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .soft-4 {
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .conception {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .front-end {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .frameworks {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .back-end {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cms {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .container-portfolio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }
  .card-project {
    width: 100%;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 0 40px -10px #3a0da335;
    transition-timing-function: ease;
    transition-duration: 400ms;
  }
  .container-project {
    flex-direction: column;
  }
  .project-id p {
    text-align: center;
  }
  .project-contact {
    margin-top: 40px;
  }

  /* Projet */
  .desc-projet {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .stack-avis-projet {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 3;
    grid-row-end: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stack-projet {
    grid-column-start: 1;
    grid-column-end: 2;
    height: auto;
    margin-bottom: 0px;
  }
  .avis-projet {
    grid-column-start: 2;
    grid-column-end: 3;
  }

  /* Formulaire */
  form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }
  .subject {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .email {
    grid-column: 3 / 5;
    grid-row: 1;
  }
  .lastname {
    grid-column: 1 / 3;
    grid-row: 2;
  }
  .firstname {
    grid-column: 3 / 5;
    grid-row: 2;
  }
  .phone {
    grid-column: 1 / 3;
    grid-row: 3;
  }
  .company {
    grid-column: 3 / 5;
    grid-row: 3;
  }
  .message {
    grid-column: 1 / 5;
    grid-row: 4;
  }
  .cta-form {
    grid-column: 1 / 5;
    grid-row: 5;
  }
  .container-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }
  .logo-footer {
    background-position: center;
  }
  .general-information {
    grid-column-start: 1;
    grid-column-end: 5;
    margin-bottom: 32px;
  }
  .general-information h6, .general-information p, .navigation h6,
  .navigation li, .socity h6,
  .socity li, .social-networks h6 {
    text-align: center !important;
  }
  .social-networks ul {
    display: inline-flex;
    margin: 0 auto;
    width: 100%;
  }
  .social-networks li {
    width: 100%;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center
  }
  .navigation {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .socity {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .social-networks {
    grid-column-start: 3;
    grid-column-end: 4;
  }
}

/* Mobile */
@media screen and  (max-width: 767px) {
  header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    background: #1E1E1E;
  }
  section#home {
    width: 100%;
    min-height: 100vh;
    padding: 90px 24px 0 24px;
  }
  h1 {
    font-size: 7vw !important;
  }
  #introduction h2 {
    font-size: 6vw !important;
  }
  #introduction h4 {
    font-size: 4vw !important;
  }
  .title {
    font-size: 3em !important;
    text-transform: uppercase;
    font-weight: 700;
  }
  .scroll {
    display: none;
  }
  .container {
    padding: 0;
  }
  #icons {
    display: block;
  }
  #icons::before {
    content: "\2630";
    color: #606060;
    font-size: 1.6em;
  }
  .active #icons::before {
    content: "\2715";
  }
  #logo {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0 0 0 24px;
  }
  #logo img {
    width: 80px;
  }
  nav {
    width: 100%;
  }
  nav ul {
    position: fixed;
    left: -100%;
    top: 80px;
    width: 100%;
    height: 40vh;
    padding: 120px 0;
    flex-direction: column;
    background: #1e1e1ebe;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transition: 0.25s;
  }
  nav li {
    padding: 16px 0;
  }
  #menu {
    width: 10%;
    text-align: center;
  }
  #menu ul {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 32px;
    box-shadow: 1px 7px 7px -2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 1px 7px 7px -2px rgba(0,0,0, 0.2);
    -moz-box-shadow: 1px 7px 7px -2px rgba(0,0,0, 0.2);
  }
  ul#menu li a {
    margin: 0 auto;
    font-size: 4vw;
    text-shadow: 0px 4px 12px rgba(0,0,0,0.75);
    border-bottom: none;
  }
  nav li:hover {
    color: #667EEA;
  }
  nav.active ul {
    left: 0;
  }
  ul#menu li a:active {
    animation-delay: 2s;
  }

  .container-services {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .card-wrapper {
    position: relative;
    perspective: 2000px;
    perspective-origin: top;
  }
  .card-wrapper:hover {
    transform: none;
  }
  .arrow-icon {
    opacity: 1;
    color: var(--white1);
    display: block;
    transform: rotate(360deg);
    transition: transform 800ms ease-in-out 150ms;
  }
  .card-wrapper:hover .card {
    transform: rotateY(180deg);
  }
  .card {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.86,0,0.07,1);
  }
  .card-front,
  .card-back {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #F1F1F1;
    padding: 16px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .card-front {
    display: flex;
    flex-direction: column;
    justify-content :center;
    align-items: center;
  }
  .card-back {
    background: var(--black3);
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card-front h2 {
    color: var(--white1) !important;
    font-size: 1.4em !important;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .card-front p,
  .card-back p {
    color: var(--white2) !important;
    font-size: 1em !important;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
  }
  .container-skills {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }
  .photo-id {
    grid-column-start: 1;
    grid-column-end: 7;
    height: 300px;
  }
  .text-id {
    grid-column-start: 1;
    grid-column-end: 7;
    padding: 32px !important;
    background: var(--black1);
  }
  .qualites, .competences {
    grid-column-start: 1;
    grid-column-end: 7;
  }
  .container-soft-skills, .container-hard-skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }
  .soft-1, .soft-2,
  .soft-3, .soft-4 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .conception {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .front-end {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .frameworks {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .back-end {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 5;
  }
  .cms {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 6;
  }
  section#portfolio {
    padding: 80px 24px 60px 24px;
    background-image: radial-gradient(
    farthest-corner at 40px 40px,
    #FDFDFD 20%,
    #F5F5F5 70%,
    #F7F7F7 120%
  );
  }
  .container-portfolio {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 32px;
    justify-content: center;
    margin: 0 auto;
  }
  .card-project {
    max-width: 460px;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 0 40px -10px #3a0da335;
    transition-timing-function: ease;
    transition-duration: 400ms;
  }
  .container-price {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    grid-template-areas:
      "a a"
      "b b";
    gap: 16px;
  }
  .container-project {
    flex-direction: column;
  }
  .project-id p {
    text-align: center;
  }
  .project-contact {
    margin-top: 40px;
  }

  /* Projet */
  .btn-nav-projet {
    margin: 0 0 16px 0;
    padding: 0;
  }

  .slideshow-bloc {
    grid-template-columns: 1fr 1fr;
  }
  .slideshow-container {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    overflow: hidden;
    height: fit-content;
  }
  .slideshow-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .desc-projet {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .tab-projet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid #ebedee;
  }
  .tab-col-1 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .tab-col-2 {
    grid-column-start: 1;
    grid-column-end: 3;
    overflow: scroll;
  }
  .tab-col-1 p {
    font-family: 'Urbanist', sans-serif;
    text-align: left;
    font-size: 1em;
    line-height: normal;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--grey1);
    text-transform: uppercase;
  }
  .tab-col-2 p,
  .tab-col-2 a, .tab-col-2 li  {
    font-family: 'Urbanist', sans-serif;
    text-align: left;
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--black2);
  }
  .stack-avis-projet {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stack-projet {
    grid-column-start: 1;
    grid-column-end: 3;
    height: fit-content;
    margin-bottom: 0px;
  }
  .stack-projet li {
    font-size: 1em;
    line-height: 1.3em;
  }
  .avis-projet {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  /* Formulaire */
  form {
    display: grid;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .subject {
    grid-column: 1 / 4;
    grid-row: 1;
  }
  .email {
    grid-column: 1 / 4;
    grid-row: 2;
  }
  .lastname {
    grid-column: 1 / 4;
    grid-row: 3;
  }
  .firstname {
    grid-column: 1 / 4;
    grid-row: 4;
  }
  .phone {
    grid-column: 1 / 4;
    grid-row: 5;
  }
  .company {
    grid-column: 1 / 4;
    grid-row: 6;
  }
  .message {
    grid-column: 1 / 4;
    grid-row: 7;
  }
  .cta-form {
    grid-column: 1 / 4;
    grid-row: 8;
  }
  .container-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }
  .logo-footer {
    background-position: center;
  }
  .general-information {
    grid-column-start: 1;
    grid-column-end: 5;
    margin-bottom: 16px;
  }
  .general-information p,
  .general-information h6, .navigation h6,
  .navigation li, .socity h6,
  .socity li, .social-networks h6 {
    text-align: center !important;
  }
  .social-networks ul {
    display: inline-flex;
    margin: 0 auto;
    width: 100%;
  }
  .social-networks li {
    width: 100%;
    margin: 0 auto;
    display: inline-flex;
    justify-content: space-around;
    align-items: center
  }
  .navigation {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .socity {
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .social-networks {
    grid-column-start: 1;
    grid-column-end: 5;
  }
}
