@media (min-width: 1280px){
    #section_2{
        width: 100%;
        min-height: 780px;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }
    
    .section_2-container{
        width: 100%;
        height: 60%;
    }

    .section_2_text_container{
        width: 60%;
        height: 88px;
        margin: auto;
        font-family: Nunito;
        font-size: 2.2vw;
        font-weight: 300;
        line-height: 44px;
        text-align: center;
        color: #2C2C2C;
    }
    
    .section_2_achievements{
        width: 62.8vw;
        height: 180px;  
        margin: auto;
        margin-top: 100px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .section_2_achievements>span{
        border: solid 1px #2C2C2C;
        border-radius: 4px;  
        height: 48px;  
        font-family: Nunito;
        font-size: 1vw;
        padding: 12px 16px 12px 16px;
        color: #2C2C2C;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .section_2_achievements>span:hover{
        background-color: #2C2C2C;
        color: #FFFFFF;
        transition: 0.5s;
        cursor: pointer;
    }
    
    .section_2_achievements>span>img{
        background-color: #2C2C2C;
        border-radius: 10px;
    }
}

@media (min-width: 600px) and (max-width: 1280px){
    #section_2{
        width: 100%;
        height: 700px;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }
    
    .section_2-container{
        width: 100%;
        height: 65%;
    }

    .section_2_text_container{
        width: 80%;
        height: 88px;
        margin: auto;
        font-family: Nunito;
        font-size: 3vw;
        font-weight: 300;
        line-height: 44px;
        text-align: center;
        color: #2C2C2C;
    }
    
    .section_2_achievements{
        width: 94%;
        min-height: 180px;  
        margin: auto;
        margin-top: 100px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .section_2_achievements>span{
        border: solid 1px #2C2C2C;
        border-radius: 4px;  
        height: 48px;  
        font-family: Nunito;
        font-size: clamp(10px, 1.5vw, 20px);
        padding: 12px 16px 12px 16px;
        color: #2C2C2C;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .section_2_achievements>span:hover{
        background-color: #2C2C2C;
        color: #FFFFFF;
        transition: 0.5s;
        cursor: pointer;
    }
    
    .section_2_achievements>span>img{
        background-color: #2C2C2C;
        border-radius: 10px;
    }
}

@media (max-width: 600px){

    #section_2{
        width: 100%;
        min-height: 780px;
        background-color: white;
        display: flex;
        flex-direction: column;
    }

    .section_2-container{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .section_2_text_container{
        width: 80%;
        min-height: 88px;
        margin: auto;
        font-family: Nunito;
        font-size: clamp(18px, 6vw, 34px);
        font-weight: 300;
        line-height: 44px;
        text-align: center;
        color: #2C2C2C;
    }
    
    .section_2_achievements{
        width: 90%;
        min-height: 180px;  
        margin: auto;
        margin-top: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .section_2_achievements>span{
        border: solid 1px #2C2C2C;
        border-radius: 4px;  
        height: 48px;  
        font-family: Nunito;
        font-size: clamp(10px, 4vw, 20px);
        padding: 12px 16px 12px 16px;
        color: #2C2C2C;
        display: flex;
        align-items: center;
        gap: 15px;
    }
   
    .section_2_achievements>span:hover{
        background-color: #2C2C2C;
        color: #FFFFFF;
        transition: 0.5s;
        cursor: pointer;
    }
    
    .section_2_achievements>span>img{
        background-color: #2C2C2C;
        border-radius: 10px;
    }
}