footer {
    z-index: 10;
    position: relative;
  }
  
  footer.padding-adjust {
    padding-top: 75px;
  }
  
  @media only screen and (max-width: 1366px) {
    footer {
        padding: 0 20px;
    }
  }
  footer .footer-wrapper {
    width: 100%;
    display: flex;
  }
  @media only screen and (max-width: 991px) {
    footer .footer-wrapper {
      flex-direction: column;
    }
  }
  footer .link-wraper {
    width: 33.333%;
  }
  footer .link-wraper:nth-child(2) {
    padding-left: 40px;
  }
  @media only screen and (max-width: 991px) {
    footer .link-wraper:nth-child(2) {
      padding-left: 0;
    }
  }
  footer .link-wraper:nth-child(3) {
    padding-left: 120px;
  }
  @media only screen and (max-width: 991px) {
    footer .link-wraper:nth-child(3) {
      padding-left: 0;
    }
  }
  footer .title {
    white-space: nowrap;
    font-size: 18px;
    margin: 0 0 30px 0;
  }
  @media only screen and (max-width: 991px) {
    footer .title {
      margin: 25px 0 25px 0;
    }
  }
  @media only screen and (max-width: 480px) {
    footer .title {
      font-size: 18px;
    }
  }
  footer .list-wrap {
    margin: 0;
    padding: 0;
  }
  footer .list {
    list-style: none;
    margin-bottom: 20px;
  }
  footer .list:last-of-type {
    margin-bottom: 0;
  }
  footer .link {
    text-decoration: none;
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
    display: inline-block;
  }
  @media only screen and (max-width: 991px) {
    footer .link {
      margin-bottom: 20px;
      white-space: nowrap;
    }
  }
  @media only screen and (max-width: 480px) {
    footer .link {
      font-size: 16px;
    }
  }
  footer .bot-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  @media only screen and (max-width: 991px) {
    footer .bot-nav {
      flex-direction: column-reverse;
      align-items: flex-start;
      margin-top: 25px;
      margin-bottom: 0;
    }
  }
  footer .copyRight {
    width: 33.33%;
    margin: 0;
    font-size: 14px;
  }
  @media only screen and (max-width: 991px) {
    footer .copyRight {
      width: 100%;
      margin: 0 0 10px 0;
      white-space: nowrap;
    }
  }
  @media only screen and (max-width: 480px) {
    footer .copyRight {
      font-size: 14px;
      font-weight: 700;
    }
  }
  footer .policy-wrap {
    width: 33.33%;
    padding-left: 40px;
  }
  @media only screen and (max-width: 991px) {
    footer .policy-wrap {
      width: 100%;
      padding-left: 0;
      margin-bottom: 20px;
    }
  }
  footer .policy-wrap ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
  }
  @media only screen and (max-width: 480px) {
    footer .policy-wrap ul {
      flex-direction: column;
      gap: 20px;
    }
  }
  footer .policy-wrap ul li {
    list-style: none;
  }
  footer .policy-wrap ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
  }
  footer .social-link {
    width: 33.33%;
    padding-left: 120px;
  }
  @media only screen and (max-width: 991px) {
    footer .social-link {
      width: 100%;
      padding-left: 0;
      margin-bottom: 20px;
    }
  }
  footer .social-link ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
  }
  footer .social-link ul li {
    list-style: none;
  }
  footer .social-link ul li a {
    font-size: 18px;
    color: #fff;
    background: dimgrey;
    padding: 10px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 17px;
    box-sizing: initial;
  }
  
  footer .social-link ul li a:hover {
    background-color: var(--primaryColor);
  }
  
  footer.margin-adjust {
    margin-top: -370px;
  }
  @media only screen and (max-width: 991px) {
    footer.margin-adjust {
      margin-top: -200px;
    }
  }
