.footer {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    height: clamp(500px,32.60416666vw, 626px);
    background-color: var(--color-footer);
  }
  
  .footer-body {
    justify-content: space-between;
    width: 70%;
    height: 97%;
    display: flex;
    flex-direction: row;
    margin-block-start: 6%;
    margin-inline:auto;
  }
  
  .item {
    display: flex;
    flex-direction: column;
  }
  
  .item-image img {
    width: clamp(100px, 5.9375vw, 114px);
    height: clamp(30px, 1.8229166666vw, 35px);
  }
  
  .item-head {
    margin-block-end: clamp(25px,2.2395833vw,43px);
    text-align: start;
    color: var(--colors-nav-active-color);
    font-size: clamp(12px,1.302083333vw, 25px);
    font-family:poppins-SemiBold;
  }
  
  .item-head a {
    text-decoration: none;
  }
  
  .item-text {
    margin-bottom: 7%;
    text-align: start;
  }

  .item-text a {
    color: white;
    font-family:poppins-Regular;
    text-decoration: none !important;
    font-size: clamp(10px, 0.78125vw, 15px);
  }
  
  .footer-end {
    text-align: center;
    opacity: 100%;
    margin-bottom: 1%;
    font-size: clamp(8px, 0.78125vw, 15px);
    color: var(--colors-nav-color);
    font-family: poppins-Regular;
  }
@media screen and (max-width: 720px) {
    .footer{
      height: auto;
    }
    .item-image{
      margin-block: 5%;
    }
    .item{
      margin-right: 0px;
    }
    .footer-body{
      flex-direction: column;
      /* align-items: center; */
    }
    .item-head{
      margin-block: 3%;
    }
    .item-text{
      margin-bottom: 0px;
      /* display: none; */
    }
    .footer-end{
      margin-block-start: 5%;
    }
}
/***********************new**************************/
.item-text a {
  transition: all ease 0.2s;
}
.item-text a:hover {
  color: #03c2fc !important;
}
