/* ==================== Import fonts ==================== */
@font-face {
  font-family: "titleFamily";
  src: url(/fonts/Lato/Lato-Black.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "subTitleFamily";
  src: url(/fonts/Lato/Lato-Bold.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "parrafoFamily";
  src: url(/fonts/Lato/Lato-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}

/* Variables */
:root {
  --white: #FFFFFF;
  --black: #242424;
  --shadow2: rgba(0, 0, 0, 0.2);
  --shadow5: rgba(0, 0, 0, 0.5);
  --shadow7: rgba(0, 0, 0, 0.7);
  --grayGreen: #EEF2ED;
  --blue: #0071E3;
  --yellow: #FFBC0D;
  --title: "titleFamily";
  --subTitle: "subTitleFamily";
  --parrafo: "parrafoFamily";
}

/* Color de selección del contenido */
::selection {
  color: var(--white);
  background-color: var(--black);
}

/* Quitando espacios internos y externos de manera global */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

/* Estilos cuerpo */
body {
  display: flex;
  width: 100%;
  font-size: 100%;
  font-family: var(--parrafo);
  color: var(--black);
  background-color: var(--white);
}

/* Etiquetas a en block */
a {
  display: block;
}

/* Listas sin marcador */
ul,
ol {
  list-style-type: none;
}

/* Quitando decoración de algunas etiquetas */
p,
a,
i,
b,
u,
em,
h1,
h2,
h3,
h4,
h5,
h6,
span,
strong,
blockquote {
  text-decoration: none;
  color: inherit;
}

/* Quitando estilos a los svg */
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* Quitando estilos a las citaciones */
q:after,
q:before,
blockquote:after,
blockquote::before {
  content: "";
  content: none;
}

/* Tipos de imagenes cubriendo todo el contenedor */
img,
video,
iframe,
figure,
picture {
  max-width: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Estilos para formularios */
form,
input,
label,
select,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
  hyphens: auto;
  background-color: transparent;
  display: block;
  color: inherit;
  appearance: none;
}