﻿@charset "utf-8";

:root {
	font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

a:link,
a:active,
a:visited {}

u {
    text-decoration: underline;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

body {
    color: #878787;
    font-family: "Roboto", sans-serif;
    font-size: .875rem;
    line-height: 1.6;
}

p {
    margin: 0 0 .937rem
}

h1 {
    text-align: center;
    font-size: 2.25rem;
    line-height: 1;
    color: #009fe3;
}

h2 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin: 0 0 .625rem;
    font-weight: 500;
}

hr {
    border-top: thin solid #52BA5A;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

ul li {
    padding-left: 2.812rem;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .312rem;
    border-radius: .375rem;
    background: #009fe3;
    margin-left: -1.25rem;
    top: .437rem;
}


#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    border: solid thin #DDF1FA;
    box-shadow: 0 0 .937rem .312rem #eee;
}

header {
    background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(22, 173, 228, 1) 100%);
}

header section {
    display: flex;
    padding: 1.875rem
}

header span {
    flex: 1 1 auto;
}

header a {
    display: block;
    width: 13.437rem;
}

article {
    padding: 1.875rem;
}

aside {
    display: flex;
    justify-content: space-between;
}

ul {
    width: 49%;
    padding: .937rem;
    box-shadow: .125rem .125rem .312rem .062rem #eee;
    transition: 0.3s;
}

ul:hover {
    box-shadow: .25rem .25rem .312rem .125rem #eee;
}

p a {
    color: #009FE3;
}

footer {
    padding: 0 1.875rem .937rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(217, 241, 250, 1) 100%);
}

footer h2 {
    padding: .312rem .937rem;
    background: #009FE3;
    color: #fff;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

@media only screen and (max-width:56.25rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
    }
    header section {
        padding: .937rem;
    }
    h1 {
        font-size: 1.75rem
    }
	
	
    h2 {
        font-size: .937rem;
    }
    p,
    ul {
        margin-bottom: .625rem;
    }
    article {
        padding: .625rem;
    }
    aside {
        flex-direction: column;
    }
    ul {
        width: 100%;
        padding: .625rem;
    }
    ul li {
        padding-left: 1.25rem;
    }
    footer {
        padding: .625rem;
    }
}

@media only screen and (max-width:30rem) {
    h1 {
        font-size: 1.375rem;
    }
	h1 br {
		display: none;
	}
}
