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

body{
    font-family: 'Times New Roman', Times, serif;
}

/* Common css style Start*/
.container{
    max-width: 1100px;
    margin: 0% auto;
}

.between{
    display: grid;
    gap: 5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}


/* Common css style End*/


.navbar{
    max-width: 93%;
    margin: 1% auto;
    display: flex;
    gap: 30px;
    padding: 15px 10px;
    color: #45407b;

    & h3{
        font-weight: bold;
        font-size: 24px;
    }

    & div{
        border: 1px solid gainsboro;
        padding: 5px;
        display: flex;
        gap: 15px;
        font-weight: 600;
        border-image: 40px;
        height:55px ;
        width: 150px;
    }
    .menuimg{
        height: 10px;
        width: 10px;
    }
}

.banner-image{
    position: absolute;
    width: 55dvw; 
    top: 0;
    left: 45%;
    z-index: -155;
    
    
}

.banner-section{
    padding: 1px 0 ;
    margin-left: 100px;

    & h1{
        font-size: 120px;
        font-weight: 660px;
        color: #020016;
    }

    & div{
        padding: 20px 0;
        display: flex;
        gap: 5px;
        color: #45407b;
        align-items: center;
        justify-items: center;
        font-size: 25px;
    }
    

    .emoji-img{
        width: 55px;
        height: 55px;
    }
}

button{
    color: white;
    background-color: #45407b;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 30px;
    border: none;
    cursor: pointer;
}

.target-section{
    padding: 180px 0;
    display: grid;
    gap: 9rem;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;

    & img{
        width: 530px ;
        height:530px ;
        object-fit: cover;
    }
    

    .details-section{
        padding: 40px 0;

        & h2{
            font-size:100px;
            font-weight: 425px;
        }

        .details{
            padding: 40px 0;
            color: grey;
            font-size: 24px;
            font-weight: 400;

        }



        .store-design{
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 40px 30px;
            background-color: #ccedfd;
            border-radius: 20px;
            width: fit-content;
            height: 65px;

            & p{
                font-size: 12px;
                color: #9393c4;
            }

            & h3{
                font-size: 18px;
                font-weight: 600px;
            }

            & img{
                width: 55px;
                height: 65px;
            }
    }
            
        }
    
    }
    

/* Track Section */
.track-section{
    position: relative;

    .bg-track{
        position: absolute ;
        z-index: -1;
        left: 0%;
        top: 0%;
    }

    .left-section{
        & h2{
          font-size: 85px;  
        }
    
        .image-grid{
            padding-top: 40px;
            padding-left: 20px;
            padding-top: 55px;
            display: flex;
            gap: 0px;
            

            & div{
                width: 170px;
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 125px;
                
            }

            & div:nth-child(2){
                margin-top: 40px;
            }
        }
    }

    .right-section{
        & h3{
            font-size: 35px;
            color: #9393c4;
            font-weight: 35;
            padding-right: 18rem;
            padding-top: 1rem;
        }

        .details-div{
            display: flex;
            align-items: center;
            gap: 30px;
            margin-top: 60px;
             ;

            & div{
                padding-top: 85px;

                & h2{
                    font-size: 24px;
                    font-size: 600;
                }
                
                & p{
                    font-size: 20px;
                    color: #9393c4;
                    padding-top: 25px;
                    

                }
            }
        } 
    }  
}      

/* company */
.company{
    display: flex;
    align-items: center;
    justify-content: center;

    & img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* join section */
.join{
    width: 90%;
    margin: 120px auto;
    background-color: #d9f4ff;
    border-radius: 56px;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    .details{
        display: flex;
        justify-content: center;
        margin: 0% auto;
        flex-direction: column;
        gap: 24px;
    }

    & h2{
        font-size: 68px;
    }

    .store-design{
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 28px;
        background-color: #45407b;
        border-radius: 20px;
        width: fit-content;

        & p{
            font-size: 12px;
            color: #9393c4;
        }

        & h3{
            font-size: 18px;
            font-weight: 600;
            color: white;
        }

        & img{
            width: 25px;
        }
        
    }
}


/* responsive for mobile */
@media  (max-device-width: 767px) {
    .container{
        padding: 0 16px;
    }
    
    .between{
        gap: 3rem;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .banner-section{
        padding-left: 40px;
        padding-top:90px;
        position: relative;
        right: 90px;
        text-align: left;

        & h1{
            font-size: 45px;
        }
    
        & div{
            padding: 20px 0;
            font-size: 20px;
        }

    }

    .target-section{
        padding: 120px;
        display: flex;
        flex-direction: column;
        grid-template-columns: repeat(2, minmax(0,1fr));
        align-items: center;
        text-align: left;

        & img{
            height: 400px ;
            width:400px ;
            padding-left: 5px;
            margin-bottom: 10px;
        
    }
        & h2{
            font-size:  20px;
            margin-bottom: 0px;
            margin-top: -175px;
            padding: 5px 5px ;
        }
        
    }

    .track-section{    
        .bg-track{
            right: 50%;
            top: 0%;
            width: 100%;
            text-align: left;
        }
    
        .left-section{
            & h2{
              font-size: 55px;  
            }
            .image-grid{
                padding-top: 20px;
                padding-left: 10px;
    
                & div{
                    width: 65px;
                    gap: 10px;
                }
            }
        }
    
        .right-section{
            & h3{
                font-size: 24px;
                padding-right: 3rem;
                text-align: 35px 0;
            }
    
            .details-div{
                gap: 10px;
                margin-top: 10px;
                padding-bottom: 25px;
    
                & div{
                    padding-top: 16px;
                }
            }
        }
    }
    .track-section + .target-section{

         margin-top: 95px;
    } 

    .company{
        margin-top: 60px;
    }

    .join{
        margin: 80px auto;
        border-radius: 24px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    
        .details{
            margin: 16px;
        }
    
        & h2{
            font-size: 40px;
        }

    
        .store-design{
            gap: 12px;
            padding: 10px 24px;
            border-radius: 14px;
    
            & h3{
                font-size: 16px;
            }
    
            & img{
                width: 45px;
            }
            
        }

    & img {
        width: 100%;
    }
    }
    
    .Calories-section{
        .details-section{
            margin-top: px;
        }
        .left-section{
            padding: 55px;
            margin-top: 25px;
            
        }
        & h2{
                padding-top: 45px;
        }
    }
 
}      

