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

footer {
  border-top: 8px solid var(--border5);
  background-position: top center;
  background-repeat: repeat-x;
  padding-top: 10px;
  background: var(--footer);
  color: var(--text5);
}


.owner-line a {
  color: var(--link4);
  text-decoration: none;
}

.owner-line a:hover {
  color: var(--link2);
}

/* Footer 1 */

#footer-1 {
  background: var(--footer1);
  margin: 0 auto;
  padding: 2.5rem 0 2rem;
}

#footer-1>.d-flex {
  padding: 0 5%;
}

#footer-1 .footer-left {
  margin-top: 2rem;
}

#footer-1 .navbar-brand svg {
  max-width: 100%;
  color: var(--color3);
}

#footer-1 .footer-logo {}


#footer-1 .footer-right {
  text-align: left;
  flex-direction: column;
  color: white;
  font-weight: 400;
}

#footer-1 .footer-right a {
  color: white;
}

#footer-1 .footer-right a:hover {
  color: var(--link2);
}

#footer-1 .footer-right .address {
  line-height: 2;
}

#footer-1 .footer-right .address .name {
  font-weight: 600;
  font-size: 1.25rem;
}

#footer-1 .footer-right .contact {
  margin: 2rem 1rem 0;
}

#footer-1 .footer-right .contact p {
  margin-bottom: .25rem;
}

#footer-1 .footer-right .phone,
#footer-1 .footer-right .mail {
  display: flex;
  flex-wrap: wrap;
}

#footer-1 .footer-right .phone {
  font-size: 2rem;
}

#footer-1 .footer-right .mail {
  font-size: 1.5rem;
}


#footer-1 .footer-right .phone ul,
#footer-1 .footer-right .mail ul {
  list-style: none;
  padding: 0;
  margin-bottom: .25rem;
}

#footer-1 .footer-right .phone li:not(:first-child):before,
#footer-1 .footer-right .mail li:not(:first-child):before {
  content: " ";
  white-space: pre;
}

#footer-1 .footer-right .phone li:not(:last-child):after,
#footer-1 .footer-right .mail li:not(:last-child):after {
  content: ",";
  white-space: pre;
}

#footer-1 .footer-right .phone li:first-of-type:after,
#footer-1 .footer-right .mail li:first-of-type:after {
  content: "  ";
  white-space: pre;
}

#footer-1 .d-flex {
  justify-content: space-between;
}



@media (max-width: 992px) {
  #footer-1 {
    padding: 1.25rem 0 1rem;
  }

  #footer-1 .footer-left {
    margin: 0 auto;
  }

  #footer-1 .footer-right {
    margin-top: 2.25rem;
    width: 100%;
    text-align: center;
  }

  #footer-1 .footer-right .contact {
    display: inline-block;
    width: 21rem;
    margin: 1rem 0;
  }


}

@media (max-width: 768px) {

  #footer-1 {
    flex-direction: column;
  }

  #footer-1 .footer-logo {
    margin-bottom: 2rem;
  }

  #footer-1 .footer-right .address,
  #footer-1 .footer-right .contact {
    text-align: left;
    margin-top: 0;
  }

  #footer-1 .footer-right .phone,
  #footer-1 .footer-right .phone ul,
  #footer-1 .footer-right .mail,
  #footer-1 .footer-right .mail {
    justify-content: flex-start;
  }

}

@media (max-width: 576px) {

  #footer-1 {
    padding: 4rem 2rem 1rem;
  }

  #footer-1 .footer-logo {
    margin-bottom: 1rem;
  }

}


/* end Footer 1 */







/* Footer 2 */



#footer-2 nav.menu-mid ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer-2 nav.menu-mid ul li {
  margin: .5rem;
  padding: .5rem;
}

#footer-2 nav.menu-mid ul a {
  text-transform: uppercase;
  color: var(--text9);
  /* padding: .5rem; */
  display: inline-block;
}


@media (max-width: 992px) {
  #footer-2 {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 576px) {
  #footer-2 hr {
    padding-bottom: 1rem;
  }
}



/* end Footer 2 */




/* footer-3 */

#footer-3 {
  background: transparent;
  padding: 1.5rem 0 1.5rem;
  opacity: 0.44;
}

#footer-3 hr {
  margin: 0;
  padding: 0 0 1.5rem;
}

#footer-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem 0rem;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 500;
  border-top: 1px solid var(--text5);
}

#copywrite {
  text-align: left;
}

#develop {
  text-align: right;
}

@media (max-width: 992px) {
  #footer-3 {
    grid-template-columns: 1fr;
  }

  #copywrite,
  #develop {
    text-align: center;
  }
}