:root {
    --base: #fefeff;
    --bk: #343638;
    --main: #1d2087;
    --accent: #009b73;
    --sub: #eee;
}

h3{
    margin: 4em 0 1em;
    text-align: center;
    font-size: 23px;
}

h3 span{
    margin: .7em 0 0;
    display: block;
    font-size: .6em;
}

#map{
    margin: 0 0 90px;
    width: 100%;
}

.map-img{
    margin: 0 auto;
    max-width: 600px;
}

.map-img img{
    width: 100%;
}

.bold{
    font-weight: bold;
}

#route{
    max-width: 630px;
    margin: 0 auto;
}

.routelist {
    position: relative;
    margin: 0 0 0 2em;
    padding: 0 10px 0 6px;
    list-style: none;
    font-weight: normal;
  }
  .routelist li {
    position: relative;
    margin: 15px 20px 0 24px;
    padding: 0;
    line-height: 1.5;
  }
  
  .routelist {
    counter-reset: li;
  }
  .routelist > li:before {
    padding: 3px 0 0 1px;
    position: absolute;
    font-weight: bold;
    counter-increment: li;
    content: counter(li) "";
    left: -34px;
    top: -1px;
    color: #fff;
    width: 22px;
    height: 22px;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
    font-weight: bold;
    line-height: 1;
    background: var(--main);
  }