@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Oxygen:wght@400;700&family=Ubuntu:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url(https://db.onlinewebfonts.com/c/bdd218abbfbb5b0110069f995c5af6de?family=TCCC-UnityText+Bold);
@import url(https://db.onlinewebfonts.com/c/7d3930158276067e79e7e9b281b78976?family=TCCC-UnityText+Regular);
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--sobra-text);
  background: var(--sobra-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

/* Utilities */
.sobra_container {
  max-width: 1074px;
  margin: 0 auto;
  padding: 0 20px;
}

.sobra_reveal {
  opacity: 1;
}

.sobra_section-tag {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-tcccregular);
}

.sobra_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: none;
  font-family: var(--font-oxygen);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  border: none;
  cursor: pointer;
}

.sobra_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sobra_btn-red {
  background: var(--sobra-red);
  color: var(--sobra-white);
}

.sobra_btn-yellow {
  background: var(--sobra-yellow);
  color: var(--sobra-black);
}

.sobra_btn-outline {
  background: transparent;
  border: 2px solid var(--sobra-red);
  color: var(--sobra-red);
}

/* Topbar : drapeaux de langue uniquement, en haut a droite */
.sobra_topbar {
  background: transparent;
  color: var(--sobra-white);
  font-size: 0.8rem;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  pointer-events: none;
}

.sobra_topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
}

.sobra_topbar-left {
  display: none;
}

.sobra_topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  pointer-events: auto;
}

.sobra_topbar a {
  color: var(--sobra-white);
  opacity: 0.9;
  transition: opacity 0.2s;
}

.sobra_topbar a:hover {
  opacity: 1;
}

.sobra_topbar-lang {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.sobra_topbar-lang img,
.sobra_topbar-lang .sobra_lang-flag {
  width: 18px;
  height: 18px;
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.sobra_lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sobra_lang-flag:hover {
  transform: scale(1.1);
}

/* Header */
.sobra_header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--sobra-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.sobra_header--over-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 0;
  background: transparent;
  box-shadow: none;
}

.sobra_header--over-hero .sobra_nav-link,
.sobra_header--over-hero .sobra_search-btn {
  color: var(--sobra-white);
}

.sobra_header--over-hero .sobra_nav-link:hover,
.sobra_header--over-hero .sobra_nav-link.active {
  color: var(--sobra-white);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.sobra_header--over-hero .sobra_burger span {
  background: var(--sobra-white);
}

.sobra_header--scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--sobra-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.sobra_header--scrolled .sobra_nav-link,
.sobra_header--scrolled .sobra_search-btn {
  color: var(--sobra-text);
}

.sobra_header--scrolled .sobra_nav-link:hover,
.sobra_header--scrolled .sobra_nav-link.active {
  color: var(--sobra-red);
  text-decoration: none;
}

.sobra_header--scrolled .sobra_burger span {
  background: var(--sobra-red);
}

.sobra_header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98px;
}

.sobra_logo {
  display: block;
  width: 153px;
  height: 98px;
  flex: 0 0 153px;
  align-self: flex-start;
  position: relative;
  z-index: 1002;
}

.sobra_logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}

.sobra_logo-badge img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}

.sobra_nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-top: 35px;
}

.sobra_nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.3rem;
  align-items: center;
}

.sobra_nav-item {
  position: relative;
}

.sobra_nav-link {
  font-family: var(--font-ubunto);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--sobra-text);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.sobra_nav-link:hover,
.sobra_nav-link.active {
  color: var(--sobra-red);
}

.sobra_nav-link i {
  font-size: 0.65rem;
}

.sobra_search-btn {
  display: none;
}

.sobra_burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.sobra_burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--sobra-red);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* Dropdown */
.sobra_dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  z-index: 20;
  width: 292px;
  min-width: 292px;
  background: #aa3026;
  box-shadow: none;
  border-radius: 0;
  padding: 22px 0 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
}

.sobra_dropdown::before {
  content: "";
  position: absolute;
  left: 23px;
  top: -21px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 21px solid #aa3026;
}

.sobra_nav-item:hover .sobra_dropdown,
.sobra_nav-item:focus-within .sobra_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sobra_dropdown a,
.sobra_dropdown-placeholder {
  display: block;
  min-height: 36px;
  padding: 7px 30px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: var(--sobra-white);
  transition:
    background 0.2s,
    color 0.2s;
}

.sobra_dropdown a:hover,
.sobra_dropdown a:focus-visible,
.sobra_dropdown a.active {
  background: #cf8983;
  color: var(--sobra-white);
}

.sobra_dropdown-placeholder {
  cursor: default;
}

/* Hero */
.sobra_hero {
  position: relative;
  height: clamp(620px, 67.16vw, 1278px);
  overflow: visible;
  isolation: isolate;
  z-index: 1;
}

.sobra_hero .swiper,
.sobra_hero .swiper-wrapper,
.sobra_hero .swiper-slide {
  height: 100%;
}

.sobra_hero::after {
  content: none;
}

.sobra_hero .swiper {
  clip-path: none;
}

.sobra_hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.sobra_hero-slide > .sobra_container {
  padding-bottom: 0;
  display: flex;
  justify-content: start;
  width: 100%;
}

.sobra_hero-slide::after {
  content: none;
}

.sobra_hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-top: 60px;
  color: var(--sobra-white);
  padding: 2rem 0;
  text-align: left;
}
.sobra_hero-content .sobra_section-tag {
  color: #fff;
}

.sobra_hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 4.47vw, 5.3125rem);
  line-height: 1.04;
  margin: 0 0 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.sobra_hero-text {
  font-size: 18px;
  margin-bottom: 0;
  max-width: 520px;
  font-family: var(--font-oxygen);
}

.sobra_hero-controls {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
}

.sobra_hero .swiper-button-next,
.sobra_hero .swiper-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--sobra-white);
  margin: 0;
  transition: background 0.2s;
}

.sobra_hero .swiper-button-next:hover,
.sobra_hero .swiper-button-prev:hover {
  background: var(--sobra-red);
}

.sobra_hero .swiper-button-next::after,
.sobra_hero .swiper-button-prev::after {
  font-size: 0.9rem;
  font-weight: 700;
}

.sobra_hero .swiper-pagination {
  position: static;
  width: auto;
}

.sobra_hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.sobra_hero .swiper-pagination-bullet-active {
  background: var(--sobra-white);
}

/* Page Hero */
.sobra_page-hero {
  position: relative;
  height: clamp(560px, 67.16vw, 1278px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  clip-path: none;
}

.sobra_page-hero--default {
  background-image: url("../../images/SLIDER_IMAGE.png");
}

.sobra_page-hero::after {
  content: none;
}

/* Heros clairs (bouteilles/verres sur fond blanc) */
.sobra_page-hero--light {
  background-color: #ececec;
  background-position: center 35%;
}

.sobra_page-hero--light::after {
  content: none;
}

/* Hero historique : photo usine desaturee */
.sobra_page-hero--gray::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #808080;
  mix-blend-mode: saturation;
  z-index: 0;
}

.sobra_page-hero-title {
  position: absolute;
  top: 455px;
  z-index: 2;
  font-family: var(--font-title);
  font-size: clamp(3rem, 4.47vw, 5.3125rem);
  line-height: 0.99;
  color: var(--sobra-white);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

/* Section base */
.sobra_section {
  padding: 4rem 0;
}

.sobra_section--gray {
  background: var(--sobra-gray);
}

.sobra_section-title {
  font-family: var(--font-tcccbold);
  font-size: 33px;
  color: var(--sobra-red);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.sobra_section-subtitle {
  font-size: 1rem;
  color: var(--sobra-gray-dark);
  margin-bottom: 2rem;
  max-width: 800px;
  font-family: var(--font-oxygen);
}

/* Product cards */
.sobra_products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -296px;
  position: relative;
  z-index: 20;
}

.sobra_section:has(.sobra_products-grid) {
  position: relative;
  z-index: 20;
  background: var(--sobra-gray);
  padding-bottom: 14px;
}

.sobra_product-card {
  background: var(--sobra-white);
  border-radius: 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 1.75rem 1.75rem 2rem;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sobra_product-card:hover {
  transform: translateY(-6px);
}

.sobra_product-card .sobra_product-media {
  height: 210px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -0.5rem 0 1.25rem;
  border: none;
  padding: 0;
  background: transparent;
}

.sobra_product-card .sobra_product-media img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.sobra_product-card h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sobra-black);
  margin: 0 0 0.75rem;
}

.sobra_product-card p {
  font-size: 19px;
  color: #000;
  margin: 0 0 1.4rem;
  line-height: 1.55;
  flex-grow: 1;
  font-family: var(--font-oxygen);
}

/* Stats */
.sobra_stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1060px;
  margin: 0 auto;
}

.sobra_stat-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: var(--sobra-white);
  padding: 2rem 2.25rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sobra_stat-card > div:last-child {
  min-width: 0;
}
.sobra_stat-card p {
  white-space: normal;
}

.sobra_stat-icon {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobra_stat-icon svg,
.sobra_stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sobra_stat-number {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sobra-black);
  margin: 0;
  line-height: 1.1;
}

.sobra_stat-label {
  font-size: 0.78rem;
  color: var(--sobra-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.35rem 0 0;
  font-style: normal;
}

/* Split sections */
.sobra_split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sobra_split img {
  width: 100%;
  border-radius: 0;
}

.sobra_split-text {
  padding-right: 50px;
}
.sobra_split-text h2 {
  font-family: var(--font-tcccbold);
  font-size: 33px;
  font-weight: 700;
  color: var(--sobra-red);
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  line-height: 1.1;
}

.sobra_split-text p {
  color: var(--sobra-gray-dark);
  font-size: 16px;
  margin-bottom: 1.5rem;
  font-family: var(--font-oxygen);
}

.sobra_section-developpement {
  padding-bottom: 20px;
}
.sobra_section-a-propos {
  padding-top: 20px;
}

/* References slider */
.sobra_references {
  min-height: 196px;
  padding: 1.5rem 0;
  background: var(--sobra-white);
}
.sobra_references .swiper-slide {
  border: 1px solid #ebebeb;
  /* padding: 20px; */
}

.sobra_references-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}

.sobra_references-header h3 {
  font-family: var(--font-tcccbold);
  font-size: 16px;
  font-weight: 700;
  color: var(--sobra-red);
  text-transform: uppercase;
  margin: 0;
}

.sobra_references-controls {
  display: flex;
  gap: 1rem;
}

.sobra_references-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--sobra-red);
  color: var(--sobra-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 18px;
}

.sobra_references-controls .sobra_refs-prev {
  background: #e0e0e0;
  border: #e0e0e0;
  color: var(--sobra-red);
}

.sobra_references-controls button:hover {
  background: var(--sobra-red-bright);
  color: var(--sobra-white);
}

.sobra_references .swiper-slide img {
  height: 137px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(0);
  transition: filter 0.2s;
}

.sobra_references .swiper-slide img:hover {
  filter: grayscale(0);
}

/* Map / Footer */
.sobra_map-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  height: 396px;
  min-height: 396px;
}

.sobra_map {
  background: var(--sobra-gray);
  position: relative;
  overflow: hidden;
}

.sobra_map img,
.sobra_map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.sobra_footer {
  background: var(--sobra-red);
  color: var(--sobra-white);
  padding: 1.6rem 3.625rem;
  min-height: 0;
  overflow: hidden;
}

.sobra_footer-logo {
  display: inline-flex;
  align-items: center;
  height: 61px;
  margin-bottom: 1rem;
  width: 130px;
  background: url("../../images/LOGO-SEVAM-footer-hd.png") center / contain no-repeat;
}

.sobra_footer-logo img {
  height: 100%;
  width: auto;
  opacity: 0;
}

.sobra_footer-block {
  margin-bottom: 0.75rem;
}

.sobra_footer-block h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  text-transform: none;
  font-family: var(--font-oxygen);
}

.sobra_footer-block h4::after {
  content: " :";
}

.sobra_footer-block p,
.sobra_footer-block a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.5;
  font-family: var(--font-oxygen);
}

.sobra_footer-block a:hover {
  color: var(--sobra-white);
  text-decoration: underline;
}

.sobra_copyright {
  text-align: center;
  padding: 1.45rem 0;
  font-size: 16px;
  color: #000;
  border-top: 1px solid var(--sobra-border);
  font-family: var(--font-oxygen);
}

.sobra_copyright p {
  margin: 0;
}

.sobra_copyright strong {
  color: var(--sobra-text);
}

@media (min-width: 901px) {
  .sobra_page-history .sobra_copyright {
    height: 136px;
  }
  .sobra_page-engagements .sobra_copyright {
    height: 110px;
  }
  .sobra_page-figures .sobra_copyright {
    height: 60px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .sobra_page-project .sobra_copyright {
    height: 94px;
  }
  .sobra_page-news-list .sobra_copyright {
    height: 62px;
    padding-top: 19px;
    padding-bottom: 19px;
  }
  .sobra_page-news-single .sobra_copyright {
    height: 67px;
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .sobra_page-virtues .sobra_copyright {
    height: 66px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .sobra_page-rse .sobra_copyright {
    height: 68px;
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .sobra_page-environment .sobra_copyright {
    height: 64px;
    padding-top: 19px;
    padding-bottom: 19px;
  }
  .sobra_page-career-form .sobra_copyright {
    height: 82px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .sobra_page-jobs .sobra_copyright {
    height: 59px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .sobra_page-recycling .sobra_copyright {
    height: 74px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .sobra_page-process .sobra_copyright {
    height: 60px;
    padding-top: 19px;
    padding-bottom: 19px;
  }
  .sobra_page-custom-model .sobra_copyright {
    height: 59px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* Timeline */
.sobra_history-section {
  padding: 96px 0 0;
  min-height: 2025px;
}

.sobra_history-section > .sobra_container {
  max-width: 1560px;
}

.sobra_timeline {
  position: relative;
  max-width: 994px;
  margin: 0 auto;
  padding: 0;
}

.sobra_timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  height: 1611px;
  width: 4px;
  background: var(--sobra-red);
  transform: translateX(-50%);
}

.sobra_timeline-item {
  position: relative;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
}
.sobra_timeline-item .content_timeline-item {
  width: calc(50% - 46px);
}

.sobra_timeline-item:nth-child(even) {
  justify-content: end;
}

.sobra_timeline-item::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 32px;
  height: 32px;
  background: var(--sobra-red);
  border-radius: 50%;
  border: none;
  box-shadow: none;
  left: 50%;
  margin-left: -16px;
}

.sobra_timeline-year {
  background: var(--sobra-red);
  color: var(--sobra-white);
  display: block;
  width: 100%;
  padding: 24px 32px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.1;
  text-align: left;
  border: 1px solid #aa231b;
  border-bottom: 0;
}

.sobra_timeline-content {
  background: var(--sobra-white);
  border: 1px solid #aa231b;
  padding: 32px;
  border-radius: 0;
  box-shadow: none;
}

.sobra_timeline-content p {
  font-size: 1rem;
  color: #767676;
  margin: 0;
  line-height: 1.4;
}

/* Activities */
.sobra_presentation-content {
  padding-bottom: 117px;
}

.sobra_activities-intro {
  padding: 78px 0 45px;
}

.sobra_activities-list {
  padding: 54px 0 249px;
}

.sobra_activity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 1034px;
  height: 343px;
  max-width: 100%;
  margin: 0 auto 37px;
  padding: 2.5rem 4.5rem;
  border-bottom: 0;
  background: var(--sobra-white);
}

.sobra_activity-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.sobra_activity-row:nth-child(even) .sobra_activity-media {
  order: 2;
}

.sobra_activity-row:nth-child(even) .sobra_activity-text {
  order: 1;
}

.sobra_activity-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  background: var(--sobra-white);
  border-radius: 8px;
}

.sobra_activity-media img {
  max-height: 240px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.sobra_activity-text h3 {
  font-family: var(--font-tcccregular);
  font-size: 23px;
  font-weight: 700;
  color: var(--sobra-red);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.sobra_activity-text p {
  font-size: 15;
  color: var(--sobra-gray-dark);
  line-height: 1.6;
  font-family: var(--font-oxygen);
}

/* Engagements */
.sobra_engagements-intro {
  position: relative;
  height: 666px;
  padding: 0;
  background: #fff;
}

.sobra_engagements-intro::before {
  content: "";
  position: absolute;
  inset: 58px 0 auto;
  height: 550px;
  background: #fbfbfb;
}

.sobra_engagements-intro .sobra_split {
  position: relative;
  top: 124px;
  grid-template-columns: 524px 1fr;
  gap: 32px;
  width: 1027px;
  height: 385px;
  max-width: 100%;
  margin: 0 auto;
  left: 8px;
  padding: 0;
  background: #fff;
  border-radius: 20px;
}

.sobra_engagements-policy {
  height: 549px;
  padding: 0;
}

.sobra_engagements-policy .sobra_container {
  max-width: 1044px;
  padding: 0 20px;
}
.sobra_engagements-lead {
  margin: 0;
}

.sobra_split--engagement .sobra_split-text {
  position: relative;
  align-self: start;
  margin-top: 34px;
  width: 418px;
  height: 317px;
  padding-right: 0;
  border-right: 0;
}

/* .sobra_split--engagement .sobra_split-text::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -24px;
  width: 8px;
  height: 266px;
  border-radius: 8px;
  background: linear-gradient(#c42820 0 18%, #ddd 18% 100%);
} */

.sobra_engagements-intro .sobra_split > div:first-child img {
  position: relative;
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.sobra_engagements-intro .sobra_split-text h2 {
  margin-bottom: 28px;
  font-size: 26px;
  line-height: 1.2;
}

.text-engagement {
  height: 230px;
  overflow: auto;
}
/* Largeur de la scrollbar */
.text-engagement::-webkit-scrollbar {
  width: 9px;
  border-radius: 20px;
}

/* Fond */
.text-engagement::-webkit-scrollbar-track {
  background: #d9d9d9;
}

/* Curseur */
.text-engagement::-webkit-scrollbar-thumb {
  background: #aa231b;
  border-radius: 20px;
}

.sobra_engagements-intro .sobra_split-text p {
  margin: 0 0 22px;
  font-family: "Oxygen", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #767676;
}

.sobra_engagements-list {
  margin: 22px 0 0;
  padding-left: 24px;
  color: #767676;
  font-family: var(--font-oxygen);
  font-size: 16px;
  line-height: 22px;
}

.sobra_engagements-list li {
  margin: 0;
}

.sobra_engagements-list li::marker {
  color: var(--sobra-text);
}

.sobra_engagements-list strong {
  color: #767676;
}

.sobra_engagements-text {
  margin: 22px 0 0;
  color: #767676;
  font-family: "Oxygen", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.sobra_engagements-tagline {
  color: #767676;
  margin: 22px 0 0;
  font-family: "Oxygen", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.sobra_engagements-tagline strong {
  color: #d71f28;
}

/* Key figures */
.sobra_figures-section {
  position: relative;
  height: 1315px;
  min-height: 1315px;
  padding: 0;
}

.sobra_figures-section > .sobra_container {
  position: relative;
  height: 100%;
  max-width: 1079px;
}

.sobra_figures-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: 383px 442px 1fr;
  gap: 0;
  height: 259px;
  margin: 0;
  border-bottom: 1px solid #d4d4d4;
}

.sobra_figure-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 1rem;
  position: relative;
}

@media (min-width: 901px) {
  .sobra_figures-top .sobra_figure-card {
    padding: 0;
    justify-content: flex-start;
  }
  .sobra_figures-top .sobra_figure-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 82px;
    right: 0;
    width: 1px;
    height: 129px;
    background: #d4d4d4;
  }
  .sobra_figures-top .sobra_figure-card:first-child {
    display: block;
    text-align: left;
  }
  .sobra_figures-top .sobra_figure-card:first-child > div {
    position: absolute;
    top: 75px;
    left: 6px;
  }
  .sobra_figures-top .sobra_figure-card:first-child h4 {
    font:
      400 32px/22px "Oxygen",
      Arial,
      sans-serif;
    font-family: var(--font-oxygen);
  }
  .sobra_figures-top .sobra_figure-card:first-child h4 span {
    margin-top: 23px;
    font:
      700 64px/22px "Oxygen",
      Arial,
      sans-serif;
    color: #4e4e4e;
    font-family: var(--font-oxygen);
  }
  .sobra_figures-top .sobra_figure-card:first-child p {
    margin-top: 23px;
    font:
      400 24px/22px "Oxygen",
      Arial,
      sans-serif;
    color: #4e4e4e;
  }
  .sobra_figures-top .sobra_figure-card:nth-child(2) img {
    position: absolute;
    top: 98px;
    left: 19px;
    width: 158px;
    height: 97px;
  }
  .sobra_figures-top .sobra_figure-card:nth-child(2) > div {
    position: absolute;
    top: 115px;
    left: 198px;
  }
  .sobra_figures-top .sobra_figure-card:nth-child(2) h4 {
    font:
      700 97px/22px "Oxygen",
      Arial,
      sans-serif;
    color: #4e4e4e;
  }
  .sobra_figures-top .sobra_figure-card:nth-child(2) h4 span {
    position: absolute;
    top: 2px;
    left: 70px;
    width: 173px;
    font:
      400 24px/22px "Oxygen",
      Arial,
      sans-serif;
    color: #4e4e4e;
  }
  .sobra_figures-top .sobra_figure-card:nth-child(3) img {
    position: absolute;
    top: 0;
    left: 19px;
    width: 177px;
    height: 99px;
  }
  .sobra_figures-top .sobra_figure-card:nth-child(3) > div {
    position: absolute;
    top: 107px;
    left: 24px;
  }
  .sobra_figures-top .sobra_figure-card:nth-child(3) h4 {
    width: 260px;
    margin: 0;
    font:
      700 53px/60px "Oxygen",
      Arial,
      sans-serif;
    color: #4e4e4e;
  }
  .sobra_figures-top .sobra_figure-card:nth-child(3) h4 span {
    font:
      400 24px/22px "Oxygen",
      Arial,
      sans-serif;
    color: #4e4e4e;
  }
  .sobra_export-kicker {
    margin: 0 0 7px 71px;
    font:
      400 24px/22px "Oxygen",
      Arial,
      sans-serif;
    color: #4e4e4e;
  }
}

.sobra_figure-card img,
.sobra_figure-card svg {
  width: auto;
  height: 78px;
  max-width: 150px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.sobra_figure-card:first-child {
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.sobra_figure-card:first-child h4 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sobra-text);
  line-height: 1.15;
}

.sobra_figure-card:first-child h4 span {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  color: #555;
  display: block;
}

.sobra_figure-card h4 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  color: #555;
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
}

.sobra_figure-card h4 span {
  font-size: 1rem;
  display: block;
  color: var(--sobra-text);
  font-weight: 400;
  text-transform: none;
}

.sobra_figure-card p {
  font-size: 0.85rem;
  color: var(--sobra-gray-dark);
  margin: 0.2rem 0 0;
}

.sobra_figures-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.sobra_figures-table th,
.sobra_figures-table td {
  padding: 1.1rem 1rem;
  text-align: center;
  border-bottom: 0;
  font-size: 0.9rem;
}

.sobra_figures-table th {
  color: var(--sobra-gray-dark);
  font-weight: 600;
  border-bottom: none;
}

.sobra_figures-table td {
  color: var(--sobra-text);
  font-weight: 700;
  font-size: 1rem;
}

.sobra_figures-table .label {
  text-align: left;
  color: var(--sobra-gray-dark);
  font-weight: 400;
  border-bottom: none;
  font-size: 1rem;
}

.sobra_figures-table thead {
  display: none;
}

.sobra_figures-table td:nth-child(2) {
  position: relative;
}

.sobra_figures-table td:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 82%;
  width: 54%;
  height: 1px;
  background: var(--sobra-red);
  opacity: 0.7;
}

.sobra_figures-table td small {
  display: block;
  margin-top: 0.25rem;
  color: var(--sobra-gray-dark);
  font-weight: 400;
}

.sobra_figures-activities {
  position: absolute;
  top: 295px;
  left: 9px;
  right: 0;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.sobra_figures-activities-title {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  width: 279px;
  font-size: 32px;
  font-weight: 400;
  color: #4e4e4e;
  margin: 0;
  text-align: center;
}

.sobra_figures-activities-title span {
  font-size: 64px;
  font-weight: 700;
  color: var(--sobra-black);
}

.sobra_figures-activity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sobra_figures-activity-item span {
  font-family: var(--font-oxygen);
  font-size: 26px;
  font-weight: 700;
  color: #787878;
}
.sobra_figures-activity-item:nth-of-type(1) {
  width: 323px;
}
.sobra_figures-activity-item:nth-of-type(2) {
  margin-left: 110px;
}

.sobra_figures-activity-item img,
.sobra_figures-activity-item svg {
  width: auto;
  height: 111px;
  display: block;
}

.sobra_figures-activities > img {
  width: 54px;
  height: 54px;
  margin-top: 23px;
}

.sobra_figures-sites {
  position: absolute;
  top: 513px;
  left: 269px;
  right: 0;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding-right: 1px;
  gap: 0;
}

.sobra_figures-site {
  text-align: center;
}

.sobra_figures-site img {
  max-height: none;
  width: auto;
  margin: 0 auto;
}

.sobra_figures-site span {
  display: none;
}

.sobra_figures-site:first-child img {
  width: 283px;
  height: 107px;
}
.sobra_figures-site:last-child img {
  width: 229px;
  height: 109px;
}

@media (min-width: 901px) {
  .sobra_figures-table {
    position: absolute;
    top: 657px;
    left: 1px;
    width: calc(100% - 1px);
    margin: 0;
    display: block;
  }
  .sobra_figures-table tbody,
  .sobra_figures-table tr {
    display: block;
    width: 100%;
  }
  .sobra_figures-table tr {
    position: relative;
    min-height: 70px;
  }
  .sobra_figures-table td {
    position: absolute;
    top: 0;
    padding: 0;
    border: 0;
  }
  .sobra_figures-table .label {
    left: 0;
    width: 286px;
    text-align: left;
    font-size: 25px;
    font-weight: 700;
    color: #787878;
    font-family: var(--font-oxygen);
  }
  .sobra_figures-table td:nth-child(2) {
    left: 297px;
    width: 235px;
    text-align: center;
    font-size: 28px;
    line-height: 22px;
    color: #626060;
  }
  .sobra_figures-table td:nth-child(2)::after {
    top: 17px;
    left: 251px;
    width: 247px;
    height: 2px;
    background: #aa231b;
  }
  .sobra_figures-table td:nth-child(3) {
    right: 0;
    width: 224px;
    text-align: center;
    font-size: 28px;
    line-height: 22px;
    color: #626060;
  }
  .sobra_figures-table td small {
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
  }
}

/* Project support */
.sobra_glass-virtues {
  height: 938px;
  padding: 22px 0 0;
  background: #f8f8f8;
}
.sobra_glass-virtues-grid {
  display: grid;
  grid-template-columns: repeat(2, 499px);
  grid-auto-rows: 384px;
  gap: 46px 34px;
  width: 1032px;
  margin: 0 auto;
}
.sobra_glass-virtues article {
  padding: 56px 49px;
  background: #fff;
  text-align: center;
}
.sobra_glass-virtues h2 {
  margin: 0 0 36px;
  font:
    700 30px/20px "Oxygen",
    Arial,
    sans-serif;
  color: #1f8e36;
  text-transform: uppercase;
}
.sobra_glass-virtues p {
  margin: 0 auto;
  max-width: 400px;
  font-size: 15px;
  font-family: var(--font-oxygen);
  color: #000;
}

/* RSE orientations */
.sobra_rse-cards {
  height: 1182px;
  margin-top: -51px;
  padding-top: 74px;
  background: #f8f8f8;
}
.sobra_rse-grid {
  position: relative;
  left: -3.5px;
  display: grid;
  grid-template-columns: repeat(2, 499px);
  grid-auto-rows: 321px;
  gap: 30px 34px;
  width: 1032px;
  margin: 0 auto;
}
.sobra_rse-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 33px 43px 24px;
  background: #fff;
  text-align: center;
}
.sobra_rse-grid article:nth-child(2) {
  padding-top: 38px;
}
.sobra_rse-grid article:nth-child(n + 3) {
  padding-top: 33px;
}
.sobra_rse-grid img {
  width: 117px;
  height: 117px;
  object-fit: contain;
}
.sobra_rse-grid p {
  width: 400px;
  margin: 33px 0 0;
  font-size: 15px;
  font-family: var(--font-oxygen);
  line-height: 1.4;
  color: #000;
}
.sobra_rse-grid article:nth-child(2) p {
  margin-top: 28px;
}
.sobra_rse-energy {
  height: 608px;
  background: #fff;
}
.sobra_rse-energy > div {
  position: relative;
  left: -2px;
  width: 1034px;
  height: 100%;
  margin: 0 auto;
  padding-top: 92px;
}
.sobra_rse-energy h2 {
  margin: 0 0 11px 12px;
  font-size: 33px;
  font-family: var(--font-oxygen);
  font-weight: 700;
  color: #aa231b;
  text-transform: uppercase;
}
.sobra_rse-energy p {
  margin: 0 0 32px 16px;
  width: 575px;
  font-size: 18px;
  font-family: var(--font-oxygen);
  font-weight: 700;
  color: #414141;
}
.sobra_rse-energy img {
  display: block;
  width: 1034px;
  height: 262px;
  object-fit: cover;
}

/* Environmental commitments */
.sobra_environment-list {
  background: #fff;
}
.sobra_environment-inner {
  position: relative;
  left: -5.5px;
  width: 1032px;
  height: 100%;
  margin: 0 auto;
  padding-top: 50px;
}
.sobra_environment-intro {
  width: 1032px;
  margin: 0;
  font-size: 16px;
  font-family: var(--font-oxygen);
  color: #767676;
  padding-bottom: 50px;
}
.sobra_environment-inner article {
  width: 1032px;
  position: relative;
  padding-bottom: 32px;
}
.sobra_environment-inner article span {
  display: grid;
  place-items: center;
  min-width: 51px;
  height: 51px;
  border: 1px solid #aa231b;
  border-radius: 50%;
  font-size: 27px;
  font-family: var(--font-oxygen);
  font-weight: 300;
  color: #aa231b;
  position: relative;
}
.sobra_environment-inner article h2 {
  margin: 0;
  font-size: 27px;
  font-family: var(--font-oxygen);
  padding-bottom: 32px;
  display: flex;
  gap: 18px;
  padding-top: 10px;
  color: #aa231b;
  font-weight: 400;
  line-height: 1.3;
}
.sobra_environment-inner article p {
  margin: 0;
  font-size: 16px;
  font-family: var(--font-oxygen);
  color: #767676;
  padding-bottom: 25px;
}

/* Spontaneous application */
.sobra_career-application {
  height: 1492px;
  background: #fff;
}
.sobra_career-application-inner {
  position: relative;
  max-width: 1176px;
  height: 100%;
  margin: 0 auto;
}
.box-creer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  padding-top: 50px;
}
.sobra_career-kicker {
  margin: 0;
  font-size: 14px;
  font-family: var(--font-oxygen);
  font-weight: 700;
  color: #aa231b;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.sobra_career-application-inner h2 {
  width: 571px;
  margin: 0;
  font-size: 36px;
  font-family: var(--font-oxygen);
  font-weight: 700;
  color: #666;
  padding-bottom: 40px;
}
.sobra_career-side-image {
  width: 451px;
}
.sobra_career-side-image img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.col-form {
  width: calc(100% - 451px);
  padding-right: 30px;
}
.sobra_career-form {
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 57px 67px;
}
.sobra_career-form h3 {
  margin: 0;
  font-size: 24px;
  font-family: var(--font-oxygen);
  font-weight: 700;
  color: #666;
}
.sobra_career-form input,
.sobra_career-form select,
.sobra_career-form textarea {
  width: 524px;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  background: #fff;
  padding: 0 8px;
  font-size: 13px;
  font-family: var(--font-oxygen);
  font-weight: 400;
  color: #706c6c;
}
.sobra_career-form > input,
.sobra_career-form > select {
  height: 41px;
  margin-bottom: 18px;
}

.sobra_upload {
  width: 527px;
  font-size: 14px;
  font-family: var(--font-oxygen);
  font-weight: 400;
  color: #7f7f7f;
}
.sobra_upload em,
.sobra_consent em {
  color: #e9212e;
  font-style: normal;
}
.sobra_upload-field {
  display: flex;
  justify-content: space-between;
  width: 524px;
  height: 41px;
  margin-left: 2px;
  border: 1px solid #d9d9d9;
  padding-left: 8px;
  font-size: 15px;
  color: #706c6c;
}
.sobra_upload-field b {
  display: block;
  width: 87px;
  background: #aa231b;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}
.sobra_upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.sobra_career-form textarea {
  top: 805px;
  height: 117px;
  resize: none;
  font-size: 15px;
}
.sobra_consent {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #6b6b6b;
  margin-bottom: 25px;
  font-family: var(--font-tcccregular);
}
.sobra_consent input {
  width: 14px;
  height: 14px;
  margin: 0 10px 0 0;
  accent-color: #aa231b;
}
.sobra_recaptcha {
  position: relative;
  width: 302px;
  height: 76px;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  background: #f9f9f9;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
  margin-bottom: 35px;
}
.sobra_recaptcha > span {
  position: absolute;
  top: 22px;
  left: 13px;
  width: 28px;
  height: 28px;
  border: 2px solid #555;
  background: #fff;
}
.sobra_recaptcha strong {
  position: absolute;
  top: 25px;
  left: 50px;
  font:
    400 14px/22px Arial,
    sans-serif;
  color: #111;
}
.sobra_recaptcha small {
  position: absolute;
  top: 15px;
  right: 7px;
  width: 76px;
  font:
    400 9px/13px Arial,
    sans-serif;
  color: #555;
  text-align: center;
}
.sobra_career-form button {
  width: 525px;
  height: 50px;
  border: 0;
  background: #aa231b;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-tcccregular);
}
.sobra_career-form button i {
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

/* Jobs listing */
.sobra_jobs-listing {
  background: #fff;
}
.sobra_jobs-inner {
  position: relative;
  width: 1058px;
  height: 100%;
  margin: 0 auto;
  padding-top: 50px;
}
.sobra_jobs-filter {
  width: 250px;
  padding-bottom: 30px;
}
.sobra_jobs-filter label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font:
    400 16px/24px "Oxygen",
    Arial,
    sans-serif;
  color: #5d596c;
}
.sobra_jobs-filter select {
  width: 250px;
  height: 49px;
  padding: 0 16px;
  border: 1px solid #dbdade;
  border-radius: 34px;
  background: #fff;
  font:
    400 16px/19px "Oxygen",
    Arial,
    sans-serif;
  color: #a5a3ae;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../../images/icon-select.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.sobra_jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 505px);
  grid-auto-rows: 317px;
  gap: 46px;
  padding-bottom: 95px;
}
.sobra_job-card {
  position: relative;
  width: 505px;
  height: 317px;
  border: 1px solid #bebebe;
  border-radius: 38px;
  background: rgba(251, 251, 251, 0.9);
  padding: 29px 50px;
  font-family: "Oxygen", Arial, sans-serif;
}
.sobra_job-card:nth-child(n + 5) {
  transform: translateY(7px);
}
.sobra_job-card time {
  display: block;
  margin-left: 4px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #aa231b;
}
.sobra_job-card h2 {
  width: 397px;
  margin: 4px 0 0 4px;
  font-size: 24px;
  line-height: 26px;
  color: #000;
}
.sobra_job-card p {
  width: 394px;
  margin: -3px 0 0 4px;
  font-size: 18px;
  line-height: 26px;
  color: #000;
}
.sobra_job-card a {
  position: absolute;
  left: 50px;
  top: 235px;
  padding: 12px 32px;
  border: 2px solid #aa231b;
  border-radius: 42px;
  background: #aa231b;
  font:
    600 16px/19px "Work Sans",
    "Oxygen",
    Arial,
    sans-serif;
  color: #fff;
}
.sobra_jobs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Open Sans", "Oxygen", Arial, sans-serif;
  margin-bottom: 150px;
}
.sobra_jobs-pagination b,
.sobra_jobs-pagination a:not(.next) {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #aa231b;
  border-radius: 50%;
  font-size: 16px;
  color: #030606;
}
.sobra_jobs-pagination b {
  background: #aa231b;
  color: #fff;
}
.sobra_jobs-pagination .next {
  margin-left: 4px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: #aa231b;
  white-space: nowrap;
}
.sobra_jobs-pagination .next i {
  margin-left: 18px;
}

/* Glass recycling */
.sobra_recycling-content {
  background: #fff;
}
.sobra_recycling-inner {
  padding-top: 100px;
  position: relative;
  width: 1079px;
  height: 100%;
  margin: 0 auto;
}
.sobra_recycling-inner blockquote {
  position: relative;
  width: 880px;
  margin: 0 auto;
  font-size: 32px;
  font-family: var(--font-oxygen);
  font-weight: 700;
  color: #505251;
  text-align: center;
}
.sobra_recycling-inner blockquote::before,
.sobra_recycling-inner blockquote::after {
  position: absolute;
  font:
    700 55px/1 Georgia,
    serif;
  color: #8dab5a;
}
.sobra_recycling-inner blockquote::before {
  content: "“";
  left: -2px;
  top: -31px;
}
.sobra_recycling-inner blockquote::after {
  content: "”";
  right: -8px;
  top: 18px;
}
.sobra_lavoisier {
  width: 202px;
  margin: 0 auto 25px auto;
  object-fit: cover;
}
.sobra_lavoisier-name {
  width: 880px;
  margin: 0 auto 34px auto;
  font-size: 16px;
  font-family: var(--font-oxygen);
  color: #aa231b;
  text-align: center;
}
.sobra_recycling-intro {
  width: 1046px;
  margin: 0 auto 60px auto;
  font-size: 18px;
  font-family: var(--font-oxygen);
  color: #767676;
}
.sobra_recycling-callout {
  display: grid;
  grid-template-columns: 525px 499px;
  gap: 16px;
  align-items: center;
  padding-bottom: 90px;
}
.sobra_recycling-callout > div {
  position: relative;
  display: flex;
  align-items: center;
  width: 525px;
  height: 168px;
  background: #81b62e;
  overflow: hidden;
}
.sobra_recycling-callout img {
  width: 191px;
  height: 163px;
  object-fit: contain;
  margin-left: 25px;
}
.sobra_recycling-callout strong {
  width: 378px;
  margin-left: -97px;
  padding-left: 0;
  font:
    700 27px/28px "Oxygen",
    Arial,
    sans-serif;
  color: #fff;
}
.sobra_recycling-callout > p {
  width: 499px;
  margin: 0;
  font:
    700 22px/27px "Oxygen",
    Arial,
    sans-serif;
  color: #767676;
}
.sobra_recycling-callout em {
  color: #8dab5a;
  font-style: normal;
}
.sobra_recycling-benefits {
  width: 1058px;
  margin: 0 auto 90px auto;
}
.sobra_recycling-benefits h2,
.sobra_recycling-steps h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin: 0;
  font:
    700 33px/44px "Oxygen",
    Arial,
    sans-serif;
  color: #aa231b;
  text-transform: uppercase;
  white-space: nowrap;
}
.sobra_recycling-benefits h2::before,
.sobra_recycling-benefits h2::after,
.sobra_recycling-steps h2::before,
.sobra_recycling-steps h2::after {
  content: "";
  width: 187px;
  height: 1px;
  background: #aa231b;
}
.sobra_recycling-benefits > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 39px 25px;
  margin-top: 111px;
}
.sobra_recycling-benefits p {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 19px;
  align-items: start;
  margin: 0;
  font:
    400 20px/22px "Oxygen",
    Arial,
    sans-serif;
  color: #767676;
}
.sobra_recycling-benefits p img {
  width: 45px;
  height: 45px;
}
.sobra_recycling-benefits p strong {
  font-weight: 700;
}
.sobra_recycling-steps {
  width: 1017px;
  margin: 0 auto;
  padding-bottom: 90px;
}
.sobra_recycling-steps img {
  display: block;
  width: 900px;
  height: 560px;
  margin-top: 56px;
  object-fit: contain;
}
.sobra_recycling-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 954px;
  margin: 0 auto 90px auto;
  padding-top: 67px;
  padding-bottom: 67px;
  border-top: 1px solid #aa231b;
}
.sobra_recycling-contact > strong {
  width: 517px;
  font:
    700 25px/30px "Oxygen",
    Arial,
    sans-serif;
  color: #767676;
}
.sobra_recycling-contact > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: 239px;
  height: 57px;
  border-radius: 40px;
  background: #aa231b;
  font:
    700 16px/31px "Oxygen",
    Arial,
    sans-serif;
  color: #fff;
}

/* Manufacturing process */
.sobra_process-content {
  background: #fff;
}
.sobra_process-inner {
  position: relative;
  width: 1049px;
  height: 100%;
  margin: 0 auto;
}
.sobra_process-overview {
  width: 1200px;
  height: 536px;
  object-fit: contain;
  margin-bottom: 50px;
}
.sobra_process-intro {
  width: 613px;
  text-align: center;
  margin: 0 auto 60px auto;
}
.sobra_process-intro h2 {
  margin: 0;
  font:
    700 33px/44px "Oxygen",
    Arial,
    sans-serif;
  color: #aa231b;
  text-transform: uppercase;
}
.sobra_process-intro p {
  margin: 9px 0 0;
  font:
    400 16px/44px "Oxygen",
    Arial,
    sans-serif;
  color: #414141;
}
.sobra_process-department {
  width: 613px;
  margin: 0;
  font-size: 33px;
  font-family: var(--font-oxygen);
  font-weight: 700;
  color: #110000;
  text-transform: uppercase;
  margin-bottom: 46px;
  padding-left: 76px;
}
.sobra_process-department--hot {
  top: 728px;
}
.sobra_process-department--cold {
  top: 2840px;
  left: 33px;
}

.sobra_process-timeline {
  position: relative;
}
.sobra_process-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 24px;
  width: 3px;
  height: 4063px;
  border-left: 3px dashed #aa231b;
}
.sobra_process-timeline article {
  position: relative !important;
  width: 550px;
  padding-bottom: 72px;
  padding-left: 76px;
}
.sobra_process-timeline article > span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  border: 1px solid #aa231b;
  border-radius: 50%;
  background: #fff;
  font:
    400 27px/1.2 "Oxygen",
    Arial,
    sans-serif;
  color: #aa231b;
}
.sobra_process-timeline article > h3 {
  margin: 0;
  font-size: 29px;
  font-family: var(--font-oxygen);
  font-weight: 700;
  color: #aa231b;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 23px;
}
.sobra_process-timeline article > img {
  width: 288px;
  object-fit: cover;
  margin-bottom: 23px;
}
.sobra_process-timeline article > p,
.sobra_process-text {
  width: 474px;
  min-height: 99px;
  margin: 0;
  border: 1px solid #cdcdcd;
  padding: 21px 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font:
    400 16px/19.2px "Oxygen",
    Arial,
    sans-serif;
  color: #565454;
}
.sobra_process-text {
  height: 224px;
}
.sobra_process-text p {
  margin: 0 0 16px;
}
.sobra_process-text ul {
  margin: 0;
  padding-left: 24px;
}

/* Custom glass model */
.sobra_custom-model {
  background: #fff;
}
.sobra_custom-model-inner {
  position: relative;
  width: 1049px;
  height: 100%;
  margin: 0 auto;
}
.sobra_custom-model-edito {
  width: 1032px;
  font:
    400 16px/22px "Oxygen",
    Arial,
    sans-serif;
  color: #767676;
}
.sobra_custom-model-edito p {
  margin: 0 0 22px;
}
.sobra_custom-options-title {
  width: 613px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 50px;
}
.sobra_custom-options-title h2,
.sobra_operating-mode > h2 {
  margin: 0;
  font:
    700 33px/44px "Oxygen",
    Arial,
    sans-serif;
  color: #aa231b;
  text-transform: uppercase;
}
.sobra_custom-options-title p {
  margin: 9px 0 0;
  font:
    400 16px/44px "Oxygen",
    Arial,
    sans-serif;
  color: #414141;
}
.sobra_custom-options {
}
.sobra_custom-options > article {
  width: 1049px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 69px;
  padding-bottom: 50px;
  align-items: center;
}
.sobra_custom-options figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.sobra_custom-options figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobra_custom-options figcaption {
  position: absolute;
  left: 0;
  right: 0;
  top: 199px;
  font:
    700 38px/44px "Oxygen",
    Arial,
    sans-serif;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.sobra_option-details {
}
.sobra_option-details p {
  position: relative;
  min-height: 82px;
  margin: 0 0 37px;
  padding-left: 82px;
  font:
    400 16px/22px "Oxygen",
    Arial,
    sans-serif;
  color: #767676;
}
.sobra_option-details p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 39px;
  height: 82px;
  background: center/contain no-repeat;
}
.sobra_option-details p:nth-child(1)::before {
  background-image: url("../../images/model-icon-bottle.png");
}
.sobra_option-details p:nth-child(2)::before {
  background-image: url("../../images/model-icon-jar.png");
}
.sobra_option-details p:nth-child(3)::before {
  background-image: url("../../images/model-icon-glass.png");
}
.sobra_option-details strong {
  display: block;
  margin-bottom: 18px;
  font-size: 26px;
  line-height: 22px;
}
.sobra_option-copy {
  font:
    400 16px/22px "Oxygen",
    Arial,
    sans-serif;
  color: #767676;
}
.sobra_custom-options article:nth-child(2) .sobra_option-copy {
  left: 16px;
  top: 0;
}
.sobra_custom-options article:nth-child(3) .sobra_option-copy {
  left: 547px;
  top: 0;
}
.sobra_option-copy > p {
  width: 474px;
  margin: 0 0 21px;
}
.sobra_option-copy > div p {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: start;
  margin: 0 0 20px;
}
.sobra_option-copy > div strong {
  font-size: 26px;
  line-height: 30px;
  color: #aa231b;
}
.sobra_custom-options article:nth-child(3) .sobra_option-copy > div {
  margin-top: 1px;
}
.sobra_operating-mode {
  padding-top: 40px;
}
.sobra_operating-mode > h2 {
  width: 613px;
  margin: 0 auto;
  text-align: center;
}
.sobra_operating-timeline {
  position: relative;
  margin-top: 69px;
  padding-top: 15px;
}
.sobra_operating-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  margin-left: -2px;
  border-left: 3px dashed#1f8e36;
  bottom: 0;
}
.sobra_operating-timeline article {
  position: relative;
  width: 1049px;
  margin-bottom: 59px;
  display: flex;
}
.sobra_operating-timeline article:nth-child(odd) {
  justify-content: end;
}
.sobra_operating-timeline span {
  position: absolute;
  left: 50%;
  top: 4px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  border: 1px solid #1f8e36;
  border-radius: 50%;
  background: #fff;
  font:
    400 27px/1.2 "Oxygen",
    Arial,
    sans-serif;
  color: #1f8e36;
  margin-left: -26px;
}
.sobra_operating-timeline p {
  width: calc(50% - 43px);
  min-height: 83px;
  margin: 0;
  border: 1px solid #cdcdcd;
  padding: 24px 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-family: var(--font-oxygen);
  color: #565454;
}

.sobra_project-section {
  height: 1295px;
  padding: 0;
}
.sobra_project-section > .sobra_container {
  position: relative;
  max-width: 1127px;
  height: 100%;
}
.sobra_project-intro {
  position: absolute;
  top: 78px;
  left: 20px;
  width: 1032px;
  margin: 0;
  font:
    400 16px/22px "Oxygen",
    Arial,
    sans-serif;
  color: #767676;
}
.sobra_project-steps {
  position: absolute;
  top: 181px;
  left: 20px;
  width: 1087px;
  height: 535px;
  object-fit: contain;
}
.sobra_project-team {
  position: absolute;
  top: 829px;
  left: 20px;
  width: 1017px;
}
.sobra_project-team h2 {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0;
  font: 700 33px/1.2 var(--font-tcccbold);
  color: #aa231b;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: center;
}
.sobra_project-team h2::before,
.sobra_project-team h2::after {
  content: "";
  width: 187px;
  height: 1px;
  background: #aa231b;
}
.sobra_project-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 55px;
  margin-top: 111px;
}
.sobra_project-team-grid p {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 0;
  font:
    700 20px/22px "Oxygen",
    Arial,
    sans-serif;
  color: #767676;
  font-family: var(--font-oxygen);
}
.sobra_project-team-grid img {
  width: 45px;
  height: 45px;
}

/* News */
.sobra_news-single {
  height: 822px;
  padding: 0;
}
.sobra_news-single > .sobra_container {
  position: relative;
  max-width: 1067px;
  height: 100%;
}
.sobra_news-back {
  position: absolute;
  top: 60px;
  left: 20px;
  padding: 16px 32px;
  border: 1px solid #aa231b;
  border-radius: 40px;
  font:
    700 16px/1.1 "Oxygen",
    Arial,
    sans-serif;
  color: #c12429;
}
.sobra_news-single-image {
  width: 315px;
  object-fit: cover;
}
.sobra_news-single-image img {
  width: 100%;
  display: block;
}
.box-detail-act {
  display: flex;
  flex-wrap: wrap;
  padding-top: 170px;
}
.sobra_news-single-copy {
  font-family: "Oxygen", Arial, sans-serif;
  width: calc(100% - 315px);
  padding-left: 40px;
}
.sobra_news-single-copy time {
  display: block;
  margin: 0 0 34px 2px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #1f8e36;
  text-transform: uppercase;
}
.sobra_news-single-copy h2 {
  margin: 0 0 31px;
  font-size: 22px;
  line-height: 1.2;
  color: #1d1d1d;
}
.sobra_news-single-copy p {
  width: 674px;
  margin: 0 0 22px 2px;
  font-size: 16px;
  line-height: 22px;
  color: #767676;
}
.sobra_news-share {
  margin-top: 7px;
  font-size: 16px;
  line-height: 22px;
  color: #110000;
}
.sobra_news-share strong {
  display: block;
}
.sobra_news-share span {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.sobra_news-share i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #c12429;
  color: #fff;
  font-size: 13px;
}
.sobra_news-listing {
  height: 1562px;
  padding: 0;
}
.sobra_news-listing > .sobra_container {
  position: relative;
  max-width: 1067px;
  height: 100%;
}
.sobra_news-filters {
  display: flex;
  gap: 27px;
  padding-bottom: 55px;
  padding-top: 30px;
}
.sobra_news-filters label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font:
    700 16px/24px "Oxygen",
    Arial,
    sans-serif;
  color: #5d596c;
}
.sobra_news-filters select {
  width: 170px;
  padding: 12px 16px;
  border: 1px solid #dbdade;
  border-radius: 34px;
  background-color: #fff;
  font:
    700 16px/19px "Oxygen",
    Arial,
    sans-serif;
  color: #a5a3ae;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../../images/icon-select.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.sobra_news-filters label:last-child select {
  width: 186px;
}
.sobra_news-grid {
  display: grid;
  grid-template-columns: repeat(3, 314px);
  grid-auto-rows: 346px;
  gap: 48px 45px;
  padding-bottom: 80px;
}
.sobra_news-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 314px;
  height: 346px;
  background: #222;
}
.sobra_news-card::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
}
.sobra_news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobra_news-card > span {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.sobra_news-card time {
  font:
    700 14px/1.2 "Oxygen",
    Arial,
    sans-serif;
  color: #9de827;
  text-transform: uppercase;
}
.sobra_news-card strong {
  font:
    700 16px/1.2 "Oxygen",
    Arial,
    sans-serif;
  color: #fff;
}
.sobra_news-pagination {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  padding-bottom: 130px;
  justify-content: center;
  flex-wrap: wrap;
}
.sobra_news-pagination b,
.sobra_news-pagination a:not(.next) {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #c12429;
  border-radius: 50%;
}
.sobra_news-pagination b {
  background: #c12429;
  color: #fff;
}
.sobra_news-pagination .next,
.sobra_news-pagination .prev {
  margin-left: 3px;
  font:
    700 18px/1.2 "Oxygen",
    Arial,
    sans-serif;
  color: #c12429;
  display: flex;
  gap: 3px;
  align-items: center;
}
.sobra_news-pagination .prev {
  display: flex !important;
  place-items: center !important;
  width: inherit !important;
  height: inherit !important;
  border: none !important;
  border-radius: 0 !important;
}
.sobra_news-pagination .next:after {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  background: url(../../images/arrow-right.svg) center no-repeat;
}

.sobra_news-pagination .prev:before {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  background: url(../../images/arrow-right.svg) center no-repeat;
  transform: rotate(180deg);
}

/* Certifications */
.sobra_certifications-section {
  padding-bottom: 118px;
}

.sobra_certifications-main {
  text-align: center;
}

.sobra_certifications-main img {
  width: 100%;
  max-width: 1043px;
  margin: 0 auto;
  border-radius: 0;
}

/* Clients grid */
.sobra_clients-section {
  padding: 52px 0;
}

.sobra_clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.sobra_clients-grid img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 1.6rem;
  border-bottom: 1px solid var(--sobra-border);
  border-left: 1px solid var(--sobra-border);
  margin: -1px 0 0 -1px;
  filter: grayscale(1);
  transition: all 0.3s;
}
.sobra_clients-grid img:hover {
  filter: grayscale(0);
}
.sobra_clients-grid img:first-child,
.sobra_clients-grid img:nth-child(4n + 5) {
  border-left: none;
}

.sobra_clients-grid img:nth-child(8) {
  filter: grayscale(0);
}

/* Catalogue */
.sobra_catalogue-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 2.5rem;
}

.sobra_catalogue-section {
  padding-top: 2rem;
}

.sobra_catalogue-filters {
  background: var(--sobra-white);
  border-radius: 0;
}

.sobra_filters-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.25rem;
}

.sobra_filter-group {
  margin-bottom: 1.5rem;
}

.sobra_filters-bar .sobra_filter-group {
  margin-bottom: 0;
}

.sobra_filter-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sobra-text);
  margin-bottom: 0.5rem;
}

.sobra_filters-bar .sobra_filter-group label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sobra_filter-group select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--sobra-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.85rem;
}

.sobra_filters-bar select {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.62rem 2.5rem 0.62rem 0.75rem;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: var(--sobra-white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23a82018' d='M6 9l6 6 6-6z'/%3E%3C/svg%3E")
    no-repeat right 0.9rem center / 14px;
  text-transform: uppercase;
  color: var(--sobra-gray-dark);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.sobra_catalogue-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.sobra_catalogue-menu li {
  border-bottom: 1px solid var(--sobra-border);
}

.sobra_catalogue-menu a {
  display: block;
  padding: 0.85rem 0;
  color: var(--sobra-gray-dark);
  transition:
    color 0.2s,
    padding-left 0.2s;
  font-size: 20px;
  font-family: var(--font-oxygen);
  font-weight: 700;
}

.sobra_catalogue-menu a:hover,
.sobra_catalogue-menu a.active {
  color: var(--sobra-green);
  font-weight: 700;
}

.sobra_products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sobra_product-item {
  border: 1px solid var(--sobra-border);
  border-radius: 0;
  overflow: hidden;
  background: var(--sobra-white);
  text-align: center;
  transition: box-shadow 0.2s;
}

.sobra_product-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.sobra_product-item img {
  height: 200px;
  width: auto;
  margin: 1.25rem auto;
  object-fit: contain;
}

.sobra_product-item h4 {
  font-family: var(--font-oxygen);
  font-size: 18px;
  font-weight: 700;
  color: var(--sobra-text);
  margin: 0;
  padding: 0 1rem;
  text-transform: uppercase;
}

.sobra_product-meta {
  font-size: 12px;
  font-family: var(--font-oxygen);
  font-weight: 700;
  color: var(--sobra-gray-dark);
  text-transform: uppercase;
  padding: 0.5rem 1rem 1rem;
  line-height: 1.5;
}
.sobra_product-meta span {
  color: #aac52d;
}

.sobra_product-meta strong {
  color: var(--sobra-green);
  font-weight: 700;
}

.sobra_product-item .sobra_btn {
  width: 100%;
  border-radius: 0;
  padding: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--sobra-green);
  color: var(--sobra-white);
}

.sobra_product-item .sobra_btn:hover {
  background: #96ad1f;
  box-shadow: none;
  transform: none;
}

.sobra_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.sobra_pagination a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
  font-size: 0.85rem;
  color: var(--sobra-text);
  transition:
    background 0.2s,
    color 0.2s;
  border: 1px solid #aac52d;
}

.sobra_pagination a.active,
.sobra_pagination a:hover {
  background: var(--sobra-green);
  color: var(--sobra-white);
  border-color: var(--sobra-green);
}

.sobra_pagination a.sobra_pagination-next {
  width: auto;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 0 1rem;
  border-radius: 0;
  color: #aac52d;
  font-family: var(--font-oxygen);
  font-size: 18px;
  border: none;
}
.sobra_pagination a.sobra_pagination-next:hover {
  color: #fff;
}

/* Product single */
.sobra_catalogue-single-section {
  padding-bottom: 210px;
}
.sobra_catalogue-single-section .sobra_container {
  max-width: 1129px;
}
.sobra_breadcrumb {
  font-size: 18px;
  color: #000;
  margin-bottom: 2.5rem;
  font-family: var(--font-oxygen);
}

.sobra_breadcrumb a:hover {
  color: var(--sobra-red);
}

.sobra_breadcrumb span {
  color: var(--sobra-text);
  font-weight: 700;
  text-transform: uppercase;
}

.sobra_breadcrumb-sep {
  font-size: 0.7rem;
  margin: 0 6px;
  color: #d32030;
}

.sobra_product-single {
  display: grid;
  grid-template-columns: 1fr 378px;
  gap: 3.5rem;
  align-items: start;
}

.sobra_product-single h2 {
  font-family: var(--font-oxygen);
  font-size: 38px;
  line-height: 0.9;
  font-weight: 700;
  color: var(--sobra-text);
  text-transform: none;
  margin: 0 0 1.25rem;
  max-width: 330px;
}

.sobra_product-single-title {
  font-family: var(--font-title);
  font-size: 30px !important;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1.5rem;
}

.sobra_product-caption {
  color: var(--sobra-gray-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sobra_specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.25rem;
}
.sobra_specs-table tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.sobra_specs-table tr:before {
  content: "";
  display: block;
  height: 2px;
  background: #ab271c;
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  z-index: -1;
}
.sobra_specs-table tr td {
  flex: 0 0 auto;
  width: fit-content;
}

.sobra_specs-table td {
  padding: 0.65rem 0;
  font-size: 19px;
  font-family: var(--font-oxygen);
  font-weight: 700;
}

.sobra_specs-table td:first-child {
  color: var(--sobra-text);
  font-weight: 700;
  padding-right: 15px;
  background: #fff;
}

.sobra_specs-table td:last-child {
  color: var(--sobra-text);
  font-weight: 700;
  text-align: right;
  padding-left: 15px;
  background: #fff;
}

.sobra_product-media {
  border-radius: 0;
  padding: 2rem 2rem 4rem 2rem;
  text-align: center;
  border: 1px solid #bebebe;
}

.sobra_product-media img {
  height: 376px;
  width: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.sobra_product-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.75rem;
}

.sobra_product-actions .sobra_btn {
  width: 100%;
  border-radius: 0;
  padding: 0.9rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.sobra_product-actions .sobra_btn-outline {
  border: 1px solid var(--sobra-red);
  color: var(--sobra-red);
}

.sobra_product-actions .sobra_btn-outline:hover {
  box-shadow: none;
  transform: none;
}

.sobra_color-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 1024px) {
  .sobra_nav-list {
    gap: 1.1rem;
  }
  .sobra_nav-link {
    font-size: 0.78rem;
  }
  .sobra_logo {
    width: 150px;
    height: 96px;
    flex-basis: 150px;
  }
  .sobra_products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: -140px;
  }
  .sobra_product-card .sobra_product-media {
    height: 160px;
  }
  .sobra_figures-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .sobra_clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .box-detail-act {
    padding-top: 0;
  }
  .col-form {
    width: 100%;
    padding-right: 0;
  }
  .sobra_career-application-inner h2 {
    width: 100%;
  }
  .sobra_burger {
    display: flex;
  }
  .sobra_topbar {
    display: none;
  }
  .sobra_header--over-hero {
    position: absolute;
  }
  .sobra_nav {
    position: fixed;
    inset: 96px 0 0 0;
    background: var(--sobra-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
    gap: 1rem;
  }
  .sobra_nav.open {
    transform: translateX(0);
  }
  .sobra_nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    width: 100%;
  }
  .sobra_nav-item--dropdown {
    width: 100%;
  }
  .sobra_nav-link {
    font-size: 1rem;
    color: var(--sobra-text) !important;
  }
  .sobra_nav-link:hover,
  .sobra_nav-link.active {
    color: var(--sobra-red) !important;
  }
  .sobra_dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0.75rem;
    padding: 10px 0;
    display: none;
    min-width: 0;
  }
  .sobra_dropdown::before {
    display: none;
  }
  .sobra_nav-item.open .sobra_dropdown {
    display: block;
  }
  .sobra_hero {
    height: 75vh;
    min-height: 520px;
  }
  .sobra_hero-title {
    font-size: 2.4rem;
  }
  .sobra_hero .swiper {
    clip-path: none;
  }
  .sobra_products-grid {
    grid-template-columns: 1fr;
    margin-top: -80px;
  }
  .sobra_product-card .sobra_product-media {
    height: 180px;
  }
  .sobra_split,
  .sobra_activity-row,
  .sobra_catalogue-layout,
  .sobra_product-single {
    grid-template-columns: 1fr;
  }
  .sobra_catalogue-section {
    padding-top: 3rem;
  }
  .sobra_activity-row:nth-child(even) .sobra_activity-media,
  .sobra_activity-row:nth-child(even) .sobra_activity-text {
    order: unset;
  }
  .sobra_map-footer {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .sobra_figures-top {
    grid-template-columns: 1fr;
  }
  .sobra_clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sobra_products-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .sobra_timeline::before {
    left: 20px;
  }
  .sobra_timeline-item,
  .sobra_timeline-item:nth-child(odd),
  .sobra_timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 50px;
    padding-right: 0;
    justify-content: start;
    padding-bottom: 15px;
  }
  .sobra_timeline-item .content_timeline-item {
    width: 100%;
  }
  .sobra_timeline-item:nth-child(odd)::after,
  .sobra_timeline-item:nth-child(even)::after {
    left: 20px;
    right: auto;
  }
  .sobra_page-hero {
    height: 60vh;
    min-height: 420px;
    clip-path: none;
  }
  .sobra_page-hero-title {
    top: 42%;
  }
  .sobra_activity-row {
    width: 100%;
    height: auto;
    padding: 2.5rem;
  }
  .sobra_activities-intro,
  .sobra_activities-list {
    padding: 3rem 0;
  }
  .sobra_presentation-content,
  .sobra_history-section,
  .sobra_engagements-policy,
  .sobra_figures-section,
  .sobra_certifications-section,
  .sobra_clients-section,
  .sobra_catalogue-single-section {
    padding: 3rem 0;
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .sobra_header-inner {
    height: 72px;
  }
  .sobra_hero {
    height: 65vh;
    min-height: 460px;
  }
  .sobra_hero-content {
    margin-top: 30px;
  }
  .sobra_logo {
    width: 97px;
    height: 62px;
    flex-basis: 97px;
  }
  .sobra_logo-badge {
    padding: 0.3rem 0.55rem;
    border-radius: 0 0 10px 10px;
  }
  .sobra_hero-title {
    font-size: 1.9rem;
  }
  .sobra_page-hero-title {
    font-size: 2.4rem;
    top: 42%;
  }
  .sobra_hero .swiper {
    clip-path: none;
  }
  .sobra_products-grid {
    margin-top: -60px;
  }
  .sobra_product-card .sobra_product-media {
    height: 160px;
  }
  .sobra_section {
    padding: 2.5rem 0;
  }
  .sobra_section-title {
    font-size: 1.8rem;
  }
  .sobra_split-text h2 {
    font-size: 1.7rem;
  }
  .sobra_stats-grid {
    grid-template-columns: 1fr;
  }
  .sobra_stat-number {
    font-size: 1.9rem;
  }
  .sobra_products-list {
    grid-template-columns: 1fr;
  }
  .sobra_filters-bar {
    grid-template-columns: 1fr;
  }
  .sobra_clients-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sobra_figure-card h4 {
    font-size: 2.2rem;
  }
  .sobra_figures-table {
    table-layout: fixed;
    width: 100%;
  }
  .sobra_figures-table th,
  .sobra_figures-table td {
    padding: 0.7rem 0.35rem;
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }
  .sobra_figures-table .label {
    width: 34%;
    font-size: 0.78rem;
  }
  .sobra_figures-table td:nth-child(2)::after {
    display: none;
  }
  .sobra_footer {
    padding: 2rem 1.5rem;
  }
  .sobra_page-hero {
    clip-path: none;
  }
}

/* Final desktop artboard alignment. Kept after responsive rules so the
   page-specific spacing is not overwritten by the component defaults. */
@media (min-width: 901px) {
  .sobra_home-page .sobra_references {
    padding-bottom: 23px;
  }

  .sobra_presentation-content {
    padding-bottom: 130px;
  }

  .sobra_engagements-policy {
    padding-bottom: 55.5px;
  }

  .sobra_clients-section {
    padding-bottom: 65px;
  }

  .sobra_catalogue-single-section {
    padding-bottom: 211px;
  }
}

@media (max-width: 900px) {
  .sobra_glass-virtues,
  .sobra_rse-cards,
  .sobra_rse-energy,
  .sobra_environment-list,
  .sobra_career-application,
  .sobra_jobs-listing,
  .sobra_recycling-content,
  .sobra_process-content,
  .sobra_custom-model {
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 48px 20px;
  }
  .sobra_glass-virtues-grid,
  .sobra_rse-grid,
  .sobra_rse-energy > div,
  .sobra_environment-inner,
  .sobra_career-application-inner,
  .sobra_jobs-inner,
  .sobra_recycling-inner,
  .sobra_process-inner,
  .sobra_custom-model-inner {
    position: static;
    left: auto;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .sobra_glass-virtues-grid,
  .sobra_rse-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 24px;
  }
  .sobra_glass-virtues article,
  .sobra_rse-grid article {
    min-height: 280px;
    padding: 38px 24px;
  }
  .sobra_rse-grid p,
  .sobra_rse-energy p,
  .sobra_rse-energy img {
    width: 100%;
  }
  .sobra_rse-energy h2 {
    margin-left: 0;
    font-size: 27px;
  }
  .sobra_rse-energy p {
    margin-left: 0;
  }
  .sobra_environment-intro,
  .sobra_environment-inner article,
  .sobra_environment-inner article:nth-of-type(n),
  .sobra_environment-inner article span,
  .sobra_environment-inner article h2,
  .sobra_environment-inner article p,
  .sobra_environment-inner article:nth-of-type(n) p {
    position: static;
    width: auto;
  }
  .sobra_environment-inner article {
    margin-top: 42px;
  }
  .sobra_environment-inner article span {
    float: left;
    margin: 0 18px 12px 0;
  }
  .sobra_environment-inner article h2 {
    padding-top: 7px;
    font-size: 23px;
    line-height: 29px;
  }
  .sobra_environment-inner article p {
    clear: both;
    padding-top: 18px;
  }
  .sobra_career-kicker,
  .sobra_career-application-inner > h2,
  .sobra_career-side-image,
  .sobra_career-form,
  .sobra_jobs-filter,
  .sobra_jobs-grid,
  .sobra_jobs-pagination {
    position: static;
    width: 100%;
  }
  .sobra_career-application-inner > h2 {
    margin: 8px 0 28px;
    font-size: 30px;
  }
  .sobra_career-side-image {
    height: auto;
    margin-bottom: 28px;
  }
  .sobra_career-form {
    height: 1180px;
  }
  .sobra_jobs-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    margin-top: 40px;
  }
  .sobra_job-card {
    width: 100%;
  }
  .sobra_job-card:nth-child(n) {
    transform: none;
  }
  .sobra_jobs-pagination {
    margin-top: 38px;
    flex-wrap: wrap;
  }
  .sobra_recycling-inner > *,
  .sobra_recycling-benefits,
  .sobra_recycling-steps,
  .sobra_recycling-contact {
    position: static;
    width: 100%;
    margin: 0 0 42px;
  }
  .sobra_recycling-inner blockquote {
    position: static;
    left: auto;
    width: 100%;
    box-sizing: border-box;
  }
  .sobra_recycling-inner blockquote::before {
    left: 0;
  }
  .sobra_recycling-inner blockquote::after {
    right: 0;
  }
  .sobra_lavoisier {
    display: block;
    width: 202px;
    height: 211px;
    margin: 0 auto 12px;
  }
  .sobra_recycling-callout {
    display: block;
  }
  .sobra_recycling-callout > div,
  .sobra_recycling-callout > p {
    width: 100%;
  }
  .sobra_recycling-benefits > div {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }
  .sobra_recycling-benefits h2,
  .sobra_recycling-steps h2 {
    white-space: normal;
    font-size: 26px;
    text-align: center;
  }
  .sobra_recycling-benefits h2::before,
  .sobra_recycling-benefits h2::after,
  .sobra_recycling-steps h2::before,
  .sobra_recycling-steps h2::after {
    display: none;
  }
  .sobra_recycling-steps img {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }
  .sobra_recycling-contact {
    gap: 22px;
    padding-top: 32px;
  }
  .sobra_process-overview,
  .sobra_process-intro,
  .sobra_process-department,
  .sobra_process-department--cold,
  .sobra_process-timeline article,
  .sobra_process-timeline article:nth-child(n),
  .sobra_custom-model-edito,
  .sobra_custom-options-title,
  .sobra_custom-options,
  .sobra_custom-options > article,
  .sobra_custom-options > article:nth-child(n),
  .sobra_custom-options figure,
  .sobra_custom-options article:nth-child(n) figure,
  .sobra_option-details,
  .sobra_option-copy,
  .sobra_custom-options article:nth-child(n) .sobra_option-copy,
  .sobra_operating-mode,
  .sobra_operating-mode > h2,
  .sobra_operating-timeline,
  .sobra_operating-timeline article,
  .sobra_operating-timeline article:nth-child(n) {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }
  .sobra_process-inner::before,
  .sobra_operating-timeline::before {
    display: none;
  }
  .sobra_process-overview {
    object-fit: contain;
  }
  .sobra_process-intro,
  .sobra_process-department {
    margin: 38px 0;
    text-align: center;
  }
  .sobra_process-timeline article {
    min-height: 470px;
    margin-bottom: 36px;
    padding-left: 66px;
  }
  .sobra_process-timeline article > span {
    left: 0;
  }
  .sobra_process-timeline article > h3 {
    left: 66px;
    font-size: 23px;
    white-space: normal;
  }
  .sobra_process-timeline article > img {
    left: 66px;
    max-width: 100%;
  }
  .sobra_process-timeline article > p,
  .sobra_process-text {
    left: 66px;
    width: 100%;
    height: auto !important;
  }
  .sobra_custom-model-edito,
  .sobra_custom-options-title {
    margin-bottom: 42px;
  }
  .sobra_custom-options > article {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 48px;
  }
  .sobra_custom-options figure {
    order: 0;
  }
  .sobra_option-details,
  .sobra_option-copy {
    order: 1;
  }
  .sobra_custom-options figure img {
    height: auto;
  }
  .sobra_operating-mode > h2 {
    margin: 48px 0 32px;
    text-align: center;
  }
  .sobra_operating-timeline article {
    display: grid;
    grid-template-columns: 51px 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }
  .sobra_operating-timeline span,
  .sobra_operating-timeline p,
  .sobra_operating-timeline article:nth-child(n) p {
    position: static;
    width: auto;
    min-height: 0;
    margin-left: 0;
  }
}

/* Job offer detail */
.sobra_job-detail {
  background: #fff;
}
.sobra_job-detail-inner {
  position: relative;
  width: 1032px;
  height: 100%;
  margin: 0 auto;
}
.sobra_job-back {
  position: absolute;
  top: 76px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 48px;
  border: 1px solid #aa231b;
  border-radius: 30px;
  font:
    500 14px/1 "Oxygen",
    Arial,
    sans-serif;
  color: #aa231b;
}
.sobra_job-detail-copy {
  margin: 0 auto;
  width: 700px;
  font-size: 16px;
  font-family: var(--font-oxygen);
  color: #767676;
  padding-top: 160px;
  padding-bottom: 100px;
}
.sobra_job-detail-copy time {
  display: block;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 17px;
  font-weight: 700;
  color: #1f8e36;
  text-transform: uppercase;
}
.sobra_job-detail-copy h2 {
  margin: 0 0 17px;
  font-size: 21px;
  line-height: 25px;
  color: #151515;
}
.sobra_job-detail-copy h3 {
  margin: 18px 0 1px;
  font-size: 16px;
  line-height: 19px;
  color: #aa231b;
}
.sobra_job-detail-copy p {
  margin: 0 0 17px;
}
.sobra_job-detail-copy p strong {
  color: #aa231b;
}
.sobra_job-detail-copy ul {
  margin: 0 0 13px;
  padding-left: 24px;
}
.sobra_job-detail-copy li {
  margin: 0;
}
.sobra_job-detail-copy a {
  color: inherit;
}
.sobra_job-share {
  margin-top: 57px;
  font-size: 14px;
  line-height: 18px;
  color: #111;
}
.sobra_job-share strong {
  display: block;
}
.sobra_job-share span {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.sobra_job-share span a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #bd2019;
  color: #fff;
  font-size: 14px;
}

/* Contact */
.sobra_sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sobra_contact-hero {
  height: 1278px;
  background: center/cover no-repeat url("../../images/hero-contact-composite.jpg");
}
.sobra_contact-content {
  height: 1409px;
  background: #fff;
}
.sobra_contact-inner {
  position: relative;
  width: 1049px;
  height: 100%;
  margin: 0 auto;
}
.box-contact {
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
}
.sobra_contact-kicker {
  margin: 0;
  font:
    700 14px/27px "Oxygen",
    Arial,
    sans-serif;
  color: #aa231b;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.sobra_contact-inner h2 {
  margin: 0;
  font:
    700 36px/39px "Oxygen",
    Arial,
    sans-serif;
  color: #666;
  padding-bottom: 40px;
}
.sobra_contact-form {
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 57px 67px;
}
.sobra_contact-form h3 {
  margin: 0;
  font:
    700 24px/25px "Oxygen",
    Arial,
    sans-serif;
  color: #666;
  margin-bottom: 18px;
}
.sobra_contact-form > input,
.sobra_contact-form > select,
.sobra_contact-form textarea {
  border: 1px solid #d9d9d9;
  border-radius: 0;
  background: #fff;
  padding: 0 8px;
  font:
    400 13px/39px "Oxygen",
    Arial,
    sans-serif;
  color: #706c6c;
}
.sobra_contact-form > input,
.sobra_contact-form > select {
  height: 41px;
  margin-bottom: 18px;
  width: 100%;
}

.sobra_contact-upload {
  font:
    400 14px/39px "Oxygen",
    Arial,
    sans-serif;
  color: #7f7f7f;
}
.sobra_contact-upload > span {
  display: flex;
  justify-content: space-between;
  height: 41px;
  border: 1px solid #d9d9d9;
  padding-left: 8px;
  font-size: 13px;
  color: #706c6c;
  margin-bottom: 18px;
}
.sobra_contact-upload em {
  font-style: normal;
}
.sobra_contact-upload b {
  display: grid;
  place-items: center;
  width: 87px;
  background: #aa231b;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
}
.sobra_contact-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.sobra_contact-form textarea {
  height: 117px;
  resize: none;
  font-size: 15px;
  line-height: 22px;
  padding-top: 9px;
  width: 100%;
}
.sobra_contact-consent {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #6b6b6b;
  font-family: var(--font-oxygen);
  margin-bottom: 18px;
}
.sobra_contact-consent input {
  width: 14px;
  height: 14px;
  margin: 0 10px 0 0;
  accent-color: #aa231b;
}
.sobra_contact-consent a {
  color: #e9212e;
}
.sobra_contact-form .sobra_recaptcha {
}
.sobra_contact-form button {
  border: 0;
  background: #aa231b;
  font:
    400 14px/25px "Oxygen",
    Arial,
    sans-serif;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
}
.sobra_contact-form button i {
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}
.sobra_contact-side {
  width: 451px;
}
.sobra_contact-side > img {
  display: block;
  width: 100%;
  height: 628px;
  object-fit: cover;
}
.sobra_contact-side > div {
  width: 451px;
  min-height: 289px;
  margin-top: 53px;
  border: 1px solid #d9d9d9;
  padding: 30px 27px;
  font:
    400 15px/19px "Oxygen",
    Arial,
    sans-serif;
  color: #111;
}
.sobra_contact-side h3 {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 28px;
  color: #aa231b;
}
.sobra_contact-side p {
  margin: 0 0 12px;
}
.sobra_contact-side a {
  color: inherit;
}

@media (min-width: 901px) {
  .sobra_page-contact > .sobra_topbar,
  .sobra_page-contact > .sobra_header {
    opacity: 0;
  }
  .sobra_page-job-single .sobra_copyright {
    height: 66px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .sobra_page-contact .sobra_copyright {
    height: 60px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .sobra_page-history .sobra_timeline-item:nth-child(odd) .sobra_timeline-year,
  .sobra_page-history
    .sobra_timeline-item:nth-child(odd)
    .sobra_timeline-content {
    /* transform: translateX(48px); */
  }
  .sobra_page-history .sobra_timeline-item:nth-child(even) .sobra_timeline-year,
  .sobra_page-history
    .sobra_timeline-item:nth-child(even)
    .sobra_timeline-content {
    transform: translateX(32px);
  }

  .sobra_page-catalogue .sobra_product-item img {
    height: 188px;
    margin: 13px auto;
  }
  .sobra_page-catalogue .sobra_product-meta {
    padding-top: 6px;
    padding-bottom: 8px;
  }
  .sobra_page-catalogue .sobra_product-item .sobra_btn {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 900px) {
  body.sobra_menu-open {
    overflow: hidden;
  }
  .sobra_job-detail,
  .sobra_contact-content {
    height: auto;
    min-height: 0;
    padding: 48px 20px;
  }
  .sobra_job-detail-inner,
  .sobra_contact-inner {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .sobra_job-back,
  .sobra_job-detail-copy,
  .sobra_contact-kicker,
  .sobra_contact-inner > h2,
  .sobra_contact-form,
  .sobra_contact-side {
    position: static;
    width: 100%;
    height: auto;
  }
  .sobra_job-back {
    min-width: 132px;
    margin-bottom: 42px;
  }
  .sobra_job-detail-copy {
    font-size: 15px;
    line-height: 1.5;
    padding-top: 15px;
  }
  .sobra_job-detail-copy h2 {
    font-size: 24px;
    line-height: 1.2;
  }
  .sobra_job-share {
    margin-top: 36px;
  }
  .sobra_contact-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    background-position: center;
  }
  .sobra_contact-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 112px;
    background: #171717;
  }
  .sobra_page-contact > .sobra_topbar,
  .sobra_page-contact > .sobra_header {
    opacity: 1;
  }
  .sobra_contact-kicker {
    margin: 0 0 7px;
  }
  .sobra_contact-inner > h2 {
    margin: 0 0 34px;
    font-size: 29px;
    line-height: 1.13;
  }
  .sobra_contact-inner > h2 br,
  .sobra_contact-form h3 br {
    display: none;
  }
  .sobra_contact-form {
    padding: 32px 20px;
  }
  .sobra_contact-form h3,
  .sobra_contact-form > input,
  .sobra_contact-form > select,
  .sobra_contact-form textarea,
  .sobra_contact-upload,
  .sobra_contact-consent,
  .sobra_contact-form .sobra_recaptcha,
  .sobra_contact-form button {
    position: static;
    width: 100%;
  }
  .sobra_contact-form h3 {
    margin: 0 0 26px;
    font-size: 21px;
    line-height: 1.18;
  }
  .sobra_contact-form > input,
  .sobra_contact-form > select {
    display: block;
    margin-bottom: 16px;
  }
  .sobra_contact-upload {
    display: block;
    margin: 3px 0 20px;
  }
  .sobra_contact-upload > span {
    width: 100%;
  }
  .sobra_contact-upload em {
    white-space: nowrap;
    font-size: 11px;
  }
  .sobra_contact-form textarea {
    display: block;
    margin-bottom: 20px;
  }
  .sobra_contact-consent {
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .sobra_contact-form .sobra_recaptcha {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 28px;
  }
  .sobra_contact-form button {
    display: block;
  }
  .sobra_contact-side {
    margin-top: 38px;
  }
  .sobra_contact-side > img {
    width: 100%;
    height: auto;
    aspect-ratio: 451/628;
    object-fit: cover;
  }
  .sobra_contact-side > div {
    width: 100%;
    min-height: 0;
    margin-top: 28px;
  }
}

/* Mobile containment for the legacy desktop-composed artboards */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .sobra_engagements-intro {
    height: auto;
    padding: 48px 20px;
  }
  .sobra_engagements-intro::before {
    display: none;
  }
  .sobra_engagements-intro .sobra_split {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .sobra_engagements-intro .sobra_split > div:first-child img {
    position: static;
    width: 100%;
    height: auto;
  }
  .sobra_split--engagement .sobra_split-text {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .sobra_split--engagement .sobra_split-text::after {
    display: none;
  }
  .sobra_engagements-policy {
    height: auto;
  }

  .sobra_figures-section {
    height: auto;
    min-height: 0;
  }
  .sobra_figures-section > .sobra_container {
    position: static;
    height: auto;
  }
  .sobra_figures-top {
    height: auto;
  }
  .sobra_figures-activities,
  .sobra_figures-sites {
    position: static;
    width: 100%;
    height: auto;
    margin: 34px 0;
  }
  .sobra_figures-activities {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }
  .sobra_figures-activities-title,
  .sobra_figures-activity-item:nth-of-type(1) {
    width: auto;
  }
  .sobra_figures-activity-item:nth-of-type(2) {
    margin-left: 0;
  }
  .sobra_figures-sites {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    padding: 0;
  }
  .sobra_figures-site:first-child img,
  .sobra_figures-site:last-child img {
    max-width: 100%;
    height: auto;
  }

  .sobra_project-section {
    height: auto;
    padding: 48px 20px;
  }
  .sobra_project-section > .sobra_container {
    position: static;
    height: auto;
    padding: 0;
  }
  .sobra_project-intro,
  .sobra_project-steps,
  .sobra_project-team {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .sobra_project-steps {
    display: block;
    margin: 34px 0 48px;
  }
  .sobra_project-team h2 {
    white-space: normal;
    font-size: 27px;
  }
  .sobra_project-team h2::before,
  .sobra_project-team h2::after {
    display: none;
  }
  .sobra_project-team-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
  }

  .sobra_news-listing,
  .sobra_news-single {
    height: auto;
    padding: 48px 20px;
  }
  .sobra_news-listing > .sobra_container,
  .sobra_news-single > .sobra_container {
    position: static;
    height: auto;
    padding: 0;
  }
  .sobra_news-filters,
  .sobra_news-grid,
  .sobra_news-pagination,
  .sobra_news-back,
  .sobra_news-single-image,
  .sobra_news-single-copy {
    position: static;
    width: 100%;
    height: auto;
  }
  .sobra_news-filters {
    flex-direction: column;
    gap: 18px;
  }
  .sobra_news-filters select,
  .sobra_news-filters label:last-child select {
    width: 100%;
  }
  .sobra_news-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 28px;
    margin-top: 38px;
  }
  .sobra_news-card {
    width: 100%;
  }
  .sobra_news-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 38px;
  }
  .sobra_news-back {
    display: inline-flex;
    width: auto;
    margin-bottom: 32px;
  }
  .sobra_news-single-image {
    display: block;
    margin-bottom: 30px;
  }
  .sobra_news-single-copy p {
    width: 100%;
    margin-left: 0;
  }

  .sobra_option-copy > p {
    width: 100%;
  }
  .sobra_recycling-inner blockquote {
    box-sizing: border-box;
  }

  .sobra_career-form {
    height: auto;
    padding: 32px 20px;
  }
  .sobra_career-form h3,
  .sobra_career-form > input,
  .sobra_career-form > select,
  .sobra_career-form textarea,
  .sobra_career-form .sobra_upload,
  .sobra_career-form .sobra_consent,
  .sobra_career-form .sobra_recaptcha,
  .sobra_career-form button {
    position: static;
    width: 100%;
  }
  .sobra_career-form h3 {
    margin: 0 0 26px;
  }
  .sobra_career-form > input,
  .sobra_career-form > select {
    display: block;
    margin-bottom: 16px;
  }
  .sobra_career-form .sobra_upload {
    display: block;
    margin: 18px 0;
  }
  .sobra_career-form .sobra_upload-field {
    width: 100%;
    margin: 0;
  }
  .sobra_career-form .sobra_upload-field {
    font-size: 11px;
    white-space: nowrap;
  }
  .sobra_career-form .sobra_upload-field b {
    flex: 0 0 87px;
  }
  .sobra_career-form textarea {
    display: block;
    margin: 20px 0;
  }
  .sobra_career-form .sobra_consent {
    align-items: flex-start;
    margin: 0 0 24px;
    line-height: 18px;
  }
  .sobra_career-form .sobra_recaptcha {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 28px;
    max-width: 302px;
  }
  .sobra_career-form button {
    display: block;
  }

  .sobra_jobs-grid {
    min-width: 0;
  }
  .sobra_job-card {
    min-width: 0;
    width: 100%;
    height: auto;
    min-height: 317px;
    padding: 29px 28px;
  }
  .sobra_job-card time,
  .sobra_job-card h2,
  .sobra_job-card p {
    width: 100%;
    margin-left: 0;
  }
  .sobra_job-card a {
    position: static;
    display: inline-block;
    margin-top: 22px;
  }
  .sobra_page-custom-model .sobra_page-hero-title {
    width: calc(100% - 40px);
    font-size: 30px;
    line-height: 1.08;
  }
}

@media (min-width: 901px) {
  .sobra_clients-grid img {
    padding: 0;
  }
  .sobra_page-catalogue .sobra_catalogue-section {
    padding-bottom: 65px;
  }
}
