/* Import 'Satoshi' font from Fontshare */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Satoshi', sans-serif;
}

.footer-container {
    width: 100%;
    background-color: white;
    position: relative;
    bottom: 0;
}

.footer-container .box1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    padding: 20px;
    margin-top: 50px;
    background-color: white;
}

.box1 div {
    flex: 1;
}

.box1 .left {
    text-align: left;
    margin-left: 50px;
}

.box1 .middle {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box1 .right {
    margin-right: 50px;
}

.box1 .title {
    font-size: 20px;
    font-weight: bold;
    color: #3C6EEC;
}

.box1 .action-btn {
    font-size: 12px;
    font-weight: bold;
    color: gray;
    margin: 0 20px;
}

.box1 .social-icons {
    display: flex;
    justify-content: center;
    max-width: 10vw;
    margin-left: 20vw;
}

.box1 .social-icon {
    margin: 0 10px;
    width: 100%;
    height: 100%;
}

.box1 .social-icon:hover {
    cursor: pointer;
}

.box1 .social-icon img {
    width: 17px;
    height: 17px;
}

.box1 .x img {
    width: 15px;
    height: 15px;
}

.end-line {
    width: 91%;
    height: 1px;
    background-color: #3C6EEC;
    margin: 40px auto 0 auto;
    color: white;
}

.footer-container .box2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: black;
    padding: 20px;
    background-color: white;
}

.box2 .content {
    margin: 10px;
    font-size: 12px;
    text-align: center;
}

.box2 .btn {
    text-decoration: underline;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    .box1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }
    .box1 .left,
    .box1 .right {
        margin: 10px 0;
    }
    .box1 .middle {
        margin: 20px 0;
        flex-direction: column;
    }
    .box1 .action-btn {
        margin: 10px 0;
    }
    .box1 .social-icons {
        margin-left: 0;
    }    
    .end-line {
        width: 80%;
        margin: 20px auto 0 auto;
    }
    .box2 .content {
        margin: 5px;
        font-size: 14px;
    }
}
