




#content
{	
	width: 1200px;

	background-color: transparent; 
	box-shadow: none;
}


#home
{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;

	width: 100%;
}



/* ===================================================================================== */
/* =================================    HOME BOXES   =================================== */
/* ===================================================================================== */


#home_boxes_wrapper
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	width: 930px;
}



.home_page_box_anchor
{
	text-decoration: none;
	color: black;
}




.home_box
{
	display: flex;

	margin-top: 20px;
	margin-bottom: 20px;

	background-color: rgba(255, 255, 255, 0.9);
	
}

.clickable_box
{
	cursor: pointer;
	transition: transform 0.5s;
}
.clickable_box:hover { transform: scale(1.05, 1.05); }




.home_box_content
{
	display: flex;
	align-items: center;
	justify-content: center;

	padding-top: 10px;
	padding-bottom: 10px;
	font-family: FiraLight;
}


#registration_home_box { width: 930px; }
#partners_home_box { width: 930px; }
#news_home_box { width: 930px; }
#events_home_box { width: 450px; }
#gallery_home_box {	width: 450px; }


/* ===================================================================================== */
/* ===================================================================================== */
/* ===================================================================================== */



.home_box_title
{
	display: flex;
	align-items: center;
	width: 80px;


	background-color: #FF7017;
	/* rgb(160, 191, 97) */
}


.home_box_title span
{
	width: 100%;

	text-align: center;

	font-family: FiraExtraLight;
	color: white;
	font-size: 14px;
}


/* ===================================================================================== */
/* =================================    PARTNERS BOX   ================================= */
/* ===================================================================================== */



#partners_box_content
{
	width: 820px;
}


.home_partner_box
{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 170px;
	height: 120px;

	margin-left: 10px;
	margin-right: 10px;
}


.partners_img
{
	width: 120px;
	margin: auto;
}

.partners_label
{
	width: 100%;

	margin-top: 20px;
	text-align: center;
}

/* ===================================================================================== */
/* ===============================    NEWS LETTER BOX   ================================ */
/* ===================================================================================== */




#news_box_title
{
	width: 80px;
	background-color: #3FE800;
}



#news_box_content
{
	width: 820px;
}




/* ===================================================================================== */
/* ==============================   EVENTS LETTER BOX   ================================ */
/* ===================================================================================== */



#events_box_title
{
	width: 80px;
	background-color: #109CFF;
}


#events_box_content
{
	width: 340px;
}









/* ===================================================================================== */
/* =================================   GALLERY BOX   =================================== */
/* ===================================================================================== */




#gallery_box_title { background-color: #FF1717; }



#gallery_box_content
{
	flex-direction: column;
	flex-wrap: wrap;
	width: 370px;
}


#gallery_box_content_title
{
	width: 100%;
	
	text-align: center;
	font-size: 20px;
}

#gallery_box_img_wrapper
{
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
}

.gallery_box_img
{
	display: inline-block;
	width: 70px;
	margin-left: 10px;
	margin-right: 10px;

}


/*
================================================================================================================================================
================================================================================================================================================
================================================================================================================================================
================================================================================================================================================
================================================================================================================================================
*/



#right_panel
{
	display: inline-block;
	width: 200px;
}



.person_div
{
	display: block;
	width: 100%;	
	margin-top: 20px;
	background-color: rgba(255, 255, 255, 0.9);
	
}


.person_img
{
	display: block;
	width: 100%;

}
.person_name
{
	display: block;
	width: 100%;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}








