    /************* HEADER START *************/
    .rf-org-header-container .header {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10);
        -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10);
    }

    /************* HEADER END *************/ 

/* FOOTER */
    footer {
        background: #FAFAFA;
        font-family: "gotham_lightregular", sans-serif;
        padding: 60px 0 40px;
    }

    footer .main-footer {
        max-width: 1170px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-right: auto;
        margin-left: auto;
        padding: 0;
        line-height: 28px;
    }

    footer .main-footer li {
        list-style: none;
    }

    footer a {
        color: #000;
        text-decoration: none;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    footer .footer-right-content {
        text-align: right;
    }

    footer .footer-left-content ul {
        padding: 0;
    }

    footer .footer-logo {
        text-align: center;
        margin: 0 auto;
    }

    footer .footer-logo img {
        max-width: 250px;
        height: auto;
        vertical-align: middle;
        margin: 10px 0 0;
    }

    footer .footer-left-content, .footer-right-content {
        display: none;
    }

    footer .social-nav {
        margin: 10px 0 0;
        display: flex;
        justify-content: space-between;
        padding: 0;
    }

    footer .social-nav li {
        margin: 32px 20px 0;
    }

    footer .social-nav li svg {
        width: 24px;
    }

    footer .social-nav li a em {
        color: #56555a;
        width: 24px;
        height: 24px;
        font-size: 24px;
    }

    footer .social-nav li a em:hover {
        color: #2F82AB;
    }

    footer .copyright {
        display: flex;
        justify-content: center;
    }

    @media (min-width: 768px) {
        .main-footer {
            width: 750px;
            flex-direction: column;
        }
    }

    @media (min-width: 992px) {
        .main-footer {
            width: 970px;
            flex-direction: row;
        }
    }

    @media (min-width: 1200px) {
        .main-footer {
            width: 1170px;
        }

        footer .footer-left-content, .footer-right-content {
            border-top: 2px solid #8A8A8A;
            min-width: 250px;
            display: block;
        }
    }

    /* FOOTER */
