﻿/* Footer Container */

.footer {
  font-family: Montserrat-Regular, Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: var(--color6);
  background-color: var(--color5);
}

.footer__main {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 927px) {
  .footer__main {
    justify-content: center;
  }
}

/* Left Container */

.footer__left-content {
  max-width: 500px;
}

.footer__left-top {
  margin-bottom: 1rem;
  display: flex;
  align-items: stretch;
  gap: 3rem;
  font-family: MontserratAlternates-Bold, Arial, Helvetica, sans-serif;
  font-size: 30px;
  overflow: hidden;
  max-width: 900px;
}

.footer__title {
  display: flex;
  flex-direction: column;
}

@media (max-width: 400px) {
  .footer__title-line {
    text-align: center;
  }
}

.footer__ccbc-logo-container {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

@media (max-width: 400px) {
  .footer__ccbc-logo-container {
    display: none;
  }
}

@media (max-width: 927px) {
  .footer__left-top {
    justify-content: center;
  }
  .footer__tagline {
    text-align: center;
  }
}

.footer__ccbc-logo {
  height: 100%;
  width: 152px;
  object-fit: contain;
}

/* Right Container */

.footer__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 3rem;
  flex-wrap: wrap;
}

.footer__ul {
  padding-inline-start: 0;
  list-style-type: none;
}

.footer__li {
  margin-bottom: 1rem;
}

@media (max-width: 392px) {
  .footer__nav {
    justify-content: center;
  }
  .footer__li {
    text-align: center;
  }
}

.footer__a {
  text-decoration: none;
  color: white;
}

.footer__a:hover {
  text-decoration: underline;
}

/* Bottom Bar */

.footer__bottom-bar {
  width: 100%;
  height: 2rem;
  background-color: var(--color1);
}
