@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	height: 100vh;
	font-family: "Raleway", sans-serif;
	/* background: #2F3238; */
}

/* .container{
	margin: 30px;
} */

.container-sm .name{
	font-family: 'Poppins',sans-serif;
	font-size: 42px;
	text-transform: uppercase;
	font-weight: 500;
	text-align: center;
	padding: 10px;
	color: #000;
}
.row{
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	overflow: hidden;
}

.image{
	/* background: #50A7FF; */
	position: relative;
	flex: 1; 
	max-width: 100%;
	height: 394px;
	/* margin: 20px; */
	overflow: hidden;
	transition: all 0.3s ease-in;
	background:radial-gradient(#111 50%, #000 100%);
}
img{
	max-width: 100%;
	overflow: hidden;
	background-size: cover;
}

.image img{
	background: rgba(46, 44, 44, 0.3);
	opacity: 0.8;
	position: relative;
	vertical-align: top;
	transition: 0.6s;
	transition-property: opacity;
}

.image:hover img{
	opacity: 1;
	background: rgba(46, 44, 44, 0.3);
}

.image .details{
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	width: 100%;
	height: 100%;
}

.image .details h2{
    margin-left: 40px;
	font-size: 26px;
	/* text-transform: uppercase; */
	font-weight: 500;
	margin-top: 260px;
	transition: 0.4s;
	transition-property: transform;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #d32525;
	display: inline-block;
}

.image .details h2 span{
	font-weight: 900;
}

.image:hover .details h2{
	transform: translateY(-30px);
}

.image .details p{
	margin: 30px 30px 0 30px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	opacity: 0;
	transition: 0.6s;
	transition-property: opacity, transform;
}

.image:hover .details p{
	opacity: 1;
	transform: translateY(-40px);
}

.more{
	position: absolute;
	/* background: rgba(39, 38, 38, 0.8); */
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	bottom: -60px;
	transition: 0.6s;
	text-align: center;
	margin-left: 20px;
	/* transition-property: bottom; */
	
	
}

.image:hover .more{
	bottom: 0;
}

.more .read-more{
	color: #00a4ff;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	
	/* text-transform: uppercase; */
}

.more .read-more span{
	font-weight: 700;
}

.more .icon-links i{
	color: #000;
	font-size: 20px;
}

.more .icon-links a:not(:last-child) i{
	margin-right: 20px;
}

/* Responsive CSS */

@media (max-width: 1080px){
	.image{
		flex: 100%;
		max-width: 480px;
	}
}

@media (max-width: 400px){
	.image .details p{
		font-size: 16px;
	}

	.more .read-more, .more .icon-links a i{
		font-size: 18px;
	}
}

@media (max-width: 991px) {
	.container-sm .name{
	
	 font-size: 30px;
	}
    
 }