:root{
  --white: #ffffff;
  --yellow: #ECA400; 
  --black-00: #000000;
  --black-18: #181818;
  --cream-fc: #FCFCFC;
  --cream-ec: #ECECEC;

  /* fonts */
  --font-Montserrat : "Montserrat", sans-serif;
  --font-DM : "DM Serif Display", serif;
  --font-Inter : "Inter", sans-serif;

  /* sizes */  
  --title: 20vw;
  --60: 60px;
  --64: 64px;
  --48: 48px;
  --42: 42px;
  --40: 40px;
  --36: 36px;
  --34: 34px;
  --30: 30px;
  --28: 28px;
  --26: 26px;
  --24: 24px;
  --22: 22px;
  --18: 18px;
  --16: 16px;
  --14: 14px;
  --12: 12px;
  --10: 10px;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100.01%;
}

input, button, select, textarea {
  font-family: var(--font-outfit);
}

body {
  background-color: var(--cream-fc);
  font-family: var(--font-Inter);
  letter-spacing: 0.03em;
  color: var(--black-18);
  font-size: var(--16);
  min-height: 100vh;
  line-height: 2;
  font-weight: 300;
}

.container {
  width: 100%;
  max-width: 1170px;
}

.container-md{
  max-width: 1080px;
}

.container-sm{
  max-width: 948px;
}

.py-180{
  padding-top: 180px;
  padding-bottom: 180px;
}

.py-160{
  padding-top: 160px;
  padding-bottom: 160px;
}

.py-150{
  padding-top: 150px;
  padding-bottom: 150px;
}

.py-140{
  padding-top: 140px;
  padding-bottom: 140px;
}

.py-120{
  padding-top: 120px;
  padding-bottom: 120px;
}

.py-100{
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-80{
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-60{
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-50{
  padding-top: 50px;
  padding-bottom: 50px;
}    

.py-30{
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-40{
  padding-top: 40px;
  padding-bottom: 40px;
}

.mb-30{
  margin-bottom: 30px;
}

.mb-60{
  margin-bottom: 60px;
}

.mb-50{
  margin-bottom: 50px;
}

.mb-75{
  margin-bottom: 75px;
}

.mb-90{
  margin-bottom: 90px;
}

a, .btn, button {
  transition: all 0.35s ease-in;
  -webkit-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -ms-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
}

a, button{
  cursor: pointer;
}

strong {
  font-weight: 800;
}

small {
  font-size: 91%;
}

a, .btn {
  outline: none !important;
}

a {
  color: inherit;
  text-decoration: none !important;
}

a:hover {
  text-decoration: underline;
}

p, ul {
  margin-bottom: 1em;
}

p:last-child, ul:last-child {
  margin-bottom: 0;
}

p + ul{
  margin-top: -0.8em;
}

h1, .h1{
  font-size: var(--64);
  margin-bottom: 0.2em;
}

h2{
  font-family: var(--font-DM);
  font-size: var(--60);
  margin-bottom: 0.4em;
  font-weight: 400;
  line-height: 1;
}

.h2{
  font-size: var(--48);
}

h3{
  font-weight: 700;
  font-size: var(--34);
  margin-bottom: 0.3em;
}

.h3{
  font-size: var(--30);
}

h4{
  font-size: var(--24);
  font-weight: 400;
}

.h4{
  font-size: var(--42);
  font-weight: 700;
}

h5{
  font-size: var(--20);
}

.h5{
  font-size: var(--28);
  font-weight: 400;
}

.text-spacing-14{
  letter-spacing: 0.14em;
}

.text-spacing-3{
  letter-spacing: 0.09em;
}

.text-spacing-5{
  letter-spacing: 0.05em;
}

.text-spacing-10{
  letter-spacing: 0.1em;
}

.text-36{
  font-size: var(--36);
}

.text-yellow{
  color: var(--yellow) !important;
}

.bg-black{
  background-color: var(--black-18) !important;
  color: var(--cream-fc);
}

.bg-yellow{
  background-color: var(--yellow);
  color: var(--black-18);
}

.btn{
  font-family: var(--font-Inter);
  color: var(--black-18);
  font-size: var(--14);
  border-radius: 8px;
  padding: 10px 15px;
  font-weight: 500;
  min-width: 160px;
  line-height: 1;
  gap: 10px;
}

.btn-yellow{
  font-weight: 600;
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
}

.btn-yellow:hover{
  background-color: var(--black-18);
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-white-outline{
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-white-outline:hover{
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--black-18);
}

.btn-dark{
  font-weight: 600;
  padding: 20px 10px;
  color: var(--white);
  font-size: var(--16);
  border-radius: var(--18);
  font-family: var(--font-Inter);
  background-color: var(--black-18) !important;
}

.btn-dark:hover{
  background-color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--black-18) !important;
}

.btn-link{
  line-height: 1.2;
  align-items: center;
  font-size: var(--14);
  display: inline-flex;
  padding: 0 !important;
  color: var(--cream-fc);
  font-family: var(--font-Inter);
  border-bottom: 1px solid currentColor;
}

.btn-link:hover{
  color: var(--white);
}

.gap-15{
  gap: 15px;
}

.navbar{
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
  border-radius: 12px;
  max-width: 1280px;
  padding: 20px;
  margin: auto;
  width: 90%;
  top: 25px;
}

.navbar-nav > li > a{
  font-weight: 400;
  font-size: var(--16);
  color: var(--black-18);
  text-transform: uppercase;
  font-family: var(--font-Inter);
}

.navbar-nav > li{
  margin-right: 40px;
}

.navbar .btn-dark{
  text-transform: uppercase;
  border-radius: 8px;
  padding: 16px 12px;
  font-weight: 400;
  min-width: auto;
}

.navbar-toggler{
  box-shadow: none !important;
  border: none !important;
  color: var(--black-18);
}

.navbar-toggler img{
  height: 34px;
}

.navbar-toggler svg{
  width: 50px;
  height: 50px;
}

.navbar-toggler[aria-expanded="true"] img{
  display: none !important;
}

.navbar-toggler[aria-expanded="true"] svg{
  display: block !important;
}

.dropdown-toggle:after{
  border-color: currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-style: solid;
  margin-left: 10px;
  height: 10px;
  width: 10px;
}

.dropdown-toggle[aria-expanded="true"]:after{
  transform: rotate(-135deg);
  margin-bottom: -6px;
}

.dropdown-menu{
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  background-color: var(--cream-fc);
  --bs-dropdown-link-hover-bg: var(--yellow);
  --bs-dropdown-link-active-bg: var(--yellow);
  box-shadow: 0 4px 55px -21px rgba(0, 0, 0, 0.19);
}

.dropdown-menu li + li{
  margin-top: 8px;
}

.dropdown-menu li a{
  font-weight: 500;
  padding: 4px 25px;
  border-radius: 4px;
  font-size: var(--14);
  color: var(--black-18);
  letter-spacing: 0.045em;
}

.hero{
  z-index: 1;
  height: 100vh;
  position: relative;
}

.hero h2{
  text-shadow: 0 4px 28px rgba(236, 236, 236, 0.25);
}

.hero-image{
  object-position: center;
  position: absolute;
  object-fit: cover;
  height: 100%;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 0;
}

.hero .container{
  max-width: 850px;
}

#sentence {
  overflow: hidden;
  text-align: center;
}

#sentence > li, #sentence > ul { display: inline; }

#textSlider {
  overflow: visible !important;
  text-align: left;
  display: inline-block;
  position: relative;
  width: 100% !important;
  margin: 0;
  padding: 0;
  height: 36px;
}

.hero h3 li{
  font-size: inherit;
  color: inherit;
}

.adj {
  left: 50%;
  white-space: nowrap;
  list-style: none;
  position: absolute;
  -webkit-transform: translate(-50%, 60px);
  -ms-transform: translate(-50%, 60px);
  transform: translate(-50%, 60px);
}

.slide-in {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slide-out {
  -webkit-transform: translate(-50%, -60px);
  -ms-transform: translate(-50%, -60px);
  transform: translate(-50%, -60px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.award-card{
  background-color: var(--white);
  color: var(--black-18);
  letter-spacing: normal;
  font-size: var(--10);
  border-radius: 16px;
  padding: 46px 25px;
  font-weight: 500;
  max-width: 260px;
  margin: auto;
  width: 100%;
}

.award-card img{
  max-height: 70px;
}

.award-card h4{
  font-weight: 700;
}

.award-card h4 span{
  color: var(--yellow);
}

.polygons{
  min-height: 530px;
}

.polygon{
  background: transparent url('../images/Polygon.svg') no-repeat center center / contain;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  position: absolute;
  aspect-ratio: 1;
  display: flex;
  width: 272px;
  margin: auto;
  padding: 2%;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.polygon[href]:hover{
  background-image: url('../images/Polygon-hover.svg');
  color: var(--black-18);
}

.polygon h3{
  display: inline-block;
  font-size: var(--42);
  position: relative;
  font-weight: 600;
  margin: 0;
}
.polygon h3 span{
  top: 0;
  right: -18px;
  position: absolute;
  font-size: var(--12);
  text-transform: uppercase;
} 

.polygon-1 h3{
  font-size: var(--34);
}

.polygon-7 h3{
  font-size: var(--36);
  color: rgba(236, 236, 236, 0.6);
}

.polygon-1{
  margin-left: 0;
}

.polygon-7{
  margin-right: 0;
}

.polygon-3, .polygon-6{
  margin-top: 0;
}

.polygon-2, .polygon-5{
  margin-bottom: 0;
}

.polygon-2, .polygon-3{
  margin-left: 217px;
}

.polygon-5, .polygon-6{
  margin-right: 217px;
}

.supplier-logo{
  box-shadow: 0 12px 27px rgba(0, 0, 0, 0.12);
  background-color: #FFF8F8;
  border-radius: 25px;
  align-items: center;
  min-height: 70px;
  overflow: hidden;
  display: flex;
  width: 265px;
  height: 100%;
}

.supplier-logo img{
  max-width: 80%;
  display: block;
  margin: auto;
}

.about-image{
  background-color: var(--white);
  border-radius: 8px;
  max-width: 320px;
  padding: 12px;
  margin: auto;
  width: 100%;
}

.about-image img{
  max-width: 100%;
}

.about h4{
  font-family: var(--font-DM);
  letter-spacing: 0.07em;
  margin-bottom: 1.334em;
}

.about{
  letter-spacing: normal;
  line-height: 2;
}

.about .container{
  max-width: 1040px;
}

.about strong{
  color: var(--yellow);
}

.about p{
  margin-bottom: 1.5em;
}

.footer{
  position: relative;
}

/* .footer:before{
  background: var(--yellow) url('../images/footer-shape.png') no-repeat center left / contain;
  position: absolute;
  height: 100%;
  width: 330px;
  z-index: 2;
  content: "";
  left: 0;
  top: 0;
} */

.footer-logo{
  background-color: var(--white);
  display: inline-block;
  border-radius: 16px;
  margin-bottom: 24px;
  padding: 10px;
}

.footer-logo img{
  max-width: 100%; 
}

.footer-info p{
  max-width: 226px;
  margin-bottom: 20px;
}

.footer-info{
  z-index: 1;
  position: relative;
  font-weight: 500;
  line-height: 14px;
  font-size: var(--12);
  color: var(--black-18);
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-info:before{
  background: var(--yellow) url('../images/footer-shape.png') no-repeat center right 6% / contain;
  clip-path: polygon(0% 0%, 97% 0%, 100% 57%, 97% 100%, 0% 100%);
  position: absolute;
  width: 981%;
  height: 100%;
  z-index: -1;
  content: "";
  right: 0;
  top: 0;
}

.footer-info .btn-link{
  color: var(--black-18);
}

.footer{
  color: #F2F2F2;
  font-weight: 300;
  font-size: var(--12);
  letter-spacing: normal;
  font-family: var(--font-Montserrat);
}

.footer-address{
  gap: 30px;
}

.footer ul{
  gap: 25px;
  display: flex;
  flex-direction: column;
}

.footer li a{
  border-bottom: 1px solid currentColor;
  font-family: var(--font-Inter);
  font-size: var(--14);
  padding-bottom: 3px;
  line-height: 1.2;
  color: #F2F2F2;
  font-weight: 400;
}

.footer-grid{
  height: 100%;
  padding-left: 30px;
  border-left: 1px solid rgba(252, 252, 252, 0.6);
}

.footer-grid ul{
  display: block;
  columns: 2 auto;
  gap: 10px;
}

.footer-grid ul li{
  min-height: 15px;
  margin-bottom: 20px;
}

.footer a:not(.btn-link):hover{
  color: var(--yellow) !important;
}

.about-intro{
  gap: 20px;
}

.about-intro img{
  max-width: 285px;
}

.about-intro p{
  margin: 0;
}

.page-title{
  padding-top: 130px;
}

.page-title-sub{
  padding-top: 120px;
}

.page-title h1{
  line-height: 0.8;
  font-weight: 100;
  font-size: var(--title);
  font-family: var(--font-Inter);
}

.product-card{
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.21);
  background-color: var(--black-18);
  color: var(--cream-fc);
  border-radius: 12px;
  position: relative;
  text-align: center;
  max-width: 240px;
  cursor: pointer;
  height: 250px;
  padding: 20px;
  display: flex;
  margin: auto;
  width: 100%;
}

.product-card-bottom{
  font-family: var(--font-Inter);
  font-size: var(--12);
  color: var(--white);
  position: absolute;
  text-align: center;
  font-weight: 400;
  bottom: 15px;
  opacity: .3;
  width: 100%;
  left: 0;
}

.product-card-overlay{
  background-color: var(--black-18);
  transition: all 0.3s ease;
  border-radius: inherit;
  flex-direction: column;
  visibility: hidden;
  position: absolute;
  text-align: left;
  padding: 20px;
  display: flex;
  height: 100%;
  width: 100%;
  opacity: 0;
  left: 0;
  top: 0;
}

.product-card.active .product-card-overlay{
  opacity: 1;
  visibility: visible;
}

.product-card-body{
  flex-grow: 1;
}

.product-card-header{
  border-bottom: 1px solid rgba(164, 164, 164, 0.38);
  text-transform: uppercase;
  padding-bottom: 0.5em;
  font-size: var(--16);
  margin-bottom: 8px;
  line-height: 1.1;
}

.product-card-body h3{
  font-size: var(--28);
  margin-bottom: 8px;
  font-weight: 800;
  line-height: 0.8;
}

.product-card-body h3 sub{
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--font-Inter);
}

.product-card-footer h6{
  font-weight: 400;
  margin-bottom: 6px;
  font-size: var(--16);
}

.product-card-footer p{
  color: #AAAAAA;
  line-height: 15px;
  margin-bottom: 10px;
  font-size: var(--12);
  text-transform: uppercase;
}

.product-card-footer .btn img{
  margin-top: -1px;
}

.product-card-footer .btn{
  border-radius: 6px;
  min-width: auto;
  padding: 12px;
  border: none;
  width: 100%;
}

.product-card-footer .btn-yellow:hover{
  background-color: var(--white);
  color: var(--black-18);
}

.fw-normal{
  letter-spacing: normal;
}

.contact-details{
  gap: 20px;
}

.contact-details img{
  max-width: 24px;
  margin-right: 20px;
}

.contact-details .align-items-start img{
  margin-top: 8px;
}

.ratio{
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}

.contact-form-title{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  background-color: var(--yellow);
  font-family: var(--font-DM);
  color: var(--black-18);
  border-radius: 8px;
  margin-bottom: 1em;
  font-weight: 400;
  padding: 1px;
  gap: 10px;
}

.form-control{
  outline: none;
  font-weight: 400;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: var(--16);
  font-family: var(--font-Inter);
  box-shadow: 0 2px 0 #ABABAB !important;
  background-color: var(--cream-ec) !important;
  border: 1px solid rgba(171, 171, 171, 0.3) !important;
}

.contact-form .btn{
  border-radius: 8px;
  font-weight: 400;
  padding: 11px;
  width: 100%;
}

.contact-form .btn, .contact-form .form-control{
  height: 40px;
}

.contact-form textarea.form-control{
  height: 232px;
}

.btn-close{
  --bs-btn-close-opacity: 1;
  background-color: #EAEAEA;
  border-radius: 50%;
  height: 35px;
  width: 35px;
}