  /* CSS Document */

/*anc_Menu*/
.p-anc_Menu{
	padding: 1.25rem 99px 2.75rem;
	margin: 0 1px 2.5rem;
    
    background: #f0f0f0 url("/tech/green_infra/works/images/arrow_below.svg") no-repeat 50% calc(100% - 22px);
}

.p-anc_Menu ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.p-anc_Menu__item{
	flex: 0 0 auto;
	box-sizing: border-box;
	border: #32a05a 2px solid;
	background-color: #fff;
	width: 370px;
	height: 70px;
	border-radius: 35px;
	margin-right: 20px;
	margin-bottom: 0.5rem;
	position: relative;
}
.p-anc_Menu__item:nth-of-type(2n){
	margin-right: 0;
}

.p-anc_Menu__item a{
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 33px;
	color: #212121;
	line-height: 1.4;
	text-decoration: none;
	justify-content: flex-start;
	align-items: center;
}

.p-anc_Menu__thumb{
	display: block;
	box-sizing: border-box;
	width: 66px; height: 66px;
	border-radius: 50%;
	border: #fff 3px solid;
	overflow: hidden;
	margin-right: 6px;
}

.p-anc_Menu__item a::before{
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	width: calc(100% + 12px);
	height: calc(100% + 12px);
	top: -6px; left: -6px;
	transform: scale(0.95,0.8);
	border-radius: 41px;
	background-color: rgba(0,146,69,0.2);
  border: rgba(0,146,69,0.5) 2px solid;
	opacity: 0;
	transition: all 0.3s;
}
.p-anc_Menu__item a:hover::before{
	opacity: 1;
	transform: scale(1,1);
}


/**/
.p-sdgs_icons{
	text-align: center;
}
#main .p-sdgs_icons h4{
	display: inline-block;
	width: 18rem;
	margin: 0 auto;
	background-color: #ededed;
	border-radius: 6px 6px 0 0;
	line-height: 1;
	padding: 0.9375rem 0 0.5rem;
  text-align: center; /*210427*/
}

.p-sdgs_icons ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 1rem 1.5rem;
	background-color: #ededed;
	border-radius: 6px;
	margin: 0 0 2.5rem;
	line-height: 1;
}
.p-sdgs_icons li{
	flex: 0 0 auto;
	margin: 0.5rem 0;
}

@media print{
    .p-anc_Menu{
        display: none;
    }
}

