.footer {
  background-color: var(--color-light);
}

.footer .logo-link {
  display: block;
  height: 38px;
  position: relative;
}

.footer .logo-link img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  max-height: 100%;
}

.footer .logo-link img[src*=".svg"] {
  height: 100%;
  width: 100%;
}
.mobile-separator{
  padding: 1.5em 0em;
}
.mobile-separator .icon{
  display: block;
  margin: 0 auto;
  width: 22px;
  height: 16px;
}
/* guardrails - quitamiedos */
.guardrails{
  padding-top: 22px;
  padding-bottom: 22px;
  background-color: var(--color-background-gray);
}
.guardrails .grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
}
.guardrails .guardrail{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.guardrails .guardrail img{
  display: block;
  height: 15px;
  width: 15px;
  margin-bottom: 8px;
}
.guardrails .guardrail .name{
  font-family: var(--ff-bold);
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-800);
}
@media (min-width:768px) {
  .guardrails{
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .guardrails .grid{
    grid-template-columns: repeat(4,1fr);
    max-width: 992px;
    margin: 0 auto;
  }
  .guardrails .guardrail{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .guardrails .guardrail img{
    display: block;
    height: 15px;
    width: 15px;
    margin-bottom: 0px;
    margin-right: 15px;
  }
}
@media (min-width:992px) {
  .guardrails .grid{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack:distribute;
        justify-content:space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}