section.images-slider {
    position: relative;
    width: 100%;
    margin: 0 0 30px 0;
}
section.images-slider > .slides {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
}
section.images-slider > .slides::before {
    content: '';
    display: block;
    padding-bottom: calc(370 / 1140 * 100%);
}
section.images-slider > .slides li {
    position: absolute !important;
    float: none !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
section.images-slider > .slides > li > a {
    display: block;
    height: 100%;
}
section.images-slider > .slides > li > a > img {
    display: block;
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
section.images-slider > .slides > li > a > h2 {
    display: none;
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 30px;
    max-width: calc(100% - 60px);
    color: #FFFFFF;
    font-size: 2rem;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    margin: 0;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
}
section.images-slider > .slider_nav {
    position: absolute;
    z-index: 3;
    top: calc(50% - 3rem);
    color: #FFFFFF;
    text-align: center;
    font-size: 4rem;
    line-height: 6rem;
    width: 6rem;
    height: 6rem;
    opacity: 1;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
    transition: opacity 150ms linear;
    font-family: 'Icons' !important;
	font-style: normal;
	font-weight: normal;
	text-decoration: none !important;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
section.images-slider > .slider_nav.prev {
    left: 0;
}
section.images-slider > .slider_nav.prev:before {
    content: "\e90e";
}
section.images-slider > .slider_nav.next {
    right: 0;
}
section.images-slider > .slider_nav.next:before {
    content: "\e90f";
}
section.images-slider > .slider_nav:active {
    opacity: 1.0;
}
@media only screen and (min-width: 800px) {
    section.images-slider > .slides > li > a > h2 {
        display: block;
        font-size: 2rem;
    }
    section.images-slider > .slider_nav {
        font-size: 5rem;
        width: 8rem;
    }
}
@media only screen and (min-width: 1000px) {
    section.images-slider > .slides > li > a > h2 {
        font-size: 2.4rem;
    }
}
