/* General Settings
=================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    line-height: 26px;
}

main {
    display: block;
}

img {
    display: block;
}

.unorderd-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Base Settings
=================================================== */
.main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 15px 0;
}

.heading-primary {
    font-size: 45px;
    color: #FFFFFF;
    line-height: 55px;
    text-align: center;
}

.heading-secondary {
    font-size: 25px;
    color: #000;
    margin-bottom: 20px;
}

.heading-tertiary {
    font-size: 18px;
    margin-bottom: 7px;
}

.paragraph {
    font-size: 16px;
    line-height: 26px;
}

.paragraph:not(:last-child) {
    margin-bottom: 15px;
}

.img-fluid {
    width: 100%;
}

.row-border {
    border: 1px solid #FFB905;
    height: 2px;
    width: 100px;
    margin-bottom: 20px;
}

/* Header
=================================================== */
.header {
    height: 95vh;
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .8)), url(../img/vehicle-fleet-fuel.jpg
);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
}

.header__text-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section About
=================================================== */
.section-about {
    padding: 50px 0;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
}

.about__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about__text-box {
    border-left: 3px solid #FFB905;
    padding-left: 20px;
}


/* Section Fuel Card
=================================================== */
.section-fuel-card {
    padding: 50px 0;
    border-bottom: 1px solid #ddd;
}

.fuel-card__benefits-box {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.fuel-card__benefits-box-iem {
    flex: 0 0 30%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    border-bottom: 2px solid #d3a93f;
}

.fuel-card__benefits-box-iem p {
    padding: 20px;
}


/* Section Benefits
=================================================== */
.section-benefits {
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}

.tracking-box,
.purchase-box {
    padding: 20px 0;
}

.tracking-box__inner-box,
.purchase-box__inner-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tracking-box__text-box,
.purchase-box__text-box {
    flex: 0 0 55%;
}

.tracking-box__img-box,
.purchase-box__img-box {
    flex: 0 0 40%;
}