.footer {
    background-color: rgb(248,165,25);
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 1px;
}

.footer-container {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 80%;
    margin: 0 auto;
    margin-top: 15px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.footer-part {
    flex: 0 0 25%;
    flex-wrap: wrap;
    margin: 0;
    max-width: 25%;
    min-width: 225px;
}

.footer-sub-part {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer-sub-part-des-container {
    width: 250px;
}

.footer-text {
    color: #fff;
    text-align: justify !important;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Open Sans', sans-serif;
}

.footer-social-media-links {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 250px;
    margin-top: 25px;
    margin-bottom: 10px;
    justify-content: space-around;
}

.footer-sub-part-header {
    color: #fff;
    font-size: 23px;
    line-height: 36px;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    letter-spacing: .25px;
}

.footer-sub-part-body {
    text-align: center;
}

.footer-sub-part-body-points {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    list-style: none;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
    padding: 9px 0 3px;
    margin: 0;
}

.footer-copyright {
    padding: 30px 0px;
    text-align: center;
    height: 30px;
    background-color: rgb(0, 8, 80);
    margin: 0;
}

.footer-copyright-container {
    width: 80%;
    margin: 0 auto;
}

.footer-copyright-container-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-copyright-container-row-content {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    color: #c6c5c5;
    font-weight: 400;
}

@media (max-width: 1125px) {
    .footer-part {
        flex: 0 0 50%;
        flex-wrap: wrap;
        max-width: 50%;
        min-width: 225px;
    }
    
    .footer-part:nth-child(3) {
        margin-bottom: 30px;
    }
}

@media (max-width: 690px) {
    .footer-part {
        flex: 0 0 100%;
        flex-wrap: wrap;
        max-width: 100%;
        min-width: 225px;
        margin-bottom: 10px;
    }

    .footer-sub-part section div {
        width: 100%;
    }
}

.image-li {
    list-style: none;
    list-style-image: url("./images/li-arrow.png");
}