:root{
    --PrimaryColor: #137695;
    --TitlesColor: #043c4d;
    --LegendsColor: #818181;
    --MenuHoverColor: #00c3ff;
    --ButonTextColor : #ffffff;
}

.hardware{
    width: 100%;
    background-color: var(--PrimaryColor);
    position: relative;
}

.hardware .container{
    display: flex;
    padding: 0;
    max-width: none;
}


.part-warp{
    text-align: center;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.part-warp:first-of-type{
    background-color: #043c4d;
}

.part-warp h3{
    font-size: 32px;
    color: white;
}

.part-warp p{
    max-width: 80%;
    margin: 0 auto;
    text-align: justify;
    color: rgb(211, 211, 211);
}

.soma{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 90px;
    font-weight: bolder;
    color: white;
}

@media (max-width:768px){
    .hardware .container{
        flex-direction: column;
    }
    .part-warp{
        height: 300px;
        gap: 0px;
    }
    .soma{
        position: absolute;
        top: calc(50% - 7px);
        left: 50%;
        transform: translate(-50%,-50%);
        font-size: 90px;
        font-weight: bolder;
        color: white;
    }
}