header {
  padding: 15px 40px;
  box-shadow: var(--lm-shadow-xs);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--lm-color-primary-100);
  z-index: 10;
  border-bottom: 4px solid var(--lm-color-primary-200);
}
header .logo {
  text-align: center;
  width: 300px;
  display: block;
  margin: 0 auto;
}
header .menu {
  display: flex;
  position: relative;
  justify-content: center;
}
header .menu > li {
  display: flex;
  align-items: center;
  margin-left: 30px;
  line-height: 0;
}
header .menu > li:first-child {
  margin-left: 0;
}
header .menu > li > a {
  font-size: 16px;
  color: var(--lm-color-black);
  display: block;
  line-height: 22px;
}
header .menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
header .short-submenu {
  position: relative;
}
header .short-submenu > .sub-menu {
  width: 250px;
  display: block;
}
header .short-submenu > .sub-menu li {
  width: 100%;
}
@media (max-width: 767px) {
  header {
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .logo svg {
    width: 200px;
  }
  header .menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    display: none;
    background: #fff;
    margin-left: 0px;
    overflow-y: auto;
    padding: 25px 20px 0;
    background: var(--lm-color-primary);
  }
  header .menu.active {
    display: block;
  }
  header .menu > li {
    margin-left: 0;
    margin-bottom: 20px;
  }
}

footer {
  border-top: 4px solid var(--lm-color-primary-200);
  background: var(--lm-color-primary-100);
  padding: 40px 20px;
  text-align: center;
}
footer .footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
footer .footer-social a {
  color: var(--lm-color-primary-200);
  font-size: 19px;
}
footer .footer-sol {
  display: flex;
  max-width: 350px;
  gap: 20px;
  margin: 40px auto 50px;
}
footer .footer-sol a {
  display: block;
}
footer .footer-sol a img {
  max-width: 100%;
  display: block;
  height: auto;
}
footer .footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 13px;
  gap: 5px;
}
footer .footer-credit a {
  color: #000;
}
footer .footer-credit i {
  translate: 0px 2px;
}
footer #menu-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 25px auto;
  flex-wrap: wrap;
}
footer #menu-footer > li {
  position: relative;
}
footer #menu-footer > li > a {
  font-size: 16px;
  line-height: 19px;
  color: var(--lm-color-black);
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  footer #menu-footer {
    flex-direction: column;
  }
}
footer .footer-contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
footer .footer-contact-details .item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer-contact-details .item a {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.1;
  color: #000;
}
footer .lm-footer-social {
  display: flex;
  align-items: center;
}
footer .lm-footer-social a {
  display: grid;
  place-items: center;
  margin: 0 10px;
}
footer .lm-footer-social a span {
  color: var(--lm-color-primary);
  font-size: 20px;
}
@media (max-width: 1199px) {
  footer .lm-footer-social a:first-of-type {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  footer {
    padding-top: 40px;
  }
  footer #menu-menu-footer > li > a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  footer #menu-footer {
    gap: 20px;
    margin-bottom: 45px;
  }
  footer #menu-footer > li:before {
    width: 30px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    top: -14px;
  }
  footer .footer-contact-details {
    gap: 20px;
  }
  footer .footer-contact-details .item:before {
    width: 30px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    top: -8px;
  }
}