﻿
/*------------------------------------------------------------------------------------------------------*/

/* GENERAL */

/*------------------------------------------------------------------------------------------------------*/


/* SMALL MODULES */

.moduleSmallOuter {
    text-align:center;
    width:220px;
    margin-top:20px;
    margin-bottom:20px;
    margin-left:auto;
    margin-right:auto;
}
.moduleSmallOuter:hover > a > .moduleSmallInner {
    box-shadow:2px 2px 10px rgba(10, 10, 10, .7);
}
.moduleSmallOuter:hover > a > .moduleSmallText {
    text-decoration:underline;
    text-shadow: 0px 0px 23px rgba(0, 0, 0, .4);
}
.moduleSmallOuter:active > a > .moduleSmallInner {
    box-shadow:2px 2px 10px rgba(10, 10, 10, 1);
}

.moduleSmallInner {
    padding:10px;
    background-color:white;
    box-shadow:2px 2px 10px rgba(10, 10, 10, .4);
    overflow:hidden;
    width:200px; height:200px;
}

.moduleSmallImage {
    width: 200px;
    height: 200px;
    /*background-size: cover;
    background-position: center center;*/
    overflow: hidden;
    display: none;
}

.moduleSmallImage img {
    object-fit: cover;
}

.moduleSmallImageWH  {
    height:100% !important;
}
.moduleSmallImageWW {
    width: 100% !important;
}

.moduleSmallText {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, .3);
    line-height: normal;
    font-weight: normal;
    margin: 0px;
    padding-left: 10px;
    color: black;
    margin-top: 20px;
}


/* LARGE MODULES (IT'S NOT ALL HERE YET) */

.moduleLargeImageDiv {
    width: 200px;
    height: 150px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%, 50%;
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: start;
}

    .moduleLargeImageDiv img {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }



/* IMAGE LINK MODULES */

.moduleImageLinkContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.moduleImageLinkA {
    width: calc(50% - 30px);
    margin: 15px;
    cursor: pointer;
    flex-basis: calc(50% - 30px);
}

.moduleImageLinkDiv {
    height: 420px;
    position:relative;
}

.moduleImageLinkTextDiv {
    height: 50px;
    position: absolute;
    bottom: 0;
    justify-content: center;
    width: 100%;
    background-color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
}

.moduleImageLinkTextP {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: underline;
    color: #585953;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-style: normal;
    font-weight: bold;
    font-size: 1.2em;
}

.moduleImageLinkImageDiv {

}

.moduleImageLinkImage {
    position: absolute;
    bottom:0;
    left:0;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/*------------------------------------------------------------------------------------------------------*/
/* MOBILE */
/*------------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
    .moduleBlockContainer{
        display:inline-block;
        width:250px;
    }

    .moduleLargeImageDivContainer {
        position: relative;
    }

    .moduleLargeImageDivContainer:before {
        display:block;
        content: "";
        width: 100%;
        padding-top: 75%;
    }

    .moduleLargeImageDiv {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width:100%;
        height:100%;
    }
}

/*------------------------------------------------------------------------------------------------------*/

/* DESKTOP */

/*------------------------------------------------------------------------------------------------------*/

@media (min-width: 768px)
{
    
}
