p{
  text-indent: 30px !important;
  margin-bottom: 10px !important;
}
.web-view {
  display: block;
}
.mobile-view {
  display: none;
}
.whatsapp-button{
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 60px;
    height: 60px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    animation: effect 5s infinite ease-in;
}
.whatsapp-button:hover , .whatsapp-button:focus{
   color:#fff !important;
}
@keyframes effect {
    20%, 100% {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    0%, 10%{
        width: 55px;
        height: 55px;
        font-size: 35px;
    }
    5%{
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}
.padd-class{
  padding: 0px 5px !important;
}
.isection {
  height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
}
.irow {
  display: flex;
  flex-wrap: wrap;
}
.icolumn {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}
.icard {
  /* width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #82CD47 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s; */
}
.ih3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
}
.ip {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.iicon-wrapper {
  background-color: #82CD47;
  position: relative;
  /* margin: auto; */
  margin-right: 20px;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
/* .icard:hover {
  background-position: 0 100%;
}
.icard:hover .icon-wrapper {
  background-color: #ffffff;
  color: #2c7bfe;
} */
.icard:hover h3 {
  /* color: #ffffff; */
}
.icard:hover p {
  /* color: #f0f0f0; */
}

@media screen and (min-width: 768px) {
  .isection {
    padding: 0 2em;
  }
  .icolumn {
    flex: 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .isection {
    padding: 1em 3em;
  }
  .icolumn {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}


/*###############3*/


.services{
  width:100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.s-heading{
  text-align:center;
}
.s-heading h1{
  color:#82CD47;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0px;
}
.s-heading p{
  color: rgba(87,105,117,0.60);
  font-size: 1rem;
  margin: 5px;
  text-align: center;
}
.s-box-container{
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s-box{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width:300px;
  padding: 20px 25px;
  /* height: 400px; */
  box-sizing: border-box;
  margin: 0 30px;
  position: relative;
  background:#fff;
}
.s-box img{
  height: 75px;
}
.s-box h1{
  color:#82CD47;
  letter-spacing: 1px;
  font-size: 1.5rem;
  margin-bottom: 8px;
  
}
.s-box p{
  color: rgba(87,105,117,0.90);
  text-align: center;
}
.s-btn{
  width: 140px;
  height: 40px;
  border-radius: 20px;
  border:1px solid rgba(74,144,226,0.50);
  display: flex;
  justify-content: center;
  align-items: center;
  color:#82CD47;
  margin-top:10px; 
}
.bar{
  width: 100px;
  height: 6px;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%);
  background-color:#82CD47; 
  border-radius: 0px 0px 10px 10px;
  display: none;
  animation: bar 0.5s;
}
.s-box:hover{
  box-shadow: 2px 2px 30px rgba(0,0,0,0.08);
  transition: all ease 0.3s;
}
.s-btn:hover{
  background-color:#82CD47;
  border: 1px solid #82CD47;
  color:#FFFFFF;
  transition: all ease 0.3s;
}
.s-box:hover .bar{
  display: block;
}
@keyframes bar{
  0%{
    width:0px;
  }
  100%{
    width:100px;
  }
}
@media(max-width:1050px){
  .s-box-container{
    flex-wrap: wrap;
    
  } 
  .services{
    height: auto;
  }
  .s-heading{
    margin: 15px;
  }
  .s-box{
    flex-grow: 1;
  }
  
}