/* ===================================
    footer
====================================== */

footer{
  position: relative;
  z-index: 10;
  background-color: #F9F9F9;

}

.logo-footer{
  width: 150px;
}

.main-logo{grid-area: log;}
.sec1{grid-area: s1;}
.sec2{grid-area: s2;}
.sec3{grid-area: s3;}

.site-footer{
  width: 100%;
  background: #F9F9F9;
  font-size: 12px;
  font-weight: 400;
  color: #000;

}

.grid-site-footer{
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  border-bottom: 1px solid #B0B0B0;
  grid-template-areas:
  "log"
  "s1"
  "s2"
  "s3";
  padding-bottom: 10px;
}

.grid-site-footer ul{
  list-style:none;
  padding-left: 0px;
  line-height: 24px;
  margin-bottom: 0px;
}


.site-footer a{transition: all 0.7s ease;color:#000;font-weight: 400!important;text-align: left;}
.social-media a{transition: all 0.7s ease;color:#000;}

.social-media a:hover{
  color: #65AF64;
  fill:#E3F406;
  transition: all 0.7s ease;
}

.site-footer a:hover{
  color: #D42C2C;
  fill:#D42C2C;
  transition: all 0.7s ease;
}

.site-footer a:hover svg{
  transition: all 0.7s ease;
}

.margin-lef-direccion{
  margin-left: 57px;
}

.logo-conduseft{
  width: 67.6px;
}


/*-----Section contact-----*/

.contact-content{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:20px;
}


.contact-content .icon i{
  color: #fff;
  font-size: 30px;
}

.contact-content .icon img{
  width: auto;
  height: 35px;
}



/*-----Section Terminos y condiciones-----*/

.tyc{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  flex-direction: column;
  gap:20px;
  font-weight: 300;
}

.social-media{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.social-media i{ /*Talvez se borre*/
  font-size: 20px;
  line-height: normal;
}

.content-avisos{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: normal;
  gap:10px;
}

.content-avisos span{
  transition: all 0.7s ease;
}

.content-avisos a:hover span{
  color: #D42C2C;
  text-decoration: underline;
  transition: all 0.7s ease;
}



/*Section desing by*/

.site-footer-tyc{
   left: 0;
   bottom: 5px;
   width: 100%;
  background:#F4F4F4;
  text-align: left;
  padding-bottom: 5px;
}

.content-legales{
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer-tyc span{
  color: #202322;
  font-size: 12px;
  line-height: normal;
  font-weight: 300;
}

.site-footer-tyc a{
  color: #000;
  font-size: 12px;
  line-height: normal;
  transition: all 0.7s ease;
}

.site-footer-tyc a:hover{
  color: #D42C2C;
  transition: all 0.7s ease;
}



/* ===================================
    Responsive
====================================== */

/* xxs */ @media (max-width: 430px) {}
/* xs  */ @media (min-width: 431px) {

} /* @media (max-width: 575px) {} */
/* sm  */ @media (min-width: 576px) {

.tyc{flex-direction: column;gap:12px;}

.logo-footer{width: 150px;}

}
/* md  */ @media (min-width: 768px) {

.grid-site-footer{  grid-template-columns: repeat(2,1fr);
  grid-template-areas:
  "log s1"
  "s2 s3";
}
.main-logo{display: flex;justify-content: center;align-items: center;}

} /* ipad Portrait */
/* lg  */ @media (min-width: 992px) {

.grid-site-footer{  grid-template-columns: auto 50% auto;
  grid-template-areas:
  "log log log"
  "s1 s2 s3";
  grid-gap: 35px;
}
.main-logo{display: flex;justify-content: center;align-items: center;;}

.tyc{flex-direction: row;gap:12px;}


}

/* ipad Landscape */
/* xl  */ @media (min-width: 1200px) {

.grid-site-footer{  grid-template-columns: 1fr 1fr 40% 1fr;
  grid-template-areas: "log s1 s2 s3";grid-gap: 40px;
}

.main-logo{display: flex;justify-content: flex-start;align-items: center;}


}
/* xxl */ @media (min-width: 1400px) {}
