.main-footer {
  background-color: var(--white);
  color: var(--dark-gray);
/*   border-top: 6px solid var(--navy); */
  overflow-x: hidden;
}

.main-footer a {
  margin-right: 12px;
  transition: var(--transition-sm);
}

.main-footer a:hover,
.main-footer a:focus-within {
  text-decoration-thickness: 2px;
}

/* footer - start */

/* left content */
.footer .left-content {
  display: flex;
  justify-content: end;
  padding-top: 25px;
}

.footer .footer-social-media-links a {
  color: var(--pioneer-orange);
  font-size: 30px;
  text-decoration: none;
}

.footer .footer-contact-links a {
  color: var(--mid-gray);
}

.footer .footer-contact-links a:hover,
.footer .footer-contact-links a:focus-within {
  color: var(--navy);
}

.footer .footer-contact-links a .icon {
  margin-right: 8px;
}

.footer .carrollu-link {
    font-size: 1rem !important;
    font-weight: 700;
}

.footer .carrollu-link:hover,
.footer .carrollu-link:focus-within {
  text-decoration: underline;
}

.footer .left-content .footer-contact {
  display: flex;
  flex-direction: column;
  row-gap: 22px;
}

.footer .left-content .footer-logo {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  padding-top: 20px;
}

/* right content */
.footer .right-content {
  position: relative;
  z-index: 1;
  background-color: var(--navy);
  color: var(--white);
}

.footer .right-content .bar {
  position: relative;
  z-index: 2;
  background-color: var(--pioneer-orange);
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  padding: 30px 32px;
}

.footer .right-content .links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 12px;
  padding: 24px 32px;
}

.footer .right-content .links a {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

/* footer - end */

/* copyright - start */
.footer-copyright {
  margin-top: 25px;
}

.footer-copyright-links {
  list-style: none;
  padding-left: 0;
}

.footer-copyright-links li {
  display: inline-block;
}

.footer-copyright-links li::after {
  content: "|";
  padding: 0 2px;
}

.footer-copyright-links li:last-of-type:after {
  content: "";
}

.footer .footer-copyright-links a {
  color: var(--navy);
  margin: 0 0;
}

.footer .footer-copyright .direct-link {
  color: var(--dark-gray);
  text-decoration: none;
  margin-right: 4px;
}

/* copyright - end */

@media (min-width: 992px) {
  .footer .right-content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;

    left: 99%;
    width: calc(100vw - 100%);

    background: var(--navy);
    z-index: -1;
  }

  .footer .right-content .bar::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;

    left: 99%;
    width: calc(100vw - 100%);

    background: var(--pioneer-orange);
    z-index: -1;
  }
}

@media (max-width: 991.5px) {
  .footer {
    text-align: center;
  }

  .footer > .container {
    width: 100%;
    max-width: 100%;
    padding: 0 0;
  }

  .footer .left-content-row {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    align-items: center;
  }

  .footer .left-content {
    display: flex;
    justify-content: center;
    padding: 24px 32px;
  }

  .footer .left-content .footer-logo {
    padding-top: 0;
  }

  .footer .right-content .bar {
    text-align: center;
  }

  .footer .right-content .links {
    justify-content: center;
  }
}
