/** HEADER **/
.navbar-mobile-header {
  box-shadow: 0px 3px 6px #00000029;
  background: white;
  padding: 1rem 1rem 1rem 5rem;
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 768px) {
    .navbar-mobile-header {
      display: none; } }
  .navbar-mobile-header .fas {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 2rem;
    font-size: 1.5rem; }

.navbar-mobile-header__backto {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.navbar-mobile-header__title {
  font-size: 18px;
  font-weight: bold; }

.navbar-mobile-header__right-link {
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  align-items: flex-end; }
  .navbar-mobile-header__right-link:hover {
    color: black;
    text-decoration: none; }
  @media screen and (min-width: 768px) {
    .navbar-mobile-header__right-link {
      font-size: 20px;
      display: block; } }
  .navbar-mobile-header__right-link span {
    line-height: 16px; }

.navbar-mobile-header__backto {
  display: flex;
  width: 100%;
  height: 100%; }
  @media screen and (min-width: 768px) {
    .navbar-mobile-header__backto {
      font-size: 20px;
      padding-left: 3rem; } }

.fas.fa-chevron-left {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 2rem;
  font-size: 1.5rem; }

.navbar-mobile-header__page {
  color: #4F99DA;
  font-size: 14px;
  font-weight: bold; }

.side-menu-bg {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #FAFAFA;
  opacity: 0;
  transition: all 0.5s;
  z-index: 10;
  visibility: hidden; }
  .side-menu-bg .side-menu {
    position: absolute;
    width: 220px;
    top: 0;
    bottom: 0;
    left: -220px;
    padding: 2rem 3rem;
    transition: all 0.5s;
    box-shadow: 0px 3px 6px #00000029; }
    .side-menu-bg .side-menu .fa-times {
      margin-bottom: 3rem;
      font-size: 32px; }
  .side-menu-bg .menu-item {
    font-size: 18px;
    font-weight: bold;
    line-height: 34px;
    color: black;
    display: block; }
    .side-menu-bg .menu-item:not([href]):not([tabindex]) {
      color: #4F99DA; }
  .side-menu-bg.side-menu-open {
    visibility: visible;
    opacity: 1; }
    .side-menu-bg.side-menu-open .side-menu {
      left: 0; }
  @media screen and (min-width: 768px) {
    .side-menu-bg {
      display: none; } }

.topbar-desktop__container {
  position: fixed;
  width: 100%;
  z-index: 10;
  transition: all 0.5s; }
  .topbar-desktop__container.topbar-desktop__container-scrolled {
    background: white;
    box-shadow: 0px 3px 6px #00000029; }

.topbar-desktop {
  display: none; }
  @media screen and (min-width: 768px) {
    .topbar-desktop {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 0; }
      .topbar-desktop .menu-item {
        padding: 0.9rem;
        font-size: 18px;
        font-weight: bold;
        line-height: 34px;
        color: #6F6F6F; }
        .topbar-desktop .menu-item:not([href]):not([tabindex]) {
          color: #4F99DA; } }

.topbar-menu__title {
  font-size: 34px;
  font-weight: bold;
  color: white; }

/***********/
