.footerSupremeContainer {
    width: 100%;
    background-color: #a7b8bd4d;
  }
  
  .footerMainContainer {
    max-width: 70rem;
    margin: 0 auto;
    display: flex;
    padding: 4rem 1rem;
    column-gap: 5rem;
  }
  
  .footerContainer1,
  .footerContainer2,
  .footerContainer3 {
    width: 33.33%;
  }
  
  .footerContainer1,
  .footerContainer2,
  .footerContainer3 {
    display: flex;
    flex-direction: column;
  }
  
  .footerLogo {
    display: flex;
    align-items: center;
    justify-content: start;
  }
  
  .footerLogo, .footerContainer2Heading, .footerContainer3Heading{
      margin-bottom: 0.75rem;
  }
  
  
  .footerLogo > img {
    width: 118px;
    height: 55px;
    margin-right: 8px;
  }
  
  .footerLogo > span > span {
      font-weight: bold;
  }
  
  .footerDescription {
    color: rgba(20,86,155, 0.8);
    line-height: 1.25rem;
    text-align: justify;
    margin-top: 0.5rem;
    font-size: medium;
  }
  
  .footerContainer2Heading,
  .footerContainer3Heading {
      text-overflow: unset;
      overflow: unset;
      display: block;
      -webkit-box-orient: unset;
      font-size: 1.25rem;
      line-height: 1.75rem;
      font-weight: 700;
      color: rgba(20,86,155, 0.8);
  }
  
  .footerContainer2Links,
  .footerContainer3Links {
      display: flex;
      flex-direction: column;
  }
  
  .footerLinks{
      margin-bottom: 0.5rem;
      width: fit-content;
      color: rgba(20,86,155, 0.8);
      position: relative;
    transition: color 0.6s ease; /* Add a transition for color change */
  }
  
  .copyRightTagline{
    display: flex;
    padding: 1rem 1rem;
    font-size: small;
    justify-content: center;
    align-items: center;
    color: rgba(20,86,155, 1);
    background-color: #a7b8bd4d;
  }
  
  @media only screen and (max-width: 769px){
      .footerMainContainer{
          padding: 3rem 1rem;
      }
  }
  
  @media only screen and (max-width: 426px) {
      .footerMainContainer {
        flex-direction: column;
        column-gap: 0;
        row-gap: 2rem;
        padding: 2rem 1rem;
      }
    
      .footerContainer1,
      .footerContainer2,
      .footerContainer3 {
        width: 100%;
      }
    }
    
  @media only screen and (max-width: 353px) {
    .copyRightTagline{
      padding: 1rem 0.5rem;
      font-size: 0.75rem;
    }
  }
  
  @media only screen and (max-width: 311px) {
    .copyRightTagline{
      padding: 1rem 0.4rem;
      font-size: 0.7rem;
    }
  }
  
  @media only screen and (max-width: 288px) {
    .copyRightTagline{
      font-size: 0.65rem;
    }
  }
  
  @media only screen and (max-width: 269px) {
    .copyRightTagline{
      font-size: 0.6rem;
    }
  }
  
  @media only screen and (max-width: 249px) {
    .copyRightTagline{
      font-size: 0.55rem;
    }
  }