*{
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    font-family: 'Outfit', sans-serif;
}

/* --------------
NAV START'S
-------------- */

body {
    font-family: 'Outfit', sans-serif;
    --color1: #000;
    --color2: #ffffff;
    --color3: #333333;
}

.nav-bar {
    height: 80px;
    width: 100%;
    display: flex;
    margin-top: -150px;
    z-index: 99;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: fixed;
    background-color: var(--color2);
    padding: 12px 20px;
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
}

.logo img {
    height: 45px;
    width: 200px;
    margin: 15px 40px;
}

.menu {
    display: flex;
}

.menu li {
    padding-left: 70px;
    line-height: 4;
}

.menu li a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    color: var(--color3);
    font-size: 18px;
    font-weight: 600;
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background-image: linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
    height:3px;
    /* background-color: var(--color1); */
    transition: 0.5s ease-in-out;
}

.menu li a:hover:after {
    width: 100%;
}

.open-menu,
.close-menu {
    position: absolute;
    color: var(--color3);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
}

.close-menu {
    top: 20px;
    right: 20px;
}

#check {
    display: none;
}

#nav-pricing a i {
    padding: 5px;
}

#nav-pricing {
    position: relative;
}

.menu button {
    border: 2px solid #5d67ce;
    height: 42px;
    background-color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    width: 110px;
    border-radius: 4px;
    margin: 15px 50px;
}

.menu button:hover {
    background-color: #5d66ce5f;
    cursor: pointer;
}

@media(max-width: 1100px) {
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--color2);
        transition: all 0.2s ease-in-out;
    }

    .menu li {
        margin-top: 10px;
        transition: 0s backgroundColor;
    }

    .menu li a::after {
        height: 3;
    }
    
    .menu li a:hover:after {
        width: 2000%;
        margin-left: -800px;
    }

    .menu li a {
        padding: 10px;
    }

    .open-menu,
    .close-menu {
        display: block;
    }

    .menu a button{
        display: none;
    }

    #check:checked~.menu {
        right: 0;
    }
}

@media(max-width: 1235px) and (min-width: 1179px){
    .menu li{
        padding-left:60px;
    }
}

@media(max-width: 1180px) and (min-width: 1139px){
    .menu li{
        padding-left:50px;
    }
}

@media(max-width: 1139px) and (min-width: 1099px){
    .menu li{
        padding-left:35px;
    }
}

/* --------------
NAV END'S
-------------- */

/* --------------
MIN_SIDE_BOX START'S
-------------- */

#min-side-box{
    /* border: 1px solid red; */
    align-items: center;
    background-color: #fff;
    border: 1px solid #d4dadf;
    border-radius: 5px;
    bottom: 0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgb(0 0 0/6%);
    color: #000;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    margin: 15px 15px 15px 55px;
    padding: 0.2rem 0.75rem;
    position: fixed;
    z-index: 100;
}

#min-side-box img{
    height: 16px;
    width: 30px;
}

/* --------------
MIN_SIDE_BOX END'S
-------------- */


/* --------------
PAGE-1 START'S
-------------- */

#page-1{
    /* border: 1px solid blue; */
    height: 300px;
    background-color: #ffffff;
    text-align: center;
    justify-content: center;
    z-index: 1;
}

#page-1 h1{
    font-size: 50px;
    font-weight: 600;
    width: 60%;
    color: #333333;
    text-align: center;
    margin: 150px 0px 20px 350px;
}

#page-1 p{
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #333333;
}

#page-1 p span{
    font-weight: 600;
}

#page-1 button{
    margin: 30px;
    height: 40px;
    width: 150px;
    border-radius: 10px;
    border: none;
    background-color: #5D67CE;
    color: #ffffff;
    transition: 0s color;
    transition: 0s backgroundColor;
    font-size: 20px;
    font-weight: 600;
}

#page-1 button:hover{
    cursor: pointer;
    transition: .2s;
    color: #5D67CE;
    background-color: #ffffffaf;
    border: 1px solid #5D67CE;
}


#visualization {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

#popup {
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    #popup {
        width: 90%;
        left: 5%;
        right: 5%;
    }
    #whatsapp-img {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
        position: fixed;
    }
}


/* --------------
PAGE-1 END'S
-------------- */

/* --------------
PAGE-2 START'S
-------------- */

#page-2{
    /* border: 1px solid red; */
    min-height: 500px;
    width: 100%;
}

#big-image{
    /* border: 1px solid green; */
    height: 800px;
    width: 1500px;
    margin: 0% auto 8% auto;
}

#big-image img{
    height: 100%;
    width: 100%;
}

#page-2 blockquote{
    /* border: 1px solid blue; */
    height: 100px;
    width: 1500px;
    margin: 0% 10%;
    text-align: center;
}

#page-2 blockquote h1{
    font-size: 45px;
    color: #333333;
    font-weight: 600;
    margin: 0% 0% 1% 0%;
}

#page-2 blockquote p{
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    word-spacing: 5px;
}

/* ----------------
BLOCK-1 START'S
---------------- */
#block-1{
    border: 1px solid;
    height: 600px;
    width: 1500px;
    margin: 2.5% auto 8% auto;
    display: flex;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: 
    linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
}

#zeroDep{
    height: 100%;
    width: 100%;
}

.b-1{
    /* border: 1px solid red; */
    width: 40%;
    height: 70%;
    margin: 10%  5.5%;
}

.b-1-zero{
    /* border: 1px solid red; */
        margin: 5%  8%;
        width: 32%;
        height: 75%;
        /* margin: 6.5% 5.5%; */
}

.why-us-img {
    /* height: 90%; */
    /* width: 132%; */
    /* margin-left: -75px; */
}

.integration-img{
    height: 100%;
    width: 90%;
    margin: 0px 0px 0px 60px;
}

.block-1-left h1{
    font-size: 38px;
    font-weight: 600;
    color: #333333;
}
.block-1-left p{
    font-size: 17px;
    font-weight: 400;
    margin: 3.5% 0%;
    color: #333333;
}

#b1-l-pointer{
    display: flex;
}

#block-1-left-elem-img{
    margin: 6px 25px 6px 0px;
}

/* ----------------
BLOCK-1 END'S
---------------- */

/* ----------------
BLOCK-2 START'S
---------------- */

#block-2{
    border: 1px solid;
    height: 500px;
    width: 1500px;
    margin: 0% auto 8% auto;
    display: flex;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: 
    linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
}

.b-2{
    /* border: 1px solid red; */
    width: 40%;
    height: 100%;
    margin: 0%  5.5%;
}

.block-2-left h1{
    font-size: 38px;
    font-weight: 600;
    color: #333333;
    margin-top: 80px;
    margin-left: 50px;
}

.block-2-left p{
    font-size: 17px;
    font-weight: 400;
    margin: 5% 0%;
    margin-left: 50px;
    color: #333333;
}

#b2-2-pointer{
    display: flex;
}

#block-2-left-elem-img{
    margin: 8px 25px 6px 50px;
}

#block-2-left-elem-p{
    margin: 0px 25px 6px 0px;
}

.block-2-left p a{
    color: #333333;
    opacity: .7;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: .5px solid #33333388;
}
/* ----------------
BLOCK-2 END'S
---------------- */

/* ----------------
BLOCK-3 START'S
---------------- */

#block-3{
    border: 1px solid;
    height: 650px;
    width: 1500px;
    margin: 2.5% auto 8% auto;
    display: flex;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: 
    linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
}

.b-3{
    /* border: 1px solid red; */
    width: 40%;
    height: 80%;
    margin: 5.5% 5.5%;
}

#b3-3-pointer{
    display: flex;
}

#block-3-left-elem-img{
    margin: 8px 25px 6px 0px;
}

#block-3-left-elem-p{
    margin: 1px 25px 6px 0px;
}

.block-3-left h1{
    font-size: 38px;
    font-weight: 600;
    color: #333333;
    margin-top: 50px;
}

.block-3-left p{
    font-size: 17px;
    font-weight: 400;
    margin: 4% 0%;
    color: #333333;
}

#visualization{
    height: 100%;
    width: 100%;
}

/* ----------------
BLOCK-3 END'S
---------------- */

/* ----------------
BLOCK-4 START'S
---------------- */

#block-4{
    border: 1px solid;
    height: 500px;
    width: 1500px;
    margin: 0% auto 8% auto;
    display: flex;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: 
    linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
}

.b-4{
    /* border: 1px solid red; */
    width: 38%;
    height: 100%;
    margin: 0% 5.5%;
}

.block-4-left h1{
    font-size: 38px;
    font-weight: 600;
    margin-left: 50px;
    margin-top: 100px;
    color: #333333;
}

.block-4-left p{
    font-size: 17px;
    font-weight: 400;
    margin: 5% 0%;
    color: #333333;
}

#b4-4-pointer{
    display: flex;
}

#block-4-left-elem-img{
    margin: 10px 25px 6px 50px;
}

#block-4-left-elem-p{
    margin: 8px 25px 6px 0px;
}

.block-4-left p a{
    color: #333333;
    opacity: .7;
    font-size: 15px;
    margin-left: 50px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: .5px solid #33333388;
}

/* ----------------
BLOCK-4 END'S
---------------- */

/* --------------
PAGE-2 END'S
--------------- */

/* --------------
PAGE-3 START'S
--------------- */

#page3{
    /* border: 1px solid blue; */
    min-height: 700px;
}

#customer-block{
    /* border: 1px solid green; */
    height: 620px;
    width: 90%;
    text-align: center;
    margin: 0% 5%;
}

#customer-block h1{
    font-size: 40px;
    color: #333333;
    font-weight: 600;
}

#customer-block-elem{
    /* border: 1px solid blue; */
    height: 90%;
    display: flex;
    margin: 5% 0%;
}

.cust-elem{
    /* border: 1px solid green; */
    width: 28%;
    margin: 0% 5%;
}

.customer-elem-middle{
    margin: -1% 0% 0% 0%;
}

.block-2-up{
    margin:0% 0% 10% 0% ;
}

.cust-elem-up{
    margin:0% 0% 10% 0% ;
    border: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: 
    linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
    border-radius: 5px;
    width: 100%;
    height: 150px;
    display: grid;
    place-items: center;
    text-align: justify;
    font-size: 14px;
}

.cust-elem-down{
    border: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: 
    linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
    border-radius: 5px;
    width: 100%;
    height: 230px;
    font-size: 14px;
}

.cust-elem-down i{
    font-size: 25px;
}

.cust-elem-down h4{
    font-size: 16px;
}

.cust-elem-down p{
    font-size: 16px;
    width: 85%;
}


.block-1-up p,.block-3-up p,.block-3-down p{
    width: 85%;
    text-align: justify;
    font-size: 16px;
}

.block-1-down{
    text-align: justify;
    font-size: 16px;
    /* width: 80%; */
}

.block-1-down p{
    margin: 25px;
}

.block-1-down ul{
    padding-left: 40px;
}

.block-2-down-head i,.block-2-up-head i{
    font-size: 28px;
    padding:8px 0px 10px 0px ;
}

.block-2-down-head h4,.block-2-up-head h4{
    font-size: 18px;
    padding:5px 0px 10px 0px ;
}

.block-2-down-head p,.block-2-up-head p{
    font-size: 16px;
    width: 80%;
    padding:5px 0px 10px 35px ;
    text-align: justify;
}

.block-2-up-head{
    margin:0% 0% 10% 0% ;
}
/* --------------
PAGE-3 END'S
--------------- */

/* --------------
FOOTER START'S
--------------- */

#footer-up{
    /* border: 1px solid blue; */
    height: 250px;
    background-color: rgba(128, 128, 128, 0.041);
    flex-direction: column;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer-up h1{
    color: #333333;
    text-align: center;
    padding-top: 40px;
    font-size: 38px;
}

#footer-up p{
    color: #333333;
    text-align: center;
    margin: 25px 0px;
}

#footer-up button{
    /* margin: 30px 0px 20px 860px; */
    height: 40px;
    width: 180px;
    border-radius: 10px;
    border: none;
    background-color: #5D67CE;
    color: #ffffff;
    transition: 0s color;
    transition: 0s backgroudColor;
    font-size: 18px;
    font-weight: 400;
}

#footer-up button:hover{
    cursor: pointer;
    transition: .5s;
    background-color: #ffffff;
    border: 1px solid #5D67CE;
    color: #5D67CE;
}

footer{
    /* border: 1px solid red; */
    height: 330px;
    background-color: #ffffff;
    display: flex;
    padding-top: 50px;
}

#footer-left{
    /* border: 1px solid yellow; */
    width: 30%;
    height: 100%;
}

#footer-down{
    /* border: 1px solid green; */
    height: 60px;
    background-color: #ffffff;
}

#footer-left img{
    height: 45px;
    width: 225px;
    margin: 5px 40px;
}

#footer-left .p-1{
    margin: 0px 0px 2px 60px;
    width: 60%;
    font-size: 13px;
    color: #333333;
}

#footer-left .p-2{
    margin: 10px 0px 2px 60px;
    width: 60%;
    font-size: 14px;
    color: #333333;
    text-align: justify;
}

#footer-left h4{
    margin: 30px 0px 2px 60px;
    width: 70%;
    font-size: 20px;
}

#footer-right{
    display: flex;
}

#footer-right-1{
    /* border: 1px solid blue; */
    height: 100%;
    width: 250px;
    margin-left: 50px;
}

#footer-right-2{
    /* border: 1px solid blue; */
    height: 100%;
    width: 300px;
    margin-left: 80px;
}

#footer-right-2 h4{
    color: #333333;
    margin: 10px 0px;
}

#footer-right-2 p{
    text-align: justify;
    color: #333333;
    font-size: 13.5px;
    width: 98%;
}

#footer-right-3{
    /* border: 1px solid blue; */
    height: 100%;
    width: 300px;
    margin-left: 100px;
}

#footer-right-3 .f-r-3-h4{
    color: #333333;
    margin: 10px 0px;
}

#email{
    margin-bottom: 20px;
}

#email p,#phone p{
    font-size: 15px;
    color: #333333;
    margin: 3px 0px 0px 26px;
}

#email-moji,#phone-moji{
    display: flex;
}

#email-moji h4,#phone-moji h4{
    margin-left: 10px;
    font-size: 20px;
    font-weight: 600;
    background-image: linear-gradient(45deg, #8C69FA 40%, #FFBB47 35%, #78A1DC 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

#email-moji i,#phone-moji i{
    color: #8C69FA;
    margin-top: 4px;
}


.f-r-1{
    /* border: 1px solid green; */
    height: 50%;
    width: 100%;
}

.social-media{
    display: grid;
    grid-auto-flow: column;
}

.useful-links h4{
    text-align: justify;
    color: #333333;
    margin: 12px 0px;
}

.useful-links a{
    color: #3333339a;
    text-decoration: underline;
    font-size: 16px;
    line-height: 30px;
}

.useful-links a:hover{
    color: #333333;
    cursor: pointer;
}

.social-media i{
    font-size: 30px;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: #90CB4F;
    color: #000;
    scale: 1;
    display: grid;
    place-items: center;
    transform: 0s background-colour;
    transform: 0s scale;
}

.social-media i:hover{
    transition: .5s;
    scale: 1.1;
    box-shadow: 2px 2px 10px #33333394;
    cursor: pointer;
    background-image: linear-gradient(40deg,#FE7198 10%,#90CB4F 80%);
    color: #ffffff;
}

#footer-down p{
    font-size: 14px;
    margin-left: 60px;
    font-weight: 400;
}

/* --------------
FOOTER END'S
--------------- */




/* ***************
CONTACT START
************** */

#in-touch{
    border: 1px solid transparent;
    height: 350px;
    margin-top: 150px;
    /* background-color: #ffffff; */
    background-image: url(/images/freepickImages/contact-img.png);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

#in-touch::before{
    position: absolute;
    content: ' ';
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #00000060;
    z-index: -1;
}

#in-touch-list{
    /* border: 1px solid blue; */
    height: 100px;
    margin: 130px 25px 0px 25px;
    text-align: center;
    color: #ffffff;
}

#in-touch-list a{
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: underline;
}

#in-touch-list a:hover{
    color: #ffffffa1;
}

#in-touch-list span{
    font-weight: 900;
    font-size: 25px;
    color: #ffffff;
}

#in-touch-list h3{
    margin: 10px 0px;
    font-size: 45px;
    word-spacing: 2px;
}


#contact-main{
    display: grid;
    place-items: center;
    height: 800px;
}

#contact{
    /* border: 1px solid green; */
    margin: 30px 0px;
    height: 600px;
    width: 1200px;
    display: flex;
}

#contact-left{
    /* border: 1px solid blue; */
    background-color:#e7fbff;
    height: 100%;
    width: 45%;
}

#contact-left h3{
    font-size: 35px;
    margin: 20px 0px 30px 30px;
}


.contact-info{
    margin: 32px 30px;
    color: #333333d0;
}

.contact-info h5{
    font-size: 19px;
}

.contact-info h5 i{
    font-size: 20px;
    margin-right: 20px;
}

.con-address h5 i{
    margin-right: 23px;
}

.contact-info p{
    margin-top: 5px;
    margin-left: 40px;
    font-size: 16px;
}

#contact-right{
    /* border: 1px solid blue; */
    height: 100%;
    width: 55%;
}

#contact-right h3{
    font-size: 35px;
    margin: 22px 0px 5px 30px;
    color: #333333;
    font-weight: 600;
}

#contact-right p{
    font-size: 14px;
    word-spacing: 1.5px;
    color: #333333d7;
    font-weight: 400;
    margin: 0px 0px 30px 32px;
}

#contact-right form .form-info{
    width: 75%;
    border: none;
    font-size: 15px;
    border-bottom: 1px solid #3333333f;
    margin: 10px 0px 30px 30px;
    outline: none;
}

#contact-right form .form-info::placeholder{
    padding-left: 10px;
}

#contact-right form textarea{
    width: 75%;
    border: none;
    border-bottom: .5px solid #3333333f;
    margin: 0px 0px 20px 30px;
    outline: none;
    font-size: 15px;
}

#contact-right form textarea::placeholder{
    padding-left: 10px;
}

.p-termsc{
    margin-left: 30px;
}

.p-termsc input{
    margin: 0;
}

input[type='checkbox'] {
    accent-color: #FE7198;
}

.p-termsc span{
    font-size: 14px;
    margin-left: 10px;
}

#contact-right form button{
    width: 75%;
    height: 35px;
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 10px 5px 20px #3333335b ;
    margin: 0px 0px 5px 30px;
    background: linear-gradient(to right, #FFBB47 0%,#f73d72 100%);
    position: relative;
    overflow: hidden;
}

#contact-right form .p-spam i{
    font-size: 10px;
    color: #333333cc;
    margin: 0px 0px 30px 100px;
}

#contact-right form .p-spam{
    font-size: 12px;
    color: #333333cc;
    font-weight: 500;
}

#contact-right form button:hover{
    cursor: pointer;
    transition: 0s scale;
    scale: 1;
}

#contact-right form button:hover #circle{
    cursor: pointer;
    transition: .5s;
    scale: 2.5;
}

#circle{
    height: 100px;
    width: 100px;
    position: absolute;
    background-color: #ffffff50;
    z-index: 47;
    margin: 0;
    border-radius:50%;
    top: 0;
    left: 420px;
}

#map{
    /* border: 1px solid red; */
    width: 100%;
    height: 300px;
}

/* ***************
CONTACT END
************** */

/* ***************
ABOUT START
************** */

#about-head{
    border: 1px solid;
    height: 330px;
    margin-top: 150px;
    background-image: url(/images/freepickImages/young-adult-caucasian-male-engineer-working-with-technology-indoors-night-generated-by-ai-fotor-2023101603428.png);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

#about-head::before{
    position: absolute;
    content: ' ';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000080;
    z-index: -1;
}

#about-head-list{
    /* border: 1px solid blue; */
    height: 100px;
    margin: 130px 25px 0px 25px;
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

#about-head-list a{
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: underline;
}

#about-head-list a:hover{
    color: #ffffffaf;
}

#about-head-list span{
    font-weight: 900;
    font-size: 25px;
    color: #ffffff;
}

#about-head-list h3{
    margin: 10px 0px;
    font-size: 45px;
    word-spacing: 2px;
}

#about-us-main{
    /* border: 1px solid green; */
    height: 600px;
    width: 100%;
}

#about-main-info{
    /* border: 1px solid green; */
    height: 75%;
    width: 80%;
    margin: 70px 180px;
    display: flex;
}

#main-info-left h1{
    font-size: 35px;
    width: 75%;
    letter-spacing: .5px;
    font-weight: 900;
    background: -webkit-linear-gradient(#4b8de9,#744df3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#main-info-left h1 span{
    color: #000;
    margin-right: 5px;
}

#main-info-left h5{
    font-size: 16px;
    border-left: 5px solid #744df3;
    margin: 20px 0px;
}

#main-info-left p{
    text-align: justify;
    width: 85%;
    font-size: 14px;
    line-height: 22px;
}

#main-info-left,#main-info-right{
    /* border: 1px solid red; */
    height: 100%;
    width: 50%;
}

#main-info-right{
    display: grid;
    place-items: center;
}

#main-info-r-img{
    /* border: 1px solid blue; */
    height: 390px;
    width: 500px;
}

#main-info-r-img img{
    height: 100%;
    width: 100%;
}

#Featurs-why{
    /* border: 1px solid green; */
    min-height: 500px;
    width: 100%;
}

#Featurs-why h1{
    /* border: 1px solid blue; */
    width: 21%;
    word-spacing: 2px;
    font-size: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

#center-h1-hr{
    width: 10%;
    margin-top: 15px;
    margin-bottom: 60px;
    border: 2px solid #f32761;
}

.f-why{
    /* border: 1px solid red; */
    height: 280px;
    margin: 25px 250px;
    width: 70%;
    display: flex;
}

.f-why-left,.f-why-right{
    /* border: 1px solid blue; */
    width: 50%;
    height: 100%;
}

.f-why-text hr{
    width: 15%;
    border:2.5px solid yellowgreen;
}

.f-why-text h4{
    font-size: 22px;
    margin: 28px 0px;
    color: #333333;
}

.f-why-text p{
    width: 80%;
    text-align: justify;
    word-spacing: .5px;
    font-weight: 400;
    color: #333333;
}

.f-why-img-1{
    height: 300px;
    width: 300px;
    margin-left: 250px;
    margin-top:-20px;
}

.f-why-img-2{
    height: 280px;
    width: 350px;
}

.f-why-img-3{
    height: 400px;
    width: 410px;
    margin-top:-50px;
    margin-left:190px ;
}

.f-why-img-4{
    height: 325px;
    width: 325px;
    margin-top: -20px;
}

.f-why-img-box img{
    height: 100%;
    width: 100%;
}

.f-why-1, .f-why-3{
    background-color: rgba(128, 128, 128, 0.055);
}

#call-to-action{
    /* border: 1px solid red; */
    height: 230px;
    width: 100%;
    display: flex;
    margin: 30px 0px 0px 0px;
    /* background-color: rgb(246, 215, 252); */
    background-color: #8C69FA;
}

#call-left,#call-right{
    /* border: 1px solid green; */
    width: 50%;
    height: 100%;
}

#call-left-textbox{
    /* border: 1px solid blue; */
    height: 120px;
    width: 60%;
    margin: 5.5% 0% 0% 40%;
    color: #ffffff;
}

#call-right-button{
    /* border: 1px solid blue; */
    height: 120px;
    width: 60%;
    margin: 4.5% 0% 0% 0%;
}

#call-right-button button{
    border: 2.5px solid #ffffff;
    color: #ffffff;
    border-radius: 2px;
    height: 35px;
    width: 135px;
    margin: 45px 0px 0px 325px;
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
    transition: 0s backgroundColour;
}

#call-right-button button:hover{
    cursor: pointer;
    transition: .5s;
    background-color: #fff;
    color: #8C69FA;
}

#call-left-textbox h1{
    font-size: 28px;
    color: #333333;
    font-weight: 700;
    text-align: justify;
    margin: 10px 0px 12px 0px;
    color: #ffffff;
}
#call-left-textbox p{
    font-size: 15px;
    font-weight: 300;
    text-align: justify;
}
/* ***************
ABOUT END
************** */

/* ***************
SERVICE START
************** */

#service-box-1{
    /* border: 1px solid red; */
    margin: 150px 0px 0px 0px;
    height: 750px;
    width: 100%;
}

#overview{
    /* border: 1px solid blue; */
    height: 600px;
    display: flex;
}

#overview-left{
    /* border: 1px solid green; */
    width: 40%;
    height: 100%;
}

#overview-outer{
    /* border: 1px solid red; */
    height: 500px;
    width: 500px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    margin: 70px 0px 0px 200px;
    position: relative;
}

#overview-outer-box1{
    /* border: 1px solid green; */
    height: 250px;
    width: 250px;
    border-top-right-radius: 10px;
    margin-left:250px ;
    background-image: linear-gradient(140deg, #F45682, #774CFF);
}

#overview-inner{
    /* border: 1px solid blue; */
    position: absolute;
    height: 475px;
    width: 475px;
    bottom: 10px;
    left: 12px;
}

#overview-inner img{
    height: 100%;
    width: 100%;
}

#overview-outer-box2{
    /* border: 1px solid green; */
    height: 250px;
    width: 250px;
    border-bottom-left-radius: 10px;
    background-image: linear-gradient(140deg, #F45682, #6739ff);
}

#overview-right{
    /* border: 1px solid green; */
    width: 60%;
    height: 100%;
}

#overview-textbox{
    /* border: 1px solid red; */
    height: 400px;
    width: 80%;
    margin: 70px 0px 0px 30px ;
}

#overview-textbox h6{
    font-size: 15px;
    font-weight:600;
    color: #F45682;
}

#overview-textbox h1{
    font-size: 40px;
    font-weight:700;
    margin: 20px 0px;
    color: #050748;
}

#overview-textbox p{
    font-size: 15px;
    font-weight:400;
    line-height: 20px;
    text-align: justify;
    width: 90%;
    color: #333333;
}


#languages{
    /* border: 1px solid blue; */
    height: 250px;
    display: grid;
    place-items: center;
    margin-top:80px;
    background-color:#f9f9f9;
}

#language-diff{
    display: flex;
}

.lan-1{
    /* border: 1px solid green; */
    transition: 0s border;
    margin: 0px 4px 0px 20px;
    border: 4px solid #fff;
    display: inline-block;
    height: 100%;
    position: relative;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 100%;
    -webkit-box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.059), 0 8.2px 8.9px -30px rgba(0, 0, 0, 0.071), 0 25px 40px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.059), 0 8.2px 8.9px -30px rgba(0, 0, 0, 0.071), 0 25px 40px -30px rgba(0, 0, 0, 0.2);
}
.lan-1{
    display: grid;
    place-items: center;
}

.lan-1 img{
    height: 65%;
    width: 65%;
}

.jq img{
    height: 60%;
    width: 100%;
}

.html img,.css img,.js img{
    height: 50%;
    width: 50%;
}

.wp img,.mysql img{
    height: 45%;
    width: 75%;
}

.lan-1:hover{
    cursor: pointer;
    transition: 1s;
    border: 6px solid #764cff5b;
}

#service-box-2{
    /* border: 1px solid green; */
    height: 1300px;
    width: 100%;
    background: linear-gradient(to bottom, #e8fffc 0%,#fff4f4 100%);
    margin-top: 200px;
}

#service-box-2-textbox{
    /* border: 1px solid blue; */
    height: 200px;
    width: 50%;
    padding: 100px 25% 0% 25%;
    text-align: center;
}

#service-box-2-textbox h6{
    font-size: 15px;
    font-weight:600;
    color: #f32761;
}

#service-box-2-textbox h1{
    font-size: 40px;
    font-weight:800;
    margin: 20px 0px;
    color: #050748;
}

#service-box-2-textbox p{
    font-size: 15px;
    font-weight:500;
    text-align: center;
    width: 65%;
    color: #3333339c;
    margin-left:150px ;
}

#service-box-2-service-type{
    /* border: 1px solid green; */
    height: 1000px;
    width: 80%;
    margin: 0px 10%;
    display: flex;
    flex-wrap: wrap;
}

#service-type{
    border: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
    border-radius: 5px;
    height: 430px;
    width: 430px;
    margin: 10px auto;
    box-shadow: 15px 10px 20px #0000001c;
}

#service-type-img{
    /* border: 1px solid red; */
    height: 130px;
    width: 100%;
    display: grid;
    place-items: center;
}

#service-type img{
    height: 85px;
    width: 85px;
}

#service-type h1{
    /* border: 1px solid red; */
    height: 60px;
    width: 100%;
    margin: 10px 0px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #050748;
}

#service-type p{
    /* border: 1px solid red; */
    height: 150px;
    margin: 10px 5%;
    width: 90%;
    text-align: center;
    font-size: 15px;
    font-weight: 400 ;
    line-height: 22px;
    color: #333333b4;
}

#dedicated-button{
    /* border: 1px solid blue; */
    height: 130px;
    width: 100%;
    margin-top: 20px;
    display: grid;
    place-items: center;
}

#dedicated-text-box{
    /* border: 1px solid green; */
    height: 60px;
    width: 650px;
}

#dedicated-text-box h1{
    font-size: 30px;
    color: #050748;
    font-weight: lighter;
    line-height: 50px;
}

#dedicated-text-box span{
    font-size: 30px;
    font-weight: bold;
    color: #050748;
}

#dedicated-a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
}

#dedicated-text-box button{
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 100px;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 400;
    box-shadow: 10px 5px 20px #3333335b;
    margin: 0px 0px 5px 25px;
    background: linear-gradient(to right, #F45682 0%, #6739ff 100%);
    position: relative;
    overflow: hidden;
}

#dedicated-text-box button:hover{
    cursor: pointer;
    transition: 0s scale;
    scale: 1;
}

#dedicated-text-box button:hover #service-btn-circle{
    cursor: pointer;
    transition: 1s;
    scale: 1.5;
}

#service-btn-circle{
    height: 100px;
    width: 100px;
    position: absolute;
    background-color: #ffffff50;
    z-index: 47;
    margin: 0;
    border-radius:50%;
    top: 0;
    left: 90px;
}

#service-box-3{
    border: 1px solid transparent;
    height: 2800px;
    margin-top: 130px;
    width: 100%;
}

#service-box-3-textbox{
    /* border: 1px solid blue; */
    height: 200px;
    width: 50%;
    margin: 100px 25% 0% 25%;
    text-align: center;
}

#service-box-3-textbox h6{
    font-size: 15px;
    font-weight:600;
    color: #f32761;
}

#service-box-3-textbox h1{
    font-size: 38px;
    font-weight:700;
    margin: 35px 0px 25px 0px;
    color: #050748;
}

#service-box-3-textbox p{
    font-size: 15px;
    font-weight:500;
    text-align: center;
    width: 110%;
    word-spacing: 5px;
    color: #333333c0;
    margin-left: -38px;
}

#service-box-3-parts{
    /* border: 1px solid blue; */
    height: 2700px;
    width: 75%;
    margin: 1% 12.5%;
}

/* ===============
rotate span start
================== */
.s3-p-2 span{
    font-size: 60px;
    font-family: 'Poppins', sans-serif;
    border-radius: 100%;
    border: 1px solid #e8e8e8;
    width: 100px;
    height: 100px;
    display: block;
    text-align: center;
    line-height: 100px;
    margin: 100px 0 20px 0;
    color: #6a6a8e;
    border-radius: 68% 32% 64% 36% / 59% 59% 41% 41%;
    background: #d4f1f9;
    animation: border-transform 6s linear infinite;
}

@keyframes border-transform{
    0%, 100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

/* ===============
rotate span end
================== */

.s3parts{
    /* border: 1px solid red; */
    height: 580px;
    margin-top: 2%;
    display: flex;
}

.sbox-3-part1 .s3parts-left,.sbox-3-part3 .s3parts-left{
    /* border: 1px solid green; */
    width: 40%;
    height: 100%;
}

.sbox-3-part1 .s3parts-right,.sbox-3-part3 .s3parts-right{
    /* border: 1px solid green; */
    width: 60%;
    height: 100%;
}

.sbox-3-part2 .s3parts-left,.sbox-3-part4 .s3parts-left{
    /* border: 1px solid green; */
    width: 60%;
    height: 100%;
}

.sbox-3-part2 .s3parts-right,.sbox-3-part4 .s3parts-right{
    /* border: 1px solid green; */
    width: 40%;
    height: 100%;
}

.s3-p-2 h1{
    font-size: 35px;
    font-weight: 600;
    color: #050748;
    margin: 20px 0px 30px 0px;
}

.s3-p-2 p{
    font-size: 15px;
    font-weight: 500;
    color: #000000a6;
    width: 90%;
    word-spacing: 2px;
    line-height: 20px;
    text-align: justify;
    margin: 20px 0px;
}

#s3-pl-img{
    /* border: 1px solid green; */
    border-radius: 10px;
    height: 550px;
    width: 400px;
    margin: 15px 0px 0px 50px;
}

#s3-pl-img img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 15px 15px 20px #0000006b;
}

#s3-pr-img{
    /* border: 1px solid green; */
    border-radius: 10px;
    height: 550px;
    width: 400px;
    margin: 15px 50px 0px 20px;
}

#s3-pr-img img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 15px 15px 20px #0000006b;
    
}

#whatsapp-img {    
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    opacity: .8;
 }

/* ***************
SERVICE END
************** */