.expertise-section{
    width: min(100%, 1500px);
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f1f1f157;
    border-radius: 10px;
    padding: 2rem;

}

.expertise-section .expertise-content{
    width: 100%;
  
}

.expertise-content h2{
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 1rem;
}
.expertise-content h2 span{
    color: #148d24;
}

.expertise-content h5{
    font-size: clamp(0.8rem, 1.2vw, 1.2rem);
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 1rem;
}
.expertise-content h5::before, .expertise-content h5::after{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 2px;
    background-color: #148d24;
    margin-right: 10px;
}
.expertise-content h5::after{
    margin-right: 0;
    margin-left: 10px;
}
.expertise-area span{
    color: var(--text-black);
    font-weight: 600;
    font-size: clamp(0.658rem, 1vw, 1rem);
    padding: 0.1rem 0.2rem;
}
.expertise-area span:nth-child(1), .expertise-area span:nth-child(2), .expertise-area span:nth-child(3){
    border-right: 2px solid var(--first-color-dark);
}

.active-expertise{
    color: #1ca92f !important;
}

.expertise-image{
    width: clamp(200px, 30vw, 500px);
    height: clamp(200px, 30vw, 500px);
}

.expertise-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.development-tool{
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    display: none;
}
.development-tool.active{
    display: flex;
}
.tools{
    width: clamp(50px, 5vw, 80px);
    height: clamp(50px, 5vw, 80px);
    margin-top: 1rem;
}
.tools img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


@media screen and (max-width: 450px){
    
    .expertise-image{
       display: none;
    }
   
    
}