*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
::-webkit-scrollbar{
    width: 6px;
}
::-webkit-scrollbar-track{
    background: #b9acacfa;
}
::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 10px;
}
body{
    font-family: "Poppins", sans-serif;
}
header{
    z-index: 9999;
    position: fixed;
    top: 3px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 100px;
    transition: 0.6s ease;
}
header .logo{
    display: flex;
    position: relative;
    justify-content: center;
    top: 3px;
}
header .logo img{
    width: 300px;
}
header .navigation{
    position: relative;
}
header .navigation .navigation-items a{
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.6s ease;
}
header .navigation .navigation-items a:after{
    content: '';
    display: block;
    position: absolute;
    background: #fff;
    width: 0;
    height: 1.9px;
    bottom: -3px;
    left: 0;
    transform: scale(0);
    transition: transform 0.6s ease;
}
header .navigation .navigation-items a:hover:after{
    width: 100%;
    transform: scale(1);
}

section{
    padding: 0 160px;
}

.home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.959);
}
.container{
    overflow: hidden;
    z-index: 111;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    /*width: 1000px;
    height: 600px;*/
    background: #f5f5f5;
    box-shadow: 0 30px 50x #dbdbdb;
}
.container .slide .item{
    width: 200px;
    height: 280px;
    position: absolute;
    top: 50%;
    transform: translate(70%, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}
.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}
.slide .item:nth-child(3){
    left: 50%;
}
.slide .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide .item:nth-child(5){
    left: calc(50% + 440px);
}
.slide .item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}
.item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 40%;
    text-align: left;
    color: #eee;
    transform: translate(0%, -50%);
    font-family: -apple-system, sans-serif;
    display: none;
    object-position: center;
}
.slide .item:nth-child(2) .content{
    display: block;
}
.content .name{
    font-size: 70px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 3px;
    line-height: 100%;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}
/* .content .desc{
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
} */
.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #000;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    transition: 0.3s;
}
.content button:hover{
    background: #b9acacfa;
    color: #fff;
    border: 1px solid #fff;
}
@keyframes animate{
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(30px);
    }
    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}
a{
    color: #000;
    text-decoration: none;
}
.button{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}
.button button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 30px 3px;
    border: 1px solid #000;
    transition: 0.3s;
}
.button button:hover{
    background: #b9acacfa;
    color: #fff;
    border: 1px solid #fff;
}
.social{
    position: relative;
    margin-top: 500px;
    margin-left: 100px;
}
.social a{
    display: inline-block;
    color: #ffffff;
    margin-right: 30px;
    font-size: 30px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
    transition: 0.3s;
}
.social a:hover{
    transform: scale(1.2);
    transition: .3s;
    color: white;
}

.home video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about{
    top: 0;
    left: 0;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 60px;
}
.about h3{
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 120%;
    margin-bottom: 30px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
}
.about p{
    font-size: 19px;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1px;
}
.about button{
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #000;
    transition: 0.3s;
    margin-bottom: -10px;
}
.about button:hover{
    background: #b9acacfa;
    color: #fff;
    border: 1px solid #fff;
}

.services{
    width: 100%;
    background-color: #000;
    position: relative;
}
.services .bg-img{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 690px;
    object-fit: cover;
}
.services .grids{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 120px 30px;
    padding-bottom: 200px;
}
.services .grids a{
    color: #000;
    text-decoration: none;
}
.grid-item{
    top: 120px;
    position: sticky;
    background-color: #b9acacfa;
    width: 300px;
    height: 300px;
    margin: 10px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s;
}
.grid-item img{
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}
.grid-item h3{
    font-size: 23px;
}
.grid-item:hover{
    transform: translateY(-9px);
    cursor: pointer;
}

/* .ganpatipoojan img{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 690px;
    object-fit: cover;
} */
/* .ganpatipoojan{
    width: 100%;
    height: 100%;
    background-color: #000;
}
.ganpatipoojan .gp-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ganpatipoojan .grids{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 160px 30px;
}
.ganpatipoojan .grid-item{
    top: 120px;
    position: sticky;
    background-color: #b9acacfa;
    width: 300px;
    height: 300px;
    margin: 10px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s;
}
.ganpatipoojan .grid-item img{
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}
.ganpatipoojan .grid-item h3{
    font-size: 23px;
}
.ganpatipoojan .grid-item:hover{
    transform: translateY(-9px);
}

.laxmipoojan{
    width: 100%;
    height: 100%;
    background-color: #000;
    position: relative;
}
.laxmipoojan .lp-img{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.laxmipoojan .lp-gd{
    top: 160px;
    left: 0;
    padding-left: 100px;
    width: 100%;
    height: 100%;
    align-items: center;
    position: relative;
    display: flex;
    background-color: red;
}
.lp-gd-content{
    top: 120px;
    position: sticky;
    background-color: #b9acacfa;
    width: 300px;
    height: 300px;
    margin: 10px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}
.lp-gd-content img{
    width: 100%;
    margin-bottom: 12px;
    object-fit: cover;
}
.lp-gd-content h3{
    font-size: 23px;
}
.lp-info{   
    width: 50%;
    padding: 30px;
    background-color: rebeccapurple;
    position: relative;
    margin-left: 80px;
}
.lp-info h3{
    font-size: 23px;
    text-align: center;
} */
.bg-img{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 690px;
    object-fit: cover;
}
.grids{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 120px 30px;
    padding-bottom: 200px;
}
.grids a{
    color: #000;
    text-decoration: none;
}
.grid-item{
    top: 120px;
    position: sticky;
    background-color: #b9acacfa;
    width: 300px;
    height: 300px;
    margin: 10px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s;
}
.grid-item img{
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}
.grid-item h3{
    font-size: 23px;
}
.grid-item:hover{
    transform: translateY(-9px);
    cursor: pointer;
}
.grid-item-content{
    width: 50%;
    padding: 30px;
    background-color: #b9acacfa;
    position: relative;
    margin-left: 80px;
    text-align: center;
}
.grid-item-content h3{
    font-size: 23px;
    text-align: center;
}
.grid-item-content p{
    font-size: 19px;
}
.grid-item-content h6{
    margin-top: 30px;
    font-size: 23px;
}

.gallery{
    top: 140px;
    position: sticky;
    width: 100%;
    margin: 0 auto;
    columns: 3;
    column-gap: auto;
    position: relative;
    background-color: transparent;
}
.gallery video{
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery .ga-img{
    z-index: 000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 690px;
    object-fit: cover;
}
.gallery .boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery .box > *{
    color: transparent;
}
.gallery .box{
    z-index: 999;
    width: 100%;
    margin-bottom: 10px;
    transition: 1s ease;
}
.gallery .box img{
    max-width: 100%;
    border-radius: 9px;
}

.contact{
    min-height: 100vh;
    width: 100%;
    background: #426a6b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.contact img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cntr{
    /* top: 50%;
    left: 50%;
    width: 70%;
    height: auto;
    background: #ffffff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */

    top:10px;
    left: 0;
    position: relative;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 19px;
}
.cntr .content{
    top: 0;
    left: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cntr .content .left-side{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #00000099;
}
.content .left-side .details{
    margin: 14px;
    text-align: center;
}
.content .left-side .details i{
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
}
.content .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.content .left-side .details .enquiry{
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
    font-size: 14px;
    color: #000000;
}
.content .left-side .details .mail-id{
    font-size: 14px;
    color: #000000;
}

.cntr .content .center-side{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.content .center-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #00000099;
}
.content .center-side .details{
    margin: 14px;
    text-align: center;
}
.content .center-side .details i{
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
}
.content .center-side .details .topic{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.content .center-side .details .enquiry{
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}
.content .center-side .details .text-one,
.content .center-side .details .text-two{
    font-size: 14px;
    color: #000000;
}
.content .center-side .details .mail-id{
    font-size: 14px;
    color: #000000;
}

.cntr .content .right-side{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.content .right-side .details{
    margin: 14px;
    text-align: center;
}
.content .right-side .details i{
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
}
.content .right-side .details .topic{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.content .right-side .details .enquiry{
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}
.content .right-side .details .text-one,
.content .right-side .details .text-two{
    font-size: 14px;
    color: #000000;
}
.content .right-side .details .mail-id{
    font-size: 14px;
    color: #000000;
}

@media /*only*/(max-width: 2560px){
    .services .bg-img{
        height: 2000px;
    }
}

@media (max-width: 1040px){
    ::-webkit-scrollbar{
        width: 6px;
    }
    ::-webkit-scrollbar-track{
        background: #b9acacfa;
    }
    ::-webkit-scrollbar-thumb{
        background: #fff;
        border-radius: 10px;
    }
    header{
        padding: 12px 20px;
    }
    section{
        padding: 100px 20px;
    }
    .content:after{
        display: none;
    }
    .home{
        justify-content: center;
        align-items: center;
    }
    .home .content a:hover{
        background-color: #000;
        color: #fff;
        transition: 0.3s ease;
    }
    .home .media-icons{
        right: 15px;
    }
    .item .content{
        width: 50%;
    }
    header .navigation{
        display: none;
    }
    header .logo img{
        width: 400px;
    }
    header .navigation.active{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 1, 0.5);
    }
    header .navigation .navigation-items a{
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }
    header .navigation .navigation-items a:before{
        background: #222;
        height: 5px;
    }
    header .navigation .navigation-items{
        background: #fff;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }
    .menu-btn{
        background: url(../../menu.png)no-repeat;
        background-size: 40px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .menu-btn.active{
        z-index: 999;
        background: url(../../arrow\ up.png)no-repeat;
        background-size: 60px;
        background-position: center;
        transition: 0.3s ease;
    }
    .services .grids{
        padding: 90px 10px;
    }
    .services .grid-item{
        top: 160px;
    }
    .services .bg-img {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .grids{
        padding: 190px 10px;
    }
    .grid-item{
        top: 160px;
    }
    .bg-img{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .gallery{
        width: 90%;
    }
    .gallery .ga-img{
        z-index: 000;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px){
    header .logo img{
        width: 260px;
    }
    .home{
        justify-content: center;
        align-items: center;
    }
    .home .content{
        width: 90%;
    }
    .home .content a:hover{
        background-color: #000;
        color: #fff;
        transition: 0.3s ease;
    }
    .home .content h1{
        font-size: 3em;
        line-height: 60px;
    }
    .container .slide .item{
        background-position: 40%;
    }
    .content .name{
        font-size: 50px;
    }
    .item .content{
        left: 30px;
        width: 30%;
    }
    .services .bg-img {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .services .grids{
        padding: 60px 30px;
    }
    .services .grid-item{
        top: 160px;
    }

    .about{
        padding: 30px;
    }
    .about h3{
        font-size: 30px;
        margin-bottom: 19px;
    }
    .about p{
        font-size: 16px;
    }
    .bg-img{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .grids{
        padding: 60px 30px;
    }
    .grid-item{
        top: 160px;
    }
    .grid-item-content{
        width: 100%;
        margin: 0px;
    }
    .menu-btn{
        background: url(../../menu.png)no-repeat;
        background-size: 28px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .menu-btn.active{
        z-index: 999;
        background: url(../../arrow\ up.png)no-repeat;
        background-size: 60px;
        background-position: center;
        transition: 0.3s ease;
    }

    .social{
        position: relative;
        margin-top: 450px;
        margin-left: 100px;
    }
    
    .gallery{
        top: 30px;
        width: 90%;
        margin: 0 auto;
        columns: 1;
    }
    .cntr{
        top: 0px;
    }
    .cntr .content .left-side{
        top: -18px;
        width: 35%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .content .left-side::before{
        display: none;
    }
    .content .left-side .details{
        margin: 12px;
    }
    .content .left-side .details i{
        font-size: 23px;
    }
    .content .left-side .details .topic{
        font-size: 16px;
    }
    .content .left-side .details .text-one,
    .content .left-side .details .text-two{
        font-size: 12px;
    }
    .content .left-side .email_details{
        font-size: 14px;
        color: #000000;
        display: none;
    }

    .cntr .content .center-side{
        width: 35%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .content .center-side::before{
        display: none;
    }
    .content .center-side .details{
        margin: 12px;
    }
    .content .center-side .details i{
        font-size: 23px;
    }
    .content .center-side .details .topic{
        font-size: 16px;
    }
    .content .center-side .details .text-one,
    .content .center-side .details .text-two{
        font-size: 12px;
    }

    .cntr .content .right-side{
        top: -18px;
        width: 35%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .content .right-side::before{
        display: none;
    }
    .content .right-side .details{
        margin: 12px;
    }
    .content .right-side .details i{
        font-size: 23px;
    }
    .content .right-side .details .topic{
        font-size: 16px;
    }
    .content .right-side .details .text-one,
    .content .right-side .details .text-two{
        font-size: 12px;
    }
    .content .right-side .email_details{
        font-size: 14px;
        color: #000000;
        display: none;
    }
}

@media (max-width: 430px){
    header .logo img{
        width: 260px;
    }
    .home{
        justify-content: center;
        align-items: center;
    }
    .home .content{
        width: 90%;
    }
    .home .content a:hover{
        background-color: #000;
        color: #fff;
        transition: 0.3s ease;
    }
    .home .content h1{
        font-size: 3em;
        line-height: 60px;
    }
    .container .slide .item{
        background-position: 40%;
    }
    .content .name{
        font-size: 50px;
    }
    .item .content{
        left: 30px;
        width: 30%;
    }
    .services .bg-img {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .services .grids{
        padding: 60px 30px;
    }
    .services .grid-item{
        top: 160px;
    }

    .about{
        padding: 30px;
    }
    .about h3{
        font-size: 30px;
        margin-bottom: 19px;
    }
    .about p{
        font-size: 16px;
    }
    .bg-img{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .grids{
        padding: 60px 30px;
    }
    .grid-item{
        top: 160px;
    }
    .grid-item-content{
        width: 100%;
        margin: 0px;
    }
    .menu-btn{
        background: url(../../menu.png)no-repeat;
        background-size: 28px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .menu-btn.active{
        z-index: 999;
        background: url(../../arrow\ up.png)no-repeat;
        background-size: 60px;
        background-position: center;
        transition: 0.3s ease;
    }
    .social{
        position: relative;
        margin-top: 450px;
        margin-left: 100px;
    }

    .gallery{
        top: 30px;
        width: 90%;
        margin: 0 auto;
        columns: 1;
    }
    .cntr{
        top: 0px;
    }
    .cntr .content .left-side{
        top: -18px;
        width: 35%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .content .left-side::before{
        display: none;
    }
    .content .left-side .details{
        margin: 12px;
    }
    .content .left-side .details i{
        font-size: 23px;
    }
    .content .left-side .details .topic{
        font-size: 16px;
    }
    .content .left-side .details .text-one,
    .content .left-side .details .text-two{
        font-size: 12px;
    }
    .content .left-side .email_details{
        font-size: 14px;
        color: #000000;
        display: none;
    }

    .cntr .content .center-side{
        width: 35%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .content .center-side::before{
        display: none;
    }
    .content .center-side .details{
        margin: 12px;
    }
    .content .center-side .details i{
        font-size: 23px;
    }
    .content .center-side .details .topic{
        font-size: 16px;
    }
    .content .center-side .details .text-one,
    .content .center-side .details .text-two{
        font-size: 12px;
    }

    .cntr .content .right-side{
        top: -18px;
        width: 35%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .content .right-side::before{
        display: none;
    }
    .content .right-side .details{
        margin: 12px;
    }
    .content .right-side .details i{
        font-size: 23px;
    }
    .content .right-side .details .topic{
        font-size: 16px;
    }
    .content .right-side .details .text-one,
    .content .right-side .details .text-two{
        font-size: 12px;
    }
    .content .right-side .email_details{
        font-size: 14px;
        color: #000000;
        display: none;
    }
}