@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    -webkit-transition: .2s linear;
    transition: .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 8.5rem;
}

    html::-webkit-scrollbar {
        width: 1rem;
    }

    html::-webkit-scrollbar-track {
        background: #fff;
    }

    html::-webkit-scrollbar-thumb {
        background: red;
        border-radius: 5rem;
    }

section {
    padding: 2rem 9%;
}

h1 {
    font-family: "Dancing Script", cursive;
    text-align:center;
    color:red;
    font-size : large;
}

.heading {
    text-align: center;
    padding-bottom: 2rem;
}

    .heading span {
        font-family: "Dancing Script", cursive;
        font-size: 3rem;
        color: red;
    }

    .heading h3 {
        font-size: 3rem;
        color: #130f40;
    }

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .7rem 1.8rem;
    font-size: 1.7rem;
    cursor: pointer;
    color: #fff;
    background: red;
    border-radius: .5rem;
}

    .btn:hover {
        background: #130f40;
    }

.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.5rem 9%;
}

    .header .logo img {
        width: 70px;
        height: 80px;
    }

    .header .navbar a {
        font-size: 1.7rem;
        margin: 0 1rem;
        color: #666;
    }

        .header .navbar a:hover {
            color: red;
        }

    .header .icons div {
        height: 4.5rem;
        width: 4.5rem;
        line-height: 4.5rem;
        font-size: 2rem;
        background: #f7f7f7;
        color: #130f40;
        border-radius: .5rem;
        margin-left: .3rem;
        cursor: pointer;
        text-align: center;
    }

        .header .icons div:hover {
            color: #fff;
            background: red;
        }

#menu-btn {
    display: none;
}

@-webkit-keyframes fadeUp {
    0% {
        -webkit-transform: translateY(5rem);
        transform: translateY(5rem);
        opacity: 0;
    }
}

@keyframes fadeUp {
    0% {
        -webkit-transform: translateY(5rem);
        transform: translateY(5rem);
        opacity: 0;
    }
}

.home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

    .home .content {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 41rem;
        flex: 1 1 41rem;
    }

        .home .content span {
            font-size: 2rem;
            color: red;
        }

        .home .content h3 {
            font-size: 4rem;
            color: #130f40;
            padding-top: 1rem;
        }

        .home .content p {
            font-size: 1.4rem;
            color: #666;
            line-height: 2;
            padding: 1rem 0;
        }

    .home .image {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 41rem;
        flex: 1 1 41rem;
        margin: 2rem 0;
        pointer-events: none;
    }

        .home .image .home-img {
            width: 100%;
            margin-top: 5rem;
        }

    .home .home-parallax-img {
        position: absolute;
        top: -10rem;
        right: -10rem;
        width: 80vw;
    }


.about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    background: #f7f7f7;
}

    .about .image {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    }

        .about .image img {
            width: 100%;
        }

    .about .content {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    }

        .about .content span {
            font-family: "Dancing Script", cursive;
            font-size: 3rem;
            color: red;
        }

        .about .content .title {
            font-size: 3rem;
            padding-top: .5rem;
            color: #130f40;
        }

        .about .content p {
            padding: 1rem 0;
            line-height: 2;
            font-size: 1.4rem;
            color: #666;
        }

        .about .content .icons-container {
            margin-top: 2rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

            .about .content .icons-container .icons {
                -webkit-box-flex: 1;
                -ms-flex: 1 1 20rem;
                flex: 1 1 20rem;
                border-radius: .5rem;
                background: #fff;
                -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
                box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                gap: 2rem;
                padding: 2rem;
            }

                .about .content .icons-container .icons h3 {
                    font-size: 1.7rem;
                    color: #130f40;
                }

.popular .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

    .popular .box-container .box {
        border-radius: .5rem;
        position: relative;
        padding: 2rem;
        text-align: center;
    }

            .popular .box-container .box .image img {
                width: 300px;
                height: 200px;
            }

        .popular .box-container .box .content p{
            font-size: 1.8rem;
            color: #130f40;
            padding: 0.5rem;
        }


.menu .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

    .menu .box-container .box {
        border-radius: .5rem;
        background: #f7f7f7;
        padding: 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1.5rem;
    }

        .menu .box-container .box:hover {
            background: #130f40;
        }

            .menu .box-container .box:hover .content h3 {
                color: #fff;
            }

        .menu .box-container .box img {
            height: 10rem;
        }

        .menu .box-container .box .content h3 {
            font-size: 2rem;
            color: #130f40;
            padding-bottom: .5rem;
        }

        .menu .box-container .box .content .price {
            font-size: 1.8rem;
            color: red;
        }

.order .icons-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

    .order .icons-container .icons {
        border-radius: .5rem;
        padding: 2rem;
        text-align: center;
        background: #f7f7f7;
    }

        .order .icons-container .icons img {
            height: 10rem;
        }

        .order .icons-container .icons h3 {
            font-size: 2rem;
            color: #130f40;
            margin-top: .5rem;
        }

.order form {
    background: #f7f7f7;
    padding: 2rem;
    border-radius: .5rem;
}

    .order form .flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .order form .flex .inputBox {
            width: 49%;
            padding: .7rem 0;
        }

        .order form .flex span {
            font-size: 1.7rem;
            color: #666;
        }

        .order form .flex input, .order form .flex textarea {
            width: 100%;
            margin-top: .5rem;
            padding: 1rem 1.2rem;
            width: 100%;
            border-radius: .5rem;
            font-size: 1.6rem;
            text-transform: none;
            color: #130f40;
        }

        .order form .flex textarea {
            height: 20rem;
            resize: none;
        }

        .order form .flex .map {
            height: 100%;
            width: 100%;
            border-radius: .5rem;
        }

.blogs .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

    .blogs .box-container .box {
        border-radius: .5rem;
        overflow: hidden;
    }

        .blogs .box-container .box:hover .image h3 {
            left: 1.5rem;
        }

        .blogs .box-container .box:hover .image img {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

        .blogs .box-container .box .image {
            position: relative;
            height: 25rem;
            overflow: hidden;
            width: 100%;
        }

            .blogs .box-container .box .image h3 {
                position: absolute;
                z-index: 10;
                top: 1rem;
                left: -100%;
                border-radius: .5rem;
                padding: .5rem 1rem;
                background: #fff;
                color: #130f40;
                font-size: 1.5rem;
            }

                .blogs .box-container .box .image h3 i {
                    padding-right: .5rem;
                    color: red;
                }

            .blogs .box-container .box .image img {
                height: 100%;
                width: 100%;
                -o-object-fit: cover;
                object-fit: cover;
            }

        .blogs .box-container .box .content {
            padding: 2rem 1.5rem;
            background: #f7f7f7;
        }

            .blogs .box-container .box .content .tags {
                padding-bottom: 1rem;
            }

                .blogs .box-container .box .content .tags a {
                    font-size: 1.5rem;
                    color: #666;
                    padding-right: .5rem;
                }

                    .blogs .box-container .box .content .tags a:hover {
                        color: red;
                    }

                    .blogs .box-container .box .content .tags a i {
                        color: red;
                        padding-right: .5rem;
                    }

            .blogs .box-container .box .content h3 {
                font-size: 2rem;
                color: #130f40;
            }

            .blogs .box-container .box .content p {
                font-size: 1.4rem;
                color: #666;
                padding: 1rem 0;
                line-height: 2;
            }

.footer {
    background: #f7f7f7;
}

    .footer .box-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap: 1.5rem;
    }

        .footer .box-container .box h3 {
            font-size: 2.2rem;
            color: #130f40;
            padding: 1rem 0;
        }

        .footer .box-container .box p {
            font-size: 1.4rem;
            color: #666;
            padding: 1rem 0;
        }

        .footer .box-container .box a {
            display: block;
            font-size: 1.4rem;
            color: #666;
            padding: 1rem 0;
        }

            .footer .box-container .box a:hover {
                color: red;
            }

                .footer .box-container .box a:hover i {
                    padding-right: 2rem;
                }

            .footer .box-container .box a i {
                padding-right: .5rem;
                color: red;
            }

    .footer .bottom {
        padding-top: 1rem;
        text-align: center;
    }


        .footer .bottom .credit {
            font-size: 2rem;
            color: #666;
            padding: 1rem;
        }

            .footer .bottom .credit span {
                color: red;
            }

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 2rem;
    }

    section {
        padding: 2rem;
    }
    .popular .box-container .box .image img {
        width: 300px;
        height: 200px
    }
}

@media (max-width: 768px) {
    #menu-btn {
        display: inline-block;
    }

    #social {
        display: none;
    }

    .header .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
        border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

        .header .navbar.active {
            -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        }

        .header .navbar a {
            font-size: 2rem;
            margin: 2rem;
            display: block;
        }

    .home .home-parallax-img {
        top: 0;
        right: 0;
        width: 130%;
    }

    .order form .flex .inputBox {
        width: 100%;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .shopping-cart-container .cart-total .box {
        text-align: center;
    }

        .shopping-cart-container .cart-total .box .btn {
            width: 100%;
        }

    .home .content h3 {
        font-size: 3rem;
    }

    .home .content p {
        font-size: 1.5rem;
    }
}
/*# sourceMappingURL=style.css.map */