@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;523;600;700;800&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Dosis', sans-serif;
}
.container-fluid {
    padding: 0;
}
#logo {
    width: 100%;
    max-width: 450px;
    margin: 90px auto;
}
.green {
    color: #4BB87E;
}
.light-green {
    color: #A7CD45;
}
.section-bg {
    background-color: #f6f6f6;
    padding: 90px 60px;
}
a, a:focus, a:visited, a:active {
    text-decoration: none;
    color: #A7CD45;
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: none;
    color: #4BB87E;
    transition: all 0.3s ease;
}
footer {
    background-color: #000;
    padding-bottom: 60px;
    color: #fff;
    font-size: 0.8em;
}
#initial-footer {
    height: 50px;
    width: auto;
    margin-top: 30px;
}
.has-margin-top {
    margin-top: 30px;
}
#counter {
    width: 12px;
    font-weight: 600;
}
hr {
    border: 1px solid rgb(167, 205, 69);
    width: 60%;
    margin-bottom: 30px;
}

@media all and (max-width:767px){
    #logo {
        max-width: 250px;
    }
}