﻿
/* Waves Animation start*/

.hero_area {
    position: relative;
    height: 100vh;
    background-color: #15284B;
}

.waves {
    position: absolute;
    width: 100%;
    height: 18vh;
    min-height: 100px;
    max-height: 150px;
    bottom: 0;
    left: 0;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -1s;
        animation-duration: 5s;
    }

   /* .parallax > use:nth-child(2) {
        animation-delay: -4s;
        animation-duration: 5s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -6s;
        animation-duration: 6s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -8s;
        animation-duration: 7s;
    }*/

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/*Shrinking for mobile*/

@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}

/* Waves Animation end*/

.titleLINER {
    font-family: 'Roboto Condensed', sans-serif;
    color: #15284B;
    margin: 100px auto;
    position: absolute;
    margin-top: -50%;
 
}

.subtitleLINER {
    font-family: 'Roboto Condensed', sans-serif;
    color: #15284B;
    margin: 100px auto;
    position: absolute;
  /*  margin-left: 60px;*/
    margin-top: -30%;
    /*display: flex;*/
}

.e-card-top {
    background-image: url('../../images/DiseñoLiner/Views/m1.jpg');
    background-size: cover;
    /*background-attachment: fixed;*/
    background-position: center center;
    margin: 100px auto;
    /* box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);*/
    position: relative;
    width: 500px;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    padding: 50px 80px 20px 80px;
    position: absolute;
    top: -2%;
    left: 5%;
    display: flex;
}

.e-card {
    background-image: url('../../images/DiseñoLiner/Views/loginfont.jpg');
    background-size: cover;
    margin: 100px auto;
    /* background: transparent;*/
    box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
    position: relative;
    width: 250px;
    height: 400px;
    right: -10px;
    border-radius: 5px;
    overflow: hidden;
    padding: 50px 80px 20px 80px;
    position: absolute;
    top: 1%;
    left: 40%;
    opacity: .9;
    display: flex;
}

.e-card-button {
    
}


