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;
}

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;
}

a:link, a:visited, a:hover {
    text-decoration: none;
    color: inherit;
}

body {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto auto auto;
}

main {
    padding-top: 4em;
    background-color: white;
    width: 100%;
    margin: auto;
    padding-bottom: 15vh;
    display: grid;
    grid-template-areas:
    'hero hero hero hero'
    'gap1 title title gap4'
    'gap2 p1 p2 gap5'
    'gap3 p3 p4 gap6';
    grid-template-columns: 10vw 1fr 1fr 10vw;
    grid-template-rows: auto auto auto auto;
}

.maincite {
    padding-top: 4em;
    background-color: white;
    width: 100%;
    margin: auto;
    padding-bottom: 15vh;
    display: grid;
    grid-template-areas:
    'hero hero hero'
    'gap1 title gap4'
    'gap2 content gap5';
    grid-template-columns: 1fr 50vw 1fr;
    grid-template-rows: auto auto auto;
}

.maincite ul {
    grid-area: content;
}

.maincite li {
    padding-bottom: 2em;
}

header {
    background-color:white;
    width: 100%;
    position: fixed;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: black;
    box-shadow: 5px 5px 10px black;
}

.logo {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1 {
    padding-left: 10px;

    font-size: 20px;
}

.logo img {
    padding-right: 10px;

    height: 30px;
}

nav ul {
    margin: 10px;
    display: flex;
    justify-content: space-around;
    font-family: 'Segoe UI', sans-serif;
}

nav li {
    width: 200px;
    text-align: center;
}

nav a {
    display: block;
    padding: 5px 0px;
    color: #ffffff;
    transition: .3s;
}

nav a:hover {
    transition: 0.5s;
    transform: skewX(-5deg);
    letter-spacing: 2px;
    background-color: whitesmoke;
    background-size: cover;
    color: black;
}

nav a:link, a:visited {
    color:black;
    text-decoration: none;
}

.heroimg {
    grid-area: hero;
    margin: 0 0 10vh 0;
    padding: 0;
    width: 100%;
    height: 70vh;
    background-image: url("./images/image2.png");
    background-position: 0px -175px;
    background-size: cover;
}

.heroimgInno {
    grid-area: hero;
    margin: 0 0 10vh 0;
    padding: 0;
    width: 100%;
    height: 70vh;
    background-image: url("./images/image3.png");
    background-position: 0px 0px;
    background-size: cover;
}

h2 {
    grid-area: title;
    font-size: 30px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    text-align: center;
    color: black;
    padding-bottom: 50px;
}

p {
    font-family: 'Segoe UI', sans-serif;
}

h3 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
}

.p1 {
    grid-area: p1;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    padding-right: 20px;
    color:black;
    margin-bottom: 50px;
}

.p2 {
    grid-area: p2;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    padding-left: 20px;
    color:black;
    margin-bottom: 50px;
}

.p3 {
    grid-area: p3;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    padding-right: 20px;
    color:black;
    margin-bottom: 50px;
}

.p4 {
    grid-area: p4;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    padding-left: 20px;
    color:black;
    margin-bottom: 50px;
}

footer {
    margin-top: auto;
    background-color: rgb(73, 70, 70);
    width:100%;
    height: 4em;
    font-size: 20px;
    color:white;
    display: flex;
    text-align: center;
    justify-content: center;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}