/*rotating-slider*/
body {
  overflow-x: hidden;
}
.rotating-slider {
  margin: 5em auto;
  height: 360px;
  position: relative;
  width: 480px;
}
.rotating-slider ul.direction-controls {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rotating-slider ul.direction-controls li.left-arrow {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
}
.rotating-slider ul.direction-controls li.right-arrow {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
.rotating-slider ul.direction-controls li button {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5em;
  font-weight: 700;
  height: 1.5em;
  line-height: 1.5em;
  padding: 0;
  text-align: center;
  transition: background 0.25s;
  width: 1.5em;
}
.rotating-slider ul.direction-controls li button:hover {
  background: rgba(0, 0, 0, 0.6);
}
.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%;
}
.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%;
}

body {
  font-weight: 500;
  overflow: hidden;
}
.rotating-slider ul.slides li {
  color: #fff;
}
.rotating-slider ul.slides li:nth-of-type(1) {
  background: #0D2090;
}
.rotating-slider ul.slides li:nth-of-type(2) {
  background: url("img/001.jpg");
  background-size:cover;
}
.rotating-slider ul.slides li:nth-of-type(3) {
  background: #005CFF;
}
.rotating-slider ul.slides li:nth-of-type(4) {
  background: url("img/002.jpg");
}
.rotating-slider ul.slides li:nth-of-type(5) {
  background: #182A62;
}
.rotating-slider ul.slides li:nth-of-type(6) {
  background: url("img/003.jpg");
}
.rotating-slider ul.slides li .inner {
  box-sizing: border-box;
  padding: 2em;
  height: 100%;
  width: 100%;
}