﻿
.section-space {
    padding: 50px 0;
}

.portfolio-space {
    margin: 15px 0;
}

.hovereffect {
   width: 100%;
    height: 100%;
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    
    margin-bottom: 15px;
    color: #FFF;
    border-radius: 12px;
    
    align-items:center;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    
    /* min-height: 260px; */
    transition: all .5s linear;
    /* height: 100%; */
   

}

.hovereffect img{
    max-width: 100%;
    min-height: 200px;
    object-fit: cover;
}

    .hovereffect .overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
        background-color: #1415158a;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .hovereffect:hover .overlay {
        background-color: #006873d1;
    }

    .hovereffect img {
        display: block;
        position: relative;
    }

    .hovereffect h2 {
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        position: relative;
        font-size: 17px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.6);
        -webkit-transform: translateY(45px);
        -ms-transform: translateY(45px);
        transform: translateY(45px);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        margin: 0;
    }

    .hovereffect:hover h2 {
        -webkit-transform: translateY(138px);
        -ms-transform: translateY(138px);
        transform: translateY(138px);
    }

    .hovereffect a.info {
        display: inline-block;
        text-decoration: none;
        padding: 7px 14px;
        text-transform: uppercase;
        color: #fff;
       /* border: 1px solid #fff;*/
        background-color: transparent;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        font-weight: normal;
       /* margin: -28px 0 0 0;
        padding: 25px 40px;*/
    }

a.info span {
    display: block;
    margin: 5px 0;
    text-transform: capitalize;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid #FFF;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    display: inline-block;
    padding: 6px 25px;
    transition: all .3s linear;
    background: none;

}

.hovereffect:hover a.info {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hovereffect a.info:hover {
   /* box-shadow: 0 0 5px #fff;*/
}

/* dashboard */
.dashboard-effect {
    background: #03323D;
    padding: 15px;
}

.dashboard-icon {
    display: inline-block;
}

    .dashboard-icon a {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 95px;
        background: #057390;
        text-align: center;
        border-radius: 50%;
        box-shadow: 2px 0px 5px 2px rgb(0, 255, 255);
    }

        .dashboard-icon a i {
            color: #fff;
            font-size: 32px;
        }

.dashboard-title a {
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
}

.dashboard-title {
    margin-top: 32px;
}

    .dashboard-title a:hover {
        text-decoration: none;
        color: #fff;
    }

.dashboard-icon a:hover {
    box-shadow: none;
    transition: 1s;
    border: 2px solid #02d0d3;
}

/*responsive dashboard*/
@media only screen and (max-width: 1024px){
    .hovereffect {
        height: 135px !important;
    }
    .hovereffect a.info {
      /* padding: 5px 15px;
        margin: -30px 8px 0 8px;*/
    }
    .hovereffect:hover h2 {
        -webkit-transform: translateY(97px);
        -ms-transform: translateY(97px);
        transform: translateY(97px);
    }
}
@media only screen and (max-width: 425px) {
    .hovereffect {
        height: 145px !important;
    }
        .hovereffect h2 {
            font-size: 12px !important;
        }
        .hovereffect:hover h2 {
            -webkit-transform: translateY(117px);
            -ms-transform: translateY(117px);
            transform: translateY(117px);
        }
}
@media only screen and (max-width: 375px) {
    .hovereffect {
         height: 145px !important;
    }
    .hovereffect h2 {
        font-size: 10px !important;
    }
    .hovereffect:hover h2 {
        -webkit-transform: translateY(117px);
        -ms-transform: translateY(117px);
        transform: translateY(117px);
    }
    .hovereffect a.info {
      /*  padding: 5px 8px;
        margin: -30px 0px 0 0px;*/
        padding: 0;
        margin: 0;
    }
}

