
.footer-section {
    position: relative;
    padding: 2rem 0 0 0;
    background-color: var(--footerColor);
    font-size: 14px;
}

.footer-section .contact {
  color: var(--footerTextColor);
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 1rem ;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    border: none;
    width: 90%;
    margin: auto;
}

.footer-top .footer-contact .email::first-letter{
    text-transform: none;
}

.logoFooter{
    width: 50%;
}

.copyright > p > span {
    color: var(--footerTextColor);
}

/* iconos redes sociales */
.social-icons li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
}

/* iconos redes sociales : activo */
.social-icons li a.active {
    background: var(--secondary);
    border-color: var(--primary);
}


/* texto footer*/
.footer-section::before {
    bottom: 0;
    right: 0;
    left: 0;
    top: 80px;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: cover;
    -webkit-mask-size: cover;
    background: none;
}

.MenuFooter {
    width: 90%;
}

.MenuFooter li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.MenuFooter a {
    color: var(--footerTextColor);
}

.fa-angle-right{
    color: var(--footerTextColor);
}


.footer-top p {
    color: var(--footerTextColor);
}

.footer-top p a {
    color: var(--footerTextColor);
}

.footer-top a:not(.email):hover {
    font-weight: 600;
}

.footer-top strong {
    color: var(--footerTextColor);
    font-weight: 500;
}



.footer-bottom {
    padding: 0 0 25px 0;
    text-align: center;
  
}

.footer-bottom p {
    color: var(--footerTextColor);
    opacity: .99;
}

.footer-bottom p a {
    color: var(--footerTextColor);
    opacity: 1;
    font-weight: bold;
}

.footer-bottom p a:hover{
    cursor: pointer;
}

.footer-rrss {
    margin-bottom: 1em;
    display: flex;
    flex-wrap: wrap;
    column-gap: 2em;
    justify-content: center;
}

.footer-rrss a::first-letter{
    text-transform: lowercase;
}

@media (max-width: 575px){
    .footer-top {
        display: flex;
        flex-direction: column;
        border: none;
        width: 90%;
        margin: auto;
    }
    .MenuFooter {
        display: flex;
        width: 90%;
        flex-direction: column;
    }
}

@media (max-width: 991px){
    .footer-section {
        padding: 2rem 0 8rem 0;
    }
}
