:root{
	--green:#008143;
	--lightgreen:#9cb438;
	--grey:#646963;
}
@font-face {
  font-family: "Noto Sans";
  src:
    local("Montsera"),
    url("assets/fonts/NotoSans-VariableFont_wdth,wght.ttf") format("truetype");

}
html{
	scroll-behavior:smooth;
}
*{
	padding:0;
	margin:0;
}
body{
	font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
	color:var(--grey);
}
h1{
	font-size:clamp(1.25rem, 3vw, 2.5rem);
	font-weight:300;
	line-height:1.4;
	background:var(--lightgreen);
	color:white;
	padding:.25em;
	margin-bottom:-.5em;
	width:100%;
	text-align:center;
	box-sizing:border-box;
	
	b{
		font-weight:700;
	}
}
h2{
	font-size:clamp(2rem, 3vw, 2.5rem);
}
h3{
	margin-bottom:1em;
}
p{
	margin-bottom:1em;
}
a{
	color:var(--lightgreen);
	text-underline-offset:2px;
}
a:hover{
	text-decoration:none;
}
.button{
	display:block;
	width:max-content;
    padding: 1em 2.5em;
    border-radius: 1.75em;
    line-height: 1;
    font-weight: 500;
	border:1px solid white;
    transition-duration: .3s;
    gap: 0px;
    position: relative;
	background:transparent;
	font-size:1rem;
	font-family:inherit;
	color:inherit;
	text-decoration:none;
	margin-top:2em;
}
.button:hover{
	border-color:transparent;
	background-color:rgba(255,255,255,.25);
}
.txt-block{
	max-width:400px;
	position:relative;
}
section{
	width:100%;
	overflow:hidden;
}
.section-inner{
	width:100%;
	max-width:1200px;
	padding:80px 16px;
	margin:auto;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	
}
header{
	.section-inner{
		padding-top:8px;
		padding-bottom:8px;
		flex-direction:row;
		justify-content: space-between;
		align-items: center;
	}
	
}
.menu-wrap ul{
		display:flex;
		flex-direction:column;
		gap:1em;
		list-style-type:none;
		
		li a{
			text-transform:uppercase;
			font-weight:500;
			color:var(--green);
			text-decoration:none;
		}
	}
.logo{
	max-width:65px;
}
#hero{
	background-color:#eee;
	background-image:url('assets/IB-S_slider_2_locomotive.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	overflow:visible;
	
	.section-inner{
		justify-content: center;
		align-items: flex-start;
		align-items: center;
		position:relative;
		padding-bottom:0;
	}
	.icons-wrap{
		display:flex;
		flex-direction:row;
		gap:1.5vw;
		margin-bottom:40px;
	}
	.icon{
		width:clamp(56px,10vw, 154px);
	}
	
}
#hero {}
footer{
	background:var(--green);
	color:white;
	.section-inner{
		padding-top:8px;
		padding-bottom:8px;
	}
	p, a{
		margin:0;
	}
}
.asp-wrap{
	display:flex;
	flex-direction:column;
	gap:24px;
	margin:2em 0;
}
.asp{
	text-align:center;
	img{
		border:3px solid var(--green);
		border-radius:100%;
		margin-bottom:.5em;
		max-width:165px;
	}
}
.map{
	width:100%;
	filter:saturate(0);
}

.contact-wrap{
	background:white;
	position:relative;
		box-shadow:0 0 16px rgba(0,0,0,.05);
}
@media screen and (max-width:991px){
	.menu-wrap ul{
		display:none;
	}
	.map{
		aspect-ratio:2/1;
		object-fit:cover;
		object-position:center center;
		margin-right:-16px;
		margin-left:-16px;
		width:calc(100% + 32px)
	}
	.contact-wrap{
		padding:16px;
		margin-top:-40px;
	}
}
@media screen and (min-width:992px){
	.section-inner{
		padding:80px 40px;
	}
	.menu-wrap ul{
		flex-direction:row;
	}
	.logo{
		max-width:80px;
	}
	#hero{
		.section-inner{
			padding-top:120px;
		}
		.icons-wrap{
			margin-bottom:80px;
		}
	}
	
	.asp-wrap{
		flex-direction:row;    
		justify-content: space-around;
}
	.contact-wrap{
		padding:24px;
		background:white;
		margin-left:auto;
		margin-right:24px;
		margin-top:-160px;
		
	}
}