.footer {
  background-color: var(--color-main);
  padding: 80px 0 0px;
}

.newsletter form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-footer p {
  margin: 20px 0;
  width: 90%;
  text-align: justify;
}
.sub-footer > p {
    color: #fff !important;
    font-size: 15px;
}
.newsletter h2 {
    font-size: 15px;

}
.newsletter form button {
  min-width: 120px;
  height: 55px;
  border: none;
}
.input-newsletter {
  width: 65%;
}
.input-newsletter input {
  background-color: var(--color-white);
  border-radius: 10px;
}

.newsletter h2 {
  color: var(--color-white);
  margin: 20px 0;
  width: 100%;
  font-family: "font_bold";
  line-height: 35px;
}

.element-footer h2,
.madia-footer h2 {
  font-family: "font_bold";
  padding-bottom: 25px;
  color: var(--color-white) !important;
  font-size: 16px;
  position: relative;
}

.element-footer h2::after,
.madia-footer h2::after {
  content: "";
  width: 32%;
  height: 10px;
  background-image: url(../images/el1.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  background-position: right;
  right: 0;
}

.element-footer ul {
  margin-top: 40px;
}
.element-footer ul li {
  display: block;
  margin-bottom: 20px;
}

.element-footer ul li a {
  transition: all .3s linear;
  color: var(--color-white);
}
.element-footer ul li:hover a {
  color: var(--color-button);
}
.madia-footer ul {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.madia-footer ul li {
  display: block;
}

.madia-footer ul li a {
  display: flex;
  align-items: center;
  background-color: var(--color-a);
  width: 40px;
  height: 40px;
  font-size: 22px;
  justify-content: center;
  border-radius: 5px;
  transition: all .3s linear;
  color: var(--color-white);
}

.madia-footer ul li:hover a {
  background-color: var(--color-button);
}

.end-page {
  background-color: var(--color-white);
  display: flex;
  height: 60px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}
.end-page p{
  font-size: 18px;
  font-family: "font_bold";
  color: var(--color-main);
}

