/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of CSS Reset */

body
{
    background-image: url(images/bg.png);
    background-size: 100%;
    background-attachment: fixed;
    margin: 30px 300px;
}

.content
{
    background-color: white;
    border-radius: 70px;
    padding: 50px 100px;
    height: fit-content;
    margin-bottom: 30px;
    position: relative;
}

.content::after
{
    content: "";
    background-image: url(images/little\ thing.png);
    width: 105px;
    height: 53.6px;
    display: block;
    background-size: 100%;
    position: absolute;
    bottom: -40px;
    z-index: 2;
    left: calc(50% - (105px/2));
}

.content span a
{
    position: absolute;
    font-size: 16px;
    color: #9a9fad;
    text-decoration: none;
    font-weight: 700;
    font-family: Poppins, serif;
    transition: 0.15s;
}

.content span a:hover
{
    color: rgb(99, 99, 99);
}

h1
{
    text-align: center;
    font-family: "Poppins", serif;
    font-weight: 800;
    font-size: 30px;
    color: #05014B;
    width: 80%;
    margin: -3px auto 20px auto;
}

.h1-small
{
    font-size: 20px;
}

nav
{
    width: 100%;
    /*display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;*/
    display: flex;
    margin-bottom: 40px;
}

nav a
{
    width: 100%;
    text-align: center;
    background-color: #7888F1;
    border-radius: 37px;
    box-shadow: 0 3px 0 0 #4200BE;
    height: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: Poppins, serif;
    align-content: center;
    color: white;
    font-size: 15px;
    text-shadow: 0 1px 0 #4200BE;
    transition: 0.2s;
    margin: 0 5px;
}

nav .current-page
{
    background-color: #05014B;
    color: white;
    text-shadow: none;
    height: 25px;
    margin-top: 3px;
    box-shadow: none;
}

nav .current-page:hover
{
    background-color: white;
    color: #05014B;
    box-shadow: inset 0px 0px 0px 1.5px #05014B;
}

nav a:hover
{
    box-shadow: none;
    height: 25px;
    margin-top: 3px;
    background-color: #4200BE;
}

nav a:active
{
    background-color: #05014B;
}

.section-header
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 38px;
    margin-top: -10px;
}

.line
{
    width: 100%;
    margin: auto;
    height: 4px;
    border-radius: 100px;
    background-color: #4200BE;
}

h2
{
    font-family: Poppins, sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #4200BE;
    text-align: center;
    height: fit-content;
    margin: auto;
}

p
{
    font-family: Poppins, sans-serif;
    line-height: 40px;
    color: #05014B;
    margin: 20px 0;
    text-indent: 0px;
}

footer
{
    background-image: url(images/footer-bg.png);
    background-size: 100%;
    background-attachment: fixed;
    position: absolute;
    left: 0;
    right: 0;
    padding: 40px 75px;
    box-shadow: 0 -4px 17px 0 #05014b57;
}

.footer-content
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer-content section
{
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.footer-content section a, .footer-content span
{
    height: 31px;
    margin: 10px 0;
    color: white;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    font-family: Inter, sans-serif;
    transition: 0.3s;

    background-image: linear-gradient(white, white);
    background-size: 0 2px;
    background-position-y: 100%;
    background-position-x: 0;
    background-repeat: no-repeat;
}

.footer-content section a:hover
{
    background-size: 75% 2px;
}

.footer-content span
{
    text-align: center;
}

h3
{
    font-size: 22px;
    font-weight: 900;
    font-family: Poppins, sans-serif;
    color: white;
    margin-bottom: 30px;
}

.content img
{
    width: 40%;
    float: left;
    margin: 32px 30px 20px 0;
    border-radius: 5px;
}

.content .right-img
{
    float: right;
    margin: 32px 0 20px 30px;
}

.img-wide
{
    width: 75% !important;
    position: relative;
    margin: auto;
    float: none !important;
}

.img-container
{
    height: 525px;
    text-align: center;
    margin: auto;
}

.mxgraph
{
    margin: auto;
}

.small-text
{
    font-size: 15px;
    line-height: 20px;
}