*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style-type: none;
}

/*====================
        navbar
====================*/
nav {
    width: 78%;
    margin: 50px auto 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-items {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-items h5 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    cursor: pointer;
    transition: all 300ms linear;
}

.nav-items h5:hover {
    font-weight: 900;
    color: #FE5E35;
}

.nav-items h5.active-item {
    font-weight: 900;
    color: #FE5E35;
}

#nav-check {
    display: none;
}

.nav-responsive-btn {
    display: none;
}


/*====================
        intro
=====================*/
.intro-section {
    display: flex;
    width: 95%;
    margin: 100px auto 0px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.left-section {
    width: 55%;
}

.left-section h3 {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
}

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

.left-section h1 {
    font-family: "Fredoka One", sans-serif;
    font-size: 95px;
}

.left-section .sub-headlines {
    margin-top: 50px;
    margin-left: 100px;
}

.left-section .sub-headline {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.left-section .sub-headline img {
    width: 30px;
    margin-right: 10px;
    cursor: pointer;
}

.left-section .text {
    font-family: "Poppins", sans-serif;
    padding-top: 60px;
    font-size: 20px;
    font-weight: 400;
    color: #9F9F9F;
    margin-right: 257px;
}

.left-section .action-btns {
    margin-top: 95px;
}

.action-btn {
    padding: 15px 40px;
    background-color: #FE5E35;
    outline: 0;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    color: #fff;
    border-radius: 40px;
    margin-right: 40px;
    cursor: pointer;
}

.right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.banner-img img {
    margin-top: -60px;
}

.right-section .discount-mark {
    position: absolute;
    bottom: 195px;
    left: -40px;
    text-align: center;
}

.discount-mark img {
    width: 100%;
}

.right-section .discount-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.right-section .discount-content h4 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin-bottom: -8px;
    margin-right: 5px;
}

.right-section .discount-content h1 {
    color: #fff;
    font-family: "Fredoka One", sans-serif;
    font-size: 60px;
    font-weight: 700;
}

.right-section .dots {
    position: relative;
    cursor: pointer;
}

.right-section .dots .yellow-dot::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    left: -89px;
    top: 0;
    background-color: #fbd104;
}

.right-section .dots .tomato-dot::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    left: -39px;
    top: 0;
    background-color: rgb(254, 94, 53);
}

.right-section .dots .black-dot::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    left: 10px;
    top: 0;
    background-color: #000000;
}

.right-section .action-btn {
    margin-top: 45px;
}