/* ==========================================================
   TRINITY ECUADOR
   RESET CSS
   Autor: Trinity Ecuador
   Versión: 1.0
========================================================== */

/* ==========================================================
   RESET GENERAL
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

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

html{

    font-size:16px;

    scroll-behavior:smooth;

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

}

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

body{

    font-family:var(--font-family);

    font-size:var(--fs-16);

    font-weight:var(--font-regular);

    color:var(--gray-700);

    background:var(--color-background);

    line-height:1.7;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

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

img{

    display:block;

    width:100%;

    max-width:100%;

    height:auto;

    border:none;

}

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

a{

    color:inherit;

    text-decoration:none;

    transition:all var(--transition-fast);

}

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

ul,
ol{

    list-style:none;

}

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

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

/* ==========================================================
   INPUTS
========================================================== */

input,
textarea,
select{

    font:inherit;

    outline:none;

    border:none;

    background:none;

}

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

table{

    width:100%;

    border-collapse:collapse;

}

/* ==========================================================
   TÍTULOS
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--gray-900);

    line-height:1.2;

    font-weight:var(--font-bold);

}

h1{

    font-size:var(--fs-64);

}

h2{

    font-size:var(--fs-48);

}

h3{

    font-size:var(--fs-32);

}

h4{

    font-size:var(--fs-24);

}

h5{

    font-size:var(--fs-20);

}

h6{

    font-size:var(--fs-18);

}

/* ==========================================================
   PÁRRAFOS
========================================================== */

p{

    color:var(--gray-500);

    margin-bottom:1rem;

}

/* ==========================================================
   ICONOS
========================================================== */

i{

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

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

svg{

    display:block;

    width:100%;

    height:auto;

}

/* ==========================================================
   IFRAME
========================================================== */

iframe{

    border:none;

}

/* ==========================================================
   HR
========================================================== */

hr{

    border:none;

    height:1px;

    background:var(--color-border);

}

/* ==========================================================
   SELECCIÓN DE TEXTO
========================================================== */

::selection{

    background:var(--color-primary);

    color:var(--color-white);

}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--gray-100);

}

::-webkit-scrollbar-thumb{

    background:var(--color-primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--color-primary-dark);

}

/* ==========================================================
   PLACEHOLDER
========================================================== */

::placeholder{

    color:var(--gray-400);

}

/* ==========================================================
   FOCUS
========================================================== */

:focus-visible{

    outline:2px solid var(--color-primary-light);

    outline-offset:3px;

}

/* ==========================================================
   UTILIDADES BÁSICAS
========================================================== */

.hidden{

    display:none !important;

}

.text-center{

    text-align:center;

}

.text-left{

    text-align:left;

}

.text-right{

    text-align:right;

}

.w-100{

    width:100%;

}

.h-100{

    height:100%;

}

.d-none{

    display:none;

}

.d-block{

    display:block;

}

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-center{

    justify-content:center;

}

.justify-between{

    justify-content:space-between;

}

.flex-column{

    flex-direction:column;

}

/* ==========================================================
   FIN RESET
========================================================== */