.btn-primary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-primary {
    padding: 16px 48px;
  }
}

.btn-secondary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-secondary {
    padding: 16px 48px;
  }
}

footer {
  background-color: #0D0D0D;
  flex-direction: column;
  padding: 0 40px;
}
@media all and (max-width: 767px) {
  footer {
    padding: 0 16px;
  }
}
footer p, footer span, footer label, footer a, footer .title, footer .title * {
  color: #FFF;
}
footer .container .lines {
  z-index: 0;
}
footer .container .lines div {
  background-color: #313131;
}
footer .container .content {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media all and (max-width: 1200px) {
  footer .container .content {
    align-items: flex-start;
  }
}
footer .container .content .title {
  width: 100%;
}
footer .container .content .form {
  display: flex;
  max-width: 640px;
  flex-direction: column;
  margin-top: 32px;
}
footer .container .content .form form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .container .content .form form label {
  width: calc(50% - 8px);
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 64px;
  cursor: pointer;
}
@media all and (max-width: 767px) {
  footer .container .content .form form label {
    width: 100%;
  }
}
footer .container .content .form form label .required {
  position: absolute;
  right: 0;
  color: rgba(237, 239, 242, 0.4);
  transition: 200ms ease;
}
footer .container .content .form form label .input:not(:placeholder-shown) ~ .required {
  opacity: 0;
}
footer .container .content .form form label.textarea, footer .container .content .form form label.checkbox {
  width: 100%;
}
footer .container .content .form form label.checkbox {
  margin-top: 24px;
}
footer .container .content .form form label .input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(237, 239, 242, 0.4);
  padding-bottom: 8px;
  outline: none;
  width: 100%;
  font-size: 16px;
  color: #FFF;
  transition: 200ms ease;
  resize: none;
}
footer .container .content .form form label .input::placeholder {
  color: #FFF;
  font-size: 16px;
  width: 100%;
  display: flex;
}
footer .container .content .form form label .input:not(:placeholder-shown), footer .container .content .form form label .input:focus {
  border-color: #FFF;
}
footer .container .content .form form label.checkbox {
  align-items: center;
}
footer .container .content .form form label.checkbox div {
  height: 16px;
  width: 16px;
  border: 1px solid rgba(237, 239, 242, 0.4);
  border-radius: 4px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .container .content .form form label.checkbox input:checked ~ div {
  border-color: #DF4133;
}
footer .container .content .form form label.checkbox input:checked ~ div::after {
  content: "";
  height: 8px;
  width: 8px;
  background-image: url("../img/home/success.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer .container .content .form form label.checkbox span {
  display: flex;
  align-items: center;
}
footer .container .content .form form label.checkbox span a {
  display: inline-block;
  color: #DF4133;
  text-decoration: underline;
  margin-left: 4px;
}
footer .container .content .form form .btn-primary {
  margin-top: 40px;
}
footer .container .row {
  width: 100%;
  display: flex;
  padding: 64px 0;
  z-index: 1;
}
@media all and (max-width: 1200px) {
  footer .container .row {
    padding: 64px 40px;
  }
}
@media all and (max-width: 767px) {
  footer .container .row {
    flex-direction: column;
    padding: 64px 16px;
  }
}
footer .container .row .col {
  display: flex;
  flex-direction: column;
  width: 33.3333333333%;
  padding-right: 56px;
}
@media all and (max-width: 767px) {
  footer .container .row .col {
    width: 100%;
    padding-right: 0;
  }
  footer .container .row .col:nth-child(n+2) {
    margin-top: 64px;
  }
}
footer .container .row .col .logo {
  height: 44px;
  width: 160px;
  background-image: url("../img/logo-dark.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer .container .row .col .fs-12 {
  text-transform: uppercase;
  font-weight: 500;
}
footer .container .row .col .fs-12:nth-child(n+2) {
  margin-top: 24px;
}
footer .container .row .col:last-child .fs-12 {
  text-transform: none;
}
footer .line {
  width: calc(100% + 80px);
  height: 1px;
  background-color: #313131;
}
@media all and (max-width: 767px) {
  footer .line {
    width: calc(100% + 32px);
  }
}