@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    /* font-family: Georgia; */
}
:root {
    font-family: "Poppins", sans-serif;
}
.main-container{
    /* height: auto; */
    width: 100%;
    /* background-color: black; */
}
/* nav button */
.button-29 {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: "JetBrains Mono",monospace;
    height: 40px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 18px;
  }
  
  .button-29:focus {
    box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
  }
  
  .button-29:hover {
    box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
    transform: translateY(-2px);
  }
  
  .button-29:active {
    box-shadow: #3c4fe0 0 3px 7px inset;
    transform: translateY(2px);
  }

  /* navbar */
  .nav-link:hover{
    color: #060030;
    /* font-weight: bold; */
  }
  
   /* container-product-banner-section */
.products-banner-container{
    /* height: 45rem; */
    width: 100%;
    /* background-color: aqua; */
    margin: auto;
    position: relative;
    /* margin-top: 2%; */
  
   
    
   
}
.banner-card{
    width: 100%;
    position: relative;
     overflow: hidden;
     background-image: url("../images/pexels-christina-morillo-1181408\ \(1\).jpg");
     background-size: cover;
  
   

}
.content-products{
    /* height: 100%; */
    width: 100%;
    /* background-color: rgba(11, 11, 11, 0.751); */
    position: absolute;
    z-index: 1;
    inset: 0;
    align-items: center;
    /* left: 0; */
    /* bottom: 0; */
    /* opacity: 0.8; */
    /* overflow: hidden; */

}
.content-products main{
    height: 100%;
    opacity: 0;
    transition: ease-in-out 0.3s;
   
}
main p{
    font-size: 45px;
    text-align: center;
    padding-top: 19%;
    color: white;
    /* position: absolute; */
    /* top: 10%; */
    /* left: 40%; */
}
.banner-card img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    top: 3%;
    /* transform: scale(1.1); */
    transition: ease-in 0.3s;
}
.content-products::before{
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.803);
    z-index: 0;
    transition-property: opacity;

}
.banner-card:hover.content-products::before,.banner-card:hover main{
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.429);
    transform: scale(1.3);
    /* width: 100%; */
    transition: ease-in-out 0.3s; 
}
.banner-card:hover .content-products::before,.banner-card:hover img{
    transform: scale(1.2);
}
/* /* our-projectrs */
.our-projects{
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-inline: 3%;
    
}
.heading-it-services{
    /* height: 20rem; */
    width: 40%;
    /* background-color: bisque; */
    margin: 3%;
    padding: 3%;
    margin-right: 5%;
    transition: ease-in-out 0.3s;
}
.heading-it-services h3{
    /* margin-top: ; */
    text-align: center;

}
.heading-it-services h2{
    margin-top: 3%;
    font-size: 35px;
    text-align: center;
}
.heading-it-services p{
    text-align: center;
    margin-top: 3%;
    font-size: 20px;
}
.right-it-services{
    /* height: 25rem; */
    width: 50%;
    /* background-color: blue; */
    /* margin: 5%;  */
}
.right-it-services img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* transition: ease-in-out 0.3s; */
}
.heading-it-services:hover{
    transform: scale(1.2);
}
.right-it-services:hover img{
    /* transform: scale(1.2); */
}
.container-project-details{
    /* height: 160vh; */
    width: 100%;
    /* background-color: pink; */
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,400px));
    padding-top: 3%;
    justify-content: center;
    /* align-items: center; */
    column-gap: 50px;
    row-gap: 20px;
    padding-bottom: 2%;

}
.project-card{
    /* height: 70vh; */
    width: 100%;
    border: 1px solid black;
    border-radius: 3%;
    transition: all 0.3s ease-in-out;
    
    
}
.project-card img{
    height: 60%;
    width: 100%;
    border-radius: 3% 3% 0 0;
}
.project-card h3{
    font-size: 25px;
    text-align: center;
    margin-top: 30px;
}
.project-card p{
    margin-top: 2%;
    font-size: 20px;
    text-align: center;
}
.banner-card.project-btn{
    justify-content: center;
}
.project-card:hover{
    box-shadow: 2px 2px 20px;
}
/* footer */ 

@media screen and (max-width:992px) {

    .products-banner-container{
        padding-top: 10%;
        
    }
    .content-products main p{
        font-size: 10px;
    }
    .our-projects{
        flex-direction: column;
      }
      .heading-it-services{
        width: 100%;
      }
      .right-it-services{
        width: 100%;
      }
       .content-products main p{
        font-size: 30px;
      }
      


}
@media screen and (max-width:576px) {
 
    .products-banner-container{
        padding-top: 10%;
        
    }
    .content-products main p{
        font-size: 20px;
      }
}
@media screen and (max-width:383px) {
    .content-products main p{
        font-size: 10px;
      }
}

