
.partner-container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
}

.partner img{
    width: 10rem;
    height: 6rem;
    filter: grayscale(100%);
    aspect-ratio: 1/1;
    transition: all 0.3s;
}
.partner img:hover{
    filter: grayscale(0%);
    transform: scale(1.01);
    cursor: pointer;
}

.features-section{
    width: min(100%, 1375px);
    margin: 0 auto;
    padding: 1rem;
   
}
.features-container{
   display: grid;
    grid-template-columns: repeat(auto-fit,minmax(clamp(350px,25vw,450px),1fr));
    gap: 2rem;
}
.feature-desc{
   text-align: justify;
   margin-bottom: 0.8rem;
}
.feature{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background-color: white;
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(241, 98, 174, 0.473);
    transition: all 0.3s;
}
.feature:hover{
    box-shadow: 0px 0px 10px rgba(241, 98, 174, 0.811) !important;
}
.feature-image {
    min-height: 8rem;
    max-height: 8rem;
    min-width: 8rem;
    max-width: 8rem;
    border-radius: 50%;
    overflow: hidden;
    padding: 2px;
    border: 2px solid var(--first-color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img-radius {
    min-height: 7rem;
    max-height: 7rem;
    min-width: 7rem;
    max-width: 7rem;
    border: 2px solid var(--first-color-dark);
    border-radius: 50%;
    overflow: hidden;
    padding: 6px;
   
}

.feature-img-radius img {
    aspect-ratio: 1/1;
    border-radius: 50%; 
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.feature-title{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--first-color-dark);
    margin-bottom: 0.5rem;
    text-align: start;
}
.features-head{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-self: center;
    font-weight: 600;
    color: var(--first-color-dark);
    margin: 3rem 2rem;
}

.features-head h2{
    font-size: 2.2rem;
    margin: 0.5rem 0;
    text-shadow: 1px 1px 1px rgba(168, 11, 171, 0.5);
    padding-bottom: 3px;
}
.features-head h2::after{
    content: "";
    display: block;
    width: 12rem;
    height: 5px;
    background: repeating-linear-gradient( 
        to right,
        var(--first-color-dark) 0rem,
        var(--first-color-dark) 3rem,  /* First dot width */
        transparent 3rem,
        transparent 4rem, /* Gap width */
        var(--first-color-dark) 4rem,
        var(--first-color-dark) 10rem /* Second dot width */
    );
    margin: 0.5rem auto 0 auto;
}
@media screen and (max-width: 1024px){
    .features-head h2{
        font-size: 2rem;
    }
    .features-section{
        padding: 1rem;
    }
    
}
@media screen and (max-width: 768px){
    .partner-section{
        padding: 1rem 1rem;
    }
    .features-section{
        padding: 2rem 1rem;
    }
    .feature-title{
        text-align: center;
    }
    .feature{
        flex-direction: column;
        gap: 1rem;
    }
    .features-container{
        grid-template-columns: 1fr;
    }
    .features-head h2{
        font-size: 2rem;
        text-wrap: nowrap;
        padding: 0 1rem;
    }
    .features-section{
        padding: 1rem;
        /* margin: 0rem 1rem; */
    }
   
}