*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
  }
  body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
  }
  body::-webkit-scrollbar{ 
    display: none;
  }
  @import url(www.hostinger.in/tutorials/best-html-web-fonts);
  #navbar{
    height: 100px;
    width:100%;
    border-bottom: 1px solid rgba(73, 71, 71, 0.452);
    /* background-color: rgb(138, 0, 0); */
    /* background-color:hsl(196, 100%, 81%); */
    /* background-color: rgba(2, 105, 142, 0.748); */
    /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30  px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px; */
    padding: 10px;
    overflow: hidden;
}
.subnav{
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    justify-content: space-between;
}
.imgclass{
    height: 100%;
    width:40%;
    /* background-color: hotpink; */
    /* display: flex; */
    /* align-items: center; */
    justify-content: left;
}
.imgclass img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left;
}
.links{
    height: 100;
    width: 38%;
    /* background-color: palegoldenrod; */
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.links a{
   font-family:-apple-system,BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
   font-size: 17px;
    text-decoration:none;
    color:#022b2b;  
    transition: all 1.1s;
    position: relative;
}
.links a:after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 100%;
    height: 4px;
    background-color: #f88030;
    transform-origin: bottom right;
    transition: transform 0.5s ease;
    transform: scaleX(0);
}

.links a:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
  .our-work-mobile-content-hold{
    display: none;
}
.our-work-container{
    height:auto;
    width: 100%;
  
}
.our-work-top{
    text-align: center;
    height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background: url("../img/product.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 30px;    
}
.our-work-inner{
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.634);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 1s;
}
.our-work-top h1{
    font-size: 35px;
    color: #226ef1;
    font-weight: 500;
    letter-spacing: 2px;
}
.our-work-top h2{
    margin-top: 10px;
    color: #bdbaba;
    font-size: 25px;
    font-weight: 500;
}
.our-work-inner:hover{
    background-color: black;
    /* border-radius: 25% 10%; */
}

.our-work-content-hold{
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1,95%);
    row-gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
}


.our-work-contents{
    height: 300px;
    width: 100%;
    /* border-radius: 25% 10%; */
    border-radius: 20px;
    background-color:black;
    /* box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; */
    /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
    display: flex;
    align-items: center;
    padding: 20px 10px;
    color: white;
    transition: 0.3s;
    box-shadow:  0 0 5px white;

}


.our-work-image{
    height: 275px;
    width: 275px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    margin-right: 30px;
    transition: 0.5s;
}
.our-work-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.our-work-info{
    height: 100%;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}
.workInfo-top{
    height: auto;
    width: 50%;
}
.work-topic{
    width: 100%;
    color: #cfcfcf;
    font-size: 30px;
    font-weight: 700;
}
.work-sub-topic{
    height: 30px;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: gray;
}
.workInfo-bottom{
    height: fit-content;
    width: 45%;
}
.workInfo-bottom h2{
    height: auto;
    margin: 10px 0px;
    color:#226ef1;
    font-size: 20px;
    font-weight: 400;
}
.workInfo-bottom ul{
    height: fit-content;
    width: 100%;
    line-height: 20px;
    display: grid;
    grid-template-columns: repeat(1,auto);
    align-items: center;
    padding: 10px;
    row-gap: 5px;
    
}
.workInfo-bottom li{
    font-size: 20px;
    letter-spacing: 1px;
    margin: 0px 15px;
    color: #226ef1;
}
.our-work-info li p{
    font-size: 15px;
    color: rgb(196, 194, 194);
}
.alignRight{
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
}

.alignRight .our-work-image{
    margin-right: 0px;
    margin-left: 20px;
}

.our-work-contents:hover{
   transform: scale(0.98);
   border-radius: 30px;
   background-color: #022b2be0;
   box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;

}
    
@media screen and (max-width:1200px){
       .our-work-container{
        height:auto;
        width: 100%;
       
    }
    .our-work-top{
        text-align: center;
        height: 250px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        background: url("../Works/images/68430_header-schaeffler-industry-solutions-industrial-automation-printing-machinery_rwd_1200.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        margin-bottom: 30px;    
    }
    .our-work-inner{
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.634);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: 1s;
    }
    .our-work-top h1{
        font-size: 30px;
        color: #226ef1;
        font-weight: 500;
        letter-spacing: 2px;
    }
    .our-work-top h2{
        margin-top: 10px;
        color: #bdbaba;
        font-size: 20px;
        font-weight: 500;
    }
    .our-work-inner:hover{
        background-color: black;
    }
    
    .our-work-content-hold{
       display: none;
    }
    
    .our-work-mobile-content-hold{
        height: auto;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,100%);
        row-gap: 10px;
        align-items: center;
        justify-content: center;
        padding: 20px 20px;
    }
    
    .our-work-contents{
        height: 300px;
        width: auto;
        background-color: rgb(56, 54, 54);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 0px 0px;
        color: white;
        transition: 0.3s;
        box-shadow:  0 0 5px white;
    
    }
    
    .workInfo-top{
        height: auto;
        width: 100%;
        text-align: center;
        padding: 10px 0px;
        background-color: rgb(104, 104, 104);
    }
    .work-topic{
        width: 100%;
        color: #226ef1;
        font-size: 25px;
        font-weight: 700;
    }
    .work-sub-topic{
        height: 30px;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        color: rgb(206, 200, 200);
    }
  
    .our-work-info{
        height: 100%;
        width: 100%;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        transition: 0.5s;
    }
    .our-work-image{
        height: 175px;
        width: 175px;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        margin-right: 0px;
        transition: 0.5s;
    }
    .our-work-image img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    
    
    }
    .workInfo-bottom{
        height: fit-content;
        width: 65%;
    }
    .workInfo-bottom h2{
        height: auto;
        margin: 5px 0px;
        color:#226ef1;
        font-size: 17px;
        font-weight: 400;
    }
    .workInfo-bottom ul{
        height: fit-content;
        width: fit-content;
        line-height: 20px;
        display: grid;
        grid-template-columns: repeat(1,auto);
        align-items: center;
        border:  1px dotted gray;
      
    }
    .workInfo-bottom li{
        font-size: 15px;
        letter-spacing: 1px;
        margin: 0px 15px;
        color: #226ef1;
      
    
    }
    .our-work-info li p{
        font-size: 13px;
        color: rgb(196, 194, 194);
    }
 
    .our-work-contents:hover{
       transform: scale(0.98);
    
    }
    
    
}


@media screen and (max-width:767px){
    
    .our-work-container{
        height:auto;
        width: 100%;
        margin-top: 81px;
        
    }
    .our-work-top{
        text-align: center;
        height: 150px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        margin-bottom: 10px;    
        background: url("../Works/images/68430_header-schaeffler-industry-solutions-industrial-automation-printing-machinery_rwd_1200.jpg");

    }
    .our-work-inner{
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: 1s;
    }
    .our-work-top h1{
        font-size: 20px;
        color: white;
        font-weight: 500;
        letter-spacing: 2px;
    }
    .our-work-top h2{
        margin-top: 10px;
        color: gainsboro;
        font-size: 16px;
        font-weight: 500;
    }
    
    
    .our-work-content-hold{
       display: none;
    }
    
    .our-work-mobile-content-hold{
        height: auto;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,100%);
        row-gap: 20px;
        align-items: center;
        justify-content: center;
        padding: 10px 10px;
    }
    
    .our-work-contents{
        height: auto;
        width: auto;
        background-color: rgba(255, 255, 255, 0.301);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 0px 0px;
        color: white;
        transition: 0.3s;
        row-gap: 15px;
        box-shadow:  0 0 5px white;
    
    }
    
    .workInfo-top{
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 5px 0px;
        background-color: rgba(177, 176, 176, 0.37);
        border-radius: 10px;
    }
    .work-topic{
        width: 100%;
        color: #226ef1;
        margin: 5px 0px;
        font-size: 17px;
        font-weight: 700;
        padding: 0px 0px;
    }
    .work-sub-topic{
        height: auto;
        width: 100%;
        font-size: 14px;
        font-weight: 500;
        color: rgb(119, 117, 117);
    }
  
    .our-work-info{
        height: 100%;
        width: 100%;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transition: 0.5s;
    row-gap: 20px;
    }
    .our-work-image{
        height: 200px;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        margin-right: 0px;
        transition: 0.5s;
        margin: 10px 0px;
    }
    .our-work-image img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    
    
    }
    .workInfo-bottom{
        height: fit-content;
        width: 100%;
    }
    .workInfo-bottom h2{
        height: auto;
        margin: 5px 0px;
        color:#226ef1;
        font-size: 15px;
        font-weight: 400;
        margin: 5px 0px;
    }
    .workInfo-bottom ul{
        height: fit-content;
        width: 100%;
        line-height: 15px;
        display: grid;
        grid-template-columns: repeat(2,auto);
        align-items: center;
        border:  1px dotted rgb(54, 53, 53);
       
        
    }
    .workInfo-bottom li{
        font-size: 11px;
        letter-spacing: 0px;
        margin: 0px 15px;
        color: #226ef1;
      
    
    }
    .our-work-info li p{
        font-size: 11px;
        margin: 5px 0px;
        color: rgb(0, 0, 0);
    }
 
    .our-work-contents:hover{
       transform: scale(0.98);
       box-shadow:  0px 0px 0px 0px rgb(66, 24, 255);
    
    }
    
    
}
.footer{
    height: 600px;
    width: 100%;
    background-image:url(../img/footer-background-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
    padding: 20px;
  }
  .subfooter{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* background-color: rgba(51, 48, 46, 0.37); */
  }
  .numberone{
  height: 60%;
  width: 100%;
  /* background-color: pink; */
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  }
  .con1{
    height: 100%;
    width: 35%;
    /* background-color: red; */
    padding: 20px;
  }
  .con1 img{
    height: 150px;
    width: 80%;
  }
  .con1 p{
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1.2px;
    text-align: left;
    color: white;
  }
  .con2{
    height: 100%;
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content:center;
    /* background-color: rebeccapurple; */
  }
  .subcon2{
    display: flex;
    align-items: center;
    /* justify-content: space-evenly; */
  }
  .subcon2 i{
    color:rgb(1, 192, 255);
    font-size: 28px;
    padding: 10px;
    margin-left: 9px;
  }
  .subcon2 h2{
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    margin-left:24px;
  }
  .con2 p{
    margin-top: 20px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    padding: 20px;
    text-align: left;
    /* text-align: center; */
  }
  #lit{
    color:rgb(1, 192, 255);
    font-size: 16px;
    padding: 10px;
    text-align: left;
  }
  .subcon3{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
  }
  
  .subcon3 i{
    color:rgb(1, 192, 255);
    font-size: 18px;
    padding: 20px;
    text-align: left;
  }
  .con3{
    height: 100%;
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content:center;
    /* background-color: #3FA0C7; */
  }
  .subcon4{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-top: -20px;
  }
  .subcon4 i{
    color:rgb(1, 192, 255);
    font-size: 18px;
    padding: 20px;
    text-align: left;
    /* margin-left: 20px; */
  }
  .subcon4 p{
    margin-top: 0px;
    margin-left: -6px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    /* padding: 20px; */
    /* text-align: left; */
  }
  .subcon5{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-top: -20px;
  }
  .subcon5 i{
    color:rgb(1, 192, 255);
    font-size: 18px;
    padding: 20px;
    text-align: left;
    /* margin-left: 20px; */
  }
  .subcon5 p{
    margin-top: 0px;
    margin-left: -6px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    /* padding: 20px; */
    /* text-align: left; */
  }
  .numbertwo{
  height: 20%;
  width: 100%;
  /* background-color: darkblue; */
  display: flex;
  align-items: center;
  justify-content: left;
  }
  .subnumbertwo{
    height: 50%;
    width: 50%;
    /* background-color: #ff7300; */
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .subnumbertwo p{
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding-left:20px;
    color: white;
  }
  .subnumbertwo a{
    text-decoration: none;
    font-size: 16px;
    color:rgb(0, 204, 255);
    font-family:'Roboto', sans-serif;
    padding: 10px;
  }
  .subnumbertwo a:hover{
    color:blueviolet;
  }
  .numberthree{
  height: 10%;
  width: 100%;
  /* background-color: saddlebrown; */
  display: flex;
  align-items: center;
  
  justify-content: center;
  }
  .numberthree p{
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding-left:20px;
    color: rgba(255, 255, 255, 0.405);
  }