body{
    --color-footer-blue: aliceblue;
}

.footer{
    padding: 3rem 1rem 1rem 1rem;
    display: flex;
    /* align-items: center; */
    justify-content: space-around;
    height: auto;
    opacity: 0.95;
}

.contactme{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.footer_links{
    display: flex;
    flex-direction: column;
    font-size: medium;
}

.quickLinks{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    cursor: pointer;
}

.quickLink{
    text-decoration: none;
    color: rgb(209, 206, 206);
}

.quickLink:hover{
    text-decoration: none;
    color: var(--color-footer-blue);
}

.socials{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color:  var(--color-footer-blue);
}


.social_icons{
    display: flex;
    column-gap: 0.5rem;
    color:  var(--color-footer-blue);
    height: 1rem;
    width: 1rem;
    
}

.f_links{
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 0.8rem;
    font-size: x-large;
    color: rgb(209, 206, 206);
}

.f_links a{
    font-size: large;
    text-decoration: none;
    color: rgb(209, 206, 206);
}

.f_links a:hover{
    color: var(--color-logo);
    font-size: x-large;
}

.contactme .cnt {
    display: flex;
    column-gap: 0.8rem;
    color:rgb(209, 206, 206);
    font-size: medium;
}

.call{
    display: flex;
    column-gap: 1rem;
    color: rgb(209, 206, 206);
    font-size: medium;
    margin: 1rem 0;
}

.footer_heading{
    margin-bottom: 1rem;
    background-color:var(--color-logo);
    background-image: linear-gradient(to top, var(--color-logo) 0%, var(--color-orange) 100%);
    background-size: 100%;
    background-clip: border-box;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.cnt{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
}

.sub{
    margin-top:0.6rem;
    background-color: rgb(255, 123, 0);
    background-image: linear-gradient(to bottom, rgb(255, 123, 0) 0%, rgb(253, 163, 78) 100%);
    height: fit-content;
    padding: 2px 15px;
    font-size: 0.8reml;
    width: fit-content;
    outline: none;
    color: aliceblue;
    border: 1px solid  rgb(255, 123, 0);
    border-radius: 2rem;
    text-shadow:1px 1px 1px black;
}

.sub:hover{
    border: 1.5px solid aliceblue;
}

.f_copyright{
    color:rgb(209, 206, 206);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 1rem 0;
}

@media screen and (max-width:840px){
    .footer{
        background-color: #141414;
        padding: 1.5rem 2.5rem;
        display: flex;
        flex-direction: column;
        row-gap: 2.2rem;
    }
    

    .quickLinks{
        text-align: start;
    }
    
    .socials{
        align-items: flex-start;
    }

    .socials h3{
        margin-bottom: 0;
    }

    .call{
        margin-left: 7px;
        margin-top: 0.5rem
    }

    .footer_heading{
        margin-bottom: 0.5rem;
    }

    .f_copyright{
        justify-content: flex-start; 
    }
}