#opportunites .container .desktop{
    display: none;
}

#opportunites .container .mobile{
    display: block;
    width: 260px;
    height: 378px;
    margin: 0 auto;
}

#opportunites .container .mobile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media screen and (min-width: 768px){
    #opportunites .container .desktop{
        display: block;
        width: 100%;
        height: 170px;
    }

    #opportunites .container .desktop img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #opportunites .container .mobile{
        display: none;
    }
}