.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.brand {
  display: block;
  width: 70px;
  text-transform: uppercase;
}
.brand img {
  max-width: 100%;
}

.custom-navbar {
  width: 100%;
  height: 7.25rem;
  margin-inline: auto;
}
.custom-navbar .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}
.custom-navbar .navbar-block {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  opacity: 0;
  pointer-events: none;
  background-color: #FFFFFF;
  transition: opacity 0.4s ease;
}
.custom-navbar .navbar-block.is-active {
  opacity: 1;
  pointer-events: initial;
}

@media screen and (min-width: 62rem) {
  .custom-navbar {
    display: flex;
    justify-content: space-between;
    margin-top: -30px;
  }
  .custom-navbar .navbar-block {
    position: initial;
    height: initial;
    opacity: 1;
    pointer-events: visible;
    background: none;
    transition: none;
  }
}
.menu {
  padding-block: 1rem;
  padding-inline: auto;
}

@media screen and (min-width: 62rem) {
  .menu {
    -moz-column-gap: 5px !important;
         column-gap: 5px !important;
  }
}
.menu-link {
  font-size: 14px;
  font-weight: 700;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  color: #191919;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

@media screen and (min-width: 62rem) {
  .menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    height: 100%;
    padding: unset;
  }
  .menu-item {
    display: flex;
    cursor: pointer;
    padding-inline: 0.5rem;
  }
  .menu-link {
    padding: unset;
  }
}
.dropdown-toggle {
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.dropdown-toggle i.bx {
  font-size: 1.5rem;
  line-height: inherit;
  transition: rotate 0.4s ease;
}

.dropdown-content {
  padding: 50px;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}
.dropdown-content .main-link {
  font-weight: 700;
}
.dropdown-content .main-link:hover {
  color: #4971af;
}
.dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-content ul li a {
  font-size: 13px;
}
.dropdown-content ul li a:hover {
  color: #4971af;
}

@media screen and (min-width: 62rem) {
  .dropdown-toggle {
    -moz-column-gap: 0.35rem;
    column-gap: 0.35rem;
    pointer-events: none;
  }
  .dropdown-content {
    position: absolute;
    background-color: #FFFFFF;
    left: 0;
    right: 0;
    top: 6rem;
    opacity: 0;
    height: -moz-max-content;
    height: max-content;
    pointer-events: none;
    border-top: 2px solid #efefef;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: top 0.4s, opacity 0.3s ease;
  }
  .custom-dropdown:hover > .dropdown-content {
    cursor: initial;
    top: 7.25rem;
    opacity: 1;
    pointer-events: initial;
  }
  .custom-dropdown:hover > .dropdown-toggle i.bx {
    rotate: 180deg;
  }
}
.burger {
  cursor: pointer;
  position: relative;
  display: block;
  z-index: 10;
  width: 1.5rem;
  height: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  visibility: visible;
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  background-color: #191919;
  transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active > .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}

.burger.is-active > .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-active > .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}/*# sourceMappingURL=header.css.map */