*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}
h2, h3{
    font-weight: 400;
}
body{
    min-height: 200vh;
}
section{
    padding: 100px;
}
.banner{
    position: relative;
    min-height: 100vh;
    background: url(28.png);
    /* background-size: cover; */
    background-position:  80% center;
	background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
	background-color: #e2ebfd;
}
.banner h2{
    font-size: 3em;
    /* color: #fff; */
    font-weight: 500;
    line-height: 1.5em;
}
.banner h2 span{
    font-size: 1.5em;
    font-weight: 700;
}
.banner h3{
    font-size: 1.5em;
    /* color: #fff; */
    letter-spacing: 2px;
}
.btn{
    position: relative;
    background: #3c60ca;
    display: inline-block;
    color: #fff;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 1.2em;
    text-decoration: none;
    letter-spacing: 2px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	background-color: #f8fafd;
    padding: 20px 100px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}
header.sticky{
    background: #fff;
    padding: 10px 100px;
    box-shadow: 0 5px 20px rgba(0 ,0 ,0 , .1);
}
header .logo,
header ul li a{
    color: #111;
	padding: 10px 15px;
}
header .logo{
    color: #111;
    font-size: 1.2em;
	padding-left: 0;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}
header ul{
    position: relative;
    display: flex;
}
header ul li{
    position: relative;
    list-style: none;

}
header ul li a{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: #111;
    text-decoration: none;
}

header ul li a:hover{
	color: #3c60ca;
}
header ul .listbox.active{
	background-color: #3c60ca;
	color: #fff;	
}
header ul .listbox.active a{
	color: #fff;	
}
.heading{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
}
.heading h2{
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1.5em;
	margin-bottom: 15px;
}
.heading p{
	color: #8c98a4;
}
.content{
    display: flex;
    justify-content: space-between;
}
.contentbx{
    padding-right: 30px;
}
.contentbx h3{
    font-size: 1.2em;
    margin-bottom: 10px;
}
.contentbx p{
    font-size: .8em;
    line-height: 1.8;
    text-indent: 2em;
}
.contentbx p br{
    text-indent: 2em;
}
.w50{
    min-width: 50%;
}
.h50{
    height: 500px;
    overflow: hidden;
}
img{
    max-width: 100%;
}
.w-auto{
	width: auto !important;
} 
.lh-1{
	line-height: 1 !important;
}
.mt-4{
	margin-top: 1.5rem !important;
} 
.ms-4{
	margin-left: 1.5rem !important;
}
.me-auto{
	margin-right: auto !important
}
.m-1 {
    margin: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.rounded-3 {
    border-radius: 0.5rem;
}
.icon > svg {
    height: 4rem;
    width: 4rem;
}
.text-primary{
	color: #3c60ca;
}
.text-white{
	color: #fff;
}
.text-gradient-primary {
    background: linear-gradient(to right, #6366f1, #8B5CF6, #D946EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0);
}
.bg-secondary {
    background-color: #f3f6ff !important;
}
.product{
    background-color: #f8fafd;

}
.heading.white{
    color: #fff;
}
.product .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.product .content .servicesbx{
	display: flex;
	flex-direction: column;
    padding: 40px 20px;
    background: #3c60ca;
    color: #fff;
    max-width: 25%;
    margin: 20px;
    transition: transform .2s ease-in-out,border-color .2s ease-in-out,background-color .2s ease-in-out,box-shadow .2s ease-in-out;
}
.product .content .servicesbx:hover{
    background: #2e57b2;
	transform: translateY(-0.25rem);
	box-shadow: 0 0.275rem 0.75rem -0.0625rem rgba(11,15,25,.06), 0 0.125rem 0.4rem -0.0625rem rgba(11,15,25,.03);
}
.services .content .servicesbx img{
    max-width: 100%;
    /* filter: invert(5); */
}
.product .content .servicesbx h2,
.services .content .servicesbx h2,
.work .content .workbx h2,
.services .content .workbx h2{
    font-size: 1.4em;
    padding: 10px 0;
    font-weight: 400;
}
.product .content .servicesbx p,
.services .content .servicesbx p,
.work .content .workbx p,
.services .content .workbx p{
    font-size: 1em;
	line-height: 1.8;
	color: #71869d;
}
.product .content .servicesbx p{
	color: #ddd;
}
.services .content,
.work .content{
   display: flex;
   justify-content: center;
   flex-wrap: nowrap;
}
.services .content .workbx,
.work .content .workbx{
    width: 25%;
    padding: 20px;
}
.work .content .workbx img{
    max-width: 100%;
}

.services{
	background-color: #f8fafd;
}
.testimonial{
    background: #f7f7f7;
}
.testimonial .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.testimonial .content .testimonialbx{
    max-width: calc(50% - 40px);
    padding: 60px 40px;
    margin: 20px;
    background: #2196f3;
}
.testimonial .content .testimonialbx p{
    color: #fff;
    font-size: .85em;
    /* font-style: italic; */
}
.testimonial .content .testimonialbx h3{
    color: #fff;
    margin-top: 40px;
    text-align: end;
    font-weight: 400;
}
.testimonial .content .testimonialbx h3 span{
    font-size: .75em;
}

.contact{
    background: #3c60ca;
	background-image: url(29.png);
	/* background-size: cover; */
	background-position:  right bottom;
	background-repeat: no-repeat;
}
.contact-text{
	line-height: 1.8;
	color: #ddd;
}
.contact-text div{
	text-indent: 30px;
}
.formbx{
    min-width: 65%;
}
.formbx form{
    display: flex;
    flex-direction: column;
}
.formbx form h3,
.contactinfo h3{
    color: #fff;
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 10px;
}

.formbx form input,
.formbx form textarea{
    margin-bottom: 20px;
    padding: 15px;
    background: transparent;
    border: none;
    outline: none;
    background: #222;
    color: #fff;
    resize: none;
}
.formbx form textarea{
    min-height: 200px;
}
.formbx form input::placeholder,
.formbx form textarea::placeholder{
    color: #999;
}
.formbx form input[type='submit']{
    max-width: 120px;
    background: #2196f3;
    cursor: pointer;
    letter-spacing: 2px;
}
.contactinfo{
    min-width: 35%;
}
.contactinfobox{
    position: relative;
}
.contactinfobox .box{
    position: relative;
    padding: 20px 0;
    display: flex;
    color: #fff;
}
.contactinfobox .box .icon{
    min-width: 40px;
    padding-top: 4px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 1.4em;
}
.contactinfobox .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 1.1em;
    flex-direction: column;
}
.contactinfobox .box .text h3{
    font-size: 1.2em;
    color: #2196f3;
    margin-bottom: 0;
}
.copyright{
    background: #2e57b2;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.toggle span{
    display: none;
}
@media (max-width: 991px){
    header,
    header.sticky{
        padding: 20px 50px;
        z-index: 1000;
    }
    .menu{
        position: fixed;
        top: 80px;
        left: -100%;
        display: block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: .5s;
        z-index: 999;
        border-top: 1px solid rgba(0 ,0 ,0 , .2);
    }
    .menu.active{
        left: 0;
    }
    header ul li a{
        color: #111;
        font-size: 1.2em;
        margin: 10px;
    }
    .toggle{
        width: 40px;
        height: 40px;
        cursor: pointer;
        /* background: #111; */
    }
    header.sticky .toggle span {
        color: #222;
        font-size: 2em;
        transition: .5s;
    }
    .toggle span{
        color: #f7f7f7;
        font-size: 2em;
        transition: .5s;
    }
    .toggle span:nth-child(1){
        display: block;
    }
    .toggle span:nth-child(2){
        display: none;
    }
    .toggle.active span:nth-child(1){
        display: none;
    }
    .toggle.active span:nth-child(2){
        display: block;
    }
    /* header.sticky .toggle{
        filter: invert(1);
    } */
    .banner{
        padding: 150px 50px 100px;
    }
    .banner h2{
        font-size: 1.2em;
        font-weight: 400;
        line-height: 1.8;
    }
    .banner h3{
        font-size: .8em;
        font-weight: 400;
        line-height: 1.8;
    }
    .btn{
        padding: 10px 15px;
        font-size: 1em;
    }
    section{
        padding: 20px;
    }
    .w50{
        min-width: 100%;
    }
    .h50{
        text-align: center;
    }
    .content{
        flex-wrap: wrap;
    }
    .contentbx{
        padding-right: 0;
    }
    .contentbx h3{
        font-size: 1em;
        text-align: center;
    }
    .heading h2{
        font-size: 1.2em;
    }
    .testimonial .content .testimonialbx{
        max-width: 100%;
        padding: 30px;
        margin: 10px;
    }
    .testimonial .content .testimonialbx h3{
        font-size: 1em;
    }
    .contactinfo,
    .formbx{
        width: 100%;
        margin-bottom: 20px;
    }
    .contactinfobox .box .text {
        font-size: .8em;
    }
}