@charset "utf-8";

:root {
  --minWidth: 1440px;
  --textWidth: 1040px;
  --bgGrey: hsla(0, 0%, 95%, 1);
  --blue: hsl(195deg 99% 32% / 1.0);
  --blueLight: hsl(195deg 99% 42% / 1.0);
  --green: hsl(171, 100%, 35%, 1.0);
  --greenDark: hsl(171, 100%, 30%, 1.0);
  --cyan: rgb(77, 185, 207);
}

.notActiveLink {
  pointer-events: none;
  filter: grayscale(100%);
  opacity: 0.5;
}

.notActiveLinkGrey {
  pointer-events: none;
  filter: grayscale(100%) !important;
  opacity: 0.7;
}

body {
  background-color: var(--bgGrey);
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.onlyDesktopFlex {
  display: flex !important;
}

.onlyMobileFlex {
  display: none !important;
}

.topPadding50 {
  padding-top: 50px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

h1 {
  color: var(--blue);
  font-size: 2.0rem;
  line-height: 1.2em;
  font-weight: 400;
}

h2 {
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.4em;
  font-weight: 400;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.4em;
}

p {
  color: rgb(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.3rem;
  margin-bottom: 0.9rem;
}

.pSmall {
  font-weight: 300;
  font-size: 0.7rem;
  margin-top: 0.5rem;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  color: rgb(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.3rem;
  padding: 0.3rem 0;
}


strong {
  font-weight: 500;
  color: rgb(0, 0, 0, 0.8);
}

.orange {
  color: rgb(241, 90, 36);
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.2px;
  bottom: 0;
  left: 0;
  background-color: rgb(0, 0, 0, 0.1);
  transform-origin: bottom right;
  transition: transform 0.75s ease-out, background-color 0.75s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.25s ease-out, background-color 0.25s ease-out;
  background-color: rgb(0, 0, 0, 1.0);
}

.hover-underline-animationWhite {
  display: inline-block;
  position: relative;
}

.hover-underline-animationWhite::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: 0;
  left: 0;
  background-color: hsl(0deg 0% 100% / 0.20);
  transform-origin: bottom left;
  transition: transform 1.75s ease-out, background-color 1.75s ease-out;
}

.hover-underline-animationWhite:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.45s ease-out, background-color 0.45s ease-out;
  background-color: hsl(0deg 0% 100% / 1.00);
}

/* header */

.headerLine {
  background-image: url(../images/backgrounds/headerLine.svg);
  width: 100%;
  height: 10px;
}

.header {
  position: relative;
  width: 100%;
  height: auto;
  background-image: url(../images/backgrounds/headerBg.svg);
  background-repeat: repeat-x;
  background-size: 60px auto;
  z-index: 50;
  position: relative;
}

.headerContent {
  max-width: var(--minWidth);
  margin: 0 auto;
  padding: 0px 0px 0px 20px;
  display: grid;
  grid-template-columns: auto 3fr;
}

.headerLogo {
  width: 170px;
  height: auto;
  padding: 20px 0;
  grid-row: 1 / 3;
}

.headerLogo img {
  width: auto;
  height: 60px;
  transition: 750ms;
}

.headerLogo img:hover {
  filter: drop-shadow(0px 6px 0.5px hsl(0deg 0% 0% / 0.10)) brightness(1.1);
  transition: 750ms;
}

.headerMenu {
  background-image: radial-gradient(ellipse farthest-side at center top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14%;
  padding: 0px 20px 0px 0px;
}

.headerMenu a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Roboto Slab", serif;
  font-size: 1.0rem;
  font-weight: 300;
  padding: 8px 10px;
  white-space: nowrap;
  z-index: 90;
}

.headerMenu a:hover {
  color: rgba(0, 0, 0, 1.0);
}

.headerMenuShadow {
  height: 20px;
  grid-column: 2 / -1;
  background-image: url(../images/backgrounds/shadowBottom.svg);
  background-position: top center;
  background-size: auto;
  background-repeat: no-repeat;
  z-index: 90;
}

.headerHamburger {
  width: 40px;
  background-image: url(../images/icons/menu.svg);
  background-position: center center;
  background-size: 25px;
  background-repeat: no-repeat;
}

.headerHamburger a {
  display: block;

  width: 40px;
  height: 40px;
}

.headerHamburgerClose {
  width: 40px;
  background-image: url(../images/icons/close.svg);
  background-position: center center;
  background-size: 25px;
  background-repeat: no-repeat;
}

.headerSubMenu {
  display: block;
  visibility: visible;
  position: absolute;
  top: 60px;
  margin: 0px auto;
  background-color: hsla(0, 0%, 95%, 1.0);
  z-index: 40;
  transition: transform 0.5s ease-out, opacity 0.5s ease-in, box-shadow 0.5s ease-out;
  opacity: 1;
  box-shadow: 0px 5px 7px hsl(0deg 0% 0% / 0.20);
}

.headerSubMenuOFF {
  transition: transform 0.5s ease-in, opacity 0.5s ease-out, box-shadow 0.5s ease-in;
  transform: translateY(-350px);
  opacity: 0.01;
  box-shadow: 0px 1px 1px hsl(0deg 0% 0% / 0.010);
}

.headerMenuProducts {
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 0px 10px 0px;
  gap: 10px;
}

.headerSubMenu a {
  width: 100%;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Roboto Slab", serif;
  font-size: 1.0rem;
  font-weight: 300;
  padding: 8px 10px;
  white-space: nowrap;
}

.mobileMenu {
  display: none;
}

/* Grid Products */

.productsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px auto;
  max-width: var(--minWidth);
  padding: 0 0px;
}

.productsGridHome {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 20px auto;
  max-width: var(--minWidth);
  padding: 0 0px;
  height: calc(80vh - 200px);
  min-height: 550px;
}

.productHome {
  box-sizing: border-box;
  display: grid;
}

.productHome1 {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.productHome2 {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.productHome3 {
  grid-column: 1 / 3;
}

.productHome4 {
  grid-column: 3 / 5;
}

.productHome5 {
  grid-column: 5 / 7;
}

.product {
  aspect-ratio: 2.35 / 1;
  box-sizing: border-box;
  display: grid;
}

.product2col2row {
  grid-column: span 2;
  grid-row: span 2;
}

.product1col2row {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.productIn {
  position: relative;
  box-sizing: border-box;
  border: 1px solid #ccc;
  margin: 10px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.productIn a {
  display: flex;
  align-items: center;
  height: 120px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Roboto Slab", serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4rem;
  padding: 0px 20px 0px 60px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 120px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

.productIn a:hover {
  transition: 1000ms;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.6));
  transition: 500ms;
}

/* pharmaceutical */

.productInVitamins {
  background-color: var(--green);
  background-image: url(../images/products/pharmaceutical/vitamins-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productIn01 a {
  background-image: url(../images/backgrounds/productLinkGreen.svg);
  color: rgb(0, 96, 78);
  transition: 1000ms;
}

.productIn01 a:hover {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.6));
  transition: 250ms;
}

.productInCough {
  background-color: var(--blue);
  background-image: url(../images/products/pharmaceutical/cough-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productIn02 a {
  background-image: url(../images/backgrounds/productLinkBlue.svg);
  color: rgb(1, 122, 163);
  transition: 1000ms;
}

.productInCough a:hover {
  color: rgb(0, 127, 103);
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.6));
  transition: 250ms;
}

.productInDigestive {
  background-color: var(--cyan);
  background-image: url(../images/products/pharmaceutical/digestive-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productIn03 a {
  background-image: url(../images/backgrounds/productLinkCyan.svg);
  color: rgb(1, 122, 163);
  transition: 1000ms;
}

.productIn03 a:hover {
  color: var(--blueLight);
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.6));
  transition: 250ms;
}

/* medical-and-personal-supplies */

.productInMedicalDevices {
  background-color: var(--green);
  background-image: url(../images/products/medical-and-personal-supplies/Medical-Devices-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInCosmetic {
  background-color: var(--blue);
  background-image: url(../images/products/medical-and-personal-supplies/cosmetic-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInFirstAid {
  background-color: var(--cyan);
  background-image: url(../images/products/medical-and-personal-supplies/first-aid-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInSingleUse {
  background-color: var(--cyan);
  background-image: url(../images/products/single-use-medical-devices/consumables-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInNeedles {
  background-color: var(--blue);
  background-image: url(../images/products/single-use-medical-devices/needles-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInCatheters {
  background-color: #4fb4a0;
  background-image: url(../images/products/single-use-medical-devices/catheters-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInWaste {
  background-color: var(--cyan);
  background-image: url(../images/products/medical-waste-packaging/waste-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInWasteSharp {
  background-color: var(--green);
  background-image: url(../images/products/medical-waste-packaging/waste-sharp.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInWasteCito {
  background-color: var(--cyan);
  background-image: url(../images/products/medical-waste-packaging/waste-cito.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInWastePharmaceutical {
  background-color: var(--green);
  background-image: url(../images/products/medical-waste-packaging/waste-pharma.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInWasteBags {
  background-color: var(--green);
  background-image: url(../images/products/medical-waste-packaging/waste-bags.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInWasteMegaboxes {
  background-color: var(--blue);
  background-image: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInFootwear {
  background-color: var(--blue);
  background-image: url(../images/products/medical-anatomic-footwear/footwear-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productInBloodVials {
  background-color: var(--blue);
  background-image: url(../images/products/single-use-medical-devices/blood-collection-vials/header.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productIn::before {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/productShadow.svg);
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.7;
}

.productHeader {
  max-width: var(--minWidth);
  margin: 0px auto;
  aspect-ratio: 5 / 1;
  box-sizing: border-box;
  display: grid;
}

.productHeaderIn {
  position: relative;
  box-sizing: border-box;
  border: 1px solid #ccc;
  margin: 10px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.productHeaderIn::before {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/productShadow.svg);
  background-position: left center;
  background-repeat: no-repeat;
  filter: opacity(0.4);
  z-index: 1;
  opacity: 0.7;
}

.productHeaderVitamins {
  background-color: var(--green);
  background-image: url(../images/products/pharmaceutical/vitamins-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderCough {
  background-color: var(--blue);
  background-image: url(../images/products/pharmaceutical/cough-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderDigestive {
  background-color: var(--cyan);
  background-image: url(../images/products/pharmaceutical/digestive-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderJoint {
  background-color: var(--green);
  background-image: url(../images/products/pharmaceutical/joint-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderCalming {
  background-color: var(--blue);
  background-image: url(../images/products/pharmaceutical/calming-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderCirculatory {
  background-color: var(--cyan);
  background-image: url(../images/products/pharmaceutical/circulatory-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderIntimate {
  background-color: var(--green);
  background-image: url(../images/products/pharmaceutical/intimate-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderUrinary {
  background-color: var(--blue);
  background-image: url(../images/products/pharmaceutical/urinary-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderLifestyle {
  background-color: var(--cyan);
  background-image: url(../images/products/pharmaceutical/lifestyle-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderMedicalDevices {
  background-color: var(--green);
  background-image: url(../images/products/medical-and-personal-supplies/Medical-Devices-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderCosmeticProducts {
  background-color: var(--blue);
  background-image: url(../images/products/medical-and-personal-supplies/cosmetic-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderFistAid {
  background-color: var(--cyan);
  background-image: url(../images/products/medical-and-personal-supplies/first-aid-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderSingleUse {
  background-color: var(--cyan);
  background-image: url(../images/products/single-use-medical-devices/consumables-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.productHeaderTtl {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--blue);
  font-family: "Roboto Slab", serif;
  font-size: 2.0rem;
  line-height: 2.4rem;
  font-weight: 400;
  padding: 20px 30px 20px 30px;
  background-color: rgb(255, 255, 255);
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

.sbrLinksGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px auto;
  max-width: var(--minWidth);
  padding: 0 10px;
  column-gap: 20px;
  row-gap: 0px;
}

.sbrLink {
  box-sizing: border-box;
  display: grid;
}

.sbrLink a {
  display: flex;
  align-items: center;
  height: 120px;
  text-decoration: none;
  color: var(--blue);
  font-family: "Roboto Slab", serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4rem;
  padding: 0px 0px 0px 40px;
  background-image: url(../images/backgrounds/sbrLink.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100px;
  transition: 1000ms;
  white-space: nowrap;
  overflow: hidden;
}

.sbrLink a:hover {
  color: var(--blueLight);
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  transition: 250ms;
}

.main {
  display: block;
  margin: 0px auto;
  max-width: 100%;
}

.mainHighlight {
  background-image: url(../images/backgrounds/headerBg.svg);
  background-repeat: repeat-x;
  background-size: 60px auto;
}

.mainSimple {
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 40px 20px 0px 20px;
}

.mainShadow {
  display: block;
  margin: 0px auto;
  max-width: 100%;
  background-color: hsl(0deg 0% 0% / 0.05);
  background-image: url(../images/backgrounds/wideBigShadow.svg);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 80px auto;
}

.mainGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 0 10px;
  column-gap: 20px;
  row-gap: 0px;
}

.mainGrid2Col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 40px 10px;
  column-gap: 30px;
  row-gap: 30px;
}

.mainGrid3Col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 40px 10px;
  gap: 30px;
}

.mainGrid4Col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 40px 10px;
  gap: 30px;
}

.Grid2col {
  grid-column: span 2;
  padding: 40px 10px;
}

.Grid1col {
  grid-column: span 1;
  padding: 40px 0px;
}

.mainGridShadow {
  background-image: url(../images/backgrounds/shadowBottom.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto auto;
}

.mainGridLinks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 0px 10px 40px 10px;
  column-gap: 20px;
  row-gap: 0px;
}

.mainGridLinks a {
  display: flex;
  align-items: center;
  height: 120px;
  text-decoration: none;
  color: var(--blue);
  font-family: "Roboto Slab", serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4rem;
  padding: 0px 20px 0px 40px;
  background-image: url(../images/backgrounds/gridLinks.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100px;
  transition: 500ms;
}

.mainGridLinks a:hover {
  color: var(--blueLight);
  transition: 250ms;
}

.horizontalShadow {
  background-image: url(../images/backgrounds/shadowBottom.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto auto;
  width: 100%;
  height: 20px;
  margin: 40px 0px 30px 0px;
}

.certification {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0px 0px 0px;
}

.certification img {
  width: 100px;
}

.cardWhite {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow:
    0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075),
    0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075),
    0 16px 16px hsl(0deg 0% 0% / 0.075);
}

.button {
  display: block;
  background-color: hsl(15deg, 84%, 50%);
  color: white;
  font-family: "Roboto Slab", serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4rem;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  box-shadow: 0px 5px 7px hsl(0deg 0% 0% / 0.20);
  transition: 400ms;
}

.button:hover {
  background-color: hsl(15deg, 84%, 50%);
  transition: 250ms;
  box-shadow: 0px 0px 0px hsl(0deg 0% 0% / 0.50);
}

.Item01 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow:
    0 1px 1px hsl(0deg 0% 0% / 0.015),
    0 2px 2px hsl(0deg 0% 0% / 0.015),
    0 4px 4px hsl(0deg 0% 0% / 0.015),
    0 8px 8px hsl(0deg 0% 0% / 0.015),
    0 16px 16px hsl(0deg 0% 0% / 0.015);
}

.Item01 h1 {
  margin-bottom: 10px;
}

.Item01Photo {
  flex: 0 0 40%;
  text-align: center;
}

.Item01Text {
  flex-grow: 1;
}

.Item02 {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow:
    0 1px 1px hsl(0deg 0% 0% / 0.015),
    0 2px 2px hsl(0deg 0% 0% / 0.015),
    0 4px 4px hsl(0deg 0% 0% / 0.015),
    0 8px 8px hsl(0deg 0% 0% / 0.015),
    0 16px 16px hsl(0deg 0% 0% / 0.015);
}

.Item02 h1 {
  font-size: 1.4rem;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 10px;
}

.Item02 h2 {
  font-size: 1.2rem;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 10px;
}

.Item02 p {
  margin-bottom: 0px;
}


.Item02Photo {
  text-align: center;
}

.Item02Text {
  width: 100%;
  box-sizing: border-box;
  overflow: show;
  word-wrap: break-word;
}

.map01 {
  display: block;
  margin: 30px auto;
  max-width: var(--minWidth);
  aspect-ratio: 1920 / 780;
  background-color: var(--cyan);
  background-image: url(../images/map01.svg);
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
}

.map02 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 40px;
  margin: 10px auto 0px auto;
  max-width: var(--minWidth);
  aspect-ratio: 1920 / 320;
  background-color: var(--green);
  background-image: url(../images/map02.svg);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.map02 h1 {
  color: #ffffff;
}

.contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 30px 20px;
}

.contactItem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px;
}

.buttonContact {
  display: block;
  background-color: var(--green);
  color: white;
  font-family: "Roboto Slab", serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4rem;
  padding: 10px 10px 10px 40px;
  border-radius: 5px;
  text-decoration: none;
  width: auto;
  text-align: left;
  box-shadow: 0px 5px 7px hsl(0deg 0% 0% / 0.20);
  transition: 400ms;
  background-image: url(../images/icons/email.svg);
  background-position: left 5px center;
  background-repeat: no-repeat;
  background-size: auto 32px;
}

.buttonCall {
  background-image: url(../images/icons/phone.svg);
}

.buttonText {
  background-image: url(../images/icons/whatsapp.svg);
}

.buttonContact:hover {
  background-color: var(--greenDark);
  transition: 250ms;
  box-shadow: 0px 0px 0px hsl(0deg 0% 0% / 0.50);
}

.mainFooter {
  display: block;
  margin: 0px auto;
  max-width: 100%;
  background-color: hsl(0deg 0% 0% / 0.75);
  background-image: url(../images/backgrounds/wideBigShadowDark.svg);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 80px auto;
  padding: 30px 0px 0px 0px;
}

.footer {
  display: flex;
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 40px 20px 0px 20px;
  align-items: center;
  justify-content: space-between;
}

.footerLogo {
  width: 120px;
  height: auto;
}

.footerLogoLink {
  display: block;
  filter: opacity(80%) drop-shadow(0px 0px 0px hsl(0deg 0% 0% / 0.00));
  transition: filter 750ms;
}

.footerLogoLink:hover {
  filter: opacity(100%) drop-shadow(0px 5px 3px hsl(0deg 0% 0% / 1.00));
  transition: filter 250ms;
}

.footerSocial {
  display: flex;
}

.footerSocialLinkedIn {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/icons/linkedin.svg);
  filter: opacity(80%) drop-shadow(0px 0px 0px hsl(0deg 0% 0% / 0.00));
  transition: filter 750ms;
}

.footerSocialLinkedIn:hover {
  filter: opacity(100%) drop-shadow(0px 5px 3px hsl(0deg 0% 0% / 1.00));
  transition: filter 250ms;
}

.footerMenu {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 20px 20px 0px 20px;
}

.footerMenu a {
  display: block;
  text-decoration: none;
  color: hsl(0deg 0% 100% / 0.80);
  font-family: "Roboto Slab", serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 5px 5px;
  margin: 10px 0px;
  transition: 750ms;
}

.footerMenu a:hover {
  color: hsl(0deg 0% 100% / 1.00);
  filter: drop-shadow(0px 2px 3px hsl(0deg 0% 0% / 0.70));
  transition: 750ms;
}

.footerMenu .Title {
  color: hsl(0deg 0% 100% / 0.80);
  font-size: 1.1rem;
  font-weight: 400;
  border-bottom: 1px solid hsl(0deg 0% 100% / 0.20);
  margin: 20px 0px;
}

.footerLegal {
  max-width: var(--minWidth);
  margin: 0px auto;
  padding: 60px 20px;
  text-align: right;
}

.footerLegal p {
  color: hsl(0deg 0% 100% / 0.40);
  font-size: 0.8rem;
}


@media only screen and (max-width: 1250px) {

  .headerMenu {
    gap: 12%;
  }

  .productIn a {
    font-size: 0.9rem;
    line-height: 1.2rem;
  }

  .sbrLink a {
    font-size: 0.8rem;
    line-height: 1.0rem;
  }

  .mainGridLinks {
    grid-template-columns: repeat(3, 1fr);
  }

  .mainGrid4Col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0px auto;
    max-width: var(--minWidth);
    padding: 40px 10px;
    gap: 30px;
  }
}

@media only screen and (max-width: 1000px) {

  .headerMenu {
    gap: 10%;
  }

  .mainGrid2Col {
    grid-template-columns: repeat(1, 1fr);
    margin: 0px auto;
    max-width: 100%;
  }

  .mainGrid4Col {
    grid-template-columns: repeat(1, 1fr);
  }

  .productsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .productIn a {
    font-size: 1.1rem;
    line-height: 1.3rem;
  }

  .sbrLink a {
    font-size: 0.8rem;
    line-height: 1.0rem;
  }

}

@media only screen and (max-width: 860px) {
  :root {
    --minWidth: 100%;
  }

  .onlyDesktopFlex {
    display: none !important;
  }

  .onlyMobileFlex {
    display: flex !important;
  }

  .noTopPadding {
    padding-top: 0px !important;
  }

  .headerMenu {
    justify-content: flex-end;
  }

  .headerMenuShadow {
    height: 20px;
    background-image: url(../images/backgrounds/shadowBottomHalf.svg);
    background-position: top right;
    background-size: auto;
    background-repeat: no-repeat;
  }

  .mobileMenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    visibility: visible;
    position: absolute;
    width: 100%;
    padding: 0px 0px 20px 0px;
    top: 100px;
    left: 0px;
    margin: 0px auto;
    background-color: hsla(0, 0%, 95%, 1.0);
    z-index: 40;
    transition: transform 0.3s ease-out, opacity 0.3s ease-in, box-shadow 0.3s ease-out;
    opacity: 1;
    box-shadow: 0px 5px 7px hsl(0deg 0% 0% / 0.20);
  }

  .mobileMenu a {
    width: 100%;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-family: "Roboto Slab", serif;
    font-size: 1.0rem;
    font-weight: 300;
    padding: 8px 10px;
    white-space: nowrap;
    padding: 0px 20px;
  }

  .mobileMenuOFF {
    transition: transform 0.3s ease-in, opacity 0.3s ease-in, box-shadow 0.3s ease-in;
    transform: translateX(-100vw);
    opacity: 0.4;
    box-shadow: 0px 1px 1px hsl(0deg 0% 0% / 0.010);
  }

  .productsGrid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0px 0px;
  }

  .productsGridHome {
    grid-template-columns: repeat(1, 1fr);
    margin: 20px auto;
    max-width: var(--minWidth);
    height: auto;
  }

  .productHome {
    box-sizing: border-box;
    display: grid;
    aspect-ratio: 2.35 / 1;
  }

  .productHome1 {
    grid-column: 1 / 2;
    grid-row: auto
  }

  .productHome2 {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .productHome3 {
    grid-column: 1 / 2;
  }

  .productHome4 {
    grid-column: 1 / 2;
  }

  .productHome5 {
    grid-column: 1/ 2;
  }

  .product1col2row {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 2.35 / 1;
  }

  .product2col2row {
    grid-column: span 1;
    grid-row: span 1;
  }

  .productHeader {
    max-width: 100%;
    margin: 0px auto;
    aspect-ratio: 4 / 2;
  }

  .productHeaderIn {
    margin: 0px;
  }

  .productHeaderTtl {
    font-size: 1.2rem;
    line-height: 1.4rem;
    padding: 20px 20px 20px 20px;
  }

  .sbrLinksGrid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 20px;
  }

  .sbrLink a {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4rem;
    height: 70px;
    padding: 0px 20px 0px 30px;
    background-size: auto 70px;
    transition: 1000ms;
  }

  .mainGrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }

  .Item01 {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .Item01Photo {
    flex: 0 0 100%;
    text-align: center;
  }

  .Item01Photo img {
    width: 80%;
    margin: 0px auto;
  }

  .mainGridLinks {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0px auto;
    max-width: var(--minWidth);
    padding: 0 20px 30px 20px;
    column-gap: 20px;
    row-gap: 0px;
  }

  .map01 {
    aspect-ratio: 4 / 5;
  }

  .map02 {
    aspect-ratio: 4 / 4;
    background-size: cover;
    background-position: center center;
  }

  .contact {
    grid-template-columns: repeat(1, 1fr);
  }

  .footerMenu {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
    padding: 20px 20px 0px 20px;
  }

  .footerLegal {
    text-align: left;
  }

}