header.header {
  width: 100%;
  margin: 0;
  position: sticky;
  display: grid;
  grid-template-rows: 12px 26px auto;
  top: 0;
  left: 0;
  z-index: 10;
}
@media only screen and (max-width: 720px) {
  header.header {
    position: absolute;
  }
}

.header__topbar {
  background: linear-gradient(90deg, #00b3d6 0%, #5e5c9e 100%);
}
@media only screen and (max-width: 720px) {
  .header__topbar {
    display: none;
  }
}
.header__infobar {
  background: #FAFAFA;
  width: 100%;
}
@media only screen and (max-width: 720px) {
  .header__infobar {
    display: none;
  }
}
.header__infobar .contact-info-list {
  float: right;
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .header__infobar .contact-info-list {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .header__infobar .contact-info-list {
    width: 60%;
  }
}
@media only screen and (min-width: 1440px) {
  .header__infobar .contact-info-list {
    width: 50%;
  }
}
.header__infobar .contact-info-list .contact-info {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
}
.header__infobar .contact-info-list .contact-info svg {
  display: block;
  margin: 0 auto;
  fill: #00b3d5;
}
.header__infobar .contact-info-list .contact-info span {
  color: #5C5A5A;
  font-size: 16px;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .header__infobar .contact-info-list .contact-info span {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .header__infobar .contact-info-list .contact-info span {
    font-size: 14px;
  }
}

.header__topmenu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: #FFF;
  align-items: center;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .header__topmenu {
    grid-template-columns: 2fr 3fr;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .header__topmenu {
    grid-template-columns: 2fr 3fr;
  }
}
@media only screen and (max-width: 720px) {
  .header__topmenu {
    background: rgba(255, 255, 255, 0);
  }
}
#check-menu:checked ~ .header .header__topmenu {
  background: rgba(36, 26, 25, 0.4);
  height: 100vh;
  width: 100vw;
  z-index: 5;
  position: fixed;
}

.header__topmenu .menu-mobile {
  position: absolute;
  width: 100%;
  display: none;
  top: 0;
  left: 0;
  z-index: 3;
}
@media only screen and (max-width: 720px) {
  .header__topmenu .menu-mobile {
    display: block;
  }
}
.header__topmenu .menu-mobile div.hamburger {
  position: fixed;
}
.header__topmenu .menu-mobile div.hamburger svg.hamburger {
  top: 0;
  left: 0;
  transform: translate(10%, 10%);
  stroke: #FFF;
  position: absolute;
  stroke-width: 3;
  stroke-linecap: round;
  height: 2.75rem;
  background: rgba(36, 26, 25, 0.4);
}
.header__topmenu .menu-mobile div.hamburger svg.hamburger line {
  transition: all 0.5s ease-in-out;
}

#check-menu:checked + .header line.close-line-1 {
  transform: rotate(45deg) translate(20%, -25%);
  transition: all 0.5s ease-in-out;
}

#check-menu:checked + .header line.close-line-2 {
  transform: rotate(-45deg) translate(-50%, 20%);
  transition: all 0.5s ease-in-out;
}

#check-menu:checked + .header line.close-line-3 {
  transform: translate(-100%, 0);
  transition: all 0.5s ease-in-out;
}

.header__topmenu .logo {
  display: grid;
  grid-template-columns: auto auto;
  margin: 0.5rem auto;
  grid-column-gap: 2rem;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .header__topmenu .logo {
    margin: 0.2rem auto;
    grid-column-gap: 1rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .header__topmenu .logo {
    margin: 0.2rem auto;
    grid-column-gap: 1rem;
  }
}
@media only screen and (max-width: 720px) {
  .header__topmenu .logo {
    display: none;
  }
}
.header__topmenu .logo img {
  object-fit: fill;
  display: block;
  box-sizing: content-box;
}
.header__topmenu .logo img.logo-niro {
  align-self: end;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .header__topmenu .logo img.logo-niro {
    width: 131px;
    height: 56px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .header__topmenu .logo img.logo-niro {
    width: 131px;
    height: 56px;
  }
}
@media only screen and (min-width: 1440px) {
  .header__topmenu .logo img.logo-niro {
    width: 198px;
    height: 84px;
  }
}
.header__topmenu .logo img.logo-luren {
  align-self: start;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .header__topmenu .logo img.logo-luren {
    width: 56px;
    height: 56px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .header__topmenu .logo img.logo-luren {
    width: 56px;
    height: 56px;
  }
}
@media only screen and (min-width: 1440px) {
  .header__topmenu .logo img.logo-luren {
    width: 84px;
    height: 84px;
  }
}

@media only screen and (max-width: 720px) {
  .header__topmenu .menu {
    height: 100vh;
    position: fixed;
  }
}
.header__topmenu .menu ul {
  list-style: none;
}
@media only screen and (max-width: 720px) {
  .header__topmenu .menu ul {
    padding: 5rem 0.5rem;
  }
}
@media only screen and (max-width: 720px) {
  .header__topmenu .menu ul {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(0, 1);
    transform-origin: left;
    transition: all 0.5s ease-in-out;
    width: 60vw;
  }
}
.header__topmenu .menu ul li {
  display: inline-block;
  margin-right: 3rem;
  padding: 0.3rem 0.5rem;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .header__topmenu .menu ul li {
    margin-right: 1rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .header__topmenu .menu ul li {
    margin-right: 3rem;
  }
}
@media only screen and (max-width: 720px) {
  .header__topmenu .menu ul li {
    margin-bottom: 1rem;
    display: grid;
  }
}
.header__topmenu .menu ul li a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #2C3E50;
  font-family: "Raleway";
  font-weight: bold;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .header__topmenu .menu ul li a {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .header__topmenu .menu ul li a {
    font-size: 1.25rem;
  }
}
.header__topmenu .menu ul li:hover, .header__topmenu .menu ul li.selected {
  background: #00B2D6;
  border-radius: 5px;
}
.header__topmenu .menu ul li:hover a, .header__topmenu .menu ul li.selected a {
  color: #FFF;
}

#check-menu:checked + header.header div.menu ul.menu {
  transform: scale(1, 1);
  transition: all 0.5s ease-in-out;
}

/*# sourceMappingURL=header.css.map */
