@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Open+Sans:wght@300&family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

:root {
    --main-color: #11C26D;
    --text-color: #1a603e;
    --bg-color: #fff;
    --big-font: 4rem;
    --h2-font: 1.5rem;
    --p-font: 0.9rem;
}

*::selection {
    background: var(--main-color);
    color: #fff;
}

body {
    color: var(--text-color);
    background-color: var(--bg-color);
}

body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

body::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 30px 170px;
    background: var(--bg-color);
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

.logo {
    width: 200px;
    position: absolute;
    top: 30px;
}

.navbar {
    display: flex;
}

.navbar a {
    color: var(--text-color);
    font-size: 1.3rem;
    padding: 10px 20px;
    font-weight: 500;
}

.navbar a:hover {
    color: var(--main-color);
    transition: .4s;
}

#menu-icon {
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

section {
    padding: 70px 10%;
}

.home {
    width: 100%;
    min-height: 90vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    align-items: center;
    padding-bottom: 0px;
}

.home_img img {
    max-width: 100%;
    width: 600px;
    height: auto;
}

.home_text h1 {
    font-size: var(--big-font);
    color: var(--main-color);
}

.home_text h2 {
    font-size: var(--h2-font);
    margin: 0rem 0 2rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--main-color);
    color: #fff;
    border-radius: 0.5rem;
    cursor: pointer;
}

.haeder_spn{
    margin-bottom:10px;
    font-size:20px;
    font-weight:500;
}

.typewriter {
    width: 13.5ch;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid #11c26d;
    animation: cursor 1s step-start infinite,
        text 5s steps(18) alternate infinite;
}

@keyframes cursor {

    0%,
    100% {
        border-color: #11c26d;
    }
}

@keyframes text {
    0% {
        width: 0;
    }

    100% {
        width: 13.5ch;
    }
}

.mansi_btn{
    display:flex;
    flex-direction:row;
}

.btn:hover {
    transform: scale(1.2) translateY(10px);
    transition: .4s;
}

.about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: center;
    padding-top: 40px;
}

.about_img img {
    max-width: 100%;
    width: 480px;
    height: auto;
}

.about_text span {
    color: var(--main-color);
    font-weight: 600;
}

.about_text h2 {
    font-size: var(--h2-font);
}

.about_text p {
    margin: 0.8rem 0 1.8rem;
    line-height: 1.7rem;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.heading {
    text-align: center;
}

.heading span {
    color: var(--main-color);
    font-weight: 600;
}

.heading h2 {
    font-size: var(--h2-font);
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menuContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    grid-gap: 1.5rem;
    align-items: center;
}

.box {
    position: relative;
    margin-top: 4rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #feeee7;
    padding: 20px;
    border-radius: 0.5rem;
}

.box_img {
    width: 220px;
    height: 220px;
}

.box_img img {
    width: 100%;
    height: 100%;
}

.box h2 {
    font-size: 1.3rem;
    color: var(--bg-color);
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box h3 {
    color: var(--bg-color);
    font-size: 1rem;
    font-weight: 400;
    margin: 4px 0 10px;
}

.box span {
    font-size: var(--p-font);
    color: var(--main-color);
    font-weight: 600;
}

.box .bx {
    background: var(--main-color);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    padding: 7px 10px;
    border-radius: 0 0.5rem 0 0.5rem;
}

.serviceContainer {
    display: flex;
    flex-direction: row;
    margin-top: 6rem;
    gap: 33px;
}

#ser_img {
    width: 515px;
    border-radius:10px;
}

.s_box_img {
    width: 50%;
    display: flex;
    justify-content: center;
}

.s_box_detail {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index:-9;
}

.shape_1{
    position: absolute;
    width: 600px;
    height:350px;
    background: linear-gradient(to bottom right,  var(--text-color), #29e38a);
    border-radius: 50%;
    right: 155px;
    top: 1710px;
    z-index:-9;
}

.s_box_detail h3 {
    margin: 4px 0 10px;
    color: var(--main-color);
    font-size: 1.2rem;
    background: #CCCCFF;
    border-radius: 10px;
    z-index:-9;
}

.s_box_detail p {
    z-index: -9;
    background-image: linear-gradient(to bottom right,  var(--text-color), #29e38a);
    color: var(--bg-color);
    border-radius: 10px;
    padding: 20px 40px;
    margin-bottom: 5px;
}

.reason_lists {
    text-align: left;
    background-image: linear-gradient(to bottom right,  var(--text-color), #29e38a);
    padding: 15px 24px;
    color: var(--bg-color);
    border-radius: 10px;
    margin-top: 5px;
    z-index: -9;
}

.grow img {
    transition: 1s ease;
}

.grow img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: 1s ease;
}

.reason_service_img {
    width: 135px;
    position: absolute;
    top: -77px;
    left: 196px;
    z-index: -9;
}

.para_question {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    text-align:center;
}

hr {

    border: 0;
    height: 1px;
    width: 10%;
    position: relative;
    margin: 30px auto;
}

hr.new3 {
    border-top: 2px dotted #2b2640;
    width: 450px;
    margin-top: 60px;
}

hr {

    border: 0;
    height: 1px;
    width: 10%;
    position: relative;
}

hr.new {
    border-top: 2px dotted #2b2640;
    width: 450px;
    margin-top: 60px;
}

.ques_span {
    text-align: center;
    margin: 20px;
}

.arrow{
    position: relative; 
    top: 6px; 
    width: 25px;
    color: #fff;
    filter: invert(100%);
}

/* Phone CRM APPs */

.phone_text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ============== Poster css start ============ */
.poster_slider {
    height: 500px;
    margin: auto;
    position: relative;
    width: 90%;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.poster_slide_track {
    display: flex;
    width: calc(250px * 18);
    animation: scroll 40s linear infinite;
}

.poster_slide_track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 9));
    }

}

.poster_track{
     display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

._poster_slide_img {
    display: flex;
    align-items: center;
    overflow: hidden;
    /*perspective: 100px;*/
    border-radius: 10px;
    border: 1px solid #191970;
    width: 32%;
    margin-bottom: 2vh;
    /*margin-left: 40px;*/
}

img {
    width: 100%;
}

img:hover {
    transform: translateZ(20px);
}

.poster_slider::before,
.poster_slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.poster_slider::before {
    left: 0;
    top: 0;
}

.poster_slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

/*  */

.cta {
    padding: 45px 0;
    text-align: center;
    margin: auto;
    border-radius: 10px;
    background-image: linear-gradient(to bottom right,  var(--text-color), #29e38a);
}

.cta h2 {
    font-size: 2rem;
    color: var(--bg-color);
    margin-bottom: 30px;
}

.main {
    display: flex;
    flex-wrap: wrap;
}

.footer {
    padding: 10px 0;
}

.col {
    width: 33%;
}

.col h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
}

.col h4::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 50px;
    left: 0;
    bottom: 0;
    background: var(--main-color);
}

.col ul li:not(:last-child) {
    margin-bottom: 15px;
}

.col ul li a {
    color: #15141e;
    font-size: 1.1rem;
    display: block;
    text-transform: capitalize;
    transition: .4s;
}

.col ul li a:hover {
    color: var(--text-color);
    transform: translateX(-12px);
}

.col .social {
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col .social a {
    height: 40px;
    width: 40px;
    background: var(--main-color);
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: .4s;
}

.col .social a:hover {
    transform: scale(1.2);
    color: var(--bg-color);
    background: var(--text-color);
}

.logo_section{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo_sec_1{
    width: 300px;
    height: 280px;
    background: #F5F5F5;
    border-radius: 20px;
    border: 1px solid #29e38a;
    cursor: pointer;
}

.logo_sec_1 img{
    width: 55%;
}

.btn{
    border: none;
}

.poweder{
    display: flex;
    flex-direction: column;
}

.info{
    font-size: 11px;
}

.download{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* plans */

.plan_section{
    display: flex;
    justify-content: space-around;
}

.plans{
    width: 50%;
    /* height: 200px; */
    border: none;
    border-radius: 10px;
    background-image: linear-gradient(to bottom right,  var(--text-color), #29e38a);
    margin-top: 2rem;
    padding: 20px 15px;
    position: relative;
    margin-left:50px;
}

.plan_img {
    position: absolute;
    width: 130px;
    top: -44px;
    left: -7px;
    transform: rotate(14deg);
}

.plans h2,
.plans span {
    color: var(--bg-color);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plans h2 {
    margin-top: 1rem;
}

.plans span {
    font-size: 15px;
}

.price{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 1.2rem;
}

.price span{
    color: var(--bg-color);
    font-weight: 600;
}

.price  .first_tag{
    font-size: 25px;
    position: absolute;
    top: 6px;
    left: 68px;
}

.price .secoend_tag {
    font-size: 60px;
}

.price .third_tag{
    font-size: 20px;
    position: absolute;
    bottom: -5px;
    top:80px;
}

.price_details{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 2rem;
    align-items: center;

}

.price_details ul li {
    color: var(--bg-color);
    margin-bottom: 5px;
    text-align: center;
    font-weight: 500;
}

.price_details button {
    width: 250px;
    margin-top: 1.5rem;
}

@media (max-width: 1460px) {
    header {
        padding: 31px 40px;
    }

    :root {
        --big-font: 2rem;
        --h2-font: 1rem;
    }
}
@media (max-width:1360px){
    .price .first_tag {
        left:60px !important;
    }
}
@media (max-width: 1140px) {
    section {
        padding: 50px 8%;
    }

    header {
        padding: 30px 40px;
    }

    #menu-icon {
        display: initial;
        color: var(--text-color);
    }

    header .navbar {
        position: absolute;
        top: -475px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        background: #2b2640;
        transition: .3s;
    }

    header .navbar.active {
        top: 94px;
    }

    .navbar a {
        padding: 1.5rem;
        display: block;
        color: #fff;
    }

    .col {
        width: 50%;
        margin-bottom: 10px;
    }

    .price  .first_tag {
        font-size: 25px;
        position: absolute;
        top: 6px;
        left: 93px;
    }
    
    .serviceContainer {
        gap:60px;
    }
    
    #ser_img{
        width:480px;
    }
    
    .reason_service_img{
        left:115px;
        top:-96px !important;
    }
    
    .price .first_tag{
        left:13px !important;
    }
}

@media (max-width: 900px) {

    header {
        padding: 30px 40px;
    }
    
    .home{
        min-height: 50vh;
    }

    .navbar a{
        color: #fff;
    }

    .serviceContainer{
        flex-direction: column;
        align-items: center;
    }

    .plan_section{
        display:grid;
    }

    .price .first_tag{
        left: 29px;
    }

    .plans h2{
        margin-top: 2rem;
    }

    .logo_section{
        flex-direction: column;
        gap: 20px;
    }

    .serviceContainer {
        margin-top: 8rem;
    }

    .reason_service_img{
        display: none;
    }
    
    .price .secoend_tag{
        font-size:45px;
    }
    .price .first_tag{
        left:105px !important;
    }
    .plans{
        width:100%;
        margin-left:0;
    }
}

@media (max-width: 720px) {
    html,body{
       overflow-x:hidden;
    }
    .home{
        margin-left:-18px;
    }
    .about{
        margin-left: -28px;
    }
    .about_text {
            width: 300px;
    }
    .services{
        margin-left: -55px;
            margin-top: -25px;

    }
    .heading{
        margin-right: 8px;
    }
    .para_question{
            width: 350px;
    }
    #phn_section{
        padding-top: 0px;
    padding-bottom: 0px;
    margin-left: -70px;
    }
    .plans-services{
            margin-left: -70px;
    }
    .about_img img {
        width: 300px;
    }
    .about_img {
        margin-right: 80px;
    }
    .serviceContainer{
        width: 345px;
        margin-left: 5px;
    }
    .new3{
        margin-left: 26px;
    } 
    .new{
     margin-left: 26px;    
    }
    .cta{
       /* padding-right: 50px;*/
           width: auto;
    }
    .cta h2{
        font-size:30px;
            margin-right: 46px;
            width: 350px;
    }
    .logo_section{
            /*margin-right: 90px;*/
    }
    .price-tag{
        right: 201px;

    }
    .grow img {
        width:370px;
      /*  margin-top: -60px;*/
    }
    .grow {
       /* margin-top: -40px;*/
    }
    header {
        padding: 29px 16px;
    }
    

    .home_text{
        text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }

    .home_img img {
        width: 480px;
    }

    .price .first_tag {
       left: 36px;
    }

    .home {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about_img {
        order: 2;
    }

    section {
        padding: 100px 7%;
    }
    
    .price .secoend_tag {
        margin-left:32px;
    }
    
    .plan_section{
        gap:0;
    }
    .serviceContainer {
    margin-top: 3rem;
    }
}



@media (max-width: 575px) {
    .col {
        width: 100%;
    }
    section {
    padding: 70px 16%;
    width: 500px;
    }
    .poster_track{
     display: block;
     
     
   
}
.poster_track div{
     margin: 10px 0px;

}

._poster_slide_img{
    width: 100%;
}

.new_services{
    width: 100% !important;
    margin: 0px !important;
    padding: 0px !important;
}

    hr.new3{
        width: 380px;
    }

    #ser_img{
        width: 350px;
    }
    .serviceContainer {
    margin-top: 3rem;
    }
    hr.new3 {
    width: 300px;
    }
    .plan_section{
        display:grid !important;
    }
    .plans{
        width:100%;
    }
    hr.new{
       width:300px; 
    }
    .plans{
        width:100%;
        margin-left:0px;
    }
    .poster_slider{
        width:100%;
    }
    .s_box_detail {
        width:100%;
    }
    .home {
    width: 300px;
    margin-top: 2rem;
 
    }
    .typewriter{
        animation:none;
    }
    .price .first_tag {
    left: 14px !important;
    }
}

@media (max-width:350px){
    hr.new3 {
    width: 150px;
    }
    section {
    padding:70px 25%;
    width: 500px;
    }
    #ser_img {
    width: 250px !important;
    }
    .plan_section{
        display:grid !important;
    }
    .plans{
        width:100%;
        margin-left:0px;
    }
    hr.new{
       width:150px; 
    }
    .poster_slider{
        width:100%;
    }
    .s_box_detail {
        width:100%;
    }
   .home {
    width: 300px;
    margin-top: 2rem;
    margin-left: 3rem;
    }
    .typewriter{
    animation:none;
    }
    .price .first_tag {
    left: 54px !important;
    }
}