.footer {
  width: 100%;
  background-color: #343434;
}
.container {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  padding-top: 35px;
  padding-bottom: 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}
.footer_logo {
  width: 64px;
  height: 40px;
  flex: auto;
}
.footer_logo img {
  width: 64px;
  height: 40px;
}
.footer_item,
.footer_item_post {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 35px;
}

.footer_item_text p {
  font-size: 18px;
  line-height: auto;
  color: #fff;
  margin-right: 17px;
}
.footer_item_link {
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 10px 17px;
  color: #fff;
}
.footer_item_link p {
  line-height: normal;
}
.socials_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.social {
  margin-right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.social:last-child {
  margin-right: 0px;
  border: none;
}

@media (max-width: 980px) {
  .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_logo {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .socials {
    margin-top: 30px;
    width: 100%;
  }
  .socials_container {
    max-width: 450px;
    width: 100%;
    margin: auto;
  }
  .footer_item_post {
    margin-right: 0px;
  }
}
@media (max-width: 620px) {
  .container{
    padding-left: 20px;
    padding-right: 20px;
    gap: 30px;
  }
  .footer_item_post {
    margin-top: 0px;
  }
  .footer_item .footer_item_text p {
    margin-right: 40px;
  }
  .footer_logo {
    margin-bottom: 0px;
  }
  .socials {
    margin-top: 0px;
  }
}
