.consulta-wrapper {
    display: flex;
    flex-direction: column;

    background-color: #85DAB6;

    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    color: #1C1C1C;

    padding: 5%;
    padding-bottom: 20px;
    padding-top: 4em;
    gap: 40px;
}

.consulta-banner-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-evenly;

    @media screen and (max-width: 950px){
        flex-direction: column;
        align-items: center;
    }
}

.consulta-banner-title{
    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 440.5px; 
    padding: 10px;
    gap: 10px;

}

.consulta-banner-title h1{
    font-family: Raleway, sans-serif;
    font-size: 48px;
    font-weight: 700;

    @media screen and (max-width: 320px){
        font-size: 36px;
        text-align: center ;
    }
}

.consulta-banner-title img{
    width: 100%;
}

.consulta-banner-list{
    display: flex;
}

.consulta-banner-list h1{
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 110%;
    text-align: center;
}

.consulta-banner-list li{
    display: flex;
    align-items: center;

    margin-bottom: 2.5em;
    gap: 20px;
}

.consulta-banner-list span{
    color: #168C5A;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    
}

.consulta-banner-list span:hover{
    color: #F28E1F;
}

.consulta-list-marker{
    font-family: Raleway, sans-serif;
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    text-align: center;

    background-color: #F28E1F;

    min-height: 60px;
    min-width: 60px;

    border-radius: 50%;
}

.consulta-banner-pointer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.consulta-banner-pointer p{
    text-align: center;
    font-weight: 500;
    width: 313px;
}

.consulta-banner-pointer img{
    width: 60px;
    height: 60px;
}

.consulta-bottom-wrapper {
    background-color: #E6E6E6;

    display: flex;
    flex-direction: column;

    padding: 40px 100px;
    gap: 40px;

    
    @media screen and (max-width: 834px){
        padding: 40px 60px;
    }
    
    @media screen and (max-width: 320px){
        padding: 40px 10px;
    }
}

.consulta-bottom-wrapper h1{
    text-align: center;
    font-family: Raleway, sans-serif;
    font-weight: 700;
    font-size: 48px;

    @media screen and (max-width: 400px) {
        font-size: 36px;
    }
}

.consulta-infos {
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 40px;
    grid-row-gap: 40px;

    @media screen and (max-width: 680px){
        grid-template-columns: auto;
    }
}

.consulta-single-info{
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    line-height: 27.24px;

}

.consulta-single-info h2{
    font-weight: 700;
    display: inline;
}
.consulta-single-info p{
    display: inline;
}