.main-footer ul {
  padding: 0;
}

.main-footer ul li::before {
  display: none;
}

.main-footer .social-media {
  display: flex;
  font-size: 22px;
  gap: 16px;
  margin-bottom: 20px;
}

.main-footer .social-media a {
  color: var(--primary-brown);
  transition: var(--transition-sm);
}

.main-footer .social-media a:hover,
.main-footer .social-media a:focus {
  color: var(--primary-gold);
}

/* pre footer - start */
.pre-footer ul {
  padding: 0;
}

.pre-footer ul li::before {
  display: none;
}

.pre-footer a {
  color: var(--highlight-blue);
  text-decoration: none;
}

.pre-footer a:hover,
.pre-footer a:focus {
  text-decoration: underline;
}

.pre-footer-content {
  row-gap: 65px;
}

.pre-footer-sub-content {
  display: flex;
  flex-direction: column;
  row-gap: 45px;
  justify-content: end;
}

.pre-footer-logos {
  display: flex;
  gap: 10%;
}

.pre-footer .social-media {
  display: flex;
  font-size: 22px;
  gap: 16px;
  margin-bottom: 20px;
}

.pre-footer .social-media a {
  color: var(--primary-brown);
  transition: var(--transition-sm);
}

.pre-footer .social-media a:hover,
.pre-footer .social-media a:focus {
  color: var(--primary-gold);
}

/* pre footer - end */


/* footer - start */
.footer {
  padding: 45px 0;
}

.footer .social-media a {
  color: var(--primary-brown);
  text-decoration: none;
  transition: var(--transition-sm);
}

.footer .social-media a:hover,
.footer .social-media a:focus {
  color: var(--primary-gold);
}

.footer-sub-content {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  justify-content: center;
}

.footer .footer-logo img {
  width: 100%;
  max-width: 450px;
}

.footer .footer-links a {
  display: inline-flex;
  align-items: center;
}

.footer .footer-links .divider-sm {
  display: inline-block;
  color: var(--primary-brown);
  font-weight: bold;
  padding: 0 10px;
}

/* footer - end */


/* sub footer - start */
.sub-footer {
  text-align: center;
  padding: 35px 0;
}

.sub-footer .sub-footer-links a {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  transition: var(--transition-xs);
}

.sub-footer .sub-footer-links a::after {
  content: '';
  display: block;
  width: 2px;
  height: 18px;
  background-color: var(--primary-gold);
  margin: 0 12px;
}

.sub-footer .sub-footer-links a:last-of-type:after {
  display: none;
}

/* sub footer - end */



@media (max-width: 991.5px) {

  /* footer - start */
  .footer {
    text-align: center;
    padding: 0 0 25px 0;
  }

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

  .footer .footer-sub-content:first-of-type {
    padding: 0;
  }

  .footer .footer-logo {
    background-color: var(--primary-gold);
    padding: 15px 30px;
  }

  .footer .footer-logo img {
    margin: 0 auto;
  }

  /* footer - end */



  /* sub footer - start */
  .sub-footer {
    text-align: start;
    padding: 4px 0;
  }

  .sub-footer .sub-footer-links a {
    display: block;
    border-bottom: 1px solid var(--secondary-line-grey);
    padding: 8px 0;
  }

  .sub-footer .sub-footer-links a:last-of-type {
    border-bottom: none;
  }

  .sub-footer .sub-footer-links a::after {
    display: none;
  }

  /* sub footer - end */

}