html {
  height: 100%;
}

body {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

footer {
  background-color: #000000;
  margin-top: 36px;
  display: grid;
}

.footerMenu {
  margin: 0 auto;
  text-align: center;
}

.footerMenu ul li {
  display: inline-block;
}

.footerMenu ul {
  padding-left: 0;
  margin-bottom: 32px;
}

.footerMenu ul li a {
  padding-right: 15px;
  padding-left: 15px;
  text-decoration: none;
  color:grey
}

.footerMenu ul li:not(:last-child) a {
  border-right: 1px solid #18181a;
}

.footerMenu ul li a:hover {
  color: white;
}

.footerLogo {
  padding: 32px 16px;
}

.footerLogo img {
  max-width: 190px;
  width: 100%;
}

.footerBackground {
  width: 100%;
  height: 220px;
  justify-self: center;
}

@media (min-width: 576px) {
  .footerBackground {
      max-width: 540px;
  }
}

@media (min-width: 768px) {
  .footerBackground {
      max-width: 720px;
  }
}

@media (min-width: 992px) {
  .footerBackground {
      max-width: 960px;
  }
}

@media (min-width: 1400px) {
  .footerBackground {
      max-width: 1320px;
  }
}

@media (min-width: 1200px) {
  .footerBackground {
      max-width: 1106px;
  }
}

.footerTitle {
  display: none;
  text-decoration: none;
  color: #18181A;
  text-transform: uppercase;
  padding: 16px 0;
}

.footerTitle:hover {
  color: #18181A;
}

.footerTitle.collapsed img {
  transform: rotate(-90deg);
}

.footerTitle img {
  transform: rotate(90deg);
}

.copy_right {
  background-color: #18181A;
  padding: 16px 0;
}

.copy_right p {
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto;
}

.copy_right .cc-subheader-primary{
  font-size: 12px;
}

@media (max-width: 768px) {
  .footerTitle {
    display: block;
  }

  .footerMenu ul li {
    margin-bottom: 10px;
  }

  .footerMenu ul li a {
    line-height: 1;
    font-size: 12px;
  }
}