@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
    to   { opacity: 1; }
}

.slide01 {
 animation: .8s ease-out 0s 1 slideInFromRight;
}

.slide02 {
 animation: 1s ease-out 0s 1 slideInFromRight;

}

.fade {
 animation: 1s ease-out 0s 1 fadeIn;
 animation-delay: 1s;
 animation-fill-mode: forwards;

}

@media only screen and (max-width: 645px) {
.iconbox {
width:auto!important;
	}
.icon {
left:-120px!important;
width:80px!important;
top:70px!important;
	}
.icon2 {
left:-120px!important;
width:60px!important;
top:15px!important;
	}
	.mob-float {
position: relative;
top: -100px;
}

}

