/* Footer Navigation Styles */

.footer-nav + .footer-nav {
  margin-top: 11px;
}

/* Footer nav title */
.footer-nav__title {
  position: relative;
  font-weight: 700;
  margin-bottom: 13px;
}

.footer-nav__title h3{
	font-size: 16px;
	font-weight: 700;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-nav__title {
    margin-bottom: 8px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .footer-nav__title {
    margin: 0;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    padding: 0px 0;
  }
	
	
.footer-nav__title h3{
	font-size: 20px;
}
  
  .footer-nav__title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 1px solid #d1d1d1;
    opacity: 0;
  }
}

/* Footer nav link */
.footer-nav__link {
  font-size: 14px;
  line-height: 1.43;
  text-decoration: none;
  color: inherit;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-nav__link {
    font-size: 12px;
    line-height: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .footer-nav__link {
    font-size: 16px;
  }
}

/* Down arrow - Mobile */
.footer-nav__arrow {
  display: none;
}

@media (max-width: 767px) {
  .footer-nav__arrow {
    display: block;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
  }
}

/* Primary nav */
.footer-nav--primary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav--primary li {
  margin-bottom: 13px;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-nav--primary li {
    margin-bottom: 8px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .footer-nav--primary {
    border-bottom: 1px solid #d1d1d1;
    mmargin-bottom: 13px;
  }
  
  .footer-nav--primary ul {
    margin: 17px 0;
  }
  
  .footer-nav--primary nav {
    display: none;
  }
}

/* Active state - Mobile menu open */
@media (max-width: 767px) {
  .footer-nav--primary.is-active .footer-nav__arrow .chevron {
    transform: rotate(180deg);
  }
  
  .footer-nav--primary.is-active .footer-nav__title::after {
    opacity: 1;
  }
  
  .footer-nav--primary.is-active nav {
    display: block;
  }
}

/* Secondary nav */
.footer-nav--secondary ul {
  margin: 0;
  padding: 0;
  font-size: 0;
  list-style: none;
}

.footer-nav--secondary li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0;
}

.footer-nav--secondary li:not(:last-child)::after {
  content: "/";
  display: inline-block;
  font-size: 12px;
  margin: 0 16px;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-nav--secondary li:not(:last-child)::after {
    font-size: 10px;
    margin: 0 12px;
  }
}

.footer-nav--secondary .footer-nav__link {
  font-size: 12px;
  text-decoration: underline;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-nav--secondary .footer-nav__link {
    font-size: 10px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .footer-nav--secondary {
    padding: 0 10px;
    margin-top: 23px;
  }
}