header {
    padding: 0 20px;
    background: rgb(5,50,110);
    background: linear-gradient(148deg, rgba(5,50,110,1) 20%, rgba(229,0,113,1) 100%);
    height: 50px;
    display: flex;
    justify-content: space-between;
    color: #FFF;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.168);

}
header a {
  text-decoration: none;
  color: #FFF;
  text-shadow: 0.6px 0.6px 0.6px rgb(88, 1, 44);

}
@media only screen and (max-width: 700px) {
   header {
    padding: 0 20px;
    background: #05326e;
    height: 50px;
    display: flex;
    justify-content: space-between;
    color: #FFF;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.168);

}
  }
#logo {
    font-weight: regular;
    font-size: 30px;
    display: flex;
    align-items: center;
}
  
#logo a {
    color: #FFF;
  }
  ul {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  
  ul a {
    color: white;
  }
  
  ul li {
    font-size: 18px;
    padding: 10px;
    margin-left: 30px;
    transition: transform 0.9s ease-in-out;
    text-shadow: 0.6px 0.6px 0.6px rgb(88, 1, 44);
  }
  
  ul li:hover {
    transform: scale(1.1);
    transition: 0.6s ease-in-out;
    text-shadow: 0.6px 0.6px 0.6px rgb(88, 1, 44);
  }

.mobile-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    height: calc(100vh - 50px);
    width: 100%;
    z-index: 10;
    background: rgba(5, 50, 110, 100%);
    transition: all 0.2s;
  }
  .open .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    transition: all 0.2s;
    z-index: 10;

  }
  .mobile-menu li {
    margin-bottom: 10vh;
  }

  .mobile-menu li a {
    width: 140px;
    height: 45px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #FFF;
    background-color: rgba(229,0,113,1);
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.168);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    padding: 25px 50px 25px 50px;
  }
 

  
/** For the Icon **/
#hamburger-icon {
    margin: auto 0;
    display: none;
    cursor: pointer;
  }
  #hamburger-icon div {
    width: 35px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
  }
/** Design of icon **/
  .open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  
  .open .bar2 {
    opacity: 0;
  }
  
  .open .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
  }

/* Tooltip hover over login on desktop */
.tooltip {
    position: relative;
    display: inline-block;
  }
  
  /* Tooltip text change top/left/margin to move */
  .tooltip .tooltiptext {
    font-size: 15px;
    visibility: hidden;
    width: 100px;
    background-color: #05326e;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    top: 120%;
    left: 50%; 
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
    position: absolute;
    z-index: 1;
  }
.tooltip:hover .tooltiptext {
    visibility: visible;
  }

/**Only display icon on mobiles **/
@media only screen and (max-width: 700px) {
    header nav {
      display: none;
    }
    #hamburger-icon {
      display: block;
    }
  }
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 48
}