@charset "utf-8";
/* LINK SISTEMAS WEB - CSS Document */
/* color principal # ED3237 */

:root {
  --primary-color:              #ED3237;
  --a-color:                    #ED3237;
  --hover-color:                #8E1E21;
}

a {
  color: var(--a-color);
  text-decoration: none;
}
a:hover {
  color: var(--hover-color);
}


/* hero */

.heroText img {
    display: block;
    margin: 0 auto;
}


/* video popup */
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}



