footer {
    border-top: 8px solid #1362C2;
    padding: 2rem 1rem;
    color: #757575;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #000;
    box-shadow: 0 0 50px #000;
    font-family: monospace;
    font-size: 16px
}

footer b {
    text-decoration: none;
    color: #999;
    font-size: 16px;
    font-family: monospace;
    position: relative;
    transition: color 0.3s ease
}

a:hover {
    color: #fff
}

footer b::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 4px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #1362C2, #059FF7);
    transition: width 0.1s ease
}

footer b:hover::before {
    width: 100%
}

.footer__row__2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px
}

.footer__row__1 h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    color: #aaa
}

.footer__row__1 img {
    width: 40px;
    margin-right: 5px
}

.footer__row__3 .dropdown__container {
    width: fit-content;
    border: 1px solid #757575;
    color: #757575
}

.footer__row__3 .dropdown__container .language__drop__down {
    color: #757575
}