* {
  box-sizing: border-box;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: white;
  background-color: #009DA5;
}

.mid {
  position: relative;
  display: grid;
  grid-template-areas: "a1";
  grid-template-rows: 5fr .1fr;
  justify-items: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  text-align: center;
}

.gironaLogo {
  width: 250px;
  height: 147px;
  margin: 0;
  padding: 0;
  margin-bottom: 3px;
}

.languages {
  cursor: pointer;
  margin: 5px 10px;
  display: inline-block;
}

#header-container {
  max-height: 180px;
  max-width: 250px;
  margin: 0 auto;
  margin-bottom: 4%;
}

#content {
  height: auto;
}

#footer {
  width: 100%;
  margin-top: 12px;
}

.medipLogo {
  width: 120px;
  height: 20px;
}

.policy {
  background-color: #d6d6d6;
  width: 100%;
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

a.polink {
  color: #006EB6;
  font-size: 16px;
  text-decoration: none;
  padding: 10px;
}

a.polink:hover, .languages:hover {
  font-weight: bold
}

@media (max-width: 991px) {
  a.polink {
    padding: 5px;
    font-size: 14px;
  }

  #header-container {
    margin-bottom: 0;
  }
}

.window-notice {
  text-align: center;
  background: rgba(33, 41, 52, .55);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  max-height: 1000px;
  width: 100%;
  z-index: 999;
  transition: background .6s;
  visibility: hidden;
}

.window-notice .window-content {
  background: #d6d6d6;
  color: #005a9b;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(33, 41, 52, .75);
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  margin: auto;
  min-width: 320px !important;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
  font-size: 16px;
  margin-bottom: 0;
}

.content-buttons {
  text-align: center;
  margin-top: 1rem;
  display: inline-block;
}

.content-buttons a {
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  padding: 0.5rem 2rem;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.color-grey {
  background-color: #5d5d5d;
  border-radius: 15px;
}

.color-grey:hover {
  background-color: #3f3f3f;
}

.color-blue {
  background-color: #006EB6;
  border-radius: 15px;
}

.color-blue:hover {
  background-color: #005a9b;
}


.content-text {
  margin: 0 5px;
}

.cookie {
  font-weight: normal;
}

a {
  color: rgb(107, 104, 104);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  font-weight: bold;
}

@media (max-width: 450px)
{
  .content-buttons {
    display: block;
    margin: 1rem;
  }
}