:root{
  --menu_text: #ffffff;
  --footer_text: #4e4e4e;
  --menu_back: #0267FF;
  --footer_back: #121212;
  --font_text: 'Roboto', sans-serif;
  --font-h: 'Roboto', sans-serif;
  --color-1: rgb(58, 110, 175);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:ital,wght@0,300;0,400;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish&family=Playfair+Display:wght@600&family=Poppins:ital,wght@0,300;0,400;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,700;1,500&family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  background-color: var(--footer_back);
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 70px;
  font-family: var(--font_text);
  line-height: 2;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  text-align: center;
  color: var(--footer_text);
}

.footer-heading {
  font-family: var(--footer_h);
  color: #4e4e4e;
}

.footer-heading-h1 {
  font-family: var(--footer_h);
  color: #4e4e4e;
  margin-bottom: -15px;
}

.text-footer{
  color: #4e4e4e;
}

.text-footer a {
  color:#4e4e4e;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.text-footer-1 {
  color: #242526;
}

.text-footer a:hover {
  text-decoration: underline;
}

.links-footer {
  color: #4e4e4e;
  text-decoration: none;
}

.icon-facebook {
  color: #4267B2;
  font-size: 64px; 
  margin-right: 7px;
}

.icon-instagram {
  font-size: 64px;
  display: inline-block;
  background: -webkit-linear-gradient(top, #F58529, #DD2A7B, #833AB4);
  background: linear-gradient(to bottom, #F58529, #DD2A7B, #833AB4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.icon-instagram:hover, .icon-facebook:hover {
  filter: brightness(80%);
}

@media screen and (max-width: 767px) {
  footer {
    flex-direction: column; 
    align-items: center; 
    padding: 30px; 
  }
}
.language-switch {
  position: sticky;
  bottom: 0;
  right: 0;
  width: min-content;
  height: auto;
  background-color: var(--color-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  z-index: 9999;
  float: right;
  margin-top: 100px;
}

.language-image {
  width: 30px;
  margin: 3px;
  height: auto;
  object-fit: cover;
}