@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
h2{
    font-weight: bold;
    text-align: center;
    font-size: 34px;
    font-family: anunati;
}

 /*navbar start*/   
nav {
    display: flex;
    height: 80px;
    width: 100%;
    background: #B1B2FF;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 100px;
    flex-wrap: wrap;
}

nav .logo {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

nav ul li {
    margin: 0 5px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
    color: #111;
    background: #fff;
}

nav .menu-btn i {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

input[type="checkbox"] {
    display: none;
}

@media (max-width: 1000px) {
    nav {
        padding: 0 40px 0 50px;
    }
    nav .logo {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
    }
    
}

@media only screen and (max-width: 600px){
    nav .menu-btn i {
        display: block;
    }
    nav .logo{
        padding-left: 0%;
        margin-left: -40px;
    }
    #click:checked~.menu-btn i:before {
        content: "\f00d";
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        background: #D2DAFF;
        height: 100%;
        width: 100%;
        text-align: center;
        display: block;
        border-radius: 0px 20px 20px 0px;
        transition: all 0.3s ease;
        z-index: 1;
    }

    #click:checked~ul {
        left: 0;
    }

    nav ul li {
        width: 100%;
        margin: 40px 0;
    }

    nav ul li a {
        width: 100%;
        margin-left: -100%;
        display: block;
        font-size: 20px;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    #click:checked~ul li a {
        margin-left: 0px;
    }

    nav ul li a.active,
    nav ul li a:hover {
        background: none;
        color: #B1B2FF;
    }
}

/*navabr end*/

/*Categories */
.categories{
    background-color: #fff;
    width: 100%;
    display: flex;
}
.categories lottie-player{
    height: 100px;
    width: 100px;
    margin-left: 25%;
}
.categories .btn {
    border: #fff;
    background-color: white;
    padding: 0px 9px;
    margin: 40px;
    font-size: 16px;
    cursor: pointer;   
  }
  .categories .btn:hover{
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: .3s;
    box-shadow: 1px 0px 3px  rgb(141, 141, 141);
  }
  @media only screen and (max-width: 600px){
    .categories{
        background-color: rgb(255, 255, 255);
        width: 100%;
        display: normal;
    }
    .categories lottie-player{
        height: 80px;
        width: 300px;
        margin-left: 0%;
    }
    .categories .btn {
        height: 30px;
        border-radius: 5px;
        background-color: white;
        color: black;
        padding: 0px 0px;
        font-size: 10px;
        cursor: pointer;  
        margin: 10px;
        margin-top: 30px; 
      }
      
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0px 2px 10px #888888;
    transition: 1s;
  }
  
.sticky + .content {
    padding-top: 60px;
  }
/*marble contant start*/
.marble{
    margin-top: 10%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    height: max-content;
}
.marble p{
    text-align: center;
    margin-top: 15px;
}

.column {
    float: left;
    margin-top: 30px;
    width: 33.33%;
    padding: 15px;
  }
  .column img{
    box-shadow: 5px 5px 10px rgb(202, 202, 202);
}
.column img:hover{
    box-shadow: 5px 5px 1px rgb(158, 158, 158);
    transition: .3s;
}
@media only screen and (max-width: 600px){
    .marble{
        width: 100%;
    }
    .marble p{
        font-size: 14px;
    }
    .column img{
        box-shadow: 5px 5px 10px rgb(202, 202, 202);
    }
    .column {
        float: left;
        margin-top: 30px;
        width: 33.33%;
        padding: 5px;
    }
}
.banner{
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
    height: 300px;
    background-image: url(/images/stone.jfif);
    background-repeat: no-repeat;
    background-size: cover;
    float: right;
}
.banner {
    text-align: center;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    padding-top: 5%;
}
/*granite section start*/
 .granite{
    width: 70%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    height: 390vh;
}
.granite p{
    text-align: center;
    margin-top: 15px;
}
@media (max-width: 600px){
    .banner{
        height: 200px;
        padding-top: 8%;
        font-size: 40px;
    }
    .granite{
        width: 100%;
        height: 165vh;
    }
    .granite p{
        font-size: 14px;
    }
    .column img{
        box-shadow: 5px 5px 10px rgb(202, 202, 202);
    }
    .column {
        float: left;
        margin-top: 30px;
        width: 33.33%;
        padding: 5px;
      }
}
