/* General containers*/

.nav-container {
  height: 64px;
}
body {
  background-color: var(--negro);
}
body p,
.looped-section-text {
  color: var(--blanco);
}
/* Banner */
section.bg-black.banner {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: var(--negro);
}
.banner::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: inherit;
  pointer-events: none;
  opacity: 0.25;
}
.boxed.banner-txt {
  z-index: 1;
  position: relative;
}

/* title */
h1.portfolio-title {
  font-weight: bold;
  color: #fcfcfc;
  padding: 48px 0;
  font-size: 80px;
  width: 60%;
  margin: 0;
}
/* Descripcion del cliente */
p.portfolio-text {
  font-size: 35px;
  font-family: "Bricolage Grotesque";
  font-weight: 200;
}
.client-description strong {
  font-family: "Bricolage Grotesque";
  font-size: 22px;
}
img.fecha {
  width: 80px;
  padding-bottom: 48px;
  margin-top: -96px;
  z-index: 4;
  position: relative;
}
img.full-width {
  object-fit: cover;
  width: -webkit-fill-available;
  width: -moz-available;
}
.fechas strong {
  font-weight: 600;
}
.cuadricula-2-3 {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
}
.info-client {
  padding: 48px 0;
}
.fechas p {
  margin-bottom: 12px;
}
.client-description p {
  font-size: 22px;
  font-weight: 200 !important;
  font-family: "Bricolage Grotesque";
  margin-bottom: 0;
}

.portfolio-work img, .portfolio-work video {
  border-radius: 24px;
}
.looped-section-image {
  gap: 24px;
}
.info-work.cuadricula-2-3 h2 {
  color: var(--blanco);
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--blanco);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
}
.galeria {
  padding-top: 24px;
}
strong {
  color: #00b9f9 !important;
  font-weight: 600;
}

@media (max-width: 800px) {
  .cuadricula-2-3 {
    grid-template-columns: 100%;
  }
  h1.portfolio-title {
    font-size: 45px;
    width: 100%;
    padding-top: 96px;
  }
  p.portfolio-text {
    font-size: 28px;
    margin-bottom: 0;
  }
  .looped-section-image {
    grid-template-columns: 100% !important;
  }
  section.briefing .boxed {
    padding-top: 0;
  }
  section.objetivo .boxed {
    padding: 0 10px;
  }
  .galeria {
    padding-top: 0px;
  }
}

/* - - - Proyectos relacionados - - -  */

#work-related .portfolio-container {
  display: flex;
  overflow-x: scroll;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: left;
  gap: 22px;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
#work-related .portfolio-item-container {
  position: relative;
  min-width: 32.1%;
  height: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  margin-bottom: 0;
  border-radius: 24px;
}
#work-related .portfolio-item-info {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  background-color: rgb(28 28 28 / 85%);
  color: var(--blanco);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  border-radius: 24px;
}

#work-related .portfolio-item-container:hover .portfolio-item-info {
  background-color: var(--azul);
}
#work-related .portfolio-item-text a {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 30px;
  line-height: 26px;
  color: var(--blanco);
}
#work-related h3.portfolio-item-title a {
  font-family: "Montserrat-light", sans-serif;
  font-size: 18px;
  line-height: 18px;
  margin-top: 0;
  color: var(--blanco);
}

#work-related .portfolio-container::-webkit-scrollbar-thumb {
  background-color: #00b9f9 !important;
}
#work-related .portfolio-container::-webkit-scrollbar-track {
  background-color: #252525 !important;
}
#work-related .portfolio-container::-webkit-scrollbar {
  height: 6px !important;
  border-radius: 10px !important;
}
#work-related h2 {
  color: var(--blanco);
  margin-bottom: 48px;
  font-weight: 300;
}

@media (max-width: 800px) {
  #work-related .portfolio-item-container {
    min-width: 80%;
  }
  #work-related h2 {
    margin-bottom: 24px;
    font-size: 35px;
  }
}
