:root{
    --primaryColor:#082A99;
    --middleColor:#325c9b;
    --helperColor:#00d084;
    --lightHelper:#EBF4F6;
    --hrColor:rgb(222, 184, 135);
    --transparentColor:#00d0848f;
    --shadow:rgba(189, 188, 188, 0.514);
   /* --------------------------------- */
    --whatsappColor:#25D366;
    --white:#ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray:  #f8f8f8;
}
/* .company-info{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
} */

.main-footer { 
    box-shadow: 0px -10px 40px var(--shadow);
    color: var(--primaryColor);
    padding: 40px 10px 0px 10px;
    background-color: var(--lightHelper);
    border-radius: 10px 10px 0px 0px;
    border-top: 4px solid var(--helperColor);
}

.footer-container {
    width: 98%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    /* max-width: 1200px; */
    margin: auto;
}

.footer-section {
    flex: 1 1 200px;
    min-width: 200px;
    /* display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, 1fr); */
}

.footer-section h2, .footer-section h3 {
    margin-bottom: 15px;
    color: var(--helperColor);
}

.footer-section p {
    margin-bottom: 20px;
}

/* .footer-section img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
} */
.footer-logo{
  width: 100px;
  align-content: center;
}

.footer-logo img{
    width:100%;
    height: fit-content;
    object-fit: cover;

}

.footer-section p {
    line-height: 1.6;
    font-size: 14px;
    color: var(--primaryColor);
}
  
.footer-section ul {
    list-style: disc;
    padding: 0;
}

.footer-section ul li::marker{
    color: var(--primaryColor);
}
  
.footer-section ul li {
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-section span{
    color: var(--primaryColor);
}

.footer-section a {
    color: var(--primaryColor);
    text-decoration: none;
}
  
.footer-section a:hover {
    color: var(--primaryColor);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: var(--primaryColor);
    border-top: 1px solid var(--brown);
    margin-top: 30px;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
@media(max-width:768){
    .footer-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
      }
    .footer-logo{
        width: 100%;
    }
      .footer-section {
        min-width: auto;
        flex: 1 1 100%;
        text-align: center;
        justify-content: center; 
        align-content: center;
        align-items: center;
      }
    
      /* .footer-section img {
        width: 50px;
        height: 50px;
        margin: 0 auto 8px;
        display: block;
      }
     */
      .footer-section p,
      .footer-section ul li {
        font-size: 13px;
        color: #ffffff;
      }
    
      .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
        margin-top: 20px;
        text-align: center; 
      }
}