:root{
    --primaryColor:black;
    --middleColor:#444444;
    --helperColor:#C84B31;
    --lightHelper:#F8EDE3;
    --hrColor:rgb(222, 184, 135);
    --transparentColor:#00d0848f;
    --shadow:rgba(189, 188, 188, 0.514);
   /* --------------------------------- */
    --whatsappColor:#25D366;
    --white:#ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray:  #f8f8f8;
}
footer{
    width: 99%;
    margin: auto;
    background-color: var(--lightHelper);
    border-radius: 10px 10px 0px 0px;
    border-top: 4px solid var(--helperColor);
 
}

footer h2, h3{
    color: var(--helperColor);
    /* width: fit-content; */
 
}

footer p {
    line-height: 1.6;
    font-size: 14px;
    color: var(--primaryColor);
} 

 
footer ul {
    list-style: disc;
   padding-right: 10px
} 

footer ul li::marker{
    color: var(--primaryColor);
} 

footer a {
    color: var(--primaryColor);
    text-decoration: none;
} 
  
footer a:hover {
    color: var(--primaryColor);
    text-decoration: underline;
} 

footer span{
    color: var(--primaryColor);
}
.upper-footer-container{
    display: flex;
    flex-direction: row; 
    justify-content: space-around;
    gap:20px ;
    flex-wrap: wrap;
    width: 90%;
    margin:20px auto 0px auto;
}

.logo-and-intro{
    display: flex; 
    flex-direction: row;
    justify-content: space-around; 
    align-items:start; 
    flex-shrink: 0; 
    width: 40%; 
    gap: 20px;
}
.footer-logo{
    width: 15%;
}

.footer-logo img{
    width: 100%;
}

.footer-intro{
    width: 70%;
}
.footer-intro h2{
    margin: 0%;
    padding: 0%;
}

.footer-bottom {
    width: 80%;
    margin:30px auto 0px auto;
    text-align: center;
    font-size: 13px;
    color: var(--primaryColor);
    border-top: 1px solid var(--helperColor);
    padding: 30px 0px;
    /* margin:30px 0px; */
} 

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
@media(max-width:768px){
    footer{
        margin:0px auto 65px auto;
       
    }
    .logo-and-intro{
        display: flex; 
        flex-direction: column;
        align-items:center; 
        width: 100%; 
        gap: 40px;
    }

    .footer-logo{
        width: 35%;
        margin: auto;
    }
    
    .footer-logo img{
        width: 100%;
    }
    
    .footer-intro{
        width: 90%;
        margin: auto;
    }

    .upper-footer-container{
        justify-content: space-between;
    gap:10px ;

    }

    .footer-bottom {
        width: 95%;
    }

}