:root {
  --heading-font: "PT Sans", sans-serif;
  --black: #000;
  --white: #fff;
  --primary: #b80257;
  --secondary: #783df0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: "Source Sans 3", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
}

a {
  color: inherit;
}

button {
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.container {
  width: 1170px;
  max-width: 100%;
  min-height: 100px;
  margin: 0 auto;
}

.footer {
  background-color: black;
  padding: 80px 0 160px 0;
  margin-top: 100px;
}

.footer .inner {
  display: flex;
  gap: 15px;
}

.footer-logo {
  flex: 1;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo img {
  display: block;
  max-width: 100%;
}

.footer-logo p {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 1.5rem;
  color: #fff9;
}

.footer-apps {
  display: flex;
  gap: 22px;
  margin-top: 20px;
}

.footer-apps a {
  display: block;
}

.footer-apps img {
  display: block;
}

.footer-menu {
  flex: 2;
  display: flex;
  gap: 15px;
}

.footer-menu .menu-list {
  flex: 1;
}

.menu-list h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

.menu-list ul {
  margin-top: 24px;
}

.menu-list li {
  margin-top: 14px;
}

.menu-list ul a {
  text-decoration: none;
  color: #fff9;
}

.menu-list ul a:hover {
  color: var(--primary);
}

.footer-email {
  flex: 1;
}

.footer-email h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

.footer-email p {
  margin-top: 24px;
  line-height: 1.6;
  font-size: 1.5rem;
  color: #fff9;
}

.footer-email input {
  width: 100%;
  margin-top: 24px;
  height: 40px;
  background-color: #272727;
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 0 20px;
}

.footer-email button {
  width: 100px;
  height: 40px;
  margin-top: 10px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-email button:hover {
  background-color: var(--white);
  color: var(--primary);
}
