.container-nav {
    max-width: 1400px;
    width: 94%;
    height: auto;
    margin: auto;
  }
  #nav {
  width: 100%;
  height: auto;
  padding: 0.5rem 0%;
  background-color: white;
  margin-top: -19px;
  line-height: 0px!important;

  ul {
    list-style: none;
    text-transform: capitalize;

    a {
      text-decoration: none;
      color: black;
    }
  }

  #sidebar {
    width: 100%;
    height: 65vh;
    /* padding: 3rem 1rem 5rem 1rem; */
    position: fixed;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #377ef9;
    top: 72px;
    left: -104%;
    z-index: 121212 !important;
    transition: 0.5s;

    @media (max-width: 468px) {
      top: 50px;
    }

    #side_close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 2rem;
      cursor: pointer;
      color: white;
      background-color: #377ef9;
    }

    h2 {
      font-size: 2rem;
      text-transform: capitalize;
      padding: 0 0 2rem 0;
      color: white;
    }

    ul {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 1rem;

      li {
        padding: 0.7rem 1rem;
        border-radius: 0.5rem;
        background-color: white;

        a {
          font-weight: 600;
          font-size: 1.2rem;
          color: #377ef9;
        }
      }
    }
  }

  .nav_child {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .nav_logo_box {
      display: flex;
      align-items: center;

      #menu {
        padding: 0.7rem 0.9rem;
        cursor: pointer;
        border: none;
        font-size: 1.2rem;
        color: white;
        background-color: #377ef9;
        border-radius: 0.5rem;
        box-shadow: 1px 1px 4px rgba(0, 55, 25, 0.5);
        display: none;
      }

      .nav_logo {
        width: 10rem;
        height: auto;

        img {
          width: 100%;
          height: auto;
        }
      }

      @media (max-width: 768px) {
        #menu {
          display: block;
        }

        .nav_logo {
          display: none;
        }
      }
    }

    .nav_list_box {
      .nav_logo {
        display: none;
      }

      .nav_main_ul {
        display: flex;
        gap: 1rem;
        align-items: center;

        .main_child {
          position: relative;

          .child_ul {
            top: 3.2rem;
            position: absolute;
            width: 15rem;
            padding: 1rem 0;
            display: none;
            background-color: #f7f4fb;
            border-radius: 0.5rem;

            li {
              padding: 0.5rem 1rem;
              transition: 0.5s;
            }

            li:hover {
              background-color: #377ef9;
              padding: 0.5rem 0 0.5rem 2rem;

              a {
                color: white;
              }
            }
          }
        }

        > li {
          padding: 0.2rem 0;
          position: relative;
          cursor: pointer;
          color: black;
          padding: 1rem;
          border-radius: 0.5rem;
          transition: 0.5s;

          a {
            transition: 0.5s;
          }
        }

        > li:hover {
          background-color: #377ef9;
          color: white;

          > a {
            color: white !important;
          }
        }

        /* >li::after {
          content: '';
          width: 0;
          height: .2rem;
          background-color: #377ef9;
          position: absolute;
          top: 100%;
          left: 0;
        }

        >li:hover::after {
          width: 105%;
        } */

        .main_child:hover {
          .child_ul {
            display: block;
          }
        }
      }

      @media (max-width: 768px) {
        .nav_main_ul {
          display: none;
        }

        .nav_logo {
          display: block;
        }
      }

      @media (max-width: 468px) {
        .nav_logo {
          display: flex !important;
          justify-content: center !important;
          padding: 0 0 0 1rem;
          width: 9rem;

          img {
            width: 100%;
          }
        }
      }
    }

    .nav_button {
      display: flex;
      gap: 1rem;
      align-items: center;

      .call {
        width: 2.5rem;
        height: 2.5rem;
        border: none;
        cursor: pointer;
        border-radius: 3rem;
        transition: 0.5s;
        background-color: #377ef9;
        box-shadow: 1px 1px 4px rgba(0, 55, 25, 0.5);

        i {
          color: white;
        }
      }

      .call:hover {
        background-color: white;

        i {
          color: #377ef9;
        }
      }

      .listing {
        padding: 0.7rem 1rem;
        border: none;
        cursor: pointer;
        font-weight: 600;
        text-transform: capitalize;
        cursor: pointer;
        background-color: #377ef9;
        color: white;
        border-radius: 0.5rem;
        box-shadow: 1px 1px 4px rgba(0, 55, 25, 0.5);
        transition: 0.5s;

        @media (max-width: 395px) {
          padding: 0.7rem 0.5rem;
        }
      }

      .listing:hover {
        background-color: white;
        color: #377ef9;
      }
    }
  }

  .side_show {
    left: 0 !important;
  }
}

.marketed {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 1rem 0 1rem 0;

    p {
      color: black;
      text-transform: capitalize;
      padding: 0.5rem 0;
    }

    span {
      color: black;
      text-transform: capitalize;

      a {
        color: black;
      }
    }
}