 
/*About page media query*/

 @media only screen and (max-width: 767px) {
    .tp-sales-area {
        margin-top: 0;
    }
    .tp-sales-section-box h2 {
        font-size: 28px; /* Smaller heading size for mobile */
    }
    .tp-sales-section-box p {
        font-size: 14px; /* Smaller paragraph size for mobile */
    }
    .tp-sales-img-wrapper {
        text-align: center; /* Center the image on mobile */
    }
    .tp-sales-main-thumb dotlottie-player  {
        margin-right: 20px; /* Reset the margin for mobile */
        width: 100%; /* Make the image responsive */
        height: auto;
        max-width: 220px; /* Limit the width for mobile */
    }
#about{
    margin-top:100px;
}
  #about {
                                    margin-top: 160px;
                                }

                                .ab-company-section-space {
                                    margin-top: -400px;
                                }
   .ab-company-section-box {
                                    margin-top: 240px;
                                }

                                .tp-plan-section-box {
                                    margin-top: 150px;
                                    padding-top: 150px;
                                }

                                .quote {
                                    line-height: 20px;
                                }

                                .tp-cta-bg {
                                    height: 300px;
                                }
                               
                            #text-company{
                                display:none;
                            }   

      .quote {
        height: auto; /* Allow height to adjust based on content */
        margin-top: 0; /* Adjust margin for mobile */
        background-size: cover; /* Keep background cover for mobile */
        padding: 20px; /* Add some padding to the section */
        display:none;
    }
    .quote p {
        
        padding: 30px 15px; /* Reduce padding around the text */
        font-size: 22px; /* Decrease font size for better fit */
        line-height: 12px; /* Adjust line height for readability */
        
    }
    #our-culture{
        margin-top:-165px;
    }
     .tp-cta-content {
        height: 100%; /* Allow height to adjust based on content */
        margin-top: -10px; /* Remove negative margin for mobile */
        padding: 0px; /* Add padding to the content */
    }
    .tp-cta-content h3 {
        font-size: 15px; /* Reduce heading font size for mobile */
    }
    .tp-cta-content p {
        font-size: 14px; /* Decrease paragraph font size for better fit */
        margin-top: 0px; /* Slightly adjust margin */
    }
}

/*home page wave*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}



.footer1 {
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}



.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave1 {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave1#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave1#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave1#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}