html {
  scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
  }
  :root {
    --animate-duration: 800ms;
    --animate-delay: 0.9s;
  }
  .section_heading {
    overflow: hidden;
    text-align: center;
    font-weight: 500;
  }
  .section_heading_black{
    color: #000;
  }
  .section_heading_white{
    color: #fff;
  }
  .section_heading:before,
  .section_heading:after {
    background-color: #3EB896;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 10%;
  }
  
  .section_heading:before {
    right: 0.5em;
    margin-left: -50%;
  }
  
  .section_heading:after {
    left: 0.5em;
    margin-right: -50%;
  }

/* Section info */
.section_info_text{
    font-size: 14px;
    color: #606060;
    line-height: 26px;
    text-align: justify;
}
.section_info{
    margin-top: 3em;
    padding: 1em;
}
.section_space{
  margin-top: 2em;
  margin-bottom: 2em;
}

/* Section button */
.section_btn{
    background-color: #000;
    color: #fff;
    font-weight: normal;
    padding: 0.7em 2.5em;
    border-radius: 5px;
    font-size: 16px;
    width: auto;
    text-align: center;
}
.section_btn:hover,
.section_btn:active{
    color: #fff;
    background-color: #159671;
    border: 1px solid #3EB896;
}
/* text bold */
.text-bold{
  font-weight: 600;
}


/* Animation Effect */

  .pulse:hover {
    animation-name: pulse;
    animation-timing-function: ease;
}
@keyframes pulse {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-50px); }
  100% { transform: translateY(0); }
}
.child {
  align-self: flex-end;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}