


footer {
  display: flex;
  justify-content: space-between;
  padding: 4em 2em 8em;

  color: white;
  background-color: #003063;
}

.fl1 {
  flex-basis: 200px;
  flex-grow: 2;
}

.fl2 {
  flex-basis: 200px;
  flex-grow: 1;
}

.fl3 {
  flex-basis: 200px;
  /* flex-grow: 1; */
}




.leftFooter > * + *,
.rightFooter > * + * {
  margin-left: 1em;
}


.cooperationPartners {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  background-color: #eff1f4;;
}

.cooperationPartners .slick-track {
  height: 120px;
}

.cooperationFlex {
  max-width: 800px;
}

.cooperationTitle {
  padding: 20px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--mainBlue)
}

@media screen and (max-width: 800px) {

  .footerLinkHolder {
    flex-direction: column;
  }

  .fl1, .fl2, .fl2 {
    flex-basis: unset;
    flex-grow: 2;
  }

  footer {
    display: flex;
    justify-content: space-between;
    padding: 2em 2em 2em;
  
    color: white;
    background-color: #003063;
  }
  
  


}