html {
    background:#fafafa;
   }
   
.text-black {
    color: #333;
}

.hamburger {
    transition: all 0.3s ease;
}

.hamburger:hover {
    cursor: pointer;
    color: #08d;
}

.mobile {
    position: fixed;

    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: none;
    z-index: 9999;
    background: transparent;
    margin: 0;
    padding: 0;
}

.mobile-pan {
    margin: 0;
    padding: 0;
    width: 250px;
    bottom: 0;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: -250px;
    transition: transform 0.3s ease;
    background-color: #fff;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 5px 10px #777;
    z-index: 10000;
}

.mobile-pan.mobile-pan--open {
    transform: translateX(250px);
}

.mobile-pan ul {
    list-style: none;
    padding: 20px 10px 10px 10px;
    position: relative
}

.mobile-pan li {
    border-bottom: 1px solid #aaa;
    width: 100%;
    padding: 20px 0
}

.mobile-pan li a {
    font-size: 1.6rem;
    color: #333;
    text-decoration: none;
    width: 300px;
    height: 3em;
    border: 0;
    transition: all 0.2s ease
}

.mobile-pan li a:hover {
    cursor: pointer;
    color: #08f
}

.mobile-pan img {
    position: absolute;
    bottom: 0;
    left: 0
}

.nodeco {
    text-decoration: none;
}

.flex5 {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.w980m100 {
    width: 980px;
}

.btn--primary {
    background: #3058b0;
    padding: 6px;
    border: none;
    color: #fff;
    font-size: 1.3em
}

.btn--primary:hover {
    cursor: pointer;
    background: #274994
}
.visibleSm {
    display: none;
  }
  
@media only screen and (max-width:990px) {
    .w980m100 {
        width: 100%;
    }

    .visibleSm {
        display: block;
      }
  
}
