﻿@charset "utf-8";
@charset "utf-8";
/* CSS Document */



.container02 {
    width: 70%;
    max-height: 600px;

}

/* RESET------------------------------------------------------*/
* {
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/*------------------------------------------------------------*/


.thead-dark {
    color: white;
    background-color: #6A6A6A;
    border-color: gray;
}

/*-PrincipalContainer------------------------------------------*/
#PrincipalContainer02 {
    background: #FFFFFF;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.box01 {
    background-color: #FFFFFF;
    height: 450px;
    width: 10%;
}



/*BOX TEXTBOX BUTTON--------------------------------------------------*/
.box02 {
    background-color: #FFFFFF;
    height: 450px;
    width: 40%;
}

    .controlesUser {
        display: flex;
        justify-content: left;
    }

    .controlesUser div{
        display: flex;
        justify-content: left;
        padding: 30px;
        box-sizing: border-box;
    }
/*---------------------------------------------------------------------*/



/*DIV TEXTO IMAGEN Y PARRAFO--------------------------------------------------*/
.box03 {
    background-color: #FFFFFF;
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: left;    
}
    .box03 img {
        border-radius: 10%;
        width: 330px;
        height: 200px;
    }

    .box03 div {
        padding: 30px 30px;
    }

    .box03 div h4 {
        color: #4d4d5c;
        font-size: 20px;
        margin: 15px 0px;
    }

    .box03 div p {
        color: #4d4d5c87;
        font-size: 18px;
    }

    .boton-saber-mas{
        display : inline-block;
        text-decoration: none;
        color: #6cc091;
        padding: 10px 30px;
        border: 3px solid #6cc091;
        border-radius: 30px;
        margin-top: 15px;
        transition: all 0.4s;        
    }

    .boton-saber-mas:hover{
        background: #6cc091;
        color: #fff;
    }
/*--------------------------------------------------------------------------*/



/*-------BOTONES DIV--------------------------------------------*/
.botonesdiv3 {
    background: #FFFFFF;
}

    .botonesdiv3 .botonesGenerales3 {
        text-decoration: none;
        padding: 10px 30px;
        border: 1px solid #000000;
        color: #1e0763;
        transition: 0.4s;
    }

        .botonesdiv3 .botonesGenerales3:hover {
            background: #4fa776ad;
        }
/*--------------------------------------------------------------*/




.box04 {
    background-color: #FFFFFF;
    height: 450px;
    width: 10%;
}
/*--------------------------------------------------------------------------------*/







/*RESPONSIVE----------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------*/
@media (max-width: 1198px) {

    /*PrincipalContainer02-------------------------------*/
    #PrincipalContainer02 {
        
        display: flex;        
        flex-direction: column;
    }
    /*---------------------------------------------------*/



    /*TableDAtaBASE--------------------------------------*/
    .box01 {
        display: none;
    }
    /*---------------------------------------------------*/



    /*BOX TEXTBOX BUTTON-----------------------------------*/
    .box02 {       
        height: 250px;
        width: 100%;
    }

    .controlesUser {
        display: block;
        justify-content: left;
    }

        .controlesUser div {
            display: block;
            justify-content: left;
            padding: 10px;
            box-sizing: border-box;
        }
    /*---------------------------------------------------*/



    /*DIV TEXTO IMAGEN Y PARRAFO-------------------------*/
    .box03 {
        background-color: #FFFFFF;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center
    }
    /*---------------------------------------------------*/



    .box04 {
       
        display: none;
    }
}