#main_section{
	width: 100%;
	text-align: center;
	margin-top: 00px;
	
}
#main{
	max-width: 1400px;
	margin: auto;
	text-align: left;
	overflow: hidden;
	margin-top: 30px;
	color: #919297;
	    font-family: "Regular";
	    font-size: 13px;
   
    line-height: 26px;
}
.home_title{
	width: 300px;
	text-align: center;
	margin: auto;
	font-family: "Regular2";
	font-size: 35px;
	margin-top: 30px;
	
}
.pr_title{
	margin-top:15px;
	font-family: "Regular2";
	    text-transform: uppercase;
    font-feature-settings: "case" 1;
    font-weight: 500;
}
.main{
	width: 330px;
	height: 320px;
	float: left;
	margin: 10px;
	background-color: #f6f6f6;
	border-radius: 3px;
	border: 1px solid rgba(46,51,70, 0.0);
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	border:8px solid  #f6f6f6;
	box-sizing: border-box;
}
.main_image{
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center center;
	border-radius: 10px;
}
.pr_link{
	position: absolute;
	padding: 10px;
	background-color: var(--primary-hover-color);
	width: 20px;
	height:20px;
	right: 10px;
	bottom: 5px;
	border-radius: 5px;
	color: #fff;
	display: flex;
	  -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}
.pr_link i{
	margin: auto;
}
.pr_link i{
	transform: rotate(-25deg);
	font-size: 14px;
	 -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
.pr_link:hover.pr_link i{
	transform: rotate(0deg);
	
}
.pr_link:hover{
	border-radius: 50px;
	background-color: var(--primary-color);
}
.main_image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 250px;
	background-color: rgba(13, 36, 42, 0.6);
	z-index: 1;
	border-radius: 10px;
		-webkit-transition: all 0.3s;
	 -moz-transition: all 0.3s;
	 -o-transition: all 0.3s;
	transition: all 0.3s;
}
.main:hover::after{
	background-color: rgba(13, 36, 42, 0.8);
}