@charset "UTF-8";

@import url("define.css");

html{
    font-size: 62.5%;
}

.font--bold{
  font-weight:700;
}
body {
  font-size:        var(--global--font-size);
  font-family:      var(--global--font-primary);
  line-height:      var(--global--line-height);
  color: black;
  line-height: 1.6;
  font-weight: 400;
}
.tag-white{
  display: inline-block;
  line-height: 1;
  background: white;
  color: black;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
main{
  margin: 0;
  padding: 0;
}
.inner{
  position: relative;
  width: 100%;
  height: 100%;
}
.container{
  position: relative;
}
nav a:hover{
  color: #FF7300;
  opacity: 1;
}
@media screen and (max-width: 1100px)
{
  .section-title{
    width: auto;
    margin-top: -42px;
    margin-left: 0;
    right: auto;
    left: 2rem;
  }
}
@media screen and (max-width: 768px)
{
  html{
    /*font-size:50%;*/
  }
  
}

ol.num{
  counter-reset: item;
  padding-left: 2rem;
}
ol.num li{
  text-indent: -1.5em;
  padding-left: 1.5em;
  list-style: none;
}
ol.num li:before{
  counter-increment: item;
  content: '('counter(item)') ';
}

/* =================================================================
  header
=================================================================*/

header{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content:space-between;
  background: transparent!important;
}
@media screen and (max-width: 768px)
{
  header{
    position:fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .header-logo{
    width: auto;
    height: 50px;
  }
}


.pickup-overview-caption{
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px)
{

  td,th{
    display: block;
    width: 100%;
  }
  th{
    border-bottom: none;
    padding-bottom: 0.5rem;
  }
  td{
    padding-top: 0.5rem;
  }
}