@charset "utf-8";
/* CSS Document */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%; /* Ensure the body spans the full viewport */
	background-color: rgba(233, 240, 254);
    font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, sans-serif;
    font-size: 15pt;
    color: rgba(81, 81, 81);
}

/* Ensure font consistency across browser apps */
html {
    -webkit-text-size-adjust: 100%; /* For Safari and Chrome */
    -moz-text-size-adjust: 100%;   /* For Firefox */
    -ms-text-size-adjust: 100%;    /* For IE */
    text-size-adjust: 100%;        /* Default adjustment */
}



/*Fonts*/
h1 {
    color: rgba(81, 81, 81);
    font-size: 26pt;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 20px;
}

h2 {
    font-size: 18pt;
}

h3 {
    font-size: 20pt;
    text-align: center;
}

h4 {
    font-size: 48pt;
    padding-left: 100px;
    margin-top: 0px;
    vertical-align: top;
}

h5 {
    font-size: 16pt;
    color: #ac3ec7;
    margin-top: 16px;
    margin-bottom: 35px;
}

h6 {
    font-size: 16pt;
    color: #ac3ec7;
    text-align: center;
    margin-bottom: 10px;
}

p {
    line-height: 1.3;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 0px;
	margin-bottom: 25px; /* Adjust the spacing between paragraphs */
    vertical-align: top;
}

.container {
	min-height: calc(100vh - 60px); /* Subtract the header height */
	flex-direction: column; /* Allow vertical stacking */
	align-items: center; /* Centers horizontally */
    display: flex;
    justify-content: center; /* Center content horizontally */
    width: 100%;
}

.content {
    width: 100%;
    max-width: 1400px; /* Maximum width of content */
	padding-top: 280px;
 
}

.centered-table {
    width: 100%;
}

.table-page {
    width: 100%;
    border: 0;
    margin: 0 auto;
    padding: 20px;
}


/* Navbar Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: transparent; /* Default transparent background */
    transition: background-color 0.3s ease-in-out;
    height: 40px; /* Fixed height for the sticky menu */
    width: 100%; /* Ensure the header spans the full width */
    display: flex;
	justify-content: space-between;
	align-items: center;
}

.sticky {
    position: fixed !important; /* Ensure the header sticks at the top */
    top: 0 !important; /* Stay at the top */
    width: 100%; /* Full width */
    background-color: rgba(46, 85, 178, 0.6); /* Semi-transparent background */
    z-index: 1000 !important; /* Ensure it stays above other elements */
}



/* Style the navbar */
.style-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    visibility: visible; /* Ensure it's visible on larger screens */
}

.style-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 0;
    margin: 0;
}


.style-nav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    padding: 10px 20px;
    display: inline-block;
}

.style-nav ul li a:hover {
    color: rgba(233, 240, 254);
}


/* Hamburger menu styles */
#mobile-menu-container {
    display: none; /* Hidden by default for large screens */
	position: sticky; /* Sticky positioning for smaller screens */
    z-index: 1001; /* Above other elements */
	top: 0;
	background-color: transparent;
    width: 100%;
	height: 60px;
}

#mobile-menu {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align to the left */
	padding-left: 30px;
	padding-top: 20px;
}

#mobile-menu span  {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: rgba(81, 81, 81);
}


.nav-list {
    display: none; /* Hidden by default */
    flex-direction: column;
    background-color: rgba(233, 240, 254, 0.8);
    position: absolute;
    top: 40px; /* Below the hamburger menu */
	left: 0;
    width: 100%;
    z-index: 1000;
	padding-left: 20px;
}

.nav-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
 
}

.nav-list ul li a {
    display: block;
    width: 100%;
    text-align: left;
	
    color: rgba(81, 81, 81);
	font-size: 20px;
	font-weight: 500;
    text-decoration: none;
}

.nav-list li a {
    display: block;
    padding: 10px 20px;
   	color: rgba(81, 81, 81);
    text-align: left;
    text-decoration: none;
}



/* Base Footer Styles */
footer.footer {
    position: relative; /* Ensure footer scrolls with content */
    width: 100%; /* Full width of the page */
    text-align: center; /* Center the footer content */
    background-color: transparent; /* Transparent background */
    padding: 20px;
}

/* Footer for Small Screens */
footer.footer .footer-page {
    display: flex; /* Ensure large icons are displayed */
    justify-content: center;
    gap: 20px; /* Spacing between icons */
}

.footer-page img:hover {
    transform: scale(1.2); /* Slight zoom on hover */
}

.footer-page img {
    width: 36px;
    height: 36px;
    transition: transform 0.2s ease; /* Adds a hover animation */
}

.footer-copyright {
    font-size: 12px; /* Set font size */
    color: black; /* Set font color */
    text-align: center; /* Center align text */
    margin-top: 0px; /* Add spacing above the copyright note */
	padding-top: 20px;
	margin-right: 100px;
    line-height: 1.2; /* Improve readability */
    clear: both; /* Ensure it clears any floated elements */
    display: block; /* Ensure it occupies its own line */
    width: 100%; /* Make it span the full footer width */
	max-width: 100vw;
}


#linkedin {
    width: 36px;
    height: 36px;
    margin-top: 20px;
    margin-right: 20px;
}

#reddit {
    width: 36px;
    height: 36px;
    margin-top: 20px;
    margin-right: 20px;
}

#facebook {
    width: 36px;
    height: 36px;
    margin-top: 20px;
    margin-right: 20px;
}

#twitter {
    width: 34px;
    height: 34px;

    margin-top: 20px;
    margin-right: 40px;
}



/* Responsive Footer */
@media screen and (max-width: 1024px) {
	header, menu {
		position: sticky; /* Ensure proper context for #mobile-menu absolute positioning */
	}
	
	header {
		height: 60px;
	}
	
		
	.style-nav {
        display: none; /* Hide horizontal menu on small screens */
		visibility: hidden;
  	}
	
	#mobile-menu-container {
        display: flex; /* Show mobile menu on small screens */
        flex-direction: column;
        width: 100%;
		background-image: url('../images/bgnd-mobile-sm.jpg');
		background-size: 100px; /* Ensures the image covers the entire area */
		background-repeat: no-repeat; /* Prevents the image from repeating */
		background-position: center center; /* Centers the image */
		background-color: rgba(233, 240, 254);
		box-shadow: 0px 1px 6px grey;
    }
	#mobile-menu {
        display: block;
    }
	
	
	/* Show the dropdown menu when active */
	.nav-list.active {
		display: flex; /* Make visible when active */
		visibility: visible;
		align-items: flex-start; /* Left-align items */
		text-align: left;
	    height: 225px; /* Fixed height for the sticky menu */
		padding-top: 10px;
		list-style: none; /* Remove bullet points */
	}

	.nav-list li {
		width: 60%; /* Full width for each item */
		text-align: left; /* Left-align text */
	}

	.nav-list li a {
		display: block;
		width: 100%; /* Full width for clickable area */
		text-align: left; /* Left-align text */

		font-size: 20px;
		font-weight: 500;
		color: rgba(81, 81, 81);
		line-height: 0.8;
 		text-decoration: none;
	}

	.nav-list ul li {
		text-align: left;
		
	}
	
	
	.content {
		width: 100%;
		max-width: 1000px; /* Maximum width of content */
		padding-top: 160px;

	}
	
	.sticky {
		position: fixed ; /* Ensure the header sticks at the top */
		top: 0 ; /* Stay at the top */
		width: 100% ; /* Full width */
		background-color: transparent ; /* Semi-transparent background */
		z-index: 1000 ; /* Ensure it stays above other elements */
	}
	
    footer.footer {
        padding: 10px; /* Reduce padding for smaller screens */
    }
	
    h1 {
        font-size: 28pt;
        margin-top: 25px;
    }

    h4 {
        font-size: 24px;
        color: #ac3ec7;
        padding-left: 20px;
        margin-top: 0px;
        vertical-align: top;
        text-align: left;
    }

    h5 {
        font-size: 24px;
        color: #ac3ec7;
        margin-top: 16px;
        margin-bottom: 35px;
    }

    #linkedin {
        width: 24px;
        height: 24px;
    }

    #reddit {
        width: 24px;
        height: 24px;
    }

    #facebook {
        width: 24px;
        height: 24px;
    }

    #twitter {
        width: 22px;
        height: 22px;
     }

    .footer-page-media {
        width: 1000px;
        text-align: right;
        padding-right: 0px;
    }

    .media-align {
        text-align: right;
    }
}




@media screen and (max-width: 768px) {
	
	header {
		position: sticky; /* Ensure proper context for #mobile-menu absolute positioning */
		height: 80px; /* Fixed height for the sticky menu */
		width: auto;
	}
	.nav-list {
		margin-left: 10px;
		padding-left: 18px;
		padding-right: 0px;
		width: 174px;
		background-color: rgba(233, 240, 254) !important;
		box-shadow: 0px 1px 6px grey;
	}
	
	.nav-list li {
    	position: relative; /* Establish a positioning context */
	}

	.nav-list li::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 150px; /* Full width line */
		height: 1px; /* Thickness of the line */
		background-color: rgba(81, 81, 81, 0.2); /* Color of the line */
	}

	.nav-list li:last-child::after {
		display: none; /* Remove the line for the last item */
	}
	
	#mobile-menu-container {
		background-image: url('../images/bgnd-mobile-sm.jpg');
		background-size: 250px; /* Ensures the image adjusts based on viewport width */
		max-width: 100vw;
		background-repeat: no-repeat; /* Prevents the image from repeating */
		background-position: center center; /* Centers the image */
		background-color: rgba(233, 240, 254);
		height: 76px;
		box-shadow: 0px 1px 6px grey;
	}
	
	#mobile-menu {
		position: sticky; /* Sticky positioning for smaller screens */
	}
	
	#mobile-menu span  {
		width: 25px;
		height: 3px;
		margin: 5px 0;
		background-color: rgba(81, 81, 81);
	}

	.sticky {
		position: fixed ; /* Ensure the header sticks at the top */
		top: 0 ; /* Stay at the top */
		width: 100% ; /* Full width */
		background-color: rgba(233, 240, 254); /* Semi-transparent background */
		z-index: 1000 ; /* Ensure it stays above other elements */	
	}
	
	.container {
		width: 100vw;
	}
	
	.content {
		max-width: 100vw;
		padding-top: 0px;
	}
	
	h1 {
        font-size: 26pt;
    }

    h4 {
        font-size: 28px;
        color: #ac3ec7;
        padding-left: 20px;
        margin-top: 0px;
        vertical-align: bottom;
    }

    h5 {
        font-size: 26px;
        color: #ac3ec7;
        margin-top: 16px;
        margin-bottom: 35px;
    }

    p {
		font-size: 18px;
        vertical-align: top;
    	padding-left: 10px;
    	padding-right: 10px;
	}
	
	html, body {
		overflow-x: hidden; /* Prevent horizontal scrolling */
	}
	

    .footer-set {
        max-width: 96vw;
        text-align: center; /* Horizontal alignment (center) */
        padding-top: 100px; /* Padding around the image */
        padding-bottom: 40px; /* Padding around the image */
    }

    .footer-page {
        max-width: 96vw;
    }
	
	.footer-copyright {
		max-width: 96vw;
	}

 
    #linkedin {
        width: 24px;
        height: 24px;
        margin-top: 20px;
        margin-right: 20px;
    }

    #reddit {
        width: 24px;
        height: 24px;
        margin-top: 20px;
        margin-right: 20px;
    }

    #facebook {
        width: 24px;
        height: 24px;
        margin-top: 20px;
        margin-right: 20px;
    }

    #twitter {
        width: 22px;
        height: 22px;
        margin-top: 20px;
        margin-right: 0px;
    }
	
}


@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), 
       (max-width: 768px) and (min-resolution: 192dpi) {
	h1 {
		font-size: 26pt;
	}
	p {
		font-size: 18px;
		vertical-align: top;
		padding-left: 10px;
		padding-right: 10px;
	}
}

