#menu-nav-trigger {
  cursor: pointer;
  fill: var(--link-color);
  z-index: 1050;
  position: relative;
}

#menu-nav-trigger svg rect {
  transition: all 0.3s 0s;
}

#menu-nav-trigger.active svg rect,
#menu-nav-trigger:active svg rect,
#menu-nav-trigger:focus svg rect,
#menu-nav-trigger:hover svg rect {
  width: 150%;
  transform: translateX(-50%);
}

#menu-nav-trigger #pjax-message-hamburger {
  position: absolute;
  right: 35px;
  top: -7px;
  color: #ffffff;
  min-width: 20px;
  height: 20px;
  text-align: center;
}

#menu-nav-trigger #pjax-message-hamburger .badge {
  display: block;
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  line-height: 16px;
}

#menu-nav-trigger #pjax-message-hamburger .badge::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-color);
  transition: all 0.2s;
  z-index: -1;
}

.mm-open #menu-nav-trigger #pjax-message-hamburger {
  display: none;
}

.mm-open a:not(.btn).text-link {
  color: var(--menu-text-primary);
}

.mm-open a:not(.btn).text-link {
  color: var(--menu-text-primary);
  display: inline-block;
  background-image: linear-gradient(#ffffff, #ffffff);
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
  margin: 5px 0;
  background-position: 50% calc(100% - 0px);
}

.mm-open #menu-nav-trigger {
  fill: var(--menu-text-primary);
}

.mm-open #menu-nav-trigger rect {
  transition-delay: 0s;
}

.mm-open #menu-nav-trigger rect:nth-child(1) {
  width: 2em;
  transform: rotate(45deg) translate(0.25em, -0.8em);
}

.mm-open #menu-nav-trigger rect:nth-child(2) {
  width: 0;
}

.mm-open #menu-nav-trigger rect:nth-child(3) {
  width: 2em;
  transform: rotate(-45deg) translate(-1em, -0.21em);
}

.mm-open .main-menu {
  transform: none;
}

.mm-open .hf-amin {
  opacity: 0 !important;
}

#header-brand img {
  transition: all 0.3s 0s;
}

#header-brand img.logo-alt {
  opacity: 0;
}

#header-brand img.logo-std {
  opacity: 1;
  position: absolute;
}

.mm-open #header-brand img.logo-alt {
  opacity: 1;
}

.mm-open #header-brand img.logo-std {
  opacity: 0;
}

.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-color: var(--menu-background-color);
  color: var(--menu-text-primary);
  fill: var(--menu-text-primary);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(100%);
  z-index: 110;
  --background-color: var(--menu-background-color);
  --text-primary: var(--menu-text-primary);
}

.main-menu.main-menu-transition {
  transition: transform 0.3s ease-in-out;
}

.main-menu a {
  color: var(--menu-text-primary);
  text-decoration: none;
}

.main-menu .lines {
  position: absolute;
}

.main-menu .lines .col::before,
.main-menu .lines .col::after {
  background-color: var(--menu-text-primary);
}

.mm-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6.5rem 0 3rem;
  min-height: 100%;
  height: 100%;
  width: 100%;
}

.mm-body {
  flex: 1 1 auto;
}

.mm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  font-family: var(--heading-font-family), sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.mm-list .smaller-item {
  font-size: 25px;
}

.mm-list > li {
  position: relative;
  margin-bottom: 0.5rem;
}

.mm-list > li:last-child {
  margin-bottom: 0;
}

.mm-list > li.active > a {
  font-style: italic;
}

.mm-list > li.active > a::after {
  content: none;
}

.mm-list > li.open > a {
  color: var(--accent-color);
}

.mm-list > li.open > a::after {
  content: none;
}

.mm-list > li.open > a > span {
  color: var(--accent-color);
  -webkit-text-fill-color: var(--accent-color);
  -webkit-text-stroke: unset;
}

.mm-list > li.open > a .mmi-btn {
  fill: var(--accent-color);
  stroke: var(--accent-color);
  transform: translateY(-50%) rotateX(180deg);
}

.mm-list > li > a {
  position: relative;
  display: inline-block;
  color: var(--menu-text-primary);
  text-decoration: none;
}

.mm-list > li > a > span {
  display: block;
  color: var(--menu-text-primary);
  -webkit-text-stroke: 1px var(--menu-text-primary);
  -webkit-text-fill-color: transparent;
}

.mm-list > li > a::after {
  content: attr(data-title);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  color: var(--menu-text-primary);
  overflow: hidden;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  transition: -webkit-clip-path 0.4s linear;
  transition: clip-path 0.4s linear;
  transition: clip-path 0.4s linear, -webkit-clip-path 0.4s linear;
  z-index: 1;
}

.mm-list > li > a:hover::after {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mm-list > li > ul {
  display: none;
  font-size: 1.125rem;
  margin: 1rem 0 1.5rem;
}

.mm-list > li > ul > li {
  position: relative;
}

.mm-list > li > ul > li:last-child {
  margin-bottom: 0;
}

.mm-list > li > ul > li > a {
  position: relative;
  display: inline-flex;
  text-transform: none;
  line-height: 2.5rem;
  padding-left: 1.25rem;
  opacity: 0.5;
}

.mm-list > li > ul > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-top: -2px;
  background-color: var(--menu-text-primary);
  opacity: 0.5;
  transition: all 0.2s;
}

.mm-list > li > ul > li > a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.mm-list > li > ul > li > a:hover::before {
  background-color: var(--accent-color);
}

.mmi-btn {
  display: flex;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 100%;
  fill: none;
  stroke-width: 1px;
  stroke: var(--menu-text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.mm-outer {
  margin-top: 2.5rem;
}

.mmi-btn svg {
  display: block;
  height: 100%;
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  margin: auto;
}

.mmc-item {
  margin-bottom: 1.25rem;
}

.mmc-item:last-child {
  margin-bottom: 0;
}

.mm-contacts {
  margin-top: 2.5rem;
  font-weight: bold;
}

.mmc-label {
  opacity: 0.5;
  font-style: italic;
  line-height: 1.5rem;
  margin-bottom: 0.25rem;
}

.mmc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
}

.mmc-list li {
  margin-left: 1rem;
}

.mmc-list li a {
  display: block;
  line-height: 1.75rem;
  text-decoration: none;
}

.mm-footer {
  margin-top: 2rem;
}

.mm-footer .mnuf-list {
  list-style: none;
  margin: 0 0 0 -2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.mm-footer .mnuf-list li {
  margin-left: 2rem;
}

.mm-footer .mnuf-list li:hover a {
  opacity: 1;
}

.mm-footer .mnuf-list li a {
  display: block;
  text-decoration: none;
  line-height: 2rem;
  opacity: 0.5;
}

.mm-body,
.mmf-container {
  padding-left: 2rem;
}

@media only screen and (min-width: 360px) {
  .mm-list {
    font-size: 2.2rem;
  }
  .mm-list .smaller-item {
    font-size: 20px;
  }
  .mm-list li.smaller-item {
    padding-left: 28px;
  }
}
@media (min-width: 768px) {
  .mm-body,
  .mmf-container {
    padding-left: 0;
  }
  .header {
    top: 1.75rem;
  }
  .header-brand-is {
    line-height: 1.3;
  }
  .header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
  }
  .secondary-mnu {
    position: relative;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.1;
    justify-content: start;
  }
  .secondary-mnu li {
    margin-right: 2rem;
  }
  .secondary-mnu li:last-child {
    margin-right: 0;
  }
  .secondary-mnu li.active a {
    color: var(--accent-color);
  }
  .secondary-mnu li a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    /*font-weight: bold;*/
    line-height: 2rem;
  }
  .secondary-mnu li a#brochure-btn {
    font-weight: bold;
  }
  .secondary-mnu li a#brochure-btn:hover {
    font-weight: 500;
  }
  .secondary-mnu li a#contact-btn {
    font-weight: 500;
  }
  .secondary-mnu li a#contact-btn:hover {
    font-weight: bold;
  }
  .mm-list {
    font-size: 2.25rem;
  }
  .mm-list .smaller-item {
    font-size: 22px;
  }
  .mm-list li.smaller-item {
    padding-left: 28px;
  }
  .mm-footer {
    margin-top: 3rem;
  }
  .mmc-item {
    margin-bottom: 1.75rem;
  }
  .mm-outer {
    padding-left: 3rem;
  }
  .mmi-btn {
    padding-right: 0;
    width: 3rem;
  }
}
@media (min-width: 1024px) {
  .mm-outer,
  .mmf-container {
    padding-left: 10%;
  }
  .mm-list {
    font-size: 2rem;
    line-height: 1.4;
  }
  .mm-list .smaller-item {
    font-size: 18px;
    line-height: 1.6;
  }
  .mm-list li.smaller-item {
    padding-left: 30px;
  }
  .mm-list > li {
    margin: 0;
  }
  .mmc-item {
    margin-bottom: 2.5rem;
  }
  .mmi-btn {
    padding-right: 0.5rem;
    width: 4rem;
  }
  .mmi-btn svg {
    height: 2rem;
    width: 2rem;
    min-width: 2rem;
  }
}
@media (min-width: 1200px) {
  .header {
    top: 2rem;
  }
  #menu-nav-trigger.absolute-left {
    position: absolute;
    left: -2rem;
    top: 0;
  }
  .mm-list {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .mm-list .smaller-item {
    font-size: 22px;
    line-height: 1.6;
  }
  .mm-list li.smaller-item {
    padding-left: 32px;
  }
  .mmc-item {
    margin-bottom: 3rem;
  }
  .mmi-btn {
    padding-right: 1rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mm-list {
    font-size: 3rem;
  }
  .mm-list .smaller-item {
    font-size: 26px;
  }
  .mm-list li.smaller-item {
    padding-left: 37px;
  }
}

/*# sourceMappingURL=skill-box.com.menu.css.map */
