

/* Start:/bitrix/templates/.default/components/bitrix/news/projects/bitrix/news.list/.default/style.css?16859588108220*/
/*---------------------------
	PROJECT LIST ITEMS
---------------------------*/

.projects-items {
	background-color: #fff;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
	margin: 0 auto;
	padding: 10px;
	position: relative;
	max-width: 100%;
	z-index: 100;
}

.projects-item {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 17.7vh 0;
	position: relative;
	text-align: center;
}

.projects-item:nth-child(1) {
	grid-row: 1 / 3;
	grid-column: 1 / 3;
}

.projects-item:nth-child(2) {
	grid-column: 3 / 5;
}

/*.projects-item:nth-child(5) {
	grid-column: 3 / 1;
	grid-row: 3/ 3;
}*/

.projects-item:nth-child(6) {
	grid-column: 3 / 1;
	grid-row: 3 / 3;
}

.projects-item:nth-child(7) {
	grid-column: 3 / 5;
	grid-row: 3 / 5;
}


.projects-item:nth-child(13) {
	grid-row: 6 / 8;
	grid-column: 1 / 3;
}

.projects-item:nth-child(14) {
	grid-column: 3 / 5;
}




.projects-item-wrap {
	background: transparent;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .6s ease-in-out;
	height: 100%;
	width: 100%;
}

.projects-item:hover .projects-item-wrap {
	background-color: rgba(0, 0, 0, .65);
	opacity: 1;
}

.projects-item:hover .projects-item-wrap span,
.projects-item:hover .projects-item-wrap .projects-item-name {
	opacity: 1;
}

.projects-item-icons {
	position: absolute;
	top: 15px;
	right: 35px;
	z-index: 10;
}

.projects-item-like,
.projects-item-count {
	color: #fff;
	font-size: 1.3rem;
	font-weight: 300;
	float: right;
	opacity: 0;
	margin-right: 35px;
	padding-left: 25px;
	position: relative;
	transition: all .8s ease;
}

.projects-item-like {
	margin-right: 0;
}

.projects-item-like::before {
	color: #30dcaa;
	content: "\e90a";
	font-family: "icomoon";
	font-size: 1.4rem;
	position: absolute;
	top: -1px;
	left: -5px;
}

.projects-item-count::before {
	color: #30dcaa;
	content: "\e920";
	font-family: "icomoon";
	font-size: 2rem;
	position: absolute;
	top: -8px;
	left: -16px;
}

.projects-item-name {
	color: #fff;
	display: inline-block;
	font-size: 2rem;
	font-weight: 400;
	justify-content: center;
	letter-spacing: 1px;
	line-height: 1;
	opacity: 0;
	padding: 0 15px 0;
	position: absolute;
	top: 40%;
	left: 0;
	text-align: center;
	transition: all .8s ease;
	width: 100%;
}

.projects-item-name i {
	color: #ffd83b;
}


@media(max-width: 1199px) {

	.projects-item-name {
		font-size: 1.1rem;
	}

}

@media(max-width: 991px) {

	.projects-items {
		grid-template-columns: repeat(2, 1fr);
	}

	.projects-item,
	.projects-item:nth-child(1),
	.projects-item:nth-child(2),
	.projects-item:nth-child(5),
	.projects-item:nth-child(6),
	.projects-item:nth-child(7),
	.projects-item:nth-child(13),
	.projects-item:nth-child(14) {
		grid-row: initial;
		grid-column: initial;
		padding: 16vh;
		min-height: 245px;
	}

	/*.projects-item:nth-child(13) {
		grid-column: 3 / 1;
	}*/

	.projects-item-name {
		font-size: 1.4rem;
	}

}

@media(max-width: 668px) {

	.projects-items {
		grid-template-columns: repeat(1, 1fr);
	}

	.projects-item {
		padding: 14vh;
		grid-row: initial !important;
		grid-column: initial !important;
	}

	.projects-item-name {
		font-size: 1.4rem;
	}

}

/*	BEGIN PROJECT DETAIL MODAL	*/

.project-modal {
	background: rgba(0, 0, 0, .85);
	overflow: hidden;
	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 100;
}

.project-modal-wrap {
	position: relative;
	top: 0;
	height: 100vh;
	width: 100%;
}

.project-modal-wrap .ps-scrollbar-y-rail {
	display: none !important;
}

.project-modal-header {
	margin: 0 auto;
	padding-right: 150px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 85px;
	max-width: 1140px;
}

.project-modal-title {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0;
	padding: 0 15px;
	height: 85px;
	width: 100%;
}

.project-modal-zoom-btn {
	align-items: center;
	background-color: rgba(255, 255, 255, .5);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	/*display: flex;*/
	display: none !important;
	font-size: 1.25rem;
	justify-content: center;
	position: fixed;
	top: 22px;
	right: 75px;
	transition: background-color .4s ease-in-out;
	height: 45px;
	width: 45px;
	z-index: 1000;
}

.project-modal-zoom-btn:hover {
	background-color: #2fdba9;
}

.project-modal-close-btn {
	align-items: center;
	background-color: rgba(255, 255, 255, .5);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 1.25rem;
	justify-content: center;
	position: fixed;
	top: 22px;
	right: 15px;
	transition: background-color .4s ease-in-out;
	height: 45px;
	width: 45px;
	z-index: 1000;
}

.project-modal-close-btn:hover {
	background-color: #2fdba9;
}

.project-modal-body {
	background: #000;
	display: flex;
	flex-direction: row;
	margin: 0 auto;
	position: relative;
	top: 0;
	height: 100vh;
	min-height: 100%;
	max-width: 1140px;
}

.project-modal-content {
	align-items: flex-start;
	background-color: transparent;
	display: flex;
	flex-basis: 1070px;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	height: 100%;
	max-width: 1070px;
}

.project-modal-content-wrap {
	background-color: #fff;
	padding: 30px 30px 60px;
	width: 100%;
}

.project-modal-content-text {
	padding-left: 68px;
	position: relative;
}

.project-modal-content-text::before {
	background-color: #2fdba9;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 10px;
}

.project-modal-content-text p {
	color: #010101;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 42px;
}

.project-modal-content-text a {
	color: #000;
	border-bottom: 1px solid #000;
	font-size: 1.25rem;
	font-weight: 500;
	padding-bottom: 2px;
	text-decoration: none;
}

.project-modal-content-text a:hover {
	color: #000;
	text-decoration: none;
}

.project-modal-sidebar {
	align-items: center;
	background-color: #222;
	display: flex;
	flex-basis: 70px;
	flex-direction: column;
	justify-content: flex-start;
	overflow: hidden;
	position: relative;
	min-width: 70px;
}

.project-modal-sidebar-wrap {
	position: fixed;
	top: 0;
	height: 100%;
	width: 70px;
}

.project-modal-sidebar-wrap .ps-scrollbar-y-rail {
	display: none !important;
}

.project-modal-sidebar-block {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255 , .10);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 22px 0;
	min-height: 100px;
	width: 100%;
}

.project-modal-sidebar-block a:hover {
	text-decoration: none;
}

.project-modal-sidebar-block i {
	color: #fff;
	font-size: 2rem;
	transition: color .4s ease;
}

.project-modal-sidebar-block a:hover i {
	color: #2fdba9;
}

.project-modal-sidebar-block span {
	color: #fff;
	font-size: 1.15rem;
	margin: 15px 0 0;
}

.project-modal-sidebar-block-title {
	color: #fff;
	display: block;
	font-size: .65rem;
	margin: 10px 0 0;
	text-align: center;
}

.project-modal-sidebar-icons {
	list-style: none;
	margin: 25px 0 0;
	padding: 0;
}

.project-modal-sidebar-icons li {
	display: block;
	margin-bottom: 20px;
}

.project-modal-sidebar-icons li:last-child {
	margin-bottom: 0;
}

.project-modal-close {
	cursor: pointer;
	display: none;
}

.project-modal-close i {
	font-size: 1.5rem;
}

.project-modal-zoom {
	cursor: pointer;
	display: none !important;
}

.project-modal-zoom i {
	font-size: 1.5rem;
}

.project-modal-like {
	cursor: pointer;
	min-height: 135px;
	transition: background-color .4s ease-in-out;
}

.project-modal-like:hover {
	background-color: #2fdba9;
}

.project-modal-like.active {
	background-color: #2fdba9;
}

.project-modal-like i {
	align-items: center;
	border: 1px solid #fff;
	border-radius: 50%;
	display: flex;
	font-size: 1.2rem;
	justify-content: center;
	height: 50px;
	width: 50px;
}

.project-modal-social {
	border: none;
	margin-bottom: 0;
	padding-bottom: 25px;
}

@media(max-width: 1440px) {

	.project-modal-close-btn,
	.project-modal-zoom-btn {
		display: none;
	}

	.project-modal-close,
	.project-modal-zoom {
		display: flex;
	}

}

@media(max-width: 767px) {

	.project-modal-sidebar {
		display: none;
	}

	.project-modal-close-btn {
		display: flex;
	}

}

/*	END PROJECT DETAIL MODAL	*/
/* End */
/* /bitrix/templates/.default/components/bitrix/news/projects/bitrix/news.list/.default/style.css?16859588108220 */
