:root{
    --footer: #000A12;
    --footer-primary: #54b9b8;
    --secondary: #424242;
    --bg: #121212;
    --text: #ffffff;
}

a{
    color:#fff;
}

/* footer section */
.footer-container{
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    justify-content: space-evenly;
    height: 50vh;
    background-color: var(--footer);
    color: white;
    font-family: Poppins;
    font-style: normal;
    padding-top: 30px;
    position: relative;
}

#copyright{
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 27px;

    position: absolute;
    bottom: 8px;
}

.social-icons{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-group{
    display: flex;
    align-content: center;
    justify-content: center;
}

.icon-container{
    /* border: 2px solid red; */
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: #333b46;
    padding: 5px;
    cursor: pointer;
    margin: 0px 10px;
}

.footer-common{
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.footer-common h3{
    /* border: 2px solid red; */
    font-size: 1.3rem;
    user-select: none;
}

.footer-common ul{
    padding-left: 0px;
}

.footer-common ul a li{
    text-transform: capitalize;
    line-height: 30px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.6;
    /* list-style: none; */
}

.footer-common ul li:hover{
    text-decoration: underline;
}

.e-mail-link{
    text-transform: lowercase !important;
}

.fade-in{
    background-color: var(--secondary);
}

@media only screen and (max-width: 820px) {
    
    .footer-container{
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .footer-common h3{
        color: var(--footer-primary);
        text-align: center;
    }

    .footer-common ul{
        list-style: none;
        text-align: center;
    }
}
