html {
    min-height: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    word-wrap: break-word;
    color: #373A3B;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 7.5px;
    height: 7.5px;
}

::-webkit-scrollbar-track {
    background-color: #BDC0C4;
}

::-webkit-scrollbar-thumb {
    background-color: var(--font-color-hex);
    border-radius: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--font-color-hex);
    font-weight: bold;
}

.viewpoint-animate {
    visibility: hidden;
}

.animated.d03s {
    animation-delay: 0.3s;
}

.animated.d05s {
    animation-delay: 0.5s;
}

.animated.d07s {
    animation-delay: 0.7s;
}

.blog-container {
    flex: 1 0 auto;
    z-index: 1;
}

a:hover {
    text-decoration: none;
}

svg.eva path {
    fill: #373A3B;
}

footer {
    flex-shrink: 0;
}

footer .blog-footer__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2.5rem;
    background-color: var(--background-color-hex);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
}

.blog-footer__wrapper h6,
.blog-footer__wrapper p {
    color: #fff;
}

.footer-logo-wrapper h6 {
    margin-bottom: 0;
}

.footer-logo-wrapper img {
    max-width: 6.25rem;
}

@media (max-width: 991.98px) {
    footer .blog-footer__wrapper {
        padding: 1.75rem 0.9375rem 1.75rem 0.9375rem;
    }
}

@media (max-width: 767.98px) {
    footer .blog-footer__wrapper {
        display: block;
        justify-content: unset;
        text-align: center;
    }

    .blog-footer__wrapper h6 {
        margin-bottom: 0.975rem;
    }

    .footer-logo-wrapper {
        justify-content: center;
    }

    .footer-logo-wrapper h6 {
        margin-bottom: 0;
    }
}

.blog-footer-menu__container {
    flex: 1;
    padding-right: 0.9375rem;
}

.blog-footer-menu__container h6 {
    margin-bottom: 0.625rem;
}

.blog-footer-menu__wrapper {
    display: flex;
    align-items: center;
}

.blog-footer-menu__container a {
    color: #fff;
    font-size: 0.875rem;
    padding-right: 0.625rem;
    margin-right: 0.625rem;
    position: relative;
    transition: 0.3s;
}

.blog-footer-menu__container a:hover {
    text-decoration: underline;
}

.blog-footer-menu__container a:after {
    content: '';
    height: 15px;
    width: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.blog-footer-menu__container a:last-child {
    margin-right: 0;
}

.blog-footer-menu__container a:last-child:after {
    content: none;
}

@media (max-width: 767.98px) {
    .blog-footer-menu__wrapper {
        justify-content: center;
    }
}

@media (max-width: 374.98px) {
    .blog-footer-menu__container a {
        padding-right: 0.5rem;
        margin-right: 0.5rem;
    }
}
