.footer-container {
	width: 100%;
	max-height: 600px;
	
	position: relative;
	
	padding:.1%;

    display: flex;
    flex-wrap: wrap;
    
	background: #f0ecec;



}

.footer-left {
	float: left;
	width: 50%;

	font-size: .8em;
	
	text-align: center;
	place-content: center;

	flex-shrink: 0;
}

.footer-right {
	float: right;
	width: 50%;

	font-size: .7em;
  
	text-align: center;
	place-content: center;
	  
	flex-shrink: 0;

}





.h1 {
  font-size: 1.5em;
  font-weight: bold;
    color: white;
}

.h2 {
  font-size: 1.2em;
  font-weight: bold;
  color: #cad4d9;
}

.h3 {
  font-size: 1em;
  font-weight: bold;
}

.h4 {
  font-size: 1em;
  font-weight: bold;
}



.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 1em;
  text-align: center;
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: .7em;
  display: inline;
}

.cookie-banner button {
  background-color: #4CAF50;
  color: white;
  border: none;
  margin-left: 1em;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 5px;
  font-size: .7em;
}


@media screen and (max-width: 1250px) {
	.footer-left, .footer-right {
		width: 100%;
	}
}

