#boxCategorias {
    display: none;
}

#logo2 > .menu {
    display: none;
}

.input-group, #inputSearchMobile {
    display: none;
}

#stepsContainer {
    margin-top: 90px !important;
    width: 90%;
    padding: 40px 50px;
    border-bottom: 2px solid var(--main-light-gray);
    margin: auto;
    /* margin-bottom: 50px;         */
}

@media all and (max-width: 1015px) {
    #stepsContainer {
        margin-top: 80px !important;
        width: 100%;
        padding: 30px 40px;
    }
}

#steps {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    position: relative;
}



#steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#steps .separador {
    width: 23%;
    height: 1px;
    background-color: var(--main-gray);
    margin-top: 25px;
}

#steps .step h3 {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--main-gray);
    text-align: center;
    padding-top: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}

#steps .step.active h3 {
    background-color: var(--main-blue);
}

#steps .step.active h5 {
    color: black;
}

#steps .step h5 {
    font-weight: bold;
    font-size: 14px;
    color: var(--main-gray);
    position: absolute;
    bottom: -20px;
    width: 200px;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}

@media all and (max-width: 1015px) {
    #steps {
        width: 100%;
    }

    #steps .step h3 {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }

    #steps .step h5 {
        font-size: 9px;
        bottom: 0px;
        width: 95px !important;
    }

    #steps .separador {
        margin-top: 12px;
    }

    #steps .step h3 {
        font-size: 22px;
    }
}

.form-control {
    border-radius: 0;
    border: 2px solid black;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--main-blue);
}

label {
    font-weight: bold;
    font-size: 0.8rem;
}

input::placeholder, textarea::placeholder, select::placeholder {
    font-size: .8rem !important;
    font-style: italic !important;
}

input[type="text"], select, textarea {
    font-size: .8rem !important;
}

.buttonFluid {
    margin-top: 50px;
    background-color: var(--main-blue);
    color: white;
    border: none;
    font-size: 14px;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}