
@import url('https://fonts.googleapis.com/css?family=Eczar:400,700|Gentium+Basic');

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-weight: 400;
    background: #ffffff;
}



h2 {
    font-size: 30px;
    font-weight: 700;
    padding: 0;
    margin: 56px 0 24px -1.883px;
    text-align: left;
    line-height: 34.5px;
    letter-spacing: -0.45px;
    color: #000000;
    text-align: justify;
}



.section {
    margin: 0 auto;
    max-width: 900px;
    padding: 0 24px;
}

.section__text::first-letter {
            font-size: 32px;
}

.group {
    overflow: hidden;
}

.pull {
    float: left;
}

.push {
    float: right;
}

.container {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
}

.hero {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
}

h2 {
    font-family: "Eczar", sans-serif;
    font-size: 38.5px;
    font-weight: 700;
    padding: 0;
    margin: 56px 0 24px -1.883px;
    text-align: center;
    line-height: 34.5px;
    letter-spacing: -0.45px;
    color: #ffffff;
}

span {
    color: #0d4fd5;
}

.hero__image {
        position: absolute;
        width: 100%;
        height: 100vh;
        clip: rect(0, auto, auto, 0);
        background-image: url(/Imagenes/Fondo_3.webp);
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
    }

.hero__image--overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 1;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.644) 50%, rgba(0, 0, 0, 0.041) 100%);
        }

.hero__child {
        position: fixed;

        background-repeat: no-repeat;
        backface-visibility: hidden;
        opacity: .8;
    }

.hero__child--primary {
            top: -120px;
            left: 50px;
            width: 819px;
            height: 1621px;
            background-image: url(/);
        }

.hero__child--secondary {
            top: 0;
            right: 50px;
            width: 300px;
            height: 500px;
            background-size: 300px auto;
            background-image: url(/);
        }

.hero__title {
        position: absolute;
        bottom: 18vh;
        left: 24vw;
        right: 24vw;
        z-index: 1;
        opacity: 0;
        font-size: calc(6px * 10);
        line-height: calc(6px * 12);
        color: white;
        font-family: 'Eczar', sans-serif;
        font-weight: 200;
        text-align: center;
        margin-top: 200px;
    }

@media screen and (min-width: 768px) {

.hero__title {
            bottom: 15vh;
            font-size: calc(6px * 16);
            line-height: calc(6px * 18)
    }    
        }

.hero__subtitle {
        position: absolute;
        bottom: 15vh;
        left: 24vw;
        right: 24vw;

        color: white;

        font-family: 'Gentium Basic', serif;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }


.animation--floating {
        animation-name: floating;
        animation-duration: 200000ms;
        animation-iteration-count: infinite;
    }

.animation--title-in {
        animation: title-in 800ms forwards ease-in-out 750ms;
    }

.animation--from-top {
        animation: from-top 350ms forwards cubic-bezier(0.65, 0.05, 0.36, 1);
    }

.animation--from-bottom {
        animation: from-bottom 350ms forwards cubic-bezier(0.65, 0.05, 0.36, 1);
    }


@keyframes floating {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes title-in {
    0% {
        visibility: hidden;
        opacity: 0;
        transform: translateY(-25%);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes from-top {
    0% {
        visibility: hidden;
        opacity: 0;
        transform: translateY(-30%);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
}

@keyframes from-bottom {
    0% {
        visibility: hidden;
        opacity: 0;
        transform: translateY(15%);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}