/* General Settings
=================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

body {
    font-family: 'Mukta', 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: 1140px;
    margin: 0 auto;
}

.heading-primary {
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
}

.heading-secondary {
    font-size: 27px;
    color: #000;
    margin-bottom: 20px;
}

.heading-tertiary {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #000;
}

.paragraph {
    font-size: 16px;
    line-height: 26px;
}

.paragraph:not(:last-child) {
    margin-bottom: 15px;
}

.img-fluid {
    width: 100%;
}

.text-center {
    text-align: center;
}



/* Header
=================================================== */
.header {
    height: 95vh;
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, .8)), url(../img/fleet-fuel-cards.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.header__text-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section About
=================================================== */
.section-about {
    padding: 60px 0;
}

.section-about__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.section-about__text-box {
    flex: 0 0 50%;
}

.section-about__img-box {
    flex: 0 0 40%;
}

.section-about__img-box img{
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    border-radius: 3px;
}

/* Section Card Benefits
=================================================== */
.section-gas-card{
    padding: 60px 0;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
}


.gas-card__item-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.gas-card__item {
    flex: 0 0 48%;
    padding: 50px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .09);
    margin-bottom: 30px;
    position: relative;
    z-index: 999;
    border-bottom: 2px #f03e3e solid;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fff;
}

.arrow-icon {
    font-size: 30px;
    position: absolute;
    top: 0;
    left: 0;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 71px;
    background: #f03e3e;
    color: #fff;
    padding-right: 7px;
    padding-bottom: 6px;
    opacity: .7;
}


/* Section Business Needs
=================================================== */
.section-business-needs{
    padding: 60px 0;
}

.row-img-box{
    max-width: 800px;
    margin: 30px auto;
}

