@charset "UTF-8";
@font-face {
  font-family: "MyFont";
  src: url("../font/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
}
* {
  padding: 0;
  margin: 0;
  font-family: "MyFont", sans-serif;
}

body {
  background-color: black;
  color: white;
}
body.bw *, body.bw #cookieContainer .cookieBtnContainer #cookieDet, body.bw #cookieContainer .cookieBtnContainer #cookieAcc, body.bw #cookieContainer, body.bw .accesibility .accessBtns, body.bw nav, body.bw nav .btnContainer, body.bw nav .btnContainer .subMenu, body.bw .navBtn .nav-btn, body.bw .navBtn.active, body.bw .lpDetails, body.bw .recycleContainer, body.bw .recycleContainer #footer, body.bw .recycleContainer #recycle .firstPageContainer .firstPageCard, body.bw .recycleContainer #recycle #yearSelect, body.bw .recycleContainer #recycle #yearSelect option, body.bw .mobileNav {
  background-color: black;
  color: white;
}
body.noTransition *, body.noTransition .accesibility .accessBtns, body.noTransition nav, body.noTransition nav .btnContainer, body.noTransition nav .btnContainer .subMenu, body.noTransition .navBtn .nav-btn, body.noTransition .navBtn.active, body.noTransition .lpDetails, body.noTransition .recycleContainer, body.noTransition .recycleContainer #footer, body.noTransition .recycleContainer #recycle .firstPageContainer .firstPageCard, body.noTransition .recycleContainer #recycle #yearSelect, body.noTransition .recycleContainer #recycle #yearSelect option, body.noTransition .mobileNav {
  transition: none !important;
  animation: none !important;
}

@keyframes fromTop {
  from {
    transform: translateY(-1rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fromBottom {
  from {
    transform: translateY(1rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fromLeft {
  from {
    transform: translateX(-1rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromRight {
  from {
    transform: translateX(1rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
nav {
  background-color: rgb(28, 97, 138);
  display: flex;
  width: 100vw;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 0 10vw;
  position: fixed;
  top: 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: fromTop 0.3s ease-in-out;
  z-index: 999;
  transition: 0.3s;
}
nav.atTop {
  top: 0;
}
nav #navLogo {
  position: absolute;
  top: -2rem;
  left: 10vw;
  width: auto;
  height: calc(100% + 2rem);
  animation: fromTop 0.3s ease-in-out;
  transition: 0.3s;
}
nav #navLogo.atTop {
  top: 0;
  height: 100%;
  animation: fromTop 0.3s ease-in-out;
}

.btnContainer {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 20vw;
  background-color: rgb(24, 84, 119);
  width: 60vw;
  min-height: 50vh;
  transition: 0.3s;
  box-sizing: border-box;
  padding: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
}
.btnContainer .deco {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-lr;
  text-orientation: upright;
  padding: 0 1.4rem;
  text-transform: uppercase;
  height: calc(100% - 2rem);
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  box-sizing: border-box;
  margin: 1rem 0;
}
.btnContainer .nav-btn {
  text-transform: none;
  padding: 0.5rem;
  margin-left: 3rem;
}
.btnContainer .subMenu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 999;
  background-color: rgb(28, 97, 138);
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  padding: 1rem;
  overflow: scroll;
}
.btnContainer .subMenu .nav-btn {
  margin-left: 0;
}
.btnContainer .subMenu.active {
  display: flex;
  animation: fromLeft 0.3s ease-in-out;
}

.navBtn {
  z-index: 999;
  padding: 1rem 0;
}
.navBtn .nav-btn {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.navBtn .nav-btn:hover {
  background-color: rgb(28, 97, 138);
}
.navBtn .nav-btn.active {
  background-color: rgb(28, 97, 138);
}
.navBtn .nav-btn.active.dd:after {
  transform: rotate(-90deg);
}
.navBtn .nav-btn.dd:after {
  content: "▼";
  margin-left: 0.5em;
  font-size: 0.8rem;
  display: inline-block;
  transition: 0.3s;
  height: 100%;
  vertical-align: middle;
}
.navBtn.active {
  background-color: rgb(24, 84, 119);
}
.navBtn.active .btnContainer {
  z-index: 998;
  display: flex;
  opacity: 1;
  animation: fromTop 0.3s ease-in-out;
}
.navBtn.active .btnContainer .nav-btn:hover {
  background-color: rgb(24, 84, 119);
}

#slideShow {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
#slideShow .slideShowImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: fromRight 0.3s ease-in-out;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.9s ease-in-out;
  z-index: 1;
}
#slideShow .slideShowImg.fade {
  opacity: 0;
}
#slideShow .slideShowImg.fadeOut {
  opacity: 0;
  z-index: 0;
}
#slideShow .slideShowText {
  position: absolute;
  top: 37vh;
  left: 20vw;
  color: white;
  animation: fromBottom 0.3s ease-in-out;
  z-index: 999;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-shadow: 1px 1px 3px rgb(28, 97, 138);
  font-weight: bold;
}
#slideShow .slideShowText .sm {
  font-size: 2rem;
}
#slideShow .slideShowText .big {
  font-size: 3rem;
}

.warning {
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background-color: white;
  color: rgb(28, 97, 138);
  animation: fromTop 0.3s ease-in-out;
  box-sizing: border-box;
  padding: 2rem;
}
.warning button {
  background-color: rgb(28, 97, 138);
  color: white;
  padding: 0.5rem 2rem;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
}
.warning button:hover {
  background-color: rgb(24, 84, 119);
}
.warning.bw {
  background-color: black;
  color: white;
}
.warning.bw button {
  border: 1px solid white;
  background-color: black;
  color: white;
}
.warning p {
  margin-bottom: 1rem;
}

.mobileNav {
  display: none;
}

.lpDetails {
  z-index: 998;
  padding: 0.5rem 10vw;
  background-color: rgb(28, 97, 138);
  position: sticky;
  top: -2rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.lpDetails p {
  padding: 0 1rem;
}
.lpDetails p:nth-child(2) {
  padding: 0 3rem;
}

.recycleContainer {
  z-index: 998;
  position: absolute;
  top: 75vh;
  left: 20vw;
  width: 60vw;
  min-height: 50vh;
  background-color: rgb(28, 97, 138);
}
.recycleContainer #recycle {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 1rem;
  animation: fromBottom 0.3s ease-in-out;
}
.recycleContainer #recycle .recycleTitle {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  animation: fromBottom 0.3s ease-in-out;
}
.recycleContainer #recycle .yearSelect {
  margin-bottom: 1rem;
  padding: 0.5rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(24, 84, 119);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.recycleContainer #recycle .yearSelect option {
  width: 100%;
  background-color: rgb(28, 97, 138);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem;
  font-size: 1.2rem;
}
.recycleContainer #recycle a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 1rem 0;
  animation: fromBottom 0.3s ease-in-out;
}
.recycleContainer #recycle a:before {
  content: "⎙";
  margin-right: 0.5rem;
  animation: fromLeft 0.3s ease-in-out;
}
.recycleContainer #recycle a:hover {
  color: white;
  text-decoration: underline;
}
.recycleContainer #recycle .firstPageContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.recycleContainer #recycle .firstPageContainer .firstPageCard {
  min-width: 200px;
  width: 20%;
  box-sizing: border-box;
  padding: 2rem;
  background-color: rgb(28, 97, 138);
  transition: 0.3s;
  animation: fromBottom 0.3s ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
}
.recycleContainer #recycle .firstPageContainer .firstPageCard:hover {
  border: 2px solid rgba(255, 255, 255, 0.7);
  filter: drop-shadow(0 0 10px rgb(24, 84, 119));
}
.recycleContainer #recycle .firstPageContainer .firstPageCard:hover .firstPageImg {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(100%);
}
.recycleContainer #recycle .firstPageContainer .firstPageCard .firstPageImg {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
  filter: grayscale(100%) brightness(500%);
}
.recycleContainer #recycle .textOnly {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.recycleContainer #recycle .textOnly p {
  padding: 1rem 0;
  text-indent: 2rem;
}
.recycleContainer #recycle .textOnly p.title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1rem 0;
}
.recycleContainer #recycle .textOnly table {
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  border-collapse: collapse;
}
.recycleContainer #recycle .textOnly table th {
  font-size: 1.2rem;
}
.recycleContainer #recycle .textOnly table th, .recycleContainer #recycle .textOnly table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.recycleContainer #recycle .textOnly table tbody tr {
  transition: 0.3s;
  background-color: rgb(28, 97, 138);
}
.recycleContainer #recycle .textOnly table tbody tr:hover {
  background-color: rgb(24, 84, 119);
}
.recycleContainer #recycle .textOnly ul {
  list-style: none;
}
.recycleContainer #recycle .textOnly ul li {
  padding: 1rem 3rem;
}
.recycleContainer #recycle .textOnly .project .project-title {
  cursor: pointer;
}
.recycleContainer #recycle .textOnly .project .project-banner, .recycleContainer #recycle .textOnly .project .project-footer {
  height: 100px;
  display: flex;
  align-items: center;
}
.recycleContainer #recycle .textOnly .project .project-banner img, .recycleContainer #recycle .textOnly .project .project-footer img {
  max-height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.recycleContainer #recycle .textOnly .project .project-banner {
  justify-content: space-between;
}
.recycleContainer #recycle .textOnly .project .project-footer {
  justify-content: flex-end;
}
.recycleContainer #recycle .textOnly .project .project-hidden {
  padding: 3rem 5rem;
  background-color: white;
  color: black;
  display: none;
}
.recycleContainer #recycle .textOnly .project .project-hidden.active {
  display: block;
  animation: fromBottom 0.3s ease-in-out;
}
.recycleContainer #recycle .textOnly .project .project-hidden .b {
  font-weight: bold;
}
.recycleContainer #footer {
  position: absolute;
  top: 100%;
  left: -20vw;
  width: 100vw;
  background-color: rgb(28, 97, 138);
  box-sizing: border-box;
  padding: 1rem;
}

.accesibility {
  position: fixed;
  top: 7rem;
  right: 1rem;
  z-index: 1000;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
}
.accesibility.atTop {
  top: 5rem;
}
.accesibility .accessBtns {
  position: absolute;
  top: 0.5rem;
  right: 100%;
  font-size: 1rem;
  white-space: nowrap;
  display: none;
  background-color: rgb(28, 97, 138);
}
.accesibility .accessBtns p, .accesibility .accessBtns .contrast-switch {
  padding: 0.5rem;
  margin: 1rem;
}
.accesibility .accessBtns.active {
  display: flex;
  flex-direction: column;
  animation: fromRight 0.3s ease-in-out;
}
.accesibility .accessBtns .contrast-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.accesibility .accessBtns .contrast-switch input[type=checkbox] {
  display: none; /* Hide the default checkbox */
}
.accesibility .accessBtns .contrast-switch input[type=checkbox]:checked + .slider {
  background-color: #4caf50; /* Green when active */
}
.accesibility .accessBtns .contrast-switch input[type=checkbox]:checked + .slider:before {
  transform: translateX(20px); /* Move the circle to the right */
}
.accesibility .accessBtns .contrast-switch input[type=checkbox] :checked ~ .contrast-switch {
  background-color: black;
  color: white;
}
.accesibility .accessBtns .contrast-switch .slider {
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 50px;
  position: relative;
  transition: background-color 0.3s ease;
  margin-right: 10px;
}
.accesibility .accessBtns .contrast-switch .slider:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  left: 2px;
  top: 2px;
}

#cookieContainer {
  background-color: white;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  height: auto;
  width: calc(20vw - 2rem);
  z-index: 999;
  color: rgb(28, 97, 138);
  box-sizing: border-box;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
#cookieContainer p {
  margin: 0.5rem 0;
}
#cookieContainer .cookieBtnContainer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
#cookieContainer .cookieBtnContainer #cookieDet, #cookieContainer .cookieBtnContainer #cookieAcc {
  width: calc(50% - 0.5rem);
  background-color: rgb(28, 97, 138);
  color: white;
  padding: 0.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  border: 0;
}
#cookieContainer .cookieBtnContainer #cookieDet:hover, #cookieContainer .cookieBtnContainer #cookieAcc:hover {
  background-color: rgb(24, 84, 119);
}

/* Styles for screens narrower than 1920px (sub-FHD) */
@media (max-width: 1800px) {
  #slideShow .slideShowText {
    top: 37vh;
    left: 10vw;
  }
  #slideShow .slideShowText .sm {
    font-size: 2rem;
  }
  #slideShow .slideShowText .big {
    font-size: 3rem;
  }
  .recycleContainer {
    left: 10vw;
    width: 80vw;
  }
  .recycleContainer #footer {
    left: -10vw;
  }
  .lpDetails {
    padding: 0.5rem 5vw;
  }
  .lpDetails p:nth-child(2) {
    padding: 0 2rem;
  }
  nav {
    padding: 0 5vw;
  }
  nav #navLogo {
    left: 5vw;
    width: auto;
    height: calc(100% + 2rem);
    animation: fromTop 0.3s ease-in-out;
  }
  .navBtn {
    z-index: 999;
    padding: 1rem 0;
  }
  .navBtn .nav-btn {
    padding: 0.5rem 0.5rem;
  }
  #cookieContainer {
    width: calc(30vw - 2rem);
  }
}
/* Styles for screens narrower than 824px (mobile) */
@media only screen and (max-width: 824px) {
  .accesibility {
    top: 5rem;
  }
  .recycleContainer {
    left: 0;
    width: 100vw;
    top: 50vh;
  }
  .recycleContainer #footer {
    left: 0;
  }
  .recycleContainer #recycle .firstPageContainer .firstPageCard {
    width: 50%;
    min-width: 0;
    margin-bottom: 1rem;
  }
  .recycleContainer #recycle .firstPageContainer .firstPageCard:nth-child(2n) {
    margin-bottom: 0;
  }
  #slideShow {
    height: 50vh;
  }
  #slideShow .slideShowText {
    top: calc(25vh - 1.5rem);
    left: 10vw;
  }
  #slideShow .slideShowText .sm {
    font-size: 1.5rem;
  }
  #slideShow .slideShowText .big {
    font-size: 2rem;
  }
  .lpDetails {
    display: none;
  }
  .mobileNav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(28, 97, 138);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    z-index: 1000;
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    animation: fromTop 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
  .mobileNav #mobileNavLogo {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    animation: fromLeft 0.3s ease-in-out;
  }
  .mobileNav #mobileTrigger {
    display: flex;
    flex-direction: column;
    height: 40px;
    width: 45px;
    position: relative;
  }
  .mobileNav #mobileTrigger .line {
    height: 3px;
    background-color: white;
    position: absolute;
    right: 0;
    width: 100%;
    transition: 0.3s;
  }
  .mobileNav #mobileTrigger .line.one {
    top: calc(50% - 8px);
  }
  .mobileNav #mobileTrigger .line.two {
    top: 50%;
  }
  .mobileNav #mobileTrigger .line.three {
    top: calc(50% + 8px);
  }
  .mobileNav #mobileTrigger.active .line {
    width: 75%;
  }
  .mobileNav #mobileTrigger.active .line.one {
    top: 50%;
    transform: rotate(45deg);
  }
  .mobileNav #mobileTrigger.active .line.two {
    opacity: 0;
  }
  .mobileNav #mobileTrigger.active .line.three {
    top: 50%;
    transform: rotate(-45deg);
  }
  nav {
    position: fixed;
    top: calc(40px + 1rem);
    left: -100vw;
    flex-direction: column;
    z-index: 1005;
    transition: 0.3s;
    padding: 0 0;
    opacity: 1;
    height: auto;
    justify-content: flex-start;
    max-height: 80vh;
  }
  nav #navLogo {
    display: none;
  }
  nav.active {
    left: 0;
    border-top: 1px solid white;
  }
  nav .navBtn {
    position: relative;
    padding: 0.5rem 0;
    overflow: auto;
    margin: 0 0;
  }
  nav .navBtn .nav-btn.main-nav-btn {
    font-size: 1.1rem;
    justify-content: flex-start;
  }
  nav .navBtn.active {
    padding: 0 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: auto;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  nav .navBtn.active .nav-btn {
    border-left: 0;
    margin: 0 0;
    padding: 0 0;
  }
  nav .navBtn.active .nav-btn.main-nav-btn {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgb(24, 84, 119);
    margin: 0 0;
    padding: 1rem 1rem;
    height: 100%;
  }
  nav .navBtn.active .btnContainer {
    position: relative;
    margin: 0 0;
    padding: 0 0;
    flex-direction: column;
    left: 0;
    width: 100%;
    min-height: 0;
    box-sizing: border-box;
    background-color: rgb(24, 84, 119);
    animation: fromLeft 0.3s ease-in-out;
    height: auto;
  }
  nav .navBtn.active .btnContainer .nav-btn {
    box-sizing: border-box;
    padding: 1rem;
    font-size: 1rem;
  }
  nav .navBtn.active .btnContainer .subMenu {
    position: relative;
    margin: 0 0;
    padding: 0 0;
    width: 100%;
    left: 0;
    padding-left: 1rem;
    box-sizing: border-box;
    overflow: visible;
  }
  #cookieContainer {
    width: calc(100vw - 2rem);
  }
}/*# sourceMappingURL=style.css.map */