body {
    min-height: 100vh;
    margin: 0;
    position: relative;
    background: #f6f6f6;
}

body::after {
    content: '';
    display: block;
    height: 70px; /* Set same as footer's height */
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

#page-wrapper {

}

nav.navbar {
    background: white;
    height: 67px;
    border: none;
}

nav.navbar .logo-container {
    padding-left: 55px
}

nav.navbar .image-container {
    padding-right: 0;
}

nav.navbar .image-container img {
    margin-top: 30px;
    margin-right: 70px;
}

nav.navbar .image-container {
    position: relative;
}

.contact-btn {
    position: absolute;
    right: 275px;
    top: 37px;
    font-family: "Poppins", sans-serif;
}

.content-container {
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-content {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 21px;
}

footer.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: white;
    line-height: 66px;
}

footer.footer ul {
    list-style: none;
    margin: 0;
}

footer.footer ul li {
    display: inline-block;
    margin-right: 8px;
}

footer.footer ul li a {
    color: #898989;
    font-family: 'Roboto Condensed', serif;
}

footer.footer ul li a:hover {
    text-decoration: none;
}

footer.footer .footer-menu {
    margin-top: 2px;
    text-align: center;
}

@media only screen and (max-width: 992px) {
    nav.navbar .image-container img {
        display: none;
    }

    nav.navbar .image-container {
        position: unset;

    }

    nav.navbar .image-container .contact-btn {
        right: 10px;
    }

    .info-container {
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }

    .form-container {
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0;
    }
}

@media only screen and (max-width: 600px) {
    .page-content {
        font-size: 10px;
    }
}

@media only screen and (max-width: 513px) {
    .footer-menu ul {
        padding: 0;
    }
}