:root {
  --white: #fff;
  --main-bg: #fcf7ec;
  --orange: #ff6d00;
  --light_green: #c2f4d1;
  --darkgreen: #05271c;
  --grey: #9a9b96;
  --font-poppins-regular: Poppins, sans-serif;
  --font-poppins-medium: Poppins, sans-serif;
  --font-poppins-extra-light: Poppins, sans-serif;
  --font-montserrat: Montserrat, sans-serif;
}

footer {
  background-image: url(../images/background/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 9998;
}

footer .language-selector {
  position: absolute;
  left: 3rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .dropdown-content {
  display: none;
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 0;
}

footer .language-selector:hover .dropdown-content {
  display: block;
}

footer p {
  margin: 0 !important;
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-family: var(--font-montserrat);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

footer .dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .dropbtn {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .language-selector img {
  width: 4.5rem;
  height: auto;
  margin-right: 0;
}

footer .dropdown-content a {
  padding: 0.3rem 0;
  display: block;
}

.update ol {
  text-align: left;
  margin-top: 2.3rem;
  line-height: 1.5;
  padding-left: 1.6rem;
}

footer .feedback {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#center-section {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

#feedback-button {
  background-image: url(../images/icons/footer/feedback.png);
  height: 4rem;
  width: 4rem;
  background-size: contain;
  background-position: center;
  border: none;
  background-size: cover;
  background-color: transparent;
}

#feedback-button:hover {
  height: 4rem;
  background-image: url(../images/icons/footer/feedback.png);
}

@media only screen and (max-width: 991px) {
  footer {
    height: 5rem;
    display: none;
  }
}

@media only screen and (max-width: 868px) {
  footer p {
    font-size: 2.2rem;
  }
  
  footer .language-selector img {
    width: 5.5rem;
    height: auto;
    margin-right: 0;
  }
  
  #feedback-button {
    height: 5rem;
    width: 5rem;
  }
  
  #feedback-button:hover {
    height: 5rem;
  }
}

@media only screen and (max-width: 668px) {
  footer {
    height: 7rem;
    display: flex;
  }
}

@media only screen and (max-width: 580px) {
  footer {
    height: 7rem;
  }
}