@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
*
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    width: 100vw;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: background-color .5s ease;
    z-index: 1000;
}

.container{
    width: 100%;
    max-width: 70vw;
    margin: 0 auto;
    padding: 0 0.8vw;
}

.logo-before {
    width: 12%;
    position: fixed;
    display: block;
    margin-left: -1.8vw;
}

.logo-before img {
    width: 100%;
}

.animate-overlay-scroll-active {
    animation: logoChangeColorScrollActive 5.4s forwards;
}

.logo-after {
    width: 12%;
    position: fixed;
    display: none;
    margin-left: -1.8vw;
}

.logo-after img {
    width: 100%;
}

@keyframes logoChangeColor {
    0% {

    }
    70% {
        -webkit-filter: grayscale(1) invert(1);
        filter: grayscale(1) invert(1);
    }
    100% {
        -webkit-filter: grayscale(1) invert(1);
        filter: grayscale(1) invert(1);
    }
}

@keyframes logoChangeColorScrollActive {
    0% {
        -webkit-filter: grayscale(1) invert(1);
        filter: grayscale(1) invert(1);
    }
    100% {
        -webkit-filter: grayscale(1) invert(1);
        filter: grayscale(1) invert(1);
    }
}

@keyframes logoChangeColorReverse {
    0% {
        -webkit-filter: grayscale(1) invert(1);
        filter: grayscale(1) invert(1);
    }
    40% {
        -webkit-filter: grayscale(0) invert(0);
        filter: grayscale(0) invert(0);
    }
    100% {
        -webkit-filter: grayscale(0) invert(0);
        filter: grayscale(0) invert(0);
    }
}

.nav{
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5); /* navbar bottom white border #color */
    transition: height .5s ease;
    /* animation: dimNavReverse 1s forwards; */
}

/* .nav.entry {
    animation: dimNav 5s forwards;
} */

/* .nav ul {
    display: flex;
} */

.nav ul a{
    text-decoration: none;
    color: #fff; /* navbar text color #color */
    font-size: 0.9vw;
    font-weight: 300;
    /* display: block; */
    /* animation-name: example-backwards;
    animation-duration: 1s;
    animation-fill-mode: forwards; */
    /* vertical-align: middle; */
    
    /* animation-name: dimReverse;
    animation-duration: 1s;
    animation-fill-mode: backwards; */
}

/* .nav .nav-cta {
    animation-name: dimOrderSample;
    animation-duration: 1s;
    animation-fill-mode: backwards;
} */

.nav a {
    font-size: 0.9vw;
}

/* .nav ul li:before {
    content: '';
    display: inline;
    height: 100%;
    vertical-align: middle;
} */


/* Dim animation when overlay appears for navbar other than order sample */
/* .nav.entry a {
    animation-name: dim;
    animation-duration: 5s;
    animation-fill-mode: forwards;
} */


/* Dim animation when overlay appears exclusive for order sample */
/* .nav.entry .nav-cta {
    animation-name: whiteColor;
    animation-duration: 5s;
    animation-fill-mode: forwards;
} */

@keyframes borderBottomColorChange {
    0% {
        
    }
    40% {
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    }
    100% {
        border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    }
}

@keyframes dimNav {
    0%   {opacity: 1;}
    20%  {opacity: 0;}
    50% {opacity: 1;}
    80% {border-bottom: 2px solid rgba(0, 0, 0, 0.8);}
    100% {border-bottom: 2px solid rgba(0, 0, 0, 0.8);}
}
@keyframes dimReverse {
    0%   {opacity: 1; color:#313131;border-bottom: 2px solid rgba(0, 0, 0, 0.8);}
    20%  {opacity: 0;border-bottom: 2px solid rgba(255, 255, 255, 0.5);}
    50% {opacity: 1;color:  #fff;}
    100% {color:  #fff;}
}

@keyframes dimNavCTA {
    0%   {opacity: 1; background-color: #807664;}
    20%  {opacity: 0;}
    50% {opacity: 1; background-color: #313131;}
    100% {background-color: #313131;}
}

@keyframes dimNavReverse {
    0%   {opacity: 1; background-color: #313131;}
    20%  {opacity: 0;}
    50% {opacity: 1;}
    100% {}
}

@keyframes dim {
    0%   {opacity: 1; color: #fff;}
    20%  {opacity: 0;}
    50% {opacity: 1;color: #313131;}
    100% {color: #313131;}
}

@keyframes dimColor {
    0%   {color: #fff;}
    20%  {}
    50% {color: #313131;}
    100% {color: #313131;}
}

@keyframes dimColorScrollActive {
    0%   {color: #313131;}
    20%  {}
    50% {color: #313131;}
    100% {color: #313131;}
}

@keyframes whiteColor {
    0%   {color: white;}
    20%  {}
    50% {color: white;}
    100% {color: white;}
}

@keyframes dimOrderSample {
    0%   {opacity: 1;}
    20%  {opacity: 0;}
    50% {opacity: 1;}
    100% {}
}

@keyframes dimReverseColor {
    0%   {color: #313131}
    20%  {}
    50% {color:  #fff;}
    100% {color:  #fff;}
}

/* @keyframes example-backwards {
    0%   {opacity: 1; color: black;}
    20%  {opacity: 0;}
    50% {opacity: 1;color: rgba(179, 59, 59);}
    100% {color: rgba(179, 59, 59);}
} */

.nav-list{
    list-style: none;
    display: flex;
    margin-right: auto;
    margin-left: 38vw;
}

.nav-link{
    margin: 0vh 1.2vw;
    position: relative; 
    white-space: nowrap;
    /* font-size: 1.8vh !important; */
    /* display: none; */
}

.nav.entry .nav-link::after {
    /* background-color: #313131; */
    animation: dimBorder 2s forwards; 
}

.nav .nav-link::after {
    /* background-color: #313131; */
    animation: dimBorderReverse 2s forwards;
    background-color: #fff;
}

.nav .nav-link:hover::after {
    /* background-color: #313131; */
    transform: scaleX(1);
}

/* .entry .nav.entry .nav-link::after {
    animation: dimBorderScrollingActive 2s forwards; 
} */

@keyframes dimBorder {
    0% {
        opacity: 0;
        background-color: white;
    }
    20% {
        opacity: 0;
    }
    50% {
        background-color: white;
        opacity: 1;
    }
    100% {
        background-color: #313131;
    }
}

/* @keyframes dimBorderScrollingActive {
    0% {
        opacity: 0;
        background-color: #313131;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        background-color: #313131;
    }
} */

@keyframes dimBorderReverse {
    0% {
        opacity: 1;
        background-color: #313131;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        background-color: #fff;
    }
    100% {
        opacity: 100;
        background-color: #fff;
    }
}

.nav.entry .nav-link:hover::after {transform: scaleX(1);}

.nav-link.about {
    cursor: pointer;
}

.fa-chevron-down {
    /* -webkit-text-stroke: 0.5px #ffccbc; */
    transform: scaleY(1);
    transition: transform 0.2s linear;
}

.fa-chevron-down.open {
    /* -webkit-text-stroke: 0.5px rgb(210, 229, 232); */
    transform: scaleY(-1);
    transition: transform 0.2s linear;
}

/* .nav-link-indo {
    margin: 0vh 1.2vw;
    position: relative;
    display: none;
} */

.nav-link::after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff; /* navbar bottom white border when hovered #color */
    position: absolute;
    left: 0;
    bottom: -3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}

.nav-link:hover::after{
    transform: scaleX(1);
}

.nav-cta{
    display: inline-block;
    background-color: #807664; /* order sample navbar container color #color */
    color: #fff; /* order sample navbar text color #color */
    white-space: nowrap;
    padding: 1vh 2vh;
    border-radius: 2vh;
    transition: all .5s ease;
}

.nav-cta:hover{
    background-color: #c5bfa7; /* order sample container color when hovered #color */
}

.nav.entry .nav-cta {
    background-color: #414141;
}
.nav.entry .nav-cta:hover {
    background-color: #151515;
}


.dropdown-content {
  position: absolute;
  display: none;
  /* visibility: hidden; */
  opacity: 0;
  /* transform: translateY(-3em); */
  /* transition: all 0.3s ease 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s; */
  animation: animatedropdown 2s ease-in-out forwards;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 8.5%;
  padding-top: 3vh;
  z-index: 10;

  /* display: none;
  position: absolute;
  background: transparent;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 8.5%;
  padding-top: 3.5%;
  z-index: 1; */

  /* margin: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
}

@keyframes animatedropdown {
    0% {
        opacity: 0;
        transform: translateY(2vh);
    }
    30% {
        transform: translateY(0);
    }
    60% {
        opacity: 1;
        
    }
    100% {
        opacity: 1;
    }
}

/* .dropdown:focus .dropdown-content,
.dropdown:focus-within .dropdown-content, */
.dropdown a:hover + .dropdown-content, .dropdown-content:hover {
  display: block;
  /* visibility: visible; */
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0.3s;
}

.dropdown-content a {
  color: #fff1e6 !important; /* dropdown menu text color #color */
  background-color: rgba(169, 126, 86, 0.6); /* dropdown menu container color #color */
  padding: 1.5vh 0vh;
  text-decoration: none;
  display: block;
}


.nav.entry .dropdown-content a {
    color: #313131 !important;
    background-color: rgb(192, 221, 224);
}

.products-dropdown {
  display: inline-block;
  position: relative;
}

.products-dropdown:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom left;
  transition: transform .2s ease-out;
}

.products-dropdown:hover:after {
  transform: scaleX(1);
}

.scrolling-active .products-dropdown:after {
    background-color: #313131;
}

.nav.entry .products-dropdown:after {
    background-color: #313131;
}


/*Apply styles after scroll*/
.scrolling-active{
    background-color: #fff; /* navbar background color when scrolled #color */
    box-shadow: 0 3px 1rem rgba(0,0,0,.1); /* navbar shadow when scrolled #color */
}

.scrolling-active .logo-before {
    display: none;
}

.scrolling-active .logo-after {
    display: block;
}

.scrolling-active .nav{
    height: 6.6rem;
}

.scrolling-active .nav ul a{
    color: #313131 !important; /* navbar text color when scrolled #color */
}

.scrolling-active .nav-cta{
    background-color: #313131; /* order sample container when scrolled #color */
    color: #fff; /* order sample text color when scrolled #color */
}

.scrolling-active .nav-cta:hover{
    background-color: #151515; /* order sample container when scrolled on hover #color */
}

.scrolling-active .nav-link::after{
    background-color: #313131 !important; /* navbar text bottom border on scroll on hover #color */
}

.scrolling-active .dropdown-content a {
    background-color: #f8f8f8 !important; /* navbar text bottom border on scroll on hover #color */
}

/*Apply styles after scroll end*/

/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white; /* icon-bar on products page icon color #color */
  font-size: 20px;
}

.icon-bar a:hover {
  background-color: rgb(54, 51, 51); /* icon-bar on products page container color on hover #color */
}

.whatsapp {
  background: #55ACEE; /* icon-bar on products page container color for facebook #color */
  color: white;
}

.instagram {
  background: #3B5998; /* icon-bar on products page container color for instagram #color */
  color: white;
}

.linkedin {
  background: #007bb5; /* icon-bar on products page container color for linkedin #color */
  color: white;
}

.about-panel {
    background-color: rgb(210, 229, 232);
    position: fixed;
    /* visibility: hidden; */
    /* display: none; */
    /* visibility: hidden; */
    /* transform: translateY(-100vh); */
    /* transform: translateY(100vh); */
    /* display: none; */
    /* transition: translateY(20px); */
    /* width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    position: fixed; */
    /* opacity: 0; */
    width: 100vw;
    height: 0;
    z-index: 100;
    transition: height 0.5s ease-out;
    transition-delay: 1s;
    /* animation: animatedropdown 0.5s ease-in-out forwards; */

    /* -webkit-transition: opacity 0.8s, visibility 0.8s;
    transition: opacity 0.8s, visibility 0.8s;
    transition-delay: 0.5s; */
    /* transition: all 0.8s ease; */
    /* top: -100px; */
}

.about-panel.entry {
    /* display: block; */
    visibility: visible;
    position: fixed;
    height: 100vh;
    width: calc(100vw - 1em);
    transition: height 0.5s ease-in;
    transition-delay: 0.7s;
    /* opacity: 1; */
    /* top: 0;
    transition: all 0.8s ease; */
    /* -webkit-transition: opacity 0.8s, visibility 0.8s;
    transition: opacity 0.8s, visibility 0.8s;
    transition-delay: 1s; */
    /* transform: translateY(20vh); */
}

.about-panel .inner {
    /* position: fixed; */
    /* visibility: hidden; */
    /* display: none; */
    /* opacity: 0; */
    /* position: relative; */
    /* position: absolute; */
    display: flex;
    position: relative;
    width: 75vw;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
    /* margin-left: 30%; */
    overflow: hidden;
    height: 100%;
}

.about-panel .inner .image {
    /* flex: 50%; */
    /* width: calc(57.14286% - 1.60714rem);
    height: 100%; */
    position: relative;
    /* padding: 2vh 2vh; */
    padding: 0 0 0 3vw;
    flex: 50%;
}

.image img {
    position: absolute;
    height: auto;
    width: 40vw;
}

#our-story-image {
    margin-top: 3vh;
    transform: rotate(0deg) translateY(-50%);
    opacity: 1;
}
#our-values-image {
    margin-top: -2vh;
    transform: rotate(2deg) translateY(-52%);
    opacity: 0;
}
#sustainability-image {
    margin-top: 1vh;
    transform: rotate(-1deg) translateY(-50%);
    opacity: 0;
}
#covid-19-image {
    margin-top: 0vh;
    transform: rotate(2deg) translateY(-48%);
    opacity: 0;
}
@keyframes fadein {
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes fadeinprev {
    0% {opacity:1;}
    100% {opacity:1;}
}
@keyframes fadeout {
    0% {opacity:1;}
    100% {opacity:0;}
}

.about-panel .inner ul {
    list-style: none;
    /* position: fixed; */
    display: block;
    flex: 50%;
    /* visibility: hidden; */
    opacity: 1;
    /* padding: 0 15vw; */
    padding: 0 7vw 0 0;
    transform: translateX(12%);
    /* height: 0; */
    /* transform: translate(-50%, 50%); */
    /*animation: 2s slide-up 0s forwards; */
}

.about-panel.entry .inner ul {
    /* visibility: visible; */
    /* display: block; */
    /* opacity: 1; */
    /* position: fixed; */
    /* transition: height 0.5s cubic-bezier(.63,.05,.43,1.7); */
    /* animation: 2s slide-down 1.5s forwards; */
    /* transform: translate(30%, 10%); */
    /* height: 100%; */
    /* transition: height 2s ease forwards; */
    /* transition: height 0.5s cubic-bezier(.63,.05,.43,1.7); */
    /* transition: all 4s ease; */
    /* -webkit-transition: opacity 1s, visibility 1s;
    transition: opacity 1s, visibility 1s;
    transition-delay: 1.5s; */
    /* transform: translateY(-20px); */
}

.about-panel .inner ul li {
    /* text-align: center;
    margin: 0; */
    /* position: fixed; */
    /* height: 0; */
    /* height: 15%; */
    /* line-height: 15%; */
    /* animation-name: animateIn;
  animation-duration: 350ms;
  animation-delay: calc(var(--animation-order) * 100ms);
  animation-fill-mode: both;
  animation-timing-function: ease-in-out; */
}

.about-panel.entry .inner ul li {
    /* position: fixed; */
    /* height: 30%; */
    /* transition: height 2s ease forwards; */
    
}


.overlay-links-out {
    /* padding: 0; */
    display: block;
    /* margin: 24px auto;
    width: 320px; */
    list-style-type: none;
}

.overlay-links-out li {
    list-style-type: none;
    display: block;
    /* height: 72px;
    width: 320px;
    background-color: #009688; */
    animation-name: animateOut;
    animation-duration: 250ms;
    animation-delay: calc(var(--animation-order) * 80ms);
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.overlay-links {
    /* padding: 0; */
    display: block;
    /* margin: 24px auto;
    width: 320px; */
    list-style-type: none;
}
  
.overlay-links li {
    list-style-type: none;
    display: block;
    /* height: 72px;
    width: 320px;
    background-color: #009688; */
    animation-name: animateIn;
    animation-duration: 1s;
    animation-delay: calc(var(--animation-order) * 100ms);
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.overlay-image {
    animation: animateImage 3s ease-in;
}
.overlay-image-out {
    animation: animateImageOut 2s ease-in;
}
  
  /* li + li {
    margin-top: 16px;
  } */
  
  /* @keyframes waitForStart {
      0% {
          animation-name: animateIn
      }
  } */

@keyframes animateIn {
    0% {
      opacity: 0;
      /* transform: scale(0.6) translateY(-8px); */
    }
    100% {
      opacity: 1;
    }
}

@keyframes animateOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}

@keyframes animateImage {
    0% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes animateImageOut {
    0% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.about-panel .inner ul li a {
    /* position: relative; */
    font-size: 4vw;
    font-weight: 400;
    transition: 0.5s;
    /* visibility: hidden; */
}

.about-panel.entry .inner ul li a {
    /* position: relative; */
    /* visibility: visible; */
    /* transition: height 2s ease forwards; */
}

@keyframes slide-up {
    0% {
        transform: translate(30%, 50%);
    }
    100% {
      transform:translate(30%, -100%);
    }
}

@keyframes slide-down {
    0% {
        transform: translate(30%, 10%);
        opacity: 0;
    }
    100% {
      transform:translate(30%, 30%);
      opacity: 1;
    }
}

.about-panel .inner ul li a:hover {
    color: #948c8c;
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #ad8762 center no-repeat; /* index home page background color #color */
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner::after{
    content: '';
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
}

.landing-page-text {
    max-width: 80vw;
    transform: translateX(40%);
}

.banner #home-text {
    left: 15vw;
    margin-bottom: calc(0.5*5vh);
    font-family: 'Poppins', sans-serif;
    font-size: 2vw;
    font-weight: 700;
    color: #bde0fe;
}

.banner #home-desc {
    left: 15vw;
    /* margin-top: 15vh; */
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1vw;
    color: #faedcd;
}

.banner .smoke {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.6;
}

.banner .smoke img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 33%;
    width: 16vw;
    animation: animate calc(3s * var(--i)) linear infinite;
}

.cardboard {
    z-index: 5;
}

.cardboard img {
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translateY(-50%);
    width: 40vw;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    50% {opacity:1;}
    100% {
        opacity: 0;
        transform: scale(2.1);
    }
}

.product-section {
    position: relative;
    padding: 10vh 10vh;
    /* height: 100vh; */
    background-color: #fff;
}

.about-section {
    height: 150vh;
    padding: 10vh 0vh;
    /* background-color: #e4ddce; */
    background-color: #fff;
}

.contact-section {
    height: 100vh;
    padding: 10vh 10vh;
    background-color: #ebe5d9;
}

.connect-section {
    height: 80vh;
    padding: 10vh 10vh;
    background-color: #d0d0d0;
}

.copyright-section {
    height: 5%;
}

.products {
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.product-desc {
    text-align: center;
    z-index: 10;
}

.products-title .product-desc p {
    font-size: 1.3vw;
    font-weight: 800;
    margin-top: -1vh;
    margin-bottom: 5vh;
    z-index: 10;
}

.products-title h2 {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 1vh;
    z-index: 10;
}
.products-title .eyebrow-decoration {
    margin-bottom: 2%;
}

.og-grid {
    background-color: #e7eeed;
}

.products .products-grid ul li img {
    z-index: 10;
}

.products-grid ul li a img{
    transition: all 0.3s;
}

.products-grid ul li a:hover img {
    transform: scale(1.2);
}

.about {
    position: relative;
    margin-top: 3vh;
    margin-bottom: 5vh;
}

.about-desc {
    height: 55vh;
    width: 45vw;
    background-color: #ebf0f3;
}

.about-desc .title {
    position: relative;
    width: 40%;
    transform: translate(140%, 100%);
}

.about-desc .title .eyebrow-decoration {
    margin-right: 15%;
    margin-top: 4%;
}

.about-desc h2 {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 2vw;
    text-align: center;
    margin-bottom: 5%;
    z-index: 10;
}

.about-desc .desc p {
    position: relative;
    width: 63%;
    height: 80%;
    transform: translate(43%, 65%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8vw;
    font-weight: 600;
    z-index: 10;
}

.about-info {
    position: absolute;
    height: 55vh;
    width: 45vw;
    right: 0;
    background-color: #F3F0ED;
    margin-top: 3%;
    z-index: 10;
}

.about-info .title {
    position: relative;
    width: 40%;
    transform: translate(20%, 105%);
}

.about-info .title .eyebrow-decoration {
    margin-left: 8%;
    margin-top: 4%;
}

.about-info h2 {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 2vw;
    text-align: center;
    margin-bottom: 5%;
    transform: translateX(-7%);
    width: 35vw;
    z-index: 10;
}

.about-info .desc p {
    position: relative;
    width: 63%;
    height: 80%;
    transform: translate(15%, 75%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8vw;
    font-weight: 600;
    z-index: 10;
}

.why-us-1 {
    position: absolute;
    width: 60%;
    height: 10%;
    /* background-color: #c4ce88; */
    top: 40%;
    transform: translate(19.5%, -5%);
    z-index: 10;
}

.why-us-1 a {
    position: relative;
    top: -55%;
    left: -2%;
}

.why-us-1 .text1 {
    position: relative;
    font-size: 1vw;
    font-weight: 500;
    top: 120%;
    left: -26%;
}

.why-us-2 {
    position: absolute;
    width: 60%;
    height: 10%;
    /* background-color: #a0a3cf; */
    top: 40%;
    transform: translate(19.5%, 155%);
    z-index: 10;
}

.why-us-2 a {
    position: relative;
    top: -55%;
    left: -2%;
}

.why-us-2 .text1 {
    position: relative;
    font-size: 1vw;
    font-weight: 500;
    z-index: 10;
    top: -41%;
    left: 15%;
}

.why-us-3 {
    position: absolute;
    width: 60%;
    height: 10%;
    /* background-color: #e9ddbc; */
    top: 40%;
    transform: translate(19.5%, 315%);
    z-index: 10;
}

.why-us-3 a {
    position: relative;
    top: -55%;
    left: -2%;
}

.why-us-3 .text1 {
    position: relative;
    font-size: 1vw;
    font-weight: 500; 
    z-index: 10;
    top: -200%;
    left: 68%; 
}

#why-us-icon-loyal {
    transform: translate(1vw, 2vh);
    width: 7vw;
}

#why-us-icon-quality {
    transform: translate(14vw, -6.5vh);
    width: 7vw;
}

#why-us-icon-range {
    transform: translate(27vw, -15.3vh);
    width: 7vw;
}

.about-photo-1 {
    position: relative;
    left: 6%;
    margin-top: -1%;
    z-index: 10;
}

.about-photo-1 img{
    width: 37%;
    height: auto;
}

.about-photo-2 {
    position: relative;
    left: 57%;
    margin-top: -36.7%;
    z-index: 10;
}

.about-photo-2 img{
    width: 37%;
    height: auto;
}

.svg-circle {
    position: absolute;
    top: 99%;
    left: 3%;
    z-index: 1;
}

.svg-triangle {
    position: absolute;
    top: -15%;
    left: 65%;
    z-index: 1;
}

/* .svg-lines {
    position: absolute;
    top: 125%;
    left: 60%;
    z-index: 1;
} */


.contact {
    margin-top: 15vh;
    margin-bottom: 20vh;
}

.contact-title {
    position: relative;
    background-color: #8cd3cc;
    width: 25vw;
    justify-content: center;
    margin: auto;
    border-bottom: 3px solid #AA7269;
    margin-top: -38vh;
    z-index: 10;
}

.contact-title h2 {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 3vw;
    text-align: center;
    margin-bottom: -5vh;
    padding-top: 2vh;
    padding-bottom: 6vh;
}

a.anchor {
    display: block;
    position: relative;
    top: -5vh;
    visibility: hidden;
}

.contact-text {
    position: relative;
    top: 50%;
    transform: translate(0, -3%);
    padding: 2vh;
}

.contact-desc {
    margin-top: 3vh;
    margin-bottom: 2vh;
}

.contact-title p {
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
    margin-bottom: 0.5vh;
    text-align: center;
}

.contact-main {
    display: flex;
    margin: auto;
    width: 60%;
    padding: 10px;
    margin-top: 0vh;
}

.contact-info {
    height: 40vh;
    max-width: 20vw;
    flex: 50%;
    /* background-color: #77a6f7; */
    padding-top: 100px;
    transform: translate(0, 0);
    padding: 10vh 0vw 5vh 1vw;
    z-index: 5;
}

.contact-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9vw;
}

.icons-contact {
    margin-top: 4vh;
}

.contact-phone {
    margin-bottom: 0vh;
    height: 5vh;
}

.phone-number {
    position: relative;
    top: 10%;
    transform: translate(0, -100%);
}

.phone-number p {
    margin-left: 2.6vw;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9vw;
    font-weight: 900;
}

.contact-email {
    margin-bottom: 0px;
    height: 5vh;
}

.contact-email a {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9vw;
    font-weight: 900;
    color: #333;
}

.contact-icon {
    margin-left: 5%;
}

.email {
    position: relative;
    top: -20%;
    transform: translate(0, -100%);
}

.email p {
    margin-left: 2.6vw;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9vw;
    font-weight: 900;
}

.contact-fax {
    margin-bottom: 0px;
    height: 5vh;
}

.contact-fax a {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9vw;
    font-weight: 900;
    color: #333;
}

.contact-working-hours {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
    height: 5vh;
}

.contact-working-hours a {
    /* display: flex; */
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9vw;
    font-weight: 900;
    color: #333;
}

.contact-working-hours .working-hours {
    padding-top: 2%;
    margin-left: 5%;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9vw;
    font-weight: 900;
    color: #333;
}

.contact-working-hours .working-hours .hours {
    width: 10vw;
    margin-left: 2%;
    margin-top: -7%;
    font-size: 0.8vw;
    font-weight: 600;
}

.sketch-highlight{
  position:relative;
}
.sketch-highlight:before{
  content:"";
  z-index:-1;
  left:0em;
  top:0em;
  border-width:2px;
  border-style:solid;
  border-color:rgb(23, 93, 114);
  position:absolute;
  border-right-color:transparent;
  width:100%;
  height:1em;
  transform:rotate(2deg);
  opacity:0.5;
  border-radius:0.25em;
  margin-top: 2%;
}
.sketch-highlight:after{
  content:"";
  z-index:-1;
  left:0em;
  top:0em;
  border-width:2px;
  border-style:solid;
  border-color:rgb(23, 93, 114);
  border-left-color:transparent;
  border-top-color:transparent;
  position:absolute;
  width:100%;
  height:1em;
  transform:rotate(-1deg);
  opacity:0.5;
  border-radius:0.25em;
  margin-top: 4%;
}

.sketch-highlight.weekends:before {
    border-color: #249d32;
}
.sketch-highlight.weekends:after {
    border-color: #249d32;
}

.sketch-highlight.holiday:before {
    border-color: #90269e;
}
.sketch-highlight.holiday:after {
    border-color: #90269e;
}

.fax {
    position: relative;
    top: -10%;
    transform: translate(0, -100%);
}

.fax p {
    margin-left: 2.6vw;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9vw;
    font-weight: 900;
}

.contact-form {
    flex: 50%;
    max-width: 45vw;
    max-height: 70vh;
    /* background-color: #AA7269; */
    transform: translate(0vw, 0vh);
    padding: 5vh 0vw 5vh 4vw;
}

.contact-form p {
    font-size: 1.5vw;
    font-weight: 800;
    margin-left: 1vw;
}

.contact-wrap {
	width: 100%;
	height: auto;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}

.contact-in {
	padding: 2vh 4vw 2vh 1vw;
}

.contact-in form {
	width: 100%;
	height: auto;
}

.contact-in-input {
    width: 100%;
	height: 5vh;
	margin-bottom: 2.5vh;
	border: 0.1vw solid #000;
	outline: none;
	padding-left: 0.3vw;
	background: transparent;
	color: #000;
	font-size: 0.7vw;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.contact-in-input::placeholder {
	color: #000;
}

.contact-in-textarea {
    width: 100%;
    max-width: 25vw;
    min-width: 25vw;
    height: 20vh;
    min-height: 20vh;
    max-height: 29vh;
	margin-bottom: 2.5vh;
	border: 0.1vw solid #000;
	outline: none;
	padding-top: 1vh;
	padding-left: 0.3vw;
	background: transparent;
	color: #000;
	font-size: 0.7vw;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.contact-in-textarea::placeholder {
	color: #000;
}

.file-upload-section {
    display: flex;
}

.label-file-input:hover {
    background-color: #000;
    color: #fff;
}

input[type="file"] {
    display: none;
}

.file-size-limit {
    display: flex;
    padding-left: 2%;
    align-items: center;
    height: 4vh;
    font-size: 0.7vw;
    font-weight: 600;
}

#file-upload-filename {
    display: flex;
    padding-left: 2%;
    height: 4vh;
    align-items: center;
    font-size: 0.7vw;
    font-weight: 600;
}

.label-file-input {
    display: flex;
    width: 30%;
	height: 4vh;
	margin-bottom: 2.5vh;
	border: 0.1vw solid #000;
    outline: none;
    align-items: center; /* this got me to vertical align text in display: flex */
    justify-content: center; /* this got me to horizontal align text in display: flex */
    background: transparent;
	color: #000;
	font-size: 0.7vw;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.contact-form-button {
    width: 100%;
    height: 5vh;
    border: 0.1vw solid #000;
	outline: none;
    background: transparent;
    color: #000;
	font-size: 0.7vw;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.contact-form-button:hover {
    background-color: #000;
    color: #fff;
}

.connect {
    margin-top: -5vh;
    margin-bottom: 20vh;
}

.connect-title {
    position: relative;
    background-color: #97add3;
    width: 25vw;
    justify-content: center;
    margin: auto;
    margin-top: -20vh;
    width: 40vw;
    height: 25vh;
}

.connect-inside {
    position: relative;
    top: 0%;
    transform: translate(0, -3%);
    padding: 4vh;
}

.connect-inside h2 {
    position: relative;
    font-family: sofia-pro, sans-serif;
    font-size: 2vw;
    font-weight: 800;
    font-style: normal;
    text-align: center;
    margin-top: -3vh;
    padding-top: 2vh;
    padding-bottom: 5vh;
}

.connect-inside .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vh;
}

.connect-inside .icons a {
    width: 4vw;
    text-align: center;
    margin: 2vh 2vh 0vh 2vh;
    line-height: 50px;
}

.connect-inside .icons i {
    font-size: 3vw;
    color: #fff;
}

.connect-inside .icons a i {
    transition: all 0.3s;
}

.connect-inside .icons a:hover i {
    transform: scale(1.4);
}

.footer {
    position: relative;
}

.footer .footer-table {
    display: table;
    width: 100%;
    padding: 1vh 5vw 5vh 5vw;
    margin: 0 auto;
}

.footer .footer-table .footer-col-1 {
    display: table-cell;
    width: 20%;
    vertical-align: top;
}

.footer .footer-table .footer-col-1 img {
    margin-left: 0%;
    margin-top: 2%;
    width: 15vw;
    display: inline-block;
    transition: all 0.3s;
}

.footer .footer-table .footer-col-1 img:hover {
    transform: scale(1.1);
}

.footer .footer-table .footer-col-2 {
    display: table-cell;
    width: 30%;
    vertical-align: top;
    margin-top: -10%;
}

.footer .footer-table .footer-col-2 .eyebrow-decoration {
    margin-top: 3%;
    margin-left: 0%;
}

.footer .footer-table .footer-col-2 .link-table {
    display: table;
    padding-top: 3vh;
    width: 70%;
}

.footer .footer-table .footer-col-2 .link-table .link-col {
    display: table-cell;
    width: 50%;
}

.footer .footer-table .footer-col-3 {
    display: table-cell;
    width: 30%;
    vertical-align: top;
}

.footer .footer-table .footer-col-3 .eyebrow-decoration {
    margin-top: 3%;
    margin-left: -15%;
}

.footer .footer-table .footer-col-3 .link-table {
    display: table;
    margin-top: 5%;
    width: 100%;
}

.footer .footer-table .footer-col-3 .link-table.icons {
    margin-top: 15%;
}

.footer .footer-table .footer-col-3 h1 {
    margin-top: 0%;
    margin-left: -15%;
}

.footer .footer-table .footer-col-3 .link-table .link-col {
    display: table-cell;
    width: 50%;
    margin-left: -15%;
}

.footer .footer-table .footer-col-3 .link-table .link-col-3 a {
    margin-left: -15%;
    display: flex;
    align-items: center;
}

.footer .footer-table .footer-col-3 .link-table .link-col-address {
    margin-left: -15%;
    width: 60%;
}

.footer .footer-table .footer-col-3 .link-table .link-col-address a {
    display: table-cell;
    width: 30%;
    margin-top: 5%;
}

.footer .footer-table .footer-col-4 {
    display: table-cell;
    width: 20%;
    vertical-align: top;
}

.footer .footer-table .footer-col-4 h1 {
    margin-top: 5%;
    margin-left: -40%;
}

.footer .footer-table .footer-col-4 .eyebrow-decoration {
    margin-top: 4.5%;
    margin-left: -40%;
}

.footer .footer-table .footer-col-4 .link-table-map .link-col-map {
    position: absolute;
    margin-top: 1.5%;
    margin-left: -7%;
}

.footer-table h1 {
    font-size: 1.8vw;
    font-family: 'sofia-pro', sans-serif;
    font-weight: 700;
    padding-top: 10%;
}

.link-col a {
    font-family: 'sofia-pro', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1vw;
    display: inline-block;
}

.link-col-address a {
    font-family: 'sofia-pro', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 0.9vw;
    display: inline-block;
}

.link-col-3 a {
    font-family: 'sofia-pro', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1vw;
    display: inline-block;
}

.footer-icon {
    margin-left: 2%;
}

.link-col a:hover {
    color: #000;
}

.link-col-3 #email:hover {
    color: #000;
}

.copyright-footer {
    background-color: #e0d7cd;
    width: 100%;
    text-align: center;
    padding: 1% 0;
}

.copyright-footer a {
    font-size: 0.8vw;
    font-weight: 800;
    color: #000;
}

.back-to-top-button {
    position: absolute;
    background-color: #acc9c9;
    width: 8%;
    left: 55%;
    transform: translate(130%, -100%);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    text-align: center;
    padding: 1% 0;
}

.back-to-top-button a {
    font-size: 0.8vw;
    font-weight: 800;
    display: inline-block;
    color: #5a5a5a;
}

.back-to-top-button a:hover {
    color: #000;
}

.eyebrow-decoration {
    border-bottom: 3px solid #AA7269;
    width: 4vw;
    text-align: center;
    margin: 0 auto;
    margin-top: -2vh;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.button.about1 {
    transform: translate(30%, -17%);
}

.button.about2 {
    transform: translate(-32%, 25%);
}

.animated-arrow .main .text {
    font-family: sofia-pro, sans-serif;
    font-weight: 900;
    font-size: 0.9vw;
}

.button ul li {
    margin: 0 0 24px;
    list-style-type: none;
}
.the-arrow {
    width: 1px;
    transition: all 0.2s;
}
.the-arrow.-left {
    position: absolute;
    top: 60%;
    left: 0;
}
.the-arrow.-left > .shaft {
    width: 0;
    background-color: #4c4c4c;
}
.the-arrow.-left > .shaft:before, .the-arrow.-left > .shaft:after {
    width: 0;
    background-color: #4c4c4c;
}
.the-arrow.-left > .shaft:before {
    transform: rotate(0);
}
.the-arrow.-left > .shaft:after {
    transform: rotate(0);
}
.the-arrow.-right {
    top: 3px;
}
.the-arrow.-right > .shaft {
    width: 1px;
    transition-delay: 0.2s;
}
.the-arrow.-right > .shaft:before, .the-arrow.-right > .shaft:after {
    width: 8px;
    transition-delay: 0.3s;
    transition: all 0.5s;
}
.the-arrow.-right > .shaft:before {
    transform: rotate(40deg);
}
.the-arrow.-right > .shaft:after {
    transform: rotate(-40deg);
}
.the-arrow > .shaft {
    background-color: #4c4c4c;
    display: block;
    height: 1px;
    position: relative;
    transition: all 0.2s;
    transition-delay: 0;
    will-change: transform;
}
.the-arrow > .shaft:before, .the-arrow > .shaft:after {
    background-color: #4c4c4c;
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.2s;
    transition-delay: 0;
}
.the-arrow > .shaft:before {
    transform-origin: top right;
}
.the-arrow > .shaft:after {
    transform-origin: bottom right;
}
.animated-arrow {
    display: inline-block;
    color: #4c4c4c;
    font-size: 1.25em;
    font-style: italic;
    text-decoration: none;
    position: relative;
    transition: all 0.2s;
}
.animated-arrow:hover {
    color: #808080;
}
.animated-arrow:hover > .the-arrow.-left > .shaft {
    width: 44px;
    transition-delay: 0.1s;
    background-color: #808080;
}
.animated-arrow:hover > .the-arrow.-left > .shaft:before, .animated-arrow:hover > .the-arrow.-left > .shaft:after {
    width: 8px;
    transition-delay: 0.1s;
    background-color: #808080;
}
.animated-arrow:hover > .the-arrow.-left > .shaft:before {
    transform: rotate(40deg);
}
.animated-arrow:hover > .the-arrow.-left > .shaft:after {
    transform: rotate(-40deg);
}
.animated-arrow:hover > .main {
    transform: translateX(17px);
    transform: translateX(60px);
}
.animated-arrow:hover > .main > .the-arrow.-right > .shaft {
    width: 0;
    transform: translateX(200%);
    transition-delay: 0;
}
.animated-arrow:hover > .main > .the-arrow.-right > .shaft:before, .animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
    width: 0;
    transition-delay: 0;
    transition: all 0.1s;
}
.animated-arrow:hover > .main > .the-arrow.-right > .shaft:before {
    transform: rotate(0);
}
.animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
    transform: rotate(0);
}
.animated-arrow > .main {
    display: flex;
    align-items: center;
    transition: all 0.2s;
}
.animated-arrow > .main > .text {
    margin: 0 16px 0 0;
    line-height: 1;
}
.animated-arrow > .main > .the-arrow {
    position: relative;
}


/***************************Products Page***************************/
.products-page-section {
    background-color: #acdacc;
    width: calc(100vw - 1em);
}
.products-page-container {
    position: relative;
    width: 69vw;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 13vh 0 5vh 0;
}
.products-page-title {
    background-image: url("../assets/services-warehouse_crop.jpg");
    border-radius: 10px;
    margin-bottom: 1.5vh;
    text-align: center;
}
.products-page-title h2 {
    font-family: 'sofia-pro', sans-serif;
    font-size: 4vw;
    font-weight: 800;
    color: #fff;
}
.products-page-title p {
    position: relative;
    font-family: 'sofia-pro', sans-serif;
    font-size: 1vw;
    font-weight: 500;
    color: #fff;
    padding-bottom: 2.8%;
}
.products-page-header-breadcrumbs {
    background-color: #000;
    border-radius: 10px;
    margin-bottom: 1.5vh;
}
.products-page-header-breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    font-size: 0.9vw;
    font-weight: 600;
}
.products-page-header-breadcrumbs ul li {
    padding: 0 2vw;
    cursor: pointer;
}
.products-page-header-breadcrumbs ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0.8vh 0 0.8vh 0;
    transition: .15s;
}
.products-page-header-breadcrumbs ul li.active {
    border-bottom: 4px solid transparent;
    border-color: #fff;
}
.products-page-header-breadcrumbs ul li.active:hover {
    border-color: #fff;
    color: #fff;
}
.products-page-header-breadcrumbs ul li a.active {
    color: #fff;
}
.products-page-header-breadcrumbs ul li:hover {
    border-bottom: 4px solid transparent;
    border-color: #b2fbe4;
    color: #b2fbe4;
}
.products-page-header-breadcrumbs ul li:hover a{
    color: inherit;
}
.products-page-grid {
    background-color: #fff;
    border-radius: 10px;
    list-style: none;
}
.products-page-grid img {
    width: 25vw;
    float: left;
    margin: 2vh 2vw 2vh 2vw;
    border-radius: 10px;
}
.products-page-grid ul {
    text-align: center;
}
.products-page-grid li {
    padding: 5vh 2.5vw 5vh 2.5vw;
    display: inline-block;
}
.product-desc p {
    text-align: center;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-size: 1vw;
    font-family: 'Bebas Neue', cursive;
}
.products-list {
    list-style: none;
    justify-content: center;
}


/***************************About Page***************************/
.about-page {
    height: 200vh;
    background-color: #acdacc;
    /* animation: animateaboutpage 2s ease-in forwards; */
}
.about-page-title-container {
    position: absolute;
    left: 20%;
    top: 40%;
}
.about-page-title-container h2 {
    font-size: 5vw;
    font-family: 'Roboto', sans-serif;
    color: #000;
}

@keyframes animateaboutpage {
    0% {
        opacity: 0;
        transform: translateY(-10vh);
    }
    30% {
        transform: translateY(0);
    }
    60% {
        opacity: 1;
        
    }
    100% {
        opacity: 1;
    }
}

/***************************Order Sample Page***************************/
.order-sample-page {
    height: 90vh;
    background-color: #acdacc;
}
.order-sample-page-container {
    position: relative;
    left: 17%;
    top: 15%;
}
.order-sample-page-container h2 {
    font-size: 2vw;
    font-family: 'Roboto', sans-serif;
    color: #000;
}
.order-sample-page-contact-form {
    position: relative;
    width: 30vw;
    left: 40%;
    top: 20%;
}




@media only screen and (max-width:480px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
	}

}

@media only screen and (max-width:360px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
	}

}