header {
  width: 100%;
  height: 80px;
  background: url(../images/cmn/img-header-bg.png) #ffffff no-repeat top center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 550;
}
@media screen and (max-width: 500px) {
  header {
    height: 60px;
  }
}
header .headerInner {
  display: flex;
  width: 96%;
  margin: 0px auto;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .headerInner {
    width: 92%;
  }
}
header .headerInner .logoCol {
  width: 120px;
}
@media screen and (max-width: 500px) {
  header .headerInner .logoCol {
    width: 100px;
  }
}
header .headerInner .navCol {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  header .headerInner .navCol {
    display: none;
  }
}
header .headerInner .navCol .menu {
  margin: 0px 2%;
}
header .headerInner .navCol .menu a {
  padding: 5px;
  color: #999999;
  font-size: var(--nav-misc-fs);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0, 0, 0.27, 1);
}
header .headerInner .navCol .menu:hover a, header .headerInner .navCol .menu.active a {
  color: #4a689c;
  border-bottom: 2px solid #59dad7;
}
header .headerInner .miscCol {
  width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .headerInner .miscCol {
    justify-content: flex-end;
  }
}
header .headerInner .miscCol dl {
  display: flex;
  justify-content: space-evenly;
  width: 40%;
}
@media screen and (max-width: 768px) {
  header .headerInner .miscCol dl {
    display: none;
  }
}
header .headerInner .miscCol dl dd {
  padding: 0px 5px;
}
header .headerInner .miscCol dl dd a {
  color: #999999;
  font-weight: 400;
  font-size: var(--nav-misc-fs);
}
header .headerInner .miscCol dl dd.active a, header .headerInner .miscCol dl dd:hover a {
  color: #4a689c;
}
header .headerInner .miscCol .fontSize {
  align-items: flex-end;
}
header .headerInner .miscCol .fontSize a {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
header .headerInner .miscCol .fontSize dd.sfs a {
  font-size: var(--nav-small-fs);
}
header .headerInner .miscCol .fontSize dd.mfs a {
  font-size: var(--nav-medium-fs);
}
header .headerInner .miscCol .fontSize dd.lfs a {
  font-size: var(--nav-large-fs);
}
header .headerInner .miscCol .mobileBtn {
  display: none;
}
@media screen and (max-width: 768px) {
  header .headerInner .miscCol .mobileBtn {
    display: inline-block;
  }
  header .headerInner .miscCol .mobileBtn a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 20px;
  }
  header .headerInner .miscCol .mobileBtn a::before {
    position: absolute;
    top: 0px;
    left: 0px;
    margin-top: -1px;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #4a689c;
    border-radius: 10px;
    transform: rotate(0deg);
    transition: all 0.35s cubic-bezier(0, 0, 0.27, 1);
  }
  header .headerInner .miscCol .mobileBtn a::after {
    position: absolute;
    top: 100%;
    left: 0px;
    margin-top: -1px;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #4a689c;
    border-radius: 10px;
    transform: rotate(0deg);
    transition: all 0.35s cubic-bezier(0, 0, 0.27, 1);
  }
  header .headerInner .miscCol .mobileBtn a span {
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: -1px;
    display: block;
    width: 100%;
    height: 2px;
    background: #4a689c;
    border-radius: 10px;
  }
  header .headerInner .miscCol .mobileBtn a.active::before {
    top: 50%;
    transform-origin: center;
    transform: rotate(45deg);
  }
  header .headerInner .miscCol .mobileBtn a.active::after {
    top: 50%;
    transform-origin: center;
    transform: rotate(-45deg);
  }
  header .headerInner .miscCol .mobileBtn a.active span {
    opacity: 0;
  }
}

.mobileNav {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobileNav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 500;
  }
  .mobileNav .mobileNavInner {
    padding: 100px 10% 100px;
    background: rgba(229, 229, 229, 0.85);
  }
  .mobileNav .mobileNavInner .navRow {
    padding: 50px 0px;
  }
  .mobileNav .mobileNavInner .navRow .menu {
    padding: 10px 0px;
  }
  .mobileNav .mobileNavInner .navRow .menu a {
    padding: 5px;
    color: #999999;
    border-bottom: 2px solid transparent;
    font-size: var(--nav-misc-fs);
    transition: all 0.35s cubic-bezier(0, 0, 0.27, 1);
  }
  .mobileNav .mobileNavInner .navRow .menu:hover a, .mobileNav .mobileNavInner .navRow .menu.active a {
    color: #4a689c;
    border-bottom: 2px solid #59dad7;
  }
  .mobileNav .mobileNavInner .miscRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobileNav .mobileNavInner .miscRow dl {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    width: 40%;
  }
  .mobileNav .mobileNavInner .miscRow dl dd {
    padding: 0px 5px;
  }
  .mobileNav .mobileNavInner .miscRow dl dd a {
    color: #999999;
    font-size: var(--nav-misc-fs);
    font-weight: 400;
  }
  .mobileNav .mobileNavInner .miscRow dl dd.active a, .mobileNav .mobileNavInner .miscRow dl dd:hover a {
    color: #4a689c;
  }
  .mobileNav .mobileNavInner .miscRow dl.fontSize {
    justify-content: flex-end;
  }
  .mobileNav .mobileNavInner .miscRow dl.fontSize dd.sfs a {
    font-size: var(--nav-small-fs);
  }
  .mobileNav .mobileNavInner .miscRow dl.fontSize dd.mfs a {
    font-size: var(--nav-medium-fs);
  }
  .mobileNav .mobileNavInner .miscRow dl.fontSize dd.lfs a {
    font-size: var(--nav-large-fs);
  }
}
.mobileNav.active {
  display: block;
}/*# sourceMappingURL=header.css.map */