@charset "UTF-8";

:root {
    --eein-cafe-con-leche: #9E754D;
    --eein-caqui: #D8A67E;
    --eein-oscuro: #000000;
    --eein-gris-oscuro: #4F4F50;
    --eein-gris-claro: #8B8B8D;
    --eein-white: #fff;
    --tipo-principal: 'Work Sans', sans-serif;
    --tipo-secundaria: 'Poppins', sans-serif;
}


@media (prefers-color-scheme: dark) {
  :root {
    
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
}


img, picture, video, iframe, figure {
  max-width: 100%;
  width: 100%;
  display: block;
  
  -o-object-fit: cover;
     object-fit: cover;
 
  -o-object-position: center center;
     object-position: center center;
}


a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

p a {
  display: inline;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6, span, a, blockquote, i, b, u, em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
  line-height: normal;
  /* word-wrap: break-word; */
  word-break: auto-phrase;
  text-wrap: balance;
}


blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

::-moz-selection {
  background-color: var(--eein-white);
  color: var(--eein-oscuro);
}
::selection {
  color: var(--eein-oscuro);
  background-color: var(--eein-caqui);
}

form, input, textarea, label {
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
  color: inherit;
  display: block;
}


table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}


svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

body {
  background-color: var(--eein-white);
  min-height: 100vh;
  font-size: 1rem;
  font-family: var(--tipo-principal);
  color: var(--eein-oscuro);
  /* opcional */
  line-height: 1.4em;
  font-smooth: always;
  /* opcional */
  -webkit-font-smoothing: antialiased;
  /* opcional */
  -moz-osx-font-smoothing: grayscale;
}