﻿/*HEADER*/
.menu_container {
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
	color: #202659;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px 20px 40px;
    background-color: rgba(57,119,84,0.95);
    z-index: +1000000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu_container .menu_left, .menu_container .menu_right {
	width: 50%;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;
}

.menu_container .menu_left img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain
}

.menu_right .menu_items {
	float: right;
    display: flex;
	gap: 30px;
}

.menu_right .menu_items .member_home img {
	width: 30px;
	position: relative;
	top: -1px;
	vertical-align: middle;
}

.menu_right .menu_items a {
    text-decoration: none;
	color: #202659;
    transition: color 0.3s ease;
}

.menu_right .menu_items a:hover {
    color: #7095CE;
}

.menu_items .dropdown {
	position: relative;
	vertical-align: middle;
	align-items: center;
	margin: 0px 5px 0px 5px;
}

.menu_items .dropdown:hover {
	cursor: pointer;
}

.menu_items .dropdown img {
	width: 10px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

.menu_items .dropdown_menu {
	display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
    background-color: #FFF;
    border-radius: 5px;
    min-width: 150px;
	max-height: 300px;
    z-index: 10;
	padding: 0px;
	margin-top: 5px;
	margin: 0 auto;
}

.menu_items .dropdown_menu a {
	display: block;
    text-decoration: none;
    padding: 5px 5px 5px 15px;
    font-size: 14px;
	font-weight: 300;
}

.menu_items .dropdown .dropdown_menu a:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.menu_items .dropdown .dropdown_menu a:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.menu_items .dropdown .dropdown_menu a:hover {
	background-color: #CFCFCF;
}

.menu_right .menu_buttons {
    display: flex;
	align-items: center;
    gap: 40px;
	border-left: 1px solid #E2E2E2;
}

.menu_right .menu_buttons .log_in {
	padding-left: 40px;
    text-decoration: none;
	color: #202659;
    transition: color 0.3s ease;
}

.menu_right .menu_buttons .log_in:hover {
    color: #7095CE;
	cursor: pointer;
}

.menu_right .menu_buttons .sign_up {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 20px 8px 20px;
	background-color: #202659;
	color: #FFF;
	border-radius: 15px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s linear;
	text-decoration: none;
	height: 15px;
}

.menu_right .menu_buttons .sign_up:hover {
	background-color:#7095CE;
	color: #202659;
	cursor: pointer;
}

.menu_right .submenu_button img {
	width: 25px;
	vertical-align: middle;
	cursor: pointer;
}

/**Members**/
.menu_items .dropdown.member {
	position: relative;
	padding-left: 20px;
	width: 100%;
	vertical-align: middle;
	align-items: center;
}

.menu_items .dropdown.member:hover {
	cursor: pointer;
}

.menu_items .dropdown.member section {
	display: inline-flex;
	vertical-align: middle;
	align-items: center;
}

.menu_items .dropdown.member .user {
	float: left;
	width: 25px;
	height: 25px;
	vertical-align: middle;
	line-height: 25px;
	border-radius: 50%;
	background-color: #d1e2f4;
	color: #FFF;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding: 5px;
}

.menu_items .dropdown.member .user:hover {
	cursor: pointer;
}

.menu_items .dropdown.member .user_name {
	float: left;
	vertical-align: middle;
	color: #000;
	text-align: left;
	font-size: 12px;
	font-weight: 600;
	padding: 2px;
	margin-left: 10px;
	margin-top: 3px;
	line-height: 13px;
}

.menu_items .dropdown.member .user_name .member_id {
	display: inline-block;
	border-radius: 2px;
	border: 1px solid #000;
	color: #000;
	font-size: 10px;
	font-weight: 300;
	padding: 2px;
	text-align: center;
	height: 10px;
	line-height: 10px;
	vertical-align: middle;
	margin: 4px 0px 0px 0px;
}

.menu_items .dropdown.member .dropdown_menu {
	display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.2);
    background-color: #FFF;
    border-radius: 10px;
    min-width: 200px;
	max-height: 350px;
    z-index: 10;
	padding: 0px;
	margin-top: 5px;
}

.menu_items .dropdown.member .dropdown_menu .member_img {
	width: 20px;
	position: relative;
	vertical-align: middle;
	top: -2px;
	margin-right: 5px;
}

.menu_items .dropdown.member .dropdown_menu a {
	display: block;
    text-decoration: none;
    padding: 5px 5px 5px 15px;
    font-size: 14px;
	font-weight: 300;
	color: #000;
}

.menu_items .dropdown.member .dropdown_menu a:hover {
    color: #7095CE;
}

.menu_items .dropdown.member .dropdown_menu a:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.menu_items .dropdown.member .dropdown_menu a:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.menu_items .dropdown.member .dropdown_menu a:hover {
	background-color: #E1E1E1;
}
/**End-Members**/

/**General-Menu**/
.general_menu {
	font-family: 'Fire+Sans', sans-serif;
    display: none;
    position: fixed;
    z-index: +1000000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px;
    background: rgba(0, 0, 0, 0.8);
}

.general_menu:target {
    display: block;
}

.general_menu .menu_box {
    display: block;
    position: fixed;
    top:0px;
    right:0px;
    background-color: #F7F7F7;
    min-width: 300px;
    height: 100%;
	z-index: +100000;
	color: #000;
	padding: 15px;
}

.general_menu .menu_box .header {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.general_menu .menu_box .header .close {
	position: absolute;
	left: -60px;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.general_menu .menu_box .header .close img {
	width: 35px;
	filter: brightness(0) invert(1);
}

.general_menu .menu_box .header .user {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	color: #202659;
}

.general_menu .menu_box .header .log_in {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #202659;
    text-decoration: none;
    transition: color 0.3s ease;
}

.general_menu .menu_box .header .log_in:hover {
    color: #7095CE;
	cursor: pointer;
}

.general_menu .menu_box .header .log_in a:link, .general_menu .menu_box .header .log_in a:active, .general_menu .menu_box .header .log_in a:visited {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #202659;
    text-decoration: none;
    transition: color 0.3s ease;
}

.general_menu .menu_box .header .log_in img {
    width: 25px;
	position: relative;
	top:-1px;
	padding-right: 5px;
}

.general_menu .menu_box .header .logo {
	width: 35px;
    cursor: pointer;
	filter: none;
	margin-left: auto;
}

.general_menu .menu_box .header .logo img {
	width: 35px;
}

.general_menu .menu_box .sections {
	margin-bottom: 40px;
}

.general_menu .menu_box .label_container {
	width: 100%; 
	position: relative; 
	display: flex; 
	align-items: center;
    font-size:14px;
	font-weight: 600;
	text-align: left;
	margin: 15px 0px 5px 0px;
}

.general_menu .menu_box .label_container .underline {
    flex: 1; 
    border-top: 1px solid #757575;
	margin-left: 10px;
}

.general_menu .menu_box .label_container .underline.no_title {
	margin-left: 0px;
}

.general_menu .menu_box .content {
    font-size:14px;
	color: #000;
    text-align: left;
}

.general_menu .menu_box .content .items {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	margin: 15px 0;
	cursor: pointer;
}

.general_menu .menu_box .content .items .member_img {
	width: 20px;
	position: relative;
	vertical-align: middle;
	top: -2px;
	margin-right: 5px;
}

.general_menu .menu_box .content .items .dropdown_img {
	width: 10px;
	filter: brightness(0);
	position: static;
	vertical-align: middle;
}

.general_menu .menu_box .content .items_dropdown {
	display: none;
	padding-bottom: 5px;
}

.general_menu .menu_box .content .sub.items {
	font-size: 13px;
	padding-left: 5px;
}

.general_menu .menu_box .content .items a:link, .general_menu .menu_box .content .items a:active, .general_menu .menu_box .content .items a:visited{
	color: #000;
	text-decoration: none;
}

.general_menu .menu_box .content .items a:hover {
	color: #D1E2F4;
    cursor: pointer;
}

.general_menu .menu_box .content .sign_up {
	margin: 0 auto;
	margin-top: 15px;
	padding: 8px 20px 8px 20px;
	background-color: #202659;
	color: #FFF;
	border-radius: 15px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s linear;
	text-decoration: none;
	height: 15px;
	line-height: 15px;
	vertical-align: middle;
	width: 40%;
	text-align: center;
}

.general_menu .menu_box .content .sign_up:hover {
	background-color:#7095CE;
	color: #202659;
	cursor: pointer;
}

.general_menu .menu_box .content .social {
    text-align: center;
	align-content: center;
	align-items: center;
}

.general_menu .menu_box .content .social img {
    width: 35px;
    cursor: pointer;
    filter: none;
}
/*END-HEADER*/

/*FOOTER*/
.footer {
    background-color: #202659;
    color: #FFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    padding: 40px 20px 30px 20px;
    text-align: center;
}

.footer_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.footer_logo {
	padding-top: 20px;
}

.footer_logo img {
    width: 30px;
}

.footer_logo p {
    margin: 10px 0;
    font-size: 12px;
}

.social a img {
    width: 30px;
    margin-right: 5px;
    filter: invert(28%) sepia(100%) hue-rotate(1deg) saturate(3) brightness(1000%);
}

.sitemap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 70%;
	font-size: 12px;
}

.sitemap_section {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 200px;
}

.sitemap_section span {
	font-size: 9px;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.sitemap_section b {
    font-size: 12px;
	font-weight: 600;
}

.sitemap_section table {
    margin-top: 10px;
}

.sitemap_section p,
.sitemap_section a {
    font-size: 11px;
    color: #FFF;
    text-decoration: none;
}

.sitemap_section a:hover {
    text-decoration: underline;
    color: #D1E2F4;
}

hr {
    border: 0.1px solid rgba(242, 241, 223, 0.3);
    margin: 20px 0;
}

.footer_bottom {
    font-size: 10px;
}

.footer_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer_menu .menu_item {
    cursor: pointer;
    text-decoration: underline;
	color: #F2F1DF;
}

.footer_bottom p {
    font-size: 10px;
    margin: 0;
}
/*END-FOOTER*/

/* Media query for tablets */
@media screen and (max-device-width : 1024px) { 
.menu_container {
    padding: 20px 30px 20px 30px;
}

.menu_container .menu_left {
	width: 30%;
	height: 30px;
	line-height: 30px;
}

.menu_container .menu_right {
	width: 70%;
	height: 30px;
	line-height: 30px;
}

.menu_right .menu_items {
	gap: 20px;
}

.menu_items .dropdown {
    display: none;
}

.menu_right .menu_buttons {
    gap: 20px;
	border-left: none;
}

.general_menu_content .first {
	display: block;
}

.footer {
	padding-top: 5px;
}

.footer_top {
	flex-direction: column;
	text-align: center;
}

.sitemap {
	margin-top: 20px;
	width: 100%;
	align-items: center;
}
}

/* Media query for tablets2 */
@media screen and (max-device-width : 1180px) { 

}

/*media query for small screen devices */
@media screen and (max-width:480px) {  
.menu_container {
    padding: 20px;
}

.menu_container .menu_left {
	width: 30%;
	height: 30px;
	line-height: 30px;
}

.menu_container .menu_right {
	width: 70%;
	height: 30px;
	line-height: 30px;
}

.menu_right .menu_items {
	gap: 20px;
}

.menu_right .menu_buttons .log_in {
    display: inline-block;
    background-image: url('../images/login.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    overflow: hidden;
	padding: 0px 10px 0px 0px;
}

.menu_right .menu_buttons .sign_up {
	display: none;
}

.menu_items .dropdown {
    display: none;
}

.menu_right .menu_buttons {
    gap: 20px;
	border-left: none;
}

.lightbox .menu_box {
    width: 250px;
    padding: 0px;
}

.general_menu_content .third {
	display: block;
}

.footer {
    padding: 20px 10px 20px 10px;
}

.footer_top {
	text-align: center;
}

.sitemap {
	display: grid;
	grid-template-columns: 40% 40%;
	grid-auto-rows: auto;
	gap: 10px;
}

.sitemap_section {
    min-width: 150px;
	margin: 0 auto;
    flex: 0 01 calc(0% - 0px)
}

.sitemap_section:first-child {
	grid-column: 1 / -1;
	width: 90%;
	border-bottom: 1px solid #FFF;
}

.sitemap_section:nth-child(2),
.sitemap_section:nth-child(3) {
	grid-column: span 1;
	width: auto;
}

.sitemap_section:nth-child(2) {
	grid-column: 1 / 2;
	border-right: 1px solid #FFF;
}

.sitemap_section:nth-child(3) {
	grid-column: 2 / 3;
	border-left: 1px solid #FFF;
}

.footer_menu {
    gap: 5px;
}

.footer_bottom p {
    margin-bottom: 10px;
}
}