@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/ananda-black');
/* Root */
:root {
    ---yellow: #ffa627;
    ---black: #222222;
    ---white: #ffffff;
    ---gray: #666666;
    ---hover:#f69e20;

}

/* Root */

/* Body */
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
    background-image: url(img/bac.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section {
    padding: 20px 150px;
}

/*body*/

.header {
    background-color: transparent;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .container nav {
    display: flex;
    align-items: center;
}

.header .container nav .navbar {
    margin-right: 10px;
    z-index: 7;
}

.header .container nav .navbar .link a {
    font-size: 20px;
    color: var(---black);
    font-weight: 500;
    padding: 0px 12px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.header .container nav .navbar .link a:hover {
    background-color: var(---yellow);
    color: var(---white);
}

.header .container nav .right {
    display: flex;
    align-items: center;
}

.header .container nav .right i {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background-color: var(---white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.205);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 20px;
}

.header .container nav .right i:hover {
    border: 2px solid var(---yellow);
}

.header .container nav .right button{
    width: 200px;
    height: 80px;
    background-color: var(---yellow);
    font-size: 20px;
    color: var(---white);
    font-weight: 600;
    cursor: pointer;
}

.header .container nav .right button:hover{
    background-color: var(---hover);
}

.header .container nav .right #menu {
    width: 50px;
    height: 50px;
    background-color: var(---white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.205);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 20px;
    display: none;
}

/*search*/
.search {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16%;
    display: none;
    z-index: 7;
}

.search .container {
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.192);
    text-align: center;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.search .container h1 {
    font-size: 60px;
    color: var(---black);
    font-weight: 600;
}

.search .container .input {
    width: 1000px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0px 0px 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.13);
    margin-top: 30px;
}

.search .container .input input {
    width: 100%;
    height: 100px;
    border-radius: 10px 0px 0px 10px;
    font-size: 20px;
    color: var(---black);
    padding-left: 20px;
}

.search .container .input input::placeholder {
    font-size: 20px;
    color: var(---black);
}

.search .container .input i {
    width: 100px;
    height: 100px;
    font-size: 20px;
    background-color: var(---yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(---white);
    border-radius: 0px 10px 10px 0px;
    cursor: pointer;
}

/*search*/

/*hero*/
.hero {
    background-color: transparent;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .container .text h1{
    font-size: 70px;
    color: var(---black);
    font-weight: 600;
    line-height: 80px;
    margin-top: 20px;
}

.hero .container .text h2{
    text-transform: capitalize;
    font-size: 40px;
    font-family: 'Ananda', sans-serif;
    color: var(---yellow);
}

.hero .container .text p{
    font-size: 20px;
    color: var(---gray);
    font-weight: 500;
    line-height: 40px;
    margin-top: 20px;
}

.hero .container .text .button{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.hero .container .text .button button{
    width: 200px;
    height: 70px;
    background-color: var(---yellow);
    color: var(---white);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}
.hero .container .text .button button:hover{
    background-color: var(---hover);
}
.hero .container .text .button a{
    font-size: 20px;
    color: var(---black);
    font-weight: 600;
    margin-left: 30px;
}
.hero .container .text .button a:hover{
    color: var(---yellow);
}
.hero .container .heroslider{
    background-color: transparent;
    margin-right: 0px;
    width: 700px;
}
.hero .container .heroslider .box{
    width: 100%;
}
.hero .container .heroslider .box .image{
    width: 100%;
}
.hero .container .heroslider .box .image img{
    width: 100%;
}
/*hero*/

/*categories*/
.cat{
    margin-top: -20px;
}
.cat .container{
    display: flex;
    align-items: center;
}
.cat .container .box{
    width: 200px;
    height: 200px;
    background-color: var(---white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat .container .box .data  .icon{
    background-color: transparent;
    margin-bottom: 10px;
}
.cat .container .box .data i{
    font-size: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.cat .container .box .data a{
    font-size: 20px;
    color: var(---black);
    font-weight: 600;
}
.cat .container .box .data a:hover{
    color: var(---white);
}
.cat .container .box:hover{
    color: var(---white);
    background-color: var(---yellow);
}
/*categories*/

/*product*/
.product{
    background-color: transparent;
    margin-top: 100px;
}
.product .heading{
    text-align: center;
}
.product .heading h1{
    font-size: 70px;
    color: var(---black);
    font-weight: 600;
}
.product .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}
.product .container .box .image{
    background-color: transparent;
}
.product .container .box .image img{
    width: 100%;
}
.product .container .box{
    width: 370px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.137);
    background-color: var(---white);
}
.product .container .box .text{
    margin-bottom: 20px;
}
.product .container .box h1{
    font-size: 25px;
    font-weight: 600;
    color: var(---black);
    margin-left: 15px;
}
.product .container .box p{
    font-size: 25px;
    color: var(---gray);
    font-weight: 600;
    margin-left: 15px;
}
.product .container .box button{
    width: 344px;
    height: 70px;
    border: 3px solid var(---yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    font-size: 20px;
    color: var(---black);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0px auto;
    margin-top: 10px;
}
.product .container .box button i{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-left: 10px;
}
.product .container .box button:hover{
    background-color: var(---yellow);
    border: none;
    color: var(---white);
}
/*product*/

/*about*/
.about{
    background-color: transparent;
    margin-top: 100px;
}
.about .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about .container .text h2{
    text-transform: capitalize;
    font-size: 40px;
    font-family: 'Ananda', sans-serif;
    color: var(---yellow);
}
.about .container .text h1{
    font-size: 70px;
    color: var(---black);
    font-weight: 600;
    line-height: 80px;
    margin-top: 10px;
}
.about .container .text p{
    font-size: 20px;
    color: var(---gray);
    font-weight: 500;
    line-height: 40px;
    margin-top: 10px;
}
.about .container .text span{
    color: var(---yellow);
}
.about .container .text .button{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.about .container .text .button button{
    width: 200px;
    height: 70px;
    background-color: var(---yellow);
    color: var(---white);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}
.about .container .text .button button:hover{
    background-color: var(---hover);
}
.about .container .text .button a{
    font-size: 20px;
    color: var(---black);
    font-weight: 600;
    margin-left: 30px;
}
.about .container .text .button a:hover{
    color: var(---yellow);
}
/*about*/

/*contact*/
.contact{
    background-color: transparent;
    margin-top: 100px;
}
.contact .container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact .container .data{
    text-align: center;
}
.contact .container .data h1{
    font-size: 60px;
    color: var(---black);
    font-weight: 600;
}
.contact .container .data p{
    font-size: 20px;
    color: var(---gray);
    line-height: 40px;
    font-weight: 500;
}
.contact .container .data .input input{
    display: block;
    margin: 20px auto;
    width: 900px;
    height: 100px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.171);
    font-size: 20px;
    padding-left: 20px;
    color: var(---black);
    font-weight: 500;
}
.contact .container .data .input input::placeholder{
    font-size: 20px;
    color: var(---black);
}
.contact .container .data .input button{
    width: 900px;
    height: 100px;
    background-color: var(---yellow);
    color: var(---white);
    font-weight: 600;
    font-size: 30px;
    cursor: pointer;
}
.contact .container .data .input button:hover{
    background-color: var(---hover);
}
.contact .container .data .lastbtn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.contact .container .data .lastbtn input{
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.contact .container .data .lastbtn p{
    font-size: 20px;
    margin-left: 5px;
}
/*contact*/

/*footer*/
.footer{
    margin-top: 100px;
    background-color: var(---black);
}
.footer .container{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.footer .container .logo {
    text-align: center;
}
.footer .container .logo .icon{
    display: flex;
    align-items: center;
}
.footer .container .logo .icon i{
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 2px solid var(---white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(---white);
    margin: 10px 5px;
    cursor: pointer;
}
.footer .container .logo .icon i:hover{
    border: 2px solid var(---yellow);
    color: var(---yellow);
}
.footer .container .link h1{
    font-size: 30px;
    color: var(---white);
    font-weight: 600;
}
.footer .container .link .navbar a{
    display: block;
    font-size: 20px0;
    color: var(---white);
    line-height: 40px;
}
.footer .container .link .navbar a:hover{
    color: var(---yellow);
}
.footer .container .link p{
    font-size: 16px;
    color: var(---white);
    line-height: 30px;
    margin-top: 5px;
}
.footer .container .link .input{
    width: 445px;
    height: 70px;
    background-color: var(---white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.footer .container .link .input input{
    width: 100%;
    height: 70px;
    background-color: var(---white);
    border-radius: 10px;
    font-size: 16px;
    color: var(---black);
    font-weight: 500;
    padding-left: 10px;
}
.footer .container .link .input input::placeholder{
    color: var(---black);
}
.footer .container .link .input i{
    background-color: var(---yellow);
    color: var(---white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}
.footer .container .link .input i:hover{
    background-color: var(---hover);
}
.footer #para{
    text-align: center;
    color: var(---white);
    font-size: 16px;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 2px solid #ffffff65;
}
/*footer*/













/* media quries */

@media (max-width:1828px) {}

@media (max-width:1772px) {
    section {
        padding: 20px 100px;
    }
}

@media (max-width:1674px) {
    section {
        padding: 20px 75px;
    }
    .product .container .box{
        width: 340px;
    }
    .product .container .box button{
        width: 330px;
    }

}

@media (max-width:1590px) {
    section {
        padding: 20px 50px;
    }
}

@media (max-width:1486px) {
    .product .container .box{
        width: 320px;
    }
    .product .container .box button{
        width: 300px;
    }
    .about .container .text p{
        font-size: 16px;
        color: var(---gray);
        font-weight: 500;
        line-height: 30px;
        margin-top: 10px;
    }
}

@media (max-width:1390px) {
    section {
        padding: 20px 35px;
    }
    .product .container .box{
        width: 300px;
    }
    .product .container .box button{
        width: 280px;
    }
}

@media (max-width:1280px) {

    html{
        font-size: 80%;
    }

    section {
        padding: 20px 25px;
    }

    .header .container nav .navbar {
        background-color: transparent;
        width: 100%;
        position: absolute;
        right: 0;
        top: 16%;
        margin: 0px auto;
        display: none;
        padding: 20px 0px;
    }

    .header .container nav .navbar .link {
        background-color: var(---white);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.13);
        border-radius: 20px;
        width: 97%;
        margin: 0px auto;
    }

    .header .container nav .navbar .link a {
        font-size: 20px;
        color: var(---black);
        font-weight: 400;
        padding: 20px 20px;
        text-align: center;
        border-radius: 20px;
        display: block;
    }

    .header .container nav .right #menu {
        display: inherit;
    }
    .hero .container{
        display: block;
        text-align: center;
    }
    .hero .container .text .button{
        justify-content: center;
    }
    .hero .container .heroslider{
        margin: 0px auto;
        margin-top: 50px;
        width: 100%;
    }
    .hero .container .heroslider .box .image{
        width: 650px;
        margin: 0px auto;
    }
    .cat .container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .product .container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .product .container .box{
        width: 370px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.137);
        background-color: var(---white);
        margin: 20px 20px;
    }
    .product .container .box .text{
        margin-bottom: 20px;
    }
    .product .container .box h1{
        font-size: 25px;
        font-weight: 600;
        color: var(---black);
        margin-left: 15px;
    }
    .product .container .box p{
        font-size: 25px;
        color: var(---gray);
        font-weight: 600;
        margin-left: 15px;
    }
    .product .container .box button{
        width: 344px;
        height: 70px;
        border: 3px solid var(---yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        font-size: 20px;
        color: var(---black);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin: 0px auto;
        margin-top: 10px;
    }
    .about .container{
        display: block;
    }
    .about .container .image{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about .container .text{
        text-align: center;
    }
    .about .container .text .button{
        justify-content: center;
    }
    .about .container .text{
        margin-top: 50px;
    }
    .footer .container{
        display: block;
        text-align: center;
    }
    .footer .container .input{
        margin: 0px auto;
    }
    .footer .container .logo .icon{
        justify-content: center;
    }
    .footer .container .link{
        margin: 20px 0px;
    }
}

@media (max-width:1080px) {
    section {
        padding: 20px 20px;
    }

    .search .container .input {
        width: 800px;
        height: 100px;
        margin: 0px auto;
        margin-top: 30px;
    }
    .contact .container .data .input button{
        width: 100%;
    }
    .contact .container .data .input input{
        width: 100%;
    }
    
}

@media (max-width:850px) {
    .search .container .input {
        width: 700px;
        height: 100px;
        margin: 0px auto;
        margin-top: 30px;
    }
}

@media (max-width:780px) {

    section {
        padding: 20px 15px;
    }

    .search .container h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 600;
    }

    .search .container {
        height: 300px;
    }

    .search {
        top: 16%;
    }

    .search .container .input {
        width: 600px;
        height: 100px;
        margin: 0px auto;
        margin-top: 30px;
    }
    .about .container .image{
        width: 100%;
    }
    .about .container .image img{
        width: 100%;
    }
}

@media (max-width:690px) {
    section {
        padding: 20px 10px;
    }

    .search .container h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 600;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 50px;
    }

    .search .container .input {
        width: 500px;
        height: 100px;
        margin: 0px auto;
        margin-top: 30px;
        font-size: 16px;
    }
    
    .search .container .input input {
        font-size: 16px;
    }
    .search .container .input input::placeholder{
        font-size: 16px;
    }

    .hero .container .heroslider .box .image{
        width: 100%;
    }
    .hero .container .text h1{
        font-size: 60px;
        color: var(---black);
        font-weight: 700;
        line-height: 80px;
        margin-top: 20px;
    }
}

@media (max-width:550px) {
    .header .container nav .right button {
        display: none;
    }
    .cat .container .box{
        width: 100%;
        height: 200px;
    }

    .header .container nav .right i {
        margin-right: 0px;
    }

    .search .container .input {
        width: 90%;
        height: 100px;
        margin: 0px auto;
        margin-top: 30px;
    }
    .hero .container .text h1{
        font-size: 50px;
        color: var(---black);
        font-weight: 700;
        line-height: 70px;
        margin-top: 10px;
    }
    .hero .container .text p{
        font-size: 16px;
        color: var(---gray);
        font-weight: 500;
        line-height: 30px;
        margin-top: 20px;
    }

    .hero .container .text h2{
        text-transform: capitalize;
        font-size: 25px;
        font-family: 'Ananda', sans-serif;
        color: var(---yellow);
    }
    
    .product .heading h1{
        font-size: 50px;
        color: var(---black);
        font-weight: 600;
    }
    .product .container{
        margin-top: 30px;
    }
    .product{
        margin-top: 50px;
    }

    .about .container .text h1{
        font-size: 50px;
        color: var(---black);
        font-weight: 600;
        line-height: 60px;
    }
    .about .container .text{
        margin-top: 30px;
    }
    .about{
        margin-top: 50px;
    }
    .contact .container .data h1{
        font-size: 50px;
        color: var(---black);
        font-weight: 600;
        line-height: 60px;
    }
    .contact .container .data p{
        font-size: 16px;
        color: var(---gray);
        line-height: 30px;
        font-weight: 500;
    }
    .contact .container .data .lastbtn p{
        font-size: 16px;
        margin-left: 5px;
    }
    .contact{
        margin-top: 50px;
    }
    .footer{
        margin-top: 50px;
    }
}

@media (max-width:500px) {
    section {
        padding: 20px 5px;
    }
    .contact .container .data .lastbtn p{
        font-size: 12px;
        margin-left: 5px;
    }
    .footer .container .link .input{
        width: 100%;
    }
    .footer #para{
        font-size: 12px;
    }
    .contact .container .data .input input{
        font-size: 16px;
    }
    .contact .container .data .input input::placeholder{
        font-size: 16px;
    }
    .contact .container .data .input button{
        font-size: 25px;
    }
}

@media (max-width:400px) {
    .hero .container .text h1{
        font-size: 40px;
        color: var(---black);
        font-weight: 700;
        line-height: 60px;
    }
    .hero .container .text p{
        font-size: 12px;
        color: var(---gray);
        font-weight: 500;
        line-height: 30px;
        margin-top: 10px;
    }
    .hero .container .text .button button{
        width: 150px;
        height: 60px;
        background-color: var(---yellow);
        color: var(---white);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
    }
    .hero .container .text .button a{
        font-size: 16px;
        color: var(---black);
        font-weight: 600;
        margin-left: 10px;
    }
    .product .container .box{
        width: 100%;
    }
    .product .container .box button{
        width: 90%;
    }
    .product .heading h1{
        font-size: 40px;
        color: var(---black);
        font-weight: 600;
    }
    .about .container .text p{
        font-size: 12px;
        color: var(---gray);
        font-weight: 500;
        line-height: 30px;
        margin-top: 10px;
    }
    .about .container .text h1{
        font-size: 40px;
        color: var(---black);
        font-weight: 600;
        line-height: 50px;
    }
    .about .container .text h2{
        font-size: 20px;
        color: var(---yellow);
        font-weight: 600;
    }
    .about .container .text .button button{
        width: 150px;
        height: 60px;
        background-color: var(---yellow);
        color: var(---white);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
    }
    .about .container .text .button a{
        font-size: 16px;
        color: var(---black);
        font-weight: 600;
        margin-left: 10px;
    }
    .contact .container .data h1{
        font-size: 35px;
        color: var(---black);
        font-weight: 600;
        line-height: 50px;
    }
    .contact .container .data p{
        font-size: 12px;
        color: var(---gray);
        line-height: 30px;
        font-weight: 500;
    }
    .contact .container .data .lastbtn p{
        font-size: 10px;
    }
    .footer #para{
        font-size: 10px;
    }
}
@media (max-width:300px) {
    .header .container nav .right #searchbar{
        display: none;
    }
}
/* media quries */