.influencer-wrapper{
    /* min-height: 60vh; */
}
.influencer-wrapper .swiper {
    width: 100%;
    height: 100%;
}

.influencer-wrapper .swiper-slide{
    background-color: #1a74b1;
    width: 100%;
    overflow: hidden;

    /* border: 10px solid transparent; */
    border-radius: 10px;
}
#influencer .swiper-button-next.swiper-button-disabled, #influencer .swiper-button-prev.swiper-button-disabled{
    opacity: 0;
}

#influencer .swiper-button-prev, #influencer .swiper-button-next{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 100vmax;
    box-shadow: 0px 0px 10px #0099ff44;
}

#influencer .swiper-button-next:after, #influencer .swiper-button-prev:after{
    font-size: 18px;
    font-weight: 600;
    color: #3c9ad8;
}

.influncer-main{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
}
.influheading{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ecf7ff;
    padding-inline-start: 3.5rem;
}

.influheading h1{
    font-size: 2rem;
}

.influheading p{
    font-weight: 300;   
}

.influncer-main .influ-image{
    height: 320px;
}
#influencer img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.light-btn{
    background-color: #ecf7ff;
    padding: 05px 20px;
    border-radius: 05px;
    box-shadow: 0px 0px 20px #99d4fc63;
    transition: box-shadow 0.3s ease;
}

.light-btn:hover{
    box-shadow: none;
}

.light-btn button{
    pointer-events: none;
    outline: none;
    border: none;
    background-color: transparent;
    color: #1a74b1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.topinfluncers .swiper-slide{
    box-shadow: 0 0 10px #01416b13; 
    overflow: hidden;
    border-radius: 10px;
    margin-block: 2rem;
    border: 1px solid #f1f1f1;
    
}

.topinfluncers .influncer-main{
    min-height: 180px;
}

.topinfluncers .influprofile{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.topinfluncers .influprofile a{
    text-decoration: underline;
    text-underline-offset: 5px;
}

.topinfluncers .influprofile svg{
    height: 20px;
    width: 20px;
    transition: all 0.3 ease;
}

.topinfluncers .influprofile a:hover svg{
    transform: translateX(2px);
}

.influprofile{
    padding: 1rem 0rem 1rem 0.5rem;
}


.topinfluncers .influprofile h4{
    font-size: 18px;
}

.topinfluncers .influprofile p{
    color: #616161;
    font-size: 14px;
}


.modswiper .swiper-button-next{
    right: 05px;
    opacity: 0.8;
}
.modswiper .swiper-button-prev{
    left: 05px;
    opacity: 0.8;

}


@media screen and (max-width:500px){
    .influncer-main{
         grid-auto-flow: row;
    }
    
    .influncer-main .influ-image{
        grid-row-start:1;
    }
}