.footer-specific,
.footer-specific html,
.footer-specific body {
    height: 100%;
    /* Ensure the body takes the full height */
    margin: 0;
    /* Remove default margin */
}

.footer-specific body {
    display: flex;
    /* Set body as a flex container */
    flex-direction: column;
    /* Arrange children in a column */
}


.main-conttainer {
    flex: 1;
}

.footer {
    margin-top: 25px;
    padding: 10px 0;
    background-color: #333;
    color: white;

    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer li {
    display: inline-block;
    padding: 0 10px;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer .social>a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
}

.footer .social>a:hover {
    opacity: 0.9;
}

.footer .copyright {
    margin-top: 8px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}

.footer .footer-break {
    height: 2px;
    border-width: 0;
    color: gray;
    background-color: white
}