.loader-con{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #f7ffff;
}
.loader-con .loader-img{
    position: absolute;
    top: calc(50% - 50px);
    right: calc(50% - 50px);
    width: 100px;
    padding-top: 100px;
    background-image: url("../images/logo.png");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation: scaleAnimation 2.5s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: scaleAnimation 2.5s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

@-webkit-keyframes scaleAnimation {
    0%, 80%, 100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    } 30%, 50% {
          -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
      }
}

@keyframes scaleAnimation {
    0%, 80%, 100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    } 30%, 50% {
          -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
      }
}