
.padding-jg{
  width: 80%;
  margin: 0 auto;
}
.alignment{
	text-align=left
}

.button-style a {
  background-color:00BDB6;
  color:#133844;
  padding: 12px 12px 12px 12px; 
  font-family: 'Open Sans';
  font-size:18px; 
  font-weight: 700; 
  text-align: center;
  text-decoration: none; 
  border-radius:6px;
  display:inline-block;
}

.button-style a:hover{
  background-color:#133844; 
  color:#ffffff;
  text-decoration: none;
}

.button-style h3 {
  color: #133844;
  font-size: 18px;
  font-family: 'Open Sans';
  font-weight: 700;
  line-height: 1.3;
}

.button-style p {
  font-family: 'Open Sans';
  font-size: 14px;
  line-height: 1.3;
}

/* -------------------------- Animation css ------------------------ */
.animation-element {
  opacity: 0;
  position: relative;
}

.animation-element.slide-up {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transform: translate3d(0px, 100px, 0px); /* Change the Y value to move from down to up */
  -webkit-transform: translate3d(0px, 100px, 0px); /* Change the Y value to move from down to up */
  -o-transform: translate(0px, 100px); /* Change the Y value to move from down to up */
  -ms-transform: translate(0px, 100px); /* Change the Y value to move from down to up */
  transform: translate3d(0px, 100px, 0px);
}


.animation-element.slide-up.in-view{
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

