/* animated elements */
.animateblock {

    opacity: 0;
    -webkit-transition: all 0.55s linear;
    -moz-transition: all 0.55s linear;
    transition: all 0.55s linear;
}

.animateblock.animated {
    opacity: 1;
}

/* animation transition styles */
.animateblock.left {
    margin-left: -2%;
}
.animateblock.left.animated {
    margin-left: 12%;
}

.animateblock.right {

    margin-left: 100%;
}
.animateblock.right.animated {
    margin-left: 70%;
}

.animateblock.top {


    margin-top: -25px;
}
.animateblock.top.animated {
    margin-top: 0px;
}

.animateblock.btm {

    margin-top: 25px;
}
.animateblock.btm.animated {
    margin-top: 0;
}

.animateblock.centerleft {

    margin-right: -10%;
}
.animateblock.centerleft.animated {
    margin-right: 0;
}

.animateblock.centerright {


    margin-left: -10%;
}
.animateblock.centerright.animated {
    margin-left: 0;
}

.animateblock.center {
    margin-left: 2%;
}
.animateblock.center.animated {
    margin-left: 42%;
}

.animateblock.size {

    width: 10%;
}
.animateblock.size.animated {

}
.animateblock.size img {
    max-width: 100%;
  
}