@charset "utf-8";
/* CSS Document */
.hover-red {
	transition-duration: 300ms;
	color: white;
}

.hover-red:hover {
	color:  red;
}

.hover-yellow {
	transition-duration: 300ms;
	cursor: pointer;
	color: #434343;
}

.hover-yellow:hover {
	color: #ffc107;
}

.hover-bg-yellow {
	background-color: rgb(17, 17, 17);
	color:  white;
}

.hover-bg-yellow:hover {
	background-color: #ffc301;
}

.i-yellow {
	font-size: 60px !important; 
	line-height: 60px !important; 
	color: #111111; 
	padding: 30px; 
	background: #fec200; 
	border-radius: 50%; 
	transition: color 300ms; -webkit-transition: color 300ms, border-color 300ms;
}

.i-yellow:hover {
	background: white;
}

.cursor-pointer {
	cursor: pointer;
}

.image-gallery {
	height: 100%; 
	width: 100%; 
	object-fit: cover;
}
