body {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: #444444;
}

/*----------- HERO -----------*/
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url(../img/bg_hero.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.slider {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
    mix-blend-mode: multiply;
}

.slider img.active {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.navigation {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.navigation button {
    padding: 10px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-size: 50px;
    background: none;
}

.indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.indicators span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.indicators span.active {
    background-color: #999999;
}

.hero_txt {
    height: 100vh;
    position: absolute;
    color: #FFFFFF;
    z-index: 99;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 50px;
}

.hero_txt h1 {
    font-size: 250px;
    font-weight: 900;
    line-height: 185px;
}

.hero_txt p {
    margin: 0px;
    padding: 0px 15px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}


.Footer {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding: 50px;
}

.Footer h2 {
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: 55px;
}

.Footer p {
    text-align: center;
    width: 100%;
}

.Footer i {
    font-size: 36px;
    color: #FFFFFF;
    background-color: #999999;
    width: 68px;
    height: 68px;
    padding: 15px;
    margin: 15px;
    text-align: center;
    border-radius: 244px;
}

.Footer i:hover {
    background-color: #c6b101;
}

.Footer a,
.Footer a:link,
.Footer a:visited,
.Footer a:active {
    color: #FFFFFF;
    text-decoration: none;
}

.Footer a:hover {
    text-decoration: underline;
}

.matilde {
    font-size: 25px !important;
}



@media screen and (max-width:650px) {

    .Footer h2 {
        font-size: 35px !important;
    }

    .Footer {
        padding: 0px;
    }

    .comilla1 img {
        height: 20px;
        rotate: 180deg;
    }

    .comilla2 .comilla1 {
        padding: 0px 0px;
    }

    .comilla2 img {
        height: 20px;
    }

    .proyecto .proyecto-detalle {
        background: rgba(255, 255, 255, 0.7);
        width: 100%;
        position: absolute;
        padding: 10px;
        bottom: 0px;
        opacity: 1;
        transition: 0.4s ease-in-out all;
    }

    .cv .columna:first-child {
        margin-right: 0px;
    }

    .hr_loco {
        display: block;
    }

}