/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 10/07/2019, 10:16:28 AM
    Author     : Abraham Romero
*/

@charset "iso-8859-1";

@font-face {
    font-family: Roboto;
    src: url('Fuentes/Roboto/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: HelveticaCondensed;
    src: url('Fuentes/Helvetica/HelveticaNeueLTStd-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    /*display: none;*/
}

html,body {
    margin: 0;
    padding: 0;
    font-family: HelveticaCondensed;
}

html, body {
    height:100%;
}
.headerBand{
    width: 100%;
    height: 100px;        
}

.headerTop{
    width: 1090px;
    height: 100px;
    margin: 0 auto;
    font-size: 22px;
}

.imgEdo{
    height: 90px;
    padding-right: 5px;
    margin: 5px 5px 0 20px;
    vertical-align: middle;
}

.imgGob{
    height: 90px;
    border-right: 2px solid gray;
    padding-right: 5px;
    margin: 5px 5px 0 0;
    vertical-align: middle;
}

.headerText{
    display: inline-block; 
    line-height: normal; 
    vertical-align: middle;
}

.bg {
    animation:slide 6s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, white 50%, #B9E638 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
    height: 100px;
}

.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 8s;
}

.bg3 {
    animation-duration:10s;
}

@keyframes slide {
    0% {
        transform:translateX(-25%);
    }
    100% {
        transform:translateX(25%);
    }
}

@media only screen and (max-width: 1090px){
    .headerTop{
        width: 100%;
    }

    .headerText{
        width: 60%;                    
    }

}
@media only screen and (max-width: 700px){
    .imgEdo{
        width: 15%;
        height: auto;
        margin-top: 15px;
    }
    .imgGob{
        width: 15%;
        height: auto;
        margin-top: 15px;
    }
    .headerText{
        width: 60%;
        font-size: 15px;
        margin-top: 15px;
    }
}
@media only screen and (max-width: 513px){
    .headerTop{
        text-align: center;
    }
    .imgEdo{
        width: 15%;
        height: auto;
        margin-top: 5px;
    }
    .imgGob{
        width: 15%;
        height: auto;
        margin-top: 5px;
        border-right: 0px;
    }
    .headerText{
        width: 80%;
        font-size: 13px;
        margin-top: 5px;
    }
}

.bodyBackGround {
    background:radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 35%, rgb(239, 239, 239) 100%);
    overflow: hidden;
}

.ocean { 
    height: 0;
    width:100%;
    position:absolute;
    bottom:0;
    left:0;
    background: #015871;
}

.wave {
    background: url(../Imagenes/waveSiigemNew2.svg) repeat-x; 
    position: absolute;
    top: -40px;
    width: 6400px;
    height: 40px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
    z-index: -50;
}

.wave:nth-of-type(2) {
    top: -17px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }
    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {
    0%, 100% {
        transform: translate3d(0,-25px,0);
    }
    50% {
        transform: translate3d(0,5px,0);
    }
}