﻿
.main-footer {
    position: relative;
    background-color: #000;
    display: flex;
    color: #fff;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 50px;
}

    .main-footer .footer-container {
        display: flex;
        width: var(--page-width);
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .main-footer .footer-social {
        display: flex;
        border-bottom: solid 1px #ccc;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: auto;
        gap: 40px;
        padding-bottom: 30px;
        width: 100%;
    }

        .main-footer .footer-social img {
            height: 24px;
            cursor: pointer;
        }

    .main-footer .footer-info {
        width: 100%;
    }

    .main-footer .footer-split {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: stretch;
        justify-content: space-between;
        align-items: stretch;
        width: 100%;
        gap: 40px;
        border-bottom: solid 1px #333;
    }

        .main-footer .footer-split .footer-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            align-content: center;
            justify-content: center;
            align-items: center;
            padding: 50px 30px;
        }

            .main-footer .footer-split .footer-left img {
                width: 420px;
            }

        .main-footer .footer-split .footer-right {
            flex: 1;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-content: flex-start;
            justify-content: space-around;
            align-items: stretch;
            padding: 50px 0;
            font-size: .9rem;
            font-family: light;
            color:#ddd;
            line-height:1.6rem;
        }

            .main-footer .footer-split .footer-right .footer-stitle {
                font-size: 1.4rem;
                font-family: medium;
                color: #fff;
                padding-bottom:30px;
            }


    .main-footer .footer-copyright {
        font-size: .7rem;
        font-family: light;
        color: #fff;
        padding-bottom: 110px;
        padding-top: 40px;
        width:90%;
    }