*{
    margin: 0;
    padding: 0;

}

/* navbar  */

nav{
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;

}


nav>img:nth-child(1){
    height: 45px;
    margin-left: 45px;
    
}


.nav-items{
    margin-left: 50px;
    display: flex;

}

.nav-item{
    font-family: 'Poppins';
    font-weight: 300;
    width: 100px;
    font-size: 1.3rem;
    margin: 0 20px;
}

.nav-item.active-item{
font-weight: 900;
color: #ff5e34;
font-family: 'Poppins';

}

nav img:nth-child(3){
    width: 180px;
    height: 45px;
    object-fit: cover;
    
}


/* intro section  */

.intro-section{
    display: flex;
}

.left-section{
    width: 60vw;
}

.left-section>h3{
    margin-top: 35px;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    margin-left:45px;
}

.left-section>h3>img{
    margin-left: 16px;
    height: 45px;
}

.left-section>h1{
    margin-left: 48px;
    font-family:  "Comic Sans MS", cursive, sans-serif;
    letter-spacing: -3px;
    font-weight: 800;
    font-size: 5.2rem;
}

.sub-headlines{
    margin-top: 45px;
    margin-left: 145px;
}

.sub-headline{
    margin-bottom: 20px;
    display: flex;
    font-size: 1.5rem;
    font-family: 'Poppins';
    font-weight: 500;
    gap: 23px;

}

.sub-headline>img{
    padding: 8px;
    border-radius: 50%;
    height: 16px;
    background-color: #ff5e34;
}


.text{
    color: #909090;
    font-family: 'Poppins';
    padding: 45px;
    padding-right: 0;
    width: 770px;
    font-size: 15px;
    font-weight: 200;
}

.action-btns{
    padding-left: 40px;
}

.action-btn{
    background-color: #ff5e34;
    color: #ffffff;
    border: none;
    font-size: 1.3rem;
    padding: 20px 33px;
    border-radius: 40px;
    letter-spacing: .3px;
}


/* right section  */
.right-section{
    position: relative;
 width: 40vw;   

}


.headphone-div{
    position: relative;
}

.discount{
    position: relative;
    left: -5%;
    top: 282px;
    height: 131px;
    z-index: -2;
}

.discount-content{
    position: absolute;
    left: 0;
    top: 311px;
    color: #ffffff;
}

.discount-content>h4{
    padding-left: 15px;
    font-size: 12px;
    font-family: "Poppins";
}

.discount-content>h1{
    font-family: "Comic Sans MS", cursive, sans-serif;
    position: relative;
    font-size: 2.5rem;
    left: -13%;
    bottom: 10px;
}




.headphone-div>img:nth-child(3){
    z-index: -3;
    position: absolute;
    left: 0;
    /* right: 20px; */
    height: 470px;
 
}

.right-section>button{
      /* bottom: 0.3%; */
    /* right: 19%; */
    bottom: 0%;
    position: absolute;
    left: 25%;
}

.dots{
    width: fit-content;
    display: flex;
    justify-content: center;
    top: 75%;
    align-items: center;
    position: absolute;
    /* bottom: 15%; */
    /* right: 20%; */
    bottom: 15%;
    left: 25%;
}

.dot{
    margin: 15px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: #ff5e34;
}

.yellow-dot{
    background-color: #fbd005;
}

.tomato-dot{
    background-color: #ff5e34;
}

.black-dot{
    background-color: #010001;
}




/* responsive */

@media screen and (max-width:1200px) {

    .dots{
        top: 30%;
    }

    .headphone-div>img:nth-child(3) {
        height: 380px;
    }
    .right-section>button {
        top: 65%;
        bottom: auto;
    }

    .intro-section{
        gap: 25px;
    }

    .discount-content>h1 {
        font-size: 2.3rem;
        left: 0;
    }
    
}


.burger{
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-right: 10px ;
    }
    
    .burger>div{
        height: 3px;
        width: 30px;
        background-color: #1f1f1f;
    }

@media screen and (max-width:760px) {

    .intro-section{
        flex-direction: column-reverse;
        /* align-items: center; */
    }
    .headphone-div>img:nth-child(3) {
        position: relative;
        height: 300px;
    }
    .nav-items {
        display: none;
    }
    .sub-headlines {
        margin-left: 45px;
    }
    .text {
        width: 300px;
    }
    .action-btns {
        width: 500px;
    }
    .right-section{
        width: fit-content;
        padding-left: 50px;
        margin-bottom: 80px;
    }
    .left-section{
        width: fit-content;
    }
    .discount{
        position:absolute;
        top: 190px;
        height: 100px;
    }
    .discount-content{
        top: 213px;
    }
    .dots {
        left: 32%;
        bottom: -61%;
    }
    .left-section>h1 {
        font-size: 3.5rem;
    }
    .right-section>button {
        top: 93px;
        position: relative;
    }
    .action-btns {
        width: fit-content;
    }
    .action-btn{
        font-size: 1rem;
        padding: 15px 20px;
        margin-right: 30px;
    }
    nav>img:nth-child(1) {
        height: 30px;
    }
    nav img:nth-child(3) {
        height: 40px;
    }
    .burger{
        display: flex;
    }
}


