.container {
    font-family: "Public sans", sans-serif;
    /* height: 550px; */
    width: 100vw;
    overflow: hidden;
    background: url("/static/images/cic/footer_background.jpg") no-repeat center
        center/cover;
    background-attachment: fixed;
}

.footer_container {
    padding: 60px 0px 20px 0px;
    width: 90%;
    max-width: 1200px;
    margin: 0px auto;
}
.box_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
}
.logo {
    height: 70px;
}
.footer_text {
    margin: 20px 0px;
    font-weight: 500;
    opacity: 0.8;
    font-size: 16px;
}

.footer_head {
    font-weight: 700;
    font-size: 18px;
}

.links {
    margin: 20px 0px;
}
.link {
    font-size: 16px;
    cursor: pointer;
    opacity: 0.8;
    font-weight: 600;
}
.link:hover {
    text-decoration: underline;
}
.btn {
    background: var(--gradient);
    border: none;
    color: #fff;
    font-family: "Public sans", sans-serif;
    padding: 12px 10px;
    border-radius: 8px;
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
}

@media screen and (max-width: 1100px) {
    .box_container {
        gap: 60px;
    }
}
@media screen and (max-width: 1000px) {
    .box_container {
        grid-template-columns: repeat(3, 1fr);
    }
    .main_box_container {
        grid-column: 1/-1;
    }
}
@media screen and (max-width: 600px) {
    .box_container {
        gap: 30px 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    .end_box_container {
        grid-column: 1/-1;
        text-align: center;
    }
    .btn {
        margin-top: 20px;
    }
}
