/* MINI MUNDOS */


.minimundo { position:relative;  }
.minimundo  a > .image{
    margin:10px 0px;
    position:relative;
    background: white; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(white,white, #f5f5f5); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(white,white, #f5f5f5); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(white, white,#f5f5f5); /* For Firefox 3.6 to 15 */
    background: linear-gradient(white,white, #f5f5f5); /* Standard syntax */
    border:0px solid #ddd;
}
.minimundo  a{
    color:white;
}

/*.minimundo a:hover,.minimundo a:focus{
    color: #266D91;
}*/

.minimundo a > .image img {
    display: block;
    width: 100%;
    margin:0px auto;
}

.minimundo a > .image .Square {
    position:absolute;
    top:60px;
    bottom:60px;
    right:60px;
    left: 60px;
    border-radius:7px;
    border: 1px solid #256D91;
    -webkit-transition: top 0.5s, bottom 0.5s, rigth 0.5s, left 0.5s; /* Safari */
    transition: top 0.5s, bottom 0.5s, rigth 0.5s, left 0.5s;
}

.minimundo a > .image:hover .Square{
    position:absolute;
    top:20px;
    bottom:20px;
    right:20px;
    left: 20px;
    border-radius:7px;
    border: 1px solid #ffffff;
}

.minimundo a > .image.min-hover .Square{
    position:absolute;
    top:20px;
    bottom:20px;
    right:20px;
    left: 20px;
    border-radius:7px;
    border: 1px solid #ffffff;
}

/*
.minimundo a > .image .Square-caption  {
    position: relative;
    border: 1px solid #256D91;
    margin: 0px 5%;
    height: 100%;
    border-radius:7px;
}*/


.minimundo a > .image .Square .graySquare {
    background: rgba(0,0,0,0.29);
    border-radius:7px;
    position: absolute;
    right: 18px;
    left: 18px;
    top: 18px;
    bottom: 18px;
    text-align:center;
    word-wrap: break-word;
    text-transform: uppercase;
    /*font-family: cabinregular,"Trebuchet MS","sans-serif";*/
    font-size: 27px;
    opacity: 1;
}

.minimundo a > .image:hover .Square .graySquare {
     opacity: 0;
}

.minimundo a > .image.min-hover .Square .graySquare {
    opacity: 0;
}


.minimundo a > .image .Square .graySquare-caption {
    background: rgba(0, 0, 0,0.5);
    border-radius: 7px;
    text-align: center;
    word-wrap: break-word;
    position: absolute;
    right: 18px;
    left: 18px;
    top: 18px;
    bottom: 18px;
    padding: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    opacity:0;
}

.minimundo a > .image:hover .Square .graySquare-caption {
    animation: affixFadeIn 1s  ease-in;
    -webkit-animation: affixFadeIn 1s;
    opacity:1;
}

.minimundo a > .image.min-hover .Square .graySquare-caption {
    animation: affixFadeIn 1s  ease-in;
    -webkit-animation: affixFadeIn 1s;
    opacity:1;
}

@keyframes affixFadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@-webkit-keyframes affixFadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/*
.minimundo a > .image .graySquare > p{
    margin:0px;
}*/

/* captions*/

.minimundo-caption-title{
 /*font-family: "Trebuchet MS", Helvetica, sans-serif;*/
 font-size: 34px;
}
/*
.minimundo-caption-description{
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    margin: 0 auto;
}*/


/* phone devices*/

@media(max-width:767px) {

    .minimundo a > .image .Square{
        top:10px;
        bottom:10px;
        right:10px;
        left: 10px;
    }
    .minimundo a > .image .Square-caption{
        top:10px;
        bottom:10px;
        right:10px;
        left: 10px;
    }

    .minimundo a > .image  .graySquare{
        font-size: 22px;
    }
    .minimundo a > .image .Square-caption .graySquare-caption{
        padding: 10px;
        top:10px;
        bottom:10px;
        right:10px;
        left: 10px;
    }

    .minimundo-caption-title{
        /*font-family: "Trebuchet MS", Helvetica, sans-serif;*/
        font-size: 22px;
    }

    .minimundo-caption-description {
        line-height: 1.5 ;
        display:none;
    }
}

/* TABLETS */

@media (min-width: 768px) and (max-width: 991px) {
    .minimundo a > .image .Square{
        top:20px;
        bottom:20px;
        right:20px;
        left: 20px;
    }
    .minimundo a > .image .Square-caption{
        top:10px;
        bottom:10px;
        right:10px;
        left: 10px;
    }
    .minimundo a > .image .Square-caption .graySquare-caption {
        display: block;
        display: -webkit-box;
        /*-webkit-line-clamp: 4;*/
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 10px;
        top:10px;
        bottom:10px;
        right:10px;
        left: 10px;
       /* line-height:1.6;*/

    }

    .minimundo a > .image .blueMarquee .graySquare{
        font-size: 28px;
    }

    .minimundo-caption-title{
        /*font-family: "Trebuchet MS", Helvetica, sans-serif;*/
        font-size: 28px;
    }

    .minimundo-caption-description {
        line-height: 1.4;
        font-size: 13px;
    }

}