.footer {
  padding: 120px 0;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 75px;
  justify-content: center;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-content {
  margin-bottom: 44px;
}

.footer-content h2, .footer-content .accordion-title{
  font-size: 18px;
  color: #003C7E;
  font-weight: bold;
  margin-bottom: 8px;
}

.footer-content ul li a {
  display: block;
  font-size: 18px;
  color: #003C7E;
  padding: 4px 0;
}

.footer-horizontal-list {
  display: flex;
  flex-wrap: wrap;
}

.footer-horizontal-list ul {
  margin-right: 57px;
}

.copyright {
  font-size: 20px;
  color: #003C7E;
}

.footer-center {
  margin: 0 48px;
}

@media (max-width: 950px) {
  .footer {
    padding: 12px 24px;
  }

  .footer-top {
    display: block;
  }

  .footer-left, .footer-center, .footer-right {
    margin: 0;
    width: auto;
  }

  .footer-inner {
    display: block;
    min-width: auto;
    padding: 0 3%;
  }

  .accordion-container {
    position: relative;
    border-top: none;
    outline: 0;
    cursor: pointer
  }

  .accordion-container .accordion-title {
    display: block;
    position: relative;
    margin: 0;
    font-size: 13px;
    font-weight: normal;
    color: #003C7E;
    cursor: pointer;
    padding: 20px 0;
  }

  .accordion-title{
    position: relative;
  }

  .accordion-title:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #003C7E;
    border-right: solid 2px #003C7E;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .accordion-title.open:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 45%;
  }

  .accordion-content {
    display: none;
  }

  .accordion-container {
    width: 100%;
    margin: 1.875em auto;
  }

  .footer-content {
    margin-bottom: 0;
    border-bottom: 1px solid #003C7E;
  }

  .copyright {
    font-size: 13px;
    text-align: center;
  }

  .footer-content ul li a {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
