/* ------------------ footer ------------------ */

footer {
  position: relative;
  background: var(--bkg8);
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}

.footer-abs {
  right: 5%;
  top: -3.25rem;
  z-index: 8;
}

.footer-abs > div {
  width: 3rem;
  height: 3rem;
  margin-bottom: .5rem;
  background-color: var(--bkg4);
  border-radius: 50%;
}

footer .footer-center {
  background-color: var(--bkg7);
  color: var(--color6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-width: 16rem;
  width: 22%;
  flex-grow: 11;
  margin: 0 4% -2rem 2%;
  padding: 0 1rem;
}

footer .footer-center a {
  margin: 2rem auto 0;
}

footer a.navbar-brand {
  text-decoration: none;
  display: inline-block;
  margin: .5rem 0;
  text-align: left;
  padding: 0;
  height: 7rem;
}

footer .footer-title {
  text-align: right;
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 0;
  color: var(--color4);
  padding: 0 .5rem;
  border-bottom: 1px solid var(--border8);
  /*
  text-decoration: underline;
  text-underline-position: from-font;
  text-underline-offset: 8px;
  */
}

footer .footer-center .p-desc {
  line-height: 1.25rem;
  padding: 3rem 1rem 0;
  text-align: justify;
}



/* Footer 1 */
#footer-1 {
  color: var(--white);
  background: transparent;
  padding-left: .5rem;
  padding-right: .5rem;
}

#footer-1 > div {
  padding-bottom: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

#footer-1 .footer-left {
  margin-top: 2rem;
  min-width: 18rem;
  max-width: 33%;
  flex-grow: 11;
}

.footer-descript {
  font-size: 1rem;
  margin-top: 3rem;
}
/*
#footer-1 .footer-center {
  background-color: var(--bkg7);
  color: var(--color6);
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  min-width: 16rem;
  width: 22%;
  flex-grow: 11;
  margin: 0 4% -2rem 2%;
  padding: 0 1rem;
}
*/
#footer-1 .footer-right {
  margin-top: 2rem;
  width: 45%;
  color: var(--text3);
  letter-spacing: 0px;
}



/* Footer 2 */
#footer-2 {
  position: relative;
  color: var(--white);
  background: var(--bkg3);
}

#footer-2 > div {
  display: flex;
  justify-content: space-between;
  color: var(--color6);
  padding: .5rem .75rem;
  align-items: center;
  font-size: .75rem;
  letter-spacing: 0.2px;
}

#footer-2 .head-branch {
  padding-left: 0;
  color: var(--color6);
  font-size: .75rem;
  font-weight: 500;
}

/* end Footer 2 */



/* Footer 3 */
#footer-3 {
  color: var(--text3);
  background: white;
}

#footer-3 .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: clamp(1rem, 2.5vw, 3rem) 1rem;
}

/* end Footer 3 */



@media (max-width: 1200px) {

  #footer-2 .container {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
  }

  #footer-2 .container > *{
    margin-top: .5rem;
  }
}


@media (max-width: 992px) {
 
  #footer-1 .footer-center {
    width: auto;
    order: 3;
    margin: 3% 0 0;
  }

  #footer-1 .footer-right {
    width: 50%;
  }
}


@media (max-width: 768px) {
  #footer-1 .footer-left {
    width: 100%;
    margin: 0 auto;
    order: 1;
  }
   
  #footer-1 .footer-right {
    width: 80%;
    margin: 0 auto;
    order: 2;
  }

  #footer-3 .container { 
    flex-direction: column;
  }

  #footer-3 #owner {
    display: block;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {

  #footer-1 .footer-center {
    display: flex;
    flex-direction: column;
  }

}



/* Animation link */
/* footer nav.menu a.convolut {
  position: relative;
}

footer nav.menu a.convolut::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--text6);
  bottom: -.125rem;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

footer nav.menu a.convolut:hover::before {
  transform-origin: left;
  transform: scaleX(1);
} */

/* end Animation link */