footer {
    background-color: #101010;
    color: white;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

    .footer_cards{
        flex: 1 1 300px;
        padding: 10px;
        max-width: 400px;
    }
        .footer_cards h3{
            font-size: 2.3rem;
            color: var(--medium-grey);
            font-family: var(--secondary-font);
            margin-bottom: 10px;   
            border-bottom: 3px solid var(--primary-color);
            max-width: 300px;         
        }

        .footer_cards p{
            font-size: 1.1rem;
            color: var(--light-grey);
            margin-bottom: 3px;
        }

        .footer_cards ul{
            list-style: none;
            padding: 0;        
        }
        .footer_cards ul li{
            margin-bottom: 5px;
            list-style-type: circle;
            list-style-position: inside;
            margin-left: 10px;
            font-size: 1.1rem;
        }

        #follow_us ul li{
            list-style: none;
        }

        #follow_us ul li a{
            font-size: 1.1rem;
            color: var(--light-grey);
            margin-bottom: 3px;
        }


        #copyRight_wrap{
            display: block;
            width: 100%;
            background: black;
            text-align: center;
        }
            #copyRight_wrap div {
                padding: 3px;
                color: var(--light-grey);
            }

            #advertisement{
                color: var(--light-grey);
                margin-bottom: 5px;
            }

            #advertisement p a{                
                color: var(--primary-color);                
            }

