.custom-footer {
    font-family: 'BloggerSans-Medium', sans-serif;
    color: #fff;
    font-size: 18px;
}

.custom-footer-top {
    background-size: cover;
    max-width: 1920px;
    margin: auto;
    padding: 80px 20px 40px;
    
    position: relative;
}

.custom-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo img {
    max-width: 260px;
    margin-bottom: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    gap: 40px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.footer-left ul{
    display: grid;
    place-items: center;
    
}
.footer-left ul li{
    list-style-type: disc;
    filter: drop-shadow(var(--black) 0rem 0rem 10px);
}
.footer-left,
.footer-right {
    flex: 1 ;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-left {
    align-items: flex-start;
    max-width: 274px;
    margin: auto;
}

.footer-right {
    align-items: flex-end;
}

.footer-left > a{
    margin: 0.5em auto auto auto;

}
.footer-left .footer-whatsapp {
    
    width: 34px;
    height: 34px;
}

.footer-left p,
.footer-left a {
    text-decoration: none;
    color: var(--white);
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right li {
    margin-bottom: 6px;
    filter: drop-shadow(var(--black) 0rem 0rem 10px);
}

.footer-right li::before {
    content: "· ";
    color: #fff;
}

.footer-right a {
    text-decoration: none;
    color: #fff;
    font-weight: normal;
}

.footer-bottom-menu {
    margin-top: 20px;
    text-align: center;
}

.footer-bottom-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-nav li {
    display: inline-block;
    filter: drop-shadow(var(--black) 0rem 0rem 10px);
    /* margin: 0 10px; */
}

.footer-bottom-nav a {
    color: #fff;
    text-decoration: none;
}

.footer-legal {
    background-color: #21262A;
    padding: 30px 20px;
    text-align: center;
    max-width: 1920px;
    margin: auto;
}

.footer-kit-text {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: normal;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.footer-kit-logos {
    display: flex;
    justify-content: space-around;
    max-width: 600px;
    margin: auto;
}

.footer-kit-logos img:first {
    width: 182px;
    margin: 0 10px;
    vertical-align: middle;
}
.footer-kit-logos img:nth-child(2) {
    width: 256px;
    margin: 0 10px;
    vertical-align: middle;
}
.footer-bottom-nav li::after {
    content: " -";
    margin-left: 5px;
    margin-right: 5px;
}

.footer-bottom-nav li:last-child::after {
    content: "";
}   
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

    .footer-right {
        margin-top: 20px;
    }

    .footer-kit-logos img {
        
        margin: 5px;
    }
}

@media screen and (max-width: 650px) {
    .footer-kit-logos{
        flex-flow: column;
        align-items: center;
        gap: 40px;
    }
    .footer-kit-logos img:first-child{
        max-width: 182px;
    }
    
}