﻿/*.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}

    .hovereffect .overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
        opacity: 0;
        background-color: rgba(0,0,0,0.5);
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out
    }

    .hovereffect img {
        display: block;
        position: relative;
        -webkit-transition: all .4s linear;
        transition: all .4s linear;
    }

    .hovereffect h2 {
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        position: relative;
        font-size: 17px;
        background: rgba(0,0,0,0.6);
        -webkit-transform: translatey(-100px);
        -ms-transform: translatey(-100px);
        transform: translatey(-100px);
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        padding: 10px;
    }

    .hovereffect a.info {
        text-decoration: none;
        display: inline-block;
        text-transform: uppercase;
        
        color: white !important;
        border: 1px solid #fff;
        background-color: transparent;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        margin: 50px 0 0;
        padding: 7px 14px;
    }

        .hovereffect a.info:hover {
            box-shadow: 0 0 5px #fff;
        }

    .hovereffect:hover img {
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .hovereffect:hover .overlay {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .hovereffect:hover h2, .hovereffect:hover a.info {
        opacity: 1;
        filter: alpha(opacity=100);
        -ms-transform: translatey(0);
        -webkit-transform: translatey(0);
        transform: translatey(0);
    }

    .hovereffect:hover a.info {
        -webkit-transition-delay: .2s;
        transition-delay: .2s;
    }*/






/*Image effect*/
.imgEffectContainer {
    position: relative;
    margin-top: 50px;
    /*width: 500px;
    height: 300px;*/
    /*width: 230px;
    height: 230px;*/
    width: 235px;
    height: 235px;
}

.imgEffectOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    /*background: rgba(0, 0, 0, 0);*/
    transition: background 0.5s ease;
    /*transition: all 0.4s ease-in-out;*/
}

.imgEffectContainer:hover .imgEffectOverlay {
    display: block;
    /*background: rgba(0, 0, 0, .3);*/
    /*background: rgba(0,0,0,0.7);*/
    background: rgba(0, 0, 0, 0.37);
}

/*.imgEffectContainer img {
    position: absolute;
    left: 0;
    width: 235px;
    height: 235px;
}*/

.title {
    position: absolute;
    width: 500px;
    left: 0;
    top: 120px;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    z-index: 1;
    transition: top .5s ease;
}

.imgEffectContainer:hover .title {
    top: 90px;
}

.imgEffectContainer .button {
    position: absolute;
    /*width: 500px;*/
    width: 230px;
    left: 0;
    /*top: 180px;*/
    top: 104px;
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
}

    .imgEffectContainer .button a {
        width: 200px;
        /*padding: 12px 48px;*/
        padding: 6px 18px;
        text-align: center;
        color: white !important;
        border: solid 2px white;
        z-index: 1;
        text-decoration: none;
        /*background-color: black;*/
        /*background-color: #2d2d38;*/
    }

.imgEffectContainer:hover .button {
    opacity: 1;
}


/*Image Thumb*/
.imageThumbContainer {
    height: 235px;
    width: 235px;
    overflow: hidden;
    position: relative;
}

.imgThumpPortrait {
    height: auto !important;
    /*margin-top: -47px;*/
    /*margin-top: -55px;*/
    margin-top: -34px;
    width: 235px;
}

.imgThumpLandscape {
    width: auto !important;
    margin-left: -47px;
    height: 235px;
}

.imgThumpSquare {
    width: 235px;
    height: 235px;
}

.imageLargeContainer {
    height: 435px;
    width: 491px;
    /*overflow: hidden;
        position: relative;*/
}

/*.imageLargeContainer img {
            height: auto !important;
        }*/

/*Image Thumb end*/






