footer {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  background-size: cover;
  background-position: center;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f4d9;
  z-index: 0;
}

footer .main-container {
  z-index: 1;
  position: relative;
}

.logo-footer {
  width: 300px;
  height: 80px;
  margin-bottom: 30px;
}

.logo-footer a {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-footer img {
  width: 100%;
  height: 100%;
}

footer .desc {
  font-size: 18px;
  font-family: "font_light";
  line-height: 1.7;
  width: 70%;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s;
  width: 40px;
  height: 40px;
  background-color: var(--primary3);
  color: var(--primary2);
  border-radius: 50%;
}

.footer-links a:hover {
  background-color: var(--primary1);
  transform: rotate(360deg);
}

.footer-heading {
  color: var(--primary3);
  font-size: 24px;
  position: relative;
  margin-bottom: 30px;
}

.footer-heading::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 25px;
  height: 2px;
  background-color: var(--primary2);
}

footer ul li a {
  color: #000;
  font-size: 18px;
  font-family: "font_light";
  height: 40px;
  display: block;
  margin-bottom: 15px;
  transition: 0.4s;
  position: relative;
  width: fit-content;
}

footer ul li a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--primary3);
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

footer ul li a:hover::before {
  width: 100%;
}

footer ul li a:hover {
  color: var(--primary1);
}

.footer-news {
  font-size: 18px;
  font-family: "font_light";
  margin-bottom: 30px;
}

.footer-frm form {
  width: 100%;
  display: flex;
  align-items: center;
  height: 60px;
}

.footer-frm form input {
  flex: 1;
  width: 100px;
  height: 100%;
  border: 1px solid #c0c0c1;
  background-color: #ebf1fa;
  padding: 10px;
  color: var(--primary1);
  font-size: 15px;
  font-family: "Somar";
  outline: none;
  border-left: none;
}

.footer-frm form input::placeholder {
  color: var(--primary1);
  font-size: 15px;
  font-family: "Somar";
}

.footer-frm form button {
  width: 110px;
  height: 100%;
  border: 1px solid var(--primary2);
  background-color: var(--primary2);
  color: #fff;
  font-size: 16px;
  transition: 0.4s;
}

.copy-write {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-family: "Somar";
  color: #000;
  margin-top: 50px;
}

.footer-contact {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary2);
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 25px;
}

.footer-contact a:nth-child(2) {
  padding-top: 5px;
}

.footer-contact a:first-child {
  background-color: #73dc71;
}

.footer-contact a:hover {
  background-color: var(--primary1);
}

.footer-contact a:hover i {
  animation: heartBeat 2s infinite;
}
