
/* STYLING THE FOOTER */
.footer {
  width: 100%;
  margin: 3em auto 0 auto;
  background-color: #0098d4;
}

.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: #f5f5f5;
  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;
  }
}

/* GENERAL STYLING */
* {
  line-height: 1.6;
}

html {
  margin: 0 auto;
  
}

body {
  font-family: Verdana, Arial, sans-serif;
  color: #585756;
  background-color: #f5f5f5;
  font-size: 0.9em;
}

article {
  width: 100%;
  padding-top: 2em;
}


.heading {
  width: 98%;
  margin: auto;
  background-color: #0098d4;
  color: white;
  -webkit-clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.heading__h2 {
  width: 100%;
  margin: auto;
  font-size: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 50px;
}

.heading__text-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.heading__h2--small {
  font-size: 11px;
  width: 220px;
  padding-bottom: 3px;
}

.heading__h2--big {
  width: 200px;
}

.heading__logo, .heading__logo-test {
  margin-right: 0.55em;
  margin-left: 1%;
  width: 32px;
}

.heading__h2-test {
  height: 50px;
}

.heading__logo-test {
  position: relative;
  top: 9px;
}

hr {
  border: 0;
}

summary:hover {
  cursor: pointer;
}

summary:hover {
  cursor: pointer;
}

/* ZOOM-IN ANIMATION ON HOVER */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* FADE ANIMATION ON HOVER
.hvr-fade-blue, .hvr-fade-green, .hvr-fade-dark {
  display: inline-block;
  vertical-align: middle;
 -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
 -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
-webkit-transition-property: background-color;
  transition-property: background-color;
}
.hvr-fade-blue:hover, .hvr-fade-blue:focus, .hvr-fade-blue:active {
  background-color: #00ace7;
} */
/* MEDIA QUERIES FOR HTML & GENERAL */

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

body .content {
  flex: 1 0 auto;
}

body .main {
  margin: 30px auto 50px auto;
}

body .main .terms__content {
  width: 95%;
  margin: 20px auto;
}

body .main .terms__p {
  font-size: 16px;
  margin-bottom: 30px;
}

body .main .terms__h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

body .main .terms__a {
  color: #0098d4;
}

body .main .fas {
  color: #007ab0;
  font-size: 80px;
  margin-top: 5px;
}

body .footer {
  flex-shrink: 0;
}

