/* From the :root element you can easily change the colors of the design, its size and so on. */
:root {

/* You can change the font family in the whole design here. (You need to add the font family to the codes.) */
	--font_family: 'Alexandria', sans-serif;
	
/* You can change the font size here, is proportional to all texts. */
	--font_size: 16px;
	
/* You can change the background color by typing the color code. (If you do not enter a background-image image, the background-color will be active.) */
	--background_color: #191b21;
	--background_image: url("../img/background.jpg");
	
/* You can change the frame thickness and color of the picture by typing the number of pixels and the color code. */
	--image_border_color: #000;
	--image_border_px: 0.2em;
	
/* You can change the width and size of the picture by typing the number of pixels. */
	--image_width: 10em;
	--image_height: 10em;
	
/* You can change the colors of the title and description section by typing the color codes. */
	--title_color: #523bc4;
	--title_font_family: 'Alexandria', sans-serif;
	--description_color: #fff;
	
/* You can change the colors of social media icons by changing the color code. */
	--svg_color: #fff; 
	--svg_background_color: #523bc4;
	--svg_background_hover_color: #6364f6;

/* You can change the background, text color and active color of the menu by changing the color codes. */
	--menu_background_color: #523bc4;
	--menu_text_color: #523bc4;
	--menu_text_active_color: #6364f6;
	--menu_text_hover_color: #6364f6;
	
/* You can change the button's background, text color and active color by changing the color codes. */
	--button_background_color: #523bc4;
	--button_text_color: #fff;
	--button_svg_color: #fff;
	--button_background_hover_color: #6364f6;
	
/* You can change the background, text color and active color of the text field by changing the color codes. */
	--textarea_background_color: #0e0e0e;
	--textarea_text_color: #fff;
	--textarea_link_text_color: #f1c40f;
	
/* You can change the background, text color and active color of the footer area by changing the color codes. */
	--footer_background_color: #292c36;
	--footer_text_color: #fff;
	--footer_link_text_color: #523bc4;
	--footer_link_text_hover_color: #6364f6;
}
	
/* Basic Codes */
	
body {
	font: var(--font_size) var(--font_family);
	font-weight: 400;
	line-height: 1.5;
	/*background: var(--background_color) var(--background_image) no-repeat center;*/
	background: var(--background_color);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
	
.flex_column_center {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
	
.flex_row_center {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.flex_row_left {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
	padding: 0 6em;
}
	
.flex_no_wrap_row_center {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
	
/* Logo, Title and Description Codes */
	
.header_img {
	padding-top: 1em;
}
	
.header_img img {
	height: var(--image_height);
	width: var(--image_width);
	border: var(--image_border_px) solid var(--image_border_color);
	border-radius: 50%;
	margin-bottom: 0.5em;
}
	
.header_text h1 {
	color: var(--title_color);
	font: 3.5em var(--title_font_family);
	font-weight: 800;
	margin-bottom: 0.125em;
	text-align: center;
}

.header_text h2 {
	color: var(--description_color);
	font: 2em var(--title_font_family);
	font-weight: 600;
	margin-bottom: 0.75em;
	text-align: center;
}

.header_text p {
	color: var(--description_color);
	font-size: 1em;
    text-align: justify;
	margin-bottom: 0.25em;
}

.header_h_item {
	width: 36vw;
}	
	
/* Social Media Icons Codes */
	
.header_svg_list {
	padding-top: 3em;
    margin: 0 auto;
    width: 28vw;
}
	
.header_svg_item {
	width: 3.25em;
	height: 3.25em;
	cursor: pointer;
    margin: 0.3em;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 100%;
    background-color: var(--svg_background_color);
}
	
.header_svg_item:hover {
	transform: scale(1.1);
	transition: 0.10s ease;
    background-color: var(--svg_background_hover_color);
}
	
.header_svg_item svg {
	fill: var(--svg_color);
	height: 60%;
	width: 60%;
}

	
/* Menu Codes */
	
#header_nav_menu_item_1 {
	color: var(--menu_text_active_color);
}
	
#header_nav_menu_item_2,
#header_nav_menu_item_3 {
	/*background-color: var(--menu_background_color);*/
}
	
.header_nav_menu_list {
	padding-top: 1em;
}

.header_nav_menu_list li:not(:last-child) {
  border-right: 1.5px solid #fff;
}
	
.header_nav_menu_item {
	color: var(--menu_text_color);
	text-align: center;
	list-style-type: none;
	cursor: pointer;
	padding: 0 0.55em;
	margin: 0.5em 0;
	cursor: pointer;
	transition: 0.10s ease;
	font-size: 1em;
	line-height: 1em;
	font-weight: 800;
}

	.header_nav_menu_item:hover {
		color: var(--menu_text_hover_color) !important;
	}

	
/* Menu Container Codes */
	
main {
	margin-bottom: auto;
}

main h2 {
	color: var(--description_color);
	font: 2.5em var(--title_font_family);
	font-weight: 800;
 	margin-top: 1em;
 	text-align: center;
}

.section_container_hidden {
	display: none;
}

.main_a_item {
	margin-top: 1em;
	text-decoration: none;
}
	
.main_text_item {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--button_text_color);
	background-color: var(--button_background_color);
	width: 32.5em;
	margin-top: 1em;
	padding: 0.8em;
	border-radius: 1.5em;
	min-height: 4em;
	text-align: center;
}
	
.main_button_item {
	color: var(--button_text_color);
	background-color: var(--button_background_color);
	width: 32.5em;
	border-radius: 1.5em;
	min-height: 4em;
	text-align: center;
	cursor: pointer;
	font-weight: 800;
}
	
.main_small_button_list {
	display: flex;
	flex-direction: row;
}
	
.main_small_a_item {
	margin-top: 1em;
	text-decoration: none;
}
	
.main_small_a_item + .main_small_a_item {
	margin-left: 10px;
}
	
.main_small_button_item:hover,
.main_button_item:hover {
	background-color: var(--button_background_hover_color);
	transform: scale(1.05);
	transition: 0.10s ease;
}
	
.main_small_button_item {
	color: var(--button_text_color);
	background-color: var(--button_background_color);
	width: calc(36em / 2 - 5px);
	border-radius: 1.5em;
	min-height: 4em;
	text-align: center;
	cursor: pointer;
	font-weight: 800;
}

.main_svg_item {
	width: 2.1em;
	height: 2.1em;
	margin: 0 0.75em 0 0;
}

.main_svg_item svg {
	fill: var(--button_svg_color);
}

/* Footer Codes */
	
.footer_div_item {
	color: var(--footer_text_color);
	background: var(--footer_background_color);
	padding: 1em;
	margin-top: 3em;
}
	
.footer_a_item {
	/*color: var(--footer_link_text_color);*/
	text-decoration: none;
}
	
.footer_a_item:hover {
	/*color: var(--footer_link_text_hover_color);
	text-decoration: underline;*/
}

.footer_svg_item {
	width: 1.5em;
	height: 1.5em;
	margin: 0 0.25em 0 0;
}

.footer_button_item {
	color: var(--footer_link_text_color);
	background-color: transparent;
	cursor: pointer;
	font-weight: 800;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
}

.footer_button_item:hover {
	color: var(--footer_link_text_hover_color);
	transform: scale(1.05);
	transition: 0.10s ease;
}

	.footer_button_item svg {
		fill: var(--svg_color);
	}
	
		.footer_button_item:hover svg {
			fill: var(--svg_hover_color);
		}

/* Responsive Codes */
	
@media (max-width: 768px) { 
	.main_text_item {
		width: 92vw;
	}
		
	.main_small_button_item {
		width: calc(92vw / 2 - 5px);;
	}
		
	.main_button_item {
		width: 92vw;
	}
		
	.header_h_item {
		width: 92vw;
	}	

	.header_text h1 {
		font: 2.75em var(--title_font_family);
		font-weight: 800;
	}
	
	.header_text h2 {
		font: 1.5em var(--title_font_family);
		font-weight: 600;
	}
	
	main h2 {
		font: 2em var(--title_font_family);
		font-weight: 800;
	}	
	
	.header_nav_menu_item {
		font-size: 1em;
	}	
	
	.header_svg_list {
		width: 92vw;
	}
	
	.header_svg_item {
		width: 4em;
		height: 4em;
	}
	
	.flex_row_left {
		padding: 0 1em;
	}
		
}
