/* STYLING THE FOOTER */

.footer {
  width: 100%;
  margin: 0em auto 0 auto;
  background-color: #0098d4;
  padding-bottom: 22px;
}
.footer__nav {
  width: 95%;
  margin: auto;
  padding: 2% 0;
  color: white;
  display: grid;
  grid-template-columns: 24% 24% 24% 22%;
  grid-column-gap: 2%;
  grid-template-rows: auto;
}
.footer__li {
  font-size: 11px;
  line-height: 18px;
}
.footer__li--margin-big {
  margin-bottom: 3em;
}
.footer__li--margin-small {
  margin-bottom: 0.6em;
}
.footer__link {
  color: white;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: none;
}
.footer__h3 {
  margin: 0em 0 0.5em 0;
  font-size: 14px;
}
.footer__copyright-p {
  color: white;
  font-size: 10px;
  margin-top: 0;
  margin-left: 2.5%;
  padding-bottom: 1em;
  opacity: 0.75;
  line-height: 1.4;
}


/* MEDIA QUERIES FOR FOOTER */

@media (max-width: 1190px) {
  .footer__nav {
    grid-template-columns: 50% 50%;
    grid-row-gap: 1.5em;
  }
  .footer__logo {
    grid-column: 1;
    grid-row: 1;
  }
  .footer__ul--column-three, .footer__ul--column-two, .footer__ul--column-four {
    grid-column: 2;
    grid-row: 1;
  }
  .footer__ul--column-three {
    margin-top: 150px;
  }
  .footer__ul--column-four {
    margin-top: 250px;
  }
  .footer__copyright-p {
    grid-column: 1 / span 2;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    grid-template-columns: 100%;
  }
  .footer__ul--span-two {
    grid-row: 2;
    align-self: start;
  }
  .footer__ul--column-three, .footer__ul--column-two, .footer__ul--column-four {
    grid-column: 1;
  }
  .footer__ul--column-one {
    grid-row: 1;
  }
  .footer__ul--column-two {
    grid-row: 2;
  }
  .footer__ul--column-three {
    grid-row: 3;
    margin-top: 0;
  }
  .footer__ul--column-four {
    grid-row: 4;
    margin-top: 0;
  }
  .footer__copyright-p {
    grid-row: 5;
  }
}
@media (max-width: 425px) {
  .footer {
    font-size: 80%;
  }
  .footer__nav {
    padding: 4% 0;
  }
  .footer__logo {
    width: 150px;
  }
}



.cookie_disclaimer {

  position: fixed;
  bottom: 0px;
  left: 0px;

  height: auto;
  min-height: 28px;
  width: 100%;

  font-size: 12px;

  background-color: #977940;
  color: black;

  border-top: 1px solid grey;
  padding: 3px 12px;
  
  box-sizing: border-box;

}

@media(max-width: 1200px) {

  .cookie_disclaimer {
    text-align: center;
    line-height: 16px;
  }

  .cookie_disclaimer .btn {
    display: block;
    width: 100px;
    float: none;
    clear: both;
    margin-left: auto;
    margin-right: auto;
  }
}




