/* STYLING THE FOOTER */

.footer {
  width: 100%;
  margin: 90px auto 0 auto;
  background-color: #0098d4;
  padding-bottom: 22px;
  text-align: center;
}

.footer-wrap {
  width: 1000px;
  max-width: 100%;
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  color: white;
  font-weight: bold;
  text-align: justify;
}

.footer__nav {
  width: 100%;
  margin: auto;
  padding: 4% 0;
  color: white;
  display: grid;
  grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
  grid-column-gap: 2%;
  grid-template-rows: auto;
  box-sizing: border-box;
}
.footer__li {
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  text-align: left;
}
.footer__li--margin-big {
  margin-bottom: 3em;
}
.footer__li--margin-small {
  margin-bottom: 0.6em;
}
.footer__link {
  color: white;
  text-decoration: none;
  line-height: 25px;
  padding-left: 2px;
  min-width: 150px;
}
.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;
}
.pipesep {
  display: inline-block;
  padding: 0 5px;
  font-weight: normal;
}

/* MEDIA QUERIES FOR FOOTER */

@media (max-width: 1190px) {

  .footer-wrap {
    padding: 4%;
    box-sizing: border-box;
  }

  .footer__nav {
    grid-template-columns: 50% 50%;
  }


  .pipesep {
    display: inline-block;
    padding: 0 0px;    
  }
}

@media (max-width: 973px) {

  .pipesep 
  {
    padding: 0 5px;
  }
}

@media (max-width: 668px) {
  .footer__nav {
    grid-template-columns: 100%;
  }

  .footer__nav > ul {
    padding-bottom: 18px;
  }

  .pipesep 
  {
    padding: 0 3px;
  }
}



.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;
  }
}

