html {
    height: 100%;
    background-color: #01C877;
}

body {
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    color: #222;
}

a {
    text-decoration: none;
    color: #3498DB;
    font-weight: 400;
}



h4 {
    color: #01C877;
    margin: 0 20px 20px 20px;
    padding: 0;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.container {
    width: 1024px;
}

.container-fluid {
    display: flex;
    justify-content: center;
    background-color: #fff;;
    padding: 100px 0;
}

.container-fluid .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #01C877;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100vw;
	z-index: 100;
}

header + * {
    margin-top: 60px;
}

header nav {
    margin-left: auto;
    height: 60px;
}

header nav svg {
    display: none;
    fill: white;
}

header .container {
    display: flex;
    justify-content: space-between;
}

header nav ul {
    list-style: none;
    display: inline-flex;
    flex-direction: inline-row;
}
    
header nav ul li {
    margin: 0 15px;
}
        
header nav ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
}

header nav ul li a.active, header nav ul li a:hover {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    text-decoration: none;
}

header img {
    margin: 17.5px 0;
    height: 25px;
    padding: 0;
    display: none;
}

.hero {
    width: 100vw;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #01C877;
    line-height: 1.3;
    overflow: hidden;
    position: relative;
}

.hero h1 {
    font-weight: 800;
    font-size: 50px;
    margin: 0;
    padding: 0;
}


.hero .icon {
    position: absolute;
    right: -450px;
    top: 50px;
    height: 900px;
}

@media screen and (max-width: 1350px) {
    .hero .icon {
        height: 450px;
        right: -250px;
    }

    header .container {
        padding: 32px;
    }
}

@media screen and (max-width: 875px) {
    .hero .icon {
        display: none;
    }
}

@media screen and (min-width: 1350px) {
    .hero {
        height: 400px;
    }

    .hero .logo {
        position: absolute;
        left: 0;
    }
}

.hero h2 {
    font-weight: 600;
    margin: 0;
    padding: 0;
    font-size: 28px;
}

.hero .container {
    position: relative;
}

.hero .logo {
    display: block;
    position: fixed;
    margin-top: 10px;
    z-index: 999;
    width: 75vw;
    max-width: 500px;
    min-height: 45px;
}

.content p {
    max-width: 750px;
    font-size: 20px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.gray {
    background-color: #f8f8f8;
    padding: 100px 0;
    border-top: 1px solid #f4f4f4;
    flex-shrink: 0;
}

.container-fluid.small {
    padding: 10px  0;
    background-color: #04bf73;
}

.container-fluid.small .container {
    flex-direction: row;
}

.container-fluid.small .container span {
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600; 
}

.container-fluid.small .container a {
    color: #666;
    background-color: #fff;
    padding: 5px 15px;
    font-weight: 500;
    border-radius: 4px;
}

.container-fluid.small .container a:hover {
    background-color: #f9f9f9;
}

footer {
    background-color: #404040;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 40px;
}

footer h3 {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    margin-top: 1em;
}

footer div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer address {
    color: white;
    font-style: normal;
}

footer img {
    height: 75px;
    margin-top: 1em;
}

footer a {
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

footer .container {
    display: flex;
    flex-direction: column;
}

footer .lists {
    display: flex;
    flex-direction: column;
}

footer ul {
    padding: 0;
}

@media screen and (min-width: 900px) {
    footer .container,
    footer .lists {
        flex-direction: row;
    }

    footer h3,
    footer ul,
    footer address {
        padding-left: 40px;
    }

    footer {
        padding: 80px;
    }
}

footer ul {
    width: 150px;
    list-style: none;
}

footer ul li {
    color: #fff;
}

.hero a {
    color: white;
}