﻿a{
    text-decoration:none;
}
.sec-icon {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 auto;
}

    .sec-icon::before {
        content: "";
        position: absolute;
        height: 1px;
        left: -70px;
        margin-top: -5.5px;
        top: 60%;
        background: #333333;
        width: 50px;
    }

    .sec-icon::after {
        content: "";
        position: absolute;
        height: 1px;
        right: -70px;
        margin-top: -5.5px;
        top: 60%;
        background: #333;
        width: 50px;
    }

.advertisers-service-sec {
    background-color: #f5f5f5;
}

    .advertisers-service-sec span {
        color: rgb(255, 23, 131);
    }

    .advertisers-service-sec .col {
        padding: 0 1em 1em 1em;
        text-align: center;
    }

    .advertisers-service-sec .service-card {
        width: 100%;
        height: 100%;
        padding: 2em 1.5em;
        border-radius: 5px;
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
        cursor: pointer;
        transition: 0.5s;
        position: relative;
        z-index: 2;
        overflow: hidden;
        background: #fff;
    }

        .advertisers-service-sec .service-card::after {
            content: "";
            width: 100%;
            height: 100%;
            background: linear-gradient(#0dcaf0, rgb(255, 23, 131));
            position: absolute;
            left: 0%;
            top: -98%;
            z-index: -2;
            transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
        }

    .advertisers-service-sec h3 {
        font-size: 20px;
        text-transform: capitalize;
        font-weight: 600;
        color: #1f194c;
        margin: 1em 0;
        z-index: 3;
    }

    .advertisers-service-sec p {
        color: #575a7b;
        font-size: 15px;
        line-height: 1.6;
        letter-spacing: 0.03em;
        z-index: 3;
    }

    .advertisers-service-sec .icon-wrapper {
        position: relative;
        display: flex;
        margin-inline: auto;
        overflow: hidden;
        align-items: center;
        justify-content: center;
        width: 90%;
        aspect-ratio: 16/10;
        border-radius: 5px;
        place-items: center;
        transition: 0.5s;
        img{
               width: 100%;
               object-fit:contain;
               object-position:center
           }
    }

    .advertisers-service-sec .service-card:hover:after {
        top: 0%;
    }

.service-card .icon-wrapper {
    background-color: #ffffff;
    color: rgb(255, 23, 131);
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
    opacity: 0.5;
}

.advertisers-service-sec .service-card:hover h3 {
    color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
    color: #f0f0f0;
}
/* ADVERTISERS SERVICE CARD ENDED */

