@import url(color.css);
@import url(font_size.css);
@import url(button.css);


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color: var(--main_color) !important;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    background-color: var(--bg_color);
}

.text-color {
    color: var(--main_color) !important;
}

/* Change the color of the scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--bg_light) !important;
}

/* Change the color of the scrollbar thumb */
::-webkit-scrollbar-thumb {
    background-color: var(--primary_color);
    border-radius: 5px;
}

/* Change the color of the scrollbar on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary_color);
}

.ladoo-container {
    max-width: 1080px !important;
    margin: 0 auto;
}

/* header start */

.navbar-scrolled {
    background-color: var(--dark_color2);
    transition: background-color 0.3s ease;
}
.navbar {
    padding: 16px 0 !important;
}
.brandLogo{
    height: 32px;
    width: auto;
}
/* header end */



/* main banner start */

.mainRow {
    height: 100vh !important;
    vertical-align: middle;
    text-align: left;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    color: var(--main_color);
}
.image {
    background-color: #490D40;
    background: url('../image/main-background.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    margin-top: -64px;
    margin-bottom: 80px;

    .heading {
        color: white;
        text-align: center;
        padding-top: 200px;
    }

    p {
        text-align: left;
    }
}

/* main banner end */

.product-section {
    padding: 80px 0;
}

.dmcLogo img{
    height: 120px;
    width: auto;
    margin: 20px 32px;
}


.section-header {
    text-align: center;
    color: var(--grey_color1);
    align-items: center;
}

.special-text {
    color: var(--grey_color1);
}

.ladoo-tiles {
    background-color: var(--dark_color1);
    padding: 16px;
    border-radius: 20px;
    height: 100%;
    justify-content: space-between;
}
.ladoo-card {
    background-color: var(--dark_color1);
    border-radius: 20px;
    height: 100%;
    text-align: left !important;
}

.product-image{
    height: 540px;
    width: auto;
}
.slider-image {
    background-color: #490D40;
    background: url('../image/main-background2.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    margin-top: 80px;

    .heading {
        color: white;
        text-align: center;
        padding-top: 200px;
    }

    p {
        text-align: left;
    }

    .laddoo-slider{
        z-index: 2;
        height: 100vh;
        padding: 80px 0;
    }
}

.footer-section{
    background-color: var(--dark_color2);
    padding: 40px 0;
    text-align: left;

    ul{
        li:hover{
            a{
                color: var(--main_color) !important;
            }
            
        }
    }

    .brandLogo{
        height: 24px;
        width: auto;
    }
}

@media (min-width: 768px) {
    .custom-bg-md-none {
        background-color: transparent !important;
    }
}

@media (max-width: 768px) {
    
    .custom-bg-md-none {
        background-color: transparent !important;
    }

    .image {
        height: 100vh;
    
        .heading {
            color: white;
            text-align: center;
            padding-top: 200px;
        }
    
        p {
            text-align: left;
        }
    }

    .product-image{
        height: auto !important;
        width: 100% !important;
    }

    .slider-image {
        .laddoo-slider{
            padding: 60px 12px;
        }
    }
}


