@charset "utf-8";
html {
	box-sizing: border-box;
    font-size: 1vw;
}
*, *:before, *:after {
    box-sizing: inherit;
}

* {
padding: 0;
margin: 0;
}

body {
	padding: 0.5vw;
	color: #4E0069;
	font-family: Arial, Calibri;
	text-align: center;
	background-color: #FFFFFF;
}

header {
    width: auto;
	height: 8vw;
    display: grid;
    grid-template-columns: 20vw 70vw;
	justify-content: space-between;
	align-items: center;
	padding: 0.5vw;
	margin-bottom: 0.25vw;
}

#slogan {
    height: 4rem;
    display: inline-block;
    padding-top: 0.5rem;
    background-color: rgba(255,117,0,1.00);
    color: rgba(255,255,255,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-size: 1.5rem;
    text-shadow: 0.2rem 0.2rem 0.2rem #363636;
    text-align: center;
    font-weight: bold;
    font-style: italic;
}

body {
	color: #4E0069;
	font-family: Arial, Calibri;
	text-align: center;
	background-color: #FFFFFF;
}

ul     {
    display: flex;
    list-style: none;
 }

li      {
	width: 100%;
	position: relative;
	text-align: center;
 }

a        {
    height: 3rem;
    display: flex;
	align-items: center;
	justify-content: center;
    color: rgba(255,117,0,1.00);
	/*background: rgba(255,199,152,1.00);*/
    text-shadow: 3px 3px 3px rgba(170,170,170,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-weight: bold;
    font-size: 2rem;
    text-decoration: none;
 }

a:hover    {
    color: rgba(190,90,0,1.00);
    text-shadow: 5px 5px 5px rgba(154,154,154,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-weight: 750;
    background-color: rgba(210,210,210,0.75);
 }


ul li ul {
	display: none;
}

li:hover > ul     {
    display: flex;
    position: absolute;
	flex-direction: column;
    width: 100%;
    background-color: rgba(255,255,255,0.89);
 }

li ul li ul{
	display: none;
}

li ul li:hover > ul {
    display: flex;
    position: absolute;
	flex-direction: column;
    width: 80%;
    background-color: rgba(255,255,255,0.89);
	top: 0;
	left: 100%;
 }

p {
    color: rgba(0,0,0,1.00);
    font-family: Arial, "Arial Black", Calibri;
    text-align: justify;
    line-height: 200%;
    font-size: 1.25rem;
}

.right_section {
    display: grid;
	grid-template-columns: 45vw 35vw;
	grid-column-gap: 5vw;
	justify-content: center;
	Justify-items: center; 
	align-items: center;    
	margin-top: 3vw;
	margin-left: 5vw;
	margin-right: 5vw;
	margin-bottom: 3vw;
    padding-bottom: 0vw;
    vertical-align: middle;
}

.left_section {
    display: grid;
	grid-template-columns: 35vw 45vw;
	grid-column-gap: 5vw;
	justify-items: center;
	align-items: center; 
	justify-content: center;
	margin-top: 3vw;
	margin-left: 5vw;
	margin-right: 5vw;
	margin-bottom: 3vw;
    padding-bottom: 0vw;
    vertical-align: middle;
}

.footer {
    color: #000000;
    background-color: rgba(255,117,0,1.00);
    padding-top: 20px;
    padding-bottom: 20px;
    clear: both;
    text-align: center;
    font-family: Arial, "Arial Black", Calibri;
    width: 100%;
    display: block;
}

.p_small {
    color: rgba(0,0,0,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-size: 0.9rem;
    text-align: center;
}
.p_medium {
    color: rgba(0,0,0,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-size: 1.25rem;
    text-align: center;
    font-weight: bold;
}


