body {
    font-family: Poppins;
    margin: 1% 1% 0 2%;
    height: 100%;
}

/* -------------------------- */
/* ----------Navbar---------- */
/* -------------------------- */
nav {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 10vh;
}

.part1 {
    width: 100px;
}

.part2 {
    flex: 2;
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
    justify-content: center;
}

.nav-item {
    font-size: 1rem;
    font-weight: 100;
    margin: 0;
    transition: all 300ms ease-in-out;
}

.nav-item:hover {
    font-weight: 900;
    color: #f05b32;
    cursor: pointer;
    text-shadow: 1px 1px #f05b32;
}

.part3 {
    width: 20%;
}

/* -------------------------- */
/* -------Intro section------ */
/* -------------------------- */

.intro-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

/* ------------Left-section--------------- */


.left-section>h3 {
    font-size: 2.1rem;
    font-weight: 200;
    margin: 0%;
    margin-top: 10%;
}

.left-section h3>img {
    width: 50px;
}

.left-section>h1 {
    font-family: Fredoka One;
    font-size: 4.1rem;
    font-weight: 100;
    margin: 0;
    margin-top: 1%;
    display: flex;
    align-items: center;
}

p {
    max-width: 600px;
}

.sub-headlines {
    margin-top: 5%;

}

.sub-headline {
    font-size: 1.3rem;
    font-weight: 100;
    display: flex;
    align-items: center;
    padding-left: 15%;
    margin: 0%;
    margin-bottom: 3%;
}

.sub-headline>img {
    background-color: #f05b32;
    border-radius: 50%;
    width: 15px;
    padding: 8px;
    margin-right: 18px;
}

/* ------------Right-section--------------- */

.right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.headphone-div {
    position: relative;
}

.headphone {
    width: 60%;
    display: block;
    margin: 0 auto;
}

.discount {
    position: absolute;
    top: 60%;
    left: 12%;
    width: 20%;
    filter: drop-shadow(0px 8px 0px rgba(0, 0, 0, 0.2));
}

.discount-content {
    box-sizing: border-box;
    position: absolute;
    top: 68%;
    left: 17%;
    transform: translateX(-0.5rem);
    font-family: Fredoka One;
    color: #fff;
}

.discount-content h4 {
    margin: 0%;
    /* margin-left: 44px; */
}

.discount-content h1 {
    margin: 0%;
    /* margin-left: 34px; */

}


.dots {
    display: flex;
    flex-direction: row;
    gap: 1.8rem;
}

.dot {
    border-radius: 50%;
    background-color: #f05b32;
    padding: 12px;
}

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

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

.action-btn {
    color: #fff;
    font-family: Poppins;
    background-color: #f05b32;
    border: none;
    font-size: large;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 300ms ease-in-out;
}

.text {
    color: #797070;
    font-size: small;
}

.action-btns {
    margin-top: 5%;
}

.action-btn:hover {
    font-weight: 900;
    cursor: pointer;
    box-shadow: 3px 3px 5px rgba(240, 91, 50, 0.61);
}




/* BREAKPOINT-1 */

@media (max-width:912px) {

    nav {
        gap: 0.5rem;
        margin-top: 15px;
    }

    .part1 {
        width: 80px;
    }

    .part2 {
        gap: 1.5rem;
    }

    .nav-item {
        font-size: 0.6rem;
    }

    .intro-section {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .left-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 3rem;
    }

    .left-section h1 {
        text-align: center;
    }

    .sub-headlines {
        width: 100%;
    }

}

/* BREAKPOINT-3 */

@media (max-width:600px) {

    .part1 {
        width: 60px;
    }

    .left-section h3>img {
        width: 30px;
    }

    .left-section h3 {
        font-size: 1rem;
    }

    .left-section>h1 {
        font-size: 2.1rem;
    }

    p {
        font-size: 0.7rem;
        text-align: center;
    }

    .sub-headlines {
        margin-top: 5%;

    }

    .sub-headline {
        font-size: 1rem;
        margin: 0% auto 3%;
    }

    .sub-headline>img {
        width: 10px;
        padding: 5px;
        margin-right: 18px;
    }

    .action-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .discount-content {
        position: absolute;
        left: 18%;
        top: 68%;
    }

    .discount-content h1 {
        font-size: 1.5rem;
    }

    .discount-content h4 {
        font-size: 0.8rem;
    }


}