:root{
    --Primary_Color: #ec0606;
    --Secondary_Color: #13020e;
    --Tertiary_Color: #23d40c;
    --Primary_Font: Poppins, Roboto;
    --Secondary_Font:  Protest+Strike;
    --Tertiary_Font: PT+Sans+Narrow;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--Primary_Font);
}
.footer-wrap{
    width: 100%;
    height: auto;
    background-color: rgb(9, 129, 145);
}
.contact-us{
    display: flex;
    padding: 10px;
}
.About-us{
    width: 40%;
    margin: 20px;
}
.footer-groups{
    display: flex;
    margin-bottom: 50px;
}
.footer-icon-photo{
    width: 200px;
    height: 50px;
}
.About{
    font-size: 14px;
    line-height: 25px;
    color: white;
    font-weight: normal;
}
.group-heads{
    font-size: 12px;
    width: 200px;
}
.alright{
    font-size: 12px;
    padding: 20px;
    color: white;
}
.lists{
    font-size: 13px;
    line-height: 23px;
    text-decoration: none;
    list-style: none;
    margin-left: 10px;
    color: white;
    font-weight: lighter;
}
.lists a{
   text-decoration: none;
   color: white;
}
.group-head{
    font-size: 16px;
    padding: 10px;
    color: white;
    font-weight: bold;
}
.footer-icon{
    padding: 20px;
    display: flex;
}
.horizontal-rule{
    color: white;
}

@media screen AND (max-width:500px){
    .footer-wrap{
        width: 100%;
        height: auto;
        background-color: rgb(9, 129, 145);
    }
    .contact-us{
        display: block;
        padding: 0px;
    }
    .About-us{
        width: 90%;
        margin: 20px;
    }
    .footer-groups{
        display: block;
        width: 90%;
    }
    .footer-icon-photo{
        width: 200px;
        height: 50px;
        margin-left: 15%;
    }
    .About{
        font-size: 14px;
        line-height: 25px;
        padding: 10px;
        color: white;
        font-weight: lighter;
    }
    .group-heads{
        font-size: 12px;
        width: 200px;
        margin-bottom: 10px;
        padding: 15px;
    }
    .alright{
        font-size: 12px;
        padding: 20px;
        text-align: center;
        color: white;
    }
    .lists{
        font-size: 13px;
        line-height: 23px;
        list-style: none;
        margin-left: 10px;
        color: white;
        font-weight: lighter;
    }
    .group-head{
        font-size: 16px;
        padding: 10px;
        color: white;
    }
    .footer-icon{
        padding: 0px;
        width: 90%;
        display: block;
    }
}