/*=========================================
            Fleet Section
=========================================*/

.flt-section{

    padding:100px 0;

    background:#ffffff;

}

/*=========================================
            Section Heading
=========================================*/

.flt-heading{

    max-width:800px;

    margin:0 auto 70px;

}

.flt-subtitle{

    display:inline-block;

    color:#FDB913;

    font-size:16px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:15px;

}

.flt-title{

    font-size:42px;

    font-weight:700;

    color:#222222;

    margin-bottom:20px;

    line-height:1.3;

}

.flt-description{

    color:#666666;

    font-size:16px;

    line-height:1.9;

    margin:0;

}

/*=========================================
            Fleet Card
=========================================*/

.flt-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    display:flex;

    flex-direction:column;

    position:relative;

}

.flt-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(0,0,0,.15);

}

/*=========================================
            Vehicle Image
=========================================*/

.flt-image{

    position:relative;

    height:230px;

    overflow:hidden;

}

.flt-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.flt-card:hover .flt-image img{

    transform:scale(1.08);

}

.flt-image::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(

        rgba(0,0,0,.05),

        rgba(0,0,0,.35)

    );

}

/*=========================================
            Badge
=========================================*/

.flt-badge{

    position:absolute;

    top:20px;

    left:20px;

    z-index:2;

    background:#FDB913;

    color:#111111;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

}

/*=========================================
            Card Content
=========================================*/

.flt-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.flt-content h3{

    font-size:26px;

    font-weight:700;

    color:#222222;

    margin-bottom:15px;

}

.flt-content p{

    color:#666666;

    line-height:1.8;

    margin-bottom:25px;

}

/*=========================================
            Feature List
=========================================*/

.flt-list{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.flt-list li{

    display:flex;

    align-items:center;

    color:#444444;

    font-size:15px;

    font-weight:500;

    margin-bottom:15px;

}

.flt-list li:last-child{

    margin-bottom:0;

}

.flt-list li i{

    width:34px;

    height:34px;

    min-width:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#FFF4D6;

    color:#FDB913;

    margin-right:12px;

    transition:.35s;

}

.flt-card:hover .flt-list li i{

    background:#FDB913;

    color:#ffffff;

}

/*=========================================
            WhatsApp Button
=========================================*/

.flt-btn{

    margin-top:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    padding:15px 20px;

    background:#25D366;

    color:#ffffff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.flt-btn i{

    font-size:20px;

    margin-right:10px;

}

.flt-btn:hover{

    background:#1EA952;

    color:#ffffff;

    text-decoration:none;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(37,211,102,.35);

}

/*=========================================
        Decorative Top Border
=========================================*/

.flt-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#FDB913;

    transition:.4s;

}

.flt-card:hover::before{

    width:100%;

}




/*=========================================
            Large Desktop
=========================================*/

@media (min-width:1400px){

    .flt-title{

        font-size:46px;

    }

}

/*=========================================
                Laptop
=========================================*/

@media (max-width:1199px){

    .flt-section{

        padding:90px 0;

    }

    .flt-title{

        font-size:38px;

    }

    .flt-image{

        height:210px;

    }

    .flt-content{

        padding:25px;

    }

    .flt-content h3{

        font-size:24px;

    }

}

/*=========================================
                Tablet
=========================================*/

@media (max-width:991px){

    .flt-section{

        padding:80px 0;

    }

    .flt-heading{

        margin-bottom:50px;

    }

    .flt-title{

        font-size:34px;

    }

    .flt-description{

        font-size:15px;

    }

    .flt-image{

        height:230px;

    }

    .flt-content{

        padding:24px;

    }

    .flt-content h3{

        font-size:23px;

    }

    .flt-list li{

        font-size:14px;

    }

}

/*=========================================
                Mobile
=========================================*/

@media (max-width:767px){

    .flt-section{

        padding:70px 0;

    }

    .flt-heading{

        margin-bottom:40px;

    }

    .flt-title{

        font-size:30px;

        line-height:1.4;

    }

    .flt-subtitle{

        font-size:15px;

    }

    .flt-description{

        font-size:15px;

        line-height:1.8;

    }

    .flt-image{

        height:240px;

    }

    .flt-content{

        padding:22px;

    }

    .flt-content h3{

        font-size:22px;

    }

    .flt-content p{

        font-size:15px;

        margin-bottom:20px;

    }

    .flt-list{

        margin-bottom:25px;

    }

    .flt-btn{

        padding:14px;

        font-size:15px;

    }

    .flt-btn i{

        font-size:18px;

    }

}

/*=========================================
            Small Mobile
=========================================*/

@media (max-width:575px){

    .flt-section{

        padding:60px 0;

    }

    .flt-heading{

        margin-bottom:35px;

    }

    .flt-title{

        font-size:27px;

    }

    .flt-description{

        font-size:14px;

    }

    .flt-image{

        height:220px;

    }

    .flt-content{

        padding:20px;

    }

    .flt-content h3{

        font-size:21px;

    }

    .flt-content p{

        font-size:14px;

    }

    .flt-list li{

        font-size:14px;

        margin-bottom:12px;

    }

    .flt-list li i{

        width:30px;

        height:30px;

        min-width:30px;

        font-size:13px;

        margin-right:10px;

    }

    .flt-badge{

        top:15px;

        left:15px;

        padding:8px 15px;

        font-size:13px;

    }

    .flt-btn{

        font-size:14px;

        padding:13px;

    }

    .flt-btn i{

        font-size:18px;

    }

}

/*=========================================
            Extra Small Mobile
=========================================*/

@media (max-width:420px){

    .flt-section{

        padding:50px 0;

    }

    .flt-title{

        font-size:24px;

    }

    .flt-image{

        height:190px;

    }

    .flt-content{

        padding:18px;

    }

    .flt-content h3{

        font-size:20px;

    }

    .flt-content p{

        font-size:13px;

        line-height:1.7;

    }

    .flt-list li{

        font-size:13px;

    }

    .flt-badge{

        font-size:12px;

        padding:7px 14px;

    }

    .flt-btn{

        font-size:13px;

        border-radius:40px;

    }

}