footer .description p {
    font-size: var(--details-font-size);
}

.page-footer {
    background-color: var(--primary-red);
    padding-top: var(--padding-md);
    padding-bottom: 5px;
}

.page-footer p {
    color: white;
    text-align:justify;
}

    .page-footer h2 {
        color: white;
        text-align: justify;
    }

.page-footer ul {
    padding: 0;
}

.page-footer .footer-nav li {
    list-style: none;
    margin: 10px 0;
}

.page-footer .footer-nav a {
    color: white;
    font-size: var(--subtitle-font-size);
}

    .page-footer .footer-nav a:hover {
        color: var(--tertiary-red);
        transition: color .2s ease-in-out;
    }

    .page-footer .footer-nav {
        text-align: center;
    }

.page-footer ul.footer-nav {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.page-footer .footer-icons {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    column-gap: 20px;
}

.page-footer .footer-icons i {
    color: white;
    font-size: 22px;
}

.page-footer .section-title {
    display: block;
    color: white;
}

.footer-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-footer .footer-description .m-b-xs-30 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:var(--small-padding);
}

@media (max-width: 990px) and (min-width:480px) {
    .footer-description {
        flex: 1 1 100%;
    }

    .footer-flex {
        flex: 1;
    }
}

@media(max-width:480px){

    .page-footer{
       position:sticky;
    }

    .page-footer .ow-container {
        margin: 15px 0;
    }

}