@charset "UTF-8";

:root {
    --bayer-white: #ffffff;
    --bayer-lightgray: #E1E2E3;
    --bayer-gray: #CFD7DF;
    --bayer-dark: #153048;
    --bayer-black: #0e0e0e;
    --bayer-green: #aec90b;
    --bayer-blue: #00BCFF;
    --tipo-principal: 'Work Sans', sans-serif;
    --tipo-secundaria: 'Work Sans', 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;
}


h1, h2, h3, h4, h5, h6, p, 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(--bayer-white);
  color: var(--bayer-dark);
}
::selection {
  color: var(--bayer-dark);
  background-color: var(--bayer-green);
}


form, input, textarea, label {
  font-family: inherit;
  font-size: inherit;
  
  background-color: transparent;
  color: inherit;
  display: block;
  /* opcional */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}


table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}


svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* (Probándolo, no usar en producción) En el caso de añadir una  */
/* p svg{
  display: inline;
  width: initial;
} */
/* Configuramos la tipografía para toda la web */
body {
  background-color: var(--bayer-white);
  min-height: 100vh;
  font-size: 100%;
  font-family: var(--tipo-principal);
  color: var(--bayer-dark);
  /* opcional */
  line-height: 1.4em;
  
  font-smooth: always;
  /* opcional */
  -webkit-font-smoothing: antialiased;
  /* opcional */
  -moz-osx-font-smoothing: grayscale;
}