@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

header{
    width: 100%;
    height: 80px;
    background: #11101b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 100px;
    
}

.logo span{
    color: #3475ca;
}

.logo{
    font-size: 28px;
    font-weight: bold;
    color: #fefefe;

}

.hamburger{
    display: none;
}

.nav-bar .active{
    color: #11101b;
    background: #fefefe;
}

.nav-bar ul{
    display: flex;
    list-style: none;

}


.nav-bar ul li a{
    display: block;
    color: #fefefe;
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.2s;
    margin: 0 5px;

}

.nav-bar ul li a:hover{
    color: #11101b;
    background: #fefefe;
}



@media only screen and (max-width: 1320px){
    header{
        padding: 0 50px;

    }
}
    @media only screen and (max-width: 1100px){
        header{
            padding: 0 30px;
    
        }
    }
        @media only screen and (max-width: 900px){
            .hamburger{
                display: block;
                cursor: pointer;
        
            }
            .hamburger .line{
                width: 30px;
                height: 3px;
                background: #fefefe;
                margin: 6px 0;
            }

.nav-bar{
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #111;
    transition: 0.2s;
    overflow: hidden;
}

.nav-bar.active { 
    height: 450px;
    }

.nav-bar ul{
    display: block;
    width: fit-content;
    margin: 80px auto 0 auto;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
}

.nav-bar ul li a{
    margin-bottom: 12px;
}
}
    








.banner{
position: relative;
width: 100%;
height: 100vh;
background: #3475ca;
display: flex;
justify-content: center;
align-items: center;

}

.banner img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.banner .content{
    position: relative;
    max-width: 750px;
    text-align: center;
}

.banner .content h2{
    color: #fff;
    font-size: 80px;
}

.banner .content h3{
    color: #fff;
    font-size: 20px;
}

.banner .content p{
    color: #fff;
    font-size: 18px;
}


.banner .content a{
    position: relative;
    background: #444;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5em;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding: 10px 30px;
    transition: 0.5s;
    top: 40px;


}
.banner .content a:hover{
    letter-spacing: 0.25em;
    background: var(--clr);
    color: var(--clr);
    box-shadow: 0 0 35px var(--clr);
    
}

.banner .content a::before{
    content: '';
    position: absolute;
    inset: 2px;
    background: #11101b;
}

.banner .content a span{
    position: relative;
    z-index: 1;
}

.banner .content a i{
    inset: 0;
    display: block;
    position: absolute;

}

.banner .content a i::before{
    content: '';
    position: absolute;
    top: -6px;
    left: 100%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #11101b;
    border: 2px solid var(--clr);
    transition: 0.5s;
}

.banner .content a:hover i::before{
    left: 0%;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 40px 39px var(--clr);
}

.banner .content a i::after{
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #11101b;
    border: 2px solid var(--clr);
    transition: 0.5s;
}



.banner .content a:hover i::after{
    left: 100%;
    transform: translateX(-50%) rotate(-133deg);
    box-shadow: 40px 39px var(--clr);
}

.banner header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

.banner header .logo{
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.banner header .toggle{
    position: relative;
    width: 36px;
    height: 28px;
    background: url(toggle.png);
    background-size: cover;
    cursor: pointer;

}






.about{
    position: relative;
    width: 100%;
    display: flex;
    background:url("red.jpg");
}


.about .content2{
    background: #162c3b;
    padding: 100px;
    width: 50%;
}

.heading{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.text{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;

}

.about .img2{
    background: url(window.jpg);
    width: 50%;
    background-size: cover;
    background-position: center;
    
}




.services{
    background: #12222d;
    padding: 100px;
    text-align: center;
}

.services .container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.services .container .services2{
    position: relative;
    background: #fff;
    width: 350px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services .container .services2 img{
    max-width: 100px;

}

.services .container .services2 h2{
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
}








.technology{
    background: #3f8ffc;
    width: 100%;
    padding: 100px;
    padding-top: 300px;
    margin-top: -300px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.technology .content2{
    max-width: 800px;
}

.technology .img2{
    max-width: 250px;
}

.technology .img2 img{
    max-width: 100%;
}

.technology .content2 h2{
    color: #162c3b ;
    font-size: 15px;
    font-style: italic;
}


.technology .content2 ul li{
    font-size: 30px;
    margin-left: 20px;
}

.client{
    background: #162c3b;
    padding: 100px;
    text-align: center;
}

.client .img2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.client .img2 img{
    max-width: 200px;
    margin: 20px;
    opacity: 0.25;
    cursor: pointer;
}

.client .img2 img:hover{
    opacity: 1;
}








.testimonials{
    position: relative;
    padding: 100px;
    background: #12222d;
    text-align: center;
}

.testimonials .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonials .container .content2{
    background: #fff;
    padding: 60px 50px;
    width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.testimonials .container .content2 p{
    font-style: italic;
}

.testimonials .container .content2 h3{
    width: 100%;
    text-align: end;
    font-weight: 500;
    color: #3f8ffc;
}






.contact{
    padding: 100px;
    background: #162c3b;
    text-align: center;
}

.imgBx2{
    background: url(bg2.jpg);
    background-size: cover;
    background-position: center;
    width: 50%;
}

.redbg{
    background: url(red.jpg) !important;
    background-size: cover;
    background-position: center;
    
}

.form .input2{
    margin-bottom: 40px;
}

.form .input2 input{
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 30px;
    color: #fff;
    border-bottom: 2px solid #fff;
}

.form .input2 input::placeholder{
    color: #fff;
}


.form .input2 textarea{
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 30px;
    color: #fff;
    min-height: 150px;
    border-bottom: 2px solid #fff;
    
}

.form .input2 textarea::placeholder{
    color: #fff;
}


.form .input2 input[type="submit"]{
    width: 150px;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-weight: 400;
}







.footer{
    background: #162c3b;
    height: 100px;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    
}

.footer ul li{
    list-style: none;

}

.footer ul li a{
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    
}

.footer ul li a img{
    filter: invert(1);
    max-width: 20px;
}

@media(max-width: 991px){
    .banner{
        padding: 50px;
    }
    .banner header{
        padding: 20px 50px;
    }
    .banner.content h2{
        font-size: 36px;
    }
    .banner.contact p{
    
        font-size: 16px;
    }
    .about{
        flex-direction: column;
    }
    .about .content2{
        width: 100%;
        padding: 50px;
        min-height: 400px;
        text-align: center;

    }

    .about .imgBx2{
        width: 100%;
        padding: 50px;
        min-height: 400px;
        text-align: center;
    }
    .services{
        padding: 50px;
    }
    .services .container{
        justify-content: center;
        margin-top: 20px;
    }
    .services .container .services2{
        margin: 20px;
        width: 300px;
        height: 350px;
    }
    
    .technology{
        padding: 50px;
        padding-top: 300px;
        justify-content: center;
        flex-direction: column;
    }

    .technology .img2{
        margin-top: 50px;
        max-width: 250px;
    }

    .client{
        padding: 50px;
    }
    .client .img2{
        justify-content: center;
    }

    .testimonials{
        padding: 50px;
    }

    .testimonials .content2{
        padding: 60px 40px;
        max-width: 550px;
        margin-bottom: 40px;
    }

    .testimonials .content2:last-child{
        margin-bottom: 0px;
    }

    .contact{
        padding: 50px;
    }


    




    .footer{
        
    
        padding: 20px 50px;
        text-align: center;
        flex-direction: column-reverse;
    }


}

.about1{
    background: #3475ca;
    width: 100%;
    height: 100vh;
}
.about1 .heading1 h2{
     color: #162c3b;
     font-size: 50px;
     text-align: center;
     font-style: italic;
}












