/*
 * © Bugaev Ivan
 * This code is protected by copyright.
*/

body {
  padding: 118px 0px 0px 0px;
}
@media (max-width:991px){
  body {
    padding: 108px 0px 0px 0px;
  }
}

.biv-info {
	background-size: cover;
	background-position: center center;
	background-image: url(../img/carimbos-em-promocao-no-rio-de-janeiro.jpg);
}
.biv-info-content {
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0% 0%;
  padding: 90px 15px 90px 15px;
  text-align: center;
}
.biv-info-text {
  display: inline-block;
  width: 100%;
  padding: 30px 30px 30px 30px;
}
.biv-info-text-title {
  margin-bottom: 5px;
}
.biv-info-text-title h1 {
  margin: 0px;
  padding: 0px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
}
.biv-info-text-desc {
  font-size: 22px;
  line-height: 30px;
  color: #e4e4e4;
}
@media (max-width:991px){
  .biv-info-text-title h1 {
    font-size: 26px;
    line-height: 34px;
  }
  .biv-info-text-desc {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width:992px){
  .biv-info-text {
    max-width: 650px;
  }
}

/* Recent projects */

.biv-projects {
  background-color: #fff;
}
.biv-projects-content {
  padding: 90px 15px 50px 15px;
}
.biv-projects-item {
  cursor: pointer;
  position: relative;
  margin-bottom: 30px;
}
.biv-projects-item-img {
  display: inline-block;
  width: 100%;
  background-position: center center;
  background-size: cover;
  box-shadow: 0px 0px 5px #aaa;
  position: relative;
  overflow: hidden;
  z-index: 9;
  transition: 0.3s linear;
}
.biv-projects-item-img::before {
  display: inline-block;
  position: absolute;
  top: 0%;
  left: -50%;
  content: " ";
  background: rgba(0, 0, 0, 0.3) none repeat scroll 0% 0%;
  width: 50%;
  height: 100%;
  transition: 0.3s linear;
  opacity: 1;
  z-index: -1;
}
.biv-projects-item:hover .biv-projects-item-img:hover::before {
  top: 0px;
  left: 0px;
  width: 50%;
  height: 100%;
  opacity: 1;
}
.biv-projects-item-img::after {
  display: inline-block;
  position: absolute;
  top: 0%;
  right: -50%;
  content: " ";
  background: rgba(0, 0, 0, 0.3) none repeat scroll 0% 0%;
  width: 50%;
  height: 100%;
  transition: 0.3s linear;
  opacity: 1;
  z-index: -2;
}
.biv-projects-item:hover .biv-projects-item-img::after {
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  opacity: 1;
}
.biv-projects-item-icon::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f0c1";
  display: inline-block;
  text-align: center;
  background-color: #dc6f2b;
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding-top: 12px;
  z-index: 999;
  transition: 0.6s linear;
}
