/* Start Footer  */
footer{
    padding-bottom: 40px;
    max-width: 100%;
}
footer div:first-of-type{
    text-align: center;
}
footer div:first-of-type img{
    width: 100px;
    margin: auto;
}
footer div:first-of-type h1{
    font-size: 30px;
}
footer div h2{
    margin-bottom: 30px;
}
footer .links ul{
    list-style: none;
    text-align: left;
    padding: 0;
}
footer .links ul a{
    color: var(--black-color);
    font-size: 18px;
    font-weight: 400;
    transition: .5s;
    text-decoration: none;
    display: block;
    margin-top: 7px;
}
footer .links ul a:hover{
    transform: translateX(10px);
    color: var(--main-color);
}
footer .social-media-container{
    width: fit-content;
    margin: auto;
}
footer .social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 150px;
    margin-left: 10px;
    flex-wrap: wrap;
}
footer .social-icons i{
    font-size: 30px;
    color: var(--black-color);
    transition: .5s ;
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
footer .social-icons i.fa-facebook-f{
    color: var(--white-color);
    background: #1877F2;
    padding: 6px 10px;
}
footer .social-icons i.fa-instagram{
    color: var(--white-color);
    background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, 
    #285AEB 90%);
    padding: 5px;
}
footer .social-icons i.fa-snapchat{
    color: var(--black-color);
    background: #FFFC00;
    padding: 5px;
}
footer .social-icons i.fa-tiktok{
    color: var(--white-color);
    background: black;
    padding: 5px;
}
footer .social-icons i.fa-whatsapp{
    color: var(--white-color);
    background: #25D366;
    padding: 5px;
}
footer .social-icons i:hover{
    transform: scale(1.1);
}
footer .contactUs div {
    text-align: left;
}
footer .contactUs div a{
    display: block;
    margin-bottom: 10px;
    color: var(--black-color);
    font-size: 19px;
}
footer .contactUs div a i{
    color: var(--main-color);
    font-size: 22px;
    margin-right: 5px;
}
.copyright-container{
    background-color: var(--black-color);
    padding: 7px 10px 0px;
    color: var(--white-color);
    margin: 0;
    max-width: 100%;
    overflow: hidden;
}
.copyright-container .copyright span, .copyright-container .copyright a{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 500;
    transition: .5s;
    display: inline-block;
}
/* End Footer  */
@media (max-width: 1000px) {
    footer .social-media-container{
        text-align: center;
    }
    footer .social-media-container .social-icons{
        margin: auto;
    }
}
@media (max-width: 800px) {
    footer .links ul{
        text-align: center;
    }
    footer .links ul, footer .contactUs div {
        width: fit-content;
        margin: auto;
    }
     footer .contactUs div {
        text-align: center;
     }
     
}
