.footer {
  width: 100%;
  background: #763111;
  margin-top: 80px;
  padding-top: 40px;
}

.footer-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

/* each block */

.footer-strip-item {
  min-height: 180px;
}

/* repeating color pattern */

.footer-strip-item:nth-child(odd) {
  background: #dad1bc;
}

.footer-strip-item:nth-child(even) {
  background: #e3dbc7;
}

/* text block */

.footer-strip-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  font-family: var(--font-secondary);
  font-weight: 400;
  text-align: center;
}

.footer-strip-text p {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

/* ---------------- */
/* Footer main */
/* ---------------- */

.footer-main {
  color: #fff;
  padding: 60px 0px 40px 0px;
}

.footer-container {
  width: 95%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Brand */

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  width: 150px;
}

.footer-brand-text {
  font-family: var(--font-secondary);
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-align: left;
}

/* Subscribe */

.footer-subscribe {
  display: flex;
  flex-direction: column;
}

.footer-subscribe-title {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
}

.footer-subscribe-form {
  display: flex;
  width: 100%;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 12px;
  overflow: hidden;
}

.footer-input {
  flex: 1;
  padding: 12px 24px;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: sans-serif;
  letter-spacing: 1px;
}

.footer-input::placeholder {
  color: #fff;
}

.footer-subscribe-btn {
  border-radius: 8px;
  padding: 12px 20px;
  border: none;
  background: #ffffff;
  color: #763111;
  cursor: pointer;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
}

/* Links */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
  font-weight: 400;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

/* Bottom */

.footer-bottom {
  width: 95%;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-secondary);
  font-weight: 400;
  letter-spacing: 1px;
}

/* Social */

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #934a26;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.footer-icon svg{
	width: 18px;
	height: 18px;
	color: #fff;
}


.footer-copy span {
  font-family: var(--font-primary);
}

/* Responsive */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .footer {
    margin-top: 40px;
  }
	
  .footer-subscribe-title {
	font-size: 20px;
  }
}

@media (max-width: 500px) {
  .footer-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-input {
    padding: 8px 12px;
  }

  .footer-subscribe-form {
    height: 42px;
  }
}
