@charset "UTF-8";

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
  border-top: 1px solid #e4e5f0;
}

.footer-group-links {
  display: grid;
  row-gap: 1em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 2em 1em;
  max-width: 1200px;
  width: 100%;
}

dl.footer-links {
  margin: 0;
  padding: 0;
  width: 100%;
}
dl.footer-links dt {
  padding-bottom: 1rem;
  font-size: 1.125em;
  font-weight: bold;
  color: #004a99;
}
dl.footer-links dd {
  margin: 0;
  padding: 0;
}

ul.footer-items {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.75;
}
ul.footer-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
ul.footer-items li a {
  color: #004a99;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  -webkit-transition: border-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: border-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
}
ul.footer-items li a:hover {
  color: #0090ff;
  border-bottom: 1px dotted #0090ff;
}

i.footer-icon {
  margin-right: 0.125em;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}
i.footer-icon.fb {
  background-image: url(../img/footer/fb.svg);
}
i.footer-icon.ig {
  background-image: url(../img/footer/instagram.svg);
}
i.footer-icon.youtube {
  background-image: url(../img/footer/youtube.svg);
}
i.footer-icon.tiktok {
  background-image: url(../img/footer/tiktok.svg);
}

.company-info {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  padding: 2em 1em;
  line-height: 1.5;
  border-top: 1px solid #e4e5f0;
}
.company-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
}

.icon {
  display: inline-block;
}
.icon img {
  width: 24px;
  -webkit-animation: move 0.3s ease-in-out infinite;
          animation: move 0.3s ease-in-out infinite;
}

@media only screen and (min-width: 0) {
  .footer-group-links {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  .company-info {
    grid-template-columns: 1fr;
  }
  ul.footer-company-name li {
    text-align: center;
  }
  ul.footer-company-name li span {
    display: block;
  }
  ul.footer-company-info li {
    text-align: center;
  }
  ul.footer-items li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 400px) {
  .footer-group-links {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: unset;
  }
  ul.footer-company-name li span {
    display: unset;
  }
  ul.footer-items li {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
@media only screen and (min-width: 750px) {
  .footer-group-links {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  .company-info {
    grid-template-columns: 3fr 1fr 3fr;
  }
  ul.footer-company-name li {
    text-align: right;
  }
  ul.footer-company-info li {
    text-align: unset;
  }
}
