/*  -----------------  ESTILOS GENERALES   -----------------*/

html{
    font-size: 100%;
}

body{
    overflow-x: hidden;
    font-family: 'Bariol';
    font-style: normal;
    font-weight: 400;
    color:#000;
}

a:hover{
    color:inherit;
    text-decoration: none;
}

a:hover, a:focus, a:active, button:active, button:active, button:hover,
input:active, input:focus{
    outline:0!important;
    box-shadow:none!important;
}


/* -------------------------------------------------- */

.container{
    max-width: 1200px;
}

/* -------------------------------------------------- */

.hero{
    height: 100vh;
    width: 100%;
    background-color: #000;
    position: relative;
}

.hero-slider{
    width:100%;
    height: 100%;
    margin:0;
}

.hero-slider-item img{
    width:100%;
    height: 100%;
    object-fit: cover;
}

.slick-list,
.slick-track{
    height:100%;
}

.hero-slider-item{
    opacity: 0;
    transition: all .1s ease;
}

.hero-slider-item.slick-active{

}
.hero-slider-item img{
    transform: scale(1);
    transition: all 70s ease;
    
}
.hero-slider-item.slick-active img{
    transform: scale(1.4);
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in
    }

    8% {
        opacity: 1;
        transform: scale(1.05);
        animation-timing-function: ease-out
    }

    17% {
        opacity: 1;
        transform: scale(1.1)
    }

    25% {
        opacity: 0;
        transform: scale(1.1)
    }

    100% {
        opacity: 0
    }
}



.hero-slider:after{
    content:"";
    width:100%;
    height:100%;
    background-color: #000;
    position: absolute;
    top:0;
    left:0;
    opacity: .6;
}

.hero-content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-content h2{
    color:#fff;
    font-weight: 100;
    font-size:20px;
}

@media screen and (min-width : 580px) {
    .hero-content h2{
        font-size: 30px;
    }
}
@media screen and (min-width: 980px) {
	
}

@media screen and (min-width: 1280px) {
    .hero-content h2{
        font-size: 30px;
    }
}


.hero-content span{
    font-weight: 700;
    margin-left: 5px;
}

.hero-content img{
    width: 350px;
    margin-bottom: 20px;
}

@media screen and (min-width : 580px) {
    .hero-content img{
        width: 500px;
    }
}
@media screen and (min-width: 980px) {
	
}

@media screen and (min-width: 1280px) {
    .hero-content img{
        width: 500px;
    }
}

.hero-logo{
    position: absolute;
    bottom:40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img{
    width: 50px;
}


.links{
    display: flex;
    margin-top: 20px;
}

.links a{
    display: flex;
    border: 2px solid #fff;
    border-radius: 9999px;
    margin:0 7px;
    transition: all .5s ease;
}
.links a:hover{
    background-color: #f5887f;
    border-color:#f5887f;
}
.links a img{
    width: 40px;
    margin:0;
}