/* @font-face {
  font-family: 'Gilroy-Regular';
  src: url('Gilroy-Light.otf');
} */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: 'Gilroy-Regular', sans-serif; */
  font-style: normal;
}

footer {
  width: 100%;
  height: 120px;
  background: #1c1c1e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}

.links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 120px;
}

.links img {
  cursor: pointer;
}
.footer__input {
  width: 308px;
  height: 40px;
  background: #ffffff;
  border-radius: 48px;
  padding: 10px 16px;
  margin-right: 16px;
  outline: none;
  border: none;
}
.footer__controllers {
  display: flex;
  align-items: center;
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  background: #ffffff;
  border-radius: 48px;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
}

.footer__text {
  font-size: 14px;
  line-height: 16px;
  color: #bebebe;
  max-width: 308px;
}

@media (max-width: 800px) {
  footer,
  .footer__controllers {
    flex-direction: column;
  }

  .footer__input {
    margin-bottom: 16px;
  }
  .footer__controllers {
    align-items: flex-start;
  }
  footer {
    padding: 0 34px;
    height: fit-content;
  }

  .footer__input,
  .footer__cta {
    width: 308px;
  }
  .footer__cta {
    justify-content: flex-start;
    padding-left: 16px;
  }

  .links {
    margin: 16px 0;
  }
  .footer__text {
    padding: 17px 0 32px 0;
  }
}
