.new_footer_area {
    background: #fbfbfd;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.new_footer_top {
    padding: 10px 0px 250px;
    position: relative;
    overflow-x: hidden;
    flex-grow: 1;
}

.footer1 {
    padding: 2rem;
    background: #000F2E;
    color: white;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}

.footer1 #kassogue{
  color: aqua;
  transition: transform .2s;
}


.footer1 #kassogue:hover{
  -ms-transform: scale(1.08); /* IE 9 */
  -webkit-transform: scale(1.08); /* Safari 3-8 */
  transform: scale(1.08); 
  }

.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    background: url("../images/Gif/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 276px;
  }

  .new_footer_top .footer_bg .footer_bg_one {
    background: url("../images/Gif/volks.gif") no-repeat center center;
    width: 330px;
    height: 140px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
  }

  .new_footer_top .footer_bg .footer_bg_two {
    background: url("../images/Gif/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
    background-size: 100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 15s linear infinite;
    animation: myfirst 15s linear infinite;
  }
  .new_footer_top .footer_bg .footer_bg_tree {
    background: url("../images/Gif/tractor.gif") no-repeat center center;
    width: 128px;
    height: 125px;
    background-size: 100%;
    bottom: 0;
    left: 28%;
    position: absolute;
    -webkit-animation: myfirst 35s linear infinite;
    animation: myfirst 35s linear infinite;
  }

  .new_footer_top .footer_bg .footer_bg_five {
    background: url("../images/Gif/tractor-zeggs.gif") no-repeat center
      center;
    width: 105px;
    height: 110px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: mytrois 43s linear infinite;
    animation: mytrois 43s linear infinite;
  }

  @-moz-keyframes myfirst {
    0% {
      left: -25%;
    }
    100% {
      left: 100%;
    }
  }

  @-webkit-keyframes myfirst {
    0% {
      left: -25%;
    }
    100% {
      left: 100%;
    }
  }

  @keyframes myfirst {
    0% {
      left: -25%;
    }
    100% {
      left: 100%;
    }
  }

  @-moz-keyframes mytrois {
    0% {
      left: 100%;
    }
    100% {
      left: -25%;
    }
  }

  @-webkit-keyframes mytrois {
    0% {
      left: 100%;
    }
    100% {
      left: -25%;
    }
  }

  @keyframes mytrois {
    0% {
      left: 100%;
    }
    100% {
      left: -25%;
    }
  }



  /* Media query pour les écrans de taille moyenne (max-width: 1025px) */
  @media (max-width: 1025px) {
    .new_footer_top {
      padding: 10px 0px 230px;
  }

  }

    /* Media query pour les écrans de taille moyenne (max-width: 1025px) */
    @media (min-width: 1026px) {
      .new_footer_top {
        padding: 10px 0px 230px;
    }
  
    }


.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.footer-column {
    flex: 1 1 100%;
    margin: 10px 5px;
    border-right: #14cae2 0.1px solid;
    
}

.footer-column h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
}

.footer-column ul a   {
    text-decoration: none;
    color: inherit;
    position: relative;
}

.footer-column ul li a::before,
.footer-column ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #14cae2;
    transition: transform 0.3s;
}

.footer-column ul li a::before {
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.footer-column ul li a::after {
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    transform-origin: right;
}

.footer-column ul li a:hover{
    color: rgb(255, 0, 0);
    font-size: 105%;
}
.footer-column ul li a:hover::before,
.footer-column ul li a:hover::after {
    transform: scaleX(1);
}

.footer-column ul li i {
    margin-right: 10px;
}

@media (min-width: 300px) {
    .footer-column {
        flex: 1 1 46%;
    }
}

@media (min-width: 900px) {
    .footer-column {
        flex: 1 1 24%;
    }

    .footer_bg_two,
    .footer_bg_tree {
      display: none;
    }
}


s