.wrapper{

}

.header{
	background: rgba(27, 35, 37, 0.50);
	backdrop-filter: blur(4px);
	height: 75px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_logo{
	width: 100%;
	height: 100%;
	background: url(/static/img/logo.svg) center/260px no-repeat;
	/*background: url(/static/img/logo.png) center/auto 20px no-repeat;*/
}

.section{

}

.banner_mob{
	position: relative;
	height: 600px;
	border-radius: 0 0 20px 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: background 0.5s;
}

.banner_selector_list{
	border-radius: 27.778px;
	background: rgba(27, 35, 37, 0.50);
	backdrop-filter: blur(2.222222089767456px);
	height: 20px;
	width: fit-content;
	padding: 0 5px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 16px;
	align-items: center;
}

.banner_selector{
	width: 10px;
	height: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.banner_selector::after{
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: #ffffff;
	border-radius: 50%;
	opacity: 0.5;
	transition: transform 0.3s, opacity 0.3s;
}

.banner_selector[active="1"]::after{
	opacity: 1;
	transform: scale(2);
}


.h1{
	font-family: "Gros";
	font-size: 20px;
}

.about_inner{
	padding: 28px 23px 50px;
}

.about_inner h1{
	font-size: 24px;
}

.about_text{
	margin: 10px 0 0;
	font-size: 12px;
	font-weight: 500;
}

[type="desktop"]{
	display: none;
}

.section#service{
	border-radius: 20px;
	background: #1B2325;
	color: #ffffff;
	display: flex;
	padding: 30px 10px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.service_inner_text_wrap{
	padding: 0 13px;
}

.service_title{
	font-weight: 300;
	margin: 15px 0 0;
}

.service_card_list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	width: 100%;
	margin: 20px 0 0;
}

.service_card{
	width: calc(50% - 5px);
	height: 150px;
	position: relative;
	border-radius: 12px;
	border: 1px solid rgba(174, 174, 174, 0.10);
	background: #1B2325;
	transition: background 0.3s;
	cursor: pointer;
	overflow: hidden;
}

.service_card:hover{
	background: #E7E7E7;
}

.service_card_title{
	font-size: 12px;
	font-weight: 500;
	z-index: 1;
	position: absolute;
	transition: color 0.3s;
}

.service_card:hover .service_card_title{
	color: #1B2325;
}

.service_card_number{
	text-stroke-width: 0.6px;
	text-stroke-color: rgba(255, 255, 255, 0.50);
	-webkit-text-stroke-width: 0.6px;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.50);
	font-family: "Gros";
	color: #1B2325;
	font-size: 25px;
	position: absolute;
}

.service_card_image{
	position: absolute;
	width: 108px;
	height: 108px;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 0;
	transition: transform 0.3s;
}

.service_card:hover .service_card_image{
	transform: scale(1.15);
}

.service_card[card_index="0"] .service_card_title,
.service_card[card_index="1"] .service_card_title,
.service_card[card_index="2"] .service_card_number,
.service_card[card_index="4"] .service_card_number{
	top: 10px;
	left: 10px;
}

.service_card[card_index="3"] .service_card_title{
	bottom: 10px;
	left: 10px;
}

.service_card[card_index="2"] .service_card_title,
.service_card[card_index="4"] .service_card_title,
.service_card[card_index="0"] .service_card_number{
	bottom: 10px;
	left: 10px;
}

.service_card[card_index="1"] .service_card_number{
	bottom: 10px;
	right: 10px;
}

.service_card[card_index="3"] .service_card_number{
	top: 10px;
	right: 10px;
}

.service_card[card_index="0"] .service_card_image{
	bottom: 10px;
	right: 10px;
	transform-origin: 100% 100%;
	background-position: right bottom;
	background-image: url(/static/img/service/0.png);
}

.service_card[card_index="1"] .service_card_image{
	bottom: 10px;
	left: 10px;
	transform-origin: 0% 100%;
	background-position: left bottom;
	background-image: url(/static/img/service/1.png);
}

.service_card[card_index="2"] .service_card_image{
	top: 10px;
	right: 10px;
	transform-origin: 100% 0%;
	background-position: right top;
	background-image: url(/static/img/service/2.png);
}

.service_card[card_index="3"] .service_card_image{
	top: 10px;
	left: 10px;
	transform-origin: 0% 100%;
	background-position: left bottom;
	background-image: url(/static/img/service/3.png);
}

.service_card[card_index="4"] .service_card_image{
	top: 10px;
	right: 10px;
	transform-origin: 100% 0%;
	background-position: right top;
	background-image: url(/static/img/service/4.png);
}

.service_card_description{
	transition: opacity 0.3s, transform 0.3s;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background: #E7E7E7;
	color: #1B2325;
	z-index: 1;
	transform: translateY(-100%);
	padding: 10px;
}

.service_card_list[selected="0"] .service_card[card_index="0"] .service_card_description,
.service_card_list[selected="1"] .service_card[card_index="1"] .service_card_description,
.service_card_list[selected="2"] .service_card[card_index="2"] .service_card_description,
.service_card_list[selected="3"] .service_card[card_index="3"] .service_card_description,
.service_card_list[selected="4"] .service_card[card_index="4"] .service_card_description{
	transform: translateY(0%);
	opacity: 1;
}

.service_card_description_scroll{
	width: calc(100% + 50px);
	height: 100%;
	overflow: hidden auto;
}

.service_card_description_title{
	width: calc(100% - 50px);
	font-weight: 600;
	font-size: 13px;
}

.service_card_description_text{
	width: calc(100% - 50px);
	font-size: 12px;
	margin: 10px 0 0;
	font-weight: 500;
}


.projects_h1{
	margin: 30px auto;
	text-align: center;
}

.projects_carousel_wrap{
	padding: 15px 0;
	overflow: hidden;
	height: calc(75vw + 30px);
}

.projects_carousel_list{
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	overflow: scroll hidden;
	padding: 0 12.5vw;
	scroll-snap-type: x mandatory;
	padding-bottom: 50px;
}

.projects_carousel_elem{
	width: 75vw;
	height: 75vw;
	flex-shrink: 0;
	border-radius: 23px;
	text-transform: uppercase;
	color: #ffffff;
	font-family: "Gros";
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px 20px;
	scroll-snap-align: center;
	position: relative;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.projects_carousel_elem::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.50) 100%);
	z-index: 0;
	cursor: pointer;
}

.projects_carousel_elem_num{
	font-size: 34px;
	align-self: flex-end;
	position: relative;
	z-index: 1;
}

.projects_carousel_elem_name{
	font-size: 22px;
	align-self: center;
	position: relative;
	z-index: 1;
}

.projects_details{
	padding: 30px 10px;
	font-size: 15px;
}

.projects_detail_padding{
	padding: 0 20px;
}

.projects_name{
	font-weight: 700;
}

.projects_detail_name{
	text-transform: uppercase;
}

.projects_address{
	margin: 10px 0 0;
	color: #5D6F73;
}

.projects_photo_button{
	height: 40px;
	display: flex;
	padding: 0 30px;
	border-radius: 20px;
	border: 1px solid rgba(27, 35, 37, 0.20);
	width: fit-content;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	margin: 20px auto 0;
	transition: opacity 0.3s;
}

.projects_photo_button::before{
	content: '';
	width: 16px;
	height: 16px;
	background: url(/static/img/project/photo.svg) center/auto no-repeat;
}

.projects_del{
	background: #C0C0C0;
	height: 1px;
	margin: 30px 0 0;
}

.projects_desc_wrap{

}

.projects_desc_expander{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	margin: 20px 0 0;
}

.projects_desc_expander_title{
	font-weight: 700;
}

.projects_desc_expander_arrow{
	background: url(/static/img/project/expander_arrow.svg) center/16px 9px no-repeat;
	width: 16px;
	height: 9px;
}

.projects_desc_hidder[hide="1"]{
	height: 0;
	overflow: hidden;
}

#contacts{
	background: linear-gradient(0deg, #1B2325 9.09%, rgb(27 35 37 / 64%) 90.96%), url(/static/img/contact/background.jpg) center top / cover no-repeat;
	border-radius: 20px 20px 0 0;
}

#contacts > .section_inner{
	color: #ffffff;
	padding: 50px 30px;
}

.contacts_h1{
	font-size: 20px;
}

.contacts_h1 > span{
	font-family: "GrosBold"
}

.contacts_text{
	font-size: 14px;
	font-weight: 500;
	margin: 20px 0 0;
}

.contacts_form_wrap{
	margin: 40px 0 50px;
}

.contacts_form_title{
	font-weight: 500;
	text-align: center;
}

.contacts_form{
	margin: 20px 0 0;
	display: flex;
	padding: 20px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	border-radius: 20px;
	border: 1px solid #FFF;
	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(5px);
}

.contacts_form_input_wrap{
	position: relative;
	width: 100%;
}

.contacts_form_label{
	font-size: 12px;
	font-weight: 500;
}

.contacts_form_label > span{
	color: #DF4043;
}

.contacts_form_input{
	margin: 4px 0 0;
	font-family: 'Montserrat';
	font-size: 12px;
	font-weight: 500;
	height: 40px;
	width: 100%;
	display: block;
	border-radius: 8px;
	border: 1px solid #C7CCD7;
	padding: 0 12px 0 34px;
	color: #ffffff;
}

.contacts_form_input::placeholder {
  /*font-weight: bold;*/
  /*opacity: 0.5; */
  color: #B4B9C4;
}

.contacts_form_input_icon{
	position: absolute;
	width: 12px;
	height: 12px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	top: 34px;
	left: 14px;
}

.contacts_form_input_icon[type="name"]{
	background-image: url(/static/img/contact/user.svg);
}

.contacts_form_input_icon[type="phone"]{
	background-image: url(/static/img/contact/phone.svg);
}

.contacts_form_input_icon[type="email"]{
	background-image: url(/static/img/contact/mail.svg);
	bottom: 35px;
}

.contacts_form_input_submit{
	margin: 20px 0 0;
	font-size: 12px;
	font-weight: 500;
	height: 40px;
	width: 100%;
	display: flex;
	border-radius: 8px;
	border: 1px solid #C7CCD7;
	align-items: center;
	justify-content: center;
	outline: none;
	cursor: pointer;
	background: transparent;
}

.contacts_form_input_submit > span{
	font-family: 'Montserrat';
	color: #ffffff;
}

.contacts_form_input_submit::after{
	content: '';
	display: block;
	background: url(/static/img/contact/arrow.svg);
	width: 11px;
	height: 10px;
	position: relative;
	top: 1px;
	margin: 0 0 0 10px;
}

.contacts_list{
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 20px 0 0;
}

.contacts_block{

}

.contacts_link{
	line-height: 20px;
	display: flex;
	align-items: flex-start;
}

.contacts_link::before{
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 10px 0 0;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
}

.contacts_block[type="phone"] .contacts_link::before{
	background-image: url(/static/img/contact/phone.svg);
}

.contacts_block[type="mail"] .contacts_link::before{
	background-image: url(/static/img/contact/mail.svg);
}

.contacts_block[type="address"] .contacts_link::before{
	background-image: url(/static/img/contact/geo.svg);
}

.header_menu{
	display: none;
}

.project_photo_view_wrap{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.9);
	backdrop-filter: blur(4px);
	overflow: hidden auto;
	z-index: 10;
	color: #ffffff;
	display: flex;
	flex-direction: column;
}

.project_photo_view_wrap[show="0"]{
	/*display: none;*/
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0s linear 0.3s;
}

.project_photo_view_wrap[show="1"]{
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s, visibility 0s;
}

.project_photo_view_close{
	width: 50px;
	height: 50px;
	background: url(/static/img/pop/close.svg) center/auto no-repeat;
	align-self: flex-end;
	cursor: pointer;
}

.project_photo_view_header{
	display: flex;
	gap: 5px;
	justify-content: center;
	font-size: 16px;
	flex-wrap: wrap;
	font-weight: 500;
}

.project_photo_view_header_type{

}

.project_photo_view_header_name{

}

.project_photo_view_address{
	text-align: center;
	margin: 14px 0 0;
	font-size: 14px;
	font-weight: 300;
}

.project_photo_view_control{
	display: none;
}

.project_photo_view_scroll_wrap{
	flex: 1;
	margin: 14px 0 0;
}

.project_photo_view_scroll{
	display: flex;
	overflow: scroll hidden;
	scroll-snap-type: x mandatory;
	height: 100%;
}

.project_photo_view_scroll_elem{
	width: 100vw;
	flex-shrink: 0;
	border-radius: 0;
	transition: transform 0.3s, border-radius 0.3s;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	scroll-snap-align: center;
}

.project_photo_view_scroll[scrolling="1"] .project_photo_view_scroll_elem{
	border-radius: 20;
	transform: scale(0.9);
}

.contacts_form_input_error{
	border-color: #ff5c5c !important;
}

.contacts_form_error{
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.2;
	color: #ff5c5c;
}


@media(min-width: 1440px){
	[type="desktop"]{
		display: block;
	}
	[type="mobile"]{
		display: none;
	}
	.banner_desktop{
		position: relative;
		width: 100%;
		height: 100vh;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		/*border-radius: 0 0 50px 50px;*/
		transition: background 0.5s;
	}

	.banner_selector_list{
		height: 36px;
		border-radius: 18px;
		padding: 10px;
		gap: 30px;
	}

	.banner_selector{
		width: 16px;
		height: 16px;
	}

	.banner_selector::after{
		width: 7px;
		height: 7px;
	}

	.header{
		padding: 0px 30px;
	}
	.header_logo{
		width: 300px;
		background-size: 290px;
	}
	.header_menu{
		display: flex;
		gap: 10px;
	}
	.header_menu_elem{
		font-size: 12px;
		font-style: normal;
		font-weight: 500;
		text-transform: uppercase;
		cursor: pointer;
		color: #ffffff;
		padding: 10px 35px;
	}
	.h1{
		font-size: 40px;
	}
	.about_inner{
		width: 1146px;
		margin: auto;
		padding: 80px 0;
	}
	.about_text{
		font-size: 16px;
	}
	.service_inner_text_wrap{
		width: 1146px;
		margin: 50px auto 0;
	}
	.service_title{
		margin: 10px 0 0;
	}
	.service_card_list{
		width: 1146px;
		display: grid;
		gap: 20px;
		grid-template-columns: repeat(6, 1fr);
		margin: 70px auto 50px;
	}
	.service_card{
		width: auto;
		height: 250px;
	}
	.service_card[card_index="0"],
	.service_card[card_index="1"],
	.service_card[card_index="2"]{
		grid-column: span 2;
	}
	.service_card[card_index="3"],
	.service_card[card_index="4"]{
		grid-column: span 3;
	}
	.service_card_title{
		font-size: 20px;
	}
	.service_card_number{
		font-size: 45px;
	}
	.service_card_image{
		width: 180px;
		height: 180px;
	}

	.service_card[card_index="0"] .service_card_title,
	.service_card[card_index="1"] .service_card_title,
	.service_card[card_index="2"] .service_card_number,
	.service_card[card_index="4"] .service_card_number{
		top: 20px;
		left: 20px;
	}

	.service_card[card_index="3"] .service_card_title{
		top: 20px;
		left: 20px;
	}

	.service_card[card_index="2"] .service_card_title,
	.service_card[card_index="4"] .service_card_title,
	.service_card[card_index="0"] .service_card_number,
	.service_card[card_index="3"] .service_card_number{
		bottom: 20px;
		left: 20px;
	}

	.service_card[card_index="3"] .service_card_number{
		top: auto;
		right: auto;
	}

	.service_card[card_index="1"] .service_card_number{
		bottom: 20px;
		left: 20px;
		right: auto;
	}

	.service_card[card_index="1"] .service_card_image{
		bottom: 20px;
		left: auto;
		right: 20px;
		transform-origin: 100% 100%;
	}

	.service_card[card_index="2"] .service_card_image,
	.service_card[card_index="4"] .service_card_image{
		top: 20px;
		right: 20px;
	}

	.service_card[card_index="4"] .service_card_image{
		right: 48px;
	}

	.service_card[card_index="0"] .service_card_image,
	.service_card[card_index="3"] .service_card_image{
		bottom: 20px;
		right: 20px;
	}

	.service_card[card_index="3"] .service_card_image{
		top: auto;
		left: auto;
		background-size: 232px;
		background-position: center;
		bottom: 34px;
		transform-origin: 100% 50%;
	}

	.service_card[card_index="3"] .service_card_image{

	}

	.service_card_description{
		padding: 20px;
	}

	.service_card_description_title{
		font-size: 16px;
	}

	.service_card_description_text{
		font-size: 15px;
		margin: 15px 0 0;
	}

	#projects{
		position: relative;
		overflow: hidden;
	}

	.projects_h1{
		width: 1146px;
		text-align: left;
		margin: 80px auto 0;
		position: relative;
	}

	.projects_carousel_wrap{
		padding: 0;
		margin: 90px auto 0;
		width: 1380px;
		overflow: hidden;
		height: 320px;
		position: relative;
	}

	.projects_carousel_control{
		background-color: rgba(27, 35, 37, 0.30);
		background-size: auto;
		background-position: center;
		background-repeat: no-repeat;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		cursor: pointer;
	}

	.projects_carousel_control[type="left"]{
		background-image: url(/static/img/project/arrow_left.svg);
		left: 0;
	}

	.projects_carousel_control[type="right"]{
		background-image: url(/static/img/project/arrow_right.svg);
		right: 0;
	}

	.projects_carousel_list{
		width: 1260px;
		margin: auto;
		padding: 20px 20px 50px;
	}

	.projects_carousel_elem{
		width: 290px;
		height: 290px;
		border-radius: 20px;
		transition: transform 0.3s, opacity 0.3s;
		opacity: 0.6;
		transform: scale(1);
		scroll-snap-align: none;
	}

	.projects_carousel_elem[active="1"]{
		opacity: 1;
		transform: scale(1.05);
	}

	.projects_carousel_elem_num{

	}

	.projects_carousel_elem_name{
		font-size: 20px;
	}

	.projects_photo_button{
		margin: 0 0 0 auto;
	}

	.projects_details{
		padding: 0;
		font-size: 16px;
		margin: 80px auto 0;
		width: 1146px;
	}

	.projects_detail_padding{
		padding: 0;
		font-size: 16px;
	}

	.project_detail_flex{
		display: flex;
		gap: 30px;
		align-items: flex-start;
	}

	.projects_detail_number{
		font-family: 'Gros';
		font-size: 60px;
	}

	.projects_detail_name_wrap{

	}

	.projects_name{
		font-family: 'Gros';
		font-weight: 400;
		font-size: 30px;
	}

	.projects_address{
		font-size: 20px;
		margin: 0;
	}

	.projects_del{
		margin: 40px auto 0;
	}

	.projects_desc_wrap{

	}

	.projects_desc_expander{
		margin: 40px 0 0;
		padding: 0;
	}

	.projects_desc_expander_title{
		font-family: 'Gros';
		font-weight: 400;
		font-size: 20px;
	}

	.projects_desc_expander_arrow{
		display: none;
	}

	.projects_desc_hidder[hide="1"]{
		height: auto;
	}

	.projects_desc{
		padding: 20px 0 70px;
	}
	#contacts > .section_inner{
		width: 1146px;
		padding: 80px 0;
		margin: auto;
		color: #E7E7E7;
	}

	.contacts_h1{
		font-size: 40px;
		font-family: 'Gros';
	}

	.contacts_h1 > span {
		font-family: 'Gros';
	}

	.contacts_form_flex{
		display: flex;
		margin: 80px auto 0;
		justify-content: space-between;
		align-items: center;
	}

	.contacts_text{
		font-size: 20px;
		margin: 0;
		width: 600px;
	}

	.contacts_form_wrap{

	}

	.contacts_form_title{
		font-size: 20px;
	}

	.contacts_form{
		color: #ffffff;
		padding: 30px;
		gap: 30px;
		width: 338px;
	}

	.contacts_form_input_wrap{

	}

	.contacts_form_label{
		font-size: 14px;
	}

	.contacts_form_input{
		font-size: 14px;
	}

	.contacts_form_input_icon{
		width: 14px;
		height: 14px;
		background-size: 100%;
	}

	.contacts_form_input_submit{
		font-size: 20px;
		height: 64px;
	}

	.contacts_form_input_submit::after {
		background: url(/static/img/contact/arrow.svg) center/18px 20px no-repeat;
		width: 18px;
		height: 20px;
		margin: 0 0 0 20px;
	}

	.contacts_list{
		flex-direction: row;
		gap: 0px;
		justify-content: space-between;
		margin: 30px 0 0;
	}

	.contacts_block[type="phone"]{
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.contacts_link::before{
		background-size: 20px 20px;
	}


	.project_photo_view_header{
		font-size: 22px;
		gap: 8px;
	}
	
	.project_photo_view_address{
		font-size: 18px;
	}

	.project_photo_view_scroll_wrap{
		overflow: hidden;
		position: relative;
	}

	.project_photo_view_scroll{
		height: calc(100% + 50px);
	}

	.project_photo_view_scroll_elem{
		height: calc(100% - 55px);
	}

	.project_photo_view_control{
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.project_photo_view_control_button{
		position: absolute;
		width: 25%;
		height: 100%;
		top: 0;
		background-position: center;
		background-size: 20px;
		background-repeat: no-repeat;
		cursor: pointer;
		background-color: rgba(0,0,0,0);
		opacity: 0.5;
		transition: opacity 0.3s;
	}

	.project_photo_view_control_button:hover{
		opacity: 1;
	}

	.project_photo_view_control_button[type="left"]{
		left: 0;
		background-image: url(/static/img/project/arrow_left.svg);
	}

	.project_photo_view_control_button[type="right"]{
		right: 0;
		background-image: url(/static/img/project/arrow_right.svg);
	}

}