/* Footer section */

.footer {
    bottom: 0;
    background-color: #000;
    padding: 2% 15%;
    text-align: center;
    width: 100%;
}

.social-media-icon:hover {
    text-decoration: none;
}

.wrapper {
    display: inline-block;
    padding-bottom: 1%;
}

.wrapper-ul {
    list-style: none;
}

.list-item {
    width: 50px;
    height: 50px;
    line-height: 45px;
    margin: 0 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid #fff;
    float: left;
}

.fab,
.fas {
    color: #fff;
}


/* Facebook */

.list-item:hover:nth-child(1) {
    border: 3px solid #3b5998;
    box-shadow: 0 0 15px #3b5998;
}

.list-item:hover .fa-facebook {
    color: #3b5998;
    text-shadow: 0 0 15px #3b5998;
}


/* Instagram */

.list-item:hover:nth-child(2) {
    border: 3px solid #bc2a8d;
    box-shadow: 0 0 15px #bc2a8d;
}

.list-item:hover .fa-instagram {
    color: #bc2a8d;
    text-shadow: 0 0 15px #bc2a8d;
}


/* Youtube */

.list-item:hover:nth-child(3) {
    border: 3px solid #bb0000;
    box-shadow: 0 0 15px #bb0000;
}

.list-item:hover .fa-youtube {
    color: #bb0000;
    text-shadow: 0 0 15px #bb0000;
}


/* Mail */

.list-item:hover:nth-child(4) {
    border: 3px solid #00aced;
    box-shadow: 0 0 15px #00aced;
}

.list-item:hover .fa-envelope {
    color: #00aced;
    text-shadow: 0 0 15px #00aced;
}

.social-media-text {
    color: #e3e3e3;
}