@charset "UTF-8";
/*******FONTS**********/
@import url("https://fonts.googleapis.com/css2?family=Holtwood+One+SC&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rammetto+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Paytone+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
/*******Keyframes**********/
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50px);
  }
}
/*******Placeholders**********/
#hero-img h1 {
  font-family: "Holtwood One SC", serif;
  text-transform: uppercase;
  font-size: 32px;
}

#contact form button[type=submit], #intro article div:nth-child(2) .cta-button, header .nav-links li a {
  font-family: "Rammetto One", cursive;
  font-size: 30px;
  color: #C96D4E;
  padding: 0px 20px;
  border: 4px solid #C96D4E;
  border-radius: 10px;
  text-transform: lowercase;
  text-decoration: none;
  box-shadow: 4px 4px 0px 3px rgb(201, 109, 78);
}

#contact article h1, #resources article h1, #work article h1, #about h1, #team article h1, #intro article div:nth-child(1) h1 {
  font-family: "Paytone One", sans-serif;
  font-size: 27px;
  color: #C96D4E;
}

/*******GENERAL**********/
body {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 20px;
  background-color: #f4e4cd;
}

main {
  grid-column: 1/-1;
}

header {
  width: 100%;
  position: relative;
  grid-column: 1/-1;
  /* https://smoothshadows.com/#djEsMSwxLDAuMjEsMjQsLTIsMCwjMDMwNzEyLCNmM2Y0ZjYsI2ZmZmZmZiwy */
  box-shadow: 0px 13px 20px rgba(3, 7, 18, 0.25);
  background-color: #f4e4cd;
  max-height: 185px;
}
header .transition {
  display: block;
  width: 100%;
  height: 120px;
  position: relative;
  top: -133px;
  left: -2px;
  z-index: 2;
}
header .transition path {
  fill: #f4e4cd;
}
header .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
header .hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #C96D4E;
  transition: all 0.3s ease;
}
header .container {
  padding: 40px;
  z-index: 3;
  position: relative;
}
header .nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  width: 100%;
  z-index: 2;
}
header .logo {
  grid-column: 1;
}
header .nav-links {
  grid-column: 2/-1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}
header .nav-links li:nth-child(1) {
  grid-column: 1;
}
header .nav-links li:nth-child(2) {
  grid-column: 2;
}
header .nav-links li:nth-child(3) {
  grid-column: 3;
}
header .nav-links li:nth-child(4) {
  grid-column: 5;
}
header .nav-links li:nth-child(4) a {
  text-transform: uppercase;
}
header .nav-links li {
  text-align: center;
}
header .nav-links li a {
  transition: all 0.3s ease;
}
header .nav-links li a:hover, header .nav-links li a:focus {
  background-color: #b9bd94;
  border-color: #b9bd94;
  color: #f4e4cd;
  transform: translateY(-3px);
  box-shadow: 4px 6px 0px 3px #a0ac7c;
}
header .logo img {
  width: 154px;
  height: auto;
}

/*******VIDEO**********/
#hero-img {
  grid-column: 1/-1;
  background-color: #ac577b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 0;
  position: relative;
}
#hero-img iframe {
  z-index: 0;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
  margin: 0 auto;
}
#hero-img h1 {
  color: #f4e4cd;
  text-align: center;
  margin: 0;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#hero-img a {
  text-align: center;
}

/********INTRO**********/
#intro {
  margin-top: -1%;
  margin-bottom: 2%;
}
#intro svg {
  z-index: 0;
  position: relative;
}
#intro article {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
#intro article div:nth-child(1) {
  grid-column: 2/5;
  padding-left: 15px;
}
#intro article div:nth-child(1) h1 {
  font-size: 40px;
  margin-top: -5px;
}
#intro article div:nth-child(1) p {
  font-family: "Space Mono", monospace;
  font-size: 20px;
  color: #000;
  width: 95%;
}
#intro article div:nth-child(2) {
  grid-column: 6;
}
#intro article div:nth-child(2) .cta-button {
  font-family: "Paytone One", sans-serif;
  color: #34332E;
  border-color: #7CA6AF;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 4px 4px 0px 3px rgb(124, 166, 175);
  padding: 12px 20px;
  transition: all 0.3s ease;
}
#intro article div:nth-child(2) .cta-button:hover {
  background-color: #a0ac7c;
  border-color: #a0ac7c;
  color: #f4e4cd;
  transform: translateY(-3px);
  box-shadow: 4px 6px 0px 3px rgba(160, 172, 124, 0.7);
}

/*******Team**********/
#team {
  background-color: #B8C5BE;
  margin-top: -1%;
  grid-column: 1/-1;
}
#team svg {
  z-index: 0;
  position: relative;
  top: -12px;
}
#team article {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  z-index: 2;
  margin-top: -50px;
}
#team article .nosleep {
  grid-column: 2/3;
  font-family: "Space Mono", monospace;
  font-size: 20px;
  color: #34332E;
  margin: 0;
  font-weight: bold;
}
#team article h1 {
  grid-column: 2/-1;
  font-size: 45px;
  color: #34332E;
  margin: 0;
}
#team article p {
  grid-column: 2/5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  color: #34332E;
  margin-left: 5px;
}
#team .team-carousel {
  grid-column: 1/-1;
  overflow: hidden;
  width: 100%;
  position: relative;
}
#team .team-carousel .cards {
  display: flex;
  gap: 20px;
  padding: 50px 30px;
  width: fit-content;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#team .team-carousel .cards .card {
  background-color: #C96D4E;
  overflow: hidden;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  flex: 0 0 calc((100vw - 280px) / 6);
  min-width: calc((100vw - 280px) / 6);
  transition: all 0.3s ease;
  cursor: pointer;
}
#team .team-carousel .cards .card img {
  width: 86%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
  display: block;
  border: 15px solid #C96D4E;
}
#team .team-carousel .cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3);
  border: 3px solid #a0ac7c;
  background-color: #a0ac7c;
}
#team .team-carousel .cards .card h2 {
  font-family: "Paytone One", sans-serif;
  font-size: 24px;
  color: #34332E;
  margin: 20px 15px 10px;
}
#team .team-carousel .cards .card p {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  color: #34332E;
  margin: 0 15px 20px;
}
#team .team-carousel .carousel-controls {
  width: 97%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin: 0 20px 40px 20px;
}
#team .team-carousel .carousel-controls .carousel-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  pointer-events: all;
  padding: 10px;
  font-family: "Paytone One", sans-serif;
  font-size: 24px;
  color: #34332E;
  text-transform: uppercase;
}
#team .team-carousel .carousel-controls .carousel-btn svg {
  color: #C96D4E;
  width: 53px;
  height: 64px;
  position: relative;
  top: 0;
}
#team .team-carousel .carousel-controls .carousel-btn.prev {
  flex-direction: row-reverse;
}
#team .team-carousel .carousel-controls .carousel-btn:hover {
  transform: scale(1.15);
  color: #a0ac7c;
}
#team .team-carousel .carousel-controls .carousel-btn:hover svg {
  color: #a0ac7c;
}
#team .team-carousel .carousel-controls .carousel-btn:disabled {
  color: #999;
  cursor: not-allowed;
  opacity: 0.5;
}
#team .team-carousel .carousel-controls .carousel-btn:disabled svg {
  color: #999;
}

/*******ABOUT SECTION**********/
#about {
  grid-column: 1/-1;
  background-color: #f4e4cd;
  padding: 60px 40px;
}
#about article {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
#about h1 {
  grid-column: 1/-1;
  font-size: 45px;
  color: #34332E;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
#about h2 {
  grid-column: 1/-1;
  font-family: "Paytone One", sans-serif;
  font-size: 32px;
  color: #C96D4E;
  margin: 30px 0 15px 0;
  text-transform: uppercase;
}
#about ul, #about li, #about a {
  list-style-type: circle;
}
#about h3 {
  font-family: "Paytone One", sans-serif;
  font-size: 24px;
  color: #34332E;
  margin: 20px 0 10px 0;
}
#about p, #about li {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: #34332E;
  line-height: 1.6;
  margin: 10px 0;
}
#about a {
  color: #34332E;
  text-decoration: underline;
  transition: all 0.2s ease;
}
#about a:hover {
  color: #a0ac7c;
  text-decoration: none;
}
#about ul, #about ol {
  margin: 15px 0;
  padding-left: 25px;
}
#about .content-block {
  grid-column: 1/-1;
}
#about .content-block:nth-child(odd) {
  background-color: rgba(226, 160, 160, 0.2);
  padding: 25px;
  border-radius: 8px;
}
#about .intro-block {
  grid-column: 1/-1;
  background-color: #C96D4E;
  color: #f4e4cd;
  padding: 40px;
  border-radius: 8px;
}
#about .intro-block h1, #about .intro-block h2, #about .intro-block p {
  color: #f4e4cd;
}
#about .intro-block h1, #about .intro-block h2 {
  color: #f4e4cd;
}

/*******WORK GALLERY**********/
#work {
  background-color: #f4e4cd;
  grid-column: 1/-1;
  padding: 60px 40px;
}
#work article {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 40px;
}
#work article h1 {
  grid-column: 1/-1;
  font-size: 45px;
  color: #34332E;
  margin: 5% 0 -20px 21px;
  text-transform: uppercase;
}
#work .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 25px;
}
#work .gallery img, #work .gallery video {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  background-color: #C96D4E;
  cursor: pointer;
  border: 3px solid transparent;
  filter: grayscale(100%) blur(1.2px);
}
#work .gallery img:hover, #work .gallery video:hover {
  transform: scale(1.03);
  filter: grayscale(0) blur(0);
  border-color: #a0ac7c;
  box-shadow: 0px 8px 16px rgba(160, 172, 124, 0.4);
}
#work .gallery .img-1 {
  height: 380px;
}
#work .gallery .img-2 {
  height: 380px;
}
#work .gallery .img-3 {
  height: 268px;
}
#work .gallery .img-4 {
  height: 333px;
}
#work .gallery .img-5 {
  height: 333px;
}
#work .gallery .img-6 {
  height: 445px;
  margin-top: -112px;
}
#work .gallery .img-7 {
  height: 418px;
}
#work .gallery .img-8 {
  height: 418px;
}
#work .gallery .img-9 {
  height: 418px;
}

/*******PROJECT LINKS**********/
#resources {
  background-color: #f4e4cd;
  grid-column: 1/-1;
  padding: 40px;
}
#resources article {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 30px;
}
#resources article h1 {
  grid-column: 1/-1;
  font-size: 45px;
  color: #34332E;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
#resources article p {
  grid-column: 1/5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: #34332E;
  margin: 0;
}
#resources .resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
#resources .resource-card {
  background-color: rgba(201, 109, 78, 0.1);
  border: 2px solid #C96D4E;
  border-radius: 10px;
  padding: 20px;
}
#resources .resource-card h2 {
  font-family: "Paytone One", sans-serif;
  font-size: 22px;
  color: #34332E;
  margin: 0 0 10px;
  text-transform: uppercase;
}
#resources .resource-card p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  color: #34332E;
  margin: 0 0 15px;
  line-height: 1.5;
}
#resources .resource-card a {
  font-family: "Space Mono", monospace;
  font-size: 15px;
  color: #34332E;
  word-break: break-word;
  transition: all 0.2s ease;
  text-decoration: underline;
}
#resources .resource-card a:hover {
  color: #a0ac7c;
  text-decoration: none;
  font-weight: bold;
}
#resources .resource-card ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: none;
}
#resources .resource-card li {
  margin-bottom: 10px;
}
#resources .resource-card .two-columns {
  column-count: 2;
  column-gap: 15px;
}
#resources .resource-card .two-columns li {
  break-inside: avoid;
  margin-bottom: 12px;
}

/*******CONTACT FORM**********/
#contact {
  background-color: #B8C5BE;
  grid-column: 1/-1;
  padding: 80px 40px;
}
#contact article {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 50px;
}
#contact article h1 {
  grid-column: 2/-1;
  font-size: 45px;
  color: #34332E;
  margin: 15px 0;
  text-transform: uppercase;
}
#contact article p {
  grid-column: 2/5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  color: #34332E;
  margin: 0;
}
#contact article .indication {
  grid-column: 6;
  font-family: "Space Mono", monospace;
  font-size: 20px;
  color: #34332E;
  margin: 0;
  font-weight: bold;
}
#contact article .indication span {
  color: #C96D4E;
  margin-left: 5px;
}
#contact form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact form label {
  display: flex;
  flex-direction: column;
  font-family: "Space Mono", monospace;
  font-size: 16px;
  color: #34332E;
  font-weight: bold;
}
#contact form label span {
  color: #C96D4E;
  margin-left: 5px;
}
#contact form label input,
#contact form label select,
#contact form label textarea {
  margin-top: 8px;
  padding: 12px 15px;
  border: 2px solid #34332E;
  border-radius: 8px;
  font-family: "Space Mono", monospace;
  font-size: 15px;
  background-color: #f4e4cd;
  color: #34332E;
  transition: all 0.3s ease;
}
#contact form label input:hover,
#contact form label select:hover,
#contact form label textarea:hover {
  border-color: #a0ac7c;
}
#contact form label input:focus,
#contact form label select:focus,
#contact form label textarea:focus {
  outline: none;
  border-color: #a0ac7c;
  background-color: rgb(239.4016393443, 216.7131147541, 184.0983606557);
  box-shadow: 0 0 0 3px rgba(160, 172, 124, 0.2);
}
#contact form label input::placeholder,
#contact form label select::placeholder,
#contact form label textarea::placeholder {
  color: #999;
}
#contact form label textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Space Mono", monospace;
}
#contact form label:has(textarea) {
  grid-column: 1/-1;
}
#contact form .phone-label {
  margin-top: 8px;
}
#contact form .phone-label input {
  padding-left: 50px;
}
#contact form button[type=submit] {
  grid-column: 1/-1;
  font-family: "Paytone One", sans-serif;
  background-color: #7CA6AF;
  color: #f4e4cd;
  border: 4px solid rgb(187.327014218, 209.0236966825, 213.672985782);
  box-shadow: 4px 4px 0px 3px rgb(124, 166, 175);
  padding: 15px 40px;
  font-size: 24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin: 10px auto 0;
}
#contact form button[type=submit]:hover {
  background-color: #a0ac7c;
  border-color: #a0ac7c;
  transform: translateY(-3px);
  box-shadow: 6px 8px 0px 3px rgba(160, 172, 124, 0.7);
}
#contact form button[type=submit]:active {
  transform: translateY(0);
  box-shadow: 3px 3px 0px 2px rgb(124, 166, 175);
}

/*******FOOTER**********/
footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 1/-1;
  align-items: start;
  background-color: #f4e4cd;
  padding: 50px 40px;
  column-gap: 30px;
  row-gap: 20px;
}
footer section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer img {
  width: 110px;
  height: auto;
}
footer .garanties {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .garanties img {
  width: 44px;
  height: auto;
}
footer .garanties p {
  font-family: "Space Mono", monospace;
  font-size: 18px;
  color: #34332E;
  margin: 0;
  line-height: 1.4;
}
footer .footer-logo-link {
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
}
footer .footer-logo-link:hover {
  transform: scale(1.1);
}
footer .footer-logo-link:hover img {
  filter: drop-shadow(0px 4px 8px rgba(160, 172, 124, 0.6));
}
footer .footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer-newsletter label {
  font-family: "Paytone One", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #34332E;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .footer-newsletter input {
  border: 2px solid #34332E;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  background-color: rgb(245.8393442623, 232.5147540984, 213.3606557377);
  color: #34332E;
  transition: all 0.3s ease;
}
footer .footer-newsletter input:hover {
  border-color: #a0ac7c;
}
footer .footer-newsletter input:focus {
  outline: none;
  border-color: #a0ac7c;
  box-shadow: 0 0 0 3px rgba(160, 172, 124, 0.2);
}
footer .footer-newsletter button {
  width: fit-content;
  font-family: "Paytone One", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  background-color: #C96D4E;
  color: #f4e4cd;
  border: 2px solid #A85A3E;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
footer .footer-newsletter button:hover {
  background-color: #a0ac7c;
  border-color: #a0ac7c;
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(160, 172, 124, 0.4);
}
footer .copyright {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  color: #34332E;
  margin: 0;
  display: flex;
  align-items: end;
  justify-content: end;
}

/*******MEDIA QUERIES**********/
/* Tablette */
@media all and (max-width: 1024px) {
  body {
    column-gap: 15px;
  }
  #intro {
    margin-bottom: 5%;
  }
  #intro article div:nth-child(1) {
    grid-column: 2/6;
  }
  #intro article div:nth-child(1) h1 {
    font-size: 32px;
  }
  #intro article div:nth-child(1) p {
    font-size: 18px;
  }
  #intro article div:nth-child(2) {
    grid-column: 2/6;
    text-align: center;
  }
  #intro article div:nth-child(2) .cta-button {
    font-size: 24px;
  }
  #about {
    padding: 40px 20px;
  }
  #about h1 {
    font-size: 38px;
  }
  #about h2 {
    font-size: 28px;
  }
  #about p, #about li {
    font-size: 17px;
  }
  #team .team-carousel .cards .card {
    flex: 0 0 calc((100vw - 200px) / 4);
    min-width: calc((100vw - 200px) / 4);
  }
  #work .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #work .gallery .img-6 {
    margin-top: 0;
  }
  #resources {
    padding: 40px 20px;
  }
  #resources article h1 {
    font-size: 38px;
  }
  #resources article p {
    grid-column: 1/-1;
    font-size: 18px;
  }
  #resources .resources-grid {
    grid-template-columns: 1fr 1fr;
  }
  #contact {
    padding: 60px 20px;
  }
  #contact article h1 {
    font-size: 38px;
  }
  #contact article p {
    font-size: 19px;
  }
}
/* Mobile */
@media all and (max-width: 768px) {
  body {
    column-gap: 10px;
  }
  header {
    max-height: none;
  }
  header .transition {
    display: none;
  }
  header .container {
    padding: 20px;
  }
  header .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  header .logo {
    order: 1;
    margin-left: 0;
  }
  header .logo img {
    width: 100px;
  }
  header .hamburger {
    display: flex;
    order: 2;
    margin-right: 0;
  }
  header .hamburger span {
    width: 35px;
    height: 5px;
  }
  header .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    margin-top: 0;
  }
  header .nav-links.active {
    max-height: 500px;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  header .nav-links li a {
    display: block;
    max-width: 75%;
    padding: 12px;
    font-size: 18px;
    margin: 0 auto;
  }
  #hero-img {
    padding: 0;
  }
  #hero-img iframe {
    width: 100%;
  }
  #hero-img h1 {
    font-size: 24px;
    bottom: 20px;
  }
  #intro {
    margin-bottom: 8%;
    padding: 0 10px;
  }
  #intro svg {
    width: 102%;
    left: -7px;
  }
  #intro article {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #intro article div:nth-child(1) {
    grid-column: 1;
    padding-left: 0;
  }
  #intro article div:nth-child(1) h1 {
    font-size: 28px;
    text-align: center;
  }
  #intro article div:nth-child(1) p {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
  #intro article div:nth-child(2) {
    grid-column: 1;
    text-align: center;
  }
  #intro article div:nth-child(2) .cta-button {
    font-size: 20px;
    padding: 10px 18px;
    display: inline-block;
    margin: 0 auto;
  }
  #about {
    padding: 40px 20px;
  }
  #about article {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #about h1 {
    font-size: 32px;
    text-align: center;
    margin: 0 0 15px 0;
  }
  #about h2 {
    font-size: 26px;
    margin: 25px 0 12px 0;
  }
  #about h3 {
    font-size: 20px;
  }
  #about p, #about li {
    font-size: 16px;
  }
  #about .intro-block {
    padding: 25px 20px;
  }
  #about .content-block:nth-child(odd) {
    padding: 20px;
  }
  #team article {
    grid-template-columns: 1fr;
    margin-top: -30px;
    padding: 0 20px;
  }
  #team article .nosleep {
    grid-column: 1;
    text-align: center;
    font-size: 18px;
  }
  #team article h1 {
    grid-column: 1;
    font-size: 32px;
    text-align: center;
  }
  #team article p {
    grid-column: 1;
    font-size: 18px;
    text-align: center;
    margin-left: 0;
  }
  #team .team-carousel .cards {
    padding: 30px 10px;
    gap: 20px;
  }
  #team .team-carousel .cards .card {
    flex: 0 0 calc(100vw - 80px);
    min-width: calc(100vw - 80px);
  }
  #team .team-carousel .cards .card img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: cover;
  }
  #team .team-carousel .cards .card h2 {
    font-size: 20px;
    margin: 15px 12px 8px;
  }
  #team .team-carousel .cards .card p {
    font-size: 14px;
    margin: 0 12px 15px;
    text-align: left;
  }
  #team .team-carousel .carousel-controls {
    width: 90%;
    margin: 0 15px 30px 15px;
  }
  #team .team-carousel .carousel-controls .carousel-btn {
    font-size: 18px;
    gap: 8px;
    padding: 5px;
  }
  #team .team-carousel .carousel-controls .carousel-btn svg {
    width: 40px;
    height: 48px;
  }
  #work {
    padding: 40px 20px;
  }
  #work article {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
  #work article h1 {
    grid-column: 1;
    font-size: 32px;
    text-align: center;
    margin: 0 0 20px 0;
  }
  #work .gallery {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
  #work .gallery img {
    height: auto !important;
    min-height: 250px;
    max-height: 350px;
  }
  #work .gallery .img-1, #work .gallery .img-2, #work .gallery .img-3, #work .gallery .img-4,
  #work .gallery .img-5, #work .gallery .img-6, #work .gallery .img-7, #work .gallery .img-8, #work .gallery .img-9 {
    height: auto !important;
    margin-top: 0 !important;
  }
  #resources {
    padding: 40px 20px;
  }
  #resources article {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  #resources article h1 {
    font-size: 32px;
    text-align: center;
  }
  #resources article p {
    grid-column: 1;
    font-size: 17px;
    text-align: center;
  }
  #resources .resources-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  #resources .resource-card {
    padding: 16px;
  }
  #resources .resource-card h2 {
    font-size: 18px;
  }
  #resources .resource-card p,
  #resources .resource-card a,
  #resources .resource-card li {
    font-size: 14px;
  }
  #resources .resource-card .two-columns {
    column-count: 1;
  }
  #contact {
    padding: 50px 20px;
  }
  #contact article {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
    gap: 15px;
  }
  #contact article h1 {
    grid-column: 1;
    font-size: 32px;
    text-align: center;
  }
  #contact article p {
    grid-column: 1;
    font-size: 17px;
    text-align: center;
  }
  #contact article .indication {
    grid-column: 1;
    text-align: center;
    font-size: 16px;
  }
  #contact form {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
  #contact form label {
    font-size: 15px;
  }
  #contact form label input,
  #contact form label select,
  #contact form label textarea {
    font-size: 14px;
  }
  #contact form label textarea {
    min-height: 100px;
  }
  #contact form .phone-label input {
    padding-left: 50px;
  }
  #contact form button[type=submit] {
    font-size: 20px;
    padding: 12px 30px;
    margin: 5px auto 0;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 35px 20px;
    row-gap: 25px;
  }
  footer img {
    width: 90px;
  }
  footer section {
    gap: 15px;
    align-items: center;
  }
  footer .garanties {
    flex-direction: column;
    text-align: center;
  }
  footer .garanties img {
    width: 40px;
  }
  footer .garanties p {
    font-size: 16px;
  }
  footer .footer-logo-link {
    width: 100%;
    text-align: center;
  }
  footer .footer-newsletter label {
    font-size: 14px;
    text-align: center;
  }
  footer .footer-newsletter input,
  footer .footer-newsletter button {
    width: 100%;
  }
  footer .copyright {
    justify-content: center;
    text-align: center;
  }
}
/* Très petit mobile */
@media all and (max-width: 480px) {
  #hero-img h1 {
    font-size: 18px;
    bottom: 15px;
  }
  #intro article div:nth-child(1) h1 {
    font-size: 24px;
  }
  #intro article div:nth-child(1) p {
    font-size: 15px;
  }
  #intro article div:nth-child(2) .cta-button {
    font-size: 18px;
    padding: 8px 15px;
  }
  #about {
    padding: 30px 15px;
  }
  #about h1 {
    font-size: 28px;
  }
  #about h2 {
    font-size: 22px;
  }
  #about h3 {
    font-size: 18px;
  }
  #about p, #about li {
    font-size: 15px;
  }
  #about .intro-block {
    padding: 20px 15px;
  }
  #about .content-block:nth-child(odd) {
    padding: 15px;
  }
  #team article .nosleep {
    font-size: 16px;
  }
  #team article h1 {
    font-size: 28px;
  }
  #team article p {
    font-size: 16px;
  }
  #team .team-carousel .carousel-controls .carousel-btn {
    font-size: 16px;
    gap: 5px;
  }
  #work article h1 {
    font-size: 28px;
  }
  #resources {
    padding: 30px 15px;
  }
  #resources article h1 {
    font-size: 28px;
  }
  #resources article p {
    font-size: 16px;
  }
  #contact article h1 {
    font-size: 28px;
  }
  #contact article p {
    font-size: 16px;
  }
  #contact form button[type=submit] {
    font-size: 18px;
    padding: 10px 25px;
  }
}

/*# sourceMappingURL=styles.css.map */
