footer {
  background-color: #e6e6e6;
  color: #324154;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  place-content: center;
  grid-template-rows: 20% 20% 20% 20%;
  line-height: 18px;
}
@media screen and (max-width: 990px) {
  footer {
    flex-direction: column;
    gap: 24px;
  }
}
footer .material-symbols-outlined {
  color: #13a4cc;
}
footer img {
  mix-blend-mode: multiply;
}
footer .col {
  width: 50%;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 990px) {
  footer .col {
    width: 80%;
  }
}
footer .col .language_choose {
  width: 50%;
}
footer .col .ft_contact {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  /* display: grid; */
  /* align-items: left; */
  /* grid-template-columns: 100%; */
}
footer .col .social_icons {
  display: flex;
  gap: 12px;
}
footer .col .social_icons i {
  color: #0c6c86;
  font-size: 24px;
  transition: color 0.5s, transform 0.2s;
}
footer .col .social_icons i:hover {
  transform: translateY(-10%);
  cursor: pointer;
  color: #1192b5;
}

.newsletter_div {
  position: relative;
  display: grid;
  gap: 0px;
  width: 100%;
}
#ns_email {
  width: 100%;
  padding: 12px;
  border-radius: 26px;
}
.newsletter_btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 22px;
  background-color: #1192b5;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0em;
  padding: 4px 10px;
  border: 2px solid #1192b5;

  transition: background-color 0.2s, color 0.2s, padding 0.2s;
}
.newsletter_btn:hover {
  background-color: #fff;
  color: #1192b5;
  padding: 4px 24px;
}
.newsletter_btn:active {
  background-color: #1192b5;
  color: #fff;
}
.newletter_heading {
  color: #324154;
}
@media screen and (max-width: 990px) {
  footer .col .ft_contact {
    width: 100%;
  }
  footer .col .language_choose {
    width: 100%;
  }
}
