@charset "UTF-8";

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src:
        url(MaterialIcons-Regular.ttf) format('truetype'),
        url(MaterialIcons-Regular.woff) format('woff');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}


/*Fuentes*/
@font-face {
    font-family: 'Blogger';
    src: url(BloggerSans.ttf) format('truetype');
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'Blogger';
    src: url(BloggerSans-Bold.ttf) format('truetype');
    font-style: normal;
    font-weight: 800;
}
@font-face {
    font-family: 'Poppins';
    src: url(Poppins-Regular.ttf) format('truetype');
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'Poppins';
    src: url(Poppins-Bold.ttf) format('truetype');
    font-style: normal;
    font-weight: 800;
}
@font-face {
    font-family: 'Rogeu';
    src: url(Rogeu.ttf) format('truetype');
    font-style: normal;
    font-weight: 400;
}
html, body{height: 100%;}
body{font-family: 'Blogger', Verdana, Geneva, Tahoma, sans-serif; font-weight: 400; font-size: 16px;}
.titulo{font-family: 'Rogeu',italic; font-weight: 400;}
.sobretitulo{font-family: 'Poppins', Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400; color:#009788; font-size: 20px;}
.poppins{font-family: 'Poppins', Verdana, Geneva, Tahoma, sans-serif;}    
.sombra {
    text-shadow: 1px 1px black;
}
a{text-decoration: none;}
table{border-collapse: collapse;}
.tb{max-width: 98%;margin: auto;}
/*colores*/
.verde1{color:#355e50;}
.verde2{color:#009788;}
.verde3{color:#e0f2f2;}

.cajaverde1 {
    background-color: #355e50;
    color: #ffffff;
}
.cajaverde2 {
    background-color: #009788;
    color: #ffffff;
}
.cajaverde3 {
    background-color: #e0f2f2;
    color: #000000;
}
/* botones */
.botonclaro{
    padding: 20px 40px;
    background-color: #ffffff;
    border: #355e50 solid 1.5px;
    color: #355e50;
    border-radius: 8px;
    font-weight: 800;
}
.botonclaro:hover {
    background-color: #355e50;
    color: #ffffff;
    border: #ffffff solid 1.5px;
}
.botonverde {
    padding: 20px 40px;
    background-color: #009788;
    color: #ffffff;
    border: #ffffff solid 1.5px;
    border-radius: 8px;
    font-weight: 800;
}

.botonverde:hover {
    background-color: #ffffff;
    color: #355e50;
    border: #355e50 solid 1.5px;
}
/* Cajas*/
.panel {
    clear: both;
    width: 100%;
}
.contenedor1300 {
    clear: both;
    width: 98%;
    max-width: 1300px;
    margin: auto;
}

.contenedor1150 {
    clear: both;
    width: 98%;
    max-width: 1150px;
    margin: auto;
}

.w3-modal {
    padding-top: 10px;
}

.flex-horizontal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-vertical {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    height: 99.9vh;
}

/* Footer*/
.wave {
    width: 6000px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(../img/wd1.svg);
    background-position: bottom;
}

.w1 {
    animation: w1 7s linear infinite;
}

.w2 {
    animation: w2 7s linear -.125s infinite, desplazamiento 7s ease -.125s infinite;
    opacity: 0.5;
}

@keyframes w1 {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -1600px;
    }
}

@keyframes w2 {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -1600px;
    }
}

@keyframes desplazamiento {

    0%,
    100% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(5px);
    }
}
.latido {
    width: 64px;
}

.latido:hover {
    width: 64px;
    -webkit-animation-name: latido;
    -webkit-animation-duration: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-name: latido;
    animation-duration: .5s;
    animation-iteration-count: infinite;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes latido {
    from {
        width: 64px;
    }

    to {
        width: 60px;
        margin: 2px;
    }
}

/* Standard syntax */
@keyframes latido {
    from {
        width: 64px;
    }

    to {
        width: 60px;
        margin: 2px;
    }
}

.mapa {
    width: 100%;
    height: 450px;
}

/*horizontal*/
@media screen and (orientation:landscape) {
    .horizontal {
        display: block;
    }

    .vertical {
        display: none;
    }
}

/* Vertical */
@media screen and (orientation:portrait) {
    .horizontal {
        display: none;
    }

    .vertical {
        display: block;
    }
}