.footer-wrapper {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #013298,#05225A );
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.footer__sitemap {
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 0;
    box-sizing: border-box;
}
@media screen and (max-width: 768px) {
    .footer__sitemap {
        flex-direction: column;
        align-items: center;
    }
}

.footer__sitemap__item {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    display: block;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
}
@media screen and (max-width: 768px) {
    .footer__sitemap__item {
        font-size: 12px;
        padding: 15px 0;
        text-align: left;
        width: 90%;
    }
}

.footer__sitemap__item:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: hsl(0deg 0% 100% / 30%);
    position: absolute;
    right: 0;
    bottom: 0;
}
@media screen and (max-width: 768px) {
    .footer__sitemap__item:not(:last-child)::after {
        width: 100%;
        height: 1px;
        bottom: 0;
        left: 0;
    }
    .footer__sitemap__item::before {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        border-right: 1px solid hsl(0deg 0% 100% / 30%);
        border-bottom: 1px solid hsl(0deg 0% 100% / 30%);
        transform: rotate(-45deg);
        position: absolute;
        top: calc(50% - 5px);
        right: 10px;
    }
    
}
.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.footer__logo__img img {
  width: 290px;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .footer__logo__img img {
    width: 200px;
  }
}

.footer__corporate-info {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 10px;
}
