body {
  background-color: $bg-color-1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.container {
  max-width: 1170px;
  padding: 0;

  &.small {
    max-width: 770px;
  }
}
.line-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin:0 auto;
    z-index: -1;
}
.material-icons {
  font-size: 18px;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-left: 3px;
}
.bg-section-2 {
  background-color: $bg-color-2;
}
ul {
    list-style-type: none;
    padding-inline-start: 0;
    margin-bottom: 0;
  }

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: white;

    &:hover {
      color: white;
      text-decoration: none;
    }
    &:active {
      text-decoration: none;
      outline-width: 0;
    }
    &:focus {
      outline-width: 0;
    }
  }

button {
    color: white;
    background-color: transparent;
    border: none;
    &:hover {
        color: white;
    }
    &:active {
        color: white;
    }
    &:focus {
        color: white;
        outline-width: 0;
    }
}
  
p {
  margin-bottom: 0;
}

.bg-color-3 {
  background: #3d3a3e;  
}

.articulos-ganadores-wrapp {
  padding: 98px 0;
  padding-bottom: 0px;
  @media(max-width:900px) {
    padding: 10px 0;
  }
}
.scroll-to {
  width: 22px;
  height: 32px;
  border: 1px solid $color-2;
  border-radius: 30px;
  display: block;
  position: relative;
  cursor: pointer;
  @media(max-width:900px) {
    display: none;
  }
  &:after {
    content: '';
    width: 1px;
    height: 8px;
    background: $color-2;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    animation: scroll 2.1s infinite;
  }

  @media(max-width:900px) {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-color: #fff;

    &:after {
      background: #fff;
    }
  }
  &.banner__scroll {
    
    @media(max-width:900px) {
      bottom: 40px;
      border-color: $color-2;

      &:after {
        background:$color-2;
      }
    }
  }
}
  .bg-animate {
    animation: bg 7s ease-in-out;
  }