@charset "utf-8";
/* CSS Document */


.row.thumbnailGallery {
	margin-left: 15px;	
	margin-right: 15px;
}

.subThumbnailGallery
{
    margin-left: 15px;	
    margin-right: 15px;
}


.thumb{
    height:auto; /*caused problem when resized to a smaller view. but if i don't use it, the hoverboard doesn't appear properly. wtf*/
	
    background:#FFFFFF;/*gray background behind thumb  #E6E6E6 */
    position: relative;
    overflow: hidden;
    display: block;
    padding: 0px;
    line-height: 20px;
    border: 1px solid #ddd;
    webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}



/* new attempt */
.thumb .captionText{
	/*padding: 9px 9px 9px 9px;*/
    opacity: 0;
    -moz-opacity: 0.5;
    display: block;
    position: absolute;
	z-index: 2;
    /*top: 240px;
    left: 0px;*/
    /*background: rgba(0,0,0,0.4);*/
    /*width: 100%;
    height: 100%;*/
	
	/* these bottom six properties are important for positioning the hoverboard */
	bottom: 0px;
	right: 0px;
	height:auto;
	top: 10%;
	left: 10%;
	transform: translate(-5.5%, -5.5%);
	/* transform property makes the position of the .captionText stay the same when resized */
	
	
	text-align: left;
	
	background: #fff;
	/* background-image:url(../../images/myPortfolio/plusIcon40x39.png); */
	background-repeat: no-repeat;
	background-position: 94% 8%;
    
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.captionText h4{
	text-align: center;
	color: #cd3876 !important; /* #ff9307 - orange */
	font-size: 26px; 
	padding: 25% 9px 0px 9px; /* change around top value to position h4 and p */
}
.captionText p{
	text-align: center;
	color: #858482 !important;
	font-size: 16px;	
	padding: 0px 9px 30px 9px;
}





.second-container{
    margin-top: 20px;
}


/*responsive thumbnail images upon resizing window*/

img.imgscaling{
	max-width: 100%;
	height: auto;	
}

/*for Rightside content in Subpages */
img.RightImgScaling{
	max-width: 100%;
	max-height: 400px;	
    object-fit: cover;
}


