footer{
  background-color: var(--brandingColor2);
  background: linear-gradient(var(--brandingColor2), #1b1f2a);
}

footer .footer_content{
  display: flex;
  justify-content: space-between;
  gap: 150px;
  flex-wrap: wrap;
  padding: 40px 0 50px;
}
footer .footer_content .left,
footer .footer_content .right{
  display: flex;
  justify-content: space-between;
  width: calc(50% - 75px);
}
@media only screen and (max-width: 1050px){
  footer .footer_content{
    flex-direction: column;
  }
  footer .footer_content .left,
  footer .footer_content .right{
    width: 100%;
  }
}
@media only screen and (max-width: 500px){
  footer .footer_content{
    padding: 30px 0 40px;
  }
}
@media only screen and (max-width: 440px){
  footer .footer_content{
    gap: 50px;
  }
  footer .footer_content .left,
  footer .footer_content .right{
    flex-direction: column;
    gap: 50px;
  }
}

footer .footer_content .section{
  max-width: 250px;
}
@media only screen and (max-width: 440px){
  footer .footer_content .section{
    max-width: 100%;
    width: 100%;
  }
}
footer .footer_content .section .section_header{
  margin-bottom: 15px;
}
footer .footer_content .section .section_header h2{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--fontFamily1);
  color: var(--whiteTextColor3);
  display: inline-block;
  margin-top: -7px;
}
footer .footer_content .section .section_content ul{
  list-style: none;
}
footer .footer_content .section .section_content p{
  line-height: 29px;
  color: var(--whiteTextColor3);
}
footer .footer_content .section .section_content a{
  font-size: 17px;
  font-family: var(--fontFamily1);
  font-weight: 550;
  line-height: 29px;
  color: var(--whiteTextColor3);
  text-decoration: none;
}
footer .footer_content .section .section_content a:hover{
  color: var(--whiteTextColor1);
  text-decoration: underline;
}

footer .footer_content .section.about .section_content img{
  height: 40px;
  margin-bottom: 10px;
  filter: brightness(100);
}
footer .footer_content .section.about .section_content a{
  margin-top: 10px;
  color: var(--whiteTextColor2);
  display: inline-block;
  font-weight: 600;
}

footer .footer_content .section.contact .section_content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer_content .section.contact .section_content .item{
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .footer_content .section.contact .section_content .item i{
  font-size: 18px;
  color: var(--whiteTextColor3);
}

footer .footer_content .section.social_links .section_content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 225.86px;
}
@media only screen and (max-width: 1050px){
  footer .footer_content .section.social_links .section_content{
    height: unset;
  }
}
@media only screen and (max-width: 440px){
  footer .footer_content .section.social_links .section_content{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
  }
}

footer .footer_bottom{
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
footer .footer_bottom .copyright{
  font-size: 15px;
  font-family: var(--fontFamily1);
  font-weight: 500;
  color: var(--whiteTextColor1);
  text-align: center;
}
footer .footer_bottom .copyright span{
  display: inline-block;
}