/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    width: 100%;
    background: #EEECEB;
}

footer {
    background: #3A3A3A;
    color:white;
    width: 100%;
    bottom: 0;
    left: 0;
    position: relative;   /* Added */
}

footer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    height: 1px;
    width: 100%;
    background: #FFFFFF;
}

footer .content {
    max-width: 1250px;
    margin: auto;
    padding: 30px 40px 40px 40px;
}

footer .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.content .top .logo-details {
    color: #fff;
    font-size: 30px;
}

.content .top .media-icons {
    display: flex;
}

.content .top .media-icons a {
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: 0.4s;
}

/* Social icon colors */
.top .media-icons a:nth-child(1) { background: #4267B2; }
.top .media-icons a:nth-child(2) { background: #1DA1F2; }
.top .media-icons a:nth-child(3) { background: #E1306C; }
.top .media-icons a:nth-child(4) { background: #0077B5; }
.top .media-icons a:nth-child(5) { background: #FF0000; }

.top .media-icons a:hover {
    background: #fff;
    color: inherit;
}

footer .content .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .content .link-boxes .box {
    width: 200px;
}

.content .link-boxes .box .link_name {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.link-boxes .box .link_name::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
}

.content .link-boxes .box li {
    margin: 6px 0;
    list-style: none;
}

.content .link-boxes .box li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.content .link-boxes .box li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.input-box input {
    height: 35px;
    width: 100%;
    margin: 5px 0;
    padding: 0 10px;
    border-radius: 4px;
    border: none;
}

.input-box input[type="button"] {
    background: #fff;
    color: #140B5C;
    font-weight: 500;
    cursor: pointer;
}