/* bof animation */
@keyframes slideLeft {
    0% {
        transform: translateX(12px);
        opacity: 0;
   }
    100% {
        transform: translateX(0);
        opacity: 1;
   }
  }
  @keyframes slideRight {
    0% {
        transform: translateX(-12px);
        opacity: 0;
   }
    100% {
        transform: translateX(0);
        opacity: 1;
   }
  }
  @keyframes slideUp {
    0% {
        transform: translateY(12px);
        opacity: 0;
   }
    100% {
        transform: translateY(0);
        opacity: 1;
   }
  }
  @keyframes slideDown {
    0% {
        transform: translateY(-12px);
        opacity: 0;
   }
    100% {
        transform: translateY(0);
        opacity: 1;
   }
  }
/* eof animation */
/* bof flex */
.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}
.flex-wrap-center{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.flex-s-between{
    justify-content: space-between;
}
.flex-end{
    justify-content: end;
}
.flex-align-end{
    align-items: end;
}
.flex-center{
	justify-content: center;
}
.flex-valign-center{
    margin-top: auto;
    margin-bottom: auto;
}
.flex-valign-end{
    align-content: flex-end;
}
.direction-column{
    flex-direction: column;
}
.column-gap-base{
    column-gap:8px;
}
.row-gap-base{
    row-gap:8px;
}
.flex-img-cover{
    flex: 1 1 auto;
    object-fit: cover;
}
/* eof flex */
/* bof auto margin for flex */
.margin-t-auto{
    margin-top: auto;
}
.margin-b-auto{
    margin-bottom: auto;
}
.margin-l-auto{
    margin-left: auto;
}
.margin-r-auto{
    margin-right: auto;
}
/* eof auto margin for flex */
.height-100{
    height:100%;
}
.width-100{
    width:100%;
}
/* bof relative/absolute */
.relative{
    position:relative;
}
.absolute{
    position:absolute;
}
.absolute-img{
    object-fit: cover;
    object-position: center center;
    width: 100%;
    left:0;
    right:0;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.overflow-hidden{
    overflow: hidden;
}
/* eof relative/absolute */
.no-decoration,
.no-decoration:hover, 
.no-decoration:focus{
    text-decoration: none;
}
.padding-base{
    padding: 15px;
}
.border-base{
    border-width: 1px;
    border-style: solid;
}
.max-heigh-base{
    max-height:80vh;
    overflow: hidden;
    overflow-y: scroll;
}
@media(max-width:767px){
	.hero-padding{
		padding-top: 25px;
		padding-bottom: 25px;
	}
    .absolute-img-xs{
        object-fit: cover;
        object-position: center center;
        height: 100%;
        width: 100%;
        left:0;
        right:0;
        -webkit-user-drag: none;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
    }
}
@media(min-width:768px){
	.hero-padding{
		padding-top: 80px;
		padding-bottom: 80px;
	}
}
