/*  vl custom project css 
------------------------------------------*/
/* starting for sass includes
------------------------------------------*/
/* variables for files
------------------------------------------*/
/* globals
------------------------------------------*/
.no-pointer > a:hover {
  cursor: default !important;
}

.half-col {
  display: inline-block;
  vertical-align: top;
  width: 49.5%;
  min-width: 300px;
  margin: 30px 0;
  padding: 15px;
}

.test {
  border: 1px solid blue;
}

.vl-trans {
  position: relative;
  opacity: 1;
  -webkit-transition: all 1000ms ease-in-out;
  -moz-transition: all 1000ms ease-in-out;
  -ms-transition: all 1000ms ease-in-out;
  -o-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.trans-left,
.trans-right,
.trans-top,
.trans-bottom {
  opacity: 0;
}

.trans-left {
  left: -50px;
}

.trans-right {
  right: -50px;
}

.trans-top {
  top: -50px;
}

.trans-bottom {
  bottom: -50px;
}
