html {
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #0d1821;
    margin: 0;
    color: #eee;
}

a {
    transition: color 0.3s ease;
    /*font-family: 'Roboto', sans-serif;*/
    color: #053b06;
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    color: #139a43;
}

html body header {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 3px 0 5px #aaa;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
}

header .logo {
    font-size: 20px;
    /*font-family: 'Roboto', sans-serif;*/
    display: flex;
    align-items: center;
}

html body nav ul {
    list-style-type: none;
    font-size: 16;
}

html body nav ul li {
    display: inline-block;
}

html body nav ul li a {
    padding: 0 15px;
}

.hero {
    position: relative;
    z-index: 1;
    background-color: #0dab76;
    padding: 20px 50px;
    justify-content: center;
    display: flex;
}

.hero .hero-content {
    width: 1000px;
    display: flex;
    flex-direction: row;
}

.hero h1 {
    /*font-family: 'Roboto', sans-serif;*/
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
}

.hero p {
    /*font-family: 'Roboto', sans-serif;*/
    margin-bottom: 50px;
}

.left {
    width: 600px;
    align-self: center;
}

.btn {
    background-color: #0d1821; /*f17f29*/
    color: #0dab76;
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 10px;
}

a.btn {
    color: #fff;
}

.section-about {
    background-color: #fff;
}

.section-form {
    background-color: #0dab76;
}

.center {
    display: flex;
    justify-content: center;
}

.content {
    width: 1000px;
}

.about {
    background-color: #eee;
    /*box-shadow: 0 1px 2px #555;*/
    /*border: solid 1px #555;*/
    border-radius: 15px;
    padding: 20px 30px;
    width: 600px;
}

.about h1 {
    color: #053b06;
}

.about p {
    color: #053b06;
}

.row {
    display: flex;
    flex-direction: row;
}

.orange {
    color: #F17F29;
}

.green {
    color: #0dab76;
}

.padded {
    padding: 20px 20px;
}

.big-padded {
    padding: 75px 20px;
}

.vert-pad {
    padding: 20px 0;
}

.card {
    /*background-color: #333;*/
    /*box-shadow: 0 1px 2px #ddd;*/
    /*border: solid 1px #ddd;*/
    /*border-radius: 3px;*/
    padding: 10px 10px;
}

.third {
    width: 300px;
    margin: 10px;
}

.contact-form input {
    font-family: 'Roboto', sans-serif;
    border: none;
    height: 35px;
    padding: 5px 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    width: calc(100% - 20px);
}

.contact-form input[type=text]:focus {
    color: #0dab76;
}

.contact-form textarea {
    font-family: 'Roboto', sans-serif;
    border: none;
    height: 150px;
    padding: 15px 10px;
    resize: none;
    border-radius: 10px;
    margin-bottom: 15px;
    outline-color: #0dab76;
    width: calc(100% - 20px);
}

.full-with {
    width: 100%;
}

.footer {
    padding: 80px 0 0 0;
    background-color: #0d1821;
    color: #fff;
}

.social-links {
    margin-top: 20px;
    margin-bottom: 40px;
}

.social-links a {
    margin: 0 10px;
}

.social {
    background-color: #0dab76;
    padding: 10px;
    border-radius: 15px;
}

.made-with {
    padding: 0 30px;
    color: #555;
}