/* footer styling */

.footer {
    display: grid;
    background-image: url(../assets/imgs/footer-shape1.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.container2 {
    display: grid;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.footer-logo {
    width: 300px;
    height: auto;
}

.footer-content2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
    padding-top: 2rem;
    margin-bottom: 70px;
}

.footer p {
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #f89b00;
}

.footer-social-container {
    display: grid;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    margin-bottom: 15px;
}

/*  ---  Tablet  ---  */

@media only screen and (max-width:980px) {
    .footer-content2 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .logo-container {
        padding: 30px 0;
    }
    .footer-item.fourth {
        grid-area: 1/2/span1 /span 1;
    }
    .footer-item {
        text-align: center;
    }
}

/*  ---  Smartphone  ---  */

@media only screen and (max-width:480px) {
    .footer-content2 {
        grid-template-columns: 1fr;
    }
    .footer-item.fourth {
        grid-area: auto;
    }
}

@media only screen and (max-width: 380px) {
    .footer-logo {
        width: 150px;
    }
}