.footer-style {
    background-color: rgba(82, 113, 255, 0.15);
    display: flex;
    flex-direction: column;
    padding: 15px 30px;
    font-family: "Garet-Regular", sans-serif;
    font-weight: 400;
    gap: 10px;
}

.footer-style .brands {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #002a62;
    align-items: center;
    gap: 5px;
}

.footer-style .brands .brands-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-style .brands img {
    width: auto;
    height: 4vh;
}

.footer-style .brands a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-style .brands h2 {
    padding: 0;
    margin: 0;
    font-size: clamp(1rem, 2vh, 2rem);
}

.footer-style .brands .accent {
    font-family: "Garet-Bold", sans-serif;
}


.footer-style .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    gap: 30px;
}

.footer-style .info a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-style .info .legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    color: #002a62;
    gap: 10px;
}

.footer-style .info .legal a {
    transition: text-decoration 1s ease;
    font-size: clamp(1rem, 1.2vh, 1.7rem);
}

.footer-style .info .legal a:hover {
    text-decoration: underline;
}

.footer-style .info .anaf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-style .info .contact {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.footer-style .info .contact img {
    height: 50px;
    width: auto;
}


.footer-style .company {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #737373;
    text-align: center;
}

.footer-style .company p {
    margin: 0;
    padding: 0;
    font-size: clamp(0.6rem, 1vh, 1.5rem);
}