/** Mixins, Variables, Initializations and Resetting Styles **/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "IBM Plex Sans", serif;
}

body {
  color: #7C6A0A;
  background-color: #FFEFE7;
}

ul {
  list-style: none;
}

button {
  background: none;
  border-style: none;
}

/** Page Styles **/
nav {
  padding: 0 30px;
  width: 100%;
  display: flex;
  padding-top: 15px;
  align-items: center;
  justify-content: space-between;
}
nav h1.text-logo {
  font-size: 3.6rem;
  font-weight: 500;
  cursor: pointer;
}
nav div.buttons {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
nav div.buttons button svg {
  width: 36px;
  stroke: #7C6A0A;
  cursor: pointer;
}

main {
  padding: 0 30px;
  width: 100%;
}
main article {
  width: 100%;
  display: flex;
  margin-top: 100px;
}
main article div {
  width: 50%;
}
main div.main-info h2 {
  margin: 30px 0;
  font-size: 4.5rem;
  font-weight: 500;
}
main div.main-info p {
  font-size: 1.9rem;
}
main div.main-info button {
  font-size: 1.6rem;
  color: white;
  width: 170px;
  padding: 20px;
  margin-top: 50px;
  border-radius: 30px;
  background-color: #FA9500;
}
main div.main-info button:hover {
  transform: scale(1.1);
  cursor: pointer;
}
main div.main-img {
  display: flex;
  justify-content: right;
}
main div.main-img img {
  width: 35vw;
  -o-object-fit: contain;
     object-fit: contain;
}

.all-products-section {
  padding: 0 30px;
  width: 100%;
  height: auto;
  display: flex;
  row-gap: 45px;
  flex-direction: column;
  margin-top: 100px;
}
.all-products-section h2 {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 25px;
}
.all-products-section .products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 50px;
}
.all-products-section .product-card {
  width: 200px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.75);
}
.all-products-section .product-card div {
  width: 100%;
}
.all-products-section .product-card button {
  height: 6%;
  align-self: flex-end;
}
.all-products-section .product-card button svg {
  height: 100%;
}
.all-products-section .product-card div.product-info {
  margin-top: 13px;
  padding: 0px 15px;
}
.all-products-section .product-card div.product-info h3 {
  font-size: 1.6rem;
  font-weight: 600;
}
.all-products-section .product-card div.product-info p {
  margin-top: 2px;
  font-size: 1rem;
}
.all-products-section .product-card div.product-img {
  height: 66%;
  width: 150px;
  margin-top: 7px;
  overflow: hidden;
  align-self: center;
  border-radius: 10px;
}
.all-products-section .product-card div.product-img img {
  width: 100%;
}
.all-products-section .product-card:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.all-products-section .healthcare-catalog .product-card {
  color: #7C6A0A;
  background-color: #FFDAC6;
}
.all-products-section .healthcare-catalog .product-card svg {
  stroke: #7C6A0A;
}
.all-products-section .healthcare-catalog .product-card:nth-child(1) img, .all-products-section .healthcare-catalog .product-card:nth-child(2) img, .all-products-section .healthcare-catalog .product-card:nth-child(3) img {
  -o-object-position: 0px -15px;
     object-position: 0px -15px;
}
.all-products-section .furniture-catalog .product-card {
  color: white;
  background-color: #BABD8D;
}
.all-products-section .furniture-catalog .product-card svg {
  stroke: white;
}
.all-products-section .furniture-catalog .product-card:nth-child(3) img, .all-products-section .furniture-catalog .product-card:nth-child(4) img, .all-products-section .furniture-catalog .product-card:nth-child(8) img, .all-products-section .furniture-catalog .product-card:nth-child(9) img {
  -o-object-position: 0px -30px;
     object-position: 0px -30px;
}

.info-section {
  padding: 0 30px;
}
.info-section h2 {
  font-size: 3rem;
  font-weight: 500;
}
.info-section .all-info-subsections {
  margin-top: 70px;
}
.info-section .why-us-section .info-cards-container {
  display: grid;
  grid-template: 1fr/1fr 1fr;
}
.info-section .why-us-section .info-cards-container :nth-child(1) img {
  margin-right: 30px;
}
.info-section .why-us-section .info-card {
  display: flex;
  align-items: center;
  padding: 50px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #E86424;
}
.info-section .why-us-section .info-card img {
  height: 100px;
}
.info-section .gallery-section .all-gallery-images-container {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-evenly;
}
.info-section .gallery-section div.gallery-img {
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}
.info-section .gallery-section div.gallery-img img {
  width: 100%;
}
.info-section .gallery-section div.gallery-img:nth-child(1) img {
  -o-object-position: 0 -30px;
     object-position: 0 -30px;
}
.info-section .gallery-section div.gallery-img:nth-child(2) img {
  -o-object-position: 0 -90px;
     object-position: 0 -90px;
}
.info-section .gallery-section div.gallery-img:nth-child(3) img {
  -o-object-position: 0 -50px;
     object-position: 0 -50px;
}
.info-section .gallery-section div.gallery-img:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.info-section .find-us-section {
  margin-top: 100px;
}
.info-section .find-us-section div.map {
  margin-top: 30px;
}
.info-section .find-us-section div.map img {
  width: 100%;
}
.info-section .find-us-section div.direction {
  margin-top: 8px;
  color: #E86424;
}
.info-section .find-us-section div.direction h3 {
  font-size: 2.2rem;
  font-weight: 400;
}
.info-section .find-us-section div.direction p {
  font-size: 1.5rem;
}

footer {
  color: white;
  width: 100%;
  min-height: 250px;
  margin-top: 100px;
  background-color: #FA9500;
  padding: 30px 40px 10px;
  display: flex;
  flex-direction: column;
}
footer h3 {
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
footer ul.company-links {
  margin-top: 20px;
}
footer ul.company-links li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
footer ul.company-links li:hover {
  text-decoration: underline;
}
footer ul.social-links {
  display: flex;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 12px;
  gap: 25px;
}
footer ul.social-links img {
  height: 35px;
  cursor: pointer;
}/*# sourceMappingURL=main.css.map */