@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
    --color-principal:#1d1f40;
    --white-color: #fff;
    --title-size:3.5rem;
    --p-size:1rem;
}



.container1{
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}



/* titulos */


.h3-2{
    font-size: 1.6rem;
    color: #5a5a5a;
    font-weight: 600;
}



.raya_1{
    width: 80%;
    height: 2px;
    background: #fff;
}


/* titulos */


.crm{
    background: var(--color-principal);
    padding: 70px 0;

}


.crm_wrap{
    font-family: 'poppins';
}



.raya{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: start;
    margin-bottom: 20px;

}

.raya_2{
    width: 80%;
    height: 2px;
    background: white;
}

.crm_wrap h3{
    font-size: 1.6rem;
    color: white;
    font-weight: 600;
}

.crm_wrap h2{  
    font-size: var(--title-size);
    color: var(--white-color);  
}

.crm_wrap h2 span{
    font-size: 2rem;
    margin-bottom: 30px;
}

.crm_wrap p{
    width: 60%;
    text-align: justify;
    font-size: var(--p-size);
    margin-bottom: 30px;
    color: var(--white-color);
}

.crm_images{
    display: flex;
    gap: 3px;
    justify-content: space-between;


}

.crm_images img {
    height: 350px;
    border-radius: 25px;
    background: #fff;
}


/*todo ASESORES  */


.asesores_wrap h2{
    font-size: var(--title-size);
    color: #5a5a5a;
    text-align: center;
    margin-bottom: 30px;
}

.asesores_wrap h2 span{
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 500;
}


.asesores_wrap p{
    text-align: center;
    padding: 0 200px;
    font-size: var(--p-size);
} 

.asesores_img{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin: 50px 0;
}

.asesores_img img{
    width: 500px;
    height: 100%;
    /* border-radius: 10px;
    border: 1px solid #000; */
}

@media  (max-width:1580px){

    .container1{
        max-width: 1200px;
    }

    .crm{
        padding: 70px 100px;
    }

    .raya{
        justify-content: space-evenly;
    }

    .raya_1{
        width: 70%;
    }

    .crm_wrap h2{
        font-size: 50px;
    }    

    .crm_wrap p{
        font-size: 1rem;
        width: 80%;
    }

    .crm_images img{
        height: 250px;
    }



    
}


@media (max-width:470px) {

    .crm{
        padding: 30px 0;
    }

    .crm_wrap{
        padding: 50px 40px;
    }

    .crm_wrap p{
        width: 100%;
        font-size: 12px;
    }

    .crm_wrap h2{
        font-size: 25px;
        text-align: center;
        margin: 20px;
    }

    .crm_wrap h2 span{
        font-size: 20px;
        text-align: center;
    }

    .crm_wrap h3{
        font-size: 1rem;
    }

    .raya_1{
        width: 50%;
    }

    .crm_images {
        gap: 30px;
        flex-direction: column;
    }
    
    .crm_images img{
        height: auto;
    }



}
