/*----------------------------------------------------------------------------*/
/* Site Footer Website                                                        */
/*----------------------------------------------------------------------------*/

.site-footer-website {
 overflow: hidden;
 padding: 0;
}

.site-footer-website .container {
 display: grid;
 grid-gap: 2rem;
}

@media all and (min-width: 0px){
 .site-footer-website .container {
  grid-template-columns: repeat(2, auto);
  grid-template-areas:
   '. s1 s2 .'
   '. s3 s4 .'
   '. s5 s6 .'
   '. hr hr .'
   '. sc sc .'
   '. cp cp .';
 }
}

@media all and (min-width: 820px){
 .site-footer-website .container {
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
   's1 s2 s3'
   's4 s5 s6'
   'hr hr hr'
   'cp cp sc';
 }
}

@media all and (min-width: 1080px){
 .site-footer-website .container {
  grid-template-columns: repeat(5, 1fr);
  grid-template-areas:
   's1 s2 s3 s4 s5 s6'
   'hr hr hr hr hr hr'
   'cp cp cp sc sc sc';
 }
}

.site-footer-website .container .sa-section-1 { grid-area: s1; }
.site-footer-website .container .sa-section-2 { grid-area: s2; }
.site-footer-website .container .sa-section-3 { grid-area: s3; }
.site-footer-website .container .sa-section-4 { grid-area: s4; }
.site-footer-website .container .sa-section-5 { grid-area: s5; }
.site-footer-website .container .sa-section-6 { grid-area: s6; }
.site-footer-website .container .sa-hr        { grid-area: hr; }
.site-footer-website .container .sa-copyright { grid-area: cp; }
.site-footer-website .container .sa-social    { grid-area: sc; }

.site-footer-website .sa-heading {
 color: #FFFFFF;
 margin-bottom: 1.50rem;
 font-size: .875rem;
 display: inline-block;
}

.site-footer-website .sa-list {
 list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-website .sa-link {
    color: #757575;
    font-weight: 400;
    font-variation-settings: "wght" 400;
    margin-bottom: 0.75rem;
    font-size: .875rem;
    display: inline-block;
    transition: color;
    transition-duration: .13s;
}

.site-footer-website .sa-link:hover {
 color: #FFFFFF;
}

.site-footer-website .sa-link-icon {
   display: flex;
   align-items: center;
}

.site-footer-website .sa-link-icon .sa-icon {
  width: 1.6rem;
  opacity: 0.5;
  margin-left: 0.5rem;
  transition-duration: .13s;
  transition: opacity;
}

.site-footer-website .sa-link-icon:hover .sa-icon {
 opacity: 1;
}

.site-footer-website .sa-hr {
  width: 100%;
 height: 1px;
 background: rgba(255,255,255, 0.15);
}

.site-footer-website .sa-copyright {
  display: flex;
  align-items: center;
  column-gap: 1rem; 
}

.site-footer-website .sa-aicpa-soc-logo {
   width: 48px;
   height: 48px;
}

.site-footer-website .sa-lightning-bolt-icon {
  width:  9px;
 height: 15px;
 fill: #B0B0B0;
}

.site-footer-website .sa-planet-earth-icon {
  width: 18px;
 height: 18px;

 fill: #B0B0B0;
}

.site-footer-website  .sa-social {
 display: flex;
}


@media all and (min-width: 0px){
 .site-footer-website  .sa-social {
  justify-content: space-between;
 }
}

@media all and (min-width: 820px){
 .site-footer-website  .sa-social {
  justify-content: flex-end;  
 }
}

.site-footer-website .sa-social-link {
 position: relative;
    z-index: 0;

  width: 2.5rem;
 height: 2.5rem;
 border-radius: 50%;

 display: flex;
 justify-content: center;
     align-items: center;
}

@media all and (min-width: 0px){
 .sa-social-link {
  margin-left: 0;
 }
}

@media all and (min-width: 820px){
 .sa-social-link {
  margin-left: 1rem;
 }
}

.site-footer-website .sa-social-link::before {
 content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: transform;
}

.site-footer-website .sa-social-link:hover::before {
 transform: scale(1.05);
 transition-duration: .15s;
}

.site-footer-website .sa-social-link .sa-icon {
  width: 2rem;
  height: 2rem;
  fill: #757575;
    transition: fill;
}

.site-footer-website .sa-social-link:hover .sa-icon {
 fill: #FFFFFF;
 transition-duration: .15s;
}


