/* registration-footer.css */

.org-footer a {
    font-family: Source Sans Pro, Calibri, sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.org-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #eff2f4;
    border-top: 2px solid #ed8b00;
    padding: 2rem 2rem 0 2rem;

}

.org-footer-social {
    margin-bottom: 1.5rem;
}

.org-footer-terms {
    margin-bottom: 10px;
}

.org-footer-terms > a:not(:first-child),
.org-footer-social > a:not(:first-child) {
    margin-left: 15px
}

.org-footer a {
    text-decoration: none;
}

.org-footer div a:hover {
    text-decoration: underline;
}

.org-footer-nav,
.org-footer-img {
    margin-bottom: 1.5rem;
}

.org-footer a:hover {
    transition: ease 0.2s;
    cursor: pointer;
}

.org-footer .org-footer-left {
    font-weight: 600;
}

.org-footer .org-footer-nav a {
    margin-right: 2.5rem;
}

.org-footer-copyright,
.org-footer .org-footer-terms a {
    font-size: 14px;
}

.org-footer .org-footer-right {
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-bottom: 10px;
}

/* slds medium */
@media (max-width: 768px) {
    .org-footer .org-footer-left {
        margin-bottom: 1rem;
    }
}

/* slds xlarge */
@media (max-width: 1280px) {
    .org-footer {
        flex-direction: column;
        -ms-flex-direction: column;
    }

    .org-footer .org-footer-right {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 1rem;
    }
}