footer{
    width: 100%;
    background-color: var(--blue);
    display: block;
    min-height: 50vh;
}
.inner-footer{
    width: 95%;
    margin: auto;
    padding: 25px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-items{
    width: 25%;
    padding: 10px 20px;
}
.footer-items h2{
    padding: 10px 0;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
}
.footer-items .border{
    height: 2px;
    width: 40px;
    background-color: var(--dark-gray);
}
.footer-items ul{
    list-style: none;
    font-size: 14px;
    letter-spacing: 0.3px;
}
.footer-items ul a{
    text-decoration: none;
    outline: none;
    color: var(--white);
    transition: 0.3s;
}
.footer-items ul a:hover{
    color: var(--dark-gray);
}
.footer-items li{
    margin: 10px 0;
    height: 25px;
}
.footer-items img{
    width: 60px;
    margin-top: 12px;
}
.footer-items .social-media{
    width: 100%;
}
.footer-items .social-media a{
    text-decoration: none;
}
.footer-items .social-media i{
    height: 20px;
    width: 20px;
    margin-top: 10px;
    margin-right: 20px;
    color: var(--white);
    transition: 0.3s;
}
.footer-items .social-media i:hover{
    color: var(--dark-gray);
}
.footer-bottom{
    padding: 10px;
    color: var(--white);
    font-size: 12px;
    text-align: center;
}

@media screen and (max-width: 1085px){
    .footer-items{
        width: 50%;
    }
}

@media screen and (max-width: 600px){
    .footer-items{
        width: 100%;
    }
}

