.paging__main {
  background-color: rgba(9, 18, 66, 25%);
  margin-top: 100px; /* Adjust this value based on your navbar height */
  position: relative; /* Ensure it stays in normal flow */
  z-index: 900; /* Lower than navbar's z-index of 1000 */
}

.paging {
  display: flex;
  align-items: center;
  justify-content: space-between;

  &__items {
    display: flex;
    align-items: center;
    height: 40px;
    margin-top: 5px;

    li {
      padding: 20px 0 20px 0;
      font-size: 16px;
      font-weight: 500;
      color: #ffffff;
      cursor: pointer;
      transition: all 0.3s ease;

      border: 2px solid transparent;

      &:hover {
        border-bottom: 2px solid #ffffff;
      }
      
    }
    p {
      background-color:rgba(255, 255, 255, 20%);
      width: 1px;
      height: 20px;
      margin: 0 15px;
    }
  }

  &__right {
    display: flex;
    align-items: center;

    &--socials {
      display: flex;
      align-items: center;
      margin-right: 40px;
      a {
        position: relative;
        width: 20px;
        height: 20px;
        margin-left: 20px;
        cursor: pointer;
        transition: all 0.3s ease;

        &:hover {
          opacity: 0.7;
        }
      }      

    }

    &--quote {
      padding: 25px 45px;
      background-color: #ffffff;
      color: #23212A;
      font-weight: 500;
      transition: all 0.3s ease;
      &:hover {
        opacity: 0.7;
      }

    }
  }

}

@media screen and (max-width:1024px){
  .paging__right--quote {
    padding: 20px 35px;
    background-color: #ffffff;
    color: #23212A;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .paging__right--quote:hover {
    opacity: 0.7;
  }
}
  .paging {

  &__items {

    li {
      font-size: 15px;
      padding: 15px 0 15px 0;
    }
    p {
      height: 15px;
      margin: 0 12px;
    }
  }

  &__right {

    &--socials {
      margin-right: 30px;
      a {
        width: 17px;
        height: 17px;
        margin-left: 15px;

      }
    }

    &--quote {
      padding: 20px 35px;
      background-color: #ffffff;
      color: #23212A;
      font-weight: 500;
      transition: all 0.3s ease;
      &:hover {
        opacity: 0.7;
      }

    }
  }

}
}

@media screen and (max-width:768px){
  .paging__main {
    display: none;
  }
}