/* ---------------------------------------------------- */
/* Beta CSS Framework 0.3.5 October 2018 By Hemin Satya */
/* ---------------------------------------------------- */
/*
 Slideshow
 */
/* Slideshow Container */
.slide-container {
    width: auto;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    direction: ltr;
}
.slide-items {
    /*opacity: 0;*/
    /*visibility: none;*/
    background: rgba(0,0,0,0);
}
.slide-items .slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 1;
}
.slide-items.current .slide-image {
    z-index: 2;
}

/* Slideshow Preview/Next */
.slide-prev,
.slide-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    width: 50px;
    height: 67px;
    line-height: 67px;
    text-align: center;
    color: rgba(255,255,255,0.87);
    font-size: 24px;
    background: transparent;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.15s;
    z-index: 3;
    opacity: 0;
}
.slide-prev i:not(.slide-buttom-span-prev) {
    margin-left: -4px;
}
.slide-next i:not(.slide-buttom-span-next) {
    margin-right: -4px;
}
.slide-container:hover .slide-prev,
.slide-container:hover .slide-next {
    color: rgba(255,255,255,0.87);
    background: rgba(0, 0, 0, 0.24);
    opacity: 1;
}
.slide-container .slide-prev:hover,
.slide-container .slide-next:hover {
    background: rgba(0, 0, 0, 0.75);
    color: rgba(255,255,255,0.93);
}
.slide-next {
    right: 0;
        transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
}
.slide-prev {
    left: 0;
        transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
}

.slide-buttom-span-prev:before, .slide-buttom-span-next:before {
    display: block;
    text-align: center;
    line-height: 0!important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    -ms-transform: translate(-50%,-50%) rotate(-45deg);
    font-size: 110%;    
}

.slide-buttom-span-prev:before {
    margin-left: -7px;
    margin-top: 5px;
}
.slide-buttom-span-next:before {
   margin-left: 5px;
   margin-top: -7px;
}


/* Conter */
.slide-counter {
    font-size: 12px;
    padding: 6px 12px;
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.12);
    color: rgba(255,255,255,0.67);
    z-index: 3;
}

/* Download */
.slide-download {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3; 
}
.slide-download i {
    font-weight: 300;
    font-size: 28px;
    color: rgba(0,0,0,0.24);
    text-shadow: 0 0 10px rgba(255,255,255,0.12);
    transition: all 0.15s ease-in-out;
}
.slide-download i:hover {
    color: rgba(0,0,0,0.67);
}

/* caption */
.slide-caption {
    position: absolute;
    bottom: 15px;
    padding: 12px 18px;
    left: 15px;
    background: rgba(0,0,0,0.75);
    color: rgba(255,255,255,0.87);
    z-index: 3;
    font-size: 16px;
    line-height: 1;
}
.slide-caption:empty {
    display: none!important;
}

/* dots */
.dots-container {
    width: auto;
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 3;
    margin: 0;
    padding: 0;
    list-style: none;
}
.slide-dots {
    padding: 0 5px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
} 
.slide-dots a {
    display: inline-block;
    width:6px;
    height: 6px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    margin: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.slide-dots:hover a, .slide-dots.current a {
    background: rgba(0,0,0,0.67);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.33);
}

/* Slideshow progress bar */
.slide-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: rgba(0,0,0,0.17);
    box-shadow: -2px 1px 5px rgba(255,255,255,0.2);
    z-index: 3;
}

/*
 Light skin
 */
.slide-light .slide-prev,
.slide-light .slide-next {
    color: rgba(0,0,0,0.67);
}

.slide-light .slide-container:hover .slide-prev,
.slide-light .slide-container:hover .slide-next {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(0,0,0,0.67);
}

.slide-light .slide-container .slide-prev:hover,
.slide-light .slide-container .slide-next:hover {
    background: rgba(255, 255, 255, 0.93);
    color: rgba(0,0,0,0.87);
}

.slide-light .slide-counter {
    background: rgba(255,255,255,0.17);
    color: rgba(0,0,0,0.67);
}

.slide-light .slide-download i {
    color: rgba(255,255,255,0.33);
    text-shadow: 0 0 10px rgba(0,0,0,0.12);
}
.slide-light .slide-download i:hover {
    color: rgba(255,255,255,0.75);
}

.slide-light .slide-caption {
    background: rgba(255,255,255,0.87);
    color: rgba(0,0,0,0.87);
}

.slide-light .slide-dots a {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
.slide-light .slide-dots:hover a, .slide-light .slide-dots.current a {
    background: rgba(255,255,255,0.67);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.33);
}
 
.slide-light .slide-progress {
    background: rgba(255,255,255,0.33);
    box-shadow: -2px 1px 2px rgba(0,0,0,0.12);
}

/* Responsive */
.slide-container {
    height: 250px;
}

@media (min-width: 576px) {
  .slide-container {
    height: 250px;
  }
}

@media (min-width: 768px) {
  .slide-container {
    height: 400px;
  }
}

@media (min-width: 992px) {
  .slide-container {
    height: 600px;
  }
}

@media (max-width: 767px) {
    .dots-container {
        display: none!important;
    }
}

/*
 Animations
 */
 
/* fadeIn */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

[animation=fadeIn] {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

/* fadeOut */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    
    to {
        opacity: 0;
    }
}

[animation=fadeOut] {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

/* leftIn */
@-webkit-keyframes leftIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes leftIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

[animation=leftIn] {
    -webkit-animation-name: leftIn;
    animation-name: leftIn;
}

/* leftOut */
@-webkit-keyframes leftOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }
}

@keyframes leftOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }
}

[animation=leftOut] {
    -webkit-animation-name: leftOut;
    animation-name: leftOut;
}

/* rightIn */
@-webkit-keyframes rightIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rightIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

[animation=rightIn] {
    -webkit-animation-name: rightIn;
    animation-name: rightIn;
}

/* rightOut */
@-webkit-keyframes rightOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }
}

@keyframes rightOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }
}

[animation=rightOut] {
    -webkit-animation-name: rightOut;
    animation-name: rightOut;
}

/* upIn */
@-webkit-keyframes upIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes upIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

[animation=upIn] {
    -webkit-animation-name: upIn;
    animation-name: upIn;
}

/* upOut */
@-webkit-keyframes upOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
}

@keyframes upOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
}

[animation=upOut] {
    -webkit-animation-name: upOut;
    animation-name: upOut;
}

/* downIn */
@-webkit-keyframes downIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes downIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

[animation=downIn] {
    -webkit-animation-name: downIn;
    animation-name: downIn;
}

/* downOut */
@-webkit-keyframes downOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
}

@keyframes downOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
}

[animation=downOut] {
    -webkit-animation-name: downOut;
    animation-name: downOut;
}

/* zoomIn */
@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

[animation=zoomIn] {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/* zoomOut */
@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

[animation=zoomOut] {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

/* upLeftIn */
@-webkit-keyframes upLeftIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, -100px, 0);
        transform: translate3d(-100px, -100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes upLeftIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, -100px, 0);
        transform: translate3d(-100px, -100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

[animation=upLeftIn] {
    -webkit-animation-name: upLeftIn;
    animation-name: upLeftIn;
}

/* upLeftOut */
@-webkit-keyframes upLeftOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100px, -100px, 0);
        transform: translate3d(-100px, -100px, 0);
    }
}

@keyframes upLeftOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100px, -100px, 0);
        transform: translate3d(-100px, -100px, 0);
    }
}

[animation=upLeftOut] {
    -webkit-animation-name: upLeftOut;
    animation-name: upLeftOut;
}

/* upRightIn */
@-webkit-keyframes upRightIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, -100px, 0);
        transform: translate3d(100px, -100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes upRightIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, -100px, 0);
        transform: translate3d(100px, -100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

[animation=upRightIn] {
    -webkit-animation-name: upRightIn;
    animation-name: upRightIn;
}

/* upRightOut */
@-webkit-keyframes upRightOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(100px, -100px, 0);
        transform: translate3d(100px, -100px, 0);
    }
}

@keyframes upRightOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(100px, -100px, 0);
        transform: translate3d(100px, -100px, 0);
    }
}

[animation=upRightOut] {
    -webkit-animation-name: upRightOut;
    animation-name: upRightOut;
}

/* downLeftIn */
@-webkit-keyframes downLeftIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 100px, 0);
        transform: translate3d(-100px, 100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes downLeftIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 100px, 0);
        transform: translate3d(-100px, 100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

[animation=downLeftIn] {
    -webkit-animation-name: downLeftIn;
    animation-name: downLeftIn;
}

/* downLeftOut */
@-webkit-keyframes downLeftOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 100px, 0);
        transform: translate3d(-100px, 100px, 0);
    }
}

@keyframes downLeftOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 100px, 0);
        transform: translate3d(-100px, 100px, 0);
    }
}

[animation=downLeftOut] {
    -webkit-animation-name: downLeftOut;
    animation-name: downLeftOut;
}

/* downRightIn */
@-webkit-keyframes downRightIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 100px, 0);
        transform: translate3d(100px, 100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes downRightIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 100px, 0);
        transform: translate3d(100px, 100px, 0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

[animation=downRightIn] {
    -webkit-animation-name: downRightIn;
    animation-name: downRightIn;
}

/* downRightOut */
@-webkit-keyframes downRightOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(100px, 100px, 0);
        transform: translate3d(100px, 100px, 0);
    }
}

@keyframes downRightOut {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translate3d(100px, 100px, 0);
        transform: translate3d(100px, 100px, 0);
    }
}

[animation=downRightOut] {
    -webkit-animation-name: downRightOut;
    animation-name: downRightOut;
}

/* Default */
.animated_blog {
    display: none;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
