:root{
    --blue: #0079BF;
    -yellow: #FFE723; 
}

*{
    margin: 0;
    padding: 0;
    text-decoration: none;

    font-family: 'Outfit', sans-serif;
}

body{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.width-container{
    height: 100%;
    width: 85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.half-container{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    position: relative;
}

.fourty-container{
    width: 45%;
    height: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    position: relative;
    text-align: justify;
}

.row{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.column{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.text{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150.02%;
    /* or 18px */
    display: flex;
    text-align: justify;
    color: #000000;
    margin-right: 2rem;
    width: 100%;

}

section {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.mt-2{
    margin-top: 2rem;
}

input[type="number"]{
    height: 3.7rem;
    display: block;
    border-radius: 5px;
    border: 0;
    text-align: center;
}

.row{
    display: flex;
}


@media only screen and (max-width: 85rem){
    .width-container{
        width: 95% !important;
        flex-direction: column;
        align-items: center !important;
    }

    .row{
    }

    .half-container{
        width: 100%;
    }

    .desktop{
        display: none !important;
    }

    input[type="number"]{
        width: 100%;
        margin-bottom: 1rem;
    }
}