footer {
    width: 100%;
    height: 220px;
    background-image: url(../images/footerbanerbg.png);
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    padding: 0 20px;
}

.footerbig {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(30px, 8vw, 100px);
    max-width: 1600px;
    margin: 0 auto;
}

.footer1 img {
    max-width: 100%;
    height: auto;
    max-width: 1000px;
    width: clamp(400px, 60vw, 1000px);
}

.footer2 img {
    max-width: 100%;
    height: auto;
    max-width: 300px;
    width: clamp(150px, 20vw, 300px);
}

@media (max-width: 1200px) {
    footer {
        height: 200px;
    }
}

@media (max-width: 992px) {
    footer {
        height: 180px;
    }
}

@media (max-width: 768px) {
    footer {
        height: auto;
        padding: 30px 20px;
    }

    .footerbig {
        flex-direction: column;
        gap: 20px;
        height: auto;
    }
}