/********************************************* EDITORIAL *********************************************/

body {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

.main {
  flex: 1 0 auto;
}

.title {
  font-family: 'Anton', sans-serif;
}

.paragraph {
  line-height: 1.6rem;
}

.emoji {
  font-family: apple color emoji, segoe ui emoji, noto color emoji, android emoji, emojisymbols, emojione mozilla, twemoji mozilla, segoe ui symbol;
  font-size: 1.2em;
  vertical-align: bottom;
}

.list {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  line-height: 1.6rem;
}

.address {
  border-left: 4px solid #144878;
  margin-bottom: 1.5rem;
  padding-left: 0.7rem;
  line-height: 1.5em;
  font-style: italic;
}

.link {
  color: #144878;
  border-radius: 2px;
}

.link .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1.2;
  vertical-align: middle;
  color: rgba(20, 72, 120, 0.4);
}

.link .prefix {
  margin-right: 0.2rem;
}

.link .suffix {
  margin-left: 0.2rem;
}

.link:hover,
.link:focus-visible {
  text-decoration: underline;
}

.link:hover .material-symbols-outlined,
.link:focus-visible .material-symbols-outlined {
  color: #000;
}

/********************************************* ACCESSIBILITY *********************************************/

@keyframes focus-in {
  from {
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0), 0 0 10px 10px rgba(20, 72, 120, 0);
  }
  to {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 0 0 4px rgba(20, 72, 120, 1);
  }
}

@keyframes inverted-focus-in {
  from {
    box-shadow: 0 0 10px 10px rgba(20, 72, 120, 0), 0 0 10px 10px rgba(255, 255, 255, 0);
  }
  to {
    box-shadow: 0 0 0 2px rgba(20, 72, 120, 1), 0 0 0 4px rgba(255, 255, 255, 1);
  }
}

*:focus-visible {
  animation: focus-in 0.25s ease-out forwards;
}

.dark-stripe *:focus-visible {
  animation: inverted-focus-in 0.25s ease-out forwards;
}

iframe:focus-visible {
  animation: none;
}


/********************************************* COMPONENTS *********************************************/

/******** CONTAINER ********/
.container {
  max-width: 1190px;
  padding: 0 64px;
  margin: 0 auto;
}

.container.large {
  max-width: 1600px;
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

/******** SECTION ********/
.section {
  margin-bottom: 3.5rem;
  max-width: 700px;
}

.section > :last-child {
  margin-bottom: 0;
}

/******** ILLUSTRATION & CONTENT ********/
.illustration-content {
  display: grid;
  grid-gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.illustration-content .content > :last-child {
  margin-bottom: 0;
}

.illustration-content .illustration img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.illustration-left {
  grid-template-columns: 4fr 5fr;
}

.illustration-right {
  grid-template-columns: 5fr 4fr;
}

.illustration-right .illustration {
  grid-column: 2;
  grid-row: 1;
}

.illustration-right .content {
  grid-column: 1;
  grid-row: 1;
}

.illustration-top {
  display: block;
}

.illustration-top .illustration {
  margin-bottom: 1.5rem;
}

.illustration-top .illustration img {
  max-height: 300px;
  object-fit: cover;
}

@media (max-width: 820px) {
  .illustration-content {
    display: block;
  }

  .illustration-content .illustration {
    margin-bottom: 1.5rem;
  }

  .illustration-content .illustration img {
    max-height: 300px;
    object-fit: cover;
  }
}

/******** DARK STRIPE ********/
.dark-stripe {
  padding: 3.5rem 0;
  background-color: #272727;
  color: #fff;
  margin-bottom: 3.5rem;
}

.dark-stripe > :last-child {
  margin-bottom: 0;
}

.dark-stripe .container > :last-child {
  margin-bottom: 0;
}

/******** CALL TO ACTION ********/
.call-to-action {
  text-align: center;
  margin-bottom: 3.5rem;
}

.call-to-action .button-link {
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  padding: 0.7rem 0.9rem;
  font-size: 1.3rem;
  font-family: 'Anton', sans-serif;
  color: #144878;
  border: 3px solid;
  border-radius: 5px;
  transition: background-color 0.15s ease-out;
}

.call-to-action .button-link .prefix {
  margin-right: 0.6rem;
}

.call-to-action .button-link .suffix {
  margin-left: 0.6rem;
}

.call-to-action .button-link:hover,
.call-to-action .button-link:focus-visible {
  background-color: rgba(20, 72, 120, 0.15);
}

/******** DARK STRIPE CALL TO ACTION ********/
.dark-stripe .call-to-action .button-link {
  color: #fff;
}

.dark-stripe .call-to-action .button-link:hover,
.dark-stripe .call-to-action .button-link:focus-visible {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 1rem rgb(0, 0, 0, 0.7);
}

/******** TRIPLE ILLUSTRATIONS ********/
.triple-illustrations {
  display: grid;
  grid-gap: 1rem;
  margin-bottom: 3.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.triple-illustrations .illustration img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

@media (max-width: 1050px) {
  .triple-illustrations {
    grid-template-columns: repeat(4, 1fr);
  }

  .triple-illustrations .illustration {
    grid-column: span 2;
  }

  .triple-illustrations .illustration:nth-child(3) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 700px) {
  .triple-illustrations {
    grid-template-columns: 1fr;
  }

  .triple-illustrations .illustration,
  .triple-illustrations .illustration:nth-child(3) {
    grid-column: unset;
  }

  .triple-illustrations .illustration img {
    max-width: 500px;
    margin: 0 auto;
  }
}

/******** 2 COLUMNS GRID ********/
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.grid-2 > * {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/******** QUOTE ********/
.quote {
  line-height: 1.6rem;
}

.quote .title {
  margin-bottom: 1rem;
  color: #144878;
}

.quote .blockquote {
  border-left: 4px solid #144878;
  padding-left: 0.7rem;
}

.quote .source {
  margin-top: 0.5rem;
  text-align: right;
  font-style: italic;
  color: #888;
}

/******** PROJECTS CATEGORIES ********/
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 3rem 0;
  text-align: center;
}

.categories .category .select-category-button {
  display: block;
  background-color: transparent;
  border: 2px solid #144878;
  color: #144878;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  transition: background-color 0.15s ease-out, color 0.15s ease-out;
}

.categories .category .select-category-button .material-symbols-outlined {
  vertical-align: middle;
  margin-top: -4px;
}

@media (max-width: 620px) {
  .categories .category .select-category-button .material-symbols-outlined {
    display: none;
  }
}

.categories .category .select-category-button:hover,
.categories .category .select-category-button:focus-visible {
  background-color: rgba(20, 72, 120, 0.15);
}

.categories .category.selected .select-category-button {
  background-color: #144878;
  color: #fff;
}

/******** PROJECT GALLERY ********/
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
  margin-bottom: 3.5rem;
}

.projects .project {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.projects .project .open-project-button {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 0 0.8rem #000;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.projects .project .open-project-button .content {
  pointer-events: none;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
  padding: 0.8rem;
  text-align: center;
}

.projects .project .open-project-button .icon {
  margin-bottom: 1rem;
}

.projects .project .open-project-button .material-symbols-outlined {
  font-size: 1.8rem;
  vertical-align: middle;
}

.projects .project .open-project-button .hashtags {
  overflow-wrap: break-word;
}

.projects .project .open-project-button:hover,
.projects .project .open-project-button:focus-visible {
  opacity: 1;
}

.projects .project .photo-wrapper {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e3df;
}

.projects .project .photo-wrapper .photo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects .project .open-project-button:hover + .photo-wrapper .photo,
.projects .project .open-project-button:focus-visible + .photo-wrapper .photo {
  filter: blur(1px);
  opacity: 0.7;
}

@media (max-width: 720px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

/******** MODAL FLOATING BUTTON ********/
.modal-floating-button {
  position: fixed;
  z-index: 10;
  padding: 1rem;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 2px 5px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.15s ease-out, color 0.15s ease-out, transform 0.15s ease-out;
  background-color: #111;
  color: #eee;
}

.modal-floating-button .material-symbols-outlined {
  font-size: 2rem;
  vertical-align: middle;
}

.modal-floating-button[disabled] {
  opacity: 0.2;
  cursor: not-allowed;
}

.modal-floating-button:hover {
  background-color: #000;
  color: #fff;
}

.close-modal-button {
  top: 1rem;
  right: 1rem;
}

.close-modal-button:hover {
  transform: scale(1.1);
}

.previous-project-button,
.next-project-button {
  top: 50%;
  transform: translateY(-50%);
}

.previous-project-button:hover,
.next-project-button:hover {
  transform: translateY(-50%) scale(1.1);
}

.previous-project-button {
  left: 1rem;
}

.next-project-button {
  right: 1rem;
}

/******** MODAL ********/
.modal-backdrop {
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(3px);
  opacity: 1;
  visibility: visble;
  pointer-events: all;
  transition: visibility 0.15s step-start, pointer-events 0.15s step-start, opacity 0.15s ease-out;
}

.modal-backdrop[hidden] {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.15s step-end, pointer-events 0.15s step-start, opacity 0.15s ease-out;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 2px 5px 5px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.25s ease-out;
}

.modal-backdrop[hidden] .modal-content {
  transform: scale(0.88);
}

.modal-content .photo-wrapper {
  position: relative;
  display: grid;
  place-items: center;
  background-color: #555;
  max-height: min(83vh, 960px);
  overflow: hidden;
}

.modal-content .photo-wrapper .background {
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
  background: no-repeat center center / cover;
  filter: blur(6px);
  opacity: 0.5;
}

.modal-content .photo-wrapper .photo {
  position: relative;
  display: block;
  max-width: min(calc(100vw - 420px - 8rem), 1040px);
  max-height: min(83vh, 960px);
  object-fit: contain;
  min-width: 280px;
  min-height: 100px;
  text-align: center;
  color: #fff;
  transition: opacity 0.25s ease-out;
}

.modal-content .photo-wrapper .photo.loading {
  opacity: 0;
}

.modal-content .metadata {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background-color: #fcfbfa;
  max-height: min(83vh, 960px);
  overflow-y: auto;
}

.modal-content .metadata .logo {
  flex-shrink: 0;
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto;
}

.modal-content .metadata .caption {
  flex-shrink: 1;
  width: 100%;
  margin: 0;
  overflow-wrap: break-word;
  line-height: 1.6rem;
}

.modal-content .metadata .permalink {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: auto;
  padding: 0.4rem;
  font-family: 'Anton', sans-serif;
  color: #144878;
  border: 2px solid;
  border-radius: 5px;
  transition: background-color 0.15s ease-out;
}

.modal-content .metadata .permalink .prefix {
  margin-right: 0.6rem;
}

.modal-content .metadata .permalink .suffix {
  margin-left: 0.6rem;
}

.modal-content .metadata .permalink:hover,
.modal-content .metadata .permalink:focus-visible {
  background-color: rgba(20, 72, 120, 0.15);
}

@media (max-width: 1000px) {
  .modal-content {
    grid-template-columns: 1fr 300px;
  }
  .modal-content .photo-wrapper .photo {
    max-width: calc(100vw - 370px - 8rem);
  }
}

@media (max-width: 840px) {
  .modal-backdrop {
    justify-content: flex-end;
  }

  .modal {
    max-height: 83%;
    width: 100%;
    overflow-y: auto;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3), 0 -2px 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 12px 12px 0 0;
    transform: translateY(0);
    transition: transform 0.25s ease-out;
  }

  .modal-backdrop[hidden] .modal {
    transform: translateY(80%);
  }

  .modal-content {
    display: block;
    transform: none;
    transition: none;
    border-radius: 0;
  }

  .modal-backdrop[hidden] .modal-content {
    transform: none;
  }

  .modal-content .photo-wrapper {
    max-height: none;
  }

  .modal-content .photo-wrapper .photo {
    max-width: 100%;
    max-height: calc(83vh - 80px);
  }

  .modal-content .metadata {
    max-height: none;
  }

  .modal-navigation {
    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #fcfbfa;
    box-shadow: 0 -2px 5px 5px rgba(0, 0, 0, 0.08);
  }

  .modal-floating-button {
    width: 100%;
    position: initial;
    top: inherit;
    background-color: transparent;
    color: #000;
    transform: none;
    box-shadow: none;
    transition: none;
    border-radius: 0;
  }

  .modal-floating-button:hover {
    background-color: transparent;
    color: #000;
    transform: none;
  }
}

/******** NO SCROLL ********/
html.no-scroll {
  position: fixed;
  top: calc(-1px * var(--scroll-top));
  overflow-y: scroll;
  width: 100%;
}

/******** GOOGLE MAPS ********/
.googlemaps {
  display: block;
  width: 100%;
  height: 780px;
  max-height: 86vh;
  border: solid #272727;
  border-width: 1.5rem 0;
  background-color: #e5e3df;
}

@media (max-height: 480px) {
  .googlemaps {
    max-height: 83vh;
  }
}


/********************************************* HEADER *********************************************/

.header {
  z-index: 10;
  position: sticky;
  top: 25px;
  display: flex;
  align-items: center;
  margin: 25px auto 75px;
  padding: 0.4rem;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 64px;
  box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.5);
  transition: opacity 0.25s ease-out;
  opacity: 1;
  visibility: visible;
}
html.no-scroll .header {
  opacity: 0;
  visibility: hidden;
}

.header .header-logo {
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  border-radius: 64px;
  width: 190px;
  opacity: 1;
  pointer-events: initial;
  transition: width 0.25s ease-out, opacity 0.25s ease-out, pointer-events 0.25s step-start;
}

.header .header-logo[hidden] {
  display: block !important;
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.header .header-logo .logo {
  display: block;
  width: auto;
  height: 26px;
  margin: 1px 0.9rem 0;
}

.header .menu .menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .menu .menu-link {
  position: relative;
  display: block;
  padding: 0.6rem 2rem;
  border-radius: 64px;
}

.header .menu .active .menu-link {
  background-color: #555;
}

.header .menu .menu-link:before {
  z-index: -1;
  position: absolute;
  content: '';
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #3e3e3e;
  border-radius: 64px;
  transform: scale(0.3);
  opacity: 0;
  transition: opacity 0.13s ease-out, transform 0.13s ease-out;
}

.header .menu .menu-link:hover:before {
  opacity: 1;
  transform: scale(0.9);
}

.banner {
  padding: 60px;
}

.banner .logo-link {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
  padding: 10px 20px;
  border-radius: 9px;
}

.banner .logo-link .logo {
  display: block;
  width: 100%;
  height: auto;
}

.banner .logo.desktop {
  display: block;
}

.banner .logo.mobile {
  display: none;
}


.mobile-header {
  display: none;
  z-index: 10;
  position: sticky;
  top: 25px;
  margin: 25px auto 80px;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem;
  gap: 1rem;
  border-radius: 64px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.5);
  transition: opacity 0.25s ease-out;
}

html.no-scroll .mobile-header {
  opacity: 0;
  visibility: hidden;
}

.mobile-header .header-logo {
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  border-radius: 64px;
  width: 95px;
  opacity: 1;
  pointer-events: initial;
  transition: width 0.25s ease-out, opacity 0.25s ease-out, pointer-events 0.25s step-start;
  position: relative;
}

.mobile-header .header-logo.expand {
  width: 175px;
}

.mobile-header .header-logo .logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: auto;
  height: 26px;
  margin: 1px 0.9rem 0;
  transition: opacity 0.25s ease-out;
}

.mobile-header .header-logo .logo:nth-child(1) {
  opacity: 1;
}
.mobile-header .header-logo .logo:nth-child(2) {
  opacity: 0;
}

.mobile-header .header-logo.expand .logo:nth-child(1) {
  opacity: 0;
}
.mobile-header .header-logo.expand .logo:nth-child(2) {
  opacity: 1;
}

.mobile-header .open-mobile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  padding: 0.5rem 1rem;
  border-radius: 64px;
}

@media (max-width: 870px) {
  .banner {
    padding: 20px;
  }

  .banner .logo.desktop {
    display: none;
  }

  .banner .logo.mobile {
    display: block;
  }

  .header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }
}

.mobile-menu-backdrop {
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  align-content: flex-start;
  padding: 10px;
  background-color: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(3px);
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  transition: visibility 0.15s step-end, pointer-events 0.15s step-start, all 0.15s ease-out;
}

.mobile-menu-backdrop[hidden] {
  display: grid !important;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.mobile-menu {
  min-height: 0;
  margin-top: 15vh;
}

@media (max-height: 520px) {
  .mobile-menu-backdrop {
    align-content: center;
  }
  .mobile-menu {
    margin-top: 0;
  }
}

.mobile-menu .menu-items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  max-width: 290px;
  max-height: 100%;
  overflow-y: auto;
  padding: 20px;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 2px 5px 5px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: transform 0.25s ease-out;
  transform: translateY(0);
}

.mobile-menu-backdrop[hidden] .mobile-menu .menu-items {
  transform: translateY(-60%);
}

.mobile-menu .menu-items .menu-item .logo {
  display: block;
  max-width: 100%;
  height: auto;
  padding: 1rem;
  margin: auto;
}

.mobile-menu .menu-items .menu-item .close-mobile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: transparent;
  text-align: center;
  padding: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.mobile-menu .menu-items .menu-item .close-mobile-menu .material-symbols-outlined {
  font-size: 32px;
}

.mobile-menu .menu-items .menu-item:has(.close-mobile-menu) {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .menu-items .menu-item .menu-link {
  display: block;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
}

.mobile-menu .menu-items .menu-item.active .menu-link {
  background-color: #eee;
  border-radius: 5px;
}


/********************************************* FOOTER *********************************************/

.footer {
  padding: 4rem 0;
  border-top: 1px solid #eee;
  background-color: #f5f5f5;
}

.footer .container {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr max-content;
}

.footer .logo-link {
  display: block;
  width: 100%;
  max-width: 250px;
  margin-top: -30px;
  border-radius: 9px;
}

.footer .logo-link .logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer .menu {
  font-size: 0.8rem;
}

.footer .menu .menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .menu .menu-link {
  position: relative;
  display: block;
  padding: 0.9rem;
  font-weight: 300;
  font-size: 1rem;
  border-radius: 2px;
}

.footer .menu .menu-link::after {
  position: absolute;
  content: '';
  display: block;
  width: 1.2rem;
  height: 4px;
  border-radius: 4px;
  background-color: #144878;
  left: 50%;
  bottom: 0.3rem;
  transform: translateX(-50%);
  opacity: 0;
  transition: width 0.17s ease-out, height 0.17s ease-out, opacity 0.17s ease-out, background-color 0.17s ease-out;
}

.footer .menu .active .menu-link::after {
  background-color: #bbb;
  opacity: 1;
  transition: width 0.13s ease-out, height 0.13s ease-out, opacity 0.13s ease-out, background-color 0.13s ease-out;
}

.footer .menu .menu-link:hover::after,
.footer .menu .menu-link:focus-visible::after {
  width: 2.2rem;
  background-color: #144878;
  opacity: 1;
}

.footer .copyright {
  color: #ccc;
}

@media (max-width: 920px) {
  .footer .container {
    grid-template-columns: 300px 1fr;
    justify-items: flex-start;
  }

  .footer .logo-link {
    width: calc(100% - 100px);
    grid-row: 1 / span 2;
    grid-column: 2;
    justify-self: center;
  }

  .footer .menu {
    padding-left: 50px;
  }

  .footer .menu .menu-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .menu .menu-link::after {
    width: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer .menu .menu-link:hover::after,
  .footer .menu .menu-link:focus-visible::after {
    width: 4px;
    height: 1rem;
  }

  .footer .copyright {
    padding: 0.9rem;
    padding-left: calc(50px + 0.9rem);
  }
}

@media (max-width: 670px) {
  .footer .container {
    grid-template-columns: max-content 1fr;
  }

  .footer .logo-link {
    width: calc(100% - 60px);
  }

  .footer .menu {
    padding-left: 30px;
  }

  .footer .copyright {
    padding-left: calc(30px + 0.9rem);
  }
}

@media (max-width: 480px) {
  .footer .container {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer .logo-link {
    width: 100%;
    grid-row: 3;
    grid-column: 1;
    margin-top: 1.5rem;
  }

  .footer .menu,
  .footer .copyright {
    width: 100%;
    max-width: calc(250px + 1.8rem);
  }

  .footer .menu {
    padding-left: 0;
  }

  .footer .copyright {
    padding-left: 0.9rem;
  }
}
