body {
  margin: 0;
  padding: 0;
  background-color: #FFEFE7;
  font-family: "IBM Plex Sans", sans-serif;
}

nav {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #7C6A0A;
  padding: 15px;
}
nav p {
  font-size: 1.5em;
  padding-left: 30px;
}
nav .icons {
  display: flex;
  gap: 15px;
}
nav .icons button {
  background: none;
  border-style: none;
}

article {
  color: #7C6A0A;
  padding-left: 20px;
  padding-right: 20px;
}
article .impact-section {
  width: 50%;
  padding-top: 50px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
article button {
  background: none;
  border-style: none;
  background-color: #FA9500;
  color: white;
  padding: 12px 24px;
  border-radius: 35px;
  font-size: 1em;
}
article button:hover {
  transform: scale(1.1);
}

main {
  background-color: #FFEFE7;
}

section {
  width: auto;
  height: auto;
  padding: 60px;
}
section h2 {
  color: #7C6A0A;
  font-size: 2em;
}
section .healthcare, section .furniture {
  padding-bottom: 60px;
}
section .healthcare h2, section .furniture h2 {
  font-weight: 300;
  padding-bottom: 60px;
}
section .healthcare .card-section, section .furniture .card-section {
  display: flex;
  width: auto;
  height: auto;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 200px;
       column-gap: 200px;
  row-gap: 80px;
}
section .healthcare .product-card, section .furniture .product-card {
  width: 15vw;
  height: 65vh;
  background-color: #FFDAC6;
  color: #7C6A0A;
  padding: 20px;
  border-radius: 8px;
}
section .healthcare .product-card .icon, section .furniture .product-card .icon {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  padding: 2px;
  padding-bottom: 12px;
}
section .healthcare .product-card .icon svg, section .furniture .product-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: #7C6A0A;
  stroke-width: 2;
}
section .healthcare .product-card .product-image, section .furniture .product-card .product-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
section .healthcare .product-card .product-image img, section .furniture .product-card .product-image img {
  width: 12vw;
  height: 30vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
section .furniture .product-card {
  background-color: #BABD8D;
  color: white;
}

.about-us {
  padding: 60px;
}
.about-us h2 {
  color: #7C6A0A;
  font-size: 2em;
  font-weight: 300;
  padding-bottom: 60px;
  margin: 0;
}
.about-us .mission-section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}
.about-us .mission-section .earth, .about-us .mission-section .innovation {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  gap: 20px;
}
.about-us .mission-section .earth img, .about-us .mission-section .innovation img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.about-us .mission-section .earth div, .about-us .mission-section .innovation div {
  flex: 1;
}
.about-us .mission-section .earth div p, .about-us .mission-section .innovation div p {
  font-size: 1.5em;
  line-height: 1.2;
  margin: 0;
}
.about-us .mission-section .earth div p {
  color: #E86424;
}
.about-us .mission-section .innovation div p {
  color: #E86424;
}

.gallery {
  padding: 60px;
}
.gallery h2 {
  color: #7C6A0A;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 60px;
  margin: 0;
}
.gallery .gallery-images {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.gallery .gallery-images img {
  width: 25vw;
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 5px 35%;
     object-position: 5px 35%;
  border-radius: 16px;
}
.gallery .gallery-images img:hover {
  transform: scale(1.1);
}

.location {
  padding: 60px;
  text-align: center;
  color: #E86424;
}
.location h2 {
  color: #7C6A0A;
  font-size: 2em;
  font-weight: 300;
  padding-bottom: 60px;
  margin: 0;
}
.location .map {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}
.location .map img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
}
.location p {
  font-size: 1.5em;
  margin: 10px 0;
  line-height: 1.4;
}

footer {
  background-color: #FA9500;
  width: 100%;
  height: auto;
  padding: 40px;
  color: white;
}
footer .social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-bottom: 20px;
}
footer .social-media a {
  display: inline-block;
  transition: transform 0.3s ease;
}
footer .social-media a:hover {
  transform: scale(1.1);
}
footer .social-media a img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}/*# sourceMappingURL=main.css.map */