.fa{
    font-size: 16px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

.fa-instagram {
    background: #125688;
    color: white;
}

.fa-google {
    background: #dd4b39;
    color: white;
}

.fa-linkedin {
    background: #007bb5;
    color: white;
}

.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
}


.footer1 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 100px 50px;
    width: 100%;
    gap: 40px;
}

.footer1 p {
    width: 30%;
    font-size: 1.5rem;
    color: gray;
}
.footer1 p span{
    color: white;
}
.footer1 h1 {
    width: 30%;
    font-size: 5rem;
    color: white;
    line-height: 4rem;
}



.footer2 {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
    flex-wrap: wrap;
}

.footer2 .socialItem{
    display: flex;
    align-items: center;
    gap: 10px;
}



.footer2 .socialItem .footerlink{
    text-decoration: none;
    color: black;
    font-size: var(--default-font-size);
}



@media (max-width:1000px) {
    .footer1 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: black;
        padding: 100px 30px;
        width: 100%;
        gap: 20px;
    }

    .footer1 p {
        width: 30%;
        font-size: 1rem;
        color: gray;
    }
    .footer1 p span{
        color: white;
    }
    .footer1 h1 {
        width: 30%;
        font-size: 3rem;
        color: white;
        line-height: 2rem;
    }
}
@media (max-width:700px) {
    .footer1 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: black;
        padding: 100px 20px;
        width: 100%;
        gap: 20px;
    }
    
    .footer1 p {
        width: 45%;
        font-size: 1rem;
        color: gray;
    }
    .footer1 p span{
        color: white;
    }
    .footer1 h1 {
        width: 45%;
        font-size: 2rem;
        color: white;
        line-height: 2rem;
    }
    .footer2 {
        gap: 20px;
    }
}

@media (max-width:500px) {

    .footer1 {
        flex-direction: column-reverse;
        text-align: center;

    }

    .footer1 h1,  .footer1  p{
        width: 100%;
    }
}