@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*===============================================================================================================
/*STYLE FOR COMMON PARASWIFT BUTTON IN THEME
================================================================================================================*/
.paraswift-btn-one {
    color: #222;
    border-radius: 0px !important;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #31302B;
    -webkit-transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    transition: all ease 0.6s;
    border-radius: 4px !important;
    background: #fff;
    padding: 15px 35px;
    margin-top: 20px;
}
.paraswift-btn-one:hover{
   /* box-shadow: inset 200px 0 0 0 #fff;*/
    color: #fff;
    background:rgba(0, 0, 0, 0.7);
}

.logo-section{
   -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
        
.logo-section.sticky {
    position: fixed;
    font-size: 24px;
    line-height: 48px;
    height: 70px; 
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    text-align: left;
    opacity: 0.92;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.logo-section.sticky img{
   height: 45px;
}
.logo-section.sticky ul#para-nav li{
  line-height: 70px;
}
.logo-section.sticky ul#para-nav li a{
  color:#fff;
}
.logo-section.sticky ul#para-nav li li{
  line-height: 30px;
}
a.back-to-top {
  display: none;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  background: #27AE61 url("../images/up-arrow.png") no-repeat center 43%;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
a:hover.back-to-top {
  background-color: #000;
}
