@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'poppins';
  border: 0;
  font-size: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  cursor: default;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

:root {
  --red: #fe4d46;
  --red1: #ef453f;
  --red2: #fff3f2;
  --white: #fff;
}

.logo-img {
  width: 300px;
}

.btn {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 10px;
  transition: color 0.5s;
  border: 2px solid var(--red);
}

.btn-rev {
  background: var(--white);
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 10px;
  font-size: 18px;
}

.btn:hover {
  border: 2px solid var(--red);
  border-radius: 10px;
  color: var(--red);
  background-color: var(--white);
}

input::placeholder {
  color: #000 !important;
}


.modal-sm {
  max-width: 400px !important;
}

.banner-content {
  text-align: center;
  color: var(--white);
  position: relative;

}

.sec-statistics {
  border: 1px solid var(--red);
  border-radius: 10px;
}

.counter {
  width: 250px;
  text-align: center;
  background: #fff;
}


.result-number {
  background-color: #fff;
  box-shadow: 0px 0px 10px var(--red);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-control-prev {
  position: static;
  opacity: 1;
  display: flex;
  justify-content: end;
  margin: 10px;
}

.carousel-control-next {
  position: static;
  display: flex;
  justify-content: start;
  opacity: 1;
  margin: 10px;
}

.carousel-control-prev svg:hover {
  background: #fff !important;
  cursor: pointer;
}

.carousel-control-next svg:hover {
  background: #fff !important;
  cursor: pointer;

}

.carousel-indicators button {
  background-color: var(--red) !important;
}

.carousel-indicators .active {
  background-color: var(--red);
}


#contact-button {
  position: fixed;
  bottom: 0px;
  z-index: 1000;
  width: 100%;
}

#contact-button p {
  width: 100%;
  height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--red);
  color: #fff;
}

.accordion-header button {
  color: var(--red);
}

.accordion-button:focus {
  color: var(--red);
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: none;
}

.counter-number {
  font-size: 28px;
  font-weight: 600;
  color: var(--red);
}

.counter-suffix {
  font-size: 25px;
  font-weight: 600;
  color: var(--red);

}

.benefit .owl-stage-outer {
  padding-top: 30px;
}

.benefit .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-card {
  border: 1px solid var(--red);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  width: 300px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
  margin-left: 20px;
  margin-right: 20px;
}

.owl-dots {
  display: none;
}

.benefit-card:hover {
  transform: scale(1.05);
}

.benefit-card h4 {
  color: var(--red);
}

.choose-card {
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--red);
}

.choose-card:hover{
box-shadow: 0 0 7px 0px var(--red);
}


.service-card {
  /* box-shadow: 0px 0px 10px var(--red); */
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px -9px 40px -20px rgba(0, 0, 0, 1),
    25px 0px 20px -20px rgba(0, 0, 0, 0.45),
    6px 25px 20px -20px rgba(0, 0, 0, 0.45),
    -25px 0px 20px -20px rgba(0, 0, 0, 0.45);
}


.service-card h4 {
  color: var(--red);
}


.zoom-in-out-box {

  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1.2);
  }

  100% {
    transform: scale(1, 1);
  }
}

/* pulse button */
.pulse-button {
  cursor: pointer;
  animation: pulse 2s infinite;
  /* Applying the pulse animation */
}

@keyframes pulse {
  0% {
    transform: scale(1);
    /* Initial scale */
  }

  50% {
    transform: scale(1.2);
    /* Scale up to 1.2x at halfway */
  }

  100% {
    transform: scale(1);
    /* Return to original scale */
  }
}

/* pulse button */

/* animated border */

.animated-border {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.animated-border::before,
.animated-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--red);
  transition: width 0.3s ease;

}

.animated-border::before {
  left: 0;
}

.animated-border::after {
  right: 0;
}

.animated-border:hover::before,
.animated-border:hover::after {
  width: 50%;
}



/* animated border */

@media only screen and (max-width: 600px) {

  .logo-img {
    width: 170px;
  }

  .banner h1 {
    font-size: 28px;
  }

  .result-number {
    background-color: #fff;
    box-shadow: 0px 0px 10px var(--red);
    border-radius: 50%;
    width: 85px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

}


  /* ***************scroll animation****************** */

    #main {
      gap: 10vh;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 100vh;
      background-color: var(--red2);
  }
  
  .cards {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      height: 80vh;
      background-position: center;
      background-size: cover;
      background: #fff;
      border-radius: 20px;
  }
  
  #card-one {
      top: 130%;
      /* background-image: url(ONE.png); */
  }
  
  #card-two {
      top: 230%;
      /* background-image: url(two.png); */
  }
  
  #card-three {
      top: 250%;
      /* background-image: url(three.png); */
  }
  #card-four {
      top: 270%;
      /* background-image: url(two.png); */
  }
  
  .text{
      position: absolute;
      width: 100%;
      top: 25%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  /* .text-img{
      width: 5vw;
      height: 5vw;
      background-image: url(Blue\ Modern\ G\ Letter\ Technology\ Logo\ Design\ \(4\).png);
      background-size: cover;
      background-position: center;
  } */
  
  .text h1{
      /*font-size: 3vw;*/
      color: #fff;
      text-align: center;
  }
  
  .text p{
      /*font-size: 1vw;*/
      color: rgb(126, 126, 126);
      text-align: center;
  }
