.imgFullWidth, .imgFullWidth img{
	max-width: 100%;
	object-fit: cover;
}

.imgFullSize, .imgFullSize img{
	width: 100%;
	height: 100%;
}

.imgCircle{
	justify-self: center;
	margin-bottom: 1em;
}

.imgCircle > * {
	width: 100%;
	height: 100%;
	margin: auto;
}

.imgCircle a{
	height: 90%;
}

.imgCircle:hover .imgCircle-content {
	-webkit-animation: fadein 0.3s linear; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.3s linear; /* Firefox < 16 */
        -ms-animation: fadein 0.3s linear; /* Internet Explorer */
         -o-animation: fadein 0.3s linear; /* Opera < 12.1 */
            animation: fadein 0.3s linear;

	opacity: 0.95;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 0.95; }
}

@keyframes fadeout {
    from { opacity: 0.9; }
    to   { opacity: 0; }
}

.imgCircle-content{
	-webkit-animation: fadeout 0.2s linear; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadeout 0.2s linear; /* Firefox < 16 */
	-ms-animation: fadeout 0.2s linear; /* Internet Explorer */
	-o-animation: fadeout 0.2s linear; /* Opera < 12.1 */
	animation: fadeout 0.2s linear;

	opacity: 0;
}

.imgCircleMedium{
	max-width: 20em;
	max-height: 20em;
	border-radius: 100%;
}

.imgCircleSmall{
	max-width: 10em;
	max-height: 10em;
	border-radius: 100%;
}

.imgCircleTiny{
	max-width: 5em;
	max-height: 5em;
	border-radius: 100%;
}

.imgCircleDiv{
	margin-top: 2em;
	margin-bottom: 2em;
	margin-left: 2em;
}

.imgFit, .imgFit img{
	width: 100%;
	object-fit: contain;
}

.imgLarge, .imgLarge img{
	max-width: 40em;
}

.imgMediumLarge, .imgMediumLarge img{
	max-width: 35em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	border-radius: 0.5em;
}

.imgMedium, .imgMedium img{
	max-width: 100%;
	object-fit: contain;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	border-radius: 0.5em;
}

.imgSmall .imgSmall img{
	max-width: 15em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	border-radius: 0.5em;
}

.imgVerySmall, .imgVerySmall img{
	max-width: 7em;
	max-height: 7em;
}

.imgLogo{
	max-width: 25%;
}

.imgLogo-Header{
	height: 40px;
	padding-bottom: 14px;
	padding-top: 10px;
}

.img200{
	height: 200px;
}

.img20, .img20 img{
	max-width: 20em;
	max-height: 20em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	border-radius: 0.5em;
}

.img-container-projects img, .img-container-projects p {
	max-width: 300px;
	max-height: 150px;
}

.img-container-512 img{
	max-width: 100%;
	/*max-height: 512px;*/
}

.img-container-256 img{
	max-width: 256px;
	max-height: 256px;
	width: 100%;
	object-fit: contain;
}

.img-container-150 img{
	max-width: 150px;
	max-height: 150px;
	width: 100%;
}

.img-container-128 img{
	max-width: 128px;
	max-height: 128px;
	width: 100%;
}

.img-container-100 img{
	/*max-width: 33%;*/
	/* max-height: 100px; */
	/* max-width: 80px; */
	height: 60px;
	margin-left: auto;
	margin-right: auto;
}

.img-container-100 span{
	max-width: 100%;
	/* text-align: center;
	white-space: pre-wrap; */
}

.img-container-65 img{
	max-height: 100px;
	margin-left: auto;
	margin-right: auto;
}

.img-container-65 span{
	max-width: 65%;
	margin-bottom: 2em;
}

/*p > img{*/
	/*width: 100%;*/
/*}*/

.img-container-center{
	display: flex;
		flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.img-container-center img:nth-child(2){
	padding-left: 5%;
	padding-right: 5%;
}

.img-photo img{
	border-radius: 2%;
	box-shadow: 0 0 10px 0px #b6b6b6;
	width: 100%;
}

.img-photo-medium, .img-photo-medium img {
	width: 300px;
	height: 150px;
}

.img-photo-small * {
	max-width: 150px;
	max-height: 150px;
}

.img-photo-circle{
	width: 100px;
	height: 100px;
}

.img-photo-circle img{
	width: 70%;
	height: 70%;
	border-radius: 2%;
}

.img-hover-size .img-photo-circle img:hover{
	transform: scale(1.025);
	transition: transform .3s;
}
.img-dont-force-width {
	width: unset;
	height: unset;
	max-width: 100px;
	max-height: 100px;
}