body
{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;

}


#welcome
{
    position: relative;
    width: 100%;
    min-height: 350px;
    background-image: url("/img/techno/weld.png");
    background-repeat: no-repeat;
    background-size: cover;
}


#welcome h1
{
    position: relative;
    text-align: center;
    top:170px;
    font: normal normal 600 104px/0px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    z-index: 1;
}

#applications
{
    position: relative;
    width: 100%;
    min-height: 1080px;
    opacity: 1;
}

#applications .container
{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 1600px;
    padding-top: 150px;
    margin: auto;
    z-index: 1;
}

#applications .container .applications-card
{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    height: 100%;
    margin-bottom: 150px;
}

#applications .container .applications-card img
{
    width: 550px;
    height: 350px;
}

#applications .container .applications-card .applications-card-text
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1000px;
    margin-left: 110px;
}

#applications .container .applications-card .applications-card-text h2
{
    text-align: left;
    font: normal normal 600 47px/0px Poppins;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

#applications .container .applications-card .applications-card-text p
{
    font: normal normal 300 20px/30px Poppins;
    letter-spacing: 0px;
    color: #707070;
    opacity: 1;
}

#applications .container .applications-card .applications-card-text span
{
    font: normal normal 600 20px/30px Poppins;
    letter-spacing: 0px;
    color: #0AB47A;
    opacity: 1;
}


/* responsive design */
@media (max-width: 1600px)
{
    #applications .container
    {
        width: 100%;
    }
    #applications .container .applications-card
    {
        width: 80%;
        margin: auto;
        position: relative;
        flex-direction: column;
        align-items: center;
        margin-bottom: 100px;

    }
    #applications .container .applications-card img
    {
        position: relative;
        width: 100%;
        height: max-content;
    }
    #applications .container .applications-card .applications-card-text
    {
        justify-content: space-around;
        position: absolute;
        width: 100%;
        height: 100%;
        margin-left: 0;
        z-index: 1;
        background:rgba(255,255,255,70%) 0% 0% no-repeat padding-box;
    }
    #applications .container .applications-card .applications-card-text h2
    {
        text-align: center;
    }
    #applications .container .applications-card .applications-card-text p
    {
       width: 80%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        color: #000000;
    }
}