@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

* {
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    text-decoration: none !important;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

:root {
    --primary-color: #7B5FF1;
    --secondary-color: #219e53;
    --sub_secondary-color: #FF8B37;
    --dark: #000;
    --dark-light: #777;
    --box-shadow: .5rem 1.5rem rgba(0, 0, 0, 0.2);
    --white: #fff;
    --dark-red: #d81e1e;
    --light-white: #f9f9f9;
    --border-with-primary: .1rem solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 1.3rem;
    /* Width of the scroll bar */
}

::-webkit-scrollbar-thumb {
    background-color: #a4161a;
    /* Color of the scroll bar thumb */
}

::selection {
    background-color: var(--sub_secondary-color);
    /* Change to your desired color */
    color: #fff;
    /* Change to your desired text color */
}


.para_black, .para_white{
    font-size: 1.5rem;
}

.para_black{
    color: var(--dark-light);
}

.para_white{
    color: var(--white);
}
.mod_color{
     color:var(--dark-red);
     font-size:8rem;
     font-weight: 700;
}

.mod_color_2{
    color:var(--sub_secondary-color);
    font-weight: 400;
}

.typed-cursor {
    color: var(--secondary-color); /* Change the color of the typing indicator here */
}




html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito Sans", sans-serif;
    overflow-x: hidden!important;
}

section {
    padding: .5rem 7%;
    max-width: 100%!important;
}

/* whatsapp */

/* ion-icon {
    font-size: 48px;
  }

  .whatsApp{
  cursor: pointer;
  color: #25D366;
  position: fixed;
  bottom: 15rem;
  right: 4rem;
  z-index: 5000;
  } */

/* Default header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: .5rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent !important;
    transition: .3s linear;
}

header .logo a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.navigation {
    font-size: 1.7rem;
}

.navigation a {
    font-weight: 700;
    margin-right: 1rem;
    transition: color .3s linear;
    color: var(--white);
}

.navigation a.active,
.navigation a:hover {
    color: #219e53;
}

header .icon {
    display: none;
}

/* Sticky header styles */
header.sticky {
    background-color: #f9f9f9 !important;
    padding: 1rem 7%;
    transition: .3s linear;
}

header.sticky .navigation a {
    color: var(--dark);
}

header.sticky .logo a,
header.sticky .icon i {
    color: var(--dark);
}

header.sticky .navigation a:hover,
header.sticky .navigation a.active {
    color: var(--sub-primary-color) !important;
}

header .icon {
    cursor: pointer;
}

header .icon i {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    margin-right: 1rem;
}

/* software services  */

.software_serives .card{
    padding: 2rem;
    border-radius: 2%;
    width: 100%;
    background-color: #F7F7F7;
}
.software_serives .card img{
    height: 10rem;
    width: 10rem;
}
.software_serives .card-body h3{
    text-align: center;
    font-size: 2rem;
}
.software_serives .card-body p{
    text-align: justify;
    font-size: 1.5rem;
    line-height: 2.5rem;
    word-spacing: 105%;
    padding: 1.5rem;
}
.software_serives .row .card{
    transition: .8s;

}
.software_serives  .row .card:hover {
   transform: translateY(-1rem);
}

.software_serives .row{
    margin-bottom: 5rem;
}

/* our partner */
.video .standard-btn {
    text-decoration:none;
    border: .1rem solid #19243f;
    padding:1rem 2rem 1rem 2rem;
    border-radius:2px;
    color:#39812e;
    margin:5px;
    font-size: 1.5rem;
    transition: .5s;
  }

  .video .standard-btn:hover{
    background-color: #19243f;
    letter-spacing: .1rem;
    color: #39812e;
  }


.hero {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 100vh;
    font-family: "Teko", sans-serif;
  }

  .hero_img video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:5;
    /* background-color: rgba(123, 95, 241, 0.7); */
    background-image: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(123, 95, 241, 0.7));

  }

  .hero .wrapper .hero_content{
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 20;
    display: flex;
    flex-direction: column;
    max-width: 70rem;
    align-items: start;
    justify-content: center;
  }



  .hero .wrapper .hero_content h2 {
    font-size: 6rem;
    color: var(--white) !important;
    letter-spacing: .2rem;
}

.hero .wrapper .hero_content p {
    font-size: 2.2rem;
    color: var(--white) !important;
    letter-spacing: .2rem;
    margin: 2rem 0rem;
    text-transform: capitalize;
}




/* sub hero */

/*
.sub_hero_img {
    position: relative;
}

.sub_hero_img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
} */


.sub_hero {
    overflow: hidden;
    width: 100%;
    font-family: "Teko", sans-serif;
     height: 50vh;
}

.sub_hero .sub_wrapper .sub_hero_img {
    position: relative;
    width: 100%;
    height: 100%;
}

.sub_hero .sub_wrapper .sub_hero_img img {
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: cover;
    object-fit: cover;
}

.sub_hero .sub_wrapper{
    position: relative;
    width: 100%;
    height: 100%;
}

.sub_hero .sub_wrapper .sub_hero_content{
    position: absolute;
    color: white;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-direction: column;
}

.sub_hero .sub_wrapper .sub_hero_content h2{
    font-size: 8rem;
    letter-spacing: .1rem;
    text-shadow:.1rem .2rem .5rem var(--dark-red);
}

.sub_hero .sub_wrapper .sub_hero_content p{
    font-size: 2rem;
    letter-spacing: .1rem;
}

.sub_hero .sub_wrapper .sub_hero_img .sub_hero_img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(123, 95, 241, 0.7));
    z-index: 1;
}


  /* .video_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:5;
    background-image: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(123, 95, 241, 0.7));

  }

  .hero .wrapper .hero_content{
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 20;
    display: flex;
    flex-direction: column;
    max-width: 70rem;
    align-items: start;
    justify-content: center;
  }



  .hero .wrapper .hero_content h2 {
    font-size: 6rem;
    color: var(--white) !important;
    letter-spacing: .2rem;
}

.hero .wrapper .hero_content p {
    font-size: 2.2rem;
    color: var(--white) !important;
    letter-spacing: .2rem;
    margin: 2rem 0rem;
    text-transform: capitalize;
} */



/* sub hero end */

.bara_btn {
    font-size: 2rem;
    line-height: 2rem;
    color: var(--white);
    font-weight: 400;
    padding: 1rem 3rem;
    background-color: green;
    overflow: hidden;
    cursor: pointer;
    transition: .6s ease-in-out;
    border-radius: 6px;
}

.bara_btn:hover {
    letter-spacing: 0.1rem;
    transition: .6s ease-in-out;
    color: var(--white) !important;
}

.hero .wrapper .hero_content .hero_about a {
    font-size: 1.8rem;
    margin-left: 1.5rem;
    color: var(--white) !important;
    background-color: green !important;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

.hero .wrapper .hero_content .hero_about a:hover {
    cursor: pointer;
}

.hero .wrapper .hero_content .hero_about span {
    color: var(--sub_secondary-color) !important;
    margin-left: 1rem;
    font-size: 1.8rem;
    font-weight: 500;
    transition: .2s ease-in-out;
}




/* about us */

.about_us {
    margin-top: 2rem;
    z-index: 20;
    position: relative;
    overflow: hidden;
}

.about_us .about_body,
.about_footer {
    font-size: 1.4rem;
    line-height: 2.5rem;
    text-align: justify;
    padding: 1rem 0rem;
}

/* .about_img{scale: .9;} */

.about_us .about_footer span {
    margin-right: 2rem;
    background-color: transparent;
    border-color: #7B5FF1;
}

.about_footer img {
    height: 2.5rem;
}


/* different from others */
/* different from others */
.diffentent_from_others .container {
    position: relative;
    margin-top: -10%;
}
.diffentent_from_others .container .row .card{
    transition: .8s;
    border: .1rem solid #19243f;

}
.diffentent_from_others .container .row .card:hover {
   transform: translateY(-.5rem);
   background-color:#a4161a;
   color: white;
}
.heading h1 span img{
    color: var(--sub-primary-color);
}

.heading {
    padding: 1rem 0rem;
    font-weight: bold;
}

.heading h1 {
    font-size: 3rem;
    font-weight: 800;
    font-family: "Caveat", cursive;
}

.sub_heading {
    font-size: 1.5rem;
    text-align: left;
}

.upper_title {
    font-size: 1.5rem;
    color: green;
    font-weight: bold;
    display: inline-block;
    position: relative;

}


.upper_title::after {
    content: "";
    position: absolute;
    width: 0%;
    height: .3rem;
    background: #19243f;
    bottom: 0;
    left: 0;
    transition: width .3s ease-in-out;
}

.upper_title:hover::after {
    width: 100%;
}





.diffentent_from_others .card img {
    font-size: 4rem;
    padding: 2rem;
    color: #525353;
    height: 10rem;
    width: 15rem;
    text-align: center;
}

.diffentent_from_others .card {
    background-color: #fff;
    padding: 1rem;
    min-height: 30rem;
    border-radius: 2rem;
    width: 100%;
    cursor: pointer;
}

.diffentent_from_others .card h4 {
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 1rem;
}

.diffentent_from_others .card p {
    line-height: 2rem;
    font-size: 1.4rem;
}

.diffentent_from_others .revenue, .syariah{
    margin-top: -5rem;
}


/* Our Clients */

.clients {
    min-height: auto !important;
    color: var(--dark-light);
    margin-top: 6rem;
}

#templatemo-slide-brand img {
    height: 10rem;
    width: 10rem;
}

.clients .fa-chevron-right {
    color: #7B5FF1;
}

.clients .fa-chevron-left {
    color: #7B5FF1;
}

/* .client-img {
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.client-img:hover {
    filter: grayscale(0%);
} */


/* pricing table */

td,
th {
    border: 1px solid #f7f7f7;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

table tr th {
    /* background-color: #a4161a !important; */
    text-align: center;
    color: white;
}

table tr td {
    font-size: 1.4rem;
}

table .btn {
    font-weight: bold;
    background-color: transparent;
    transition: .9s;
    border-color: #19243f;
    padding: 1rem 1.5rem;
    overflow: hidden;
    font-size: 1.5rem;
    color: #39812e;
}

table .btn:hover {
    background-color: #19243f;
    color: #39812e;
    letter-spacing: .05rem;

}


/* achievment section */

.achievement {
    background-image: url('../img/bg2.svg');
    background-position: center center;
    background-repeat: no-repeat;
    max-width: 100%;
    min-height: auto !important;
    background-size: contain;
}

.counter {
    background-color: #f9f9f9;
    padding: 20px 0;
    border-radius: 5px;
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #7B5FF1;
}

/* Our Technologies */
#templatemo-slide-tech img {
    height: 6rem;
    width: 8rem;
}
.technology {
    min-height: auto !important;
    color: var(--dark-light);
    margin-top: 6rem;
}

/* Add this CSS to your stylesheet or within a <style> tag in your HTML */
.fa-chevron-left, .fa-chevron-right{
    color: #ffffff !important;
}




/* testimonial section  */

.swiper {
    width: 80%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 1.4rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    padding: 2rem;
    transition: .8s;
}

.swiper .swiper-slide p {
    font-size: 1.4rem;
    text-align: justify;

}

.swiper .swiper-slide h1 {
    font-size: 1.8rem;

}
.swiper .swiper-slide p i{
    font-size: 3rem;
}
.swiper .swiper-slide h3 {
    font-size: 1.5rem;

}


.swiper .swiper-slide .card {
    /* border-color: #7B5FF1; */
    /* border-radius: 5%; */
    min-height: 45rem;
    box-shadow:  .3rem 1.5rem  2rem #beb5e0;;
}


#scrollToTopBtn {
    display: none;
    position: fixed;
    font-size: 4rem;
    bottom: 8rem;
    right: 4rem;
    z-index: 900;
    height: 5rem;
    line-height: 5rem;
    color: var(--dark-red);
    width: 5rem;
    text-align: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    /* background-image: url('../img/scroll_new.png'); */
    background-repeat: no-repeat;
    object-fit: cover;
}


/* //faq */

.faq{
    margin-top: -15rem;
}



.accordion-item {
    background-color: green;
    border: 1px solid #E0E0E0;
    border-radius: 8px 8px 8px 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.accordion-header {
    background-color: green;
    color: #FFFFFF;
    padding: 1.5rem;
    font-size: 1.8rem;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: .8rem;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: green;
}

.accordion-content {
    background-color: #FAFAFA;
    overflow: hidden;
    padding: 0 1.5rem;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    margin: 1.5rem 0;
    line-height: 1.5rem;
}

.icon {
    transition: transform 0.3s ease;
}

.active .icon {
    transform: rotate(45deg);
}





/* footer section */

.page-footer {
    background-image: url(../img/bg2.svg);
    /* padding: 2rem 0rem; */
    background-position: 100% 100%;
    /* animation: slideBackground 10s infinite; */
    margin-top: 5rem;
    /* Adjust animation duration and timing as needed */
}
/* .footer_list{
    font-size: 2.4rem;
} */

/* .page-footer h3{
    font-size: 1.8rem;
} */
.page-footer p{
    font-size: 1.4rem;
}
.footer-menu li a{
    font-size: 1.2rem;
}

/* @keyframes slideBackground {
    0% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
} */

.page-footer .ul_link a {
    color: #000;
    transition: .2s;
}

.page-footer ul li a:hover {
    color: #d81e1e;
    padding-left: .5rem;
}

.page-footer .ul_link h3 {
    margin-left: 1.8rem;
    color: #19243f;
}

.page-footer .social_icon {
    overflow: hidden;
}

.page-footer .social_icon a i {
    color: white;
    transition: all .4s;
}

.page-footer .social_icon a i:hover {
    border: 2px double #19243f;
    opacity: .9;
    transform: rotate(360deg);
    border-radius: 50%;
}


/* Pricacy policy */

.privacy_text p{
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .privacy_text  h3{
    font-size: 2.2rem;
    line-height: 2.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  .privacy_text {
    margin-top: 5rem;
    line-height: 2rem;
  }

/* terms and conditons */
.terms_and_conditions_text p{
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 1.5rem;
  }
  .terms_and_conditions_text h3{
    font-size: 2.2rem;
    line-height: 2.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  .terms_and_conditions_text{
    margin-top: 5rem;
    line-height: 2rem;
  }
/* refund policy  */

.refund_privacy_text p{
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 1.5rem;
  }
  .refund_privacy_text  h3{
    font-size: 2.2rem;
    line-height: 2.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  .refund_policy {
    margin-top: 5rem;
    line-height: 2rem;
  }

    /* payment  */
    .payment div{
        margin-top: 2rem;
        height: auto;
        max-width: 100%;
    }
    .payment img{
       height: 100%;
       width: 100%;
      }


  .contact_us .card .fa-mobile-screen-button, .fa-envelope, .fa-location-dot{
    font-size: 5rem;
    color: var(--primary-color);
    padding: .5rem 0rem;
    margin-bottom: 1rem;
  }

  .contact_us .card .card_body p{
    font-size: 1.5rem;
    letter-spacing: .1rem;
  }

  .contact_us .card{
    box-shadow: .1rem .2rem .2rem var(--primary-color);
    border-radius: 1rem;
    overflow: hidden;
    border: none;
    transition: all 1s;
    min-height: 23rem;
    padding: 0.5rem;
  }

  .contact_us .card:hover{
    transform: scale(1.07);
  }

  .contact{
    margin-top: 10rem;
  }
  .contact label{
    font-size: 1.5rem;
  }

  .partner img{
    scale: .8;
  }

  .contact button{
    padding: .8rem 2.5rem;
    border: 1px solid #7B5FF1;
    margin-top: 1rem;
    position: relative;
    font-size: 1.4rem;
    background: transparent;
    color: #3a1f1f;
    z-index: 1000;
   }

   .contact button::before{
     content: "";
     position: absolute;
     height: 100%;
     width: 0;
     left: 0;
     bottom: 0;
     transition: all 1s ease-in-out;
    }

    .contact button:hover::before{
     width: 100%;
     background-color:#7B5FF1;
     color: #f7f7f7;
     z-index: -1000;
     transition: all 1s ease-in-out;
    }
    .contact_form{
      box-shadow: .1rem .2rem .2rem var(--primary-color);
      max-width: auto;
      min-height: 35rem;

    }

    .map_area{
      height: 35rem;
      max-width: auto;
      background: #fff;
      box-shadow: .1rem .2rem .2rem var(--primary-color);
      /* box-shadow: rgb(0,0,0,0.35) 0 5px 15px; */
    }
    .map_area iframe{
      height: 100%;
      width: 100%;
      border: none;
    }



    .touch_24{
        position: fixed;
        bottom: 12rem;
        right: 1rem;
        height: 90px;
        width: 160px;
        z-index: 5000;
        cursor: pointer;
      }

      .touch_24 img{
        object-fit: contain;
        height: 100%;
        width: 100%;
        }


/* media queries */



@media screen and (max-width: 3500px) {

    .hero .wrapper {
        gap: 2rem;
        margin-top: 2%;
    }

}


@media screen and (max-width: 2200px) {

    .hero .wrapper {
        gap: 2rem;
        margin-top: 2%;
    }

    .faq{
        margin-top: 2rem;
    }

    .total_head{
        margin-bottom: 2.5rem;
    }

    .technology {
        margin-top: 2rem;
    }

    .page-footer{
        margin-top: 2rem;
    }

    .diffentent_from_others .container {
        margin-top: 2rem;

    }
}





@media screen and (max-width: 1399px) {
    html {
        font-size: 56%;
    }

    .hero .wrapper {
        gap: 2rem;
        margin-top: 2%;
    }


    .faq{
        margin-top: 20rem;
    }

    .total_head{
        margin-bottom: 2.5rem;
    }

    .technology {
        margin-top: 2rem;
    }

    .page-footer{
        margin-top: 2rem;
    }

    .about_us {
        margin-bottom: 5rem;

    }
}


@media screen and (max-width: 1199px) {

    html {
        font-size: 56%;
    }

    .hero .wrapper {
        flex-wrap: wrap-reverse;
        gap: 1rem;
        margin-top: 3%;
    }

    .hero .wrapper .hero_content {
        flex: 1 1 35rem;
    }

    .hero .wrapper .hero_img {
        flex: 1 1 35rem;
    }

    .hero .wrapper .hero_img img {
        scale: .7;
    }

    .hero .wrapper .hero_content h2 {
        font-size: 3.5rem;
        color: var(--white);
        letter-spacing: .1rem;
    }

    .hero .wrapper .hero_content p {
        font-size: 1.4rem;
        color: var(--white);
        letter-spacing: .1rem;
        margin: 1.4rem 0rem;
    }


    .total_head{
        margin-bottom: 3rem;
    }


    .page-footer{
        text-align: center;
    }

    .faq{
        margin-top: 3rem;
    }

    .technology {
        margin-top: 3rem;
    }

    .page-footer{
        margin-top: 3rem;
    }


    .diffentent_from_others .container {
        margin-top: 3rem;

    }
}

/* @media screen and (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .diffentent_from_others .container{
        margin-top: 0;
    }

    .hero .wrapper {
        gap: 1rem;
        margin-top: 2%;
    }

    .hero .wrapper .hero_img {
        flex: 1 1 35rem;
        text-align: center;
    }

    .hero {
        height: 100vh;
    }


    .hero .wrapper .hero_img img {
        scale: .8;
    }

    .sub_heading {
        margin-top: 10rem;
    }

    .pricing {
        margin-top: -10rem;
    }


    .clients {
        margin-top: 15rem;
    }

    .total_head{
        margin-bottom: 3rem;
    }


    .page-footer{
        text-align: center;
    }

    .faq{
        margin-top: 2rem;
    }

    .technology {
        margin-top: 2rem;
    }

    .page-footer{
        margin-top: 2rem;
    }


    .diffentent_from_others .container {
        margin-top: 2rem;

    }

} */


@media screen and (max-width: 991px) {

    section{
        max-width: 100%;
        height: auto;
    }
    html {
        font-size: 55%;
    }

    header {
        padding: 1rem 2%;
    }
    body{
        overflow-x: hidden;
    }

    .hero {
        padding: 1rem 2%;
    }
    .heading h1{
        font-size: 2rem;
    }
    .mod_color{
        color:var(--dark-red);
        font-size:6rem;
        font-weight: 500;
   }

   .contact_us .card {
    margin-bottom: 3rem;
  }
  .contact_form{
    margin-top: 3rem;
  }


    header .navigation {
        position: absolute;
        top: 0;
        left: 0%;
        background-color: var(--white);
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        clip-path: circle(0.0% at 100% 0);
        transition: clip-path .7s ease;
    }

    header .navigation.active {
        clip-path: circle(141.4% at 100% 0);
    }

    header .navigation a {
        display: block;
        color: var(--dark);
        font-weight: 700;
        font-size: 2.4rem;
        margin-right: 1rem;
        padding: 1rem 0rem;
    }

    header .logo {
        z-index: 1200;
    }

    header .icon {
        display: initial;
        z-index: 1200;
    }

    header .icon i {
        font-size: 2.5rem;
        /* filter: invert(); */
    }

    header .icon i.icon_active {
        color: #000;
    }


    .pricing table h1{
        font-size: 1rem;
    }
    .pricing table h4{
        font-size: 1.5rem;
    }
    .page-footer{
        text-align: center;
    }

    .faq{
        margin-top: 3rem;
    }

    .technology {
        margin-top: 3rem;
    }

    .page-footer{
        margin-top: 3rem;
    }


    .diffentent_from_others {
        margin-top: 3rem;
    }

    .touch_24{
        position: fixed;
        bottom: 16rem;
        right: 1rem;
        height: 70px;
        width: 140px;
        z-index: 5000;
        cursor: pointer;
      }

      .touch_24 img{
        object-fit: contain;
        height: 100%;
        width: 100%;
        }

}



@media screen and (max-width: 576px) {

    body {
        overflow-x: hidden;
    }

    header {
        padding: 1rem 2%;
    }

    .mod_color{
        color:var(--dark-red);
        font-size:5rem;
        font-weight: 500;
   }


    header .navigation.active {
        clip-path: circle(141.4% at 100% 0);
    }


    .pricing table h1{
        font-size: 1rem;
    }
    .pricing table h4{
        font-size: 1.5rem;
    }
    .page-footer{
        text-align: center;
    }


    .faq{
        margin-top: 3rem;
    }

    .technology {
        margin-top: 3rem;
    }

    .page-footer{
        margin-top: 3rem;
    }


    .diffentent_from_others {
        margin-top: 3rem;
    }
}
