@charset "UTF-8";
.footer_box {
  display: block;
  position: relative;
  overflow: visible;
  flex-grow: 0;
  flex-shrink: 0;
  margin: auto 0 0;
  padding-top: 5.75rem;
  padding-bottom: 4.5rem;
  background: radial-gradient(circle at 50% 42%, #236FA8 0%, #155A96 38%, #0A477F 68%, #073D70 100%);
  color: var(--theme-white);
  font-size: 1rem;
  line-height: 1.25;
  z-index: 1;
}
@media screen and (max-width: 1620px) {
  .footer_box {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .footer_box {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.footer_box a {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .footer_box a:hover {
    color: var(--theme-secondary);
    text-decoration: none;
  }
}
.footer_box .footer_badge {
  position: absolute;
  top: 0;
  left: 15rem;
  width: 100px;
  height: 100px;
  transform: translateY(-50%);
  z-index: 1000;
  padding: 0.5rem;
  background-color: white;
  border-radius: 50%;
  overflow: hidden;
}
.footer_box .footer_badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media screen and (max-width: 1620px) {
  .footer_box .footer_badge {
    left: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .footer_box .footer_badge {
    left: 1.5rem;
    width: 8.75rem;
    height: 8.75rem;
  }
}
.footer_box .footer_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 5.625rem;
  width: 100%;
  max-width: 1600px !important;
  z-index: 3;
}
.footer_box .footer_column {
  min-width: 0;
}
.footer_box .footer_title {
  margin: 0 0 1.625rem;
  padding: 0 0 0.625rem;
  border-bottom: 1px solid var(--theme-white);
  color: var(--theme-white);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.footer_box .footer_menu {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer_box .footer_menu li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 1.5rem;
}
.footer_box .footer_menu li:before {
  content: "›";
  position: absolute;
  top: -0.0625rem;
  left: 0;
  color: var(--theme-white);
  font-size: 1.5rem;
  line-height: 1;
}
.footer_box .footer_menu a {
  display: inline-block;
}
.footer_box .footer_legal {
  margin-top: 4.25rem;
  gap: 0.25rem;
  font-size: 1rem;
}
.footer_box .footer_middle_column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.footer_box .footer_group {
  margin-bottom: 2.75rem;
}
.footer_box .footer_text {
  position: relative;
  padding-left: 1.125rem;
  font-size: 1.5rem;
}
.footer_box .footer_text:before {
  content: "›";
  position: absolute;
  top: -0.0625rem;
  left: 0;
  color: var(--theme-white);
  font-size: 1.5rem;
  line-height: 1;
}
.footer_box .footer_text p {
  margin: 0 0 1.5rem;
}
.footer_box .footer_text p:last-child {
  margin-bottom: 0;
}
.footer_box .footer_social_group {
  margin-top: auto;
  margin-bottom: 3rem;
}
.footer_box .footer_socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-left: 1.125rem;
}
.footer_box .footer_socials:before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--theme-white);
  font-size: 1.5rem;
  line-height: 1;
}
.footer_box .footer_social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  background: var(--theme-white);
  color: #155A96;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
@media (hover: hover) {
  .footer_box .footer_social:hover {
    color: var(--theme-secondary);
    text-decoration: none;
    transform: translateY(-1px);
  }
}
.footer_box .footer_logo {
  display: block;
  width: 15.375rem;
  height: 9.75rem;
  margin: 0 auto;
  background: url(../../images/logo-menzel-white.svg) 50% 50%/contain no-repeat;
}
.footer_box .footer_locations {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer_box .footer_location {
  position: relative;
  padding-left: 1rem;
  font-size: 1.5rem;
  font-weight: 300;
}
.footer_box .footer_location:before {
  content: "›";
  position: absolute;
  top: -0.0625rem;
  left: 0;
  color: var(--theme-white);
  font-size: 1.5rem;
  line-height: 1;
}
.footer_box .footer_location strong {
  font-weight: 500;
  text-transform: uppercase;
}
.footer_box .footer_contact_links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (max-width: 64rem) {
  .footer_box {
    padding-top: 4.375rem;
    padding-bottom: 3.5rem;
  }
  .footer_box .footer_inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.375rem 3.75rem;
  }
  .footer_box .footer_contact_column {
    grid-column: 1/-1;
  }
  .footer_box .footer_locations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2.5rem;
  }
}
@media (max-width: 40rem) {
  .footer_box {
    padding-top: 3.625rem;
    padding-bottom: 3rem;
    font-size: 1rem;
  }
  .footer_box .footer_inner {
    grid-template-columns: 1fr;
    gap: 2.625rem;
  }
  .footer_box .footer_title {
    margin-bottom: 1.25rem;
  }
  .footer_box .footer_legal {
    margin-top: 2.5rem;
  }
  .footer_box .footer_social_group {
    margin-top: 0;
    margin-bottom: 2.25rem;
  }
  .footer_box .footer_locations {
    display: flex;
    gap: 1.375rem;
  }
  .footer_box .footer_logo {
    margin-left: 0;
  }
}
@media (max-width: 25rem) {
  .footer_box {
    padding-top: 3rem;
    padding-bottom: 2.625rem;
  }
  .footer_box .footer_box:before {
    display: none;
  }
  .footer_box .footer_inner {
    gap: 2.25rem;
  }
  .footer_box .footer_logo {
    width: 15.375rem;
    height: 9.75rem;
  }
}
/*# sourceMappingURL=footer.css.map */
