.footer_container{
  padding: 40px 20px;
  width:100%;
  
}
.grid-container{
  display: flex;
  justify-content:space-around;
  align-items:center;
  max-width:1040px;
  margin:auto;
}

.footer_content{
  margin-top: 12px;
}

.footer_content p{
  font-size: 12px;
  text-align:right;
}

.social-follow{
  align-items: center;
  display: inherit;
}

.social-follow ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
}

.social-follow ul > li{
  list-style: none;
  margin: 0 10px;
}
.social-follow ul > li a,
.social-follow ul > li a > span{
  display: block;
}
.social-follow ul > li a > span{
  width: 40px !important;
  height: 40px !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 767px){
  .grid-container{
    display: block;
    grid-template-columns: auto;
  }

  .footer_container,
  .footer_content p{
    text-align: center;
  }

  .social-follow {
    justify-content: center;
    margin-top: 20px;
  }

  .social-follow ul{
    margin-top: 0 !important;
  }

  
}

@media (max-width: 320px) {
  .logo_image img{
    width: 100%;
    height: auto;
  }
