/*****************************************************************
    STARTER INMOBILIARIO
    RESET.CSS
*****************************************************************/


/*==============================================================
    BOX MODEL
==============================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}


/*==============================================================
    HTML
==============================================================*/

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}


/*==============================================================
    BODY
==============================================================*/

body{

    min-height:100vh;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}


/*==============================================================
    IMÁGENES
==============================================================*/

img{

    display:block;

    max-width:100%;

    height:auto;

    border:none;

}


/*==============================================================
    SVG
==============================================================*/

svg{

    display:block;

}


/*==============================================================
    FORMULARIOS
==============================================================*/

input,
textarea,
select,
button{

    font:inherit;

    outline:none;

}


/*==============================================================
    BOTONES
==============================================================*/

button{

    cursor:pointer;

    border:none;

    background:none;

}


/*==============================================================
    ENLACES
==============================================================*/

a{

    color:inherit;

    text-decoration:none;

}


/*==============================================================
    LISTAS
==============================================================*/

ul,
ol{

    list-style:none;

}


/*==============================================================
    TABLAS
==============================================================*/

table{

    width:100%;

    border-collapse:collapse;

    border-spacing:0;

}


/*==============================================================
    TEXTAREA
==============================================================*/

textarea{

    resize:vertical;

}


/*==============================================================
    IFRAMES
==============================================================*/

iframe{

    border:0;

}


/*==============================================================
    ELEMENTOS OCULTOS
==============================================================*/

[hidden]{

    display:none !important;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    box-shadow:none;

}