/* HEADER SECTION */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9.6rem;
  padding: 0 5rem;
  background-color: #fdf2e9;
}
.sticky .header{
  position: fixed;
  height: 8rem;
  top: 0;
  bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255,255,255,0.97);
box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.089);
z-index: 999;
width: 100%;
}
.logo {
  height: 2.2rem;
}
.main-nav-list {
  display: flex;
  gap: 4.6rem;
  align-items: center;
  list-style-type: none;
}
.main-nav-element:link,
.main-nav-element:visited {
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
  color: #333;
  transition: all 0.3s;
}
.main-nav-element:hover,
.main-nav-element:active{
  color:#cf711f ;
}
.main-nav-element.main-nav-cta:link,
.main-nav-element.main-nav-cta:visited{
  padding: 1.2rem 2.4rem;
  background-color:#e67e22 ;
  border-radius: 6px;
  color: #fff;
}

.main-nav-element.main-nav-cta:hover,
.main-nav-element.main-nav-cta:active {
  background-color: #cf711f;
}

.btn-mobile-nav{
  border: none;
  background-color: #fdf2e9;
  cursor: pointer;

  display: none;
  z-index: 9999;
}
.icon-mobile-nav{
  font-size: 4.8rem;
}
.icon-mobile-nav[name="close-outline"]{
  display: none;
}


/* HERO SECTION */
.section-hero {
  background-color: #fdf2e9;
  padding: 6rem 0 9rem 0;
}
.sticky .hero{
  margin-top: 8rem;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  align-items: center;
  gap: 9rem;
  letter-spacing: -1px;
}
.hero-heading {
  font-size: 5.2rem;
  color: #333;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.5;
  margin: 3rem 0 5rem;
}
.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.6rem 3.2rem;
  border-radius: 1rem;
  text-decoration: none;

  transition: all 0.3s;
}
.btn--full:link,
.btn--full:visited {
  background-color: #e67e22;
  color: white;
}
.btn--full:hover,
.btn--full:active {
  background-color: #cf711f;
  color: white;
}

.btn--hollow:link,
.btn--hollow:visited {
  background-color: #fff;
  color: #444;
}
.btn--hollow:hover,
.btn--hollow:active {
  background-color: #fdf2e9;
  color: #333;
  box-shadow: inset 0 0 0 3px #fff;
}
.btn-marginright {
  margin-right: 1.8rem;
}
.delivered {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}
.customer {
  display: flex;
}
.customer img {
  margin-right: -1.5rem;
  border-radius: 50%;
  border: 3px solid #fdf2e9;
  height: 4rem;
}
.customer img:last-child {
  margin-right: 0;
}
.numberofcustomers {
  font-size: 1.8rem;
}

.hero-image {
  width: 100%;
}
