

/****LEFT MENU SECTION*****/
@media(max-width : 600px){ 
    .left_menu_section{
    	width : 40%;
    	position : fixed;
    	height : 100vh;
    	background-color :#e3dacc;
    	display : none !important;
    	top :0;
    	left : 0;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .menu_item{
    	height : 85px;
    	width : 100%;
    	display : flex;
    	align-items : center;
    	padding-left : 25px;
    	position : relative;
    }
    
    .menu_image{
    	width : 85px;
    	height : 82px;
    	border-radius : 2px;
    	
    }
    
    #team_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 180px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #liberia_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 68px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    #nigeria_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 132px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    
    #carbon_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #agriculture_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 36px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #security_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 100px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #press_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #climate_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    .team_dropdown_item,.liberia_dropdown_item, .nigeria_dropdown_item, .carbon_dropdown_item, .agriculture_dropdown_item, .security_dropdown_item, .press_dropdown_item, .climate_dropdown_item{
    	color : #666666;
    }
    .team_dropdown_item:hover,.liberia_dropdown_item:hover, .nigeria_dropdown_item:hover, .carbon_dropdown_item:hover, .agriculture_dropdown_item:hover, .security_dropdown_item:hover, .press_dropdown_item:hover, .press_dropdown_item:hover{
      color: #16181b;
      text-decoration: none;
      background-color: #e9ecef;
    }
    
    
    
    
    .menu_item:not(:last-child){
    	border-bottom : solid 0.5px #29484a;
    }
    
    .menu_link{
    	color : #29484a;
    	font-weight : 600;
    	padding-left : 20px;
    	cursor : pointer;
    	font-size : 1.2em;
    }
    
    
    .menu_link:hover{
    	color : #29484a;
    	font-weight : 600;
    	font-size : 1.25em;
    	padding-left : 20px;
    	cursor : pointer;
    }

}



@media(min-width : 600px){ 
    .left_menu_section{
    	width : 60%;
    	position : fixed;
    	height : 100vh;
    	background-color :#e3dacc;
    	display : none;
    	top :0;
    	left : 0;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .menu_item{
    	height : 85px;
    	width : 100%;
    	display : flex;
    	align-items : center;
    	padding-left : 25px;
    	position : relative;
    }
    
    .menu_image{
    	width : 85px;
    	height : 82px;
    	border-radius : 2px;
    	
    }
    
    #team_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 180px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #liberia_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 68px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    #nigeria_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 132px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    
    #carbon_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #agriculture_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 36px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #security_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 100px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #press_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #climate_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    .team_dropdown_item,.liberia_dropdown_item, .nigeria_dropdown_item, .carbon_dropdown_item, .agriculture_dropdown_item, .security_dropdown_item, .press_dropdown_item, .climate_dropdown_item{
    	color : #666666;
    }
    .team_dropdown_item:hover,.liberia_dropdown_item:hover, .nigeria_dropdown_item:hover, .carbon_dropdown_item:hover, .agriculture_dropdown_item:hover, .security_dropdown_item:hover, .press_dropdown_item:hover, .press_dropdown_item:hover{
      color: #16181b;
      text-decoration: none;
      background-color: #e9ecef;
    }
    
    
    
    
    .menu_item:not(:last-child){
    	border-bottom : solid 0.5px #29484a;
    }
    
    .menu_link{
    	color : #29484a;
    	font-weight : 600;
    	padding-left : 20px;
    	cursor : pointer;
    	font-size : 1.2em;
    }
    
    
    .menu_link:hover{
    	color : #29484a;
    	font-weight : 600;
    	font-size : 1.25em;
    	padding-left : 20px;
    	cursor : pointer;
    }

}




@media(min-width : 768px){ 
    .left_menu_section{
    	width : 40%;
    	position : fixed;
    	height : 100vh;
    	background-color :#e3dacc;
    	display : none;
    	top :0;
    	left : 0;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .menu_item{
    	height : 85px;
    	width : 100%;
    	display : flex;
    	align-items : center;
    	padding-left : 25px;
    	position : relative;
    }
    
    .menu_image{
    	width : 85px;
    	height : 82px;
    	border-radius : 2px;
    	
    }
    
    #team_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 180px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #liberia_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 68px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    #nigeria_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 132px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    
    #carbon_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #agriculture_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 36px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #security_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 100px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #press_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #climate_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    .team_dropdown_item,.liberia_dropdown_item, .nigeria_dropdown_item, .carbon_dropdown_item, .agriculture_dropdown_item, .security_dropdown_item, .press_dropdown_item, .climate_dropdown_item{
    	color : #666666;
    }
    .team_dropdown_item:hover,.liberia_dropdown_item:hover, .nigeria_dropdown_item:hover, .carbon_dropdown_item:hover, .agriculture_dropdown_item:hover, .security_dropdown_item:hover, .press_dropdown_item:hover, .press_dropdown_item:hover{
      color: #16181b;
      text-decoration: none;
      background-color: #e9ecef;
    }
    
    
    
    
    .menu_item:not(:last-child){
    	border-bottom : solid 0.5px #29484a;
    }
    
    .menu_link{
    	color : #29484a;
    	font-weight : 600;
    	padding-left : 20px;
    	cursor : pointer;
    	font-size : 1.2em;
    }
    
    
    .menu_link:hover{
    	color : #29484a;
    	font-weight : 600;
    	font-size : 1.25em;
    	padding-left : 20px;
    	cursor : pointer;
    }

}



@media(min-width : 992px){ 
    .left_menu_section{
    	width : 40%;
    	position : fixed;
    	height : 100vh;
    	background-color :#e3dacc;
    	display : none;
    	top :0;
    	left : 0;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .menu_item{
    	height : 85px;
    	width : 100%;
    	display : flex;
    	align-items : center;
    	padding-left : 25px;
    	position : relative;
    	/* justify-content : center; */
    }
    
    .menu_image{
    	width : 85px;
    	height : 82px;
    	border-radius : 2px;
    	
    }
    
    #team_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 180px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #liberia_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 68px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    #nigeria_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 132px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    
    #carbon_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #agriculture_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 36px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #security_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 100px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #press_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #climate_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    .team_dropdown_item,.liberia_dropdown_item, .nigeria_dropdown_item, .carbon_dropdown_item, .agriculture_dropdown_item, .security_dropdown_item, .press_dropdown_item, .climate_dropdown_item{
    	color : #666666;
    }
    .team_dropdown_item:hover,.liberia_dropdown_item:hover, .nigeria_dropdown_item:hover, .carbon_dropdown_item:hover, .agriculture_dropdown_item:hover, .security_dropdown_item:hover, .press_dropdown_item:hover, .press_dropdown_item:hover{
      color: #16181b;
      text-decoration: none;
      background-color: #e9ecef;
    }
    
    
    
    
    .menu_item:not(:last-child){
    	border-bottom : solid 0.5px #29484a;
    }
    
    .menu_link{
    	color : #29484a;
    	font-weight : 600;
    	padding-left : 20px;
    	cursor : pointer;
    	font-size : 1.2em;
    }
    
    
    .menu_link:hover{
    	color : #29484a;
    	font-weight : 600;
    	font-size : 1.25em;
    	padding-left : 20px;
    	cursor : pointer;
    }

}


@media(min-width : 768px){ 
    .left_menu_section{
    	width : 50%;
    	position : fixed;
    	height : 100vh;
    	background-color :#e3dacc;
    	display : none;
    	top :0;
    	left : 0;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .menu_item{
    	height : 85px;
    	width : 100%;
    	display : flex;
    	align-items : center;
    	padding-left : 25px;
    	position : relative;
    	/* justify-content : center; */
    }
    
    .menu_image{
    	width : 85px;
    	height : 82px;
    	border-radius : 2px;
    	
    }
    
    #team_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 180px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #liberia_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 68px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    #nigeria_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 132px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    
    #carbon_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #agriculture_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 36px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #security_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 100px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #press_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #climate_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    .team_dropdown_item,.liberia_dropdown_item, .nigeria_dropdown_item, .carbon_dropdown_item, .agriculture_dropdown_item, .security_dropdown_item, .press_dropdown_item, .climate_dropdown_item{
    	color : #666666;
    }
    .team_dropdown_item:hover,.liberia_dropdown_item:hover, .nigeria_dropdown_item:hover, .carbon_dropdown_item:hover, .agriculture_dropdown_item:hover, .security_dropdown_item:hover, .press_dropdown_item:hover, .press_dropdown_item:hover{
      color: #16181b;
      text-decoration: none;
      background-color: #e9ecef;
    }
    
    
    
    
    .menu_item:not(:last-child){
    	border-bottom : solid 0.5px #29484a;
    }
    
    .menu_link{
    	color : #29484a;
    	font-weight : 600;
    	padding-left : 20px;
    	cursor : pointer;
    	font-size : 1.2em;
    }
    
    
    .menu_link:hover{
    	color : #29484a;
    	font-weight : 600;
    	font-size : 1.25em;
    	padding-left : 20px;
    	cursor : pointer;
    }

}






@media(min-width : 1200px){ 
    .left_menu_section{
    	width : 40%;
    	position : fixed;
    	height : 100vh;
    	background-color :#e3dacc;
    	display : none;
    	top :0;
    	left : 0;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .menu_item{
    	height : 85px;
    	width : 100%;
    	display : flex;
    	align-items : center;
    	padding-left : 25px;
    	position : relative;
    	/* justify-content : center; */
    }
    
    .menu_image{
    	width : 85px;
    	height : 82px;
    	border-radius : 2px;
    	
    }
    
    #team_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 180px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #liberia_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 68px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    #nigeria_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 132px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    
    
    #carbon_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #agriculture_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 36px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #security_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 50px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 100px;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    #press_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 80px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    #climate_dropdown{
    	display : none;
    	position : absolute;
    	width : 100%;
    	height : 100px;
    	background : #ffffff;
    	z-index : 1;
    	list-style-type : none;
    	border-radius : 5px;
    	top : 0;
    	left : 150px;
    	padding-left : 10px;
    	padding-top : 10px;
    	cursor : pointer;
    	border : solid 1px #000000;
    	box-shadow : 0px 3px 1px 1px #3e3e3e4C;
    }
    
    .team_dropdown_item,.liberia_dropdown_item, .nigeria_dropdown_item, .carbon_dropdown_item, .agriculture_dropdown_item, .security_dropdown_item, .press_dropdown_item, .climate_dropdown_item{
    	color : #666666;
    }
    .team_dropdown_item:hover,.liberia_dropdown_item:hover, .nigeria_dropdown_item:hover, .carbon_dropdown_item:hover, .agriculture_dropdown_item:hover, .security_dropdown_item:hover, .press_dropdown_item:hover, .press_dropdown_item:hover{
      color: #16181b;
      text-decoration: none;
      background-color: #e9ecef;
    }
    
    
    
    
    .menu_item:not(:last-child){
    	border-bottom : solid 0.5px #29484a;
    }
    
    .menu_link{
    	color : #29484a;
    	font-weight : 600;
    	padding-left : 20px;
    	cursor : pointer;
    	font-size : 1.2em;
    }
    
    
    .menu_link:hover{
    	color : #29484a;
    	font-weight : 600;
    	font-size : 1.25em;
    	padding-left : 20px;
    	cursor : pointer;
    }

}


/* #83522b */
/* #d3c080 */
/* #d3c080 */
/* #734c29 */
/* #927145 */