/* Base Styling */
body{
    background: #f0f0f0;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}

header{
    padding: 10px 0;
    margin-bottom: 0px;
    height: 60px;
    box-sizing: border-box;
}
    header h1{
        font-family: 'Nunito', sans-serif;
        font-size: 26px;
        font-weight: 300;
        color:#fff;
    }
        header h1 span{
            font-size: 14px;
        }

.hero{
    margin-top: -90px;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-bottom: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.shipment-card{
    font-size: 13px;
}

    .tracking-list ul{
        margin:0;
        padding:0;
    }
    .tracking-list li{
        display:block;
        list-style-type: none;
        padding: 10px 0;
    }
        .tracking-list li:before{
            content:"\f105";
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            display: inline-block;
            color: #00cec9;
            margin-right: 10px;
        }
        .tracking-list li a{
            color:#000;
        }
.tracking-list__title{
    font-size: 20px;
    margin: 20px 0 15px;
}

footer{
    margin-top: 40px;
}

@media screen and (min-width: 768px){

    .tracking-list{
        border-left: 3px solid #b2bec3;
        position: relative;
    }
    
    .tracking-list:before,
    .tracking-list:after{
        content: "";
        display: block;
        border-radius: 100%;
        width: 15px;
        height: 15px;
        position: absolute;
        top: 0;
        left: -9px;
        background: #b2bec3;
        z-index: 1;
    }

    .tracking-list:after{
        top: auto;
        bottom: 0;
    }
}

/* Bootstrap reset */
.form-control{
    border-radius:0;
}