footer ul {
  margin: 0;
  padding: 0;
}

footer li,
footer p {
  font-family: "PP Formula Condensed";
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 25px;
}

footer .contact-links li:first-child
 {
  margin-bottom: 10px;
}

footer li a {
  color: #fff;
  text-decoration: none;
}

footer .col.middle {
  margin-top: 70px;
}

footer p {
  opacity: 0.4;
}

footer .col.last li {
  position: relative;
  margin-left: 15px;
}

footer .col.last li::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../assets/insta.svg");
  position: absolute;
  top: 0;
  left: -15px;
}

footer .col.last .contact-links li::after {
  display: none;
  margin-left: 0;
}

footer .col.last .contact-links li {
  margin-left: 0!important;
}

footer .col.last .contact-links li a{
  margin-left: 0!important;
}

footer .col.last li a {
  margin-left: 15px;
  cursor: pointer;
}

footer .col.last {
  margin-right: 30px;
}

footer .col.last li a::after {
  display: none;
}

.footer-content {
  display: flex;
  padding: 55px 0;
  align-items: flex-start;
}

.links {
  margin-left: 250px;
  display: flex;
}

.links .col:nth-child(2) {
  margin-left: 70px;
  margin-right: 200px;
}

footer ul li a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background-color: #4b29d1;
  transition: all 0.5s;
  transition-duration: 0.8s;
  position: absolute;
  opacity: 0;
}

footer ul li {
  position: relative;
  cursor: pointer;
}

footer ul li a:hover::after {
  left: 0;
  width: 100%;
  opacity: 1;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: "PP Formula Condensed";
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  color: grey;
}

.footer-bottom ul {
  display: flex;
}

.footer-bottom li:first-child {
  margin-right: 30px;
}

.footer-bottom a {
  color: grey;
}

.footer-bottom li {
  font-size: 16px;
}

.footer-bottom::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: grey;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-bottom ul li a::after {
  background-color: transparent;
}

/* responsive style */

@media screen and (max-width: 1023px) {
    .footer-content {
        padding: 0 32px;
    }
    footer .logo-holder img {
        width: 86px;
        height: 78px;
    }
    footer .logo-holder {
        margin: 0  auto 64px auto;
    }
    .footer-content {
        flex-direction: column;
        
    }
    footer .links {
        margin-left: 0px;
        flex-direction: column;
    }
    .links .col:nth-child(2) {
        margin-left: 0px;
        margin-right: 0px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom p {
        order: 2;
        text-align: center;
        max-width: 385px;
    }
    .footer-bottom li {
       margin-top: 24px;
    }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .footer-content .links{
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  footer .links .col:nth-child(2) {
    margin-right: 100px;
  }
}



