.footer {
    background: #000000;
    display: flex;
    /*height: 300px;*/
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    /*padding: 10px;*/
    gap: 20px;
}

.footer .logo-container {
    margin-top: 50px;
    margin-left: 50px;
}

.footer .logo-container img {
    height: 30px;
}

.footer .link-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 50px;
}

.footer .link-container .address {
    display: flex;
    flex-direction: column;
}

.address .header {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
}

.address div {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #B3B3B3;
}

.footer .link-container .download_buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.transparent-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 50px;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-decoration: none;
    border: 1px solid #fff;
    background-color: transparent  !important;
    max-height: 45px;
}

@media (max-width: 768px) {
    .footer .link-container {
        flex-direction: column;
        gap: 20px;
        padding-left: 20px;
    }
    
    .footer .link-container .download_buttons {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    
    .footer .link-container .download_buttons img {
        height: 48px;
    }
    
    .footer .logo-container {
        margin-left: 20px;
    }
    
}
