*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}
html,body{
    width: 100%;
    height: 100%;
}
:root{
    --blue:#0f1131;
    --background-color: #e56b4acf;
    --grey-text:#7a7a7a;
    --grey-line:#E5E5E5;
    --bg-service:#f6f3fe;
    --bg-casestudy-purple:#18012d;
}
.container{
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
}
.navbar{
    padding: 20px 0px;
}
.nav-logo img{
    width: 180px;
}
.nav-icn{
    display: none; 
}
.nav ul{
    list-style: none;
}
.nav ul li a{
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: 600;
}
.herobanner{
   background-color: var(--background-color);
   padding-top: 10px;
   padding-bottom: 50px;
   position: relative; 
} 
.hero-content{
    width: 100%;
    margin-bottom:100px ; 
    margin: 100px 0;
}
.hero-text{
    color:white;
    width: 50%; 
}
.hero-text h3{
    font-size: 75px;
    line-height: 1.5;
    font-weight: 800;
    
    
}
.hero-text p{
    font-weight: 600;
    padding-bottom: 50px;
    line-height: 2;
}
.hero-text a{
    color: white;
    padding-left: 20px;
    font-weight: 600;
    font-size: 18px;
}
.hero-img{
    width: 50%;
    background-image: url("images/hero-bg-shape1.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size:contain;
    position: relative; 
}
.img-girl img {
    width: 75%;
    position: absolute;
    top: -251px;
    left: 237px;
}
@keyframes  girl {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translate(100%);
    }
}
.hero-star img {
    position: absolute; 
    left: 98px;
    top: -10px;
    animation: star ease-in 1s infinite alternate-reverse;
}
@keyframes star{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-30px);
    }
}
.hero-market img {
    position: absolute;
    top: 18px;
    right: 10px;
    animation: market ease-in 5s infinite reverse ;
}
@keyframes market{
    0%{
        transform: translateX(0);
    } 
    30%{
        transform: translateY(-40px);
    }
    60%{
        transform: translate(-40px);
    }
    100%{
        transform: translate(0);
    }
} 
.hero-graph img { 
    position: absolute;
    bottom: -70px;
    left: 15px;
    animation: graph ease-in 2.5s infinite alternate-reverse;
}
@keyframes  graph{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-40px);
    }
}
.hero-roket{
    position: absolute;
    right: 0px;
    bottom: 5px;
    animation: hero-roket ease-in 2s infinite alternate-reverse;
}
@keyframes hero-roket{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(30px);
    }
}
.brand {
    width: 60%;
    margin: 6% 21%;
    box-shadow: 0px 1px 1px var(--grey-text);
    padding: 30px 0px;
    border-radius: 10px 55px 10px 55px;
    position: absolute;
    top: 905px;
    background-color: #fff;
}
.title-line{
    width: 400px;
    border-top:1px solid #E5E5E5;
    margin-top: 15px;
}
.brand h5{
    font-size: 22px;
    margin: 0px 10px;
    font-weight: 800;
}
.brad-img{ 
    padding: 30px 20px;
}
 .img-widthsame {
    width: 100px;
    height: 45px;
}
.img-width {
    width: 190px; 
    height: 50px;
}
.img-width5 {
    width: 250px; 
    height: 40px;
}     
/* ABOUT SECTION STRATS */
.about{
    background-color: #faf3f4;
    padding: 150px 0;
}
.about h5{
    font-size: 28px;
    font-weight: 800;
    padding-bottom: 70px;
}
.choose-options{ 
    width: 25%;
    background-color: white;
    padding: 30px 20px;
}
.choose-options h4{
    font-size: 25px;
    font-weight: 800;
    padding-bottom: 20px;
}
.choose-options p{
    color: var(--grey-text);
    line-height: 1.6;
}
.choose-options-img .bg-purple{
    background-image: url("images/choose-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
}
.parameter-bg { 
    border-radius: 35px 35px 0px 0px;
    position: relative;
    background-image: url(images/paramter-counter-bg.jpg);
    background-repeat: no-repeat; 
    background-size: cover; 
    height: 500px;
}
 
.para-bg2 {
    background-image: url("images/parameter-text-circlw.png");
    background-repeat: no-repeat;
    background-size: cover; 
    border-radius: 50%;
    background-color: #3f415a;
    position: relative;
    bottom: 5px;
    left: -1px;
    height: 80%;
    width: 80%;
    margin: 20px;
    animation: para-circle 10s infinite linear;
    box-shadow:  0px 0px 1px 18px#ffffff2e;
    z-index: 1;
}
 
@keyframes  para-circle { 
    100%{
        transform:rotate(360deg)
    }
}
.para-bg1 i { 
    font-size: 25px;
    color: #453456;
    position: absolute;
    right: 76px;
    top: 71px; 
    transform: rotate(-45deg); 
    z-index: 2;
}
.para-bg1 { 
    width: 180px;
    height: 180px;
    position: absolute;
    right: 50px;
    top: 412px;
    z-index: 2;
    border-radius: 50%;  
}

.parameter-number{ 
    background-color: var(--blue);
    color:white;
    padding:100px 0px 50px 50px;
    border-radius: 0px 0px 30px 30px;
    position: relative;
}
.para-nunber h3{
    font-size: 40px;
    font-weight: 700;
}
.para-nunber h4{
    font-size: 22px;
    font-weight: 500;
} 
.para-shadow {
    position: absolute;
    bottom: -127px;
    right: 0;
}
                                                        /* SERVICE SECTION STARTS */
.services{
    background-color: var(--bg-service);
}                                                       
.ser-head{ 
    margin:-300px 0px 50px 0px;
    padding: 400px 0px 0px;
    
}
.ser-head h5{
    font-size: 28px;
    font-weight: 700; 
}
.ser-head a{
    text-decoration: none;
    color: white;
}
.ser-option{
    padding: 50px 0px 100px;
    
}
.ser-9options{ 
    background-color: white;
    border: 0.5px solid var(--grey-line);
    border-radius: 35px;
    text-align: center;
    width: 30%;
    animation: slideUp ease;
    animation-timeline: view();
    animation-range: entery 10% cover 40%; 
  
}
@keyframes slideUp{
    0%{
        opacity: 0;
        transform: scale(0.5);
    }
    100%{
        opacity: 3;
        transform: scale(1);
    }
}
.ser-9options h3{
    padding: 30px 35px;
    font-size: 28px;
}
.ser-9options img{
    width: 80%;
}
.ser-9options p{
    font-size: 19px;
    color: var(--grey-text);
    padding: 20px 35px;
    line-height: 1.8;
}
.white-btn:hover{
    border: none;
    background-color: var(--blue);
    color: white;
}                                                              /* SERVICE SECTION ENDS */
                                                                 /* COMPANY SECTION STARTS */
.company-box{ 
    padding-top: 100px;
}
.com-images{
    position: relative;
    width: 40%;
    padding-bottom: 100px; 
}
.com-images #com-boy{ 
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50% 50% 0px 0px;
    
}
.com-5star {
    position: absolute;
    top: 115px;
    left: -100px;
    animation: com-5star 2s  ease-in-out infinite alternate;
}
@keyframes com-5star {
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(30px);
    }
}
.com-graph {
    position: absolute;
    top: 325px;
    right: -178px;
    animation: com-graph 2s ease infinite alternate-reverse;
}
@keyframes com-graph {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(30px);
    }
}

.com-circle { 
    position: relative; 
}
 
.com-bg2 {
    background-image: url("images/about-cirle.png");
    background-repeat: no-repeat;
    background-size: cover; 
    border-radius: 50%;
    background-color: #fd8128;
    position: absolute;
    bottom: 5px;
    left: -1px;
    height: 80%;
    width: 80%;
    margin: 20px;
    animation: para-circle 10s infinite linear;
    box-shadow:  0px 0px 1px 18px#ffffff2e;
    z-index: 1;
}
 
@keyframes  para-circle { 
    100%{
        transform:rotate(360deg)
    }
}
.com-bg1 i { 
    font-size: 25px;
    color: white;
    position: absolute;
    right: 76px;
    top: 71px; 
    transform: rotate(-45deg); 
    z-index: 2;
}
.com-bg1 {
    width: 180px;
    height: 180px;
    position: absolute;
    right: -20px;
    bottom: 476px;
    z-index: 2;
    border-radius: 50%;
}
.com-text{ 
    width: 60%;
    padding:0px 0px 0px 200px;
}
.com-btn{
    background-color: #f6f3fe;
    display: inline-block; 
    border-radius: 25px;
    margin-bottom: 30px;
}
.com-btn button a{
    text-decoration: none;
    color: transparent;
}
.com-btn button{
    padding: 15px 30px;
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800; 
    color: transparent;
    background:linear-gradient(90deg, #240CF2 0%, #00A9B5 100%) ;
    background-clip: text; 
}
.com-colab{ 
    margin-top: 50px;
}
.com-text h3{
    font-size: 30px;
    padding-bottom: 40px;
}
.com-text p{
    font-size: 17px;
    font-weight: 700;
}
.com-offers{ 
    width: 44%;
    margin: 0px 35px 35px 0px; 
}
.com-offers h2{
    font-size: 28px;
    font-weight: 700;
    padding: 20px 0px;
}
.com-offers p{
    color: var(--grey-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}
.com-text a{
    text-decoration: none;
    color: white;
   padding-left: 10px;
}
.com-text .black-btn {
    margin-right: 320px;
    text-align: center;
}                                                  /* COMPANY SECTION ENDS */
                                                    /* CASESTUDY SECTION STARTS */
.casestudy{ 
    margin-top: 100px;  
    background-color: var(--bg-casestudy-purple);
    color:white;
    padding-top: 100px; 
    border:solid var(--bg-casestudy-purple);
    
}
.case5{
    border-bottom:0.1px solid var(--grey-line);
    padding-bottom:60px;
    
}
.casestudy .btn{
    border:none;
    padding:12px 25px;
    border-radius:35px;
    text-transform:uppercase;
    font-size:16px;
    font-weight:700;
    background-color:#2f1a42;
    margin: 0px 50px 25px 0px;
    text-align: center;
}
.casestudy h5{
font-size:26px;
font-weight:700;
text-transform:capitalize;
padding-bottom:5px;
transition:1s; 
}
.casestudy h5:hover{
    color:#0f1131;
} 
.rating-img img {
    margin-left: 130px;
    width: 125px;
    padding-bottom: 15px;
}
.rating2 h4{
    font-size:17px
}

.case5-whitebtn{ 
    padding: 20px 40px;
}
.case5-text{ 
    width: 50%;
    padding-right:170px
}
.case5-text h5{
    font-weight:800;
    margin-top: 50px;
}
.case5-text h6{
    font-size:17px;
    font-weight:600;
    padding-bottom:30px;
}
.case5-text p{
    font-size:17px;
    line-height:1.8;
}
.caseview-btn{
    text-align: center;
    margin-top:50px;
    margin-bottom:120px;
    
}
.caseview-btn a{
    text-decoration:none;
    color:white; 
    border-radius:25px;
    padding:10px 25px;
    background-color:#ec562c;
    font-weight:700;
   
}
.case-flower{
    position: relative;
}
.case-flower img{
    position:absolute;
    right:0px;
    bottom:-3px;
}                               /* CASESTUDY SECTION ENDS */
.faq{                             /*FAQ SECTION STARTS */
    background-color: #eceaea75;
    padding: 100px 0px;
}
.faq-headings h3{
font-size:27px;
font-weight:800;
text-transform:capitalize;
}
.faq-quetions{ 
    width: 50%;
    margin-bottom: 200px;
}
.faq-4ques{ 
    background-color: white;
    margin:20px 0px;
    padding: 10px 20px;
}
.faq-ques h5{
    font-size:25px;
    font-weight:600;
    text-transform:capitalize;
    padding-bottom:20px
}
.faq-ques p{
    font-size:18px;
    color:var(--grey-text);
    line-height:1.8;
    padding-bottom:15px;
    display:none;
}
.faq-icon i{
    font-size:25px;
    font-weight:600;
    transition:1s;
}
.faq-icon i:hover{
    transform:rotate(90deg)
}
.faq-icon i:hover .faq-p p{
    display: block;
}
.faq-girl{
    position: relative;
}
.faq-girl img{
    position:absolute;
    right:0px;
    bottom:50px;
    width: 10%;
}                                        /*  FAQ SECTION ENDS */
                                         /*   CALL TO ACTION SECTION STARTS */
 .cta{
    background-color: #f6f3fe;
    height: 300px; 
 }                                        
.cta-rel{
    position:relative;
}
.cta-3divs{                              
    border-radius: 25px;
    padding:50px;
    background-color:var(--bg-casestudy-purple);
    color:white;
    position:absolute;
    bottom: -180px;

}
.cta-text{ 
    width: 70%;
    margin-left:70px;

}
.cta-content{
    width: 55%;
}
.call-btn {
    padding: 12px 25px;
    border-radius: 35px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    background-color: #2f1a42;
    margin: 25px 0px;
    width: 35%;
    text-align: center;
}
.cta-text h4{
    font-size:30px;
    font-weight:800;
    text-transform:capitalize;
}
.cta-btn{
    width: 35%;
}
.cta-btn a{ 
   
    text-transform: uppercase;
    text-decoration:none;
    color:white; 
    border-radius:35px;
    padding:20px 16px;
    background-color:#e76f4d;
    font-size: 18px;
    font-weight:700; 
}                                                 /*   CALL TO ACTION SECTION ENDS */
                                                    /* TESTIMONIAL SECTION STARTS */
.testimonial{
    background-image: url("images/testimonial-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover; 
 padding: 150px 0px;
}
.test-img{ 
    width: 50%;
    position: relative;
}
.test-img #roket{
    position: absolute;
    top: 0;
    left: 130px;
    animation: roket 5s linear infinite alternate;
}
@keyframes roket{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(40px);
    }
}
.test-img #msg {
    position: absolute;
    top: 80px;
    right: 130px;
    animation: msg 2s linear infinite alternate;
}
@keyframes msg{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-30px);
    }
}
.test-girl{ 
    width: 80%;
    height: 550px;
    margin: 0 auto;
    background-color: #e5ebf2;
    border-radius: 50% 50% 0 0;
    position: relative;

}
.test-girl img{ 
    width: 60%;
    margin: 0 calc(100% - 80%); 
    position: absolute;
    bottom: 0;
}
.test-text{ 
    width: 50%;
}
.test-btn button{ 
   border: none;
    border-radius: 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800; 
    color: transparent;
    background:linear-gradient(90deg, #240CF2 0%, #00A9B5 100%) ;
    background-clip: text; 
    
}
.test-btn {
    padding: 12px 30px;
    /* margin-right: 640px; */
    border-radius: 35px;
    background: #384bff1a;
    width: 25%;
    text-align: center;
}
.test-text h4{
    padding: 20px 0px;
    font-size: 28px;
    font-weight: 800;
} 
.test-text p{
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1.5;
    margin-bottom: 50px;
}
.test-comment{ 
    background-color: white;
    text-align: center;
    padding: 50px 20px;
    margin: 0 40px;
    position: relative;
}
.test-comment #client{
    position: absolute;
    left: 45%;
    top: -30px;
}
.test-comment #google {
    width: 4%; 
    padding: 3px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 2px;
}
.test-comment h5{
    font-size: 16px;
    font-weight: 800;
}
.test-comment h6{
    color:grey;
    padding: 10px 0px;
    font-size: 11px;
    font-weight: 600;
}
.test-comment p{
    font-size: 17px;
    text-transform:none ;
    padding-top: 10px;
}
#rating{
    text-align: center;
    font-size: 15px;
    padding-top: 10px;
    text-transform:none ;
}
#rating span{
     font-weight: 800;
    
}
.test-comment #left {
    position: absolute;
    left: -34px;
    bottom: 120px;
    font-size: 40px;
    color: #80808094;
}
.test-comment #right{
    position: absolute;
    right:-34px;
    bottom: 120px;
    font-size: 40px;
    color: #80808094;
}
.test-comment i:hover{
    animation: icon 2s ease;
}
@keyframes icon{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.5);
    }
}
                                                              /* TESTIMONIAL SECTION  ENDS */
                                                                /* BLOG SECTION STARTS */
.blog{ 
    border-color: #f7f7f7;
}
.current{ 
    position:relative;
}
.current img{ 
    position: absolute;
    top: -300px;
}
.blog-head{ 
    margin: 100px 0 300px;
    text-align: center;
}
.blog-btn  span{ 
    border: none; 
     text-transform: uppercase;
     font-size: 16px;
     font-weight: 800; 
     color: transparent;
     background:linear-gradient(90deg, #240CF2 0%, #00A9B5 100%) ;
     background-clip: text; 
     
 }
.blog-btn {
    padding: 15px 20px;
    margin: 0px auto;
    border-radius: 35px;
    background: #384bff1a;
    width: 30%;

}
.blog-head h4 {
    font-size: 28px;
    font-weight: 800;
    padding: 10px 523px;
    color: var(--bg-casestudy-purple);
}
/* .blog-com4{ 
padding: 20px; 
width: 25%;
background-color: #ffff;
box-shadow: 1px 1px 15px rgb(209, 207, 207);
border-radius: 20px;
text-align: left;
} */

.top{ 
    margin: 50px 0px; 
    padding: 20px; 
    width: 25%;
    background-color: #ffff;
    box-shadow: 1px 1px 15px rgb(209, 207, 207);
    border-radius: 20px;
    text-align: left;
}
#slyt-bot{ 
    padding: 20px; 
    margin: 50px 0px 30px 0px;
width: 25%;
background-color: #ffff;
box-shadow: 1px 1px 15px rgb(209, 207, 207);
border-radius: 20px;
text-align: left;
}
#bottom{ 
    padding: 20px; 
    margin: 50px 0px 0px ;
width: 25%;
background-color: #ffff;
box-shadow: 1px 1px 15px rgb(209, 207, 207);
border-radius: 20px;
text-align: left;
} 
 .bolg-img{ 
    overflow: hidden;  
    width: 100%; 
    border-radius: 15px;
    object-fit: cover;
   
}
.bolg-img img{
    width: 100%; 
    border-radius: 15px;
    transition: 1s ; 
    animation: slid-down ease 1s normal 1;   

}
.blog-com4:hover img{
    transform: scale(1.3);
}
@keyframes slid-down{
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
      }
} 
.b-date{ 
    padding: 20px 10px;
}
.b-date .blue{ 
    color: rgb(106, 71, 237); 
}
.b-date span{ 
    color: var(--grey-text);
    font-size: 15px;
}
.b-date h3 {
    text-transform: capitalize;
    padding: 14px 0;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.6;
}
.b-btn{ 
    margin: 50px 0px 30px 0px; 
}
.b-btn a{ 
    text-decoration: none;
    color: var(--grey-text);
}
.b-btn .fa-user{ 
    padding: 8px 8px 0px 8px;
    border-radius: 50px;
    background-color: var(--grey-text);
    color: white;
    font-size: 25px;
}                                       /* BLOG SECTION STARTS */
                                        /* FOOTER SECTION STARTS */
.foot-head{
    background:  #18185e;
    height: 120px;
    position: relative;
}
#foot-rocket{
    position: absolute;
    right: 0;
    top:-220px;
    animation:alternate translateY 3s linear infinite;
}
@keyframes translateY{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(30px);
    }
}
.foot-cta {
    background-color: var(--bg-casestudy-purple);
    border-radius: 35px;
    width: 70%;
    height: 221px;
    position: absolute;
    top: -102px;
    left: 15%;
    padding: 65px;
}
.foot-cta .width{
    width: 37%;
}
.foot-img{  
    position: relative;
}
.foot-img img {
    position: absolute;
    top: -194px;
    left: 60px;
    width: 76%;
}
.foot-cta h2{
    color:white;
    font-size:30px;
    padding: 0px 40px;
    margin-left:20px;
}
.footbtn{
    padding-left: 180px;
} 
.footer-foot {
    width: 100%;
    max-width: 70%;
    margin: 50px auto;
}
.footer-foot .foot-div4{
    width: 33%;
    padding: 0 10px;
    margin-top: 30px;
}
.foot-div4{ 
    margin-top: 30px;
}
.foot-div4 img{
    width: 50%;
}
.foot-div4 p{ 
    font-size: 18px;
    line-height: 1.8;
    padding: 50px 0px;
} 
.foot-icon i{
    width: 40px;
    border: 1px solid black;
    font-size: 19px;
    padding: 10px;
    margin-right:20px ;
}
.foot-icon i:hover {
    background-color: var(--blue);
    color:white;
}
.foot-div4 h6{
    font-size: 28px;
}
.div4-line{
    width: 30%; 
    border-top: 3px solid black;
    margin: 20px 40px;
}
.quick{
    margin-left: 65px;
}
.links{
    list-style: none;
    margin-top: 40px;
}
.links  li{  
    margin-bottom: 20px;
    transition: 1s ;
}
.links li:hover{
    transform: translateX(20px);
}
.links li a{
    text-decoration: none;
    color: rgb(36, 36, 36);
    font-size: 18px;
    line-height:2.1; 
    font-weight:500;
    padding-left: 5px;
}
.links li i{
    font-size: 20px;
    color: rgb(36, 36, 36);
}
.div4-2divs{ 
    margin-top: 50px;
}
.divs-part2{  
width:100%;
margin-top: 20px;
}
.part2-img{
    width: 25%;
}
.part2-img img{ 
    width: 100%; 
    margin: 5px 0px 0px 0px;
    border-radius: 10px; 
}
.post-text{
    width:78%; 
}
.post-date li{
    list-style:none; 
    font-size:15px;
}
.post-date li i{
    margin-right:5px;
}
.post-text h5{
    margin:10px 0px;
    font-size:17px;
    line-height:1.5;
    text-transform: capitalize;
}
.contact{ 
    line-height: 3;
    list-style: none;
}
.contact i{
    margin-right:10px;
    font-size: 22px;
}
.contact li a{
    text-decoration: none;
    color: black;
    font-size:18px;
}
.foot-bottom{
    background-color: var(--blue);
    color: white;
    padding: 40px 50px;
    font-size:18px;
}
/* FOOTER SECTION ENDS */




/* RESPONSIVE STARTS */

/* PHONE RESPONSIVE */
@media (max-width:481px){
    .container{
        width: 100%;
        max-width: 95%;
        margin: 0 auto;
    }
    .navbar{
        justify-content: space-between;
    }
    .nav ul{
        display: none;
    }
    .nav-icn { 
        display: block;
        position:relative;
        left: 110px;
    }
    .nav-icn i{
        font-size: 40px;
        padding-right: 0;
    }
    .black-btn{ 
        font-size: 9px;
        padding: 10px 20px;
    }
    .herobanner{
        background-color: var(--background-color);
        padding-top: 1px;
        padding-bottom: 100px;
        position: relative; 
     }
     .hero-content{
        display: flex;
        flex-wrap: wrap;
        width: 100%; 
        margin: 50px 0;
    }
    .herobanner >img{
        display:none;
    }
    .hero-text{
        color:white;
        width: 80%; 
        padding-left:30px;
    }
    .hero-text h3{
        font-size: 30px;
        line-height:35px;
        font-weight: 800;
        padding-bottom: 10px;  
    }
    .hero-text p{
        font-size:10px; 
        font-weight: 400;
        padding-bottom: 50px;
        line-height: 1.5;
        padding-right: 65px;
    }
    .hero-text a{
        color: white;
        padding-left: 20px;
        font-weight: 600;
        font-size: 11px;
    }
    .hero-img{
        width: 100%;
        height: 231px;
        background-image:none; 
        position: relative; 
    } 
    .d-none{
        display: none;
    }
    .img-girl img {
        width: 70%;
        position: absolute;
        top: 7px;
        left: 10px;
    }
    .hero-roket{
        display:none;
    }
    .about{
        background-color: #faf3f4;
        padding: 50px 0;
    }
    .about h5{
        font-size: 19px;
        margin-left: 20px;
        font-weight: 700;
        padding-bottom:50px;
    }
    .about-choose{
        display: flex;
        flex-wrap:nowrap;
        flex-direction: column;
    }
    .choose-options{ 
        width: 90%;
        margin: 0 auto;
        background-color: white;
        padding: 30px 20px;
    }
    .choose-options h4{
        font-size: 25px;
        font-weight: 800;
        padding-bottom: 20px;
    }
    .choose-options p{
        color: var(--grey-text);
        line-height: 1.6;
    }
    .choose-options-img{
        max-width: 100%;
        /* border: 2px solid red; */
        display: flex;
    }
    .choose-options-img img{
        width: 90%;
        margin: 0 auto;
    }
    .parameter-number{
        flex-wrap: wrap;
    }
    .para-nunber{
        width: 40%;
    }
    #ser-opt1{
        flex-direction: column;
    }
    .ser-9options{
        width: 90%;
        margin: 0 auto;
        padding-bottom: 20px;
    }
    .ser-9options .white-btn{
        width: 50%;
        margin: 0 auto;
    }
    .com-bg1{ 
        position:absolute;
        left: 190px;
        bottom: 250px;
        width: 100%;
    } 
    .com-circle{
        width: 52%;
        position: relative;
    }
    .com-5star{
        display:none;
    }
    .com-graph{
        display:none;
    }
    .company-box{
        flex-direction: column;
    }
    .com-images{
        width: 90%;
        margin: 0 auto;
    }
    
    .com-text{  
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
    .com-offers{
        width: 90%;
    }
    .com-offers p{  
        line-height: 1.3;
    }
    .com-text .black-btn{
        width: 32%;
        margin: 0;
        padding: 6px 10px;
    }
    .case5{  
        flex-direction: column;
        align-items: normal;
        justify-content:left;
       padding-bottom: 20px;
    }
    .study-text{
        padding-bottom: 20px; 
        padding-left: 10px;
    }
    .casestudy .btn{
        width: 38%;
        font-size: 12px; 
    }
    .case-rating{ 
        margin: 20px 0;
    }
    .rating-img img{
        width: 30%;
        margin-left: 0px;
    }
    .rating-5star{ 
        flex-direction: column;
        gap: 0;
    }
    .rating2 h4{
        font-size:12px;
    } 
    .case5-text{
        width: 90%;
        padding-right:0;
        padding-left: 10px;
        margin-left: 0;
    }
    .case5-text h5{
        font-size: 17px;
    }
    .case5-text h6{
        font-size: 12px;
    }
    .case5-text p{
        font-size: 12px;
        padding-bottom: 10px;
    }
    .case5-whitebtn{
        padding: 10px;
    }
    .case5-whitebtn a{
       margin-left:0; 
       margin-right: 0;
       font-size: 10px;
       padding: 10px 20px;
    }
    .caseview-btn{
        font-size: 10px;
        margin-bottom: 50px;
    } 
    .case-flower{
        display: none;
    }
    .sec-faq{
        flex-direction: column; 
        padding: 0 20px;
    }
    .faq-headings h3{
        font-size: 22px;
    }
    .faq-quetions{
        width: 100%;
        margin-bottom: 100px;
    }
    .faq-ques h5{
        font-size: 17px;
    }
    .faq-icon i{
        font-size: 15px;
    } 
    .faq-girl{
        display: none;
    }
    .cta-3divs{
        flex-direction: column;
        padding: 30px;
        text-align: center;
        gap:0;
    }
    .cta-3divs img{
        display: none;
        width: 0;
    }
    .cta-text{
        flex-direction:column;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }
    .cta-content{
        width: 90%;
        margin:0 auto;
    }
    .call-btn{
        margin:20px auto;
        width: 50%;
        font-size: 12px;
        text-align: center;  
    }
    .cta-content h4{
        font-size: 18px;
        font-weight: 800;
        padding: 0px;
    }
    .ctabtn {
        width:100%;
        margin: 30px auto;
    }
    .ctabtn a{
        font-size: 10px;
        padding: 10px 20px;
        
    }
    .testimonial{
        padding:0px;
    }
    .test-2divs{
        flex-direction:column; 
        
    }
    .test-img{
        width: 100%; 
    }
    #roket{
        display: none;
    }
    #msg{
        display: none;
    }
    .test-girl{
        background: transparent;
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
       
    }
    .test-girl img{
        width: 80%;
        margin: 0 auto; 
    }
    .test-text{
        width: 100%;
        padding: 0 20px; 
    }
    .test-btn{ 
        width: 50%;
        text-align: center;
        margin:10px auto;
    }
    .test-comment{
        margin:0px 20px;
    }
    .test-comment #client{
        left:40%;
    }
    .blog-comment{
        flex-direction:column;
        gap:20px;

    }
    .top , #slyt-bot ,#bottom{
        width: 100%;
        margin: 0;
    }
    .current{
        display: none;
        margin: 0;
        padding: 0;
    }
    .blog-head h4{
        padding: 0;
        margin:20px 0;
    }
    .blog-btn {
        padding: 10px 20px;
        margin: 0 auto;
        width: 50%;

    }
    #foot-rocket{
        display: none;
    }
    .foot-head{
        padding: 0;
        margin: 0;
    }
    .foot-cta{  
        flex-direction:column;
        align-items: center;
        justify-content: center;
        gap: 50px;
        width: 100%;
        margin: 0;
        left: 0; 
        padding: 20px 10px;
    }
    .blog-head {
        margin: 120px 0;
        text-align: center;
    }
    .foot-img{
        display:none;
    }
    .width{
      width: 100%;
      padding: 0;
      left: 0;
      margin: 0;
    }
    .foot-cta h2{
        padding: 0;
        width: 100% !important;
        font-size: 25px;
        text-align: center;
    }
    .footbtn{
        width: 100% !important;
        display: flex;
        justify-content: center;

      
    }
    .cta-btn a{
        padding: 10px 20px;
        font-size: 16px !important;
    }
    .footer-foot{ 
        width: 100% !important; 
        max-width: 100%;
        flex-direction: column;
        justify-items: left;
        padding: 0 20px;
    }
    .foot-div4{
        width: 100% !important; 
    }
    .foot-div4 img{
        width: 100%;
    } 
    .quick {
        margin-left: 0px;
    }
    .contact i{
        font-size: 16px;
    }
    .contact a{
        font-size: 16px;
    }
    .div4-2divs {
        margin-top: 20px;
    }
    .footer-foot {
        margin: 0;
    
    }
    .foot-bottom{
        padding: 20px;
        margin-top: 20px;
    }
    .f-botm{
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }
    .copyright {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
}