/*
Extension Name: Customer Group Price
Author URL: https://www.opencart.com/index.php?route=marketplace/extension&filter_member=ExtensionStudio
Author Name: ExtensionStudio
Website URL: https://www.extensionstudio.net
Version: 1.0
*/
body{
	margin:0;
  font-family: 'Varela Round', sans-serif;
}
a:hover {
  text-decoration: none;
}
h1{
  margin: 0;
}
.logo .img-responsive{
  display: inline-block;
  width: 150px;
}
.navs{
  margin: 10px 0 40px;
}
.navs li a{
  color: #fff;
  font-size: 14px;
  padding: 12px 30px;
  background-color: rgba(0, 0, 0, .3);
  border-radius: 25px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  display: block;
}
.navs li a:hover{
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
}
.navs li a.nav-link:hover{
  background-color: rgba(255, 255, 255, .5);
  color: #fff;
}
.navs li a.nav-link{
  background-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.demo-portfolio{
  padding: 70px 0 60px 0;
  background-color: #4b5564;
}
.demo-portfolio h2{
  margin-bottom: 30px;
  margin-top: 0;
  color: #fff;
}
.demo-portfolio .bulk-update{
  background-color: #eb6c1d;
  padding: 15px 20px;
  border-radius: 7px 0px 0px 7px;
  color: #fff;
  float: right;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.demo-portfolio .bulk-update:hover{
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
}
.demo-portfolio .bulk-update:focus{
  outline: none;
  text-decoration: none;
  background-color: #23527c;
  color: #fff;
}
.demo-portfolio .popup-gallery{
  border: 10px solid #ccc;
  border-radius: 7px;
  margin-bottom: 30px;
  position: relative;
}
.demo-portfolio .popup-gallery:hover .hover-link{
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.demo-portfolio .popup-gallery .hover-link{
  background-color: rgba(0,0,0,0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: table;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.50s, opacity 0.50s linear;
}
.demo-portfolio .popup-gallery .hover-link a{
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.demo-portfolio .popup-gallery .hover-link a i{
  color: #fff;
  font-size: 28px;
}
.demo-portfolio .popup-gallery .popup-tag{
  background-color: #cacaca;
  padding: 1px 20px 12px 20px;
  text-align: center;
}
.demo-portfolio .popup-gallery .popup-tag h3 a{
  font-size: 19px;
  font-weight: 500;
  color: #000;
}
.demo-portfolio .bulk-button i{
  float: left;
  margin-top: 10px;
  margin-right: 10px;
}
footer p{
  margin: 20px 0;
}
.fa-arrow-right{
  background-image: url('../../lib/images/decree.png');
  width: 32px;
  height: 32px;
}
.fa-arrow-right:before{
  content: '' !important;
}
/* right bounce */
@-webkit-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
@-moz-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}
@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
/* /right bounce */


/* assign bounce */
.fa-arrow-right {
  -webkit-animation: bounceRight 2s infinite;
  animation: bounceRight 2s infinite;
  float:right;
}
@media(min-width: 768px){
  .demo-portfolio .bulk-button{
    position: fixed;
    right: 0;
    z-index: 9;
  }
}
@media(max-width: 767px){
  .navs li a{
    font-size: 12px;
    padding: 8px 14px;
  }
  .demo-portfolio .bulk-button{
    margin-bottom: 30px;
  }
}