/*** Footer ***/

.footer_wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1rem;
    background-color: var(--light);
    justify-content: center;
    text-align: center;
    height:fit-content;
    padding-top: 2rem;
    padding: 3rem 8rem 3rem 8rem;
    border-top: 0.1rem solid var(--dark);
    overflow-x: hidden;
  }
  
  .footer_wrapper div ul li{
    list-style: none;
  }
  .footer1 img{
    max-width: 50%;
  }
  
  .footer2 ul li{
    text-decoration: none;
    margin: 0.3rem;
  }
  .footer2 ul li::marker{
    content:"";
  }
  .footer2 ul li a{
    text-decoration: none;
    color: var(--dark);
  }
  .footer2 ul li a:hover{
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
  .footer_wrapper h2{
    font-size: 1.10rem;
    color: #212121;
    margin-bottom: 0.5rem;
  }
  
  .footer3 ul li{
    text-decoration: none;
    margin: 0.3rem;
  }
  .footer3 ul li::marker{
    content:"";
  }
  .footer3 ul li a{
    text-decoration: none;
    color: var(--dark);
  }
  .footer3 ul li a:hover{
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
  .footer3 img{
    width: 20px;
    margin-left: 0.3rem;
    border-radius: 1px;
  }
  .footer4 h3{
    color: var(--dark);
    font-size: 1rem;
  }
  .footer4 p{
    line-height: 1.25rem;
    margin-top: 0.25rem;
  }
  .copyright{
    height: fit-content;
    display: flex;
    background-color: var(--light);
    justify-content: center;
    padding: 1rem;
  }
  .copyright h2{
    color: var(--dark);
    font-weight: 400;
  }
  
  @media ( max-width: 1001px ) {
    .copyright h2 {
      color: var(--dark);
      font-weight: 400;
      text-align: center;
    }
  }
  
  /**** Animation ****/
  .animate-on-scroll-right {
      opacity: 0;
      transform: translate(70px, 0);
      transition: all 0.25s ease-out;
      transition-delay: 0.1s;
  }
  .animate-on-scroll-left {
      opacity: 0;
      transform: translate(-70px, 0);
      transition: all 0.25s ease-out;
      transition-delay: 0.1s;
  }
  .animate {
      opacity: 1;
      transform: translate(0, 0);
  }
  