a.a-normal{
    color: inherit;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
}
a.a-normal:hover{
    color: inherit;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
}
a.a-normal:visited{
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
}
.azul-sibees{
    background-color: mediumblue;
}
/* ---------Hover Overlay text Effect--------- */

.overlay-item {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;

 }
 .overlay-item .mask {
    display: block;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    margin: auto;
 }
 .overlay-item img {
    /*display: block;
    width: 100%;*/
    height: auto;
    /*x-margin-right: auto;
    x-margin-left: auto;*/
 }
 .overlay-item h5 {
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding: 2px;
    margin: 0px 0px 20px 0px;
    display: block;
    background-color: #333;
    color: #fff;
 }
 .overlay-item p {
    vertical-align: middle;
 }
 .overlay-item a.btn {
   margin: 10px 0;
 }

 .overlay-effect img {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -o-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
 }
 .overlay-effect .mask {
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
 }
 .overlay-effect h3 {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
 }
 .overlay-effect p {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
 }
 .overlay-effect a.btn {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
 }
 .overlay-effect:hover img {
    -webkit-transform: scale(10);
    -moz-transform: scale(10);
    -o-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
 }
 .overlay-effect:hover .mask {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
 }
 .overlay-effect:hover h3,.overlay-effect:hover p,.overlay-effect:hover a.btn {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
 }