/*
===============================================
	MAIN.CSS
	--------
	- This CSS file is same for all pages.
===============================================
*/

body .project-item,
body .task-item{
	display: block;
	box-shadow: 0 2px 3px 1px rgba(104,106,111,.1),0 0 0 0 rgba(104,106,111,.1);
	border-radius: 7px;
	overflow: hidden;
	transition: 0.3s;
	transform: translateY(0px);
}

body .task-item{
	background: #f0f0f0;
}

body .project-item:hover,
body .task-item:hover{
	box-shadow: 0 4px 6px 1px rgba(104,106,111,.2),0 0 0 0 rgba(104,106,111,.2);
	transition: 0.3s;
	transform: translateY(-2px);
}

body .project-item a,
body .task-item a{
	text-decoration: none;
}

body .project-item .project-image{
	display: flex;
	min-height: 145px;
	justify-content: center;
	align-items: center;
	border-bottom: 5px solid #a4b2ca;
}

body .project-item .project-info,
body .task-item .task-info{
	padding: 20px 20px;
	padding-bottom: 25px;
}

body .project-item .project-info .project-name h3,
body .task-item .task-info .task-name h2{
	font-weight: 700;
	margin-bottom: 10px;
}

body .project-item .project-info .project-url p,
body .task-item .task-info .task-desc p{
	position: relative;
	margin-bottom: 0px;
	padding-left: 30px;
}

body .task-item .task-info .task-desc p{
	position: relative;
	margin-bottom: 0px;
	padding-left: 0px;
}

body .project-item .project-info .project-url p:before{
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 25px;
	height: 25px;
	background: url('../../../../../wp-content/uploads/2024/05/http.svg') center/contain no-repeat;
	transform: translateY(-50%);
}

/* Smaller Screen Desktops */
@media only screen and (max-width: 1280px) {
    
}

/* Mid Large Screen Desktops */
@media only screen and (min-width: 1440px) {
    
}

/* Large Screen Desktops */
@media only screen and (min-width: 1920px) {
    
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {

}

/* Mobile Devices */
@media only screen and (max-width: 765px) {
    
}
