.owl-carousel {
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.owl-carousel.owl-loaded {
    opacity: 1;
}

.ael-slider__item {
    position: relative;
}

.ael-slider__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.ael-slider__main {
    position: relative;
}

.ael-slider__group {
    position: relative;
}

.ael-slider__thumbnail {
    height: 500px;
    background-size: cover;
    background-position: center center;
}

.ael-slider__inner {
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ael-slider__body {
    max-width: 80%;
    padding: 30px;
    z-index: 9;
}

.ael-slider__title {
    color: #fff;
    font-size: 34px;
    line-height: 42px;
}

.ael-slider__title a {
    color: #fff;
}

.ael-slider__subtitle {
    color: #fff;
}

.ael-slider__content {
    color: #fff;
}

.ael-slider__meta {
    color: #fff;
}

.ael-slider__nav a {
    z-index: 9;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 38px;
    min-width: 38px;
    text-align: center;
    background: #fff;
    color: #252525;
    border-radius: 3px;
    cursor: pointer;
}

.ael-slider__nav a:hover {
    color: #333;
}

.ael-slider__nav .is-disable {
    background-color: #333333;
    cursor: disable;
}

.ael-slider__prev {
    left: 10px;
}

.ael-slider__prev i {
    margin-left: 7px;
}

.ael-slider__next {
    right: 10px;
}

.ael-slider__next i {
    margin-right: 7px;
}

.ael-slider .owl-item>.flex-item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

/*=================================================;
/* SLIDER THUMBNAIL
/*================================================= */
.ael-slider--thumbnail .ael-slider__group .owl-item {
    cursor: pointer;
}

.ael-slider--thumbnail .ael-slider__group .owl-item.is-current {
    position: relative;
}

.ael-slider--thumbnail .ael-slider__group .owl-item.is-current::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.4);
}

.ael-slider--thumbnail .ael-slider__group .owl-item.is-current::after {
    border-color: #fff transparent transparent;
    border-style: solid;
    border-width: 10px 10px 0;
    content: "";
    right: 0;
    left: 0;
    width: 10px;
    margin: auto;
    position: absolute;
    top: 0;
    z-index: 2;
}

/*=================================================;
/* NAVIGATION
/*================================================= */
.ael-slider .owl-nav .disabled {
    display: none;
}

.ael-slider .owl-next,
.ael-slider .owl-prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 38px;
    width: 38px;
    line-height: 42px;
    margin: 0;
    text-align: center;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.ael-slider .owl-next i,
.ael-slider .owl-prev i {
    color: #fff;
}

.ael-slider .owl-prev {
    left: 15px;
}

.ael-slider .owl-next {
    right: 15px;
}

/*=================================================;
/* PAGINATION
/*================================================= */
.ael-slider .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.ael-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d3d3d3;
    display: block;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}

.ael-slider .owl-dots .owl-dot.active span {
    background: #007bff;
}

/* pagination insert wrapper*/
.ael-slider--pagination-inner .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


.ael-header-block {
    position: relative;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ael-header-block__title {
    margin: 0;
    font-size: 21px;
}

.ael-header-block__nav {
    margin-right: -3px;
}

.ael-header-block__nav a {
    background-color: #fff;
    display: inline-block;
    border: 1px solid #e4e7ec;
    border-radius: 3px;
    margin-right: 3px;
    line-height: 28px;
    width: 28px;
    text-align: center;
    color: #555;
}

.ael-header-block__nav a:hover {
    border-color: #007bff;
    color: #007bff;
}

.ael-header-block__nav a.is-disable,
.ael-header-block__nav a.swiper-button-disabled {
    background-color: #f8f9fa;
    cursor: default;
}

.ael-header-block__nav a.is-disable:hover,
.ael-header-block__nav a.swiper-button-disabled:hover {
    border-color: #e4e7ec;
    color: #555;
}

/*=================================================
* HEADER 1
/*================================================= */
.ael-header-block--style-1 {
    position: relative;
    border-bottom: 1px solid #e4e7ec;
}

.ael-header-block--style-1 .ael-header-block__title {
    margin-bottom: -1px;
    padding-bottom: 10px;
    display: inline-block;
    border-bottom: 2px solid #007bff;
}

/*=================================================
* HEADER 2
/*================================================= */
.ael-header-block--style-2 .ael-header-block__title {
    border-left: 5px solid #007bff;
    padding-left: 15px;
}

/*=================================================
* HEADER 3
/*================================================= */
.ael-header-block--style-3 {
    border-bottom: 2px solid #007bff;
}

.ael-header-block--style-3 .ael-header-block__title {
    margin-bottom: 0;
    color: #fff;
    display: inline-block;
    background: #007bff;
    padding: 5px 15px;
}

/*=================================================
* HEADER 4
/*================================================= */
.ael-header-block--style-4 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ael-header-block--style-4 .ael-header-block__title {
    text-transform: uppercase;
    background: #fff;
    display: inline-block;
    border: 2px solid #e4e7ec;
    padding: 10px 20px;
}

.ael-header-block--style-4 .ael-header-block__nav {
    position: absolute;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ael-header-block--style-4:before {
    content: '';
    z-index: -1;
    position: absolute;
    height: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    background-color: #e4e7ec;
}



.ael-badges {
    position: relative;
    margin-right: -5px;
    text-transform: uppercase;
}

.ael-badges a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 3px;
    margin-bottom: 5px;
    line-height: 1;
    font-size: 11px;
}

.ael-badges a:hover {
    color: #fff;
    background: #3395ff;
}