@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,800;1,900&display=swap");
*{
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.toggle{ 
    position: fixed;
    right: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: #000 url(./images/menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
    z-index: 1000;
}
.toggle.active{ 
    background: #000 url(./images/close.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
}
section{ 
    padding: 100px;
    min-height: 100vh;
}
.banner{ 
    position: relative;
    width: 100%;
    min-height: 100vh;

}
.banner .imdSideBar{ 
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 500px;
}
.imdSideBar img{ 
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.banner .contentBx{ 
position: absolute;
width: calc(100% - 500px );
height: 100vh;
top: 0;
right:0;
display: flex;
align-items: center;
justify-content: center;
padding: 100px;
}
.banner .contentBx .logoText{ 
    position: absolute;
    top: 40px;
    font-size: 1.2em;
    left: 100px;
    background: #333;
    font-size: 24px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0px 5px;
}
.bannerText h4{ 
color: #333;
font-weight: 300;
font-size: 1.5em;
}
.bannerText h4 span{ 
    color:deepskyblue;
    font-size: 1.5em;
    font-weight: 700;
}
.bannerText h2{
    font-size: 3em;
    color: #333;
    line-height: 1em;
}
p{ 
    color: #333;
    font-size: 1.1em;
    margin: 20px 0;
}
.btn{ 
    color: white;
    text-decoration: none;
    background: deepskyblue;
    padding: 10px 30px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 2px;
}

.sideBar{ 
position: fixed;
width: calc(100% - 500px );
height: 100vh;
top: 0;
right:-100%;
background-color: black;
z-index: 900;
display: flex;
align-items: center;
justify-content: center;
transition: .5s;
}
.sideBar.active{ 
    right: 0;
}
.sideBar ul li{ 
    list-style: none;
    text-align: center;
    padding-top: 10px;

}
.sideBar ul li a{ 
    text-decoration: none;
    color: white;
    font-size: 1.8em;
    text-transform: uppercase;
} 

.sideBar ul li a:hover{
    color: deepskyblue ;
}
.sci{ 
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    bottom: 20px;
    left: 100px;
}
.sci li{ 
margin-right: 10px;
list-style: none;
}
.sci li img{ 
    transform: scale(.5);
    opacity: .7;
    transition: .2s;
}
.sci li img:hover{
    transform: scale(.6);
    opacity: 1;
}
/******** about *********/
.about{ 
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: #000;
    color: white;
}
.title{ 
width: 100%;
text-align: center;
}
.title h2{ 
    position: relative;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 1px;
    color: deepskyblue;
}
.title h2::after{
    border-radius: 2px;
    position: absolute;
    content: "";
    width: 60px;
    height: 4px;
    background: rgb(0, 0, 0);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}
.title p{ 
    max-width: 700px;
    display: inline-block;
}
.title.white h2,
.title.white p { 
    color: rgb(255, 255, 255);
}
.title.white h2::after{
    background: rgb(255, 255, 255);
}
.aboutDetails{ 
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content { 
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    /* flex-wrap: wrap; */
}
.about .content .textBx{ 
    width: 49%;
    min-width: 49%;
} 
.about .content .textBx p{ 
    color: #fff;
}
.about .content .imgBx{ 
    margin-left: 40px;
}
.about .content .imgBx img { 
    max-width: 100%;
}


/********* services ********/ 
.services{ 
    position: relative;
    width: 100%;
    min-height: 100vh;
}
.services .content ,
.work .content{ 
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.services .content .servicesBx { 
    cursor: pointer;
margin: 20px;
max-width: 340px;
padding: 40px 20px;
text-align: center;
background: #f5f5f5;
}
.services .content .servicesBx:hover {  
    background: rgb(0, 0, 0);
    transition: .5s;
}
.services .content .servicesBx h4{ 
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
    transition: .5s; 
}
.services .content .servicesBx:hover h4{ 
    color: white;
}
.services .content .servicesBx p{ 
    margin: 0;
    transition: .5s;
}
.services .content .servicesBx:hover p{ 
    color: white;
}
.services .content .servicesBx:hover img { 
    max-width: 420px;
    filter: invert(1);
    transition: .5s;
}
/*** work ******/

.work .content .workBx{ 
    position: relative;
    cursor: pointer;
    margin: 10px ;
    width: 265px;
    height: 256px;
    text-align: center;
}
.work .content .workBx .imgBx ,
.work .content .workBx .textBx{ 
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.work .content .workBx img{ 
    position: absolute;
    left: 0;
    top: 0;
height: 100%;
width: 100%;
object-fit: cover;
}
.work .content .workBx .textBx{ 
    background: #111;
    opacity: 0;
    transition: .5s;
}
.work .content .workBx .textBx h3{ 
    letter-spacing: 1px;
    font-size: 1.2em;
    color: cornsilk;
}
.work .content .workBx  .textBx:hover{ 
    opacity: 1;
}
/****************************contact**************************/
.contact{ 
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contact .contactForm{ 
    position: relative;
    width: 700px;
    margin-top: 20px;
}
.row{
    width: 100%; 
    display: flex;
}
.col50{ 
    margin: 10px;
width: 50%;
}
.col100{ 
margin: 10px;
width: 100%;
text-align: center;
}
.col50 input , .col100 textarea , .col100 input{ 
    background:#111;
    font-size: 16px;
    border: none;
    outline: none;
    width: 100%;
    padding: 10px;
    color: white;
    resize: none;
}
.row .col100 textarea{
height: 100px;
}
.col100 input[type="submit"]{ 
    background: deepskyblue;
    width: 25%;
    cursor: pointer;
    padding: 10px 30px;
    font-weight: 500;
    letter-spacing: 2px;
    max-width: 150px;
}
.copy{ 
    background: #222;
    color: #fff;
    padding: 10px;
    text-align: center;
}
.copy p{ 
    margin: 0;
    color: white ;
}
@media (max-width : 991px){
    .imdSideBar img { 
        display: none;
    }
    .banner .contentBx{ 
        width: 100%;
        padding: 40px;
    }
    .sideBar{ 
        width: 100%;
    }
    .content{ 
        flex-direction: column;
    }
    .about .content .textBx {
        width: 100%;
    }
    .banner .contentBx .logoText{
        left: 40px;
    }
    .toggle{ 
        right: 40px;
    }
    .sci{
        left: 40px;
    }
    section{ 
        padding: 40px;
        min-height: 100vh;
    }
    .about .content .imgBx{ 
        margin: 0;
    }
    .services .content .servicesBx {
        cursor: pointer;
        margin: 10px;
        padding: 30px 20px;
}
    .contactForm{ width: 100%;}
    .contactForm .row{ 
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .contact .contactForm {
        position: relative;
        width: 100%; } 
    .col50{ 
        width: 100%;
    }
    .col100 input[type="submit"] {
        width: 50%;}
@media (max-width : 500px){ 
    .services .content .servicesBx {
        cursor: pointer;
        padding: 30px 20px;
max-width: 100%;
width: 100%;
margin: 10px 0;}

}
.work .content .workBx{ 
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
}

}