:root{
    --green-primary: #b3d78c;
    --black-secondary: #333333;
	--grey-textcolor: #747474;
}

body{
    background-image: url('../images/vbenp-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
	font-family: 'PT Sans', sans-serif;
}

h1 {
	width: 100%;
	font-size: 50px;
	line-height: 35px;
	font-weight: 500;
}

h2 {
	width: 100%;
	font-size: 30px;
	color: var(--green-primary);
	font-weight: 300;
}

h3 {
	width: 100%;
	font-size: 25px;
	line-height: 25px;
	text-transform: uppercase;
}

h4 {
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
}

h5 {
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 25px;
}

p{
	color: var(--grey-textcolor);
}

a{
    cursor: pointer;
	text-decoration: underline;
	line-height: 1.3;
}

a:hover{
	color: var(--green-primary);
}

main{
	width: 100%;
	min-height: 50vh;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 35px;
	padding: 75px 30px;
}

.nav_text{
	font-size: 22px;
    text-align: right;
    margin-top: -100px;
    position: absolute;
    z-index: 99;
	color: white;
	width: 100%;
	padding: 0 60px;
	font-weight: 600;
	text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 515px){
	.nav_text{
		font-size: 22px;
		text-align: right;
		margin-top: -130px;
		position: absolute;
		padding-left: 20px;
		font-size: 17px;
	}
}
/* Styling page */
.container{
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: white;
	padding: 25px;
	border-radius: 7px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
	position: relative;
}

header{
	width: 100%;
	height: 180px;
	background-color: white;

}

.small_header_top{
	width: 100%;
	height: 20%;
	text-align: left;
	padding: 10px;
	display: flex;
	justify-content: end;
	flex-wrap: wrap;
}

.header_logo{
	width: 100%;
	height: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container > h1{
	width: 100%;
	height: auto;
	text-align: center;
	padding: 20px 0;
}

.small_line{
	width: 50px;
	height: 5px;
	background-color: var(--green-primary);
	margin: 0 auto;
	margin-bottom: 30px;
}

.container > p{
	width: 100%;
	font-size: 17px;
	text-align: justify;
	line-height: 1.4;
}

.icons_subheading{
	width: 100%;
	text-align: center !important;
	padding-bottom: 15px;
}

/* Icons container */
.icons_container{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
}

.icon{
	width: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	width: 20%;
	min-width: 150px;
}

.icon > i{
	display: flex;
	font-size: 25px;
	background-color: var(--grey-textcolor);
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: var(--green-primary);
	margin-bottom: 10px;
}

.icon > i:hover{
	background-color: var(--green-primary);
	color: white;
	cursor: pointer;
}

.icon > p{
	text-align: center !important;
}

/* Contact */
.icons_container2{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
}

.icon2{
	width: 33.3%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 170px;
}

.icon2 > i{
	display: flex;
	font-size: 25px;
	background-color: var(--grey-textcolor);
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: var(--green-primary);
	margin-bottom: 10px;
}

.icon2 > i:hover{
	background-color: var(--green-primary);
	color: white;
	cursor: pointer;
}

.icon2 > h2{
	text-align: center;
}

.icon2 > p{
	width: 100%;
	text-align: center !important;
	padding: 10px;
}

.icon2 > a{
	padding: 10px;
}

/* small footer */
footer{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 10px;
	color: var(--black-secondary);
}

@media screen and (max-width: 600px){
	.icons_container, .icons_container2 {
		gap: 20px;
		justify-content: center;
	}

	h1{
		font-size: 30px;
	}

	h2{
		font-size: 20px;
	}

	.container{
		padding: 15px;
	}

	main{
		padding: 35px 10px;
	}

	.small_header_top{
		font-size: 12px;
	}

}