body {
    background: url('../assets/design1.jpg');
    background-size: repeat;

}

/* topbar styling */
.big {
    border: 1px solid black;
    width: 100%;
    height: 27vh;
    display: flex;
    flex-direction: row;
    background-color: white;
}

.bundle1 {
    display: flex;
    justify-content: center;
    width: 25%;
    height: 27vh;
    border: 1px solid black;
    background-color: white;
}

.bundle1 .first {
    height: 26vh;
}

.first img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bundle2 {
    width: 75%;
    height: 26vh;
    display: flex;
    flex-direction: column;
    /* border:1px solid dodgerblue; */
}

.bundle2 .second {
    height: 23vh;
    border: 1px solid black;
    display: flex;
    flex-direction: row;
}

.bundle2 .second .gst {
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    width: 75%;
    background-color:whitesmoke;
    color: black;
    font-size: 18px;
    /* border:1px solid black; */
}

.bundle2 .second .handles {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 20%;

}

.bundle2 .second .handles i {
    margin-right: 9%;
}


.bundle2 .third {
    height: 12vh;
    z-index:5;
    /* border:1px solid orange; */
}

@media screen and (max-width:760px) {

    .big {
        border: 1px solid black;
        width: 100%;
        height: 21vh;
        display: flex;
        flex-direction: row;
    }

    .bundle1 {
        display: flex;
        align-items: center;
        width: 34%;
        height: 21vh;
        border: 1px solid black;
    }

    .bundle1 .first {
        height: 20vh;
    }

    .bundle2 {
        width: 66%;
        height: 20vh;
        display: flex;
        flex-direction: column;
        /* border:1px solid dodgerblue; */
    }

    .bundle2 .second {
        height: 21vh;
        border: 1px solid black;
        display: flex;
        flex-direction: row;
    }

    .bundle2 .second .gst {
        height: 75%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70%;
        
    }




    .bundle2 .second {
        flex-direction: column;

    }

    .bundle2 .second .handles {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;

    }

    .bundle2 .second .gst {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
    }
}

/* topbar styling */

.social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1%;
    background-color: rgb(244, 246, 246);
}

.social i {
    margin-right: 1%;
    width: 21px;
}

a{
    text-decoration:none;
}

/* display css */

.main_box{
    /*border:1px solid black;*/
    width:96%;
    margin:3%;
    padding:3%;
    height:fit-content;
    background-color:whitesmoke;
    display:flex;
    flex-direction: row;

}

.img_box{
    /*border:1px dotted dodgerblue;*/           
    width:45%;
    height:75vh;
    margin-right:5%;
    overflow:hidden;
}

.img_box img{
    width:100%;
    height:100%;
    transition: 500ms linear;
    object-fit:contain;
}

.img_box:hover img{
    cursor:pointer;
    /*transform:scale(1.5);*/
    
}

.desc_box{
    /*border:1px dotted dodgerblue;*/
    width:55%;
    height:65vh;
    padding:4%;
}

.popup_image{
    display:fixed;
    top:10%;
    left:10%;
    width:60%;
    height:60%;
    background:rgba(0,0,0,.9);
    z-index:100;
}

.popup_image span{
    position:absolute;
    top:0;right:10px;
    font-size:45px;
    font-weight:bolder;
    color:white;
    cursor:pointer;
}

.popup_image img{
    width:100%;
    height:100%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:750px;
    object-fit:cover;
}



.inquiry{
    border:2px solid black;
    padding:6px;
    width:90%;
    margin-left:5%;
    height:fit-content;
    
  }

  .inquiry hr{
    background-color:black;
    padding:1px;
    width:60%;
  }

  form .dabba{
    display:flex;
    flex-direction:row;
  }

  .left,.right{
    width:50%;
  }

  input{
    width:60%;
    border-radius:12px;
  }

  input:hover,textarea:hover{
    border:2px solid dodgerblue;
  }

 
@media screen and (max-width:760px){
    .main_box{
        flex-direction:column;
    }
    .img_box{
        width:90%;
    }
}
 














/* display css */




.whtsappicon {
    border: 3px solid rgb(27, 205, 225);
    width: 48px;
    height: 48px;
    margin: 10px;
    border-radius: 50%;
    position: fixed;
    bottom: 1%;
    right: 1%;
    z-index: 5;
}

.whtsappicon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    backdrop-filter: blur(30px);
}

.whtsappicon:hover {
    transform: scale(1.1);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: transparent;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}


.copyright{
    background-color:#1c2331;
    color:white;
    padding:3%;
}


.showimg{
    background:rgba(0,0,0,.9);
    position:absolute;
    top:0;right:0;
    display:flex;
    align-items:center; 
    justify-content:center;
    height:100vh;
    width:100vw;
    z-index:100;
    visibility:hidden;
}

.actual_img{
    width:550px;
    height:100vh;
}



.actual_img img{
    width:100%;
    height:100%;
}