*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav,
.intro-section {
  height: 10vh;
  width: 1340px;
  margin: 0 auto;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  }

nav img {
    height: 50px;
    position: relative;
    top: 10px;
    left: 20px;
  }
 .svg{
    margin-bottom: 10px;
    margin-right: 10px;
 }

.nav-items {
 display: flex;
 gap: 60px;
 align-items: center;
  }
.nav-item {
 font-size: 20px;
 font-weight: 300;
 cursor: pointer;
  }
  
.active-item{
 color: #fe5e35;
 font-weight: 600;
}
.intro-section{
    height: 90vh;
    display: flex;
    align-items: center;
  }
  .left-section {
   display: flex;
   flex-direction: column;
   gap: 50px;
  }
  .left-section h3 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 36px;
    font-weight: 400;
    position: relative;
    left: 50px;
    top: 45px;
  }
  .left-section h3 img {
    height: 40px;
  }
  .left-section h1 {
    font-size: 70px;
    font-weight: 300;
    font-family: "Fredoka One", sans-serif;
    position: relative;
    left: 35px;
  }
  .sub-headline{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight:500;
    position: relative;
    left: 90px;
    margin: 10px 0px;
  }
  .sub-headline img {
    background-color: #fe5e35;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
  }
  .text {
    opacity: 0.5;
    font-size: 16px;
    padding-right: 100px;
    position: relative;
    left: 50px;
    bottom: 30px;
  }
  .action-btns {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    bottom: 20px;
    left: 50px;
  }
  .action-btn{
    display: block;
    padding: 15px 30px;
    font-size: 24px;
    border-radius: 40px;
    background-color: #fe5e35;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  .right-section {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 30px;
  }
  .discount{
    position: relative;
    top: 650px;
    width: 20%;
  }
  .discount-content h1{
    position: relative;
    top: 550px;
    left: 30px;
    font-size: 40px;
    font-weight: 600;
  }
  .discount-content h4{
    position: relative;
    top: 550px;
    left: 30px;  
    font-size: 16px;
    font-weight: 400;
  }
  .dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .dot{
    padding: 15px;
    border-radius: 50%;
    position: relative;
    bottom: 30px;
  }
  .yellow-dot {
    background-color: #fbd104;
  }
  .tomato-dot {
    background-color: #fe5e35;
  }
  .black-dot {
    background-color: #000000;
  }  
  .right-section > .action-btn {
    align-self: center;
    position: relative;
    bottom: 30px;
  }
  body{
    overflow: hidden;
  }