footer {
    background-color: #032D60;
}
/*another revamp 20220119 going from 3 sections to 2 and just doing left and right*/
  footer > .footer__inner{
    justify-content: space-between;
    display:flex;
    margin: auto;
  }
  footer > .footer__inner .footer__brand {
    flex: 0 1 50%;
    margin-left: 60px;
  }
  footer > .footer__inner .footer__brand__links li {
    order: 3;
    font-size: 13px;
    line-height: 13px;
    margin-top: 5px;
    margin-bottom: 10px;
    display: inline-block;
  }
  footer > .footer__inner .footer__brand__links li span{
      color:white;
  }
  footer > .footer__inner .footer__brand:before {
    width: 200px;
    height: 26.5px;
    margin-bottom: 25px;
    display: block;
    content: '';
    background: url(https://static.rainfocus.com/salesforce/edusummit22/static/staticfile/staticfile/Salesforce-dot-org-Logo-RGB-KO-Hrzl_1641599404651001jD27.png) center center no-repeat;
    background-size: cover;
    margin-top: 30px;
  }
  @media (min-width: 769px){
    footer > .footer__inner .footer__brand__links {
      justify-content: flex-start;
      display: block;
      text-align: left;
      padding-inline-start: 0;
    }
  }
  footer .footer__brand__copyright{
    color:white;
  }
  footer .footer__brand__copyright, 
  footer .footer__brand__links {
    font-family: 'SalesforceSans',sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  footer .footer__brand__links li,
  footer .footer__brand__links li a{
    padding-right:10px;
  }
  footer .footer__brand__links li a{
    color:white;
    text-decoration:underline;
  }
  
  footer ul{
    list-style: none;
  }
  footer .screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important;
  }
  footer .footer__social__right {
    margin-bottom: 12px;
  }
  footer .footer__social__right .social-icons-list li {
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
  footer .social-icons-list li svg,
  footer .social-icons-list li svg path,
  footer .social-icons-list li svg circle{
      fill:white;
  }
  footer .social-icons-list li:first-child {
    margin-left: 0;
  }
  footer .social-icons-list li:last-child {
    margin-right: 0;
}
  footer .social-icons-list li {
    transition: opacity .2s linear;
  }
  footer .social-icons-list li:hover {
    opacity: .7;
  }
  footer .social-icons-list {
    display: inline-flex;
    align-items: center;
    margin: auto;
    padding-left: 0;
  }
  
  footer > .footer__inner .footer__signup {
    padding-top: 30px;
    flex: 0 0 50%;
    text-align: right;
    margin-right: 60px;
  }
  
  footer > .footer__inner .footer__signup a.email-alias{
    font-size: 13px;
  }
  footer > .footer__inner .footer__signup a{
    min-width: 248px;
  }
  footer > .footer__inner .footer__signup a.email-alias{
    color: white;
    text-decoration: underline;
  }
  
  footer > .footer__inner .footer__signup .ButtonLink--blue,
  footer > .footer__inner .footer__signup .buttonlink--blue {
    background: #032d60;
    height: 45px;
    line-height: 45px;
    border-radius: 4px;
    border: 0;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Avante Garde';
    font-weight: 500;
    font-style: normal;
    min-width: max-content;
    text-align: center;
    outline: 0;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s linear;
    padding: 0 25px;
  }
  footer > .footer__inner .footer__signup .ButtonLink--blue:hover,
  footer > .footer__inner .footer__signup .buttonlink--blue:hover {
    background: #0b5cab;
  }

  @media (max-width: 930px){
    /*added 20220119*/
    footer > .footer__inner .footer__brand {
      margin-left: 10px;
    }
    footer > .footer__inner .footer__signup {
      margin-right: 10px;
    }
  }
  @media (max-width: 810px){
    /*added 20220326 to make this look better on mobile*/
    footer .footer__brand__copyright, footer .footer__brand__links {
      text-align: center;
    }
    footer .footer__social .footer__social__h4,
    footer .footer__signup .footer__signup__h4{
      font-size:21px;
    }
    footer > .footer__inner{
      flex-direction: column;
      align-items: center;
    }
    footer > .footer__inner .footer__brand {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      order: 1;
      margin-bottom: 40px;
      width: 100%;
      margin-left:unset;
    }
    footer > .footer__inner .footer__social__right {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 0;
      order: 3;
      padding-bottom: 20px;
    }
    footer > .footer__inner .footer__signup,
    footer > .footer__inner .footer__signup .email-alias {
      padding: 0 25px;
      display: flex;
      justify-content: center;
      flex-direction:column;
      flex-wrap: wrap;
      margin-top: 0;
      order: 2;
      flex: 0 0 auto;
      margin-right:unset;
    }
    footer > .footer__inner .footer__signup .email-alias {
        margin-bottom:40px;
    }
  }