/*RESET*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    //-webkit-text-stroke-width: .05px;
    //-webkit-text-stroke-color: white;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0px;
    padding: 0px;
    list-style: none;
    outline: none;
    text-decoration: none;
}

body {
    color: black;
    font-family: 'Muli', sans-serif;
    background: white;
}

.center {
    text-align: center;
}


/*RESPONSIVE*/

@media (min-width:501px) {
    .phone {
        display: none !important;
    }
}

@media (max-width:500px) {
    .desktop {
        display: none !important;
    }
}


/*VARIABLES*/

:root {
    --especialFont: 'Encode Sans', sans-serif;
    --grayText: #9b9b9b;
    --grayBg: #edecec;
    --accentColor: #F4824E;
    --boxRadius: 10px;
}


/*TEMPLATE*/

header {
    width: 100%;
    height: 60px;
    position: fixed;
    background-color: #fff;
    box-shadow: 0px 0px 10px #888888;
    z-index: 100;
}

header .content {
    position: relative;
}

header .logo a {
    height: 40px;
    position: absolute;
    top: 10px;
    left: 10px;
}

header .share {
    position: absolute;
    right: 10px;
    top: 15px;
}

header .share li {
    display: inline-block;
}

header .share li a {
    width: 30px;
    height: 30px;
    display: block;
    margin-left: 10px;
    background-size: auto;
    background-repeat: no-repeat;
}

.top {
    width: 50px;
    height: 50px;
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/ui/arrow_up.svg);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: none;
}

article .share {
    margin: 10px 0;
}

article .share li {
    display: inline-block;
    margin: 5px;
}

article .share li a {
    height: 50px;
    display: block;
    line-height: 50px;
    padding: 0 15px 0 50px;
    font-weight: 600;
    font-size: 12px;
    color: #000;
    font-weight: bold;
    border: 1px solid #000;
    background-repeat: no-repeat;
    background-position: 10px center;
    transition: border ease 1s;
    border-radius: var(--boxRadius);
}

.share li a.facebook {
    background-image: url(../img/ui/share_facebook.svg);
}

.share li a.facebook {
    background-image: url(../img/ui/share_facebook.svg);
}

.share li a.twitter {
    background-image: url(../img/ui/share_twitter.svg);
}

.share li a.whatsapp {
    background-image: url(../img/ui/share_whatsapp.svg);
}

main {
    padding-top: 60px;
}

section {
    color: white;
    padding: 10%;
    background: var(--accentColor);
}

section h1 {
    font-size: 40px !important;
}

article .content {
    max-width: 800px;
    width: 90%;
    margin: auto;
    padding: 30px 0;
}

article .social {
    max-width: 800px;
    width: 90%;
    margin: auto;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--grayBg);
}

article h1 {
    font-weight: 100;
    font-size: 28px;
    margin-bottom: 30px;
    font-family: var(--especialFont);
}

article h2 {
    font-weight: 600;
    font-size: 32px;
    margin: 30px 0;
    color: var(--accentColor);
}

article h3 {
    border-left: var(--accentColor) 10px solid;
    margin-top: 30px;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

article p {
    font-size: 16px;
    line-height: 22px;
    margin: 20px 0;
}

article p a {
    color: var(--accentColor);
    font-weight: 600;
    text-decoration: underline;
}

article img.wide {
    width: 100%;
    margin: 20px 0;
}

article img.left {
    width: 30%;
    float: left;
    margin: 0 20px 20px 0;
}

article img.right {
    width: 30%;
    float: right;
    margin: 0 0 20px 20px;
}

.list {
    margin: 30px 0;
    text-align: center;
}

.list li {
    width: 30%;
    margin: 1%;
    display: inline-block;
    vertical-align: top;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

@media (max-width:650px) {
    .list li {
        width: 80%;
    }
}

.list li a {
    min-height: 200px;
    display: block;
    text-align: left;
    color: white;
}

.links li {
    display: inline-block;
}

.columns {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--grayBg);
    border-bottom: 1px solid var(--grayBg);
    min-height: 300px;
}

.columns > div.image {
    background-size: cover;
    background-position: top center;
}

.columns > div.color {
    background-color: var(--accentColor);
}

.columns > div.color * {
    color: white;
}

.columns > div.padding {
    padding: 4%;
}

@media (max-width:650px) {
    .columns {
        display: block;
    }
    .columns > div {
        width: 100% !important;
        min-height: 30vh;
    }
}

.links li a {
    padding: 15px;
    padding-left: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: var(--accentColor);
    border: 1px solid var(--accentColor);
    font-weight: bold;
    display: block;
    border-radius: var(--boxRadius);
    background-image: url(../img/ui/btn_link.svg);
    background-size: 20px;
    background-position: 10px center;
    background-repeat: no-repeat;
}

.icons.large {
    width: 90%;
    margin: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.icons.large li {
    min-width: 200px;
    max-width: 280px;
    margin: 10px;
    text-align: center;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
}

.icons.large li i {
    display: block;
    color: var(--accentColor);
    font-size: 90px;
    margin-bottom: 20px;
}

.icons.large li span {
    display: block;
    font-family: var(--especialFont);
    color: var(--grayText);
    font-size: 22px;
    margin-bottom: 10px;
}

.icons.small {
    width: 90%;
    margin: 30px auto 10px auto;
}

.icons.small li {
    margin: 10px;
    padding-left: 35px;
    position: relative;
    font-size: 15px;
}

.icons.small li i {
    color: var(--accentColor);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.parallax {
    height: 400px;
    background-image: url(https://www.elfinancierocr.com/gnfactory/brandvoice/2018/soluciones-tecnologicas-para-los-trabajos-del-futuro/img/content/parallax.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #cbcaca;
}

@media (max-width:500px) {
    .parallax {
        background-attachment: scroll;
    }
}

blockquote {
    width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-family: var(--especialFont);
    font-size: 14px;
    font-weight: 400;
    border-left: var(--accentColor) 10px solid;
    line-height: 26px;
}

blockquote span {
    margin-top: 15px;
    font-size: 14px;
    color: var(--grayText);
}

.comments {
    width: 100%;
    max-width: 600px;
    min-height: 50px;
    margin: 20px auto;
    background: var(--grayBg);
}

.embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 30px;
}

.embed iframe,
.embed object,
.embed embed,
.embed .powa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sponsor {
    position: relative;
    z-index: 10;
}

.sponsor span {
    height: 40px;
    display: block;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    color: black;
    background: var(--grayBg);
}

.sponsor a {
    display: block;
    padding: 5px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #e2e2e2;
}

.brandvoice {
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
    background: white;
}

.brandvoice span {
    padding: 10px;
    display: block;
    text-align: center;
    font-size: 12px;
    background: var(--grayBg);
}

.brandvoice a {
    color: black;
    font-weight: bold;
}

.brandvoice a.logo {
    display: block;
    padding: 5px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid var(--grayBg);
}

.brandvoice img {
    margin: 20px;
}

.suscribe {
    width: 90%;
    max-width: 350px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    background: var(--grayBg);
    border-radius: var(--boxRadius);
}

.suscribe h1 {
    font-size: 20px;
    margin-bottom: 10px;
}

.suscribe a {
    height: 40px;
    display: block;
    line-height: 40px;
    color: white;
    margin-top: 20px;
    font-weight: bold;
    background: var(--accentColor);
    border-radius: var(--boxRadius);
}

.banner {
    margin: 30px 0;
    text-align: center;
}

.banner > p {
    width: 300px;
    height: 25px;
    margin: 1px auto;
    color: #fff;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    background: #000;
}

@media (min-width:751px) {
    .banner.phone {
        display: none !important;
    }
    .banner.desktop {
        display: block !important;
    }
}

@media (max-width:750px) {
    .banner.phone {
        display: block!important;
    }
    .banner.desktop {
        display: none !important;
    }
}

footer {
    position: relative;
    padding: 20px;
    background: white;
    color: black;
}

footer > p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--grayText);
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 1px;
}

#square {
    width: 100%;
    margin: auto;
    padding: 30px;
    background: #F4824E;
    background-image: url(https://www.elfinancierocr.com/gnfactory/brandvoice/2018/soluciones-tecnologicas-para-los-trabajos-del-futuro/img/content/bg.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 350px;
}

#square .content {
    max-width: 600px;
    margin: auto;
}

#square p {
    max-width: 600px;
    margin: auto;
    color: #fff;
    margin-top: 12px;
    text-shadow: #b14a1b 1px 1px;
}

#square h2 {
    color: #fff;
    text-align: center;
    margin-top: 150px;
}

#square h4 {
    text-align: center;
    font-size: 24px;
    margin: 30px auto 10px auto;
    color: #fff;
}

#square li {
    display: inline-block;
    margin: 15px 0 15px 5px;
}

#square a:link {
    color: #fff;
}

#square a:visited {
    color: #fff;
}

#square a:hover {
    text-decoration: underline;
}