footer {
  background: var(--c-default);
  color: white;
  padding: 40px;
  margin-top: 30px;
}
footer .wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
}
footer .wrapper div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .wrapper .ctn-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-right: 80px;
}
footer .wrapper .ctn-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .wrapper .ctn-content > div {
  margin-left: 100px;
}
footer img {
  height: 60px;
  object-fit: contain;
}
footer .copy {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}
footer h5 {
  text-transform: uppercase;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  margin-bottom: 10px;
}
footer ul {
  display: flex;
  flex-direction: column;
}
footer ul li a {
  cursor: pointer;
  display: block;
  color: white;
  margin-bottom: 5px;
  transition: all 0.2s;
}
footer ul li a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 950px) {
  footer {
    padding: 20px;
  }
  footer .wrapper .ctn-content {
    width: 100%;
  }
  footer .wrapper .ctn-content > div {
    margin-left: 0;
  }
}
@media screen and (max-width: 850px) {
  footer .wrapper {
    display: flex;
    flex-direction: column;
  }
  footer .wrapper .ctn-logo {
    margin-right: 0;
  }
  footer h5 {
    margin-top: 30px;
  }
  p {
    font-size: 18px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 850px) {
  footer .wrapper .ctn-content {
    flex-direction: column;
    align-items: center;
  }
  footer .wrapper .ctn-content > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .wrapper .ctn-content div h5 {
    margin-bottom: 10px;
  }
  footer h5 {
    margin: 0;
    margin-top: 30px;
  }
}
