.rotating-slider-container {
    background: url("../images/bg.jpg") no-repeat center center;
    width: 100%;
    height: 600px;
    margin: 0;
    overflow: hidden;
}
.bg-rgba {
    background: rgba(0, 0, 0, .55);
    height: 100%
}
.rotating-slider {
    padding-top: 90px;
    margin: 0 auto;
    position: relative;
}
.rotating-slider ul.direction-controls {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -205px;
    display: flex;
    width: 100%;
    justify-content: center;
}
.rotating-slider ul.direction-controls li button {
    background: rgba(0, 82, 155, 0.8);
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    font-size: 32px;
    font-weight: bold;
    height: 60px;
    width: 60px;
    padding-bottom: 10px;
    text-align: center;
    transition: background 0.35s;
}
.rotating-slider ul.direction-controls li button:hover {
    background: rgba(51, 122, 183, 1);
}
.rotating-slider ul.direction-controls li.left-arrow button {
    border-radius: 100% 0 0 100%;
}
.rotating-slider ul.direction-controls li.right-arrow button {
    border-radius: 0 100% 100% 0;
}
.rotating-slider ul.slides {
    border-radius: 50%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0);
    transform-origin: center center;
    width: 100%;
    text-shadow: 0 0 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.7);
    color: #FFF;
    font-family: Verdana, sans-serif;
    font-weight: bold;
}
.rotating-slider ul.slides .slide-inner {
    cursor: pointer;
    position: absolute;
    bottom: 80px;
    right: 280px;
}
.rotating-slider ul.slides .slide-inner div {
    font-size: 26px;
    text-transform: uppercase;
}
.rotating-slider ul.slides .slide-inner p {
    font-size: 22px;
    margin-top: 10px;
}
.rotating-slider ul.slides li{
    background-color: #ecf0f1;
    background-position: center;
    background-size: cover;
    display: block;
    list-style: none;
    position: absolute;
    top: 0;
    left: 50%;
    text-align: center;
    transform-origin: bottom center;
    width: 100%;
    box-sizing: content-box;
}