@keyframes dash {
    from {
    stroke-dashoffset: 822;
    }
    to {
    stroke-dashoffset: 0;
    }
    }
    

body{
    margin: 0;
    padding: 0;
    background-color:  rgb(255, 252, 252);
}


.banner .text{
    padding: 0;
    background-size: cover;
    background: linear-gradient(to right,rgb(139, 24, 233),rgb(19, 239, 173) );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner{
    text-align: center;
    color: rgb(0, 0, 0);
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 60px;
    background:rgb(31, 33, 60);
    padding: 15px;
}


.topnav{
    display: flex;
    gap: 80px;
    justify-content: center;
    background-color: rgb(0, 0, 0);
    width: 100%;
}

.topnav a{
    font-family: 'Nunito Sans';
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    padding: 10px;
    transition: all 0.3s ;
}

.topnavcont svg,.topnavcont input{
    display: none;
}

.topnav:hover > a, .topnav:hover>.dropdown{
    opacity: 0.3;
}

.topnav:hover > a:hover, .topnav:hover>.dropdown:hover{
    opacity: 1;
    transform: translateY(-10px);
    color: rgb(30, 208, 95);
}

.dropdown{
    position: relative;
    display: inline-block;
    transition: all 0.3s ;
}

.dropdown a{
    display: inline-block;
}

.dropcontent {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    z-index: 1;
  }

.dropcontent a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

.dropdown:hover{
    color: rgb(87, 241, 85);
}


.dropcontent a:hover {color:rgb(87, 241, 85)}

.dropdown:hover .dropcontent {display: block;}




.Intro{
    background: url(./images/Backgrounds/Intro.svg);
    background-size: cover;
}

.milk{
    background: #C62368;
}


.subheading{
    text-align: center;
    font-family: 'Montserrat';
    color: #f9cd94;
    font-weight: 500;
    font-size: 40px;
    margin: 0;

}

.content{
    text-align:left;
    font-size: 25px;
    color:black ;
    font-family:'Nunito sans';
}


#introp{
    color: white;
}

.para{
    position: relative;
    width:80vw;
    height: fit-content;
    margin-top: 50px;
    border-radius: 8px;
    background: #001220;
    overflow: hidden;   
    transition: all .5s;
    display: flex;
    padding:20px;
    gap: 20px;
}


.paracontainer{ 
    width:100% ;
    display: flex;
    justify-content: center;
    border-radius: 20px;
}



.path {
    stroke-dasharray: 400;
    stroke-dashoffset: 1000;
    animation: dash 5s linear alternate infinite;
    }

.svg{
    z-index: 1;
    width: 7%;
    height: 7%;
    position: absolute;
    top: 9%;
    left: 16%;
    transform: rotate(30deg);
}


.card {
    scroll-snap-align: center;
    height: 300px;
    width: 200px;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    margin: 0;
    padding: 0;
}


.img{
    margin: 0;
    padding: 0;
    height: 90%;
    border-radius: 8px 8px 0 0 ;
}

.card img{
    height: 90%;
    width: 200px;
    border-radius: 8px 8px 0 0;
}

.card .desc{
    height:80px;
    margin: 0;
    text-align:center;
    background: #001220;
    font-size: 20px;
    color:#f9cd94 ;
    font-family:'poppins';
    border-radius: 0 0 8px 8px;
}

#it1{
    margin-left: 100px;
}

.btn{
    background: transparent;
    height: 10vh;
    border: 0;
    opacity: 0.5;
    transition: 0.3s;
}

.btn svg{
    transform: scale(2);
}

.btn:hover{
    opacity:1 ;
}


.slider-container {
    width: 100%;
    height:400px;
    overflow:auto;
    border-radius: 10px;
    display: flex;
    justify-content:center;
    align-items: center;
}

.inner-slider {
    scroll-snap-type:x mandatory;
    scroll-behavior: smooth;
    background:#F9CD94;
    border-radius: 10px;
    padding: 10px;
    height:90%;
    width: 85%;
    display: flex;
    justify-content:left ;
    gap: 100px;
    overflow:auto;

}


.price{
    margin-top: 5px;
    color: white;
    font-size: 17px;
}


.revHead{
    font-size: 100px;
    margin-top: 0px;
    font-family: poppins;
    color: #ffffff;
}

#milk{
    margin-top:0;
}

#milk2{
    margin-top:0;
}


.hidden{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-500px);
    transition: all 0.5s ;
}

.show{
    transform: translateX(0);
    filter: blur(0);
    opacity:1 ;
}

.botnav{
    display: flex;
    gap: 80px;
    justify-content: center;
    background-color: rgb(0, 0, 0);
    width: 100%;
}

.botnav a{
    font-family: 'Nunito Sans';
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    padding: 10px;
    transition: all 0.3s ;
}

#obutt{
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    border: 0;
    background-color:#f9cd94 ;
    font-family: poppins;
    font-size: 18px;
    font-weight: 600;
    color: white;
    transition: 0.5s ;
    margin-bottom: 20px;
}

#obutt:hover{
   transform: translateY(-15px);
   background-color: #4b31dc;
   color:   rgb(40, 211, 154);
   cursor:pointer;
}

.buttoncontainer{
    display: flex;
    justify-content: center;
    background-color: #C62368;
}

@media (max-width:750px){
    .banner{
        position: relative;
        z-index: 4;
    }
    .topnav {
        padding:10px ;
        background-color: #ffffff;
        flex-direction: column;
        width:60% ;
        gap: 5px;
        padding-top: 10px;
        text-align: center;
        display: flex;
        position: absolute;
        transform: translateY(-400px);
        transition: 0.5s;
        z-index: 1;
    }

    .topnav .dropcontent{
        position: static;
    }

    .topnav a{
        color: black;
    }


    .topnavcont svg{
        position: absolute;
        z-index: 5;
    }
    .topnavcont svg{
        padding: 2px;
        background-color: #ffffff;
        display: block;
        position: absolute;
        z-index: 2;
        left: 47%;
        transform: rotate(0deg);
        transition: 0.5s;
        border-radius: 50%;
    }


    .topnavcont svg:active{
        transform: rotate(90deg);
    }


    .topnavcont{
        position: relative;
        display: flex;
        justify-content: center;
        align-content: center;

    }

    .topnavcont input{
        display: none;
        position: absolute;
        left: 49%;
        z-index: 3;
    }


    .topnavcont input:checked~.topnav{
        transform: translateY(0);
    }
    .botnav{
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    

}