/*------------------------------------*\
    
    Page Footer CSS

    Page footer...........The main page footer.

\*------------------------------------*/

.page-footer {
    margin-top: auto; /* used to affix footer at bottom of page */
}

.page-footer {
    position: relative;
    background-color: rgba(220, 220, 220, 0.5);
}

.footer-logo a {
    margin: 0 auto 40px;
    display: table;
}

.footer-flex-top__right h3 {
    font-size: 16px;
    color: #333333;
    font-weight: 700;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.footer-info ul {
    padding: 0;
    margin: 0;
}

.footer-info ul li {
    padding: 0 0 0 18px;
    margin: 0 0 7px 0;
}

.footer-info ul li i {
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 13px;
    color: #ED1C24;
}

.footer-info ul li:before {
    display: none;
}

.footer-info ul li a {
    font-size: 16px;
    font-family: "Montserrat", serif;
    color: #333333;
    font-weight: 400;
    display: block;
}

.footer-info ul li a + a {
    margin-top: 2px;
}

.footer-social {
    margin: 14px 0 0;
}

.footer-social ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}

.footer-social ul li {
    padding: 0;
    margin: 0;
}

.footer-social ul li:before {
    display: none;
}


.footer-social ul li a {
    width: 29px;
    height: 29px;
    background-color: #333333;
    border-radius: 5px;
    color: #fff;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.16);
}

.footer-flex__top {
    padding: 53px 0 40px;
}

.footer-flex__bottom {
    position: relative;
    z-index: 1;
    padding: 25px 0;
}

.footer-flex__bottom:after {
    content: "";
    position: absolute;
    left: -22px;
    bottom: 0;
    width: calc(100% + 44px);
    height: 100%;
    background-color: rgba(220, 220, 220, 0.5);
    z-index: -1;
}

.footer-flex__bottom ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px 0;
}

.footer-flex__bottom ul li {
    padding: 0;
    margin: 0;
}

.footer-flex__bottom ul li:before {
    display: none;
}


.footer-flex__bottom ul li a {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
}

.back-to-top {
    margin-top: 20px;
}

.back-to-top a {
    font-size: 18px;
    color: #ED1C24;
    font-weight: 700;
    position: relative;
    padding-right: 20px;
    font-family: "Montserrat", serif;
}

.back-to-top a::before {
    content: '\e900';
    font-family: 'colorado-shade-icon';
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 16px;
    font-weight: normal;
    transform: translate(0, -50%) rotate(-90deg);
}


@media(min-width: 768px) {
    .footer-flex__bottom:after {
        left: -52px;
        width: calc(100% + 104px);
    }

    .footer-flex__bottom {
        padding: 20px 0 5px 0;
    }

    .footer-flex__top {
        display: flex;
        padding: 70px 0 60px;
        justify-content: center;
    }

    .footer-flex-top__right {
        width: 434px;
        padding-left: 63px;
    }
}


@media(min-width: 1200px) {
    .footer-flex {
        display: flex;
    }

    .footer-flex-top__right {
        width: auto;
        padding-left: 63px;
    }

    .footer-flex__top {
        width: 50%;
        padding: 40px 0;
        justify-content: flex-start;
    }

    .footer-flex__bottom {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0 0 30px 36px;
    }

    .footer-flex__bottom:after {
        left: 0;
        width: 3000px;
    }

    .back-to-top {
        margin-top: 20px;
        text-align: right;
    }
    
    .footer-social ul li a:hover {
        background: #ED1C24;
        color: #fff;
    }
    

    .footer-info ul li a:hover,
    .footer-flex__bottom ul li a:hover {
        background: none;
        color: #ED1C24;
    }

    .back-to-top a:hover {
        background: none;
        color: #000;
    }

    .footer-logo a:hover {
        background: none;
    }
}