.footer {
  margin-top: 8rem;
  padding-bottom: 4rem;
}
.footer_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer_left {
  display: flex;
  gap: 10rem;
}
.footer_menu_title {
  font-size: 1.4rem;
}
.footer_list {
  margin-top: 4rem;
}
.footer_list_item + .footer_list_item {
  margin-top: 2rem;
}
.footer_list_item_link {
  font-family: 'ppneuemontreal';
	font-weight: 500;
  font-size: 2.2rem;
  color: #212121;
}
.footer_list_item_link_external {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.footer_list_item_link_external:after {
  content: "";
  margin-top: .6rem;
  width: .8rem;
  height: .8rem;
  background-color: #212121;
  mask: url(../img/arrow-right2.svg) no-repeat center;
  mask-size: contain;
}
.footer_list_item_link_external.active:after {
  animation-name: transformLeftRight2;
	animation-fill-mode: forwards;
	animation-duration: .3s;
	transition-timing-function: ease-out;
}
.footer_language {
  display: flex;
  align-items: center;
}
.footer_language_icon {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1.5rem;
}
.footer_language_icon::before {
  content: "";
  mask: url(../img/earth.svg) no-repeat center;
  mask-size: contain;
  width: 100%;
  height: 100%;
  background-color: #292F31;
  display: block;
}
.footer_language_text {
  font-size: 2.2rem;
  color: rgb(41 47 49 / .5);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1rem;
}
.footer_language_text:after {
  content: "";
  width: .1rem;
  height: 1.7rem;
  background-color: #000;
}
.footer_language_link {
  font-size: 2.2rem;
  color: #292F31;
}
.footer_bottom {
  margin-top: 13rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer_logo {
/*  width: 68rem;*/
	width: 25rem;
  position: relative;
  z-index: -1;
}
.footer_logo_cover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  clip-path: inset(0% 0% 0% 0%);
}
.copyright_text {
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .footer {
    margin-top: 6rem;
  }
  .footer_box {
    flex-direction: column;
    gap: 13rem;
  }
  .footer_left {
    flex-direction: column;
    gap: 4rem;
  }
  .footer_menu_title {
    font-size: 1.2rem;
  }
  .footer_list {
    margin-top: 2rem;
  }
  .footer_list_item + .footer_list_item {
    margin-top: 1.5rem;
  }
  .footer_list_item_link {
    font-size: 1.8rem;
  }
  .footer_list_item_link_external:after {
    margin-top: .4rem;
    width: .6rem;
    height: .6rem;
  }
  .footer_language {
    justify-content: flex-end;
    width: 100%;
  }
  .footer_language_text {
    font-size: 1.6rem;
  }
  .footer_language_link {
    font-size: 1.6rem;
  }
  .footer_bottom {
    flex-direction: column;
	          align-items: flex-start;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .footer_logo {
            width: 50%;
  }
  .copyright_text {
    font-size: 1rem;
  }
}