@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
html, body {
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100%;
}

*, *:after, *:before {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

html {
  font-size: 10px;
}

html {
  background-color: #003300;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  color: grey;
}

/* general-style */
a:link, a:visited {
  text-decoration: none;
  color: black;
  display: inline-block;
}

.links.social {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: 120rem;
  margin: 1rem auto;
}
.links.social > .row {
  margin-right: 1rem;
}
.links.social > .row > .key {
  display: inline-block;
  margin-right: 0.5rem;
  color: orange;
  border-bottom: 1px solid orangered;
}
/* \general-style */
/* structural-style */
#page {
  height: 100%;
  background-color: lightgrey;
}
#page > .group.sections > .body > .section > .body {
  margin: 0px auto;
}
#page > .group.sections > .foot {
  margin: 6rem auto;
  background-color: #003300;
  color: white;
  padding: 6rem 1rem;
  text-align: center;
}
#page > .group.sections > .foot > .message {
  font-size: 1.9rem;
  font-style: italic;
}
#page > .group.sections > .foot > .links.com {
  margin: 2rem auto;
}
#page > .group.sections > .foot > .links.com > a:link, #page > .group.sections > .foot > .links.com > a:visited {
  display: inline-block;
  border-bottom: 0.1rem solid #009966;
  padding: 1rem;
  margin: 1rem;
  width: 19rem;
  transition: border-bottom 0.5s;
  color: white;
}
#page > .group.sections > .foot > .links.com > a:hover {
  border-bottom-color: #ff9933;
}
#page > .group.sections > .foot > .note {
  font-size: 1.5rem;
}

/* \structural-style */
/*
    - hidden by default

*/
.stacks-bar.main {
  position: fixed;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 100%;
  padding: 1rem;
  background-color: white;
  display: grid;
  grid-template-areas: "head" "body" "foot";
  flex-direction: column;
  justify-content: space-between;
}
.stacks-bar.main > .head {
  grid-area: head;
  justify-self: start;
}
.stacks-bar.main > .head > .name {
  display: flex;
  align-items: center;
}
.stacks-bar.main > .head > .name > .icon_menu {
  transform: rotate(90deg);
  transition: transform 0.5s;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1.5rem;
}
.stacks-bar.main > .head > .name > .icon_menu > img {
  width: 100%;
}
.stacks-bar.main > .head > .name > .title.logo {
  width: 170px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stacks-bar.main > .head > .name > .title.logo > img {
  width: 100%;
  object-fit: contain;
}
.stacks-bar.main > .body {
  grid-area: body;
  align-self: center;
}
.stacks-bar.main > .body > .stack.nav > .body > .d_class > .body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bolder;
  font-size: 1.9rem;
}
.stacks-bar.main > .body > .stack.nav > .body > .d_class > .body > .d_object {
  padding: 0.4rem 1.5rem;
  margin: 0.5rem 0px;
  text-transform: capitalize;
  color: #003300;
  transition: color 0.5s;
}
.stacks-bar.main > .body > .stack.nav > .body > .d_class > .body > .d_object:hover {
  color: #ff9933;
}
.stacks-bar.main > .foot {
  grid-area: foot;
  align-self: center;
  font-size: 1.4rem;
}
.stacks-bar.main > .foot > .links {
  display: flex;
  flex-direction: column;
}
.stacks-bar.main > .foot > .links > a {
  margin: 0.5rem 0px;
  padding: 0.5rem 1rem;
}
.stacks-bar.main > .foot > .links > a:link, .stacks-bar.main > .foot > .links a:visited {
  color: #003300;
  transition: color 0.5s;
  font-weight: bold;
}
.stacks-bar.main > .foot > .links > a:hover {
  color: #ff9933;
}
.stacks-bar.main.mobile-hide {
  min-height: auto;
}
.stacks-bar.main.mobile-hide > .head > .name > .icon_menu {
  transform: rotate(0deg);
}
.stacks-bar.main.mobile-hide > .body {
  display: none;
}
.stacks-bar.main.mobile-hide > .foot {
  display: none;
}
.stacks-bar.main.show > .body {
  display: block;
}
.stacks-bar.main.show > .foot {
  display: block;
}

@media screen and (min-width: 600px) {
  .stacks-bar.main {
    grid-template-areas: "head body foot";
    min-height: auto;
  }
  .stacks-bar.main > * {
    align-self: center;
  }
  .stacks-bar.main > .head > .name > .icon_menu {
    display: none;
    border: 1px solid green;
  }
  .stacks-bar.main > .body > .stack.nav > .body > .d_class > .body {
    padding: 0px 2rem;
    flex-direction: row;
    justify-content: center;
  }
  .stacks-bar.main > .body > .stack.nav > .body > .d_class > .body > .d_object {
    margin: 0px 0.3rem;
  }
  .stacks-bar.main > .foot > .links {
    flex-direction: row;
  }
  .stacks-bar.main > .foot > .links > a {
    margin: 0px 0.1rem;
  }
  .stacks-bar.main > .foot > .links > a:last-child {
    margin-right: 0px;
  }
}
/*
    Customization of template styling, by implementor. 
*/
/*
    - used in home page and products pages 
*/
.header {
  position: relative;
  height: 30vh;
  background-color: rgba(255, 153, 51, 0.6);
}
.header > .layer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header > .layer.bg {
  background-image: url("../images/cover-images/home.jpg");
  background-size: cover;
  background-attachment: fixed;
  mix-blend-mode: multiply;
}
.header > .layer.fg {
  display: flex;
  align-items: center;
}
.header > .layer.fg > .text {
  max-width: 120rem;
  margin: 6rem auto;
  padding: 0px 1rem;
  font-size: 3rem;
  font-weight: bold;
  color: white;
}

.page {
  background-color: white;
}
.page > .body {
  margin: 0px 1rem;
}
.page > .body > .content {
  max-width: 120rem;
  margin: 1rem auto;
  padding: 0px 1rem;
}
.page[data-url="/index"] > .body > .content {
  max-width: 100%;
  padding: 0px;
}
.page[data-url="/index"] > .body > .content > .header {
  height: 60vh;
}
.page[data-url="/medical-supplies"] > .body > .content,
.page[data-url="/babies-supplies"] > .body > .content,
.page[data-url="/food"] > .body > .content,
.page[data-url="/beverages"] > .body > .content {
  max-width: 100%;
  padding: 0px;
}
.page[data-url="/medical-supplies"] > .body > .content > .header,
.page[data-url="/babies-supplies"] > .body > .content > .header,
.page[data-url="/food"] > .body > .content > .header,
.page[data-url="/beverages"] > .body > .content > .header {
  height: 40vh;
  background-color: #009966;
}
.page[data-url="/medical-supplies"] > .body > .content {
  max-width: 100%;
  padding: 0px;
}
.page[data-url="/medical-supplies"] > .body > .content > .header > .layer.bg {
  background-image: url("../images/cover-images/medical.jpg");
}
.page[data-url="/babies-supplies"] > .body > .content {
  max-width: 100%;
  padding: 0px;
}
.page[data-url="/babies-supplies"] > .body > .content > .header > .layer.bg {
  background-image: url("../images/cover-images/babies.jpg");
}
.page[data-url="/food"] > .body > .content {
  max-width: 100%;
  padding: 0px;
}
.page[data-url="/food"] > .body > .content > .header > .layer.bg {
  background-image: url("../images/cover-images/food.jpg");
}
.page[data-url="/beverages"] > .body > .content {
  max-width: 100%;
  padding: 0px;
}
.page[data-url="/beverages"] > .body > .content > .header > .layer.bg {
  background-image: url("../images/cover-images/beverages.jpg");
}
.page[data-url="/about"] > .body > .content {
  margin: 2rem auto;
}
.page[data-url="/about"] > .body > .content p {
  margin: 2rem auto;
}
div.page[data-url="/quote"] {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0px;
  left: -100%;
  transition: left 0.5s;
  background-color: #003300;
  display: flex;
  flex-direction: column;
}
div.page[data-url="/quote"] > .head > .acts-bar {
  text-align: right;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 1;
}
div.page[data-url="/quote"] > .head > .acts-bar a.act.close {
  background-color: #ff9933;
  color: white;
  padding: 1rem 2rem;
  margin: 1rem;
  border-radius: 1000px;
  font-weight: bold;
  transition: background-color 0.5s;
  font-style: italic;
}
div.page[data-url="/quote"] > .head > .acts-bar a.act.close:hover {
  background-color: #009966;
}
div.page[data-url="/quote"] > .body {
  padding: 0px;
  width: 100%;
  height: 100%;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.page[data-url="/quote"] > .body > .content {
  background-color: white;
  margin: 0px;
  padding: 1rem;
  height: 100vh;
  overflow-y: auto;
}
div.page[data-url="/quote"] > .body > .content > .notice {
  color: red;
  text-align: center;
  height: 0px;
  overflow: hidden;
}
div.page[data-url="/quote"] > .body > .content > .notice.show {
  height: auto;
  overflow: auto;
}
div.page[data-url="/quote"] > .body > .content > .windows > * {
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  display: none;
  transition: width 0.5s;
}
div.page[data-url="/quote"] > .body > .content > .windows > *.show {
  display: block;
}
div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .quote-form > .row {
  margin: 2rem 0px;
}
div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .quote-form > .row > .value {
  text-align: left;
}
div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .quote-form > .row > .value > input, div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .quote-form > .row > .value > textarea {
  outline: 0px solid white;
  border: none;
  border-bottom: 0.1rem solid #009966;
  font: inherit;
  padding: 0.5rem 0px;
  width: 100%;
}
div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .quote-form > .row > .value > input[name=product], div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .quote-form > .row > .value > textarea[name=product] {
  color: gray;
  font-style: italic;
}
div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .quote-form > .row > .value > input:focus, div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .quote-form > .row > .value > textarea:focus {
  border-bottom-color: #003300;
}
div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .actions {
  text-align: center;
}
div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .actions > input[type=submit] {
  background-color: #ff9933;
  color: white;
  border: none;
  border-radius: 1000px;
  padding: 1rem 2rem;
}
div.page[data-url="/quote"] > .body > .content > .windows > .form > form > .actions > input[type=submit]:hover {
  background-color: #003300;
}
div.page[data-url="/quote"] > .body > .content > .windows > .message {
  text-align: center;
  margin-top: 30%;
}
div.page[data-url="/quote"] > .body > .content > .windows > .message.red {
  color: red;
}
div.page[data-url="/quote"] > .body > .content > .windows > .message.green {
  color: green;
}
div.page[data-url="/quote"].open {
  left: 0%;
}

h1 {
  margin: 5rem 0px;
}

h2 {
  margin: 3rem 0px;
}

.stack.products > .head {
  margin: 5rem 0px;
}
.stack.products > .body > .d_class > .body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
  align-items: start;
}
.stack.products > .body > .d_class > .body > .d_object {
  background-color: white;
  text-align: center;
  padding: 2rem;
}
.stack.products > .body > .d_class > .body > .d_object > .image {
  max-width: 30rem;
  text-align: center;
  margin: 0px auto;
}
.stack.products > .body > .d_class > .body > .d_object > .image > img {
  max-width: 100%;
  height: 25rem;
  object-fit: contain;
}
.stack.products > .body > .d_class > .body > .d_object > .title {
  margin: 1.5rem 0px;
}
.stack.products > .body > .d_class > .body > .d_object > .link {
  margin: 1.5rem;
}
.stack.products > .body > .d_class > .body > .d_object > .link > a:link, .stack.products > .body > .d_class > .body > .d_object > .link > a:visited {
  padding: 1rem 2rem;
  background-color: #ff9933;
  color: white;
  border-radius: 1000px;
  transition: background-color 0.5s;
}
.stack.products > .body > .d_class > .body > .d_object > .link > a:hover {
  background-color: #003300;
}
.stack.products.featured {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.stack.products.featured > .head {
  font-style: italic;
  font-size: 1.9rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.stack.products.featured > .body > .d_class.featured-products > .body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1rem;
}
.stack.products.featured > .body > .d_class.featured-products > .body > .d_object {
  display: flex;
  flex-direction: column;
}
.stack.products.featured > .body > .d_class.featured-products > .body > .d_object > img {
  width: 100%;
  height: 20rem;
  object-fit: contain;
  background-color: white;
  padding: 1rem;
}
.stack.products.featured > .body > .d_class.featured-products > .body > .d_object > .name, .stack.products.featured > .body > .d_class.featured-products > .body > .d_object > .category {
  margin: 0rem 0px;
}

/*# sourceMappingURL=index.css.map */
