#page-seguridad {
  padding-bottom: 4rem;

  .page-banner {
    background-image: url('https://logikom.b-cdn.net/projects/logistock_uy/images/productos-banner-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding-top: 130px;
    padding-bottom: 130px;
    margin-bottom: 2rem;

    &:before {
      z-index: -1;
      content: '';
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .page-pre-title {
      font-size: 1.5rem;
      text-align: center;
      padding: 0 20px;
      color: white;
      font-weight: 600;
    }

    .page-title {
      font-size: 2.5rem;
      text-align: center;
      padding: 0 20px;
      color: white;
      font-weight: 600;
    }
  }

  .content-title {
    font-size: 36px;
    color: var(--color-brand-dark);
    line-height: 1.2;
    font-weight: 700;
    padding-left: 75px;
    position: relative;
    margin-bottom: 2rem;

    &:before {
      content: '';
      width: 50px;
      height: 3px;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(0, -50%);
      /* box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22); */
      background-color: var(--color-brand-light);
    }
  }

  .content {
    h3 {
      font-size: 1.5rem;
      line-height: 2;
      font-weight: 700;
    }

    h4 {
      font-size: 1.25rem;
      font-weight: 700;
    }

    a, a:link, a:visited {
      color: var(--color-brand-light);
    }

    ul.two-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 1rem;
      row-gap: 3rem;
    }

    ul.checked-list, ul.pdf-list {
      padding-left: 1rem;
      margin-bottom: 2rem;

      li {
        padding-left: 2rem;
        position: relative;
        margin-bottom: 25px;
        color: var(--color-text-base);
        font-size: 15px;
      }
    }

    ul.checked-list {
      li:before {
        position: absolute;
        font-family: 'icomoon';
        content: "\e90d";
        left: 0rem;
        color: var(--color-brand-light);
        font-size: 22px;
        line-height: 1.25rem;
      }
    }

    ul.pdf-list {
      li {
        text-align: center;

        a {
          display: block;
          padding-top: 3rem;
          color: inherit;

          &:before {
            position: absolute;
            font-family: 'icomoon';
            content: "\e914";
            color: var(--color-brand-light);
            font-size: 2rem;
            line-height: 1;
            top: 0px;
            left: 50%;
            transform: translate(-50%, 0);
          }
        }
      }
    }

    .padded-icon-container {
      i {
        margin-right: 20px;
        color: var(--color-brand-light);
      }

      h3 {
        font-size: 2rem;
        line-height: 4rem;
      }

      &>div {
        padding-left: 50px;
        color: var(--color-text-base);
      }
    }
  }

  /* .sidebar-column {
    flex: 1;
  } */

  .sidebar-menu {
    a {
      display: block;
      font-size: 18px;
      font-weight: 600;
      color: var(--color-brand-dark);
      padding: 15px 50px 15px 35px;
      background-color: rgb(236, 236, 236);
      border: 1px solid rgb(215, 215, 215);
      margin-bottom: 12px;
      min-width: 250px;
      max-width: 100%;
      position: relative;
      transition: all .3s linear;

      &.current {
        background-color: rgb(9, 42, 73);
        color: white;
      }

      &:hover {
        text-decoration: none;
        color: white;
        background-color: var(--color-brand-light);
      }

      i {
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translate(0, -50%);
      }
    }
  }

  @media (min-width: 64em) {
    .content-column {
      p {
        margin-bottom: 2rem;
      }

      img {
        max-width: 820px;
      }
    }
  }
}