@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

footer {
  margin-top: 40px;
  width: 100%;
  /* background-color: #FDFACF; */
}

.footer-section1 {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px 0;
}

.footer-section1-box {
  width: 30%;
  padding: 10px;
}

.footer-section1-box h3 {
  font-size: 1.5em;
  font-weight: 600;
  color: #6D3F36;
  margin-bottom: 10px;
}

.footer-section1-box-links {
  border-top: 3px solid #6D3F36;
  padding-top: 10px;
}

.footer-section1-box-links h4, 
.footer-section1-box-links a {
  color: #6D3F36;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 400;
  margin: 5px 0;
  display: block;
}


.footer-section1-box-links h4 a {
  color: #6D3F36;
  text-decoration: none;
}

.footer-section1-box-links ul {
  list-style: none;
  padding: 0;
}

.footer-section1-box-links ul li {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #6D3F36;
  flex-wrap: wrap;
}

.footer-section1-box-links ul li i {
  font-size: 1.2em;
  margin-right: 10px;
}

.footer-section1-box .footer-section1-box-links ul li h4 {
  display: inline-block;
  margin-right: 15px;
}

.stay-in-touch-input {
  margin-bottom: 15px;
  text-align: left;
}

.stay-in-touch-input label {
  display: block;
  margin-bottom: 5px;
}

.stay-in-touch-input input,
.stay-in-touch-input select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

footer button[type="submit"] {
  background-color: #6D3F36;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

footer button[type="submit"]:hover {
  background-color: #6D3F36;
}

.footer-section2 {
  background-color: #8B6A44;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.footer-container1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 20px;
}

.sitemap{
  font-weight: bold;
  font-size: medium;
}
.footer-container1 .footerendtext1{
  font-size: 13px;
}

.footer-container1 .footerendtext2{
  font-size: 13px;
}

@media screen and (max-width: 860px) {
  .footer-section1-box {
    width: 90%;
  }

  .footer-section1 {
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .footer-section1-box h3 {
    font-size: 1.2em;
  }

  .footer-section1-box-links h4 {
    font-size: 0.8em;
  }

  .footer-section1-box-links ul li i {
    font-size: 1em;
  }
}
