.kc-footer {
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 64px 0 20px 0;
  color: white;
  background-color: #1c202a;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media screen and (max-width: 1200px) {
  .kc-footer {
    padding: 50px 20px;
  }
}
.kc-footer > .content {
  width: 1124px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 70px;
}
@media screen and (max-width: 1200px) {
  .kc-footer > .content {
    width: 720px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .kc-footer > .content {
    width: 100%;
    grid-gap: 30px;
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

.kc-footer > .content > .veretical-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .kc-footer > .content > .veretical-container {
    align-items: center;
  }
}
.kc-footer > .content > .veretical-container:last-child {
  margin-right: 0;
}
.kc-footer > .content > .veretical-container > * {
  margin-bottom: 10px;
}
.kc-footer > .content > .veretical-container > *:last-child {
  margin-bottom: 0;
}
.kc-footer > .content > .veretical-container > .title {
  font-size: 24px;
  font-family: ralewaysemibold, sans;
}

@media screen and (max-width: 767px) {
  .kc-footer > .content > .veretical-container > .title {
    text-transform: uppercase;
  }
}
.kc-footer > .content .link {
  font-size: 20px;
  font-family: ralewaymedium, sans;
  text-decoration: none;
  color: white;
}
.kc-footer > .content .link:hover {
  text-decoration: underline;
}
.kc-footer .horizontal-container {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 1200px) {
  .kc-footer .horizontal-container {
    margin-top: 60px;
  }
}

.kc-footer .horizontal-container > * {
  margin-right: 1em;
  color: white;
}
.kc-footer .horizontal-container > *:last-child {
  margin-right: 0;
}
.kc-footer .link > i {
  font-size: 1.5em;
}
.kc-footer .all-rights-reserved {
  font-size: 15px;
  font-family: ralewayregular, sans;
  margin: 70px 0 0 0;
  text-align: center;
}
.kc-footer .footer-row {
  display: flex;
  justify-content: space-between;
  width: 720px;
}

@media screen and (max-width: 767px) {
  .kc-footer .footer-row {
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
  }
}