/* MAIN SECTION */

.consult-section {
    color: #bcd7f3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 80px 60px;
    background: linear-gradient(0deg, #224658, #000000);
    overflow-x: hidden;
}

.consult-section > .title-div {
    flex-shrink: 0;
    text-align: center;
}

.consult-section > .title-div p {
    font-family: font-2, monospace;
    font-size: 30px;
    margin-top: 25px;
}

.consult-section .process {
    width: 100%;
    max-width: 1450px;
}

.consult-section .process-row {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}

/* CARDS */

.consult-section .range {
    position: relative;
    flex: 1 1 240px;
    min-height: 320px;
    padding: 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.2s ease,
                border-color 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* CARD TITLES */

.consult-section .range h3 {

    margin: 15px 0 20px;

    font-size: 1.25rem;

    line-height: 1.3;

    color: #ffffff;

}



/* TEXT */

.consult-section .range p {

    color: #bcd7f3;

    margin: 0;

    font-size: 1rem;

    line-height: 1.55;

}

/* LIST FIX */
.consult-section .range ul {
    padding: 0;
    margin: 0;
    margin-top: 10px;
    list-style: none;
}

.consult-section .range li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #bcd7f3;
    line-height: 1.4;
}

.consult-section .range li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9dcbfc;
    font-size: 1.2rem;
}

.consult-section .hlight-b {
    color: #958e6a;
}

/* ARROWS */
.consult-section .arrow {
    width: 32px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.consult-section .arrow img {
    width: 20px;
    opacity: 0.5;
}

@media (max-width: 1630px) {


    .consult-section {
        padding: 70px 40px;
    }

    .consult-section > .title-div {
        margin-bottom: 30px;
    }

    .consult-section .process {
        max-width: 400px;
    }

    .consult-section .process-row {
        flex-direction: column;
        align-items: stretch;
    }

    .consult-section .range {
        min-height: auto;
    }

    .consult-section .arrow {
        width: 100%;
        height: 35px;
    }

    .consult-section .arrow img {
        transform: rotate(90deg);
    }

}

@media (max-width: 768px) {

    .consult-section {
        flex-direction: column-reverse;
        padding: 50px 20px;
        gap: 20px;
    }

    .consult-section > .title-div p {
        margin-left: 0;
    }

    .consult-section .range {
        padding: 30px 25px;
    }

    .consult-section .range h3 {
        font-size: 1.1rem;
    }

}